From 8e45517d47d9efaef618d0ef69eb2055fce8974a Mon Sep 17 00:00:00 2001 From: Terry Mancey Date: Fri, 14 Apr 2023 09:11:49 +0100 Subject: [PATCH 01/11] Cleanup Brave Ads data structure naming --- .../internal/creatives/creatives_builder.cc | 136 +++++++++--------- .../text_processing/text_processing.cc | 12 +- .../text_processing/text_processing.h | 2 +- .../purchase_intent_processor.cc | 27 ++-- ...d_multiple_times_reminder_util_unittest.cc | 6 +- .../conversions/conversions_info.cc | 10 +- .../conversions/conversions_resource.cc | 4 +- .../conversions/conversions_resource.h | 4 +- .../purchase_intent/purchase_intent_info.cc | 29 ++-- 9 files changed, 118 insertions(+), 112 deletions(-) diff --git a/components/brave_ads/core/internal/creatives/creatives_builder.cc b/components/brave_ads/core/internal/creatives/creatives_builder.cc index 77a45fbfae8a..25dd73b169cc 100644 --- a/components/brave_ads/core/internal/creatives/creatives_builder.cc +++ b/components/brave_ads/core/internal/creatives/creatives_builder.cc @@ -51,12 +51,12 @@ CreativesInfo BuildCreatives(const CatalogInfo& catalog) { // Dayparts CreativeDaypartList creative_dayparts; for (const auto& daypart : campaign.dayparts) { - CreativeDaypartInfo creative_daypart_info; - creative_daypart_info.dow = daypart.dow; - creative_daypart_info.start_minute = daypart.start_minute; - creative_daypart_info.end_minute = daypart.end_minute; + CreativeDaypartInfo creative_daypart; + creative_daypart.dow = daypart.dow; + creative_daypart.start_minute = daypart.start_minute; + creative_daypart.end_minute = daypart.end_minute; - creative_dayparts.push_back(creative_daypart_info); + creative_dayparts.push_back(creative_daypart); } // Creative Sets @@ -76,35 +76,36 @@ CreativesInfo BuildCreatives(const CatalogInfo& catalog) { // Notification ad creatives for (const auto& creative : creative_set.creative_notification_ads) { - CreativeNotificationAdInfo info; - info.creative_instance_id = creative.creative_instance_id; - info.creative_set_id = creative_set.creative_set_id; - info.campaign_id = campaign.campaign_id; - info.advertiser_id = campaign.advertiser_id; + CreativeNotificationAdInfo creative_ad; + creative_ad.creative_instance_id = creative.creative_instance_id; + creative_ad.creative_set_id = creative_set.creative_set_id; + creative_ad.campaign_id = campaign.campaign_id; + creative_ad.advertiser_id = campaign.advertiser_id; if (!base::Time::FromUTCString(campaign.start_at.c_str(), - &info.start_at)) { - info.start_at = base::Time(); + &creative_ad.start_at)) { + creative_ad.start_at = base::Time(); } - if (!base::Time::FromUTCString(campaign.end_at.c_str(), &info.end_at)) { - info.end_at = base::Time(); + if (!base::Time::FromUTCString(campaign.end_at.c_str(), + &creative_ad.end_at)) { + creative_ad.end_at = base::Time(); } - info.daily_cap = campaign.daily_cap; - info.priority = campaign.priority; - info.ptr = campaign.ptr; - info.conversion = !creative_set.conversions.empty(); - info.per_day = creative_set.per_day; - info.per_week = creative_set.per_week; - info.per_month = creative_set.per_month; - info.total_max = creative_set.total_max; - info.value = creative_set.value; - info.embedding = creative_set.embedding; - info.split_test_group = creative_set.split_test_group; - info.dayparts = creative_dayparts; - info.geo_targets = geo_targets; - info.target_url = creative.payload.target_url; - - info.title = creative.payload.title; - info.body = creative.payload.body; + creative_ad.daily_cap = campaign.daily_cap; + creative_ad.priority = campaign.priority; + creative_ad.ptr = campaign.ptr; + creative_ad.conversion = !creative_set.conversions.empty(); + creative_ad.per_day = creative_set.per_day; + creative_ad.per_week = creative_set.per_week; + creative_ad.per_month = creative_set.per_month; + creative_ad.total_max = creative_set.total_max; + creative_ad.value = creative_set.value; + creative_ad.embedding = creative_set.embedding; + creative_ad.split_test_group = creative_set.split_test_group; + creative_ad.dayparts = creative_dayparts; + creative_ad.geo_targets = geo_targets; + creative_ad.target_url = creative.payload.target_url; + + creative_ad.title = creative.payload.title; + creative_ad.body = creative.payload.body; // Segments for (const auto& segment : creative_set.segments) { @@ -122,8 +123,8 @@ CreativesInfo BuildCreatives(const CatalogInfo& catalog) { continue; } - info.segment = segment_name; - creatives.notification_ads.push_back(info); + creative_ad.segment = segment_name; + creatives.notification_ads.push_back(creative_ad); entries++; const std::string top_level_segment_name = @@ -131,8 +132,8 @@ CreativesInfo BuildCreatives(const CatalogInfo& catalog) { DCHECK(!top_level_segment_name.empty()); if (top_level_segment_name != segment_name) { - info.segment = top_level_segment_name; - creatives.notification_ads.push_back(info); + creative_ad.segment = top_level_segment_name; + creatives.notification_ads.push_back(creative_ad); entries++; } } @@ -140,37 +141,38 @@ CreativesInfo BuildCreatives(const CatalogInfo& catalog) { // inline content ad creatives for (const auto& creative : creative_set.creative_inline_content_ads) { - CreativeInlineContentAdInfo info; - info.creative_instance_id = creative.creative_instance_id; - info.creative_set_id = creative_set.creative_set_id; - info.campaign_id = campaign.campaign_id; - info.advertiser_id = campaign.advertiser_id; + CreativeInlineContentAdInfo creative_ad; + creative_ad.creative_instance_id = creative.creative_instance_id; + creative_ad.creative_set_id = creative_set.creative_set_id; + creative_ad.campaign_id = campaign.campaign_id; + creative_ad.advertiser_id = campaign.advertiser_id; if (!base::Time::FromUTCString(campaign.start_at.c_str(), - &info.start_at)) { - info.start_at = base::Time(); + &creative_ad.start_at)) { + creative_ad.start_at = base::Time(); } - if (!base::Time::FromUTCString(campaign.end_at.c_str(), &info.end_at)) { - info.end_at = base::Time(); + if (!base::Time::FromUTCString(campaign.end_at.c_str(), + &creative_ad.end_at)) { + creative_ad.end_at = base::Time(); } - info.daily_cap = campaign.daily_cap; - info.priority = campaign.priority; - info.ptr = campaign.ptr; - info.conversion = !creative_set.conversions.empty(); - info.per_day = creative_set.per_day; - info.per_week = creative_set.per_week; - info.per_month = creative_set.per_month; - info.total_max = creative_set.total_max; - info.value = creative_set.value; - info.split_test_group = creative_set.split_test_group; - info.dayparts = creative_dayparts; - info.geo_targets = geo_targets; - info.target_url = creative.payload.target_url; - - info.title = creative.payload.title; - info.description = creative.payload.description; - info.image_url = creative.payload.image_url; - info.dimensions = creative.payload.dimensions; - info.cta_text = creative.payload.cta_text; + creative_ad.daily_cap = campaign.daily_cap; + creative_ad.priority = campaign.priority; + creative_ad.ptr = campaign.ptr; + creative_ad.conversion = !creative_set.conversions.empty(); + creative_ad.per_day = creative_set.per_day; + creative_ad.per_week = creative_set.per_week; + creative_ad.per_month = creative_set.per_month; + creative_ad.total_max = creative_set.total_max; + creative_ad.value = creative_set.value; + creative_ad.split_test_group = creative_set.split_test_group; + creative_ad.dayparts = creative_dayparts; + creative_ad.geo_targets = geo_targets; + creative_ad.target_url = creative.payload.target_url; + + creative_ad.title = creative.payload.title; + creative_ad.description = creative.payload.description; + creative_ad.image_url = creative.payload.image_url; + creative_ad.dimensions = creative.payload.dimensions; + creative_ad.cta_text = creative.payload.cta_text; // Segments for (const auto& segment : creative_set.segments) { @@ -188,8 +190,8 @@ CreativesInfo BuildCreatives(const CatalogInfo& catalog) { continue; } - info.segment = segment_name; - creatives.inline_content_ads.push_back(info); + creative_ad.segment = segment_name; + creatives.inline_content_ads.push_back(creative_ad); entries++; const std::string top_level_segment_name = @@ -197,8 +199,8 @@ CreativesInfo BuildCreatives(const CatalogInfo& catalog) { DCHECK(!top_level_segment_name.empty()); if (top_level_segment_name != segment_name) { - info.segment = top_level_segment_name; - creatives.inline_content_ads.push_back(info); + creative_ad.segment = top_level_segment_name; + creatives.inline_content_ads.push_back(creative_ad); entries++; } } diff --git a/components/brave_ads/core/internal/ml/pipeline/text_processing/text_processing.cc b/components/brave_ads/core/internal/ml/pipeline/text_processing/text_processing.cc index 57204d276156..258afaff6e37 100644 --- a/components/brave_ads/core/internal/ml/pipeline/text_processing/text_processing.cc +++ b/components/brave_ads/core/internal/ml/pipeline/text_processing/text_processing.cc @@ -43,12 +43,12 @@ TextProcessing::TextProcessing(TransformationVector transformations, transformations_ = std::move(transformations); } -void TextProcessing::SetPipeline(PipelineInfo info) { - version_ = info.version; - timestamp_ = info.timestamp; - locale_ = info.locale; - linear_model_ = std::move(info.linear_model); - transformations_ = std::move(info.transformations); +void TextProcessing::SetPipeline(PipelineInfo pipeline) { + version_ = pipeline.version; + timestamp_ = pipeline.timestamp; + locale_ = pipeline.locale; + linear_model_ = std::move(pipeline.linear_model); + transformations_ = std::move(pipeline.transformations); } bool TextProcessing::SetPipeline(base::Value::Dict dict) { diff --git a/components/brave_ads/core/internal/ml/pipeline/text_processing/text_processing.h b/components/brave_ads/core/internal/ml/pipeline/text_processing/text_processing.h index 067741674802..09b45a1fd6db 100644 --- a/components/brave_ads/core/internal/ml/pipeline/text_processing/text_processing.h +++ b/components/brave_ads/core/internal/ml/pipeline/text_processing/text_processing.h @@ -38,7 +38,7 @@ class TextProcessing final { bool IsInitialized() const { return is_initialized_; } - void SetPipeline(PipelineInfo info); + void SetPipeline(PipelineInfo pipeline); bool SetPipeline(base::Value::Dict dict); PredictionMap Apply(const std::unique_ptr& input_data) const; diff --git a/components/brave_ads/core/internal/processors/behavioral/purchase_intent/purchase_intent_processor.cc b/components/brave_ads/core/internal/processors/behavioral/purchase_intent/purchase_intent_processor.cc index 52fe7f30cc1b..def05367c088 100644 --- a/components/brave_ads/core/internal/processors/behavioral/purchase_intent/purchase_intent_processor.cc +++ b/components/brave_ads/core/internal/processors/behavioral/purchase_intent/purchase_intent_processor.cc @@ -109,7 +109,7 @@ void PurchaseIntent::Process(const GURL& url) { targeting::PurchaseIntentSignalInfo PurchaseIntent::ExtractSignal( const GURL& url) const { - targeting::PurchaseIntentSignalInfo signal_info; + targeting::PurchaseIntentSignalInfo purchase_intent_signal; const absl::optional search_query = ExtractSearchTermQueryValue(url); @@ -117,38 +117,39 @@ targeting::PurchaseIntentSignalInfo PurchaseIntent::ExtractSignal( const SegmentList keyword_segments = GetSegmentsForSearchQuery(*search_query); if (!keyword_segments.empty()) { - signal_info.created_at = base::Time::Now(); - signal_info.segments = keyword_segments; - signal_info.weight = GetFunnelWeightForSearchQuery(*search_query); + purchase_intent_signal.created_at = base::Time::Now(); + purchase_intent_signal.segments = keyword_segments; + purchase_intent_signal.weight = + GetFunnelWeightForSearchQuery(*search_query); } } else { - const targeting::PurchaseIntentSiteInfo info = GetSite(url); + const targeting::PurchaseIntentSiteInfo purchase_intent_site = GetSite(url); - if (info.url_netloc.is_valid()) { - signal_info.created_at = base::Time::Now(); - signal_info.segments = info.segments; - signal_info.weight = info.weight; + if (purchase_intent_site.url_netloc.is_valid()) { + purchase_intent_signal.created_at = base::Time::Now(); + purchase_intent_signal.segments = purchase_intent_site.segments; + purchase_intent_signal.weight = purchase_intent_site.weight; } } - return signal_info; + return purchase_intent_signal; } targeting::PurchaseIntentSiteInfo PurchaseIntent::GetSite( const GURL& url) const { - targeting::PurchaseIntentSiteInfo info; + targeting::PurchaseIntentSiteInfo purchase_intent_site; const targeting::PurchaseIntentInfo* const purchase_intent = resource_->Get(); DCHECK(purchase_intent); for (const auto& site : purchase_intent->sites) { if (SameDomainOrHost(url, site.url_netloc)) { - info = site; + purchase_intent_site = site; break; } } - return info; + return purchase_intent_site; } SegmentList PurchaseIntent::GetSegmentsForSearchQuery( diff --git a/components/brave_ads/core/internal/reminder/reminders/clicked_same_ad_multiple_times_reminder_util_unittest.cc b/components/brave_ads/core/internal/reminder/reminders/clicked_same_ad_multiple_times_reminder_util_unittest.cc index 2288d26f0e18..4274eff5d3db 100644 --- a/components/brave_ads/core/internal/reminder/reminders/clicked_same_ad_multiple_times_reminder_util_unittest.cc +++ b/components/brave_ads/core/internal/reminder/reminders/clicked_same_ad_multiple_times_reminder_util_unittest.cc @@ -29,14 +29,14 @@ HistoryItemInfo AddHistory(const AdInfo& ad, } HistoryItemInfo AddHistory( - const size_t count, + const int count, const bool should_use_random_creative_instance_guid) { - CHECK_GT(count, 0U); + CHECK_GT(count, 0); HistoryItemInfo history_item; AdInfo ad; - for (size_t i = 0; i < count; i++) { + for (int i = 0; i < count; i++) { if (i == 0 || should_use_random_creative_instance_guid) { ad = BuildAd(AdType::kNotificationAd, /*should_use_random_guids*/ true); CHECK(ad.IsValid()); diff --git a/components/brave_ads/core/internal/resources/behavioral/conversions/conversions_info.cc b/components/brave_ads/core/internal/resources/behavioral/conversions/conversions_info.cc index e0d79eb145b8..7637e3a73444 100644 --- a/components/brave_ads/core/internal/resources/behavioral/conversions/conversions_info.cc +++ b/components/brave_ads/core/internal/resources/behavioral/conversions/conversions_info.cc @@ -56,12 +56,12 @@ base::expected ConversionsInfo::CreateFromValue( "Failed to load from JSON, pattern search_in missing"); } - ConversionIdPatternInfo info; - info.id_pattern = *id_pattern; - info.search_in = *search_in; - info.url_pattern = key; + ConversionIdPatternInfo conversion_id_pattern; + conversion_id_pattern.id_pattern = *id_pattern; + conversion_id_pattern.search_in = *search_in; + conversion_id_pattern.url_pattern = key; - conversion.id_patterns[key] = std::move(info); + conversion.id_patterns[key] = std::move(conversion_id_pattern); } return conversion; diff --git a/components/brave_ads/core/internal/resources/behavioral/conversions/conversions_resource.cc b/components/brave_ads/core/internal/resources/behavioral/conversions/conversions_resource.cc index 9ea70de749d5..5dae9b8e909a 100644 --- a/components/brave_ads/core/internal/resources/behavioral/conversions/conversions_resource.cc +++ b/components/brave_ads/core/internal/resources/behavioral/conversions/conversions_resource.cc @@ -39,9 +39,9 @@ void Conversions::OnLoadAndParseResource( } BLOG(1, "Successfully loaded " << kResourceId << " conversions resource"); - conversions_info_ = std::move(result).value(); + conversions_ = std::move(result).value(); - BLOG(1, "Parsed conversions resource version " << conversions_info_.version); + BLOG(1, "Parsed conversions resource version " << conversions_.version); is_initialized_ = true; diff --git a/components/brave_ads/core/internal/resources/behavioral/conversions/conversions_resource.h b/components/brave_ads/core/internal/resources/behavioral/conversions/conversions_resource.h index 6fbf6f82dc52..bfc77a238692 100644 --- a/components/brave_ads/core/internal/resources/behavioral/conversions/conversions_resource.h +++ b/components/brave_ads/core/internal/resources/behavioral/conversions/conversions_resource.h @@ -28,14 +28,14 @@ class Conversions final { void Load(); - const ConversionsInfo* get() const { return &conversions_info_; } + const ConversionsInfo* get() const { return &conversions_; } private: void OnLoadAndParseResource(ParsingErrorOr result); bool is_initialized_ = false; - ConversionsInfo conversions_info_; + ConversionsInfo conversions_; base::WeakPtrFactory weak_factory_{this}; }; diff --git a/components/brave_ads/core/internal/resources/behavioral/purchase_intent/purchase_intent_info.cc b/components/brave_ads/core/internal/resources/behavioral/purchase_intent/purchase_intent_info.cc index c6e98df81572..dfc07055987f 100644 --- a/components/brave_ads/core/internal/resources/behavioral/purchase_intent/purchase_intent_info.cc +++ b/components/brave_ads/core/internal/resources/behavioral/purchase_intent/purchase_intent_info.cc @@ -60,8 +60,8 @@ PurchaseIntentInfo::CreateFromValue(const base::Value::Dict dict) { } for (const auto [keywords, indexes] : *incoming_segment_keywords) { - PurchaseIntentSegmentKeywordInfo info; - info.keywords = keywords; + PurchaseIntentSegmentKeywordInfo purchase_intent_segment_keyword; + purchase_intent_segment_keyword.keywords = keywords; for (const auto& index : indexes.GetList()) { DCHECK(index.is_int()); @@ -69,10 +69,12 @@ PurchaseIntentInfo::CreateFromValue(const base::Value::Dict dict) { return base::unexpected( "Failed to load from JSON, segment keywords are ill-formed"); } - info.segments.push_back(segments.at(index.GetInt())); + purchase_intent_segment_keyword.segments.push_back( + segments.at(index.GetInt())); } - purchase_intent.segment_keywords.push_back(std::move(info)); + purchase_intent.segment_keywords.push_back( + std::move(purchase_intent_segment_keyword)); } // Parsing field: "funnel_keywords" @@ -84,10 +86,11 @@ PurchaseIntentInfo::CreateFromValue(const base::Value::Dict dict) { } for (const auto [keywords, weight] : *incoming_funnel_keywords) { - PurchaseIntentFunnelKeywordInfo info; - info.keywords = keywords; - info.weight = weight.GetInt(); - purchase_intent.funnel_keywords.push_back(std::move(info)); + PurchaseIntentFunnelKeywordInfo purchase_intent_funnel_keyword; + purchase_intent_funnel_keyword.keywords = keywords; + purchase_intent_funnel_keyword.weight = weight.GetInt(); + purchase_intent.funnel_keywords.push_back( + std::move(purchase_intent_funnel_keyword)); } // Parsing field: "funnel_sites" @@ -127,12 +130,12 @@ PurchaseIntentInfo::CreateFromValue(const base::Value::Dict dict) { for (const auto& site : *site_list) { DCHECK(site.is_string()); - PurchaseIntentSiteInfo info; - info.segments = site_segments; - info.url_netloc = GURL(site.GetString()); - info.weight = 1; + PurchaseIntentSiteInfo purchase_intent_site; + purchase_intent_site.segments = site_segments; + purchase_intent_site.url_netloc = GURL(site.GetString()); + purchase_intent_site.weight = 1; - purchase_intent.sites.push_back(std::move(info)); + purchase_intent.sites.push_back(std::move(purchase_intent_site)); } } From 6215e61125341e177b74c25afdcd9ea040c2d83c Mon Sep 17 00:00:00 2001 From: Terry Mancey Date: Fri, 14 Apr 2023 09:55:23 +0100 Subject: [PATCH 02/11] Cleanup Brave Ads callback parameters --- .../brave_ads/browser/ads_service_callback.h | 27 +++++---- .../brave_ads/browser/ads_tooltips_delegate.h | 3 +- components/brave_ads/browser/device_id.h | 2 +- .../search_result_ad_handler.cc | 4 +- .../search_result_ad_handler_unittest.cc | 2 +- components/brave_ads/core/ads_callback.h | 16 ++--- .../brave_ads/core/ads_client_callback.h | 17 +++--- .../core/internal/account/account_util.h | 2 +- .../account/deposits/deposit_interface.h | 2 +- .../deposits/deposits_database_table.cc | 16 ++--- .../deposits/deposits_database_table.h | 2 +- .../internal/account/statement/statement.h | 2 +- .../account/transactions/transactions.h | 6 +- .../transactions_database_table.cc | 9 +-- .../transactions_database_table.h | 2 +- .../account/user_data/conversion_user_data.h | 3 +- .../user_data/conversion_user_data_builder.h | 3 +- .../user_data/user_data_builder_interface.h | 1 + .../core/internal/ads/ad_events/ad_events.h | 2 +- .../ads/ad_events/ad_events_database_table.cc | 9 +-- .../ads/ad_events/ad_events_database_table.h | 2 +- .../search_result_ad_event_handler.h | 6 +- .../eligible_ads/eligible_ads_callback.h | 3 +- .../database/database_transaction_util.cc | 6 +- .../database/database_transaction_util.h | 2 +- .../common/unittest/unittest_mock_util.cc | 9 +-- .../conversion_queue_database_table.cc | 18 +++--- .../conversion_queue_database_table.h | 12 ++-- .../conversions/conversions_database_table.cc | 9 +-- .../conversions/conversions_database_table.h | 2 +- .../creatives/creative_ads_database_table.cc | 26 +++++---- .../creatives/creative_ads_database_table.h | 4 +- ...ative_inline_content_ads_database_table.cc | 58 ++++++++++--------- ...eative_inline_content_ads_database_table.h | 6 +- ...reative_new_tab_page_ads_database_table.cc | 44 +++++++------- ...creative_new_tab_page_ads_database_table.h | 10 ++-- ...reative_notification_ads_database_table.cc | 30 +++++----- ...creative_notification_ads_database_table.h | 6 +- ...ive_promoted_content_ads_database_table.cc | 44 +++++++------- ...tive_promoted_content_ads_database_table.h | 10 ++-- .../internal/database/database_manager.cc | 16 ++--- .../core/internal/database/database_manager.h | 2 +- .../text_embedding_html_events.h | 2 +- ...xt_embedding_html_events_database_table.cc | 12 ++-- ...ext_embedding_html_events_database_table.h | 2 +- .../core/internal/resources/resources_util.h | 1 + 46 files changed, 257 insertions(+), 215 deletions(-) diff --git a/components/brave_ads/browser/ads_service_callback.h b/components/brave_ads/browser/ads_service_callback.h index 0b80543caf62..d8ce1a935d69 100644 --- a/components/brave_ads/browser/ads_service_callback.h +++ b/components/brave_ads/browser/ads_service_callback.h @@ -16,29 +16,32 @@ namespace brave_ads { using GetDiagnosticsCallback = - base::OnceCallback)>; + base::OnceCallback diagnostics)>; using GetStatementOfAccountsCallback = - base::OnceCallback; + base::OnceCallback; using MaybeServeInlineContentAdAsDictCallback = - base::OnceCallback)>; + base::OnceCallback ads)>; using PurgeOrphanedAdEventsForTypeCallback = - base::OnceCallback; + base::OnceCallback; -using GetHistoryCallback = base::OnceCallback; +using GetHistoryCallback = base::OnceCallback; -using ToggleLikeAdCallback = base::OnceCallback; -using ToggleDislikeAdCallback = base::OnceCallback; +using ToggleLikeAdCallback = + base::OnceCallback; +using ToggleDislikeAdCallback = + base::OnceCallback; using ToggleMarkToReceiveAdsForCategoryCallback = - base::OnceCallback; + base::OnceCallback; using ToggleMarkToNoLongerReceiveAdsForCategoryCallback = - base::OnceCallback; -using ToggleSaveAdCallback = base::OnceCallback; + base::OnceCallback; +using ToggleSaveAdCallback = + base::OnceCallback; using ToggleMarkAdAsInappropriateCallback = - base::OnceCallback; + base::OnceCallback; } // namespace brave_ads diff --git a/components/brave_ads/browser/ads_tooltips_delegate.h b/components/brave_ads/browser/ads_tooltips_delegate.h index 4f881f6bdf57..af07b91ad1f6 100644 --- a/components/brave_ads/browser/ads_tooltips_delegate.h +++ b/components/brave_ads/browser/ads_tooltips_delegate.h @@ -13,7 +13,8 @@ namespace brave_ads { using ShowScheduledCaptchaCallback = - base::OnceCallback; + base::OnceCallback; using SnoozeScheduledCaptchaCallback = base::OnceCallback; class AdsTooltipsDelegate { diff --git a/components/brave_ads/browser/device_id.h b/components/brave_ads/browser/device_id.h index 1965b5213827..66b2aa5ba766 100644 --- a/components/brave_ads/browser/device_id.h +++ b/components/brave_ads/browser/device_id.h @@ -12,7 +12,7 @@ namespace brave_ads { -using DeviceIdCallback = base::OnceCallback; +using DeviceIdCallback = base::OnceCallback; class DeviceId { public: diff --git a/components/brave_ads/content/browser/search_result_ad/search_result_ad_handler.cc b/components/brave_ads/content/browser/search_result_ad/search_result_ad_handler.cc index 123c9fe1a2f4..a91f346cc865 100644 --- a/components/brave_ads/content/browser/search_result_ad/search_result_ad_handler.cc +++ b/components/brave_ads/content/browser/search_result_ad/search_result_ad_handler.cc @@ -52,7 +52,7 @@ SearchResultAdHandler::MaybeCreateSearchResultAdHandler( void SearchResultAdHandler::MaybeRetrieveSearchResultAd( content::RenderFrameHost* render_frame_host, - base::OnceCallback)> callback) { + base::OnceCallback placement_ids)> callback) { DCHECK(render_frame_host); DCHECK(ads_service_); @@ -103,7 +103,7 @@ void SearchResultAdHandler::MaybeTriggerSearchResultAdClickedEvent( void SearchResultAdHandler::OnRetrieveSearchResultAdEntities( mojo::Remote /*document_metadata*/, - base::OnceCallback)> callback, + base::OnceCallback placement_ids)> callback, blink::mojom::WebPagePtr web_page) { DCHECK(ads_service_); diff --git a/components/brave_ads/content/browser/search_result_ad/search_result_ad_handler_unittest.cc b/components/brave_ads/content/browser/search_result_ad/search_result_ad_handler_unittest.cc index 7725f90c2021..ec5066117d4a 100644 --- a/components/brave_ads/content/browser/search_result_ad/search_result_ad_handler_unittest.cc +++ b/components/brave_ads/content/browser/search_result_ad/search_result_ad_handler_unittest.cc @@ -28,7 +28,7 @@ using testing::Mock; using testing::Return; using OnRetrieveSearchResultAdCallback = - base::OnceCallback)>; + base::OnceCallback placement_ids)>; constexpr char kAllowedDomain[] = "https://search.brave.com"; constexpr char kNotAllowedDomain[] = "https://brave.com"; diff --git a/components/brave_ads/core/ads_callback.h b/components/brave_ads/core/ads_callback.h index a4797a435370..430ca999dcb2 100644 --- a/components/brave_ads/core/ads_callback.h +++ b/components/brave_ads/core/ads_callback.h @@ -17,26 +17,26 @@ namespace brave_ads { -using InitializeCallback = base::OnceCallback; -using ShutdownCallback = base::OnceCallback; +using InitializeCallback = base::OnceCallback; +using ShutdownCallback = base::OnceCallback; -using RemoveAllHistoryCallback = base::OnceCallback; +using RemoveAllHistoryCallback = base::OnceCallback; using MaybeServeNewTabPageAdCallback = - base::OnceCallback&)>; + base::OnceCallback& ad)>; using MaybeServeInlineContentAdCallback = - base::OnceCallback&)>; + base::OnceCallback& ad)>; using GetStatementOfAccountsCallback = base::OnceCallback; using GetDiagnosticsCallback = - base::OnceCallback value)>; + base::OnceCallback diagnostics)>; using PurgeOrphanedAdEventsForTypeCallback = - base::OnceCallback; + base::OnceCallback; } // namespace brave_ads diff --git a/components/brave_ads/core/ads_client_callback.h b/components/brave_ads/core/ads_client_callback.h index 31c4eb4701e1..d6e582a30a33 100644 --- a/components/brave_ads/core/ads_client_callback.h +++ b/components/brave_ads/core/ads_client_callback.h @@ -16,25 +16,26 @@ namespace brave_ads { -using ResultCallback = base::OnceCallback; +using ResultCallback = base::OnceCallback; -using SaveCallback = base::OnceCallback; +using SaveCallback = base::OnceCallback; -using LoadCallback = base::OnceCallback; +using LoadCallback = + base::OnceCallback; -using LoadFileCallback = base::OnceCallback; +using LoadFileCallback = base::OnceCallback; using UrlRequestCallback = - base::OnceCallback; + base::OnceCallback; using RunDBTransactionCallback = - base::OnceCallback; + base::OnceCallback; using GetBrowsingHistoryCallback = - base::OnceCallback&)>; + base::OnceCallback& browsing_history)>; using GetScheduledCaptchaCallback = - base::OnceCallback; + base::OnceCallback; } // namespace brave_ads diff --git a/components/brave_ads/core/internal/account/account_util.h b/components/brave_ads/core/internal/account/account_util.h index cacaca4d9a92..347af878dfe3 100644 --- a/components/brave_ads/core/internal/account/account_util.h +++ b/components/brave_ads/core/internal/account/account_util.h @@ -10,7 +10,7 @@ namespace brave_ads { -using ResetRewardsCallback = base::OnceCallback; +using ResetRewardsCallback = base::OnceCallback; bool ShouldRewardUser(); diff --git a/components/brave_ads/core/internal/account/deposits/deposit_interface.h b/components/brave_ads/core/internal/account/deposits/deposit_interface.h index 8a6df015d3e2..493c3b9d26f7 100644 --- a/components/brave_ads/core/internal/account/deposits/deposit_interface.h +++ b/components/brave_ads/core/internal/account/deposits/deposit_interface.h @@ -12,7 +12,7 @@ namespace brave_ads { -using GetDepositCallback = base::OnceCallback; +using GetDepositCallback = base::OnceCallback; class DepositInterface { public: diff --git a/components/brave_ads/core/internal/account/deposits/deposits_database_table.cc b/components/brave_ads/core/internal/account/deposits/deposits_database_table.cc index 7e9b64719e97..598929f8b5d5 100644 --- a/components/brave_ads/core/internal/account/deposits/deposits_database_table.cc +++ b/components/brave_ads/core/internal/account/deposits/deposits_database_table.cc @@ -62,21 +62,23 @@ DepositInfo GetFromRecord(mojom::DBRecordInfo* record) { return deposit; } -void OnGetForCreativeInstanceId(const std::string& /*creative_instance_id*/, - GetDepositsCallback callback, - mojom::DBCommandResponseInfoPtr response) { - if (!response || response->status != - mojom::DBCommandResponseInfo::StatusType::RESPONSE_OK) { +void OnGetForCreativeInstanceId( + const std::string& /*creative_instance_id*/, + GetDepositsCallback callback, + mojom::DBCommandResponseInfoPtr command_response) { + if (!command_response || + command_response->status != + mojom::DBCommandResponseInfo::StatusType::RESPONSE_OK) { BLOG(0, "Failed to get deposit value"); return std::move(callback).Run(/*success*/ false, absl::nullopt); } - if (response->result->get_records().empty()) { + if (command_response->result->get_records().empty()) { return std::move(callback).Run(/*success*/ true, absl::nullopt); } const mojom::DBRecordInfoPtr record = - std::move(response->result->get_records().front()); + std::move(command_response->result->get_records().front()); DepositInfo deposit = GetFromRecord(record.get()); std::move(callback).Run(/*success*/ true, std::move(deposit)); diff --git a/components/brave_ads/core/internal/account/deposits/deposits_database_table.h b/components/brave_ads/core/internal/account/deposits/deposits_database_table.h index b1cf756a8495..adb21fbac238 100644 --- a/components/brave_ads/core/internal/account/deposits/deposits_database_table.h +++ b/components/brave_ads/core/internal/account/deposits/deposits_database_table.h @@ -19,7 +19,7 @@ namespace brave_ads::database::table { using GetDepositsCallback = - base::OnceCallback& deposit)>; class Deposits final : public TableInterface { diff --git a/components/brave_ads/core/internal/account/statement/statement.h b/components/brave_ads/core/internal/account/statement/statement.h index c5eda28c787c..09ac43f5428a 100644 --- a/components/brave_ads/core/internal/account/statement/statement.h +++ b/components/brave_ads/core/internal/account/statement/statement.h @@ -12,7 +12,7 @@ namespace brave_ads { using BuildStatementCallback = - base::OnceCallback; + base::OnceCallback; void BuildStatement(BuildStatementCallback callback); diff --git a/components/brave_ads/core/internal/account/transactions/transactions.h b/components/brave_ads/core/internal/account/transactions/transactions.h index 0a56525115ba..ceb94796fb2c 100644 --- a/components/brave_ads/core/internal/account/transactions/transactions.h +++ b/components/brave_ads/core/internal/account/transactions/transactions.h @@ -23,12 +23,12 @@ class ConfirmationType; namespace transactions { using AddCallback = - base::OnceCallback; + base::OnceCallback; using GetCallback = - base::OnceCallback; + base::OnceCallback; -using RemoveAllCallback = base::OnceCallback; +using RemoveAllCallback = base::OnceCallback; TransactionInfo Add(const std::string& creative_instance_id, const std::string& segment, diff --git a/components/brave_ads/core/internal/account/transactions/transactions_database_table.cc b/components/brave_ads/core/internal/account/transactions/transactions_database_table.cc index ca46c949b4fb..36f433d6ff81 100644 --- a/components/brave_ads/core/internal/account/transactions/transactions_database_table.cc +++ b/components/brave_ads/core/internal/account/transactions/transactions_database_table.cc @@ -70,16 +70,17 @@ TransactionInfo GetFromRecord(mojom::DBRecordInfo* record) { } void OnGetTransactions(GetTransactionsCallback callback, - mojom::DBCommandResponseInfoPtr response) { - if (!response || response->status != - mojom::DBCommandResponseInfo::StatusType::RESPONSE_OK) { + mojom::DBCommandResponseInfoPtr command_response) { + if (!command_response || + command_response->status != + mojom::DBCommandResponseInfo::StatusType::RESPONSE_OK) { BLOG(0, "Failed to get transactions"); return std::move(callback).Run(/*success*/ false, /*transactions*/ {}); } TransactionList transactions; - for (const auto& record : response->result->get_records()) { + for (const auto& record : command_response->result->get_records()) { const TransactionInfo transaction = GetFromRecord(record.get()); transactions.push_back(transaction); } diff --git a/components/brave_ads/core/internal/account/transactions/transactions_database_table.h b/components/brave_ads/core/internal/account/transactions/transactions_database_table.h index 0d13a91d8dcd..c23068a9203a 100644 --- a/components/brave_ads/core/internal/account/transactions/transactions_database_table.h +++ b/components/brave_ads/core/internal/account/transactions/transactions_database_table.h @@ -23,7 +23,7 @@ class Time; namespace brave_ads::database::table { using GetTransactionsCallback = - base::OnceCallback; + base::OnceCallback; class Transactions final : public TableInterface { public: diff --git a/components/brave_ads/core/internal/account/user_data/conversion_user_data.h b/components/brave_ads/core/internal/account/user_data/conversion_user_data.h index 6de8dfaf71a6..80eba077caa7 100644 --- a/components/brave_ads/core/internal/account/user_data/conversion_user_data.h +++ b/components/brave_ads/core/internal/account/user_data/conversion_user_data.h @@ -16,7 +16,8 @@ class ConfirmationType; namespace user_data { -using ConversionCallback = base::OnceCallback; +using ConversionCallback = + base::OnceCallback; void GetConversion(const std::string& creative_instance_id, const ConfirmationType& confirmation_type, diff --git a/components/brave_ads/core/internal/account/user_data/conversion_user_data_builder.h b/components/brave_ads/core/internal/account/user_data/conversion_user_data_builder.h index 0edd9fe557ec..be9b6b78af09 100644 --- a/components/brave_ads/core/internal/account/user_data/conversion_user_data_builder.h +++ b/components/brave_ads/core/internal/account/user_data/conversion_user_data_builder.h @@ -13,7 +13,8 @@ namespace brave_ads::user_data::builder { -using BuildConversionCallback = base::OnceCallback; +using BuildConversionCallback = + base::OnceCallback; void BuildConversion(const std::string& creative_instance_id, BuildConversionCallback callback); diff --git a/components/brave_ads/core/internal/account/user_data/user_data_builder_interface.h b/components/brave_ads/core/internal/account/user_data/user_data_builder_interface.h index de7c6b0db180..56c4e50a0624 100644 --- a/components/brave_ads/core/internal/account/user_data/user_data_builder_interface.h +++ b/components/brave_ads/core/internal/account/user_data/user_data_builder_interface.h @@ -11,6 +11,7 @@ namespace brave_ads { +// TODO(tmancey) using UserDataBuilderCallback = base::OnceCallback; class UserDataBuilderInterface { diff --git a/components/brave_ads/core/internal/ads/ad_events/ad_events.h b/components/brave_ads/core/internal/ads/ad_events/ad_events.h index e055e83884a1..25c9ece8cdd4 100644 --- a/components/brave_ads/core/internal/ads/ad_events/ad_events.h +++ b/components/brave_ads/core/internal/ads/ad_events/ad_events.h @@ -22,7 +22,7 @@ class ConfirmationType; struct AdEventInfo; struct AdInfo; -using AdEventCallback = base::OnceCallback; +using AdEventCallback = base::OnceCallback; void LogAdEvent(const AdInfo& ad, const ConfirmationType& confirmation_type, diff --git a/components/brave_ads/core/internal/ads/ad_events/ad_events_database_table.cc b/components/brave_ads/core/internal/ads/ad_events/ad_events_database_table.cc index 5355e06c478e..9825373cd6b2 100644 --- a/components/brave_ads/core/internal/ads/ad_events/ad_events_database_table.cc +++ b/components/brave_ads/core/internal/ads/ad_events/ad_events_database_table.cc @@ -65,9 +65,10 @@ AdEventInfo GetFromRecord(mojom::DBRecordInfo* record) { } void OnGetAdEvents(GetAdEventsCallback callback, - mojom::DBCommandResponseInfoPtr response) { - if (!response || response->status != - mojom::DBCommandResponseInfo::StatusType::RESPONSE_OK) { + mojom::DBCommandResponseInfoPtr command_response) { + if (!command_response || + command_response->status != + mojom::DBCommandResponseInfo::StatusType::RESPONSE_OK) { BLOG(0, "Failed to get ad events"); std::move(callback).Run(/*success*/ false, {}); return; @@ -75,7 +76,7 @@ void OnGetAdEvents(GetAdEventsCallback callback, AdEventList ad_events; - for (const auto& record : response->result->get_records()) { + for (const auto& record : command_response->result->get_records()) { const AdEventInfo ad_event = GetFromRecord(record.get()); ad_events.push_back(ad_event); } diff --git a/components/brave_ads/core/internal/ads/ad_events/ad_events_database_table.h b/components/brave_ads/core/internal/ads/ad_events/ad_events_database_table.h index 8632ae3da80b..55d205cb9104 100644 --- a/components/brave_ads/core/internal/ads/ad_events/ad_events_database_table.h +++ b/components/brave_ads/core/internal/ads/ad_events/ad_events_database_table.h @@ -17,7 +17,7 @@ namespace brave_ads::database::table { using GetAdEventsCallback = - base::OnceCallback; + base::OnceCallback; class AdEvents final : public TableInterface { public: diff --git a/components/brave_ads/core/internal/ads/ad_events/search_result_ads/search_result_ad_event_handler.h b/components/brave_ads/core/internal/ads/ad_events/search_result_ads/search_result_ad_event_handler.h index 7f052c50b3e4..5ce1c6b1d5db 100644 --- a/components/brave_ads/core/internal/ads/ad_events/search_result_ads/search_result_ad_event_handler.h +++ b/components/brave_ads/core/internal/ads/ad_events/search_result_ads/search_result_ad_event_handler.h @@ -22,8 +22,10 @@ struct SearchResultAdInfo; namespace search_result_ads { -using FireAdEventHandlerCallback = base::OnceCallback< - void(const bool, const std::string&, const mojom::SearchResultAdEventType)>; +using FireAdEventHandlerCallback = + base::OnceCallback; class EventHandler final : public EventHandlerObserver { public: diff --git a/components/brave_ads/core/internal/ads/serving/eligible_ads/eligible_ads_callback.h b/components/brave_ads/core/internal/ads/serving/eligible_ads/eligible_ads_callback.h index c0fb054fea5a..dbfaec6e8656 100644 --- a/components/brave_ads/core/internal/ads/serving/eligible_ads/eligible_ads_callback.h +++ b/components/brave_ads/core/internal/ads/serving/eligible_ads/eligible_ads_callback.h @@ -11,7 +11,8 @@ namespace brave_ads { template -using GetEligibleAdsCallback = base::OnceCallback; +using GetEligibleAdsCallback = + base::OnceCallback; } // namespace brave_ads diff --git a/components/brave_ads/core/internal/common/database/database_transaction_util.cc b/components/brave_ads/core/internal/common/database/database_transaction_util.cc index 3cdc7c9b0986..e676a4d005c1 100644 --- a/components/brave_ads/core/internal/common/database/database_transaction_util.cc +++ b/components/brave_ads/core/internal/common/database/database_transaction_util.cc @@ -13,10 +13,10 @@ namespace brave_ads::database { void OnResultCallback(ResultCallback callback, - mojom::DBCommandResponseInfoPtr response) { - DCHECK(response); + mojom::DBCommandResponseInfoPtr command_response) { + DCHECK(command_response); - if (response->status != + if (command_response->status != mojom::DBCommandResponseInfo::StatusType::RESPONSE_OK) { return std::move(callback).Run(/*success*/ false); } diff --git a/components/brave_ads/core/internal/common/database/database_transaction_util.h b/components/brave_ads/core/internal/common/database/database_transaction_util.h index 105f08015c70..8f358f3708b6 100644 --- a/components/brave_ads/core/internal/common/database/database_transaction_util.h +++ b/components/brave_ads/core/internal/common/database/database_transaction_util.h @@ -12,7 +12,7 @@ namespace brave_ads::database { void OnResultCallback(ResultCallback callback, - mojom::DBCommandResponseInfoPtr response); + mojom::DBCommandResponseInfoPtr command_response); } // namespace brave_ads::database diff --git a/components/brave_ads/core/internal/common/unittest/unittest_mock_util.cc b/components/brave_ads/core/internal/common/unittest/unittest_mock_util.cc index ac29bce3f5b9..825c7da6cb0c 100644 --- a/components/brave_ads/core/internal/common/unittest/unittest_mock_util.cc +++ b/components/brave_ads/core/internal/common/unittest/unittest_mock_util.cc @@ -338,17 +338,18 @@ void MockRunDBTransaction(const std::unique_ptr& mock, RunDBTransactionCallback callback) { CHECK(transaction); - mojom::DBCommandResponseInfoPtr response = + mojom::DBCommandResponseInfoPtr command_response = mojom::DBCommandResponseInfo::New(); if (!database) { - response->status = + command_response->status = mojom::DBCommandResponseInfo::StatusType::RESPONSE_ERROR; } else { - database->RunTransaction(std::move(transaction), response.get()); + database->RunTransaction(std::move(transaction), + command_response.get()); } - std::move(callback).Run(std::move(response)); + std::move(callback).Run(std::move(command_response)); })); } diff --git a/components/brave_ads/core/internal/conversions/conversion_queue_database_table.cc b/components/brave_ads/core/internal/conversions/conversion_queue_database_table.cc index 7997ba6b9ab6..e64468de1059 100644 --- a/components/brave_ads/core/internal/conversions/conversion_queue_database_table.cc +++ b/components/brave_ads/core/internal/conversions/conversion_queue_database_table.cc @@ -74,16 +74,17 @@ ConversionQueueItemInfo GetFromRecord(mojom::DBRecordInfo* record) { } void OnGetAll(GetConversionQueueCallback callback, - mojom::DBCommandResponseInfoPtr response) { - if (!response || response->status != - mojom::DBCommandResponseInfo::StatusType::RESPONSE_OK) { + mojom::DBCommandResponseInfoPtr command_response) { + if (!command_response || + command_response->status != + mojom::DBCommandResponseInfo::StatusType::RESPONSE_OK) { BLOG(0, "Failed to get conversion queue"); return std::move(callback).Run(/*success*/ false, {}); } ConversionQueueItemList conversion_queue_items; - for (const auto& record : response->result->get_records()) { + for (const auto& record : command_response->result->get_records()) { const ConversionQueueItemInfo conversion_queue_item = GetFromRecord(record.get()); conversion_queue_items.push_back(conversion_queue_item); @@ -95,16 +96,17 @@ void OnGetAll(GetConversionQueueCallback callback, void OnGetForCreativeInstanceId( const std::string& creative_instance_id, GetConversionQueueForCreativeInstanceIdCallback callback, - mojom::DBCommandResponseInfoPtr response) { - if (!response || response->status != - mojom::DBCommandResponseInfo::StatusType::RESPONSE_OK) { + mojom::DBCommandResponseInfoPtr command_response) { + if (!command_response || + command_response->status != + mojom::DBCommandResponseInfo::StatusType::RESPONSE_OK) { BLOG(0, "Failed to get conversion queue"); return std::move(callback).Run(/*success*/ false, creative_instance_id, {}); } ConversionQueueItemList conversion_queue_items; - for (const auto& record : response->result->get_records()) { + for (const auto& record : command_response->result->get_records()) { const ConversionQueueItemInfo conversion_queue_item = GetFromRecord(record.get()); conversion_queue_items.push_back(conversion_queue_item); diff --git a/components/brave_ads/core/internal/conversions/conversion_queue_database_table.h b/components/brave_ads/core/internal/conversions/conversion_queue_database_table.h index 1a1ea36dcb63..00bc179e9dff 100644 --- a/components/brave_ads/core/internal/conversions/conversion_queue_database_table.h +++ b/components/brave_ads/core/internal/conversions/conversion_queue_database_table.h @@ -17,13 +17,13 @@ namespace brave_ads::database::table { -using GetConversionQueueCallback = - base::OnceCallback; +using GetConversionQueueCallback = base::OnceCallback< + void(bool success, const ConversionQueueItemList& conversion_queue_items)>; -using GetConversionQueueForCreativeInstanceIdCallback = - base::OnceCallback; +using GetConversionQueueForCreativeInstanceIdCallback = base::OnceCallback; class ConversionQueue final : public TableInterface { public: diff --git a/components/brave_ads/core/internal/conversions/conversions_database_table.cc b/components/brave_ads/core/internal/conversions/conversions_database_table.cc index c44af4c4c3e0..1ade73167847 100644 --- a/components/brave_ads/core/internal/conversions/conversions_database_table.cc +++ b/components/brave_ads/core/internal/conversions/conversions_database_table.cc @@ -63,16 +63,17 @@ ConversionInfo GetFromRecord(mojom::DBRecordInfo* record) { } void OnGetConversions(GetConversionsCallback callback, - mojom::DBCommandResponseInfoPtr response) { - if (!response || response->status != - mojom::DBCommandResponseInfo::StatusType::RESPONSE_OK) { + mojom::DBCommandResponseInfoPtr command_response) { + if (!command_response || + command_response->status != + mojom::DBCommandResponseInfo::StatusType::RESPONSE_OK) { BLOG(0, "Failed to get creative conversions"); return std::move(callback).Run(/*success*/ false, {}); } ConversionList conversions; - for (const auto& record : response->result->get_records()) { + for (const auto& record : command_response->result->get_records()) { const ConversionInfo conversion = GetFromRecord(record.get()); conversions.push_back(conversion); } diff --git a/components/brave_ads/core/internal/conversions/conversions_database_table.h b/components/brave_ads/core/internal/conversions/conversions_database_table.h index 02876a16d67e..9b429d590814 100644 --- a/components/brave_ads/core/internal/conversions/conversions_database_table.h +++ b/components/brave_ads/core/internal/conversions/conversions_database_table.h @@ -17,7 +17,7 @@ namespace brave_ads::database::table { using GetConversionsCallback = - base::OnceCallback; + base::OnceCallback; class Conversions final : public TableInterface { public: diff --git a/components/brave_ads/core/internal/creatives/creative_ads_database_table.cc b/components/brave_ads/core/internal/creatives/creative_ads_database_table.cc index 768f363175ac..26c13c832196 100644 --- a/components/brave_ads/core/internal/creatives/creative_ads_database_table.cc +++ b/components/brave_ads/core/internal/creatives/creative_ads_database_table.cc @@ -72,12 +72,12 @@ CreativeAdInfo GetFromRecord(mojom::DBRecordInfo* record) { } CreativeAdMap GroupCreativeAdsFromResponse( - mojom::DBCommandResponseInfoPtr response) { - DCHECK(response); + mojom::DBCommandResponseInfoPtr command_response) { + DCHECK(command_response); CreativeAdMap creative_ads; - for (const auto& record : response->result->get_records()) { + for (const auto& record : command_response->result->get_records()) { const CreativeAdInfo creative_ad = GetFromRecord(record.get()); const auto iter = creative_ads.find(creative_ad.creative_instance_id); @@ -106,11 +106,11 @@ CreativeAdMap GroupCreativeAdsFromResponse( } CreativeAdList GetCreativeAdsFromResponse( - mojom::DBCommandResponseInfoPtr response) { - DCHECK(response); + mojom::DBCommandResponseInfoPtr command_response) { + DCHECK(command_response); const CreativeAdMap grouped_creative_ads = - GroupCreativeAdsFromResponse(std::move(response)); + GroupCreativeAdsFromResponse(std::move(command_response)); CreativeAdList creative_ads; for (const auto& [creative_instance_id, creative_ad] : grouped_creative_ads) { @@ -120,17 +120,19 @@ CreativeAdList GetCreativeAdsFromResponse( return creative_ads; } -void OnGetForCreativeInstanceId(const std::string& creative_instance_id, - GetCreativeAdCallback callback, - mojom::DBCommandResponseInfoPtr response) { - if (!response || response->status != - mojom::DBCommandResponseInfo::StatusType::RESPONSE_OK) { +void OnGetForCreativeInstanceId( + const std::string& creative_instance_id, + GetCreativeAdCallback callback, + mojom::DBCommandResponseInfoPtr command_response) { + if (!command_response || + command_response->status != + mojom::DBCommandResponseInfo::StatusType::RESPONSE_OK) { BLOG(0, "Failed to get creative ad"); return std::move(callback).Run(/*success*/ false, creative_instance_id, {}); } const CreativeAdList creative_ads = - GetCreativeAdsFromResponse(std::move(response)); + GetCreativeAdsFromResponse(std::move(command_response)); if (creative_ads.size() != 1) { BLOG(0, "Failed to get creative ad"); diff --git a/components/brave_ads/core/internal/creatives/creative_ads_database_table.h b/components/brave_ads/core/internal/creatives/creative_ads_database_table.h index cc5b33f52a3c..b230b977d48b 100644 --- a/components/brave_ads/core/internal/creatives/creative_ads_database_table.h +++ b/components/brave_ads/core/internal/creatives/creative_ads_database_table.h @@ -17,9 +17,9 @@ namespace brave_ads::database::table { using GetCreativeAdCallback = - base::OnceCallback; + const CreativeAdInfo& creative_ad)>; class CreativeAds final : public TableInterface { public: diff --git a/components/brave_ads/core/internal/creatives/inline_content_ads/creative_inline_content_ads_database_table.cc b/components/brave_ads/core/internal/creatives/inline_content_ads/creative_inline_content_ads_database_table.cc index 1dae52ee9338..311a79ba5f6c 100644 --- a/components/brave_ads/core/internal/creatives/inline_content_ads/creative_inline_content_ads_database_table.cc +++ b/components/brave_ads/core/internal/creatives/inline_content_ads/creative_inline_content_ads_database_table.cc @@ -108,12 +108,12 @@ CreativeInlineContentAdInfo GetFromRecord(mojom::DBRecordInfo* record) { } CreativeInlineContentAdMap GroupCreativeAdsFromResponse( - mojom::DBCommandResponseInfoPtr response) { - DCHECK(response); + mojom::DBCommandResponseInfoPtr command_response) { + DCHECK(command_response); CreativeInlineContentAdMap creative_ads; - for (const auto& record : response->result->get_records()) { + for (const auto& record : command_response->result->get_records()) { const CreativeInlineContentAdInfo creative_ad = GetFromRecord(record.get()); const auto iter = creative_ads.find(creative_ad.creative_instance_id); @@ -142,11 +142,11 @@ CreativeInlineContentAdMap GroupCreativeAdsFromResponse( } CreativeInlineContentAdList GetCreativeAdsFromResponse( - mojom::DBCommandResponseInfoPtr response) { - DCHECK(response); + mojom::DBCommandResponseInfoPtr command_response) { + DCHECK(command_response); const CreativeInlineContentAdMap grouped_creative_ads = - GroupCreativeAdsFromResponse(std::move(response)); + GroupCreativeAdsFromResponse(std::move(command_response)); CreativeInlineContentAdList creative_ads; for (const auto& [creative_instance_id, creative_ad] : grouped_creative_ads) { @@ -156,17 +156,19 @@ CreativeInlineContentAdList GetCreativeAdsFromResponse( return creative_ads; } -void OnGetForCreativeInstanceId(const std::string& creative_instance_id, - GetCreativeInlineContentAdCallback callback, - mojom::DBCommandResponseInfoPtr response) { - if (!response || response->status != - mojom::DBCommandResponseInfo::StatusType::RESPONSE_OK) { +void OnGetForCreativeInstanceId( + const std::string& creative_instance_id, + GetCreativeInlineContentAdCallback callback, + mojom::DBCommandResponseInfoPtr command_response) { + if (!command_response || + command_response->status != + mojom::DBCommandResponseInfo::StatusType::RESPONSE_OK) { BLOG(0, "Failed to get creative inline content ad"); return std::move(callback).Run(/*success*/ false, creative_instance_id, {}); } const CreativeInlineContentAdList creative_ads = - GetCreativeAdsFromResponse(std::move(response)); + GetCreativeAdsFromResponse(std::move(command_response)); if (creative_ads.size() != 1) { BLOG(0, "Failed to get creative inline content ad"); @@ -178,46 +180,50 @@ void OnGetForCreativeInstanceId(const std::string& creative_instance_id, std::move(callback).Run(/*success*/ true, creative_instance_id, creative_ad); } -void OnGetForSegmentsAndDimensions(const SegmentList& segments, - GetCreativeInlineContentAdsCallback callback, - mojom::DBCommandResponseInfoPtr response) { - if (!response || response->status != - mojom::DBCommandResponseInfo::StatusType::RESPONSE_OK) { +void OnGetForSegmentsAndDimensions( + const SegmentList& segments, + GetCreativeInlineContentAdsCallback callback, + mojom::DBCommandResponseInfoPtr command_response) { + if (!command_response || + command_response->status != + mojom::DBCommandResponseInfo::StatusType::RESPONSE_OK) { BLOG(0, "Failed to get creative inline content ads"); return std::move(callback).Run(/*success*/ false, segments, {}); } const CreativeInlineContentAdList creative_ads = - GetCreativeAdsFromResponse(std::move(response)); + GetCreativeAdsFromResponse(std::move(command_response)); std::move(callback).Run(/*success*/ true, segments, creative_ads); } void OnGetForDimensions( GetCreativeInlineContentAdsForDimensionsCallback callback, - mojom::DBCommandResponseInfoPtr response) { - if (!response || response->status != - mojom::DBCommandResponseInfo::StatusType::RESPONSE_OK) { + mojom::DBCommandResponseInfoPtr command_response) { + if (!command_response || + command_response->status != + mojom::DBCommandResponseInfo::StatusType::RESPONSE_OK) { BLOG(0, "Failed to get creative inline content ads"); return std::move(callback).Run(/*success*/ false, {}); } const CreativeInlineContentAdList creative_ads = - GetCreativeAdsFromResponse(std::move(response)); + GetCreativeAdsFromResponse(std::move(command_response)); std::move(callback).Run(/*success*/ true, creative_ads); } void OnGetAll(GetCreativeInlineContentAdsCallback callback, - mojom::DBCommandResponseInfoPtr response) { - if (!response || response->status != - mojom::DBCommandResponseInfo::StatusType::RESPONSE_OK) { + mojom::DBCommandResponseInfoPtr command_response) { + if (!command_response || + command_response->status != + mojom::DBCommandResponseInfo::StatusType::RESPONSE_OK) { BLOG(0, "Failed to get all creative inline content ads"); return std::move(callback).Run(/*success*/ false, {}, {}); } const CreativeInlineContentAdList creative_ads = - GetCreativeAdsFromResponse(std::move(response)); + GetCreativeAdsFromResponse(std::move(command_response)); const SegmentList segments = GetSegments(creative_ads); diff --git a/components/brave_ads/core/internal/creatives/inline_content_ads/creative_inline_content_ads_database_table.h b/components/brave_ads/core/internal/creatives/inline_content_ads/creative_inline_content_ads_database_table.h index a83f86c411b1..e4a76c85a819 100644 --- a/components/brave_ads/core/internal/creatives/inline_content_ads/creative_inline_content_ads_database_table.h +++ b/components/brave_ads/core/internal/creatives/inline_content_ads/creative_inline_content_ads_database_table.h @@ -27,17 +27,17 @@ class GeoTargets; class Segments; using GetCreativeInlineContentAdCallback = - base::OnceCallback; using GetCreativeInlineContentAdsCallback = - base::OnceCallback; using GetCreativeInlineContentAdsForDimensionsCallback = - base::OnceCallback; class CreativeInlineContentAds final : public TableInterface { diff --git a/components/brave_ads/core/internal/creatives/new_tab_page_ads/creative_new_tab_page_ads_database_table.cc b/components/brave_ads/core/internal/creatives/new_tab_page_ads/creative_new_tab_page_ads_database_table.cc index 9b6aa4b26e29..988e5f531b63 100644 --- a/components/brave_ads/core/internal/creatives/new_tab_page_ads/creative_new_tab_page_ads_database_table.cc +++ b/components/brave_ads/core/internal/creatives/new_tab_page_ads/creative_new_tab_page_ads_database_table.cc @@ -107,12 +107,12 @@ CreativeNewTabPageAdInfo GetFromRecord(mojom::DBRecordInfo* record) { } CreativeNewTabPageAdMap GroupCreativeAdsFromResponse( - mojom::DBCommandResponseInfoPtr response) { - DCHECK(response); + mojom::DBCommandResponseInfoPtr command_response) { + DCHECK(command_response); CreativeNewTabPageAdMap creative_ads; - for (const auto& record : response->result->get_records()) { + for (const auto& record : command_response->result->get_records()) { const CreativeNewTabPageAdInfo creative_ad = GetFromRecord(record.get()); const auto iter = creative_ads.find(creative_ad.creative_instance_id); @@ -147,11 +147,11 @@ CreativeNewTabPageAdMap GroupCreativeAdsFromResponse( } CreativeNewTabPageAdList GetCreativeAdsFromResponse( - mojom::DBCommandResponseInfoPtr response) { - DCHECK(response); + mojom::DBCommandResponseInfoPtr command_response) { + DCHECK(command_response); const CreativeNewTabPageAdMap grouped_creative_ads = - GroupCreativeAdsFromResponse(std::move(response)); + GroupCreativeAdsFromResponse(std::move(command_response)); CreativeNewTabPageAdList creative_ads; for (const auto& [creative_instance_id, creative_ad] : grouped_creative_ads) { @@ -161,17 +161,19 @@ CreativeNewTabPageAdList GetCreativeAdsFromResponse( return creative_ads; } -void OnGetForCreativeInstanceId(const std::string& creative_instance_id, - GetCreativeNewTabPageAdCallback callback, - mojom::DBCommandResponseInfoPtr response) { - if (!response || response->status != - mojom::DBCommandResponseInfo::StatusType::RESPONSE_OK) { +void OnGetForCreativeInstanceId( + const std::string& creative_instance_id, + GetCreativeNewTabPageAdCallback callback, + mojom::DBCommandResponseInfoPtr command_response) { + if (!command_response || + command_response->status != + mojom::DBCommandResponseInfo::StatusType::RESPONSE_OK) { BLOG(0, "Failed to get creative new tab page ad"); return std::move(callback).Run(/*success*/ false, creative_instance_id, {}); } const CreativeNewTabPageAdList creative_ads = - GetCreativeAdsFromResponse(std::move(response)); + GetCreativeAdsFromResponse(std::move(command_response)); if (creative_ads.size() != 1) { BLOG(0, "Failed to get creative new tab page ad"); @@ -185,29 +187,31 @@ void OnGetForCreativeInstanceId(const std::string& creative_instance_id, void OnGetForSegments(const SegmentList& segments, GetCreativeNewTabPageAdsCallback callback, - mojom::DBCommandResponseInfoPtr response) { - if (!response || response->status != - mojom::DBCommandResponseInfo::StatusType::RESPONSE_OK) { + mojom::DBCommandResponseInfoPtr command_response) { + if (!command_response || + command_response->status != + mojom::DBCommandResponseInfo::StatusType::RESPONSE_OK) { BLOG(0, "Failed to get creative new tab page ads"); return std::move(callback).Run(/*success*/ false, segments, {}); } const CreativeNewTabPageAdList creative_ads = - GetCreativeAdsFromResponse(std::move(response)); + GetCreativeAdsFromResponse(std::move(command_response)); std::move(callback).Run(/*success*/ true, segments, creative_ads); } void OnGetAll(GetCreativeNewTabPageAdsCallback callback, - mojom::DBCommandResponseInfoPtr response) { - if (!response || response->status != - mojom::DBCommandResponseInfo::StatusType::RESPONSE_OK) { + mojom::DBCommandResponseInfoPtr command_response) { + if (!command_response || + command_response->status != + mojom::DBCommandResponseInfo::StatusType::RESPONSE_OK) { BLOG(0, "Failed to get all creative new tab page ads"); return std::move(callback).Run(/*success*/ false, {}, {}); } const CreativeNewTabPageAdList creative_ads = - GetCreativeAdsFromResponse(std::move(response)); + GetCreativeAdsFromResponse(std::move(command_response)); const SegmentList segments = GetSegments(creative_ads); diff --git a/components/brave_ads/core/internal/creatives/new_tab_page_ads/creative_new_tab_page_ads_database_table.h b/components/brave_ads/core/internal/creatives/new_tab_page_ads/creative_new_tab_page_ads_database_table.h index c3a9e7cd5e14..859e756db44b 100644 --- a/components/brave_ads/core/internal/creatives/new_tab_page_ads/creative_new_tab_page_ads_database_table.h +++ b/components/brave_ads/core/internal/creatives/new_tab_page_ads/creative_new_tab_page_ads_database_table.h @@ -29,14 +29,14 @@ class GeoTargets; class Segments; using GetCreativeNewTabPageAdCallback = - base::OnceCallback; + const CreativeNewTabPageAdInfo& creative_ad)>; using GetCreativeNewTabPageAdsCallback = - base::OnceCallback&, - const CreativeNewTabPageAdList&)>; + base::OnceCallback& segments, + const CreativeNewTabPageAdList& creative_ads)>; class CreativeNewTabPageAds final : public TableInterface { public: diff --git a/components/brave_ads/core/internal/creatives/notification_ads/creative_notification_ads_database_table.cc b/components/brave_ads/core/internal/creatives/notification_ads/creative_notification_ads_database_table.cc index 96c47e1d7cb8..17d630ff3588 100644 --- a/components/brave_ads/core/internal/creatives/notification_ads/creative_notification_ads_database_table.cc +++ b/components/brave_ads/core/internal/creatives/notification_ads/creative_notification_ads_database_table.cc @@ -103,12 +103,12 @@ CreativeNotificationAdInfo GetFromRecord(mojom::DBRecordInfo* record) { } CreativeNotificationAdMap GroupCreativeAdsFromResponse( - mojom::DBCommandResponseInfoPtr response) { - DCHECK(response); + mojom::DBCommandResponseInfoPtr command_response) { + DCHECK(command_response); CreativeNotificationAdMap creative_ads; - for (const auto& record : response->result->get_records()) { + for (const auto& record : command_response->result->get_records()) { const CreativeNotificationAdInfo creative_ad = GetFromRecord(record.get()); const auto iter = creative_ads.find(creative_ad.creative_instance_id); @@ -137,11 +137,11 @@ CreativeNotificationAdMap GroupCreativeAdsFromResponse( } CreativeNotificationAdList GetCreativeAdsFromResponse( - mojom::DBCommandResponseInfoPtr response) { - DCHECK(response); + mojom::DBCommandResponseInfoPtr command_response) { + DCHECK(command_response); const CreativeNotificationAdMap grouped_creative_ads = - GroupCreativeAdsFromResponse(std::move(response)); + GroupCreativeAdsFromResponse(std::move(command_response)); CreativeNotificationAdList creative_ads; for (const auto& [creative_instance_id, creative_ad] : grouped_creative_ads) { @@ -153,29 +153,31 @@ CreativeNotificationAdList GetCreativeAdsFromResponse( void OnGetForSegments(const SegmentList& segments, GetCreativeNotificationAdsCallback callback, - mojom::DBCommandResponseInfoPtr response) { - if (!response || response->status != - mojom::DBCommandResponseInfo::StatusType::RESPONSE_OK) { + mojom::DBCommandResponseInfoPtr command_response) { + if (!command_response || + command_response->status != + mojom::DBCommandResponseInfo::StatusType::RESPONSE_OK) { BLOG(0, "Failed to get creative notification ads"); return std::move(callback).Run(/*success*/ false, segments, {}); } const CreativeNotificationAdList creative_ads = - GetCreativeAdsFromResponse(std::move(response)); + GetCreativeAdsFromResponse(std::move(command_response)); std::move(callback).Run(/*success*/ true, segments, creative_ads); } void OnGetAll(GetCreativeNotificationAdsCallback callback, - mojom::DBCommandResponseInfoPtr response) { - if (!response || response->status != - mojom::DBCommandResponseInfo::StatusType::RESPONSE_OK) { + mojom::DBCommandResponseInfoPtr command_response) { + if (!command_response || + command_response->status != + mojom::DBCommandResponseInfo::StatusType::RESPONSE_OK) { BLOG(0, "Failed to get all creative notification ads"); return std::move(callback).Run(/*success*/ false, {}, {}); } const CreativeNotificationAdList creative_ads = - GetCreativeAdsFromResponse(std::move(response)); + GetCreativeAdsFromResponse(std::move(command_response)); const SegmentList segments = GetSegments(creative_ads); diff --git a/components/brave_ads/core/internal/creatives/notification_ads/creative_notification_ads_database_table.h b/components/brave_ads/core/internal/creatives/notification_ads/creative_notification_ads_database_table.h index 665a22e57725..963f564bc131 100644 --- a/components/brave_ads/core/internal/creatives/notification_ads/creative_notification_ads_database_table.h +++ b/components/brave_ads/core/internal/creatives/notification_ads/creative_notification_ads_database_table.h @@ -28,9 +28,9 @@ class GeoTargets; class Segments; using GetCreativeNotificationAdsCallback = - base::OnceCallback&, - const CreativeNotificationAdList&)>; + base::OnceCallback& segments, + const CreativeNotificationAdList& creative_ads)>; class CreativeNotificationAds final : public TableInterface { public: diff --git a/components/brave_ads/core/internal/creatives/promoted_content_ads/creative_promoted_content_ads_database_table.cc b/components/brave_ads/core/internal/creatives/promoted_content_ads/creative_promoted_content_ads_database_table.cc index f7b27b888dd2..6a6a1a0c6709 100644 --- a/components/brave_ads/core/internal/creatives/promoted_content_ads/creative_promoted_content_ads_database_table.cc +++ b/components/brave_ads/core/internal/creatives/promoted_content_ads/creative_promoted_content_ads_database_table.cc @@ -99,12 +99,12 @@ CreativePromotedContentAdInfo GetFromRecord(mojom::DBRecordInfo* record) { } CreativePromotedContentAdMap GroupCreativeAdsFromResponse( - mojom::DBCommandResponseInfoPtr response) { - DCHECK(response); + mojom::DBCommandResponseInfoPtr command_response) { + DCHECK(command_response); CreativePromotedContentAdMap creative_ads; - for (const auto& record : response->result->get_records()) { + for (const auto& record : command_response->result->get_records()) { const CreativePromotedContentAdInfo creative_ad = GetFromRecord(record.get()); @@ -133,11 +133,11 @@ CreativePromotedContentAdMap GroupCreativeAdsFromResponse( } CreativePromotedContentAdList GetCreativeAdsFromResponse( - mojom::DBCommandResponseInfoPtr response) { - DCHECK(response); + mojom::DBCommandResponseInfoPtr command_response) { + DCHECK(command_response); const CreativePromotedContentAdMap grouped_creative_ads = - GroupCreativeAdsFromResponse(std::move(response)); + GroupCreativeAdsFromResponse(std::move(command_response)); CreativePromotedContentAdList creative_ads; for (const auto& [creative_instance_id, creative_ad] : grouped_creative_ads) { @@ -147,17 +147,19 @@ CreativePromotedContentAdList GetCreativeAdsFromResponse( return creative_ads; } -void OnGetForCreativeInstanceId(const std::string& creative_instance_id, - GetCreativePromotedContentAdCallback callback, - mojom::DBCommandResponseInfoPtr response) { - if (!response || response->status != - mojom::DBCommandResponseInfo::StatusType::RESPONSE_OK) { +void OnGetForCreativeInstanceId( + const std::string& creative_instance_id, + GetCreativePromotedContentAdCallback callback, + mojom::DBCommandResponseInfoPtr command_response) { + if (!command_response || + command_response->status != + mojom::DBCommandResponseInfo::StatusType::RESPONSE_OK) { BLOG(0, "Failed to get creative promoted content ad"); return std::move(callback).Run(/*success*/ false, creative_instance_id, {}); } const CreativePromotedContentAdList creative_ads = - GetCreativeAdsFromResponse(std::move(response)); + GetCreativeAdsFromResponse(std::move(command_response)); if (creative_ads.size() != 1) { BLOG(0, "Failed to get creative promoted content ad"); @@ -171,29 +173,31 @@ void OnGetForCreativeInstanceId(const std::string& creative_instance_id, void OnGetForSegments(const SegmentList& segments, GetCreativePromotedContentAdsCallback callback, - mojom::DBCommandResponseInfoPtr response) { - if (!response || response->status != - mojom::DBCommandResponseInfo::StatusType::RESPONSE_OK) { + mojom::DBCommandResponseInfoPtr command_response) { + if (!command_response || + command_response->status != + mojom::DBCommandResponseInfo::StatusType::RESPONSE_OK) { BLOG(0, "Failed to get creative promoted content ads"); return std::move(callback).Run(/*success*/ false, segments, {}); } const CreativePromotedContentAdList creative_ads = - GetCreativeAdsFromResponse(std::move(response)); + GetCreativeAdsFromResponse(std::move(command_response)); std::move(callback).Run(/*success*/ true, segments, creative_ads); } void OnGetAll(GetCreativePromotedContentAdsCallback callback, - mojom::DBCommandResponseInfoPtr response) { - if (!response || response->status != - mojom::DBCommandResponseInfo::StatusType::RESPONSE_OK) { + mojom::DBCommandResponseInfoPtr command_response) { + if (!command_response || + command_response->status != + mojom::DBCommandResponseInfo::StatusType::RESPONSE_OK) { BLOG(0, "Failed to get all creative new tab page ads"); return std::move(callback).Run(/*success*/ false, {}, {}); } const CreativePromotedContentAdList creative_ads = - GetCreativeAdsFromResponse(std::move(response)); + GetCreativeAdsFromResponse(std::move(command_response)); const SegmentList segments = GetSegments(creative_ads); diff --git a/components/brave_ads/core/internal/creatives/promoted_content_ads/creative_promoted_content_ads_database_table.h b/components/brave_ads/core/internal/creatives/promoted_content_ads/creative_promoted_content_ads_database_table.h index e96fc38b72b8..afbb55d5e962 100644 --- a/components/brave_ads/core/internal/creatives/promoted_content_ads/creative_promoted_content_ads_database_table.h +++ b/components/brave_ads/core/internal/creatives/promoted_content_ads/creative_promoted_content_ads_database_table.h @@ -28,14 +28,14 @@ class GeoTargets; class Segments; using GetCreativePromotedContentAdCallback = - base::OnceCallback; + const CreativePromotedContentAdInfo& creative_ad)>; using GetCreativePromotedContentAdsCallback = - base::OnceCallback&, - const CreativePromotedContentAdList&)>; + base::OnceCallback& segments, + const CreativePromotedContentAdList& creative_ads)>; class CreativePromotedContentAds final : public TableInterface { public: diff --git a/components/brave_ads/core/internal/database/database_manager.cc b/components/brave_ads/core/internal/database/database_manager.cc index 3edd1d84b8c8..926631acbcaa 100644 --- a/components/brave_ads/core/internal/database/database_manager.cc +++ b/components/brave_ads/core/internal/database/database_manager.cc @@ -70,13 +70,14 @@ void DatabaseManager::CreateOrOpen(ResultCallback callback) { weak_factory_.GetWeakPtr(), std::move(callback))); } -void DatabaseManager::OnCreateOrOpen(ResultCallback callback, - mojom::DBCommandResponseInfoPtr response) { - DCHECK(response); +void DatabaseManager::OnCreateOrOpen( + ResultCallback callback, + mojom::DBCommandResponseInfoPtr command_response) { + DCHECK(command_response); - if (response->status != + if (command_response->status != mojom::DBCommandResponseInfo::StatusType::RESPONSE_OK || - !response->result) { + !command_response->result) { BLOG(0, "Failed to open or create database"); NotifyFailedToCreateOrOpenDatabase(); std::move(callback).Run(/*success*/ false); @@ -85,9 +86,10 @@ void DatabaseManager::OnCreateOrOpen(ResultCallback callback, NotifyDidCreateOrOpenDatabase(); - DCHECK(response->result->get_value()->which() == + DCHECK(command_response->result->get_value()->which() == mojom::DBValue::Tag::kIntValue); - const int from_version = response->result->get_value()->get_int_value(); + const int from_version = + command_response->result->get_value()->get_int_value(); MaybeMigrate(from_version, std::move(callback)); } diff --git a/components/brave_ads/core/internal/database/database_manager.h b/components/brave_ads/core/internal/database/database_manager.h index 835c791c99d5..034ae204b1b4 100644 --- a/components/brave_ads/core/internal/database/database_manager.h +++ b/components/brave_ads/core/internal/database/database_manager.h @@ -36,7 +36,7 @@ class DatabaseManager final { private: void OnCreateOrOpen(ResultCallback callback, - mojom::DBCommandResponseInfoPtr response); + mojom::DBCommandResponseInfoPtr command_response); void MaybeMigrate(int from_version, ResultCallback callback) const; void OnMigrate(int from_version, ResultCallback callback, bool success) const; diff --git a/components/brave_ads/core/internal/processors/contextual/text_embedding/text_embedding_html_events.h b/components/brave_ads/core/internal/processors/contextual/text_embedding/text_embedding_html_events.h index 3254c85ca9f6..114da821aae1 100644 --- a/components/brave_ads/core/internal/processors/contextual/text_embedding/text_embedding_html_events.h +++ b/components/brave_ads/core/internal/processors/contextual/text_embedding/text_embedding_html_events.h @@ -12,7 +12,7 @@ namespace brave_ads { -using TextEmbeddingHtmlEventCallback = base::OnceCallback; +using TextEmbeddingHtmlEventCallback = base::OnceCallback; struct TextEmbeddingHtmlEventInfo; diff --git a/components/brave_ads/core/internal/processors/contextual/text_embedding/text_embedding_html_events_database_table.cc b/components/brave_ads/core/internal/processors/contextual/text_embedding/text_embedding_html_events_database_table.cc index 5815a330aaad..0a1fe62684eb 100644 --- a/components/brave_ads/core/internal/processors/contextual/text_embedding/text_embedding_html_events_database_table.cc +++ b/components/brave_ads/core/internal/processors/contextual/text_embedding/text_embedding_html_events_database_table.cc @@ -66,10 +66,12 @@ TextEmbeddingHtmlEventInfo GetFromRecord(mojom::DBRecordInfo* record) { return text_embedding_html_event; } -void OnGetTextEmbeddingHtmlEvents(GetTextEmbeddingHtmlEventsCallback callback, - mojom::DBCommandResponseInfoPtr response) { - if (!response || response->status != - mojom::DBCommandResponseInfo::StatusType::RESPONSE_OK) { +void OnGetTextEmbeddingHtmlEvents( + GetTextEmbeddingHtmlEventsCallback callback, + mojom::DBCommandResponseInfoPtr command_response) { + if (!command_response || + command_response->status != + mojom::DBCommandResponseInfo::StatusType::RESPONSE_OK) { BLOG(0, "Failed to get embeddings"); return std::move(callback).Run(/* success */ false, /* text_embedding_html_events */ {}); @@ -77,7 +79,7 @@ void OnGetTextEmbeddingHtmlEvents(GetTextEmbeddingHtmlEventsCallback callback, TextEmbeddingHtmlEventList text_embedding_html_events; - for (const auto& record : response->result->get_records()) { + for (const auto& record : command_response->result->get_records()) { const TextEmbeddingHtmlEventInfo& text_embedding_html_event = GetFromRecord(record.get()); text_embedding_html_events.push_back(text_embedding_html_event); diff --git a/components/brave_ads/core/internal/processors/contextual/text_embedding/text_embedding_html_events_database_table.h b/components/brave_ads/core/internal/processors/contextual/text_embedding/text_embedding_html_events_database_table.h index 58f8fef58edc..16892cd46089 100644 --- a/components/brave_ads/core/internal/processors/contextual/text_embedding/text_embedding_html_events_database_table.h +++ b/components/brave_ads/core/internal/processors/contextual/text_embedding/text_embedding_html_events_database_table.h @@ -17,7 +17,7 @@ namespace brave_ads::database::table { using GetTextEmbeddingHtmlEventsCallback = base::OnceCallback; class TextEmbeddingHtmlEvents final : public TableInterface { diff --git a/components/brave_ads/core/internal/resources/resources_util.h b/components/brave_ads/core/internal/resources/resources_util.h index 78bf6ba1cc77..12c67f95c4c0 100644 --- a/components/brave_ads/core/internal/resources/resources_util.h +++ b/components/brave_ads/core/internal/resources/resources_util.h @@ -13,6 +13,7 @@ namespace brave_ads::resource { +// TODO(tmancey): template using LoadAndParseResourceCallback = base::OnceCallback)>; From ba2820bd14cc30dc4ca2d71da8c5ac39033d3c3c Mon Sep 17 00:00:00 2001 From: Terry Mancey Date: Fri, 14 Apr 2023 11:54:05 +0100 Subject: [PATCH 03/11] Refactor Brave Ads features --- components/brave_ads/common/features.cc | 2 +- components/brave_ads/core/internal/BUILD.gn | 2 - .../core/internal/account/account_features.cc | 23 +----- .../core/internal/account/account_features.h | 10 ++- .../account/account_features_unittest.cc | 20 ++--- .../statement/next_payment_date_util.cc | 4 +- .../next_payment_date_util_unittest.cc | 10 +-- .../statement/statement_util_unittest.cc | 2 +- ..._event_handler_if_ads_disabled_unittest.cc | 10 +-- .../new_tab_page_ad_event_handler_unittest.cc | 4 +- ...moted_content_ad_event_handler_unittest.cc | 9 ++- ...search_result_ad_event_handler_unittest.cc | 9 ++- .../ads/inline_content_ad_features.cc | 32 +------- .../internal/ads/inline_content_ad_features.h | 15 ++-- .../inline_content_ad_features_unittest.cc | 26 +++---- .../internal/ads/new_tab_page_ad_features.cc | 43 +---------- .../internal/ads/new_tab_page_ad_features.h | 19 +++-- .../ads/new_tab_page_ad_features_unittest.cc | 36 ++++----- .../internal/ads/notification_ad_features.cc | 33 +------- .../internal/ads/notification_ad_features.h | 16 ++-- .../ads/notification_ad_features_unittest.cc | 26 +++---- .../internal/ads/notification_ad_handler.cc | 4 +- .../ads/promoted_content_ad_features.cc | 34 ++------- .../ads/promoted_content_ad_features.h | 15 ++-- .../promoted_content_ad_features_unittest.cc | 26 +++---- .../internal/ads/search_result_ad_features.cc | 32 +------- .../internal/ads/search_result_ad_features.h | 15 ++-- .../ads/search_result_ad_features_unittest.cc | 26 +++---- .../choose/eligible_ads_predictor_util.h | 24 ++++-- .../eligible_ads_predictor_util_unittest.cc | 2 +- .../eligible_ads/eligible_ads_features.cc | 66 ++-------------- .../eligible_ads/eligible_ads_features.h | 21 ++++-- .../eligible_ads_features_unittest.cc | 48 ++++++------ .../eligible_ads_features_util.cc | 1 + .../conversion_exclusion_rule.cc | 2 +- .../conversion_exclusion_rule_unittest.cc | 2 +- .../exclusion_rule_features.cc | 52 ++----------- .../exclusion_rules/exclusion_rule_features.h | 24 ++++-- .../exclusion_rule_features_unittest.cc | 52 ++++++------- ...otification_ad_dismissed_exclusion_rule.cc | 2 +- ...on_ad_dismissed_exclusion_rule_unittest.cc | 40 +++++----- ...otification_ad_embedding_exclusion_rule.cc | 3 +- ...on_ad_embedding_exclusion_rule_unittest.cc | 10 +-- .../transferred_exclusion_rule.cc | 9 +-- .../transferred_exclusion_rule_unittest.cc | 24 +++--- .../eligible_inline_content_ads_v1.cc | 3 +- .../eligible_inline_content_ads_v2.cc | 3 +- .../eligible_new_tab_page_ads_v1.cc | 3 +- .../eligible_new_tab_page_ads_v2.cc | 3 +- .../eligible_notification_ads_v1.cc | 3 +- .../eligible_notification_ads_v2.cc | 3 +- .../eligible_notification_ads_v3.cc | 3 +- .../eligible_notification_ads_v3_unittest.cc | 2 +- .../ads/serving/inline_content_ad_serving.cc | 7 +- .../inline_content_ad_serving_features.cc | 22 +----- .../inline_content_ad_serving_features.h | 11 ++- ...ne_content_ad_serving_features_unittest.cc | 20 ++--- ...ntent_ad_serving_features_unittest_util.cc | 9 ++- ...ontent_ad_serving_features_unittest_util.h | 4 +- .../inline_content_ad_serving_unittest.cc | 4 +- .../ads/serving/new_tab_page_ad_serving.cc | 7 +- .../new_tab_page_ad_serving_features.cc | 24 ++---- .../new_tab_page_ad_serving_features.h | 11 ++- ...w_tab_page_ad_serving_features_unittest.cc | 20 ++--- ..._page_ad_serving_features_unittest_util.cc | 9 ++- ...b_page_ad_serving_features_unittest_util.h | 4 +- .../new_tab_page_ad_serving_unittest.cc | 4 +- .../ads/serving/notification_ad_serving.cc | 7 +- .../notification_ad_serving_features.cc | 22 +----- .../notification_ad_serving_features.h | 11 ++- ...tification_ad_serving_features_unittest.cc | 20 ++--- ...ation_ad_serving_features_unittest_util.cc | 9 ++- ...cation_ad_serving_features_unittest_util.h | 4 +- .../notification_ad_serving_unittest.cc | 4 +- .../browser_is_active_permission_rule.cc | 2 +- ...wser_is_active_permission_rule_unittest.cc | 2 +- .../full_screen_mode_permission_rule.cc | 2 +- ...ll_screen_mode_permission_rule_unittest.cc | 2 +- ...ine_content_ads_per_day_permission_rule.cc | 4 +- ...nt_ads_per_day_permission_rule_unittest.cc | 12 +-- ...ne_content_ads_per_hour_permission_rule.cc | 4 +- ...t_ads_per_hour_permission_rule_unittest.cc | 12 +-- .../permission_rules/media_permission_rule.cc | 2 +- .../media_permission_rule_unittest.cc | 2 +- .../network_connection_permission_rule.cc | 3 +- ...ork_connection_permission_rule_unittest.cc | 2 +- ...e_ads_minimum_wait_time_permission_rule.cc | 2 +- ...imum_wait_time_permission_rule_unittest.cc | 4 +- ...ew_tab_page_ads_per_day_permission_rule.cc | 4 +- ...ge_ads_per_day_permission_rule_unittest.cc | 12 +-- ...w_tab_page_ads_per_hour_permission_rule.cc | 4 +- ...e_ads_per_hour_permission_rule_unittest.cc | 12 +-- ...otification_ads_per_day_permission_rule.cc | 4 +- ...on_ads_per_day_permission_rule_unittest.cc | 12 +-- .../permission_rule_features.cc | 61 ++------------- .../permission_rule_features.h | 28 +++++-- .../permission_rule_features_unittest.cc | 50 ++++++------- ...ted_content_ads_per_day_permission_rule.cc | 4 +- ...nt_ads_per_day_permission_rule_unittest.cc | 12 +-- ...ed_content_ads_per_hour_permission_rule.cc | 4 +- ...t_ads_per_hour_permission_rule_unittest.cc | 12 +-- ...arch_result_ads_per_day_permission_rule.cc | 4 +- ...lt_ads_per_day_permission_rule_unittest.cc | 12 +-- ...rch_result_ads_per_hour_permission_rule.cc | 4 +- ...t_ads_per_hour_permission_rule_unittest.cc | 12 +-- .../user_activity_permission_rule_unittest.cc | 2 +- .../epsilon_greedy_bandit_features.cc | 23 +----- .../epsilon_greedy_bandit_features.h | 10 ++- ...epsilon_greedy_bandit_features_unittest.cc | 20 ++--- .../epsilon_greedy_bandit_model.cc | 2 +- .../epsilon_greedy_bandit_model_unittest.cc | 10 +-- .../purchase_intent_features.cc | 41 +--------- .../purchase_intent_features.h | 21 ++++-- .../purchase_intent_features_unittest.cc | 40 +++++----- .../purchase_intent/purchase_intent_model.cc | 6 +- .../text_classification_features.cc | 33 +------- .../text_classification_features.h | 16 ++-- .../text_classification_features_unittest.cc | 30 ++++---- .../text_embedding/text_embedding_features.cc | 32 +------- .../text_embedding/text_embedding_features.h | 15 ++-- .../text_embedding_features_unittest.cc | 46 ++++++------ .../targeting/top_segments_unittest.cc | 18 ++--- .../serving/targeting/user_model_builder.cc | 8 +- .../common/metrics/field_trial_params_util.cc | 56 -------------- .../common/metrics/field_trial_params_util.h | 31 -------- .../core/internal/conversions/conversions.cc | 2 +- .../conversions/conversions_features.cc | 37 ++------- .../conversions/conversions_features.h | 16 ++-- .../conversions_features_unittest.cc | 30 ++++---- .../deprecated/client/client_state_manager.cc | 2 +- ...verride_features_from_command_line_util.cc | 30 ++++---- ...eatures_from_command_line_util_unittest.cc | 75 +++++++++---------- ...xt_embedding_html_events_database_table.cc | 2 +- .../text_embedding_html_events_unittest.cc | 9 +-- .../text_embedding_processor.cc | 2 +- .../core/internal/reminder/reminder.cc | 2 +- .../internal/reminder/reminder_features.cc | 26 ++----- .../internal/reminder/reminder_features.h | 12 +-- .../reminder/reminder_features_unittest.cc | 20 ++--- .../internal/reminder/reminder_unittest.cc | 8 +- ...ed_same_ad_multiple_times_reminder_util.cc | 4 +- ...d_multiple_times_reminder_util_unittest.cc | 14 ++-- .../anti_targeting/anti_targeting_features.cc | 25 ++----- .../anti_targeting/anti_targeting_features.h | 11 ++- .../anti_targeting_features_unittest.cc | 20 ++--- .../anti_targeting/anti_targeting_info.cc | 2 +- .../anti_targeting/anti_targeting_resource.cc | 2 +- .../conversions/conversions_info.cc | 2 +- .../conversions/conversions_resource.cc | 2 +- .../purchase_intent/purchase_intent_info.cc | 2 +- .../purchase_intent_resource.cc | 2 +- .../text_classification_resource.cc | 2 +- .../text_embedding/text_embedding_resource.cc | 2 +- .../core/internal/settings/settings.cc | 4 +- .../internal/settings/settings_unittest.cc | 8 +- .../idle_detection/idle_detection.cc | 4 +- .../idle_detection/idle_detection_features.cc | 48 ++---------- .../idle_detection/idle_detection_features.h | 21 ++++-- .../idle_detection_features_unittest.cc | 40 +++++----- .../idle_detection/idle_detection_util.cc | 10 +-- .../idle_detection/idle_detection_util.h | 4 +- .../idle_detection_util_unittest.cc | 22 +++--- .../user_activity/user_activity_features.cc | 45 ++--------- .../user_activity/user_activity_features.h | 22 ++++-- .../user_activity_features_unittest.cc | 40 +++++----- .../user_activity/user_activity_manager.cc | 20 ++--- .../user_activity_scoring_util.cc | 11 +-- .../user_activity_scoring_util_unittest.cc | 4 +- 168 files changed, 1019 insertions(+), 1554 deletions(-) delete mode 100644 components/brave_ads/core/internal/common/metrics/field_trial_params_util.cc delete mode 100644 components/brave_ads/core/internal/common/metrics/field_trial_params_util.h diff --git a/components/brave_ads/common/features.cc b/components/brave_ads/common/features.cc index b44bc5871b61..0beca1f3caa4 100644 --- a/components/brave_ads/common/features.cc +++ b/components/brave_ads/common/features.cc @@ -63,7 +63,7 @@ constexpr char kFieldTrialParameterShouldSupportMultipleDisplays[] = constexpr bool kDefaultShouldSupportMultipleDisplays = false; constexpr char kFieldTrialParameterShouldAttachNotificationAdToBrowserWindow[] = - "should_attached_ad_notification_to_browser_window"; + "should_attach_ad_notification_to_browser_window"; constexpr bool kDefaultShouldAttachNotificationAdToBrowserWindow = false; // Ad notification normalized display coordinate for the x component should be diff --git a/components/brave_ads/core/internal/BUILD.gn b/components/brave_ads/core/internal/BUILD.gn index df64cb23fdf6..bd64838c730c 100644 --- a/components/brave_ads/core/internal/BUILD.gn +++ b/components/brave_ads/core/internal/BUILD.gn @@ -561,8 +561,6 @@ source_set("internal") { "common/locale/subdivision_code_util.h", "common/logging_util.cc", "common/logging_util.h", - "common/metrics/field_trial_params_util.cc", - "common/metrics/field_trial_params_util.h", "common/net/http/http_status_code.h", "common/numbers/number_util.cc", "common/numbers/number_util.h", diff --git a/components/brave_ads/core/internal/account/account_features.cc b/components/brave_ads/core/internal/account/account_features.cc index 1dd76b1b922d..d9456422912f 100644 --- a/components/brave_ads/core/internal/account/account_features.cc +++ b/components/brave_ads/core/internal/account/account_features.cc @@ -5,27 +5,12 @@ #include "brave/components/brave_ads/core/internal/account/account_features.h" -#include "base/metrics/field_trial_params.h" +namespace brave_ads { -namespace brave_ads::features { - -namespace { - -constexpr char kNextPaymentDayFieldTrialParamName[] = "next_payment_day"; -constexpr int kNextPaymentDayDefaultValue = 7; - -} // namespace - -BASE_FEATURE(kAccount, "Account", base::FEATURE_ENABLED_BY_DEFAULT); +BASE_FEATURE(kAccountFeature, "Account", base::FEATURE_ENABLED_BY_DEFAULT); bool IsAccountEnabled() { - return base::FeatureList::IsEnabled(kAccount); -} - -int GetNextPaymentDay() { - return GetFieldTrialParamByFeatureAsInt(kAccount, - kNextPaymentDayFieldTrialParamName, - kNextPaymentDayDefaultValue); + return base::FeatureList::IsEnabled(kAccountFeature); } -} // namespace brave_ads::features +} // namespace brave_ads diff --git a/components/brave_ads/core/internal/account/account_features.h b/components/brave_ads/core/internal/account/account_features.h index 11663b8db62d..8a02107dcc22 100644 --- a/components/brave_ads/core/internal/account/account_features.h +++ b/components/brave_ads/core/internal/account/account_features.h @@ -7,15 +7,17 @@ #define BRAVE_COMPONENTS_BRAVE_ADS_CORE_INTERNAL_ACCOUNT_ACCOUNT_FEATURES_H_ #include "base/feature_list.h" +#include "base/metrics/field_trial_params.h" -namespace brave_ads::features { +namespace brave_ads { -BASE_DECLARE_FEATURE(kAccount); +BASE_DECLARE_FEATURE(kAccountFeature); bool IsAccountEnabled(); -int GetNextPaymentDay(); +constexpr base::FeatureParam kNextPaymentDay{&kAccountFeature, + "next_payment_day", 7}; -} // namespace brave_ads::features +} // namespace brave_ads #endif // BRAVE_COMPONENTS_BRAVE_ADS_CORE_INTERNAL_ACCOUNT_ACCOUNT_FEATURES_H_ diff --git a/components/brave_ads/core/internal/account/account_features_unittest.cc b/components/brave_ads/core/internal/account/account_features_unittest.cc index ce588113efdc..6bd211da680a 100644 --- a/components/brave_ads/core/internal/account/account_features_unittest.cc +++ b/components/brave_ads/core/internal/account/account_features_unittest.cc @@ -12,9 +12,9 @@ // npm run test -- brave_unit_tests --filter=BatAds* -namespace brave_ads::features { +namespace brave_ads { -TEST(BatAdsAccountFeaturesTest, IsAccountEnabled) { +TEST(BatAdsAccountFeaturesTest, IsEnabled) { // Arrange // Act @@ -23,12 +23,12 @@ TEST(BatAdsAccountFeaturesTest, IsAccountEnabled) { EXPECT_TRUE(IsAccountEnabled()); } -TEST(BatAdsAccountFeaturesTest, IsAccountDisabled) { +TEST(BatAdsAccountFeaturesTest, IsDisabled) { // Arrange const std::vector enabled_features; std::vector disabled_features; - disabled_features.emplace_back(kAccount); + disabled_features.emplace_back(kAccountFeature); base::test::ScopedFeatureList scoped_feature_list; scoped_feature_list.InitWithFeaturesAndParameters(enabled_features, @@ -45,7 +45,7 @@ TEST(BatAdsAccountFeaturesTest, GetNextPaymentDay) { std::vector enabled_features; base::FieldTrialParams params; params["next_payment_day"] = "5"; - enabled_features.emplace_back(kAccount, params); + enabled_features.emplace_back(kAccountFeature, params); const std::vector disabled_features; @@ -56,7 +56,7 @@ TEST(BatAdsAccountFeaturesTest, GetNextPaymentDay) { // Act // Assert - EXPECT_EQ(5, GetNextPaymentDay()); + EXPECT_EQ(5, kNextPaymentDay.Get()); } TEST(BatAdsAccountFeaturesTest, DefaultNextPaymentDay) { @@ -65,7 +65,7 @@ TEST(BatAdsAccountFeaturesTest, DefaultNextPaymentDay) { // Act // Assert - EXPECT_EQ(7, GetNextPaymentDay()); + EXPECT_EQ(7, kNextPaymentDay.Get()); } TEST(BatAdsAccountFeaturesTest, DefaultNextPaymentDayWhenDisabled) { @@ -73,7 +73,7 @@ TEST(BatAdsAccountFeaturesTest, DefaultNextPaymentDayWhenDisabled) { const std::vector enabled_features; std::vector disabled_features; - disabled_features.emplace_back(kAccount); + disabled_features.emplace_back(kAccountFeature); base::test::ScopedFeatureList scoped_feature_list; scoped_feature_list.InitWithFeaturesAndParameters(enabled_features, @@ -82,7 +82,7 @@ TEST(BatAdsAccountFeaturesTest, DefaultNextPaymentDayWhenDisabled) { // Act // Assert - EXPECT_EQ(7, GetNextPaymentDay()); + EXPECT_EQ(7, kNextPaymentDay.Get()); } -} // namespace brave_ads::features +} // namespace brave_ads diff --git a/components/brave_ads/core/internal/account/statement/next_payment_date_util.cc b/components/brave_ads/core/internal/account/statement/next_payment_date_util.cc index 8a2a518d8d80..eb155f49f1dc 100644 --- a/components/brave_ads/core/internal/account/statement/next_payment_date_util.cc +++ b/components/brave_ads/core/internal/account/statement/next_payment_date_util.cc @@ -21,7 +21,7 @@ base::Time CalculateNextPaymentDate(const base::Time next_token_redemption_at, int month = now_exploded.month; - if (now_exploded.day_of_month <= features::GetNextPaymentDay()) { + if (now_exploded.day_of_month <= kNextPaymentDay.Get()) { // Today is on or before our next payment day if (DidReconcileTransactionsLastMonth(transactions)) { // If last month has reconciled transactions, then the next payment date @@ -66,7 +66,7 @@ base::Time CalculateNextPaymentDate(const base::Time next_token_redemption_at, base::Time::Exploded next_payment_date_exploded = now_exploded; next_payment_date_exploded.year = year; next_payment_date_exploded.month = month; - next_payment_date_exploded.day_of_month = features::GetNextPaymentDay(); + next_payment_date_exploded.day_of_month = kNextPaymentDay.Get(); next_payment_date_exploded.hour = 23; next_payment_date_exploded.minute = 59; next_payment_date_exploded.second = 59; diff --git a/components/brave_ads/core/internal/account/statement/next_payment_date_util_unittest.cc b/components/brave_ads/core/internal/account/statement/next_payment_date_util_unittest.cc index aa0775e5ffae..2dc1d1d2196e 100644 --- a/components/brave_ads/core/internal/account/statement/next_payment_date_util_unittest.cc +++ b/components/brave_ads/core/internal/account/statement/next_payment_date_util_unittest.cc @@ -23,7 +23,7 @@ TEST_F(BatAdsNextPaymentDateUtilTest, base::FieldTrialParams params; params["next_payment_day"] = "5"; base::test::ScopedFeatureList scoped_feature_list; - scoped_feature_list.InitAndEnableFeatureWithParameters(features::kAccount, + scoped_feature_list.InitAndEnableFeatureWithParameters(kAccountFeature, params); AdvanceClockTo(TimeFromString("1 January 2020", /*is_local*/ false)); @@ -54,7 +54,7 @@ TEST_F(BatAdsNextPaymentDateUtilTest, base::FieldTrialParams params; params["next_payment_day"] = "5"; base::test::ScopedFeatureList scoped_feature_list; - scoped_feature_list.InitAndEnableFeatureWithParameters(features::kAccount, + scoped_feature_list.InitAndEnableFeatureWithParameters(kAccountFeature, params); AdvanceClockTo(TimeFromString("1 February 2020", /*is_local*/ false)); @@ -80,7 +80,7 @@ TEST_F(BatAdsNextPaymentDateUtilTest, base::FieldTrialParams params; params["next_payment_day"] = "5"; base::test::ScopedFeatureList scoped_feature_list; - scoped_feature_list.InitAndEnableFeatureWithParameters(features::kAccount, + scoped_feature_list.InitAndEnableFeatureWithParameters(kAccountFeature, params); AdvanceClockTo(TimeFromString("31 January 2020", /*is_local*/ false)); @@ -110,7 +110,7 @@ TEST_F( base::FieldTrialParams params; params["next_payment_day"] = "5"; base::test::ScopedFeatureList scoped_feature_list; - scoped_feature_list.InitAndEnableFeatureWithParameters(features::kAccount, + scoped_feature_list.InitAndEnableFeatureWithParameters(kAccountFeature, params); AdvanceClockTo(TimeFromString("11 January 2020", /*is_local*/ false)); @@ -137,7 +137,7 @@ TEST_F( base::FieldTrialParams params; params["next_payment_day"] = "5"; base::test::ScopedFeatureList scoped_feature_list; - scoped_feature_list.InitAndEnableFeatureWithParameters(features::kAccount, + scoped_feature_list.InitAndEnableFeatureWithParameters(kAccountFeature, params); AdvanceClockTo(TimeFromString("31 January 2020", /*is_local*/ false)); diff --git a/components/brave_ads/core/internal/account/statement/statement_util_unittest.cc b/components/brave_ads/core/internal/account/statement/statement_util_unittest.cc index bf5fd21e175d..735d79d36d30 100644 --- a/components/brave_ads/core/internal/account/statement/statement_util_unittest.cc +++ b/components/brave_ads/core/internal/account/statement/statement_util_unittest.cc @@ -23,7 +23,7 @@ TEST_F(BatAdsStatementUtilTest, GetNextPaymentDate) { base::FieldTrialParams params; params["next_payment_day"] = "7"; base::test::ScopedFeatureList scoped_feature_list; - scoped_feature_list.InitAndEnableFeatureWithParameters(features::kAccount, + scoped_feature_list.InitAndEnableFeatureWithParameters(kAccountFeature, params); AdvanceClockTo(TimeFromString("31 January 2020", /*is_local*/ false)); diff --git a/components/brave_ads/core/internal/ads/ad_events/new_tab_page_ads/new_tab_page_ad_event_handler_if_ads_disabled_unittest.cc b/components/brave_ads/core/internal/ads/ad_events/new_tab_page_ads/new_tab_page_ad_event_handler_if_ads_disabled_unittest.cc index 7d9fdc7f9c67..718c705703e0 100644 --- a/components/brave_ads/core/internal/ads/ad_events/new_tab_page_ads/new_tab_page_ad_event_handler_if_ads_disabled_unittest.cc +++ b/components/brave_ads/core/internal/ads/ad_events/new_tab_page_ads/new_tab_page_ad_event_handler_if_ads_disabled_unittest.cc @@ -257,7 +257,7 @@ TEST_F(BatAdsNewTabPageAdEventHandlerIfAdsDisabledTest, const std::string placement_id = base::GUID::GenerateRandomV4().AsLowercaseString(); - const int ads_per_hour = features::GetMaximumAdsPerHour(); + const int ads_per_hour = kMaximumAdsPerHour.Get(); const CreativeNewTabPageAdInfo creative_ad = BuildAndSaveCreativeAd(); const AdEventInfo served_ad_event = BuildAdEvent( @@ -267,7 +267,7 @@ TEST_F(BatAdsNewTabPageAdEventHandlerIfAdsDisabledTest, creative_ad, AdType::kNewTabPageAd, ConfirmationType::kViewed, Now()); FireAdEvents(viewed_ad_event, ads_per_hour - 1); - AdvanceClockBy(features::GetMinimumWaitTime()); + AdvanceClockBy(kMinimumWaitTime.Get()); event_handler_->FireEvent(placement_id, creative_ad.creative_instance_id, mojom::NewTabPageAdEventType::kServed); @@ -288,7 +288,7 @@ TEST_F(BatAdsNewTabPageAdEventHandlerIfAdsDisabledTest, // Arrange ForcePermissionRulesForTesting(); - const int ads_per_hour = features::GetMaximumAdsPerHour(); + const int ads_per_hour = kMaximumAdsPerHour.Get(); const CreativeNewTabPageAdInfo creative_ad = BuildAndSaveCreativeAd(); const AdEventInfo served_ad_event = BuildAdEvent( @@ -317,7 +317,7 @@ TEST_F(BatAdsNewTabPageAdEventHandlerIfAdsDisabledTest, // Arrange ForcePermissionRulesForTesting(); - const int ads_per_day = features::GetMaximumAdsPerDay(); + const int ads_per_day = kMaximumAdsPerDay.Get(); const CreativeNewTabPageAdInfo creative_ad = BuildAndSaveCreativeAd(); const AdEventInfo served_ad_event = BuildAdEvent( @@ -351,7 +351,7 @@ TEST_F(BatAdsNewTabPageAdEventHandlerIfAdsDisabledTest, // Arrange ForcePermissionRulesForTesting(); - const int ads_per_day = features::GetMaximumAdsPerDay(); + const int ads_per_day = kMaximumAdsPerDay.Get(); const CreativeNewTabPageAdInfo creative_ad = BuildAndSaveCreativeAd(); const AdEventInfo served_ad_event = BuildAdEvent( diff --git a/components/brave_ads/core/internal/ads/ad_events/new_tab_page_ads/new_tab_page_ad_event_handler_unittest.cc b/components/brave_ads/core/internal/ads/ad_events/new_tab_page_ads/new_tab_page_ad_event_handler_unittest.cc index da26a6f8e0ef..f678fe0dd20e 100644 --- a/components/brave_ads/core/internal/ads/ad_events/new_tab_page_ads/new_tab_page_ad_event_handler_unittest.cc +++ b/components/brave_ads/core/internal/ads/ad_events/new_tab_page_ads/new_tab_page_ad_event_handler_unittest.cc @@ -246,7 +246,7 @@ TEST_F(BatAdsNewTabPageAdEventHandlerTest, // Arrange ForcePermissionRulesForTesting(); - const int ads_per_hour = features::GetMaximumAdsPerHour(); + const int ads_per_hour = kMaximumAdsPerHour.Get(); const CreativeNewTabPageAdInfo creative_ad = BuildAndSaveCreativeAd(); const AdEventInfo served_ad_event = BuildAdEvent( @@ -256,7 +256,7 @@ TEST_F(BatAdsNewTabPageAdEventHandlerTest, creative_ad, AdType::kNewTabPageAd, ConfirmationType::kViewed, Now()); FireAdEvents(viewed_ad_event, ads_per_hour - 1); - AdvanceClockBy(features::GetMinimumWaitTime()); + AdvanceClockBy(kMinimumWaitTime.Get()); const std::string placement_id = base::GUID::GenerateRandomV4().AsLowercaseString(); diff --git a/components/brave_ads/core/internal/ads/ad_events/promoted_content_ads/promoted_content_ad_event_handler_unittest.cc b/components/brave_ads/core/internal/ads/ad_events/promoted_content_ads/promoted_content_ad_event_handler_unittest.cc index 45995c1f68a3..bba7b2de5c73 100644 --- a/components/brave_ads/core/internal/ads/ad_events/promoted_content_ads/promoted_content_ad_event_handler_unittest.cc +++ b/components/brave_ads/core/internal/ads/ad_events/promoted_content_ads/promoted_content_ad_event_handler_unittest.cc @@ -291,7 +291,7 @@ TEST_F(BatAdsPromotedContentAdEventHandlerTest, BuildAdEvent(creative_ad, AdType::kPromotedContentAd, ConfirmationType::kServed, Now()); - const int ads_per_hour = features::GetMaximumAdsPerHour(); + const int ads_per_hour = kMaximumAdsPerHour.Get(); FireAdEvents(ad_event, ads_per_hour - 1); @@ -317,7 +317,8 @@ TEST_F(BatAdsPromotedContentAdEventHandlerTest, BuildAdEvent(creative_ad, AdType::kPromotedContentAd, ConfirmationType::kServed, Now()); - const int ads_per_hour = features::GetMaximumAdsPerHour(); + const int ads_per_hour = kMaximumAdsPerHour.Get(); + FireAdEvents(ad_event, ads_per_hour); const std::string placement_id = @@ -342,7 +343,7 @@ TEST_F(BatAdsPromotedContentAdEventHandlerTest, BuildAdEvent(creative_ad, AdType::kPromotedContentAd, ConfirmationType::kServed, Now()); - const int ads_per_day = features::GetMaximumAdsPerDay(); + const int ads_per_day = kMaximumAdsPerDay.Get(); FireAdEvents(ad_event, ads_per_day - 1); @@ -370,7 +371,7 @@ TEST_F(BatAdsPromotedContentAdEventHandlerTest, BuildAdEvent(creative_ad, AdType::kPromotedContentAd, ConfirmationType::kServed, Now()); - const int ads_per_day = features::GetMaximumAdsPerDay(); + const int ads_per_day = kMaximumAdsPerDay.Get(); FireAdEvents(ad_event, ads_per_day); diff --git a/components/brave_ads/core/internal/ads/ad_events/search_result_ads/search_result_ad_event_handler_unittest.cc b/components/brave_ads/core/internal/ads/ad_events/search_result_ads/search_result_ad_event_handler_unittest.cc index 6dc6f8216cb4..03c6d7674d4e 100644 --- a/components/brave_ads/core/internal/ads/ad_events/search_result_ads/search_result_ad_event_handler_unittest.cc +++ b/components/brave_ads/core/internal/ads/ad_events/search_result_ads/search_result_ad_event_handler_unittest.cc @@ -305,7 +305,7 @@ TEST_F(BatAdsSearchResultAdEventHandlerTest, const mojom::SearchResultAdInfoPtr ad_mojom = BuildSearchResultAd(/*should_use_random_guids*/ false); - const int ads_per_hour = features::GetMaximumAdsPerHour(); + const int ads_per_hour = kMaximumAdsPerHour.Get(); const SearchResultAdInfo ad = BuildSearchResultAd(ad_mojom); const AdEventInfo served_ad_event = BuildAdEvent( @@ -341,7 +341,8 @@ TEST_F(BatAdsSearchResultAdEventHandlerTest, const AdEventInfo ad_event = BuildAdEvent(ad, AdType::kSearchResultAd, ConfirmationType::kServed, Now()); - const int ads_per_hour = features::GetMaximumAdsPerHour(); + const int ads_per_hour = kMaximumAdsPerHour.Get(); + FireAdEvents(ad_event, ads_per_hour); // Act @@ -361,7 +362,7 @@ TEST_F(BatAdsSearchResultAdEventHandlerTest, const mojom::SearchResultAdInfoPtr ad_mojom = BuildSearchResultAd(/*should_use_random_guids*/ false); - const int ads_per_day = features::GetMaximumAdsPerDay(); + const int ads_per_day = kMaximumAdsPerDay.Get(); const SearchResultAdInfo ad = BuildSearchResultAd(ad_mojom); const AdEventInfo served_ad_event = BuildAdEvent( @@ -399,7 +400,7 @@ TEST_F(BatAdsSearchResultAdEventHandlerTest, const AdEventInfo ad_event = BuildAdEvent(ad, AdType::kSearchResultAd, ConfirmationType::kServed, Now()); - const int ads_per_day = features::GetMaximumAdsPerDay(); + const int ads_per_day = kMaximumAdsPerDay.Get(); FireAdEvents(ad_event, ads_per_day); diff --git a/components/brave_ads/core/internal/ads/inline_content_ad_features.cc b/components/brave_ads/core/internal/ads/inline_content_ad_features.cc index 69fa9a917bbd..e060de2019f7 100644 --- a/components/brave_ads/core/internal/ads/inline_content_ad_features.cc +++ b/components/brave_ads/core/internal/ads/inline_content_ad_features.cc @@ -5,36 +5,12 @@ #include "brave/components/brave_ads/core/internal/ads/inline_content_ad_features.h" -#include "base/metrics/field_trial_params.h" +namespace brave_ads::inline_content_ads { -namespace brave_ads::inline_content_ads::features { - -namespace { - -constexpr char kMaximumAdsPerHourFieldTrialParamName[] = "maximum_ads_per_hour"; -constexpr int kMaximumAdsPerHourDefaultValue = 6; - -constexpr char kMaximumAdsPerDayFieldTrialParamName[] = "maximum_ads_per_day"; -constexpr int kMaximumAdsPerDayDefaultValue = 20; - -} // namespace - -BASE_FEATURE(kFeature, "InlineContentAds", base::FEATURE_ENABLED_BY_DEFAULT); +BASE_FEATURE(kAdsFeature, "InlineContentAds", base::FEATURE_ENABLED_BY_DEFAULT); bool IsEnabled() { - return base::FeatureList::IsEnabled(kFeature); -} - -int GetMaximumAdsPerHour() { - return GetFieldTrialParamByFeatureAsInt(kFeature, - kMaximumAdsPerHourFieldTrialParamName, - kMaximumAdsPerHourDefaultValue); -} - -int GetMaximumAdsPerDay() { - return GetFieldTrialParamByFeatureAsInt(kFeature, - kMaximumAdsPerDayFieldTrialParamName, - kMaximumAdsPerDayDefaultValue); + return base::FeatureList::IsEnabled(kAdsFeature); } -} // namespace brave_ads::inline_content_ads::features +} // namespace brave_ads::inline_content_ads diff --git a/components/brave_ads/core/internal/ads/inline_content_ad_features.h b/components/brave_ads/core/internal/ads/inline_content_ad_features.h index 9ad5d04af589..e7f863b9084e 100644 --- a/components/brave_ads/core/internal/ads/inline_content_ad_features.h +++ b/components/brave_ads/core/internal/ads/inline_content_ad_features.h @@ -7,15 +7,20 @@ #define BRAVE_COMPONENTS_BRAVE_ADS_CORE_INTERNAL_ADS_INLINE_CONTENT_AD_FEATURES_H_ #include "base/feature_list.h" +#include "base/metrics/field_trial_params.h" -namespace brave_ads::inline_content_ads::features { +namespace brave_ads::inline_content_ads { -BASE_DECLARE_FEATURE(kFeature); +BASE_DECLARE_FEATURE(kAdsFeature); bool IsEnabled(); -int GetMaximumAdsPerHour(); -int GetMaximumAdsPerDay(); -} // namespace brave_ads::inline_content_ads::features +constexpr base::FeatureParam kMaximumAdsPerHour{&kAdsFeature, + "maximum_ads_per_hour", 6}; + +constexpr base::FeatureParam kMaximumAdsPerDay{&kAdsFeature, + "maximum_ads_per_day", 20}; + +} // namespace brave_ads::inline_content_ads #endif // BRAVE_COMPONENTS_BRAVE_ADS_CORE_INTERNAL_ADS_INLINE_CONTENT_AD_FEATURES_H_ diff --git a/components/brave_ads/core/internal/ads/inline_content_ad_features_unittest.cc b/components/brave_ads/core/internal/ads/inline_content_ad_features_unittest.cc index f5903accca73..96bf1aa00e2c 100644 --- a/components/brave_ads/core/internal/ads/inline_content_ad_features_unittest.cc +++ b/components/brave_ads/core/internal/ads/inline_content_ad_features_unittest.cc @@ -12,7 +12,7 @@ // npm run test -- brave_unit_tests --filter=BatAds* -namespace brave_ads::inline_content_ads::features { +namespace brave_ads::inline_content_ads { TEST(BatAdsFeaturesTest, IsEnabled) { // Arrange @@ -28,7 +28,7 @@ TEST(BatAdsFeaturesTest, IsDisabled) { const std::vector enabled_features; std::vector disabled_features; - disabled_features.emplace_back(kFeature); + disabled_features.emplace_back(kAdsFeature); base::test::ScopedFeatureList scoped_feature_list; scoped_feature_list.InitWithFeaturesAndParameters(enabled_features, @@ -45,7 +45,7 @@ TEST(BatAdsFeaturesTest, GetMaximumAdsPerHour) { std::vector enabled_features; base::FieldTrialParams params; params["maximum_ads_per_hour"] = "42"; - enabled_features.emplace_back(kFeature, params); + enabled_features.emplace_back(kAdsFeature, params); const std::vector disabled_features; @@ -56,7 +56,7 @@ TEST(BatAdsFeaturesTest, GetMaximumAdsPerHour) { // Act // Assert - EXPECT_EQ(42, GetMaximumAdsPerHour()); + EXPECT_EQ(42, kMaximumAdsPerHour.Get()); } TEST(BatAdsFeaturesTest, DefaultMaximumAdsPerHour) { @@ -65,7 +65,7 @@ TEST(BatAdsFeaturesTest, DefaultMaximumAdsPerHour) { // Act // Assert - EXPECT_EQ(6, GetMaximumAdsPerHour()); + EXPECT_EQ(6, kMaximumAdsPerHour.Get()); } TEST(BatAdsFeaturesTest, DefaultMaximumAdsPerHourWhenDisabled) { @@ -73,7 +73,7 @@ TEST(BatAdsFeaturesTest, DefaultMaximumAdsPerHourWhenDisabled) { const std::vector enabled_features; std::vector disabled_features; - disabled_features.emplace_back(kFeature); + disabled_features.emplace_back(kAdsFeature); base::test::ScopedFeatureList scoped_feature_list; scoped_feature_list.InitWithFeaturesAndParameters(enabled_features, @@ -82,7 +82,7 @@ TEST(BatAdsFeaturesTest, DefaultMaximumAdsPerHourWhenDisabled) { // Act // Assert - EXPECT_EQ(6, GetMaximumAdsPerHour()); + EXPECT_EQ(6, kMaximumAdsPerHour.Get()); } TEST(BatAdsFeaturesTest, GetMaximumAdsPerDay) { @@ -90,7 +90,7 @@ TEST(BatAdsFeaturesTest, GetMaximumAdsPerDay) { std::vector enabled_features; base::FieldTrialParams params; params["maximum_ads_per_day"] = "24"; - enabled_features.emplace_back(kFeature, params); + enabled_features.emplace_back(kAdsFeature, params); const std::vector disabled_features; @@ -101,7 +101,7 @@ TEST(BatAdsFeaturesTest, GetMaximumAdsPerDay) { // Act // Assert - EXPECT_EQ(24, GetMaximumAdsPerDay()); + EXPECT_EQ(24, kMaximumAdsPerDay.Get()); } TEST(BatAdsFeaturesTest, DefaultMaximumAdsPerDay) { @@ -110,7 +110,7 @@ TEST(BatAdsFeaturesTest, DefaultMaximumAdsPerDay) { // Act // Assert - EXPECT_EQ(20, GetMaximumAdsPerDay()); + EXPECT_EQ(20, kMaximumAdsPerDay.Get()); } TEST(BatAdsFeaturesTest, DefaultMaximumAdsPerDayWhenDisabled) { @@ -118,7 +118,7 @@ TEST(BatAdsFeaturesTest, DefaultMaximumAdsPerDayWhenDisabled) { const std::vector enabled_features; std::vector disabled_features; - disabled_features.emplace_back(kFeature); + disabled_features.emplace_back(kAdsFeature); base::test::ScopedFeatureList scoped_feature_list; scoped_feature_list.InitWithFeaturesAndParameters(enabled_features, @@ -127,7 +127,7 @@ TEST(BatAdsFeaturesTest, DefaultMaximumAdsPerDayWhenDisabled) { // Act // Assert - EXPECT_EQ(20, GetMaximumAdsPerDay()); + EXPECT_EQ(20, kMaximumAdsPerDay.Get()); } -} // namespace brave_ads::inline_content_ads::features +} // namespace brave_ads::inline_content_ads diff --git a/components/brave_ads/core/internal/ads/new_tab_page_ad_features.cc b/components/brave_ads/core/internal/ads/new_tab_page_ad_features.cc index 724f0e184d79..ba718e07730f 100644 --- a/components/brave_ads/core/internal/ads/new_tab_page_ad_features.cc +++ b/components/brave_ads/core/internal/ads/new_tab_page_ad_features.cc @@ -5,47 +5,12 @@ #include "brave/components/brave_ads/core/internal/ads/new_tab_page_ad_features.h" -#include "base/metrics/field_trial_params.h" -#include "base/time/time.h" -#include "brave/components/brave_ads/core/internal/common/metrics/field_trial_params_util.h" +namespace brave_ads::new_tab_page_ads { -namespace brave_ads::new_tab_page_ads::features { - -namespace { - -constexpr char kMaximumAdsPerHourFieldTrialParamName[] = "maximum_ads_per_hour"; -constexpr int kMaximumAdsPerHourDefaultValue = 4; - -constexpr char kMaximumAdsPerDayFieldTrialParamName[] = "maximum_ads_per_day"; -constexpr int kMaximumAdsPerDayDefaultValue = 20; - -constexpr char kMinimumWaitTimeFieldTrialParamName[] = "minimum_wait_time"; -constexpr base::TimeDelta kMinimumWaitTimeDefaultValue = base::Minutes(5); - -} // namespace - -BASE_FEATURE(kFeature, "NewTabPageAds", base::FEATURE_ENABLED_BY_DEFAULT); +BASE_FEATURE(kAdsFeature, "NewTabPageAds", base::FEATURE_ENABLED_BY_DEFAULT); bool IsEnabled() { - return base::FeatureList::IsEnabled(kFeature); -} - -int GetMaximumAdsPerHour() { - return GetFieldTrialParamByFeatureAsInt(kFeature, - kMaximumAdsPerHourFieldTrialParamName, - kMaximumAdsPerHourDefaultValue); -} - -int GetMaximumAdsPerDay() { - return GetFieldTrialParamByFeatureAsInt(kFeature, - kMaximumAdsPerDayFieldTrialParamName, - kMaximumAdsPerDayDefaultValue); -} - -base::TimeDelta GetMinimumWaitTime() { - return GetFieldTrialParamByFeatureAsTimeDelta( - kFeature, kMinimumWaitTimeFieldTrialParamName, - kMinimumWaitTimeDefaultValue); + return base::FeatureList::IsEnabled(kAdsFeature); } -} // namespace brave_ads::new_tab_page_ads::features +} // namespace brave_ads::new_tab_page_ads diff --git a/components/brave_ads/core/internal/ads/new_tab_page_ad_features.h b/components/brave_ads/core/internal/ads/new_tab_page_ad_features.h index a2f717405bde..9f5d406d5573 100644 --- a/components/brave_ads/core/internal/ads/new_tab_page_ad_features.h +++ b/components/brave_ads/core/internal/ads/new_tab_page_ad_features.h @@ -7,20 +7,27 @@ #define BRAVE_COMPONENTS_BRAVE_ADS_CORE_INTERNAL_ADS_NEW_TAB_PAGE_AD_FEATURES_H_ #include "base/feature_list.h" +#include "base/metrics/field_trial_params.h" namespace base { class TimeDelta; } // namespace base -namespace brave_ads::new_tab_page_ads::features { +namespace brave_ads::new_tab_page_ads { -BASE_DECLARE_FEATURE(kFeature); +BASE_DECLARE_FEATURE(kAdsFeature); bool IsEnabled(); -int GetMaximumAdsPerHour(); -int GetMaximumAdsPerDay(); -base::TimeDelta GetMinimumWaitTime(); -} // namespace brave_ads::new_tab_page_ads::features +constexpr base::FeatureParam kMaximumAdsPerHour{&kAdsFeature, + "maximum_ads_per_hour", 4}; + +constexpr base::FeatureParam kMaximumAdsPerDay{&kAdsFeature, + "maximum_ads_per_day", 20}; + +constexpr base::FeatureParam kMinimumWaitTime{ + &kAdsFeature, "minimum_wait_time", base::Minutes(5)}; + +} // namespace brave_ads::new_tab_page_ads #endif // BRAVE_COMPONENTS_BRAVE_ADS_CORE_INTERNAL_ADS_NEW_TAB_PAGE_AD_FEATURES_H_ diff --git a/components/brave_ads/core/internal/ads/new_tab_page_ad_features_unittest.cc b/components/brave_ads/core/internal/ads/new_tab_page_ad_features_unittest.cc index a3eb74044e3f..295f5156d259 100644 --- a/components/brave_ads/core/internal/ads/new_tab_page_ad_features_unittest.cc +++ b/components/brave_ads/core/internal/ads/new_tab_page_ad_features_unittest.cc @@ -12,7 +12,7 @@ // npm run test -- brave_unit_tests --filter=BatAds* -namespace brave_ads::new_tab_page_ads::features { +namespace brave_ads::new_tab_page_ads { TEST(BatAdsFeaturesTest, IsEnabled) { // Arrange @@ -28,7 +28,7 @@ TEST(BatAdsFeaturesTest, IsDisabled) { const std::vector enabled_features; std::vector disabled_features; - disabled_features.emplace_back(kFeature); + disabled_features.emplace_back(kAdsFeature); base::test::ScopedFeatureList scoped_feature_list; scoped_feature_list.InitWithFeaturesAndParameters(enabled_features, @@ -45,7 +45,7 @@ TEST(BatAdsFeaturesTest, GetMaximumAdsPerHour) { std::vector enabled_features; base::FieldTrialParams params; params["maximum_ads_per_hour"] = "42"; - enabled_features.emplace_back(kFeature, params); + enabled_features.emplace_back(kAdsFeature, params); const std::vector disabled_features; @@ -56,7 +56,7 @@ TEST(BatAdsFeaturesTest, GetMaximumAdsPerHour) { // Act // Assert - EXPECT_EQ(42, GetMaximumAdsPerHour()); + EXPECT_EQ(42, kMaximumAdsPerHour.Get()); } TEST(BatAdsFeaturesTest, DefaultMaximumAdsPerHour) { @@ -65,7 +65,7 @@ TEST(BatAdsFeaturesTest, DefaultMaximumAdsPerHour) { // Act // Assert - EXPECT_EQ(4, GetMaximumAdsPerHour()); + EXPECT_EQ(4, kMaximumAdsPerHour.Get()); } TEST(BatAdsFeaturesTest, DefaultMaximumAdsPerHourWhenDisabled) { @@ -73,7 +73,7 @@ TEST(BatAdsFeaturesTest, DefaultMaximumAdsPerHourWhenDisabled) { const std::vector enabled_features; std::vector disabled_features; - disabled_features.emplace_back(kFeature); + disabled_features.emplace_back(kAdsFeature); base::test::ScopedFeatureList scoped_feature_list; scoped_feature_list.InitWithFeaturesAndParameters(enabled_features, @@ -82,7 +82,7 @@ TEST(BatAdsFeaturesTest, DefaultMaximumAdsPerHourWhenDisabled) { // Act // Assert - EXPECT_EQ(4, GetMaximumAdsPerHour()); + EXPECT_EQ(4, kMaximumAdsPerHour.Get()); } TEST(BatAdsFeaturesTest, GetMaximumAdsPerDay) { @@ -90,7 +90,7 @@ TEST(BatAdsFeaturesTest, GetMaximumAdsPerDay) { std::vector enabled_features; base::FieldTrialParams params; params["maximum_ads_per_day"] = "24"; - enabled_features.emplace_back(kFeature, params); + enabled_features.emplace_back(kAdsFeature, params); const std::vector disabled_features; @@ -101,7 +101,7 @@ TEST(BatAdsFeaturesTest, GetMaximumAdsPerDay) { // Act // Assert - EXPECT_EQ(24, GetMaximumAdsPerDay()); + EXPECT_EQ(24, kMaximumAdsPerDay.Get()); } TEST(BatAdsFeaturesTest, DefaultMaximumAdsPerDay) { @@ -110,7 +110,7 @@ TEST(BatAdsFeaturesTest, DefaultMaximumAdsPerDay) { // Act // Assert - EXPECT_EQ(20, GetMaximumAdsPerDay()); + EXPECT_EQ(20, kMaximumAdsPerDay.Get()); } TEST(BatAdsFeaturesTest, DefaultMaximumAdsPerDayWhenDisabled) { @@ -118,7 +118,7 @@ TEST(BatAdsFeaturesTest, DefaultMaximumAdsPerDayWhenDisabled) { const std::vector enabled_features; std::vector disabled_features; - disabled_features.emplace_back(kFeature); + disabled_features.emplace_back(kAdsFeature); base::test::ScopedFeatureList scoped_feature_list; scoped_feature_list.InitWithFeaturesAndParameters(enabled_features, @@ -127,7 +127,7 @@ TEST(BatAdsFeaturesTest, DefaultMaximumAdsPerDayWhenDisabled) { // Act // Assert - EXPECT_EQ(20, GetMaximumAdsPerDay()); + EXPECT_EQ(20, kMaximumAdsPerDay.Get()); } TEST(BatAdsFeaturesTest, GetMinimumWaitTime) { @@ -135,7 +135,7 @@ TEST(BatAdsFeaturesTest, GetMinimumWaitTime) { std::vector enabled_features; base::FieldTrialParams params; params["minimum_wait_time"] = "10m"; - enabled_features.emplace_back(kFeature, params); + enabled_features.emplace_back(kAdsFeature, params); const std::vector disabled_features; @@ -146,7 +146,7 @@ TEST(BatAdsFeaturesTest, GetMinimumWaitTime) { // Act // Assert - EXPECT_EQ(base::Minutes(10), GetMinimumWaitTime()); + EXPECT_EQ(base::Minutes(10), kMinimumWaitTime.Get()); } TEST(BatAdsFeaturesTest, DefaultMinimumWaitTime) { @@ -155,7 +155,7 @@ TEST(BatAdsFeaturesTest, DefaultMinimumWaitTime) { // Act // Assert - EXPECT_EQ(base::Minutes(5), GetMinimumWaitTime()); + EXPECT_EQ(base::Minutes(5), kMinimumWaitTime.Get()); } TEST(BatAdsFeaturesTest, DefaultMinimumWaitTimeWhenDisabled) { @@ -163,7 +163,7 @@ TEST(BatAdsFeaturesTest, DefaultMinimumWaitTimeWhenDisabled) { const std::vector enabled_features; std::vector disabled_features; - disabled_features.emplace_back(kFeature); + disabled_features.emplace_back(kAdsFeature); base::test::ScopedFeatureList scoped_feature_list; scoped_feature_list.InitWithFeaturesAndParameters(enabled_features, @@ -172,7 +172,7 @@ TEST(BatAdsFeaturesTest, DefaultMinimumWaitTimeWhenDisabled) { // Act // Assert - EXPECT_EQ(base::Minutes(5), GetMinimumWaitTime()); + EXPECT_EQ(base::Minutes(5), kMinimumWaitTime.Get()); } -} // namespace brave_ads::new_tab_page_ads::features +} // namespace brave_ads::new_tab_page_ads diff --git a/components/brave_ads/core/internal/ads/notification_ad_features.cc b/components/brave_ads/core/internal/ads/notification_ad_features.cc index 53d3575f2570..b84ed9052f1e 100644 --- a/components/brave_ads/core/internal/ads/notification_ad_features.cc +++ b/components/brave_ads/core/internal/ads/notification_ad_features.cc @@ -5,37 +5,12 @@ #include "brave/components/brave_ads/core/internal/ads/notification_ad_features.h" -#include "base/metrics/field_trial_params.h" -#include "brave/components/brave_ads/common/constants.h" +namespace brave_ads::notification_ads { -namespace brave_ads::notification_ads::features { - -namespace { - -constexpr char kDefaultAdsPerHourFieldTrialParamName[] = "default_ads_per_hour"; -constexpr int kDefaultAdsPerHourDefaultValue = kDefaultNotificationAdsPerHour; - -constexpr char kMaximumAdsPerDayFieldTrialParamName[] = "maximum_ads_per_day"; -constexpr int kMaximumAdsPerDayDefaultValue = 100; - -} // namespace - -BASE_FEATURE(kFeature, "NotificationAds", base::FEATURE_ENABLED_BY_DEFAULT); +BASE_FEATURE(kAdsFeature, "NotificationAds", base::FEATURE_ENABLED_BY_DEFAULT); bool IsEnabled() { - return base::FeatureList::IsEnabled(kFeature); -} - -int GetDefaultAdsPerHour() { - return GetFieldTrialParamByFeatureAsInt(kFeature, - kDefaultAdsPerHourFieldTrialParamName, - kDefaultAdsPerHourDefaultValue); -} - -int GetMaximumAdsPerDay() { - return GetFieldTrialParamByFeatureAsInt(kFeature, - kMaximumAdsPerDayFieldTrialParamName, - kMaximumAdsPerDayDefaultValue); + return base::FeatureList::IsEnabled(kAdsFeature); } -} // namespace brave_ads::notification_ads::features +} // namespace brave_ads::notification_ads diff --git a/components/brave_ads/core/internal/ads/notification_ad_features.h b/components/brave_ads/core/internal/ads/notification_ad_features.h index be25cac8f2e4..2e273c6111e1 100644 --- a/components/brave_ads/core/internal/ads/notification_ad_features.h +++ b/components/brave_ads/core/internal/ads/notification_ad_features.h @@ -7,15 +7,21 @@ #define BRAVE_COMPONENTS_BRAVE_ADS_CORE_INTERNAL_ADS_NOTIFICATION_AD_FEATURES_H_ #include "base/feature_list.h" +#include "base/metrics/field_trial_params.h" +#include "brave/components/brave_ads/common/constants.h" -namespace brave_ads::notification_ads::features { +namespace brave_ads::notification_ads { -BASE_DECLARE_FEATURE(kFeature); +BASE_DECLARE_FEATURE(kAdsFeature); bool IsEnabled(); -int GetDefaultAdsPerHour(); -int GetMaximumAdsPerDay(); -} // namespace brave_ads::notification_ads::features +constexpr base::FeatureParam kDefaultAdsPerHour{ + &kAdsFeature, "default_ads_per_hour", kDefaultNotificationAdsPerHour}; + +constexpr base::FeatureParam kMaximumAdsPerDay{&kAdsFeature, + "maximum_ads_per_day", 100}; + +} // namespace brave_ads::notification_ads #endif // BRAVE_COMPONENTS_BRAVE_ADS_CORE_INTERNAL_ADS_NOTIFICATION_AD_FEATURES_H_ diff --git a/components/brave_ads/core/internal/ads/notification_ad_features_unittest.cc b/components/brave_ads/core/internal/ads/notification_ad_features_unittest.cc index ddcb5cbfba8e..e7b4a35ad1ab 100644 --- a/components/brave_ads/core/internal/ads/notification_ad_features_unittest.cc +++ b/components/brave_ads/core/internal/ads/notification_ad_features_unittest.cc @@ -12,7 +12,7 @@ // npm run test -- brave_unit_tests --filter=BatAds* -namespace brave_ads::notification_ads::features { +namespace brave_ads::notification_ads { TEST(BatAdsFeaturesTest, IsEnabled) { // Arrange @@ -28,7 +28,7 @@ TEST(BatAdsFeaturesTest, IsDisabled) { const std::vector enabled_features; std::vector disabled_features; - disabled_features.emplace_back(kFeature); + disabled_features.emplace_back(kAdsFeature); base::test::ScopedFeatureList scoped_feature_list; scoped_feature_list.InitWithFeaturesAndParameters(enabled_features, @@ -45,7 +45,7 @@ TEST(BatAdsFeaturesTest, GetDefaultAdsPerHour) { std::vector enabled_features; base::FieldTrialParams params; params["default_ads_per_hour"] = "42"; - enabled_features.emplace_back(kFeature, params); + enabled_features.emplace_back(kAdsFeature, params); const std::vector disabled_features; @@ -56,7 +56,7 @@ TEST(BatAdsFeaturesTest, GetDefaultAdsPerHour) { // Act // Assert - EXPECT_EQ(42, GetDefaultAdsPerHour()); + EXPECT_EQ(42, kDefaultAdsPerHour.Get()); } TEST(BatAdsFeaturesTest, DefaultDefaultAdsPerHour) { @@ -65,7 +65,7 @@ TEST(BatAdsFeaturesTest, DefaultDefaultAdsPerHour) { // Act // Assert - EXPECT_EQ(10, GetDefaultAdsPerHour()); + EXPECT_EQ(10, kDefaultAdsPerHour.Get()); } TEST(BatAdsFeaturesTest, DefaultDefaultAdsPerHourWhenDisabled) { @@ -73,7 +73,7 @@ TEST(BatAdsFeaturesTest, DefaultDefaultAdsPerHourWhenDisabled) { const std::vector enabled_features; std::vector disabled_features; - disabled_features.emplace_back(kFeature); + disabled_features.emplace_back(kAdsFeature); base::test::ScopedFeatureList scoped_feature_list; scoped_feature_list.InitWithFeaturesAndParameters(enabled_features, @@ -82,7 +82,7 @@ TEST(BatAdsFeaturesTest, DefaultDefaultAdsPerHourWhenDisabled) { // Act // Assert - EXPECT_EQ(10, GetDefaultAdsPerHour()); + EXPECT_EQ(10, kDefaultAdsPerHour.Get()); } TEST(BatAdsFeaturesTest, GetMaximumAdsPerDay) { @@ -90,7 +90,7 @@ TEST(BatAdsFeaturesTest, GetMaximumAdsPerDay) { std::vector enabled_features; base::FieldTrialParams params; params["maximum_ads_per_day"] = "24"; - enabled_features.emplace_back(kFeature, params); + enabled_features.emplace_back(kAdsFeature, params); const std::vector disabled_features; @@ -101,7 +101,7 @@ TEST(BatAdsFeaturesTest, GetMaximumAdsPerDay) { // Act // Assert - EXPECT_EQ(24, GetMaximumAdsPerDay()); + EXPECT_EQ(24, kMaximumAdsPerDay.Get()); } TEST(BatAdsFeaturesTest, DefaultMaximumAdsPerDay) { @@ -110,7 +110,7 @@ TEST(BatAdsFeaturesTest, DefaultMaximumAdsPerDay) { // Act // Assert - EXPECT_EQ(100, GetMaximumAdsPerDay()); + EXPECT_EQ(100, kMaximumAdsPerDay.Get()); } TEST(BatAdsFeaturesTest, DefaultMaximumAdsPerDayWhenDisabled) { @@ -118,7 +118,7 @@ TEST(BatAdsFeaturesTest, DefaultMaximumAdsPerDayWhenDisabled) { const std::vector enabled_features; std::vector disabled_features; - disabled_features.emplace_back(kFeature); + disabled_features.emplace_back(kAdsFeature); base::test::ScopedFeatureList scoped_feature_list; scoped_feature_list.InitWithFeaturesAndParameters(enabled_features, @@ -127,7 +127,7 @@ TEST(BatAdsFeaturesTest, DefaultMaximumAdsPerDayWhenDisabled) { // Act // Assert - EXPECT_EQ(100, GetMaximumAdsPerDay()); + EXPECT_EQ(100, kMaximumAdsPerDay.Get()); } -} // namespace brave_ads::notification_ads::features +} // namespace brave_ads::notification_ads diff --git a/components/brave_ads/core/internal/ads/notification_ad_handler.cc b/components/brave_ads/core/internal/ads/notification_ad_handler.cc index 22623ab659b8..0f7f4e2d02ef 100644 --- a/components/brave_ads/core/internal/ads/notification_ad_handler.cc +++ b/components/brave_ads/core/internal/ads/notification_ad_handler.cc @@ -109,12 +109,12 @@ void NotificationAdHandler::OnNotifyUserDidBecomeActive( return; } - if (idle_detection::MaybeScreenWasLocked(screen_was_locked)) { + if (MaybeScreenWasLocked(screen_was_locked)) { BLOG(1, "Notification ad not served: Screen was locked"); return; } - if (idle_detection::HasExceededMaximumIdleTime(idle_time)) { + if (HasExceededMaximumIdleTime(idle_time)) { BLOG(1, "Notification ad not served: Exceeded maximum idle time"); return; } diff --git a/components/brave_ads/core/internal/ads/promoted_content_ad_features.cc b/components/brave_ads/core/internal/ads/promoted_content_ad_features.cc index a104c022a414..faafd55186d1 100644 --- a/components/brave_ads/core/internal/ads/promoted_content_ad_features.cc +++ b/components/brave_ads/core/internal/ads/promoted_content_ad_features.cc @@ -5,36 +5,14 @@ #include "brave/components/brave_ads/core/internal/ads/promoted_content_ad_features.h" -#include "base/metrics/field_trial_params.h" +namespace brave_ads::promoted_content_ads { -namespace brave_ads::promoted_content_ads::features { - -namespace { - -constexpr char kMaximumAdsPerHourFieldTrialParamName[] = "maximum_ads_per_hour"; -constexpr int kMaximumAdsPerHourDefaultValue = 4; - -constexpr char kMaximumAdsPerDayFieldTrialParamName[] = "maximum_ads_per_day"; -constexpr int kMaximumAdsPerDayDefaultValue = 20; - -} // namespace - -BASE_FEATURE(kFeature, "PromotedContentAds", base::FEATURE_ENABLED_BY_DEFAULT); +BASE_FEATURE(kAdsFeature, + "PromotedContentAds", + base::FEATURE_ENABLED_BY_DEFAULT); bool IsEnabled() { - return base::FeatureList::IsEnabled(kFeature); -} - -int GetMaximumAdsPerHour() { - return GetFieldTrialParamByFeatureAsInt(kFeature, - kMaximumAdsPerHourFieldTrialParamName, - kMaximumAdsPerHourDefaultValue); -} - -int GetMaximumAdsPerDay() { - return GetFieldTrialParamByFeatureAsInt(kFeature, - kMaximumAdsPerDayFieldTrialParamName, - kMaximumAdsPerDayDefaultValue); + return base::FeatureList::IsEnabled(kAdsFeature); } -} // namespace brave_ads::promoted_content_ads::features +} // namespace brave_ads::promoted_content_ads diff --git a/components/brave_ads/core/internal/ads/promoted_content_ad_features.h b/components/brave_ads/core/internal/ads/promoted_content_ad_features.h index 42cb7a1a1476..5b803ae565e7 100644 --- a/components/brave_ads/core/internal/ads/promoted_content_ad_features.h +++ b/components/brave_ads/core/internal/ads/promoted_content_ad_features.h @@ -7,15 +7,20 @@ #define BRAVE_COMPONENTS_BRAVE_ADS_CORE_INTERNAL_ADS_PROMOTED_CONTENT_AD_FEATURES_H_ #include "base/feature_list.h" +#include "base/metrics/field_trial_params.h" -namespace brave_ads::promoted_content_ads::features { +namespace brave_ads::promoted_content_ads { -BASE_DECLARE_FEATURE(kFeature); +BASE_DECLARE_FEATURE(kAdsFeature); bool IsEnabled(); -int GetMaximumAdsPerHour(); -int GetMaximumAdsPerDay(); -} // namespace brave_ads::promoted_content_ads::features +constexpr base::FeatureParam kMaximumAdsPerHour{&kAdsFeature, + "maximum_ads_per_hour", 4}; + +constexpr base::FeatureParam kMaximumAdsPerDay{&kAdsFeature, + "maximum_ads_per_day", 20}; + +} // namespace brave_ads::promoted_content_ads #endif // BRAVE_COMPONENTS_BRAVE_ADS_CORE_INTERNAL_ADS_PROMOTED_CONTENT_AD_FEATURES_H_ diff --git a/components/brave_ads/core/internal/ads/promoted_content_ad_features_unittest.cc b/components/brave_ads/core/internal/ads/promoted_content_ad_features_unittest.cc index 868acd2b28e2..3a1a88c79c21 100644 --- a/components/brave_ads/core/internal/ads/promoted_content_ad_features_unittest.cc +++ b/components/brave_ads/core/internal/ads/promoted_content_ad_features_unittest.cc @@ -12,7 +12,7 @@ // npm run test -- brave_unit_tests --filter=BatAds* -namespace brave_ads::promoted_content_ads::features { +namespace brave_ads::promoted_content_ads { TEST(BatAdsFeaturesTest, IsEnabled) { // Arrange @@ -28,7 +28,7 @@ TEST(BatAdsFeaturesTest, IsDisabled) { const std::vector enabled_features; std::vector disabled_features; - disabled_features.emplace_back(kFeature); + disabled_features.emplace_back(kAdsFeature); base::test::ScopedFeatureList scoped_feature_list; scoped_feature_list.InitWithFeaturesAndParameters(enabled_features, @@ -45,7 +45,7 @@ TEST(BatAdsFeaturesTest, GetMaximumAdsPerHour) { std::vector enabled_features; base::FieldTrialParams params; params["maximum_ads_per_hour"] = "42"; - enabled_features.emplace_back(kFeature, params); + enabled_features.emplace_back(kAdsFeature, params); const std::vector disabled_features; @@ -56,7 +56,7 @@ TEST(BatAdsFeaturesTest, GetMaximumAdsPerHour) { // Act // Assert - EXPECT_EQ(42, GetMaximumAdsPerHour()); + EXPECT_EQ(42, kMaximumAdsPerHour.Get()); } TEST(BatAdsFeaturesTest, DefaultMaximumAdsPerHour) { @@ -65,7 +65,7 @@ TEST(BatAdsFeaturesTest, DefaultMaximumAdsPerHour) { // Act // Assert - EXPECT_EQ(4, GetMaximumAdsPerHour()); + EXPECT_EQ(4, kMaximumAdsPerHour.Get()); } TEST(BatAdsFeaturesTest, DefaultMaximumAdsPerHourWhenDisabled) { @@ -73,7 +73,7 @@ TEST(BatAdsFeaturesTest, DefaultMaximumAdsPerHourWhenDisabled) { const std::vector enabled_features; std::vector disabled_features; - disabled_features.emplace_back(kFeature); + disabled_features.emplace_back(kAdsFeature); base::test::ScopedFeatureList scoped_feature_list; scoped_feature_list.InitWithFeaturesAndParameters(enabled_features, @@ -82,7 +82,7 @@ TEST(BatAdsFeaturesTest, DefaultMaximumAdsPerHourWhenDisabled) { // Act // Assert - EXPECT_EQ(4, GetMaximumAdsPerHour()); + EXPECT_EQ(4, kMaximumAdsPerHour.Get()); } TEST(BatAdsFeaturesTest, GetMaximumAdsPerDay) { @@ -90,7 +90,7 @@ TEST(BatAdsFeaturesTest, GetMaximumAdsPerDay) { std::vector enabled_features; base::FieldTrialParams params; params["maximum_ads_per_day"] = "24"; - enabled_features.emplace_back(kFeature, params); + enabled_features.emplace_back(kAdsFeature, params); const std::vector disabled_features; @@ -101,7 +101,7 @@ TEST(BatAdsFeaturesTest, GetMaximumAdsPerDay) { // Act // Assert - EXPECT_EQ(24, GetMaximumAdsPerDay()); + EXPECT_EQ(24, kMaximumAdsPerDay.Get()); } TEST(BatAdsFeaturesTest, DefaultMaximumAdsPerDay) { @@ -110,7 +110,7 @@ TEST(BatAdsFeaturesTest, DefaultMaximumAdsPerDay) { // Act // Assert - EXPECT_EQ(20, GetMaximumAdsPerDay()); + EXPECT_EQ(20, kMaximumAdsPerDay.Get()); } TEST(BatAdsFeaturesTest, DefaultMaximumAdsPerDayWhenDisabled) { @@ -118,7 +118,7 @@ TEST(BatAdsFeaturesTest, DefaultMaximumAdsPerDayWhenDisabled) { const std::vector enabled_features; std::vector disabled_features; - disabled_features.emplace_back(kFeature); + disabled_features.emplace_back(kAdsFeature); base::test::ScopedFeatureList scoped_feature_list; scoped_feature_list.InitWithFeaturesAndParameters(enabled_features, @@ -127,7 +127,7 @@ TEST(BatAdsFeaturesTest, DefaultMaximumAdsPerDayWhenDisabled) { // Act // Assert - EXPECT_EQ(20, GetMaximumAdsPerDay()); + EXPECT_EQ(20, kMaximumAdsPerDay.Get()); } -} // namespace brave_ads::promoted_content_ads::features +} // namespace brave_ads::promoted_content_ads diff --git a/components/brave_ads/core/internal/ads/search_result_ad_features.cc b/components/brave_ads/core/internal/ads/search_result_ad_features.cc index 94e76e2ffcf8..0c896244cb89 100644 --- a/components/brave_ads/core/internal/ads/search_result_ad_features.cc +++ b/components/brave_ads/core/internal/ads/search_result_ad_features.cc @@ -5,36 +5,12 @@ #include "brave/components/brave_ads/core/internal/ads/search_result_ad_features.h" -#include "base/metrics/field_trial_params.h" +namespace brave_ads::search_result_ads { -namespace brave_ads::search_result_ads::features { - -namespace { - -constexpr char kMaximumAdsPerHourFieldTrialParamName[] = "maximum_ads_per_hour"; -constexpr int kMaximumAdsPerHourDefaultValue = 10; - -constexpr char kMaximumAdsPerDayFieldTrialParamName[] = "maximum_ads_per_day"; -constexpr int kMaximumAdsPerDayDefaultValue = 40; - -} // namespace - -BASE_FEATURE(kFeature, "SearchResultAds", base::FEATURE_ENABLED_BY_DEFAULT); +BASE_FEATURE(kAdsFeature, "SearchResultAds", base::FEATURE_ENABLED_BY_DEFAULT); bool IsEnabled() { - return base::FeatureList::IsEnabled(kFeature); -} - -int GetMaximumAdsPerHour() { - return GetFieldTrialParamByFeatureAsInt(kFeature, - kMaximumAdsPerHourFieldTrialParamName, - kMaximumAdsPerHourDefaultValue); -} - -int GetMaximumAdsPerDay() { - return GetFieldTrialParamByFeatureAsInt(kFeature, - kMaximumAdsPerDayFieldTrialParamName, - kMaximumAdsPerDayDefaultValue); + return base::FeatureList::IsEnabled(kAdsFeature); } -} // namespace brave_ads::search_result_ads::features +} // namespace brave_ads::search_result_ads diff --git a/components/brave_ads/core/internal/ads/search_result_ad_features.h b/components/brave_ads/core/internal/ads/search_result_ad_features.h index 7c255aa4d74c..caed69ba344b 100644 --- a/components/brave_ads/core/internal/ads/search_result_ad_features.h +++ b/components/brave_ads/core/internal/ads/search_result_ad_features.h @@ -7,15 +7,20 @@ #define BRAVE_COMPONENTS_BRAVE_ADS_CORE_INTERNAL_ADS_SEARCH_RESULT_AD_FEATURES_H_ #include "base/feature_list.h" +#include "base/metrics/field_trial_params.h" -namespace brave_ads::search_result_ads::features { +namespace brave_ads::search_result_ads { -BASE_DECLARE_FEATURE(kFeature); +BASE_DECLARE_FEATURE(kAdsFeature); bool IsEnabled(); -int GetMaximumAdsPerHour(); -int GetMaximumAdsPerDay(); -} // namespace brave_ads::search_result_ads::features +constexpr base::FeatureParam kMaximumAdsPerHour{ + &kAdsFeature, "maximum_ads_per_hour", 10}; + +constexpr base::FeatureParam kMaximumAdsPerDay{&kAdsFeature, + "maximum_ads_per_day", 40}; + +} // namespace brave_ads::search_result_ads #endif // BRAVE_COMPONENTS_BRAVE_ADS_CORE_INTERNAL_ADS_SEARCH_RESULT_AD_FEATURES_H_ diff --git a/components/brave_ads/core/internal/ads/search_result_ad_features_unittest.cc b/components/brave_ads/core/internal/ads/search_result_ad_features_unittest.cc index 4b80c1b687cd..a892933c21cf 100644 --- a/components/brave_ads/core/internal/ads/search_result_ad_features_unittest.cc +++ b/components/brave_ads/core/internal/ads/search_result_ad_features_unittest.cc @@ -12,7 +12,7 @@ // npm run test -- brave_unit_tests --filter=BatAds* -namespace brave_ads::search_result_ads::features { +namespace brave_ads::search_result_ads { TEST(BatAdsFeaturesTest, IsEnabled) { // Arrange @@ -28,7 +28,7 @@ TEST(BatAdsFeaturesTest, IsDisabled) { const std::vector enabled_features; std::vector disabled_features; - disabled_features.emplace_back(kFeature); + disabled_features.emplace_back(kAdsFeature); base::test::ScopedFeatureList scoped_feature_list; scoped_feature_list.InitWithFeaturesAndParameters(enabled_features, @@ -45,7 +45,7 @@ TEST(BatAdsFeaturesTest, GetMaximumAdsPerHour) { std::vector enabled_features; base::FieldTrialParams params; params["maximum_ads_per_hour"] = "42"; - enabled_features.emplace_back(kFeature, params); + enabled_features.emplace_back(kAdsFeature, params); const std::vector disabled_features; @@ -56,7 +56,7 @@ TEST(BatAdsFeaturesTest, GetMaximumAdsPerHour) { // Act // Assert - EXPECT_EQ(42, GetMaximumAdsPerHour()); + EXPECT_EQ(42, kMaximumAdsPerHour.Get()); } TEST(BatAdsFeaturesTest, DefaultMaximumAdsPerHour) { @@ -65,7 +65,7 @@ TEST(BatAdsFeaturesTest, DefaultMaximumAdsPerHour) { // Act // Assert - EXPECT_EQ(10, GetMaximumAdsPerHour()); + EXPECT_EQ(10, kMaximumAdsPerHour.Get()); } TEST(BatAdsFeaturesTest, DefaultMaximumAdsPerHourWhenDisabled) { @@ -73,7 +73,7 @@ TEST(BatAdsFeaturesTest, DefaultMaximumAdsPerHourWhenDisabled) { const std::vector enabled_features; std::vector disabled_features; - disabled_features.emplace_back(kFeature); + disabled_features.emplace_back(kAdsFeature); base::test::ScopedFeatureList scoped_feature_list; scoped_feature_list.InitWithFeaturesAndParameters(enabled_features, @@ -82,7 +82,7 @@ TEST(BatAdsFeaturesTest, DefaultMaximumAdsPerHourWhenDisabled) { // Act // Assert - EXPECT_EQ(10, GetMaximumAdsPerHour()); + EXPECT_EQ(10, kMaximumAdsPerHour.Get()); } TEST(BatAdsFeaturesTest, GetMaximumAdsPerDay) { @@ -90,7 +90,7 @@ TEST(BatAdsFeaturesTest, GetMaximumAdsPerDay) { std::vector enabled_features; base::FieldTrialParams params; params["maximum_ads_per_day"] = "42"; - enabled_features.emplace_back(kFeature, params); + enabled_features.emplace_back(kAdsFeature, params); const std::vector disabled_features; @@ -101,7 +101,7 @@ TEST(BatAdsFeaturesTest, GetMaximumAdsPerDay) { // Act // Assert - EXPECT_EQ(42, GetMaximumAdsPerDay()); + EXPECT_EQ(42, kMaximumAdsPerDay.Get()); } TEST(BatAdsFeaturesTest, DefaultMaximumAdsPerDay) { @@ -110,7 +110,7 @@ TEST(BatAdsFeaturesTest, DefaultMaximumAdsPerDay) { // Act // Assert - EXPECT_EQ(40, GetMaximumAdsPerDay()); + EXPECT_EQ(40, kMaximumAdsPerDay.Get()); } TEST(BatAdsFeaturesTest, DefaultMaximumAdsPerDayWhenDisabled) { @@ -118,7 +118,7 @@ TEST(BatAdsFeaturesTest, DefaultMaximumAdsPerDayWhenDisabled) { const std::vector enabled_features; std::vector disabled_features; - disabled_features.emplace_back(kFeature); + disabled_features.emplace_back(kAdsFeature); base::test::ScopedFeatureList scoped_feature_list; scoped_feature_list.InitWithFeaturesAndParameters(enabled_features, @@ -127,7 +127,7 @@ TEST(BatAdsFeaturesTest, DefaultMaximumAdsPerDayWhenDisabled) { // Act // Assert - EXPECT_EQ(40, GetMaximumAdsPerDay()); + EXPECT_EQ(40, kMaximumAdsPerDay.Get()); } -} // namespace brave_ads::search_result_ads::features +} // namespace brave_ads::search_result_ads diff --git a/components/brave_ads/core/internal/ads/serving/choose/eligible_ads_predictor_util.h b/components/brave_ads/core/internal/ads/serving/choose/eligible_ads_predictor_util.h index 567ce5265a61..6be24e3dc87e 100644 --- a/components/brave_ads/core/internal/ads/serving/choose/eligible_ads_predictor_util.h +++ b/components/brave_ads/core/internal/ads/serving/choose/eligible_ads_predictor_util.h @@ -18,6 +18,7 @@ #include "brave/components/brave_ads/core/internal/ads/serving/choose/ad_predictor_info.h" #include "brave/components/brave_ads/core/internal/ads/serving/eligible_ads/eligible_ads_alias.h" #include "brave/components/brave_ads/core/internal/ads/serving/eligible_ads/eligible_ads_features.h" +#include "brave/components/brave_ads/core/internal/ads/serving/eligible_ads/eligible_ads_features_util.h" #include "brave/components/brave_ads/core/internal/ads/serving/targeting/top_segments.h" #include "brave/components/brave_ads/core/internal/ml/data/vector_data.h" #include "brave/components/brave_ads/core/internal/processors/contextual/text_embedding/text_embedding_html_event_info.h" @@ -114,35 +115,42 @@ AdPredictorInfo ComputePredictorFeatures( template double ComputePredictorScore(const AdPredictorInfo& ad_predictor) { - const AdPredictorWeightList weights = features::GetAdPredictorWeights(); + AdPredictorWeightList ad_predictor_weights = + ToAdPredictorWeights(kAdPredictorWeights.Get()); + if (ad_predictor_weights.empty()) { + ad_predictor_weights = + ToAdPredictorWeights(kAdPredictorWeights.default_value); + } + double score = 0.0; if (ad_predictor.does_match_intent_child_segments) { - score += weights.at(kDoesMatchIntentChildSegmentsIndex); + score += ad_predictor_weights.at(kDoesMatchIntentChildSegmentsIndex); } else if (ad_predictor.does_match_intent_parent_segments) { - score += weights.at(kDoesMatchIntentParentSegmentsIndex); + score += ad_predictor_weights.at(kDoesMatchIntentParentSegmentsIndex); } if (ad_predictor.does_match_interest_child_segments) { - score += weights.at(kDoesMatchInterestChildSegmentsIndex); + score += ad_predictor_weights.at(kDoesMatchInterestChildSegmentsIndex); } else if (ad_predictor.does_match_interest_parent_segments) { - score += weights.at(kDoesMatchInterestParentSegmentsIndex); + score += ad_predictor_weights.at(kDoesMatchInterestParentSegmentsIndex); } if (ad_predictor.ad_last_seen_hours_ago <= base::Time::kHoursPerDay) { - score += weights.at(kAdLastSeenHoursAgoIndex) * + score += ad_predictor_weights.at(kAdLastSeenHoursAgoIndex) * ad_predictor.ad_last_seen_hours_ago / double{base::Time::kHoursPerDay}; } if (ad_predictor.advertiser_last_seen_hours_ago <= base::Time::kHoursPerDay) { - score += weights.at(kAdvertiserLastSeenHoursAgoIndex) * + score += ad_predictor_weights.at(kAdvertiserLastSeenHoursAgoIndex) * ad_predictor.advertiser_last_seen_hours_ago / double{base::Time::kHoursPerDay}; } if (ad_predictor.creative_ad.priority > 0) { - score += weights.at(kPriorityIndex) / ad_predictor.creative_ad.priority; + score += ad_predictor_weights.at(kPriorityIndex) / + ad_predictor.creative_ad.priority; } return score; diff --git a/components/brave_ads/core/internal/ads/serving/choose/eligible_ads_predictor_util_unittest.cc b/components/brave_ads/core/internal/ads/serving/choose/eligible_ads_predictor_util_unittest.cc index 03becddf1de1..7a3db8f2236f 100644 --- a/components/brave_ads/core/internal/ads/serving/choose/eligible_ads_predictor_util_unittest.cc +++ b/components/brave_ads/core/internal/ads/serving/choose/eligible_ads_predictor_util_unittest.cc @@ -80,7 +80,7 @@ TEST(BatAdsEligibleAdsPredictorUtilTest, params["ad_predictor_weights"] = "0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0"; base::test::ScopedFeatureList scoped_feature_list; scoped_feature_list.InitWithFeaturesAndParameters( - {{features::kEligibleAds, params}}, {}); + {{kEligibleAdsFeature, params}}, {}); CreativeNotificationAdInfo creative_ad = BuildCreativeNotificationAd(/*should_use_random_guids*/ true); diff --git a/components/brave_ads/core/internal/ads/serving/eligible_ads/eligible_ads_features.cc b/components/brave_ads/core/internal/ads/serving/eligible_ads/eligible_ads_features.cc index 58b2376715ee..5471e4776854 100644 --- a/components/brave_ads/core/internal/ads/serving/eligible_ads/eligible_ads_features.cc +++ b/components/brave_ads/core/internal/ads/serving/eligible_ads/eligible_ads_features.cc @@ -5,68 +5,14 @@ #include "brave/components/brave_ads/core/internal/ads/serving/eligible_ads/eligible_ads_features.h" -#include -#include +namespace brave_ads { -#include "base/metrics/field_trial_params.h" -#include "base/ranges/algorithm.h" -#include "brave/components/brave_ads/core/internal/ads/serving/eligible_ads/eligible_ads_features_util.h" - -namespace brave_ads::features { - -namespace { - -constexpr char kAdPredictorWeightsFieldTrialParamName[] = - "ad_predictor_weights"; -constexpr double kAdPredictorWeightsDefaultValue[] = { - /*kDoesMatchIntentChildSegmentsIndex*/ 1.0, - /*kDoesMatchIntentParentSegmentsIndex*/ 1.0, - /*kDoesMatchInterestChildSegmentsIndex*/ 1.0, - /*kDoesMatchInterestParentSegmentsIndex*/ 1.0, - /*AdLastSeenHoursAgoIndex*/ 1.0, - /*kAdvertiserLastSeenHoursAgoIndex*/ 1.0, - /*kPriorityIndex*/ 1.0}; - -constexpr char kBrowsingHistoryMaxCountFieldTrialParamName[] = - "browsing_history_max_count"; -constexpr int kBrowsingHistoryMaxCountDefaultValue = 5'000; - -constexpr char kBrowsingHistoryDaysAgoFieldTrialParamName[] = - "browsing_history_days_ago"; -constexpr int kBrowsingHistoryDaysAgoDefaultValue = 180; - -} // namespace - -BASE_FEATURE(kEligibleAds, "EligibleAds", base::FEATURE_ENABLED_BY_DEFAULT); +BASE_FEATURE(kEligibleAdsFeature, + "EligibleAds", + base::FEATURE_ENABLED_BY_DEFAULT); bool IsEligibleAdsEnabled() { - return base::FeatureList::IsEnabled(kEligibleAds); -} - -AdPredictorWeightList GetAdPredictorWeights() { - const std::string field_trial_param_value = GetFieldTrialParamValueByFeature( - kEligibleAds, kAdPredictorWeightsFieldTrialParamName); - - AdPredictorWeightList predictor_weights = - ToAdPredictorWeights(field_trial_param_value); - if (predictor_weights.empty()) { - base::ranges::copy(kAdPredictorWeightsDefaultValue, - std::back_inserter(predictor_weights)); - } - - return predictor_weights; -} - -int GetBrowsingHistoryMaxCount() { - return GetFieldTrialParamByFeatureAsInt( - kEligibleAds, kBrowsingHistoryMaxCountFieldTrialParamName, - kBrowsingHistoryMaxCountDefaultValue); -} - -int GetBrowsingHistoryDaysAgo() { - return GetFieldTrialParamByFeatureAsInt( - kEligibleAds, kBrowsingHistoryDaysAgoFieldTrialParamName, - kBrowsingHistoryDaysAgoDefaultValue); + return base::FeatureList::IsEnabled(kEligibleAdsFeature); } -} // namespace brave_ads::features +} // namespace brave_ads diff --git a/components/brave_ads/core/internal/ads/serving/eligible_ads/eligible_ads_features.h b/components/brave_ads/core/internal/ads/serving/eligible_ads/eligible_ads_features.h index f905ddd2f706..7a2b8f38def7 100644 --- a/components/brave_ads/core/internal/ads/serving/eligible_ads/eligible_ads_features.h +++ b/components/brave_ads/core/internal/ads/serving/eligible_ads/eligible_ads_features.h @@ -6,20 +6,27 @@ #ifndef BRAVE_COMPONENTS_BRAVE_ADS_CORE_INTERNAL_ADS_SERVING_ELIGIBLE_ADS_ELIGIBLE_ADS_FEATURES_H_ #define BRAVE_COMPONENTS_BRAVE_ADS_CORE_INTERNAL_ADS_SERVING_ELIGIBLE_ADS_ELIGIBLE_ADS_FEATURES_H_ +#include + #include "base/feature_list.h" -#include "brave/components/brave_ads/core/internal/ads/serving/eligible_ads/eligible_ads_alias.h" +#include "base/metrics/field_trial_params.h" -namespace brave_ads::features { +namespace brave_ads { -BASE_DECLARE_FEATURE(kEligibleAds); +BASE_DECLARE_FEATURE(kEligibleAdsFeature); bool IsEligibleAdsEnabled(); -AdPredictorWeightList GetAdPredictorWeights(); +constexpr base::FeatureParam kAdPredictorWeights{ + &kEligibleAdsFeature, "ad_predictor_weights", + "1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0"}; + +constexpr base::FeatureParam kBrowsingHistoryMaxCount{ + &kEligibleAdsFeature, "browsing_history_max_count", 5'000}; -int GetBrowsingHistoryMaxCount(); -int GetBrowsingHistoryDaysAgo(); +constexpr base::FeatureParam kBrowsingHistoryDaysAgo{ + &kEligibleAdsFeature, "browsing_history_days_ago", 180}; -} // namespace brave_ads::features +} // namespace brave_ads #endif // BRAVE_COMPONENTS_BRAVE_ADS_CORE_INTERNAL_ADS_SERVING_ELIGIBLE_ADS_ELIGIBLE_ADS_FEATURES_H_ diff --git a/components/brave_ads/core/internal/ads/serving/eligible_ads/eligible_ads_features_unittest.cc b/components/brave_ads/core/internal/ads/serving/eligible_ads/eligible_ads_features_unittest.cc index 94b8c89f3b13..03dd6c0ad615 100644 --- a/components/brave_ads/core/internal/ads/serving/eligible_ads/eligible_ads_features_unittest.cc +++ b/components/brave_ads/core/internal/ads/serving/eligible_ads/eligible_ads_features_unittest.cc @@ -12,9 +12,9 @@ // npm run test -- brave_unit_tests --filter=BatAds* -namespace brave_ads::features { +namespace brave_ads { -TEST(BatAdsEligibleAdsFeaturesTest, IsEligibleAdsEnabled) { +TEST(BatAdsEligibleAdsFeaturesTest, IsEnabled) { // Arrange // Act @@ -23,12 +23,12 @@ TEST(BatAdsEligibleAdsFeaturesTest, IsEligibleAdsEnabled) { EXPECT_TRUE(IsEligibleAdsEnabled()); } -TEST(BatAdsEligibleAdsFeaturesTest, IsEligibleAdsDisabled) { +TEST(BatAdsEligibleAdsFeaturesTest, IsDisabled) { // Arrange const std::vector enabled_features; std::vector disabled_features; - disabled_features.emplace_back(kEligibleAds); + disabled_features.emplace_back(kEligibleAdsFeature); base::test::ScopedFeatureList scoped_feature_list; scoped_feature_list.InitWithFeaturesAndParameters(enabled_features, @@ -43,9 +43,9 @@ TEST(BatAdsEligibleAdsFeaturesTest, IsEligibleAdsDisabled) { TEST(BatAdsEligibleAdsFeaturesTest, GetAdPredictorWeights) { // Arrange base::FieldTrialParams params; - params["ad_predictor_weights"] = "0.1,0.2,0.3,0.4,0.5,0.6,0.7"; + params["ad_predictor_weights"] = "0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7"; std::vector enabled_features; - enabled_features.emplace_back(kEligibleAds, params); + enabled_features.emplace_back(kEligibleAdsFeature, params); const std::vector disabled_features; @@ -56,9 +56,7 @@ TEST(BatAdsEligibleAdsFeaturesTest, GetAdPredictorWeights) { // Act // Assert - const AdPredictorWeightList expected_ad_predictor_weights = { - 0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7}; - EXPECT_EQ(expected_ad_predictor_weights, GetAdPredictorWeights()); + EXPECT_EQ("0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7", kAdPredictorWeights.Get()); } TEST(BatAdsEligibleAdsFeaturesTest, DefaultAdFeatureWeights) { @@ -67,9 +65,7 @@ TEST(BatAdsEligibleAdsFeaturesTest, DefaultAdFeatureWeights) { // Act // Assert - const AdPredictorWeightList expected_ad_predictor_weights = { - 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0}; - EXPECT_EQ(expected_ad_predictor_weights, GetAdPredictorWeights()); + EXPECT_EQ("1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0", kAdPredictorWeights.Get()); } TEST(BatAdsEligibleAdsFeaturesTest, DefaultAdFeatureWeightsWhenDisabled) { @@ -77,7 +73,7 @@ TEST(BatAdsEligibleAdsFeaturesTest, DefaultAdFeatureWeightsWhenDisabled) { const std::vector enabled_features; std::vector disabled_features; - disabled_features.emplace_back(kEligibleAds); + disabled_features.emplace_back(kEligibleAdsFeature); base::test::ScopedFeatureList scoped_feature_list; scoped_feature_list.InitWithFeaturesAndParameters(enabled_features, @@ -86,9 +82,7 @@ TEST(BatAdsEligibleAdsFeaturesTest, DefaultAdFeatureWeightsWhenDisabled) { // Act // Assert - const AdPredictorWeightList expected_ad_predictor_weights = { - 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0}; - EXPECT_EQ(expected_ad_predictor_weights, GetAdPredictorWeights()); + EXPECT_EQ("1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0", kAdPredictorWeights.Get()); } TEST(BatAdsEligibleAdsFeaturesTest, GetBrowsingHistoryMaxCount) { @@ -96,7 +90,7 @@ TEST(BatAdsEligibleAdsFeaturesTest, GetBrowsingHistoryMaxCount) { base::FieldTrialParams params; params["browsing_history_max_count"] = "666"; std::vector enabled_features; - enabled_features.emplace_back(kEligibleAds, params); + enabled_features.emplace_back(kEligibleAdsFeature, params); const std::vector disabled_features; @@ -107,7 +101,7 @@ TEST(BatAdsEligibleAdsFeaturesTest, GetBrowsingHistoryMaxCount) { // Act // Assert - EXPECT_EQ(666, GetBrowsingHistoryMaxCount()); + EXPECT_EQ(666, kBrowsingHistoryMaxCount.Get()); } TEST(BatAdsEligibleAdsFeaturesTest, DefaultBrowsingHistoryMaxCount) { @@ -116,7 +110,7 @@ TEST(BatAdsEligibleAdsFeaturesTest, DefaultBrowsingHistoryMaxCount) { // Act // Assert - EXPECT_EQ(5'000, GetBrowsingHistoryMaxCount()); + EXPECT_EQ(5'000, kBrowsingHistoryMaxCount.Get()); } TEST(BatAdsEligibleAdsFeaturesTest, @@ -125,7 +119,7 @@ TEST(BatAdsEligibleAdsFeaturesTest, const std::vector enabled_features; std::vector disabled_features; - disabled_features.emplace_back(kEligibleAds); + disabled_features.emplace_back(kEligibleAdsFeature); base::test::ScopedFeatureList scoped_feature_list; scoped_feature_list.InitWithFeaturesAndParameters(enabled_features, @@ -134,7 +128,7 @@ TEST(BatAdsEligibleAdsFeaturesTest, // Act // Assert - EXPECT_EQ(5'000, GetBrowsingHistoryMaxCount()); + EXPECT_EQ(5'000, kBrowsingHistoryMaxCount.Get()); } TEST(BatAdsEligibleAdsFeaturesTest, GetBrowsingHistoryDaysAgo) { @@ -142,7 +136,7 @@ TEST(BatAdsEligibleAdsFeaturesTest, GetBrowsingHistoryDaysAgo) { base::FieldTrialParams params; params["browsing_history_days_ago"] = "7"; std::vector enabled_features; - enabled_features.emplace_back(kEligibleAds, params); + enabled_features.emplace_back(kEligibleAdsFeature, params); const std::vector disabled_features; @@ -153,7 +147,7 @@ TEST(BatAdsEligibleAdsFeaturesTest, GetBrowsingHistoryDaysAgo) { // Act // Assert - EXPECT_EQ(7, GetBrowsingHistoryDaysAgo()); + EXPECT_EQ(7, kBrowsingHistoryDaysAgo.Get()); } TEST(BatAdsEligibleAdsFeaturesTest, DefaultBrowsingHistoryDaysAgo) { @@ -162,7 +156,7 @@ TEST(BatAdsEligibleAdsFeaturesTest, DefaultBrowsingHistoryDaysAgo) { // Act // Assert - EXPECT_EQ(180, GetBrowsingHistoryDaysAgo()); + EXPECT_EQ(180, kBrowsingHistoryDaysAgo.Get()); } TEST(BatAdsEligibleAdsFeaturesTest, DefaultBrowsingHistoryDaysAgoWhenDisabled) { @@ -170,7 +164,7 @@ TEST(BatAdsEligibleAdsFeaturesTest, DefaultBrowsingHistoryDaysAgoWhenDisabled) { const std::vector enabled_features; std::vector disabled_features; - disabled_features.emplace_back(kEligibleAds); + disabled_features.emplace_back(kEligibleAdsFeature); base::test::ScopedFeatureList scoped_feature_list; scoped_feature_list.InitWithFeaturesAndParameters(enabled_features, @@ -179,7 +173,7 @@ TEST(BatAdsEligibleAdsFeaturesTest, DefaultBrowsingHistoryDaysAgoWhenDisabled) { // Act // Assert - EXPECT_EQ(180, GetBrowsingHistoryDaysAgo()); + EXPECT_EQ(180, kBrowsingHistoryDaysAgo.Get()); } -} // namespace brave_ads::features +} // namespace brave_ads diff --git a/components/brave_ads/core/internal/ads/serving/eligible_ads/eligible_ads_features_util.cc b/components/brave_ads/core/internal/ads/serving/eligible_ads/eligible_ads_features_util.cc index f84648412f19..cec99d0bf606 100644 --- a/components/brave_ads/core/internal/ads/serving/eligible_ads/eligible_ads_features_util.cc +++ b/components/brave_ads/core/internal/ads/serving/eligible_ads/eligible_ads_features_util.cc @@ -10,6 +10,7 @@ #include "base/strings/string_number_conversions.h" #include "base/strings/string_split.h" +#include "brave/components/brave_ads/core/internal/ads/serving/eligible_ads/eligible_ads_alias.h" #include "brave/components/brave_ads/core/internal/common/numbers/number_util.h" namespace brave_ads { diff --git a/components/brave_ads/core/internal/ads/serving/eligible_ads/exclusion_rules/conversion_exclusion_rule.cc b/components/brave_ads/core/internal/ads/serving/eligible_ads/exclusion_rules/conversion_exclusion_rule.cc index 6dcae697a8a8..e195eb8d3950 100644 --- a/components/brave_ads/core/internal/ads/serving/eligible_ads/exclusion_rules/conversion_exclusion_rule.cc +++ b/components/brave_ads/core/internal/ads/serving/eligible_ads/exclusion_rules/conversion_exclusion_rule.cc @@ -42,7 +42,7 @@ std::string ConversionExclusionRule::GetUuid( } bool ConversionExclusionRule::ShouldExclude(const CreativeAdInfo& creative_ad) { - if (!exclusion_rules::features::ShouldExcludeAdIfConverted()) { + if (!kShouldExcludeAdIfConverted.Get()) { return false; } diff --git a/components/brave_ads/core/internal/ads/serving/eligible_ads/exclusion_rules/conversion_exclusion_rule_unittest.cc b/components/brave_ads/core/internal/ads/serving/eligible_ads/exclusion_rules/conversion_exclusion_rule_unittest.cc index 655c15be3aab..6ff7ef08417f 100644 --- a/components/brave_ads/core/internal/ads/serving/eligible_ads/exclusion_rules/conversion_exclusion_rule_unittest.cc +++ b/components/brave_ads/core/internal/ads/serving/eligible_ads/exclusion_rules/conversion_exclusion_rule_unittest.cc @@ -70,7 +70,7 @@ TEST_F(BatAdsConversionExclusionRuleTest, base::FieldTrialParams params; params["should_exclude_ad_if_converted"] = "false"; std::vector enabled_features; - enabled_features.emplace_back(exclusion_rules::features::kFeature, params); + enabled_features.emplace_back(kExclusionRulesFeature, params); const std::vector disabled_features; diff --git a/components/brave_ads/core/internal/ads/serving/eligible_ads/exclusion_rules/exclusion_rule_features.cc b/components/brave_ads/core/internal/ads/serving/eligible_ads/exclusion_rules/exclusion_rule_features.cc index 512e02124f10..cc1cb15e524d 100644 --- a/components/brave_ads/core/internal/ads/serving/eligible_ads/exclusion_rules/exclusion_rule_features.cc +++ b/components/brave_ads/core/internal/ads/serving/eligible_ads/exclusion_rules/exclusion_rule_features.cc @@ -5,52 +5,14 @@ #include "brave/components/brave_ads/core/internal/ads/serving/eligible_ads/exclusion_rules/exclusion_rule_features.h" -#include "base/metrics/field_trial_params.h" -#include "base/time/time.h" -#include "brave/components/brave_ads/core/internal/common/metrics/field_trial_params_util.h" +namespace brave_ads { -namespace brave_ads::exclusion_rules::features { +BASE_FEATURE(kExclusionRulesFeature, + "ExclusionRules", + base::FEATURE_ENABLED_BY_DEFAULT); -namespace { - -constexpr char kShouldExcludeAdIfConvertedFieldTrialParamName[] = - "should_exclude_ad_if_converted"; -constexpr bool kShouldExcludeAdIfConvertedDefaultValue = true; - -constexpr char kExcludeAdIfDismissedWithinTimeWindowFieldTrialParamName[] = - "exclude_ad_if_dismissed_within_time_window"; -constexpr base::TimeDelta kExcludeAdIfDismissedWithinTimeWindowDefaultValue = - base::Hours(0); - -constexpr char kExcludeAdIfTransferredWithinTimeWindowFieldTrialParamName[] = - "exclude_ad_if_transferred_within_time_window"; -constexpr base::TimeDelta kExcludeAdIfTransferredWithinTimeWindowDefaultValue = - base::Hours(0); - -} // namespace - -BASE_FEATURE(kFeature, "ExclusionRules", base::FEATURE_ENABLED_BY_DEFAULT); - -bool IsEnabled() { - return base::FeatureList::IsEnabled(kFeature); -} - -bool ShouldExcludeAdIfConverted() { - return GetFieldTrialParamByFeatureAsBool( - kFeature, kShouldExcludeAdIfConvertedFieldTrialParamName, - kShouldExcludeAdIfConvertedDefaultValue); -} - -base::TimeDelta GetExcludeAdIfDismissedWithinTimeWindow() { - return GetFieldTrialParamByFeatureAsTimeDelta( - kFeature, kExcludeAdIfDismissedWithinTimeWindowFieldTrialParamName, - kExcludeAdIfDismissedWithinTimeWindowDefaultValue); -} - -base::TimeDelta GetExcludeAdIfTransferredWithinTimeWindow() { - return GetFieldTrialParamByFeatureAsTimeDelta( - kFeature, kExcludeAdIfTransferredWithinTimeWindowFieldTrialParamName, - kExcludeAdIfTransferredWithinTimeWindowDefaultValue); +bool IsExclusionRulesEnabled() { + return base::FeatureList::IsEnabled(kExclusionRulesFeature); } -} // namespace brave_ads::exclusion_rules::features +} // namespace brave_ads diff --git a/components/brave_ads/core/internal/ads/serving/eligible_ads/exclusion_rules/exclusion_rule_features.h b/components/brave_ads/core/internal/ads/serving/eligible_ads/exclusion_rules/exclusion_rule_features.h index 3d0325da5a01..9f88dde0fc84 100644 --- a/components/brave_ads/core/internal/ads/serving/eligible_ads/exclusion_rules/exclusion_rule_features.h +++ b/components/brave_ads/core/internal/ads/serving/eligible_ads/exclusion_rules/exclusion_rule_features.h @@ -7,21 +7,31 @@ #define BRAVE_COMPONENTS_BRAVE_ADS_CORE_INTERNAL_ADS_SERVING_ELIGIBLE_ADS_EXCLUSION_RULES_EXCLUSION_RULE_FEATURES_H_ #include "base/feature_list.h" +#include "base/metrics/field_trial_params.h" namespace base { class TimeDelta; } // namespace base -namespace brave_ads::exclusion_rules::features { +namespace brave_ads { -BASE_DECLARE_FEATURE(kFeature); +BASE_DECLARE_FEATURE(kExclusionRulesFeature); -bool IsEnabled(); +bool IsExclusionRulesEnabled(); -bool ShouldExcludeAdIfConverted(); -base::TimeDelta GetExcludeAdIfDismissedWithinTimeWindow(); -base::TimeDelta GetExcludeAdIfTransferredWithinTimeWindow(); +constexpr base::FeatureParam kShouldExcludeAdIfConverted{ + &kExclusionRulesFeature, "should_exclude_ad_if_converted", true}; -} // namespace brave_ads::exclusion_rules::features +constexpr base::FeatureParam + kShouldExcludeAdIfDismissedWithinTimeWindow{ + &kExclusionRulesFeature, + "should_exclude_ad_if_dismissed_within_time_window", base::Hours(0)}; + +constexpr base::FeatureParam + kShouldExcludeAdIfTransferredWithinTimeWindow{ + &kExclusionRulesFeature, + "should_exclude_ad_if_transferred_within_time_window", base::Hours(0)}; + +} // namespace brave_ads #endif // BRAVE_COMPONENTS_BRAVE_ADS_CORE_INTERNAL_ADS_SERVING_ELIGIBLE_ADS_EXCLUSION_RULES_EXCLUSION_RULE_FEATURES_H_ diff --git a/components/brave_ads/core/internal/ads/serving/eligible_ads/exclusion_rules/exclusion_rule_features_unittest.cc b/components/brave_ads/core/internal/ads/serving/eligible_ads/exclusion_rules/exclusion_rule_features_unittest.cc index 74bd51e564dd..255030d1b4e2 100644 --- a/components/brave_ads/core/internal/ads/serving/eligible_ads/exclusion_rules/exclusion_rule_features_unittest.cc +++ b/components/brave_ads/core/internal/ads/serving/eligible_ads/exclusion_rules/exclusion_rule_features_unittest.cc @@ -12,7 +12,7 @@ // npm run test -- brave_unit_tests --filter=BatAds* -namespace brave_ads::exclusion_rules::features { +namespace brave_ads { TEST(BatAdsExclusionRuleFeaturesTest, IsEnabled) { // Arrange @@ -20,7 +20,7 @@ TEST(BatAdsExclusionRuleFeaturesTest, IsEnabled) { // Act // Assert - EXPECT_TRUE(IsEnabled()); + EXPECT_TRUE(IsExclusionRulesEnabled()); } TEST(BatAdsExclusionRuleFeaturesTest, IsDisabled) { @@ -28,7 +28,7 @@ TEST(BatAdsExclusionRuleFeaturesTest, IsDisabled) { const std::vector enabled_features; std::vector disabled_features; - disabled_features.emplace_back(kFeature); + disabled_features.emplace_back(kExclusionRulesFeature); base::test::ScopedFeatureList scoped_feature_list; scoped_feature_list.InitWithFeaturesAndParameters(enabled_features, @@ -37,7 +37,7 @@ TEST(BatAdsExclusionRuleFeaturesTest, IsDisabled) { // Act // Assert - EXPECT_FALSE(IsEnabled()); + EXPECT_FALSE(IsExclusionRulesEnabled()); } TEST(BatAdsExclusionRuleFeaturesTest, ShouldExcludeAdIfConverted) { @@ -45,7 +45,7 @@ TEST(BatAdsExclusionRuleFeaturesTest, ShouldExcludeAdIfConverted) { base::FieldTrialParams params; params["should_exclude_ad_if_converted"] = "false"; std::vector enabled_features; - enabled_features.emplace_back(kFeature, params); + enabled_features.emplace_back(kExclusionRulesFeature, params); const std::vector disabled_features; @@ -56,7 +56,7 @@ TEST(BatAdsExclusionRuleFeaturesTest, ShouldExcludeAdIfConverted) { // Act // Assert - EXPECT_FALSE(ShouldExcludeAdIfConverted()); + EXPECT_FALSE(kShouldExcludeAdIfConverted.Get()); } TEST(BatAdsExclusionRuleFeaturesTest, DefaultShouldExcludeAdIfConverted) { @@ -65,7 +65,7 @@ TEST(BatAdsExclusionRuleFeaturesTest, DefaultShouldExcludeAdIfConverted) { // Act // Assert - EXPECT_TRUE(ShouldExcludeAdIfConverted()); + EXPECT_TRUE(kShouldExcludeAdIfConverted.Get()); } TEST(BatAdsExclusionRuleFeaturesTest, @@ -74,7 +74,7 @@ TEST(BatAdsExclusionRuleFeaturesTest, const std::vector enabled_features; std::vector disabled_features; - disabled_features.emplace_back(kFeature); + disabled_features.emplace_back(kExclusionRulesFeature); base::test::ScopedFeatureList scoped_feature_list; scoped_feature_list.InitWithFeaturesAndParameters(enabled_features, @@ -83,15 +83,15 @@ TEST(BatAdsExclusionRuleFeaturesTest, // Act // Assert - EXPECT_TRUE(ShouldExcludeAdIfConverted()); + EXPECT_TRUE(kShouldExcludeAdIfConverted.Get()); } TEST(BatAdsExclusionRuleFeaturesTest, GetExcludeAdIfDismissedWithinTimeWindow) { // Arrange base::FieldTrialParams params; - params["exclude_ad_if_dismissed_within_time_window"] = "24h"; + params["should_exclude_ad_if_dismissed_within_time_window"] = "24h"; std::vector enabled_features; - enabled_features.emplace_back(kFeature, params); + enabled_features.emplace_back(kExclusionRulesFeature, params); const std::vector disabled_features; @@ -102,7 +102,7 @@ TEST(BatAdsExclusionRuleFeaturesTest, GetExcludeAdIfDismissedWithinTimeWindow) { // Act // Assert - EXPECT_EQ(base::Days(1), GetExcludeAdIfDismissedWithinTimeWindow()); + EXPECT_EQ(base::Days(1), kShouldExcludeAdIfDismissedWithinTimeWindow.Get()); } TEST(BatAdsExclusionRuleFeaturesTest, @@ -112,7 +112,7 @@ TEST(BatAdsExclusionRuleFeaturesTest, // Act // Assert - EXPECT_EQ(base::Hours(0), GetExcludeAdIfDismissedWithinTimeWindow()); + EXPECT_EQ(base::Hours(0), kShouldExcludeAdIfDismissedWithinTimeWindow.Get()); } TEST(BatAdsExclusionRuleFeaturesTest, @@ -121,7 +121,7 @@ TEST(BatAdsExclusionRuleFeaturesTest, const std::vector enabled_features; std::vector disabled_features; - disabled_features.emplace_back(kFeature); + disabled_features.emplace_back(kExclusionRulesFeature); base::test::ScopedFeatureList scoped_feature_list; scoped_feature_list.InitWithFeaturesAndParameters(enabled_features, @@ -130,16 +130,16 @@ TEST(BatAdsExclusionRuleFeaturesTest, // Act // Assert - EXPECT_EQ(base::Hours(0), GetExcludeAdIfDismissedWithinTimeWindow()); + EXPECT_EQ(base::Hours(0), kShouldExcludeAdIfDismissedWithinTimeWindow.Get()); } -TEST(BatAdsUserActivityFeaturesTest, +TEST(BatAdsExclusionRuleFeaturesTest, GetExcludeAdIfTransferredWithinTimeWindow) { // Arrange base::FieldTrialParams params; - params["exclude_ad_if_transferred_within_time_window"] = "24h"; + params["should_exclude_ad_if_transferred_within_time_window"] = "24h"; std::vector enabled_features; - enabled_features.emplace_back(kFeature, params); + enabled_features.emplace_back(kExclusionRulesFeature, params); const std::vector disabled_features; @@ -150,26 +150,27 @@ TEST(BatAdsUserActivityFeaturesTest, // Act // Assert - EXPECT_EQ(base::Days(1), GetExcludeAdIfTransferredWithinTimeWindow()); + EXPECT_EQ(base::Days(1), kShouldExcludeAdIfTransferredWithinTimeWindow.Get()); } -TEST(BatAdsUserActivityFeaturesTest, +TEST(BatAdsExclusionRuleFeaturesTest, DefaultExcludeAdIfTransferredWithinTimeWindow) { // Arrange // Act // Assert - EXPECT_EQ(base::Hours(0), GetExcludeAdIfTransferredWithinTimeWindow()); + EXPECT_EQ(base::Hours(0), + kShouldExcludeAdIfTransferredWithinTimeWindow.Get()); } -TEST(BatAdsUserActivityFeaturesTest, +TEST(BatAdsExclusionRuleFeaturesTest, DefaultExcludeAdIfTransferredWithinTimeWindowWhenDisabled) { // Arrange const std::vector enabled_features; std::vector disabled_features; - disabled_features.emplace_back(kFeature); + disabled_features.emplace_back(kExclusionRulesFeature); base::test::ScopedFeatureList scoped_feature_list; scoped_feature_list.InitWithFeaturesAndParameters(enabled_features, @@ -178,7 +179,8 @@ TEST(BatAdsUserActivityFeaturesTest, // Act // Assert - EXPECT_EQ(base::Hours(0), GetExcludeAdIfTransferredWithinTimeWindow()); + EXPECT_EQ(base::Hours(0), + kShouldExcludeAdIfTransferredWithinTimeWindow.Get()); } -} // namespace brave_ads::exclusion_rules::features +} // namespace brave_ads diff --git a/components/brave_ads/core/internal/ads/serving/eligible_ads/exclusion_rules/notification_ads/notification_ad_dismissed_exclusion_rule.cc b/components/brave_ads/core/internal/ads/serving/eligible_ads/exclusion_rules/notification_ads/notification_ad_dismissed_exclusion_rule.cc index d392834d48c9..ec61215d4b11 100644 --- a/components/brave_ads/core/internal/ads/serving/eligible_ads/exclusion_rules/notification_ads/notification_ad_dismissed_exclusion_rule.cc +++ b/components/brave_ads/core/internal/ads/serving/eligible_ads/exclusion_rules/notification_ads/notification_ad_dismissed_exclusion_rule.cc @@ -41,7 +41,7 @@ bool DoesRespectCap(const AdEventList& ad_events) { AdEventList FilterAdEvents(const AdEventList& ad_events, const CreativeAdInfo& creative_ad) { const base::TimeDelta time_constraint = - exclusion_rules::features::GetExcludeAdIfDismissedWithinTimeWindow(); + kShouldExcludeAdIfDismissedWithinTimeWindow.Get(); if (time_constraint.is_zero()) { return {}; } diff --git a/components/brave_ads/core/internal/ads/serving/eligible_ads/exclusion_rules/notification_ads/notification_ad_dismissed_exclusion_rule_unittest.cc b/components/brave_ads/core/internal/ads/serving/eligible_ads/exclusion_rules/notification_ads/notification_ad_dismissed_exclusion_rule_unittest.cc index efc3e66db5a2..c4394c352596 100644 --- a/components/brave_ads/core/internal/ads/serving/eligible_ads/exclusion_rules/notification_ads/notification_ad_dismissed_exclusion_rule_unittest.cc +++ b/components/brave_ads/core/internal/ads/serving/eligible_ads/exclusion_rules/notification_ads/notification_ad_dismissed_exclusion_rule_unittest.cc @@ -47,9 +47,9 @@ TEST_F(BatAdsDismissedExclusionRuleTest, AllowAdWithSameCampaignIdWithin48HoursIfDismissed) { // Arrange base::FieldTrialParams params; - params["exclude_ad_if_dismissed_within_time_window"] = "48h"; + params["should_exclude_ad_if_dismissed_within_time_window"] = "48h"; std::vector enabled_features; - enabled_features.emplace_back(exclusion_rules::features::kFeature, params); + enabled_features.emplace_back(kExclusionRulesFeature, params); const std::vector disabled_features; @@ -92,9 +92,9 @@ TEST_F(BatAdsDismissedExclusionRuleTest, AllowAdWithSameCampaignIdWithin48HoursIfDismissedForMultipleTypes) { // Arrange base::FieldTrialParams params; - params["exclude_ad_if_dismissed_within_time_window"] = "48h"; + params["should_exclude_ad_if_dismissed_within_time_window"] = "48h"; std::vector enabled_features; - enabled_features.emplace_back(exclusion_rules::features::kFeature, params); + enabled_features.emplace_back(kExclusionRulesFeature, params); const std::vector disabled_features; @@ -139,9 +139,9 @@ TEST_F(BatAdsDismissedExclusionRuleTest, AllowAdWithSameCampaignIdWithin48HoursIfDismissedThenClicked) { // Arrange base::FieldTrialParams params; - params["exclude_ad_if_dismissed_within_time_window"] = "48h"; + params["should_exclude_ad_if_dismissed_within_time_window"] = "48h"; std::vector enabled_features; - enabled_features.emplace_back(exclusion_rules::features::kFeature, params); + enabled_features.emplace_back(kExclusionRulesFeature, params); const std::vector disabled_features; @@ -183,9 +183,9 @@ TEST_F(BatAdsDismissedExclusionRuleTest, AllowAdWithSameCampaignIdAfter48HoursIfDismissedThenClicked) { // Arrange base::FieldTrialParams params; - params["exclude_ad_if_dismissed_within_time_window"] = "48h"; + params["should_exclude_ad_if_dismissed_within_time_window"] = "48h"; std::vector enabled_features; - enabled_features.emplace_back(exclusion_rules::features::kFeature, params); + enabled_features.emplace_back(kExclusionRulesFeature, params); const std::vector disabled_features; @@ -226,9 +226,9 @@ TEST_F(BatAdsDismissedExclusionRuleTest, AllowAdWithSameCampaignIdWithin48HoursIfClickedThenDismissed) { // Arrange base::FieldTrialParams params; - params["exclude_ad_if_dismissed_within_time_window"] = "48h"; + params["should_exclude_ad_if_dismissed_within_time_window"] = "48h"; std::vector enabled_features; - enabled_features.emplace_back(exclusion_rules::features::kFeature, params); + enabled_features.emplace_back(kExclusionRulesFeature, params); const std::vector disabled_features; @@ -270,9 +270,9 @@ TEST_F(BatAdsDismissedExclusionRuleTest, AllowAdWithSameCampaignIdAfter48HoursIfClickedThenDismissed) { // Arrange base::FieldTrialParams params; - params["exclude_ad_if_dismissed_within_time_window"] = "48h"; + params["should_exclude_ad_if_dismissed_within_time_window"] = "48h"; std::vector enabled_features; - enabled_features.emplace_back(exclusion_rules::features::kFeature, params); + enabled_features.emplace_back(kExclusionRulesFeature, params); const std::vector disabled_features; @@ -313,9 +313,9 @@ TEST_F(BatAdsDismissedExclusionRuleTest, AllowAdWithSameCampaignIdAfter48HoursIfClickedThenDismissedTwice) { // Arrange base::FieldTrialParams params; - params["exclude_ad_if_dismissed_within_time_window"] = "48h"; + params["should_exclude_ad_if_dismissed_within_time_window"] = "48h"; std::vector enabled_features; - enabled_features.emplace_back(exclusion_rules::features::kFeature, params); + enabled_features.emplace_back(kExclusionRulesFeature, params); const std::vector disabled_features; @@ -356,9 +356,9 @@ TEST_F(BatAdsDismissedExclusionRuleTest, DoNotAllowAdWithSameCampaignIdWithin48HoursIfClickedThenDismissedTwice) { // Arrange base::FieldTrialParams params; - params["exclude_ad_if_dismissed_within_time_window"] = "48h"; + params["should_exclude_ad_if_dismissed_within_time_window"] = "48h"; std::vector enabled_features; - enabled_features.emplace_back(exclusion_rules::features::kFeature, params); + enabled_features.emplace_back(kExclusionRulesFeature, params); const std::vector disabled_features; @@ -401,9 +401,9 @@ TEST_F(BatAdsDismissedExclusionRuleTest, AllowAdWithSameCampaignIdIfClickedThenDismissedTwiceWithin0Seconds) { // Arrange base::FieldTrialParams params; - params["exclude_ad_if_dismissed_within_time_window"] = "0s"; + params["should_exclude_ad_if_dismissed_within_time_window"] = "0s"; std::vector enabled_features; - enabled_features.emplace_back(exclusion_rules::features::kFeature, params); + enabled_features.emplace_back(kExclusionRulesFeature, params); const std::vector disabled_features; @@ -440,9 +440,9 @@ TEST_F(BatAdsDismissedExclusionRuleTest, AllowAdWithDifferentCampaignIdWithin48Hours) { // Arrange base::FieldTrialParams params; - params["exclude_ad_if_dismissed_within_time_window"] = "48h"; + params["should_exclude_ad_if_dismissed_within_time_window"] = "48h"; std::vector enabled_features; - enabled_features.emplace_back(exclusion_rules::features::kFeature, params); + enabled_features.emplace_back(kExclusionRulesFeature, params); const std::vector disabled_features; diff --git a/components/brave_ads/core/internal/ads/serving/eligible_ads/exclusion_rules/notification_ads/notification_ad_embedding_exclusion_rule.cc b/components/brave_ads/core/internal/ads/serving/eligible_ads/exclusion_rules/notification_ads/notification_ad_embedding_exclusion_rule.cc index cfadf24fbe9d..87dbdc6b4cd5 100644 --- a/components/brave_ads/core/internal/ads/serving/eligible_ads/exclusion_rules/notification_ads/notification_ad_embedding_exclusion_rule.cc +++ b/components/brave_ads/core/internal/ads/serving/eligible_ads/exclusion_rules/notification_ads/notification_ad_embedding_exclusion_rule.cc @@ -18,8 +18,7 @@ namespace { constexpr int kCompatibleServingVersion = 3; bool DoesRespectCap(const CreativeAdInfo& creative_ad) { - if (notification_ads::features::GetServingVersion() != - kCompatibleServingVersion) { + if (notification_ads::kServingVersion.Get() != kCompatibleServingVersion) { return true; } diff --git a/components/brave_ads/core/internal/ads/serving/eligible_ads/exclusion_rules/notification_ads/notification_ad_embedding_exclusion_rule_unittest.cc b/components/brave_ads/core/internal/ads/serving/eligible_ads/exclusion_rules/notification_ads/notification_ad_embedding_exclusion_rule_unittest.cc index fd2ae24675b0..039aaaa6fa42 100644 --- a/components/brave_ads/core/internal/ads/serving/eligible_ads/exclusion_rules/notification_ads/notification_ad_embedding_exclusion_rule_unittest.cc +++ b/components/brave_ads/core/internal/ads/serving/eligible_ads/exclusion_rules/notification_ads/notification_ad_embedding_exclusion_rule_unittest.cc @@ -29,7 +29,7 @@ TEST_F(EmbeddingExclusionRuleTest, AllowIfNoEmbeddingV2) { std::vector enabled_features; base::FieldTrialParams params; params["version"] = "2"; - enabled_features.emplace_back(notification_ads::features::kServing, params); + enabled_features.emplace_back(notification_ads::kServingFeature, params); const std::vector disabled_features; @@ -54,7 +54,7 @@ TEST_F(EmbeddingExclusionRuleTest, AllowIfEmbeddingV2) { std::vector enabled_features; base::FieldTrialParams params; params["version"] = "2"; - enabled_features.emplace_back(notification_ads::features::kServing, params); + enabled_features.emplace_back(notification_ads::kServingFeature, params); const std::vector disabled_features; @@ -78,7 +78,7 @@ TEST_F(EmbeddingExclusionRuleTest, DisallowIfNoEmbeddingV3) { std::vector enabled_features; base::FieldTrialParams params; params["version"] = "3"; - enabled_features.emplace_back(notification_ads::features::kServing, params); + enabled_features.emplace_back(notification_ads::kServingFeature, params); const std::vector disabled_features; @@ -103,7 +103,7 @@ TEST_F(EmbeddingExclusionRuleTest, DisallowIfEmptyEmbeddingV3) { std::vector enabled_features; base::FieldTrialParams params; params["version"] = "3"; - enabled_features.emplace_back(notification_ads::features::kServing, params); + enabled_features.emplace_back(notification_ads::kServingFeature, params); const std::vector disabled_features; @@ -128,7 +128,7 @@ TEST_F(EmbeddingExclusionRuleTest, AllowIfEmbeddingV3) { std::vector enabled_features; base::FieldTrialParams params; params["version"] = "3"; - enabled_features.emplace_back(notification_ads::features::kServing, params); + enabled_features.emplace_back(notification_ads::kServingFeature, params); const std::vector disabled_features; diff --git a/components/brave_ads/core/internal/ads/serving/eligible_ads/exclusion_rules/transferred_exclusion_rule.cc b/components/brave_ads/core/internal/ads/serving/eligible_ads/exclusion_rules/transferred_exclusion_rule.cc index 6b1f6936601b..c19c66ace3cd 100644 --- a/components/brave_ads/core/internal/ads/serving/eligible_ads/exclusion_rules/transferred_exclusion_rule.cc +++ b/components/brave_ads/core/internal/ads/serving/eligible_ads/exclusion_rules/transferred_exclusion_rule.cc @@ -21,12 +21,9 @@ constexpr int kTransferredCap = 1; bool DoesRespectCap(const AdEventList& ad_events, const CreativeAdInfo& creative_ad) { - const base::TimeDelta time_constraint = - exclusion_rules::features::GetExcludeAdIfTransferredWithinTimeWindow(); - - return DoesRespectCampaignCap(creative_ad, ad_events, - ConfirmationType::kTransferred, time_constraint, - kTransferredCap); + return DoesRespectCampaignCap( + creative_ad, ad_events, ConfirmationType::kTransferred, + kShouldExcludeAdIfTransferredWithinTimeWindow.Get(), kTransferredCap); } } // namespace diff --git a/components/brave_ads/core/internal/ads/serving/eligible_ads/exclusion_rules/transferred_exclusion_rule_unittest.cc b/components/brave_ads/core/internal/ads/serving/eligible_ads/exclusion_rules/transferred_exclusion_rule_unittest.cc index 8610486a424e..b0faf453b9e2 100644 --- a/components/brave_ads/core/internal/ads/serving/eligible_ads/exclusion_rules/transferred_exclusion_rule_unittest.cc +++ b/components/brave_ads/core/internal/ads/serving/eligible_ads/exclusion_rules/transferred_exclusion_rule_unittest.cc @@ -47,9 +47,9 @@ TEST_F(BatAdsTransferredExclusionRuleTest, AllowAdWithDifferentCampaignIdWithin48Hours) { // Arrange base::FieldTrialParams params; - params["exclude_ad_if_transferred_within_time_window"] = "48h"; + params["should_exclude_ad_if_transferred_within_time_window"] = "48h"; std::vector enabled_features; - enabled_features.emplace_back(exclusion_rules::features::kFeature, params); + enabled_features.emplace_back(kExclusionRulesFeature, params); const std::vector disabled_features; @@ -87,9 +87,9 @@ TEST_F(BatAdsTransferredExclusionRuleTest, AllowAdWithDifferentCampaignIdWithin48HoursForMultipleTypes) { // Arrange base::FieldTrialParams params; - params["exclude_ad_if_transferred_within_time_window"] = "48h"; + params["should_exclude_ad_if_transferred_within_time_window"] = "48h"; std::vector enabled_features; - enabled_features.emplace_back(exclusion_rules::features::kFeature, params); + enabled_features.emplace_back(kExclusionRulesFeature, params); const std::vector disabled_features; @@ -141,9 +141,9 @@ TEST_F(BatAdsTransferredExclusionRuleTest, DoNotAllowAdWithSameCampaignIdWithin48Hours) { // Arrange base::FieldTrialParams params; - params["exclude_ad_if_transferred_within_time_window"] = "48h"; + params["should_exclude_ad_if_transferred_within_time_window"] = "48h"; std::vector enabled_features; - enabled_features.emplace_back(exclusion_rules::features::kFeature, params); + enabled_features.emplace_back(kExclusionRulesFeature, params); const std::vector disabled_features; @@ -177,9 +177,9 @@ TEST_F(BatAdsTransferredExclusionRuleTest, AllowAdWithSameCampaignIdWithin0Seconds) { // Arrange base::FieldTrialParams params; - params["exclude_ad_if_transferred_within_time_window"] = "0s"; + params["should_exclude_ad_if_transferred_within_time_window"] = "0s"; std::vector enabled_features; - enabled_features.emplace_back(exclusion_rules::features::kFeature, params); + enabled_features.emplace_back(kExclusionRulesFeature, params); const std::vector disabled_features; @@ -213,9 +213,9 @@ TEST_F(BatAdsTransferredExclusionRuleTest, AllowAdWithSameCampaignIdAfter48Hours) { // Arrange base::FieldTrialParams params; - params["exclude_ad_if_transferred_within_time_window"] = "48h"; + params["should_exclude_ad_if_transferred_within_time_window"] = "48h"; std::vector enabled_features; - enabled_features.emplace_back(exclusion_rules::features::kFeature, params); + enabled_features.emplace_back(kExclusionRulesFeature, params); const std::vector disabled_features; @@ -249,9 +249,9 @@ TEST_F(BatAdsTransferredExclusionRuleTest, AllowAdWithDifferentCampaignIdAfter48Hours) { // Arrange base::FieldTrialParams params; - params["exclude_ad_if_transferred_within_time_window"] = "48h"; + params["should_exclude_ad_if_transferred_within_time_window"] = "48h"; std::vector enabled_features; - enabled_features.emplace_back(exclusion_rules::features::kFeature, params); + enabled_features.emplace_back(kExclusionRulesFeature, params); const std::vector disabled_features; diff --git a/components/brave_ads/core/internal/ads/serving/eligible_ads/pipelines/inline_content_ads/eligible_inline_content_ads_v1.cc b/components/brave_ads/core/internal/ads/serving/eligible_ads/pipelines/inline_content_ads/eligible_inline_content_ads_v1.cc index 8c302db9e8f8..96147e662425 100644 --- a/components/brave_ads/core/internal/ads/serving/eligible_ads/pipelines/inline_content_ads/eligible_inline_content_ads_v1.cc +++ b/components/brave_ads/core/internal/ads/serving/eligible_ads/pipelines/inline_content_ads/eligible_inline_content_ads_v1.cc @@ -72,8 +72,7 @@ void EligibleAdsV1::GetBrowsingHistory( const AdEventList& ad_events, GetEligibleAdsCallback callback) { AdsClientHelper::GetInstance()->GetBrowsingHistory( - features::GetBrowsingHistoryMaxCount(), - features::GetBrowsingHistoryDaysAgo(), + kBrowsingHistoryMaxCount.Get(), kBrowsingHistoryDaysAgo.Get(), base::BindOnce(&EligibleAdsV1::GetEligibleAds, weak_factory_.GetWeakPtr(), std::move(user_model), dimensions, ad_events, std::move(callback))); diff --git a/components/brave_ads/core/internal/ads/serving/eligible_ads/pipelines/inline_content_ads/eligible_inline_content_ads_v2.cc b/components/brave_ads/core/internal/ads/serving/eligible_ads/pipelines/inline_content_ads/eligible_inline_content_ads_v2.cc index 140c151d2cfe..2d61f4975d3c 100644 --- a/components/brave_ads/core/internal/ads/serving/eligible_ads/pipelines/inline_content_ads/eligible_inline_content_ads_v2.cc +++ b/components/brave_ads/core/internal/ads/serving/eligible_ads/pipelines/inline_content_ads/eligible_inline_content_ads_v2.cc @@ -68,8 +68,7 @@ void EligibleAdsV2::GetBrowsingHistory( const std::string& dimensions, GetEligibleAdsCallback callback) { AdsClientHelper::GetInstance()->GetBrowsingHistory( - features::GetBrowsingHistoryMaxCount(), - features::GetBrowsingHistoryDaysAgo(), + kBrowsingHistoryMaxCount.Get(), kBrowsingHistoryDaysAgo.Get(), base::BindOnce(&EligibleAdsV2::GetEligibleAds, weak_factory_.GetWeakPtr(), std::move(user_model), ad_events, dimensions, std::move(callback))); diff --git a/components/brave_ads/core/internal/ads/serving/eligible_ads/pipelines/new_tab_page_ads/eligible_new_tab_page_ads_v1.cc b/components/brave_ads/core/internal/ads/serving/eligible_ads/pipelines/new_tab_page_ads/eligible_new_tab_page_ads_v1.cc index 5a436202bcea..21e83c727ac2 100644 --- a/components/brave_ads/core/internal/ads/serving/eligible_ads/pipelines/new_tab_page_ads/eligible_new_tab_page_ads_v1.cc +++ b/components/brave_ads/core/internal/ads/serving/eligible_ads/pipelines/new_tab_page_ads/eligible_new_tab_page_ads_v1.cc @@ -67,8 +67,7 @@ void EligibleAdsV1::GetBrowsingHistory( const AdEventList& ad_events, GetEligibleAdsCallback callback) { AdsClientHelper::GetInstance()->GetBrowsingHistory( - features::GetBrowsingHistoryMaxCount(), - features::GetBrowsingHistoryDaysAgo(), + kBrowsingHistoryMaxCount.Get(), kBrowsingHistoryDaysAgo.Get(), base::BindOnce(&EligibleAdsV1::GetEligibleAds, weak_factory_.GetWeakPtr(), std::move(user_model), ad_events, std::move(callback))); } diff --git a/components/brave_ads/core/internal/ads/serving/eligible_ads/pipelines/new_tab_page_ads/eligible_new_tab_page_ads_v2.cc b/components/brave_ads/core/internal/ads/serving/eligible_ads/pipelines/new_tab_page_ads/eligible_new_tab_page_ads_v2.cc index 8d9b2d6111f3..46a27234d586 100644 --- a/components/brave_ads/core/internal/ads/serving/eligible_ads/pipelines/new_tab_page_ads/eligible_new_tab_page_ads_v2.cc +++ b/components/brave_ads/core/internal/ads/serving/eligible_ads/pipelines/new_tab_page_ads/eligible_new_tab_page_ads_v2.cc @@ -63,8 +63,7 @@ void EligibleAdsV2::GetBrowsingHistory( const AdEventList& ad_events, GetEligibleAdsCallback callback) { AdsClientHelper::GetInstance()->GetBrowsingHistory( - features::GetBrowsingHistoryMaxCount(), - features::GetBrowsingHistoryDaysAgo(), + kBrowsingHistoryMaxCount.Get(), kBrowsingHistoryDaysAgo.Get(), base::BindOnce(&EligibleAdsV2::GetEligibleAds, weak_factory_.GetWeakPtr(), std::move(user_model), ad_events, std::move(callback))); } diff --git a/components/brave_ads/core/internal/ads/serving/eligible_ads/pipelines/notification_ads/eligible_notification_ads_v1.cc b/components/brave_ads/core/internal/ads/serving/eligible_ads/pipelines/notification_ads/eligible_notification_ads_v1.cc index da4643ce46d5..9d6f39c020b3 100644 --- a/components/brave_ads/core/internal/ads/serving/eligible_ads/pipelines/notification_ads/eligible_notification_ads_v1.cc +++ b/components/brave_ads/core/internal/ads/serving/eligible_ads/pipelines/notification_ads/eligible_notification_ads_v1.cc @@ -67,8 +67,7 @@ void EligibleAdsV1::GetBrowsingHistory( const AdEventList& ad_events, GetEligibleAdsCallback callback) { AdsClientHelper::GetInstance()->GetBrowsingHistory( - features::GetBrowsingHistoryMaxCount(), - features::GetBrowsingHistoryDaysAgo(), + kBrowsingHistoryMaxCount.Get(), kBrowsingHistoryDaysAgo.Get(), base::BindOnce(&EligibleAdsV1::GetEligibleAds, weak_factory_.GetWeakPtr(), std::move(user_model), ad_events, std::move(callback))); } diff --git a/components/brave_ads/core/internal/ads/serving/eligible_ads/pipelines/notification_ads/eligible_notification_ads_v2.cc b/components/brave_ads/core/internal/ads/serving/eligible_ads/pipelines/notification_ads/eligible_notification_ads_v2.cc index 1ee6fe056671..44015763ad0e 100644 --- a/components/brave_ads/core/internal/ads/serving/eligible_ads/pipelines/notification_ads/eligible_notification_ads_v2.cc +++ b/components/brave_ads/core/internal/ads/serving/eligible_ads/pipelines/notification_ads/eligible_notification_ads_v2.cc @@ -64,8 +64,7 @@ void EligibleAdsV2::GetBrowsingHistory( const AdEventList& ad_events, GetEligibleAdsCallback callback) { AdsClientHelper::GetInstance()->GetBrowsingHistory( - features::GetBrowsingHistoryMaxCount(), - features::GetBrowsingHistoryDaysAgo(), + kBrowsingHistoryMaxCount.Get(), kBrowsingHistoryDaysAgo.Get(), base::BindOnce(&EligibleAdsV2::GetEligibleAds, weak_factory_.GetWeakPtr(), std::move(user_model), ad_events, std::move(callback))); } diff --git a/components/brave_ads/core/internal/ads/serving/eligible_ads/pipelines/notification_ads/eligible_notification_ads_v3.cc b/components/brave_ads/core/internal/ads/serving/eligible_ads/pipelines/notification_ads/eligible_notification_ads_v3.cc index 20a951eaf7d6..910f689ed5fd 100644 --- a/components/brave_ads/core/internal/ads/serving/eligible_ads/pipelines/notification_ads/eligible_notification_ads_v3.cc +++ b/components/brave_ads/core/internal/ads/serving/eligible_ads/pipelines/notification_ads/eligible_notification_ads_v3.cc @@ -64,8 +64,7 @@ void EligibleAdsV3::GetBrowsingHistory( const AdEventList& ad_events, GetEligibleAdsCallback callback) { AdsClientHelper::GetInstance()->GetBrowsingHistory( - features::GetBrowsingHistoryMaxCount(), - features::GetBrowsingHistoryDaysAgo(), + kBrowsingHistoryMaxCount.Get(), kBrowsingHistoryDaysAgo.Get(), base::BindOnce(&EligibleAdsV3::GetEligibleAds, weak_factory_.GetWeakPtr(), std::move(user_model), ad_events, std::move(callback))); } diff --git a/components/brave_ads/core/internal/ads/serving/eligible_ads/pipelines/notification_ads/eligible_notification_ads_v3_unittest.cc b/components/brave_ads/core/internal/ads/serving/eligible_ads/pipelines/notification_ads/eligible_notification_ads_v3_unittest.cc index dc42409da5f4..66e5f19c2a19 100644 --- a/components/brave_ads/core/internal/ads/serving/eligible_ads/pipelines/notification_ads/eligible_notification_ads_v3_unittest.cc +++ b/components/brave_ads/core/internal/ads/serving/eligible_ads/pipelines/notification_ads/eligible_notification_ads_v3_unittest.cc @@ -117,7 +117,7 @@ TEST_F(BatAdsEligibleNotificationAdsV3Test, std::vector enabled_features; base::FieldTrialParams params; params["version"] = "3"; - enabled_features.emplace_back(notification_ads::features::kServing, params); + enabled_features.emplace_back(notification_ads::kServingFeature, params); const std::vector disabled_features; diff --git a/components/brave_ads/core/internal/ads/serving/inline_content_ad_serving.cc b/components/brave_ads/core/internal/ads/serving/inline_content_ad_serving.cc index 32392dbda7ea..fceea4bd8f84 100644 --- a/components/brave_ads/core/internal/ads/serving/inline_content_ad_serving.cc +++ b/components/brave_ads/core/internal/ads/serving/inline_content_ad_serving.cc @@ -28,9 +28,8 @@ namespace brave_ads::inline_content_ads { Serving::Serving(const geographic::SubdivisionTargeting& subdivision_targeting, const resource::AntiTargeting& anti_targeting_resource) { - const int version = features::GetServingVersion(); - eligible_ads_ = EligibleAdsFactory::Build(version, subdivision_targeting, - anti_targeting_resource); + eligible_ads_ = EligibleAdsFactory::Build( + kServingVersion.Get(), subdivision_targeting, anti_targeting_resource); } Serving::~Serving() = default; @@ -47,7 +46,7 @@ void Serving::RemoveObserver(ServingObserver* observer) { void Serving::MaybeServeAd(const std::string& dimensions, MaybeServeInlineContentAdCallback callback) { - if (!features::IsServingEnabled()) { + if (!IsServingEnabled()) { BLOG(1, "Inline content ad not served: Feature is disabled"); return FailedToServeAd(dimensions, std::move(callback)); } diff --git a/components/brave_ads/core/internal/ads/serving/inline_content_ad_serving_features.cc b/components/brave_ads/core/internal/ads/serving/inline_content_ad_serving_features.cc index 56ff21003b84..fd1cd27ebd39 100644 --- a/components/brave_ads/core/internal/ads/serving/inline_content_ad_serving_features.cc +++ b/components/brave_ads/core/internal/ads/serving/inline_content_ad_serving_features.cc @@ -5,28 +5,14 @@ #include "brave/components/brave_ads/core/internal/ads/serving/inline_content_ad_serving_features.h" -#include "base/metrics/field_trial_params.h" +namespace brave_ads::inline_content_ads { -namespace brave_ads::inline_content_ads::features { - -namespace { - -constexpr char kVersionFieldTrialParamName[] = "version"; -constexpr int kVersionDefaultValue = 2; - -} // namespace - -BASE_FEATURE(kServing, +BASE_FEATURE(kServingFeature, "InlineContentAdServing", base::FEATURE_ENABLED_BY_DEFAULT); bool IsServingEnabled() { - return base::FeatureList::IsEnabled(kServing); -} - -int GetServingVersion() { - return GetFieldTrialParamByFeatureAsInt(kServing, kVersionFieldTrialParamName, - kVersionDefaultValue); + return base::FeatureList::IsEnabled(kServingFeature); } -} // namespace brave_ads::inline_content_ads::features +} // namespace brave_ads::inline_content_ads diff --git a/components/brave_ads/core/internal/ads/serving/inline_content_ad_serving_features.h b/components/brave_ads/core/internal/ads/serving/inline_content_ad_serving_features.h index ae6f156250a4..b4f84c4d1043 100644 --- a/components/brave_ads/core/internal/ads/serving/inline_content_ad_serving_features.h +++ b/components/brave_ads/core/internal/ads/serving/inline_content_ad_serving_features.h @@ -7,14 +7,17 @@ #define BRAVE_COMPONENTS_BRAVE_ADS_CORE_INTERNAL_ADS_SERVING_INLINE_CONTENT_AD_SERVING_FEATURES_H_ #include "base/feature_list.h" +#include "base/metrics/field_trial_params.h" -namespace brave_ads::inline_content_ads::features { +namespace brave_ads::inline_content_ads { -BASE_DECLARE_FEATURE(kServing); +BASE_DECLARE_FEATURE(kServingFeature); bool IsServingEnabled(); -int GetServingVersion(); -} // namespace brave_ads::inline_content_ads::features +constexpr base::FeatureParam kServingVersion{&kServingFeature, "version", + 2}; + +} // namespace brave_ads::inline_content_ads #endif // BRAVE_COMPONENTS_BRAVE_ADS_CORE_INTERNAL_ADS_SERVING_INLINE_CONTENT_AD_SERVING_FEATURES_H_ diff --git a/components/brave_ads/core/internal/ads/serving/inline_content_ad_serving_features_unittest.cc b/components/brave_ads/core/internal/ads/serving/inline_content_ad_serving_features_unittest.cc index 4a8129a97288..64f84f284f1a 100644 --- a/components/brave_ads/core/internal/ads/serving/inline_content_ad_serving_features_unittest.cc +++ b/components/brave_ads/core/internal/ads/serving/inline_content_ad_serving_features_unittest.cc @@ -12,9 +12,9 @@ // npm run test -- brave_unit_tests --filter=BatAds* -namespace brave_ads::inline_content_ads::features { +namespace brave_ads::inline_content_ads { -TEST(BatAdsServingFeaturesTest, IsServingEnabled) { +TEST(BatAdsServingFeaturesTest, IsEnabled) { // Arrange // Act @@ -23,12 +23,12 @@ TEST(BatAdsServingFeaturesTest, IsServingEnabled) { EXPECT_TRUE(IsServingEnabled()); } -TEST(BatAdsServingFeaturesTest, IsServingDisabled) { +TEST(BatAdsServingFeaturesTest, IsDisabled) { // Arrange const std::vector enabled_features; std::vector disabled_features; - disabled_features.emplace_back(kServing); + disabled_features.emplace_back(kServingFeature); base::test::ScopedFeatureList scoped_feature_list; scoped_feature_list.InitWithFeaturesAndParameters(enabled_features, @@ -45,7 +45,7 @@ TEST(BatAdsServingFeaturesTest, GetServingVersion) { std::vector enabled_features; base::FieldTrialParams params; params["version"] = "0"; - enabled_features.emplace_back(kServing, params); + enabled_features.emplace_back(kServingFeature, params); const std::vector disabled_features; @@ -56,7 +56,7 @@ TEST(BatAdsServingFeaturesTest, GetServingVersion) { // Act // Assert - EXPECT_EQ(0, GetServingVersion()); + EXPECT_EQ(0, kServingVersion.Get()); } TEST(BatAdsServingFeaturesTest, DefaultServingVersion) { @@ -65,7 +65,7 @@ TEST(BatAdsServingFeaturesTest, DefaultServingVersion) { // Act // Assert - EXPECT_EQ(2, GetServingVersion()); + EXPECT_EQ(2, kServingVersion.Get()); } TEST(BatAdsServingFeaturesTest, DefaultServingVersionWhenDisabled) { @@ -73,7 +73,7 @@ TEST(BatAdsServingFeaturesTest, DefaultServingVersionWhenDisabled) { const std::vector enabled_features; std::vector disabled_features; - disabled_features.emplace_back(kServing); + disabled_features.emplace_back(kServingFeature); base::test::ScopedFeatureList scoped_feature_list; scoped_feature_list.InitWithFeaturesAndParameters(enabled_features, @@ -82,7 +82,7 @@ TEST(BatAdsServingFeaturesTest, DefaultServingVersionWhenDisabled) { // Act // Assert - EXPECT_EQ(2, GetServingVersion()); + EXPECT_EQ(2, kServingVersion.Get()); } -} // namespace brave_ads::inline_content_ads::features +} // namespace brave_ads::inline_content_ads diff --git a/components/brave_ads/core/internal/ads/serving/inline_content_ad_serving_features_unittest_util.cc b/components/brave_ads/core/internal/ads/serving/inline_content_ad_serving_features_unittest_util.cc index 8683563f5dfb..89eb8a2fabd8 100644 --- a/components/brave_ads/core/internal/ads/serving/inline_content_ad_serving_features_unittest_util.cc +++ b/components/brave_ads/core/internal/ads/serving/inline_content_ad_serving_features_unittest_util.cc @@ -15,16 +15,17 @@ // npm run test -- brave_unit_tests --filter=BatAds* -namespace brave_ads::inline_content_ads::features { +namespace brave_ads::inline_content_ads { void ForceServingVersion(const int version) { std::map params; params["version"] = base::NumberToString(version); base::test::ScopedFeatureList scoped_feature_list; - scoped_feature_list.InitWithFeaturesAndParameters({{kServing, params}}, {}); + scoped_feature_list.InitWithFeaturesAndParameters({{kServingFeature, params}}, + {}); - CHECK_EQ(version, GetServingVersion()); + CHECK_EQ(version, kServingVersion.Get()); } -} // namespace brave_ads::inline_content_ads::features +} // namespace brave_ads::inline_content_ads diff --git a/components/brave_ads/core/internal/ads/serving/inline_content_ad_serving_features_unittest_util.h b/components/brave_ads/core/internal/ads/serving/inline_content_ad_serving_features_unittest_util.h index 6b9bf12fcef2..193ec3952039 100644 --- a/components/brave_ads/core/internal/ads/serving/inline_content_ad_serving_features_unittest_util.h +++ b/components/brave_ads/core/internal/ads/serving/inline_content_ad_serving_features_unittest_util.h @@ -6,10 +6,10 @@ #ifndef BRAVE_COMPONENTS_BRAVE_ADS_CORE_INTERNAL_ADS_SERVING_INLINE_CONTENT_AD_SERVING_FEATURES_UNITTEST_UTIL_H_ #define BRAVE_COMPONENTS_BRAVE_ADS_CORE_INTERNAL_ADS_SERVING_INLINE_CONTENT_AD_SERVING_FEATURES_UNITTEST_UTIL_H_ -namespace brave_ads::inline_content_ads::features { +namespace brave_ads::inline_content_ads { void ForceServingVersion(int version); -} // namespace brave_ads::inline_content_ads::features +} // namespace brave_ads::inline_content_ads #endif // BRAVE_COMPONENTS_BRAVE_ADS_CORE_INTERNAL_ADS_SERVING_INLINE_CONTENT_AD_SERVING_FEATURES_UNITTEST_UTIL_H_ diff --git a/components/brave_ads/core/internal/ads/serving/inline_content_ad_serving_unittest.cc b/components/brave_ads/core/internal/ads/serving/inline_content_ad_serving_unittest.cc index 9b2dfc70c209..ac43d245850e 100644 --- a/components/brave_ads/core/internal/ads/serving/inline_content_ad_serving_unittest.cc +++ b/components/brave_ads/core/internal/ads/serving/inline_content_ad_serving_unittest.cc @@ -56,7 +56,7 @@ class BatAdsInlineContentAdServingTest : public UnitTestBase { void SetUp() override { UnitTestBase::SetUp(); - features::ForceServingVersion(1); + ForceServingVersion(1); subdivision_targeting_ = std::make_unique(); @@ -81,7 +81,7 @@ class BatAdsInlineContentAdServingTest : public UnitTestBase { TEST_F(BatAdsInlineContentAdServingTest, DoNotServeAdForUnsupportedVersion) { // Arrange - features::ForceServingVersion(0); + ForceServingVersion(0); // Act serving_->MaybeServeAd( diff --git a/components/brave_ads/core/internal/ads/serving/new_tab_page_ad_serving.cc b/components/brave_ads/core/internal/ads/serving/new_tab_page_ad_serving.cc index 768e00e331f6..edfb8800344b 100644 --- a/components/brave_ads/core/internal/ads/serving/new_tab_page_ad_serving.cc +++ b/components/brave_ads/core/internal/ads/serving/new_tab_page_ad_serving.cc @@ -28,9 +28,8 @@ namespace brave_ads::new_tab_page_ads { Serving::Serving(const geographic::SubdivisionTargeting& subdivision_targeting, const resource::AntiTargeting& anti_targeting_resource) { - const int version = features::GetServingVersion(); - eligible_ads_ = EligibleAdsFactory::Build(version, subdivision_targeting, - anti_targeting_resource); + eligible_ads_ = EligibleAdsFactory::Build( + kServingVersion.Get(), subdivision_targeting, anti_targeting_resource); } Serving::~Serving() = default; @@ -46,7 +45,7 @@ void Serving::RemoveObserver(ServingObserver* observer) { } void Serving::MaybeServeAd(MaybeServeNewTabPageAdCallback callback) { - if (!features::IsServingEnabled()) { + if (!IsServingEnabled()) { BLOG(1, "New tab page ad not served: Feature is disabled"); return FailedToServeAd(std::move(callback)); } diff --git a/components/brave_ads/core/internal/ads/serving/new_tab_page_ad_serving_features.cc b/components/brave_ads/core/internal/ads/serving/new_tab_page_ad_serving_features.cc index 695716fab4ec..08c2c4e3ecc7 100644 --- a/components/brave_ads/core/internal/ads/serving/new_tab_page_ad_serving_features.cc +++ b/components/brave_ads/core/internal/ads/serving/new_tab_page_ad_serving_features.cc @@ -5,26 +5,14 @@ #include "brave/components/brave_ads/core/internal/ads/serving/new_tab_page_ad_serving_features.h" -#include "base/metrics/field_trial_params.h" +namespace brave_ads::new_tab_page_ads { -namespace brave_ads::new_tab_page_ads::features { - -namespace { - -constexpr char kVersionFieldTrialParamName[] = "version"; -constexpr int kVersionDefaultValue = 2; - -} // namespace - -BASE_FEATURE(kServing, "NewTabPageAdServing", base::FEATURE_ENABLED_BY_DEFAULT); +BASE_FEATURE(kServingFeature, + "NewTabPageAdServing", + base::FEATURE_ENABLED_BY_DEFAULT); bool IsServingEnabled() { - return base::FeatureList::IsEnabled(kServing); -} - -int GetServingVersion() { - return GetFieldTrialParamByFeatureAsInt(kServing, kVersionFieldTrialParamName, - kVersionDefaultValue); + return base::FeatureList::IsEnabled(kServingFeature); } -} // namespace brave_ads::new_tab_page_ads::features +} // namespace brave_ads::new_tab_page_ads diff --git a/components/brave_ads/core/internal/ads/serving/new_tab_page_ad_serving_features.h b/components/brave_ads/core/internal/ads/serving/new_tab_page_ad_serving_features.h index 6ccb69e58e77..cd83c83b55d4 100644 --- a/components/brave_ads/core/internal/ads/serving/new_tab_page_ad_serving_features.h +++ b/components/brave_ads/core/internal/ads/serving/new_tab_page_ad_serving_features.h @@ -7,14 +7,17 @@ #define BRAVE_COMPONENTS_BRAVE_ADS_CORE_INTERNAL_ADS_SERVING_NEW_TAB_PAGE_AD_SERVING_FEATURES_H_ #include "base/feature_list.h" +#include "base/metrics/field_trial_params.h" -namespace brave_ads::new_tab_page_ads::features { +namespace brave_ads::new_tab_page_ads { -BASE_DECLARE_FEATURE(kServing); +BASE_DECLARE_FEATURE(kServingFeature); bool IsServingEnabled(); -int GetServingVersion(); -} // namespace brave_ads::new_tab_page_ads::features +constexpr base::FeatureParam kServingVersion{&kServingFeature, "version", + 2}; + +} // namespace brave_ads::new_tab_page_ads #endif // BRAVE_COMPONENTS_BRAVE_ADS_CORE_INTERNAL_ADS_SERVING_NEW_TAB_PAGE_AD_SERVING_FEATURES_H_ diff --git a/components/brave_ads/core/internal/ads/serving/new_tab_page_ad_serving_features_unittest.cc b/components/brave_ads/core/internal/ads/serving/new_tab_page_ad_serving_features_unittest.cc index 4c1ce1255e6f..32a63a0c32de 100644 --- a/components/brave_ads/core/internal/ads/serving/new_tab_page_ad_serving_features_unittest.cc +++ b/components/brave_ads/core/internal/ads/serving/new_tab_page_ad_serving_features_unittest.cc @@ -12,9 +12,9 @@ // npm run test -- brave_unit_tests --filter=BatAds* -namespace brave_ads::new_tab_page_ads::features { +namespace brave_ads::new_tab_page_ads { -TEST(BatAdsServingFeaturesTest, IsServingEnabled) { +TEST(BatAdsServingFeaturesTest, IsEnabled) { // Arrange // Act @@ -23,12 +23,12 @@ TEST(BatAdsServingFeaturesTest, IsServingEnabled) { EXPECT_TRUE(IsServingEnabled()); } -TEST(BatAdsServingFeaturesTest, IsServingDisabled) { +TEST(BatAdsServingFeaturesTest, IsDisabled) { // Arrange const std::vector enabled_features; std::vector disabled_features; - disabled_features.emplace_back(kServing); + disabled_features.emplace_back(kServingFeature); base::test::ScopedFeatureList scoped_feature_list; scoped_feature_list.InitWithFeaturesAndParameters(enabled_features, @@ -45,7 +45,7 @@ TEST(BatAdsServingFeaturesTest, GetServingVersion) { std::vector enabled_features; base::FieldTrialParams params; params["version"] = "0"; - enabled_features.emplace_back(kServing, params); + enabled_features.emplace_back(kServingFeature, params); const std::vector disabled_features; @@ -56,7 +56,7 @@ TEST(BatAdsServingFeaturesTest, GetServingVersion) { // Act // Assert - EXPECT_EQ(0, GetServingVersion()); + EXPECT_EQ(0, kServingVersion.Get()); } TEST(BatAdsServingFeaturesTest, DefaultServingVersion) { @@ -65,7 +65,7 @@ TEST(BatAdsServingFeaturesTest, DefaultServingVersion) { // Act // Assert - EXPECT_EQ(2, GetServingVersion()); + EXPECT_EQ(2, kServingVersion.Get()); } TEST(BatAdsServingFeaturesTest, DefaultServingVersionWhenDisabled) { @@ -73,7 +73,7 @@ TEST(BatAdsServingFeaturesTest, DefaultServingVersionWhenDisabled) { const std::vector enabled_features; std::vector disabled_features; - disabled_features.emplace_back(kServing); + disabled_features.emplace_back(kServingFeature); base::test::ScopedFeatureList scoped_feature_list; scoped_feature_list.InitWithFeaturesAndParameters(enabled_features, @@ -82,7 +82,7 @@ TEST(BatAdsServingFeaturesTest, DefaultServingVersionWhenDisabled) { // Act // Assert - EXPECT_EQ(2, GetServingVersion()); + EXPECT_EQ(2, kServingVersion.Get()); } -} // namespace brave_ads::new_tab_page_ads::features +} // namespace brave_ads::new_tab_page_ads diff --git a/components/brave_ads/core/internal/ads/serving/new_tab_page_ad_serving_features_unittest_util.cc b/components/brave_ads/core/internal/ads/serving/new_tab_page_ad_serving_features_unittest_util.cc index e0715c162b88..5e8f2be03780 100644 --- a/components/brave_ads/core/internal/ads/serving/new_tab_page_ad_serving_features_unittest_util.cc +++ b/components/brave_ads/core/internal/ads/serving/new_tab_page_ad_serving_features_unittest_util.cc @@ -15,16 +15,17 @@ // npm run test -- brave_unit_tests --filter=BatAds* -namespace brave_ads::new_tab_page_ads::features { +namespace brave_ads::new_tab_page_ads { void ForceServingVersion(const int version) { std::map params; params["version"] = base::NumberToString(version); base::test::ScopedFeatureList scoped_feature_list; - scoped_feature_list.InitWithFeaturesAndParameters({{kServing, params}}, {}); + scoped_feature_list.InitWithFeaturesAndParameters({{kServingFeature, params}}, + {}); - CHECK_EQ(version, GetServingVersion()); + CHECK_EQ(version, kServingVersion.Get()); } -} // namespace brave_ads::new_tab_page_ads::features +} // namespace brave_ads::new_tab_page_ads diff --git a/components/brave_ads/core/internal/ads/serving/new_tab_page_ad_serving_features_unittest_util.h b/components/brave_ads/core/internal/ads/serving/new_tab_page_ad_serving_features_unittest_util.h index c8d43cc55eb6..2427d9557806 100644 --- a/components/brave_ads/core/internal/ads/serving/new_tab_page_ad_serving_features_unittest_util.h +++ b/components/brave_ads/core/internal/ads/serving/new_tab_page_ad_serving_features_unittest_util.h @@ -6,10 +6,10 @@ #ifndef BRAVE_COMPONENTS_BRAVE_ADS_CORE_INTERNAL_ADS_SERVING_NEW_TAB_PAGE_AD_SERVING_FEATURES_UNITTEST_UTIL_H_ #define BRAVE_COMPONENTS_BRAVE_ADS_CORE_INTERNAL_ADS_SERVING_NEW_TAB_PAGE_AD_SERVING_FEATURES_UNITTEST_UTIL_H_ -namespace brave_ads::new_tab_page_ads::features { +namespace brave_ads::new_tab_page_ads { void ForceServingVersion(int version); -} // namespace brave_ads::new_tab_page_ads::features +} // namespace brave_ads::new_tab_page_ads #endif // BRAVE_COMPONENTS_BRAVE_ADS_CORE_INTERNAL_ADS_SERVING_NEW_TAB_PAGE_AD_SERVING_FEATURES_UNITTEST_UTIL_H_ diff --git a/components/brave_ads/core/internal/ads/serving/new_tab_page_ad_serving_unittest.cc b/components/brave_ads/core/internal/ads/serving/new_tab_page_ad_serving_unittest.cc index 42076b0b0c37..46ff998316cc 100644 --- a/components/brave_ads/core/internal/ads/serving/new_tab_page_ad_serving_unittest.cc +++ b/components/brave_ads/core/internal/ads/serving/new_tab_page_ad_serving_unittest.cc @@ -57,7 +57,7 @@ class BatAdsNewTabPageAdServingTest : public UnitTestBase { void SetUp() override { UnitTestBase::SetUp(); - features::ForceServingVersion(1); + ForceServingVersion(1); subdivision_targeting_ = std::make_unique(); @@ -82,7 +82,7 @@ class BatAdsNewTabPageAdServingTest : public UnitTestBase { TEST_F(BatAdsNewTabPageAdServingTest, DoNotServeAdForUnsupportedVersion) { // Arrange - features::ForceServingVersion(0); + ForceServingVersion(0); // Act serving_->MaybeServeAd(base::BindOnce( diff --git a/components/brave_ads/core/internal/ads/serving/notification_ad_serving.cc b/components/brave_ads/core/internal/ads/serving/notification_ad_serving.cc index 5c9428b8b4cc..b34d76974910 100644 --- a/components/brave_ads/core/internal/ads/serving/notification_ad_serving.cc +++ b/components/brave_ads/core/internal/ads/serving/notification_ad_serving.cc @@ -36,9 +36,8 @@ constexpr base::TimeDelta kRetryServingAdAfterDelay = base::Minutes(2); Serving::Serving(const geographic::SubdivisionTargeting& subdivision_targeting, const resource::AntiTargeting& anti_targeting_resource) { - const int version = features::GetServingVersion(); - eligible_ads_ = EligibleAdsFactory::Build(version, subdivision_targeting, - anti_targeting_resource); + eligible_ads_ = EligibleAdsFactory::Build( + kServingVersion.Get(), subdivision_targeting, anti_targeting_resource); AdsClientHelper::AddObserver(this); } @@ -88,7 +87,7 @@ void Serving::MaybeServeAd() { is_serving_ = true; - if (!features::IsServingEnabled()) { + if (!IsServingEnabled()) { BLOG(1, "Notification ad not served: Feature is disabled"); FailedToServeAd(); return; diff --git a/components/brave_ads/core/internal/ads/serving/notification_ad_serving_features.cc b/components/brave_ads/core/internal/ads/serving/notification_ad_serving_features.cc index 228caa4ffe3e..38970052cc6b 100644 --- a/components/brave_ads/core/internal/ads/serving/notification_ad_serving_features.cc +++ b/components/brave_ads/core/internal/ads/serving/notification_ad_serving_features.cc @@ -5,28 +5,14 @@ #include "brave/components/brave_ads/core/internal/ads/serving/notification_ad_serving_features.h" -#include "base/metrics/field_trial_params.h" +namespace brave_ads::notification_ads { -namespace brave_ads::notification_ads::features { - -namespace { - -constexpr char kVersionFieldTrialParamName[] = "version"; -constexpr int kVersionDefaultValue = 2; - -} // namespace - -BASE_FEATURE(kServing, +BASE_FEATURE(kServingFeature, "NotificationAdServing", base::FEATURE_ENABLED_BY_DEFAULT); bool IsServingEnabled() { - return base::FeatureList::IsEnabled(kServing); -} - -int GetServingVersion() { - return GetFieldTrialParamByFeatureAsInt(kServing, kVersionFieldTrialParamName, - kVersionDefaultValue); + return base::FeatureList::IsEnabled(kServingFeature); } -} // namespace brave_ads::notification_ads::features +} // namespace brave_ads::notification_ads diff --git a/components/brave_ads/core/internal/ads/serving/notification_ad_serving_features.h b/components/brave_ads/core/internal/ads/serving/notification_ad_serving_features.h index 9025a76b7048..37f858d98a3a 100644 --- a/components/brave_ads/core/internal/ads/serving/notification_ad_serving_features.h +++ b/components/brave_ads/core/internal/ads/serving/notification_ad_serving_features.h @@ -7,14 +7,17 @@ #define BRAVE_COMPONENTS_BRAVE_ADS_CORE_INTERNAL_ADS_SERVING_NOTIFICATION_AD_SERVING_FEATURES_H_ #include "base/feature_list.h" +#include "base/metrics/field_trial_params.h" -namespace brave_ads::notification_ads::features { +namespace brave_ads::notification_ads { -BASE_DECLARE_FEATURE(kServing); +BASE_DECLARE_FEATURE(kServingFeature); bool IsServingEnabled(); -int GetServingVersion(); -} // namespace brave_ads::notification_ads::features +constexpr base::FeatureParam kServingVersion{&kServingFeature, "version", + 2}; + +} // namespace brave_ads::notification_ads #endif // BRAVE_COMPONENTS_BRAVE_ADS_CORE_INTERNAL_ADS_SERVING_NOTIFICATION_AD_SERVING_FEATURES_H_ diff --git a/components/brave_ads/core/internal/ads/serving/notification_ad_serving_features_unittest.cc b/components/brave_ads/core/internal/ads/serving/notification_ad_serving_features_unittest.cc index 58d345a7445d..fe2ae238df7f 100644 --- a/components/brave_ads/core/internal/ads/serving/notification_ad_serving_features_unittest.cc +++ b/components/brave_ads/core/internal/ads/serving/notification_ad_serving_features_unittest.cc @@ -12,9 +12,9 @@ // npm run test -- brave_unit_tests --filter=BatAds* -namespace brave_ads::notification_ads::features { +namespace brave_ads::notification_ads { -TEST(BatAdsServingFeaturesTest, IsServingEnabled) { +TEST(BatAdsServingFeaturesTest, IsEnabled) { // Arrange // Act @@ -23,12 +23,12 @@ TEST(BatAdsServingFeaturesTest, IsServingEnabled) { EXPECT_TRUE(IsServingEnabled()); } -TEST(BatAdsServingFeaturesTest, IsServingDisabled) { +TEST(BatAdsServingFeaturesTest, IsDisabled) { // Arrange const std::vector enabled_features; std::vector disabled_features; - disabled_features.emplace_back(kServing); + disabled_features.emplace_back(kServingFeature); base::test::ScopedFeatureList scoped_feature_list; scoped_feature_list.InitWithFeaturesAndParameters(enabled_features, @@ -45,7 +45,7 @@ TEST(BatAdsServingFeaturesTest, GetServingVersion) { std::vector enabled_features; base::FieldTrialParams params; params["version"] = "0"; - enabled_features.emplace_back(kServing, params); + enabled_features.emplace_back(kServingFeature, params); const std::vector disabled_features; @@ -56,7 +56,7 @@ TEST(BatAdsServingFeaturesTest, GetServingVersion) { // Act // Assert - EXPECT_EQ(0, GetServingVersion()); + EXPECT_EQ(0, kServingVersion.Get()); } TEST(BatAdsServingFeaturesTest, DefaultServingVersion) { @@ -65,7 +65,7 @@ TEST(BatAdsServingFeaturesTest, DefaultServingVersion) { // Act // Assert - EXPECT_EQ(2, GetServingVersion()); + EXPECT_EQ(2, kServingVersion.Get()); } TEST(BatAdsServingFeaturesTest, DefaultServingVersionWhenDisabled) { @@ -73,7 +73,7 @@ TEST(BatAdsServingFeaturesTest, DefaultServingVersionWhenDisabled) { const std::vector enabled_features; std::vector disabled_features; - disabled_features.emplace_back(kServing); + disabled_features.emplace_back(kServingFeature); base::test::ScopedFeatureList scoped_feature_list; scoped_feature_list.InitWithFeaturesAndParameters(enabled_features, @@ -82,7 +82,7 @@ TEST(BatAdsServingFeaturesTest, DefaultServingVersionWhenDisabled) { // Act // Assert - EXPECT_EQ(2, GetServingVersion()); + EXPECT_EQ(2, kServingVersion.Get()); } -} // namespace brave_ads::notification_ads::features +} // namespace brave_ads::notification_ads diff --git a/components/brave_ads/core/internal/ads/serving/notification_ad_serving_features_unittest_util.cc b/components/brave_ads/core/internal/ads/serving/notification_ad_serving_features_unittest_util.cc index 2255dc4c0be2..91c8e1235589 100644 --- a/components/brave_ads/core/internal/ads/serving/notification_ad_serving_features_unittest_util.cc +++ b/components/brave_ads/core/internal/ads/serving/notification_ad_serving_features_unittest_util.cc @@ -15,16 +15,17 @@ // npm run test -- brave_unit_tests --filter=BatAds* -namespace brave_ads::notification_ads::features { +namespace brave_ads::notification_ads { void ForceServingVersion(const int version) { std::map params; params["version"] = base::NumberToString(version); base::test::ScopedFeatureList scoped_feature_list; - scoped_feature_list.InitWithFeaturesAndParameters({{kServing, params}}, {}); + scoped_feature_list.InitWithFeaturesAndParameters({{kServingFeature, params}}, + {}); - CHECK_EQ(version, GetServingVersion()); + CHECK_EQ(version, kServingVersion.Get()); } -} // namespace brave_ads::notification_ads::features +} // namespace brave_ads::notification_ads diff --git a/components/brave_ads/core/internal/ads/serving/notification_ad_serving_features_unittest_util.h b/components/brave_ads/core/internal/ads/serving/notification_ad_serving_features_unittest_util.h index 70fbd69030f7..4f125a0c10b1 100644 --- a/components/brave_ads/core/internal/ads/serving/notification_ad_serving_features_unittest_util.h +++ b/components/brave_ads/core/internal/ads/serving/notification_ad_serving_features_unittest_util.h @@ -6,10 +6,10 @@ #ifndef BRAVE_COMPONENTS_BRAVE_ADS_CORE_INTERNAL_ADS_SERVING_NOTIFICATION_AD_SERVING_FEATURES_UNITTEST_UTIL_H_ #define BRAVE_COMPONENTS_BRAVE_ADS_CORE_INTERNAL_ADS_SERVING_NOTIFICATION_AD_SERVING_FEATURES_UNITTEST_UTIL_H_ -namespace brave_ads::notification_ads::features { +namespace brave_ads::notification_ads { void ForceServingVersion(int version); -} // namespace brave_ads::notification_ads::features +} // namespace brave_ads::notification_ads #endif // BRAVE_COMPONENTS_BRAVE_ADS_CORE_INTERNAL_ADS_SERVING_NOTIFICATION_AD_SERVING_FEATURES_UNITTEST_UTIL_H_ diff --git a/components/brave_ads/core/internal/ads/serving/notification_ad_serving_unittest.cc b/components/brave_ads/core/internal/ads/serving/notification_ad_serving_unittest.cc index 2ff999e564a4..fbb7c8e7a916 100644 --- a/components/brave_ads/core/internal/ads/serving/notification_ad_serving_unittest.cc +++ b/components/brave_ads/core/internal/ads/serving/notification_ad_serving_unittest.cc @@ -28,7 +28,7 @@ class BatAdsNotificationAdServingTest : public ServingObserver, void SetUp() override { UnitTestBase::SetUp(); - features::ForceServingVersion(1); + ForceServingVersion(1); subdivision_targeting_ = std::make_unique(); @@ -68,7 +68,7 @@ class BatAdsNotificationAdServingTest : public ServingObserver, TEST_F(BatAdsNotificationAdServingTest, DoNotServeAdForUnsupportedVersion) { // Arrange - features::ForceServingVersion(0); + ForceServingVersion(0); // Act serving_->MaybeServeAd(); diff --git a/components/brave_ads/core/internal/ads/serving/permission_rules/browser_is_active_permission_rule.cc b/components/brave_ads/core/internal/ads/serving/permission_rules/browser_is_active_permission_rule.cc index 2d447a1fccee..f070b8f35372 100644 --- a/components/brave_ads/core/internal/ads/serving/permission_rules/browser_is_active_permission_rule.cc +++ b/components/brave_ads/core/internal/ads/serving/permission_rules/browser_is_active_permission_rule.cc @@ -24,7 +24,7 @@ bool DoesRespectCap() { } // namespace bool BrowserIsActivePermissionRule::ShouldAllow() { - if (!permission_rules::features::ShouldOnlyServeAdsIfBrowserIsActive()) { + if (!kShouldOnlyServeAdsIfBrowserIsActive.Get()) { return true; } diff --git a/components/brave_ads/core/internal/ads/serving/permission_rules/browser_is_active_permission_rule_unittest.cc b/components/brave_ads/core/internal/ads/serving/permission_rules/browser_is_active_permission_rule_unittest.cc index cc5234b394d1..bf063c1e606b 100644 --- a/components/brave_ads/core/internal/ads/serving/permission_rules/browser_is_active_permission_rule_unittest.cc +++ b/components/brave_ads/core/internal/ads/serving/permission_rules/browser_is_active_permission_rule_unittest.cc @@ -66,7 +66,7 @@ TEST_F(BatAdsBrowserIsActivePermissionRuleTest, base::FieldTrialParams params; params["should_only_serve_ads_if_browser_is_active"] = "false"; std::vector enabled_features; - enabled_features.emplace_back(permission_rules::features::kFeature, params); + enabled_features.emplace_back(kPermissionRulesFeature, params); const std::vector disabled_features; diff --git a/components/brave_ads/core/internal/ads/serving/permission_rules/full_screen_mode_permission_rule.cc b/components/brave_ads/core/internal/ads/serving/permission_rules/full_screen_mode_permission_rule.cc index 32139cde6c13..d0f2ae576444 100644 --- a/components/brave_ads/core/internal/ads/serving/permission_rules/full_screen_mode_permission_rule.cc +++ b/components/brave_ads/core/internal/ads/serving/permission_rules/full_screen_mode_permission_rule.cc @@ -24,7 +24,7 @@ bool DoesRespectCap() { } // namespace bool FullScreenModePermissionRule::ShouldAllow() { - if (!permission_rules::features::ShouldOnlyServeAdsInWindowedMode()) { + if (!kShouldOnlyServeAdsInWindowedMode.Get()) { return true; } diff --git a/components/brave_ads/core/internal/ads/serving/permission_rules/full_screen_mode_permission_rule_unittest.cc b/components/brave_ads/core/internal/ads/serving/permission_rules/full_screen_mode_permission_rule_unittest.cc index 7c00dfa45fae..0835361c8475 100644 --- a/components/brave_ads/core/internal/ads/serving/permission_rules/full_screen_mode_permission_rule_unittest.cc +++ b/components/brave_ads/core/internal/ads/serving/permission_rules/full_screen_mode_permission_rule_unittest.cc @@ -76,7 +76,7 @@ TEST_F(BatAdsFullScreenModePermissionRuleTest, base::FieldTrialParams params; params["should_only_serve_ads_in_windowed_mode"] = "false"; std::vector enabled_features; - enabled_features.emplace_back(permission_rules::features::kFeature, params); + enabled_features.emplace_back(kPermissionRulesFeature, params); const std::vector disabled_features; diff --git a/components/brave_ads/core/internal/ads/serving/permission_rules/inline_content_ads/inline_content_ads_per_day_permission_rule.cc b/components/brave_ads/core/internal/ads/serving/permission_rules/inline_content_ads/inline_content_ads_per_day_permission_rule.cc index ce96739da858..d58f8167e98c 100644 --- a/components/brave_ads/core/internal/ads/serving/permission_rules/inline_content_ads/inline_content_ads_per_day_permission_rule.cc +++ b/components/brave_ads/core/internal/ads/serving/permission_rules/inline_content_ads/inline_content_ads_per_day_permission_rule.cc @@ -21,8 +21,8 @@ namespace { constexpr base::TimeDelta kTimeConstraint = base::Days(1); bool DoesRespectCap(const std::vector& history) { - return DoesHistoryRespectRollingTimeConstraint( - history, kTimeConstraint, features::GetMaximumAdsPerDay()); + return DoesHistoryRespectRollingTimeConstraint(history, kTimeConstraint, + kMaximumAdsPerDay.Get()); } } // namespace diff --git a/components/brave_ads/core/internal/ads/serving/permission_rules/inline_content_ads/inline_content_ads_per_day_permission_rule_unittest.cc b/components/brave_ads/core/internal/ads/serving/permission_rules/inline_content_ads/inline_content_ads_per_day_permission_rule_unittest.cc index b64833dcf57e..86ce450b4453 100644 --- a/components/brave_ads/core/internal/ads/serving/permission_rules/inline_content_ads/inline_content_ads_per_day_permission_rule_unittest.cc +++ b/components/brave_ads/core/internal/ads/serving/permission_rules/inline_content_ads/inline_content_ads_per_day_permission_rule_unittest.cc @@ -46,8 +46,8 @@ TEST_F(BatAdsInlineContentAdsPerDayPermissionRuleTest, TEST_F(BatAdsInlineContentAdsPerDayPermissionRuleTest, AllowAdIfDoesNotExceedCap) { // Arrange - const int count = features::GetMaximumAdsPerDay() - 1; - RecordAdEvents(AdType::kInlineContentAd, ConfirmationType::kServed, count); + RecordAdEvents(AdType::kInlineContentAd, ConfirmationType::kServed, + /*count*/ kMaximumAdsPerDay.Get() - 1); // Act AdsPerDayPermissionRule permission_rule; @@ -60,8 +60,8 @@ TEST_F(BatAdsInlineContentAdsPerDayPermissionRuleTest, TEST_F(BatAdsInlineContentAdsPerDayPermissionRuleTest, AllowAdIfDoesNotExceedCapAfter1Day) { // Arrange - const int count = features::GetMaximumAdsPerDay(); - RecordAdEvents(AdType::kInlineContentAd, ConfirmationType::kServed, count); + RecordAdEvents(AdType::kInlineContentAd, ConfirmationType::kServed, + /*count*/ kMaximumAdsPerDay.Get()); AdvanceClockBy(base::Days(1)); @@ -76,8 +76,8 @@ TEST_F(BatAdsInlineContentAdsPerDayPermissionRuleTest, TEST_F(BatAdsInlineContentAdsPerDayPermissionRuleTest, DoNotAllowAdIfExceedsCapWithin1Day) { // Arrange - const int count = features::GetMaximumAdsPerDay(); - RecordAdEvents(AdType::kInlineContentAd, ConfirmationType::kServed, count); + RecordAdEvents(AdType::kInlineContentAd, ConfirmationType::kServed, + /*count*/ kMaximumAdsPerDay.Get()); AdvanceClockBy(base::Days(1) - base::Seconds(1)); diff --git a/components/brave_ads/core/internal/ads/serving/permission_rules/inline_content_ads/inline_content_ads_per_hour_permission_rule.cc b/components/brave_ads/core/internal/ads/serving/permission_rules/inline_content_ads/inline_content_ads_per_hour_permission_rule.cc index 2e0591dbb189..fc054cdb4810 100644 --- a/components/brave_ads/core/internal/ads/serving/permission_rules/inline_content_ads/inline_content_ads_per_hour_permission_rule.cc +++ b/components/brave_ads/core/internal/ads/serving/permission_rules/inline_content_ads/inline_content_ads_per_hour_permission_rule.cc @@ -21,8 +21,8 @@ namespace { constexpr base::TimeDelta kTimeConstraint = base::Hours(1); bool DoesRespectCap(const std::vector& history) { - return DoesHistoryRespectRollingTimeConstraint( - history, kTimeConstraint, features::GetMaximumAdsPerHour()); + return DoesHistoryRespectRollingTimeConstraint(history, kTimeConstraint, + kMaximumAdsPerHour.Get()); } } // namespace diff --git a/components/brave_ads/core/internal/ads/serving/permission_rules/inline_content_ads/inline_content_ads_per_hour_permission_rule_unittest.cc b/components/brave_ads/core/internal/ads/serving/permission_rules/inline_content_ads/inline_content_ads_per_hour_permission_rule_unittest.cc index 3535f2d7f6d5..e91fc97cf65c 100644 --- a/components/brave_ads/core/internal/ads/serving/permission_rules/inline_content_ads/inline_content_ads_per_hour_permission_rule_unittest.cc +++ b/components/brave_ads/core/internal/ads/serving/permission_rules/inline_content_ads/inline_content_ads_per_hour_permission_rule_unittest.cc @@ -46,8 +46,8 @@ TEST_F(BatAdsInlineContentAdsPerHourPermissionRuleTest, TEST_F(BatAdsInlineContentAdsPerHourPermissionRuleTest, AllowAdIfDoesNotExceedCap) { // Arrange - const int count = features::GetMaximumAdsPerHour() - 1; - RecordAdEvents(AdType::kInlineContentAd, ConfirmationType::kServed, count); + RecordAdEvents(AdType::kInlineContentAd, ConfirmationType::kServed, + /*count*/ kMaximumAdsPerHour.Get() - 1); // Act AdsPerHourPermissionRule permission_rule; @@ -60,8 +60,8 @@ TEST_F(BatAdsInlineContentAdsPerHourPermissionRuleTest, TEST_F(BatAdsInlineContentAdsPerHourPermissionRuleTest, AllowAdIfDoesNotExceedCapAfter1Hour) { // Arrange - const int count = features::GetMaximumAdsPerHour(); - RecordAdEvents(AdType::kInlineContentAd, ConfirmationType::kServed, count); + RecordAdEvents(AdType::kInlineContentAd, ConfirmationType::kServed, + /*count*/ kMaximumAdsPerHour.Get()); AdvanceClockBy(base::Hours(1)); @@ -76,8 +76,8 @@ TEST_F(BatAdsInlineContentAdsPerHourPermissionRuleTest, TEST_F(BatAdsInlineContentAdsPerHourPermissionRuleTest, DoNotAllowAdIfExceedsCapWithin1Hour) { // Arrange - const int count = features::GetMaximumAdsPerHour(); - RecordAdEvents(AdType::kInlineContentAd, ConfirmationType::kServed, count); + RecordAdEvents(AdType::kInlineContentAd, ConfirmationType::kServed, + /*count*/ kMaximumAdsPerHour.Get()); AdvanceClockBy(base::Hours(1) - base::Seconds(1)); diff --git a/components/brave_ads/core/internal/ads/serving/permission_rules/media_permission_rule.cc b/components/brave_ads/core/internal/ads/serving/permission_rules/media_permission_rule.cc index 20da07572c0b..342712c91198 100644 --- a/components/brave_ads/core/internal/ads/serving/permission_rules/media_permission_rule.cc +++ b/components/brave_ads/core/internal/ads/serving/permission_rules/media_permission_rule.cc @@ -25,7 +25,7 @@ bool DoesRespectCap() { } // namespace bool MediaPermissionRule::ShouldAllow() { - if (!permission_rules::features::ShouldOnlyServeAdsIfMediaIsNotPlaying()) { + if (!kShouldOnlyServeAdsIfMediaIsNotPlaying.Get()) { return true; } diff --git a/components/brave_ads/core/internal/ads/serving/permission_rules/media_permission_rule_unittest.cc b/components/brave_ads/core/internal/ads/serving/permission_rules/media_permission_rule_unittest.cc index 4f8fb5a79e2a..56856dddf05a 100644 --- a/components/brave_ads/core/internal/ads/serving/permission_rules/media_permission_rule_unittest.cc +++ b/components/brave_ads/core/internal/ads/serving/permission_rules/media_permission_rule_unittest.cc @@ -111,7 +111,7 @@ TEST_F(BatAdsMediaPermissionRuleTest, base::FieldTrialParams params; params["should_only_serve_ads_if_media_is_not_playing"] = "false"; std::vector enabled_features; - enabled_features.emplace_back(permission_rules::features::kFeature, params); + enabled_features.emplace_back(kPermissionRulesFeature, params); const std::vector disabled_features; diff --git a/components/brave_ads/core/internal/ads/serving/permission_rules/network_connection_permission_rule.cc b/components/brave_ads/core/internal/ads/serving/permission_rules/network_connection_permission_rule.cc index 11419c610945..71185526c864 100644 --- a/components/brave_ads/core/internal/ads/serving/permission_rules/network_connection_permission_rule.cc +++ b/components/brave_ads/core/internal/ads/serving/permission_rules/network_connection_permission_rule.cc @@ -19,8 +19,7 @@ bool DoesRespectCap() { } // namespace bool NetworkConnectionPermissionRule::ShouldAllow() { - if (!permission_rules::features:: - ShouldOnlyServeAdsWithValidInternetConnection()) { + if (!kShouldOnlyServeAdsWithValidInternetConnection.Get()) { return true; } diff --git a/components/brave_ads/core/internal/ads/serving/permission_rules/network_connection_permission_rule_unittest.cc b/components/brave_ads/core/internal/ads/serving/permission_rules/network_connection_permission_rule_unittest.cc index daaffc1ccad2..0c8f87996fcf 100644 --- a/components/brave_ads/core/internal/ads/serving/permission_rules/network_connection_permission_rule_unittest.cc +++ b/components/brave_ads/core/internal/ads/serving/permission_rules/network_connection_permission_rule_unittest.cc @@ -48,7 +48,7 @@ TEST_F(BatAdsNetworkConnectionPermissionRuleTest, base::FieldTrialParams params; params["should_only_serve_ads_with_valid_internet_connection"] = "false"; std::vector enabled_features; - enabled_features.emplace_back(permission_rules::features::kFeature, params); + enabled_features.emplace_back(kPermissionRulesFeature, params); const std::vector disabled_features; diff --git a/components/brave_ads/core/internal/ads/serving/permission_rules/new_tab_page_ads/new_tab_page_ads_minimum_wait_time_permission_rule.cc b/components/brave_ads/core/internal/ads/serving/permission_rules/new_tab_page_ads/new_tab_page_ads_minimum_wait_time_permission_rule.cc index 5784da204c06..1f80c309ae5b 100644 --- a/components/brave_ads/core/internal/ads/serving/permission_rules/new_tab_page_ads/new_tab_page_ads_minimum_wait_time_permission_rule.cc +++ b/components/brave_ads/core/internal/ads/serving/permission_rules/new_tab_page_ads/new_tab_page_ads_minimum_wait_time_permission_rule.cc @@ -22,7 +22,7 @@ constexpr int kMinimumWaitTimeCap = 1; bool DoesRespectCap(const std::vector& history) { return DoesHistoryRespectRollingTimeConstraint( - history, features::GetMinimumWaitTime(), kMinimumWaitTimeCap); + history, kMinimumWaitTime.Get(), kMinimumWaitTimeCap); } } // namespace diff --git a/components/brave_ads/core/internal/ads/serving/permission_rules/new_tab_page_ads/new_tab_page_ads_minimum_wait_time_permission_rule_unittest.cc b/components/brave_ads/core/internal/ads/serving/permission_rules/new_tab_page_ads/new_tab_page_ads_minimum_wait_time_permission_rule_unittest.cc index b86eedf72bee..f47b17c1c3d1 100644 --- a/components/brave_ads/core/internal/ads/serving/permission_rules/new_tab_page_ads/new_tab_page_ads_minimum_wait_time_permission_rule_unittest.cc +++ b/components/brave_ads/core/internal/ads/serving/permission_rules/new_tab_page_ads/new_tab_page_ads_minimum_wait_time_permission_rule_unittest.cc @@ -33,7 +33,7 @@ TEST_F(BatAdsNewTabPageAdsMinimumWaitTimePermissionRuleTest, // Arrange RecordAdEvent(AdType::kNewTabPageAd, ConfirmationType::kServed); - AdvanceClockBy(features::GetMinimumWaitTime()); + AdvanceClockBy(kMinimumWaitTime.Get()); // Act MinimumWaitTimePermissionRule permission_rule; @@ -48,7 +48,7 @@ TEST_F(BatAdsNewTabPageAdsMinimumWaitTimePermissionRuleTest, // Arrange RecordAdEvent(AdType::kNewTabPageAd, ConfirmationType::kServed); - AdvanceClockBy(features::GetMinimumWaitTime() - base::Seconds(1)); + AdvanceClockBy(kMinimumWaitTime.Get() - base::Seconds(1)); // Act MinimumWaitTimePermissionRule permission_rule; diff --git a/components/brave_ads/core/internal/ads/serving/permission_rules/new_tab_page_ads/new_tab_page_ads_per_day_permission_rule.cc b/components/brave_ads/core/internal/ads/serving/permission_rules/new_tab_page_ads/new_tab_page_ads_per_day_permission_rule.cc index 39eecdb15045..2ef20cae637d 100644 --- a/components/brave_ads/core/internal/ads/serving/permission_rules/new_tab_page_ads/new_tab_page_ads_per_day_permission_rule.cc +++ b/components/brave_ads/core/internal/ads/serving/permission_rules/new_tab_page_ads/new_tab_page_ads_per_day_permission_rule.cc @@ -21,8 +21,8 @@ namespace { constexpr base::TimeDelta kTimeConstraint = base::Days(1); bool DoesRespectCap(const std::vector& history) { - return DoesHistoryRespectRollingTimeConstraint( - history, kTimeConstraint, features::GetMaximumAdsPerDay()); + return DoesHistoryRespectRollingTimeConstraint(history, kTimeConstraint, + kMaximumAdsPerDay.Get()); } } // namespace diff --git a/components/brave_ads/core/internal/ads/serving/permission_rules/new_tab_page_ads/new_tab_page_ads_per_day_permission_rule_unittest.cc b/components/brave_ads/core/internal/ads/serving/permission_rules/new_tab_page_ads/new_tab_page_ads_per_day_permission_rule_unittest.cc index a219e6681320..74ff10a34551 100644 --- a/components/brave_ads/core/internal/ads/serving/permission_rules/new_tab_page_ads/new_tab_page_ads_per_day_permission_rule_unittest.cc +++ b/components/brave_ads/core/internal/ads/serving/permission_rules/new_tab_page_ads/new_tab_page_ads_per_day_permission_rule_unittest.cc @@ -45,8 +45,8 @@ TEST_F(BatAdsNewTabPageAdsPerDayPermissionRuleTest, TEST_F(BatAdsNewTabPageAdsPerDayPermissionRuleTest, AllowAdIfDoesNotExceedCap) { // Arrange - const int count = features::GetMaximumAdsPerDay() - 1; - RecordAdEvents(AdType::kNewTabPageAd, ConfirmationType::kServed, count); + RecordAdEvents(AdType::kNewTabPageAd, ConfirmationType::kServed, + /*count*/ kMaximumAdsPerDay.Get() - 1); // Act AdsPerDayPermissionRule permission_rule; @@ -59,8 +59,8 @@ TEST_F(BatAdsNewTabPageAdsPerDayPermissionRuleTest, AllowAdIfDoesNotExceedCap) { TEST_F(BatAdsNewTabPageAdsPerDayPermissionRuleTest, AllowAdIfDoesNotExceedCapAfter1Day) { // Arrange - const int count = features::GetMaximumAdsPerDay(); - RecordAdEvents(AdType::kNewTabPageAd, ConfirmationType::kServed, count); + RecordAdEvents(AdType::kNewTabPageAd, ConfirmationType::kServed, + /*count*/ kMaximumAdsPerDay.Get()); AdvanceClockBy(base::Days(1)); @@ -75,8 +75,8 @@ TEST_F(BatAdsNewTabPageAdsPerDayPermissionRuleTest, TEST_F(BatAdsNewTabPageAdsPerDayPermissionRuleTest, DoNotAllowAdIfExceedsCapWithin1Day) { // Arrange - const int count = features::GetMaximumAdsPerDay(); - RecordAdEvents(AdType::kNewTabPageAd, ConfirmationType::kServed, count); + RecordAdEvents(AdType::kNewTabPageAd, ConfirmationType::kServed, + /*count*/ kMaximumAdsPerDay.Get()); AdvanceClockBy(base::Days(1) - base::Seconds(1)); diff --git a/components/brave_ads/core/internal/ads/serving/permission_rules/new_tab_page_ads/new_tab_page_ads_per_hour_permission_rule.cc b/components/brave_ads/core/internal/ads/serving/permission_rules/new_tab_page_ads/new_tab_page_ads_per_hour_permission_rule.cc index 3e242d8e1b7e..dfcba2836ee6 100644 --- a/components/brave_ads/core/internal/ads/serving/permission_rules/new_tab_page_ads/new_tab_page_ads_per_hour_permission_rule.cc +++ b/components/brave_ads/core/internal/ads/serving/permission_rules/new_tab_page_ads/new_tab_page_ads_per_hour_permission_rule.cc @@ -21,8 +21,8 @@ namespace { constexpr base::TimeDelta kTimeConstraint = base::Hours(1); bool DoesRespectCap(const std::vector& history) { - return DoesHistoryRespectRollingTimeConstraint( - history, kTimeConstraint, features::GetMaximumAdsPerHour()); + return DoesHistoryRespectRollingTimeConstraint(history, kTimeConstraint, + kMaximumAdsPerHour.Get()); } } // namespace diff --git a/components/brave_ads/core/internal/ads/serving/permission_rules/new_tab_page_ads/new_tab_page_ads_per_hour_permission_rule_unittest.cc b/components/brave_ads/core/internal/ads/serving/permission_rules/new_tab_page_ads/new_tab_page_ads_per_hour_permission_rule_unittest.cc index b873c1140f5b..bded73d23bb0 100644 --- a/components/brave_ads/core/internal/ads/serving/permission_rules/new_tab_page_ads/new_tab_page_ads_per_hour_permission_rule_unittest.cc +++ b/components/brave_ads/core/internal/ads/serving/permission_rules/new_tab_page_ads/new_tab_page_ads_per_hour_permission_rule_unittest.cc @@ -46,8 +46,8 @@ TEST_F(BatAdsNewTabPageAdsPerHourPermissionRuleTest, TEST_F(BatAdsNewTabPageAdsPerHourPermissionRuleTest, AllowAdIfDoesNotExceedCap) { // Arrange - const int count = features::GetMaximumAdsPerHour() - 1; - RecordAdEvents(AdType::kNewTabPageAd, ConfirmationType::kServed, count); + RecordAdEvents(AdType::kNewTabPageAd, ConfirmationType::kServed, + /*count*/ kMaximumAdsPerHour.Get() - 1); // Act AdsPerHourPermissionRule permission_rule; @@ -60,8 +60,8 @@ TEST_F(BatAdsNewTabPageAdsPerHourPermissionRuleTest, TEST_F(BatAdsNewTabPageAdsPerHourPermissionRuleTest, AllowAdIfDoesNotExceedCapAfter1Hour) { // Arrange - const int count = features::GetMaximumAdsPerHour(); - RecordAdEvents(AdType::kNewTabPageAd, ConfirmationType::kServed, count); + RecordAdEvents(AdType::kNewTabPageAd, ConfirmationType::kServed, + /*count*/ kMaximumAdsPerHour.Get()); AdvanceClockBy(base::Hours(1)); @@ -76,8 +76,8 @@ TEST_F(BatAdsNewTabPageAdsPerHourPermissionRuleTest, TEST_F(BatAdsNewTabPageAdsPerHourPermissionRuleTest, DoNotAllowAdIfExceedsCapWithin1Hour) { // Arrange - const int count = features::GetMaximumAdsPerHour(); - RecordAdEvents(AdType::kNewTabPageAd, ConfirmationType::kServed, count); + RecordAdEvents(AdType::kNewTabPageAd, ConfirmationType::kServed, + /*count*/ kMaximumAdsPerHour.Get()); AdvanceClockBy(base::Hours(1) - base::Seconds(1)); diff --git a/components/brave_ads/core/internal/ads/serving/permission_rules/notification_ads/notification_ads_per_day_permission_rule.cc b/components/brave_ads/core/internal/ads/serving/permission_rules/notification_ads/notification_ads_per_day_permission_rule.cc index a9518de1e274..77619ff3b78c 100644 --- a/components/brave_ads/core/internal/ads/serving/permission_rules/notification_ads/notification_ads_per_day_permission_rule.cc +++ b/components/brave_ads/core/internal/ads/serving/permission_rules/notification_ads/notification_ads_per_day_permission_rule.cc @@ -21,8 +21,8 @@ namespace { constexpr base::TimeDelta kTimeConstraint = base::Days(1); bool DoesRespectCap(const std::vector& history) { - return DoesHistoryRespectRollingTimeConstraint( - history, kTimeConstraint, features::GetMaximumAdsPerDay()); + return DoesHistoryRespectRollingTimeConstraint(history, kTimeConstraint, + kMaximumAdsPerDay.Get()); } } // namespace diff --git a/components/brave_ads/core/internal/ads/serving/permission_rules/notification_ads/notification_ads_per_day_permission_rule_unittest.cc b/components/brave_ads/core/internal/ads/serving/permission_rules/notification_ads/notification_ads_per_day_permission_rule_unittest.cc index 45986613a3a5..ffa24a023b68 100644 --- a/components/brave_ads/core/internal/ads/serving/permission_rules/notification_ads/notification_ads_per_day_permission_rule_unittest.cc +++ b/components/brave_ads/core/internal/ads/serving/permission_rules/notification_ads/notification_ads_per_day_permission_rule_unittest.cc @@ -46,8 +46,8 @@ TEST_F(BatAdsNotificationAdsPerDayPermissionRuleTest, TEST_F(BatAdsNotificationAdsPerDayPermissionRuleTest, AllowAdIfDoesNotExceedCap) { // Arrange - const size_t count = features::GetMaximumAdsPerDay() - 1; - RecordAdEvents(AdType::kNotificationAd, ConfirmationType::kServed, count); + RecordAdEvents(AdType::kNotificationAd, ConfirmationType::kServed, + /*count*/ kMaximumAdsPerDay.Get() - 1); // Act AdsPerDayPermissionRule permission_rule; @@ -60,8 +60,8 @@ TEST_F(BatAdsNotificationAdsPerDayPermissionRuleTest, TEST_F(BatAdsNotificationAdsPerDayPermissionRuleTest, AllowAdIfDoesNotExceedCapAfter1Day) { // Arrange - const size_t count = features::GetMaximumAdsPerDay(); - RecordAdEvents(AdType::kNotificationAd, ConfirmationType::kServed, count); + RecordAdEvents(AdType::kNotificationAd, ConfirmationType::kServed, + /*count*/ kMaximumAdsPerDay.Get()); AdvanceClockBy(base::Days(1)); @@ -76,8 +76,8 @@ TEST_F(BatAdsNotificationAdsPerDayPermissionRuleTest, TEST_F(BatAdsNotificationAdsPerDayPermissionRuleTest, DoNotAllowAdIfExceedsCapWithin1Day) { // Arrange - const size_t count = features::GetMaximumAdsPerDay(); - RecordAdEvents(AdType::kNotificationAd, ConfirmationType::kServed, count); + RecordAdEvents(AdType::kNotificationAd, ConfirmationType::kServed, + /*count*/ kMaximumAdsPerDay.Get()); AdvanceClockBy(base::Days(1) - base::Seconds(1)); diff --git a/components/brave_ads/core/internal/ads/serving/permission_rules/permission_rule_features.cc b/components/brave_ads/core/internal/ads/serving/permission_rules/permission_rule_features.cc index b11bfdfdca36..3e9dd76c35ee 100644 --- a/components/brave_ads/core/internal/ads/serving/permission_rules/permission_rule_features.cc +++ b/components/brave_ads/core/internal/ads/serving/permission_rules/permission_rule_features.cc @@ -5,61 +5,14 @@ #include "brave/components/brave_ads/core/internal/ads/serving/permission_rules/permission_rule_features.h" -#include "base/metrics/field_trial_params.h" +namespace brave_ads { -namespace brave_ads::permission_rules::features { +BASE_FEATURE(kPermissionRulesFeature, + "PermissionRules", + base::FEATURE_ENABLED_BY_DEFAULT); -namespace { - -constexpr char kShouldOnlyServeAdsInWindowedModeFieldTrialParamName[] = - "should_only_serve_ads_in_windowed_mode"; -constexpr bool kShouldOnlyServeAdsInWindowedModeDefaultValue = true; - -constexpr char - kShouldOnlyServeAdsWithValidInternetConnectionFieldTrialParamName[] = - "should_only_serve_ads_with_valid_internet_connection"; -constexpr bool kShouldOnlyServeAdsWithValidInternetConnectionDefaultValue = - true; - -constexpr char kShouldOnlyServeAdsIfMediaIsNotPlayingFieldTrialParamName[] = - "should_only_serve_ads_if_media_is_not_playing"; -constexpr bool kShouldOnlyServeAdsIfMediaIsNotPlayingDefaultValue = true; - -constexpr char kShouldOnlyServeAdsIfBrowserIsActiveFieldTrialParamName[] = - "should_only_serve_ads_if_browser_is_active"; -constexpr bool kShouldOnlyServeAdsIfBrowserIsActiveDefaultValue = true; - -} // namespace - -BASE_FEATURE(kFeature, "PermissionRules", base::FEATURE_ENABLED_BY_DEFAULT); - -bool IsEnabled() { - return base::FeatureList::IsEnabled(kFeature); -} - -bool ShouldOnlyServeAdsInWindowedMode() { - return GetFieldTrialParamByFeatureAsBool( - kFeature, kShouldOnlyServeAdsInWindowedModeFieldTrialParamName, - kShouldOnlyServeAdsInWindowedModeDefaultValue); -} - -bool ShouldOnlyServeAdsWithValidInternetConnection() { - return GetFieldTrialParamByFeatureAsBool( - kFeature, - kShouldOnlyServeAdsWithValidInternetConnectionFieldTrialParamName, - kShouldOnlyServeAdsWithValidInternetConnectionDefaultValue); -} - -bool ShouldOnlyServeAdsIfMediaIsNotPlaying() { - return GetFieldTrialParamByFeatureAsBool( - kFeature, kShouldOnlyServeAdsIfMediaIsNotPlayingFieldTrialParamName, - kShouldOnlyServeAdsIfMediaIsNotPlayingDefaultValue); -} - -bool ShouldOnlyServeAdsIfBrowserIsActive() { - return GetFieldTrialParamByFeatureAsBool( - kFeature, kShouldOnlyServeAdsIfBrowserIsActiveFieldTrialParamName, - kShouldOnlyServeAdsIfBrowserIsActiveDefaultValue); +bool IsPermissionRulesEnabled() { + return base::FeatureList::IsEnabled(kPermissionRulesFeature); } -} // namespace brave_ads::permission_rules::features +} // namespace brave_ads diff --git a/components/brave_ads/core/internal/ads/serving/permission_rules/permission_rule_features.h b/components/brave_ads/core/internal/ads/serving/permission_rules/permission_rule_features.h index 5a8c4f4df979..47619d7b620e 100644 --- a/components/brave_ads/core/internal/ads/serving/permission_rules/permission_rule_features.h +++ b/components/brave_ads/core/internal/ads/serving/permission_rules/permission_rule_features.h @@ -7,18 +7,30 @@ #define BRAVE_COMPONENTS_BRAVE_ADS_CORE_INTERNAL_ADS_SERVING_PERMISSION_RULES_PERMISSION_RULE_FEATURES_H_ #include "base/feature_list.h" +#include "base/metrics/field_trial_params.h" -namespace brave_ads::permission_rules::features { +namespace brave_ads { -BASE_DECLARE_FEATURE(kFeature); +BASE_DECLARE_FEATURE(kPermissionRulesFeature); -bool IsEnabled(); +bool IsPermissionRulesEnabled(); -bool ShouldOnlyServeAdsInWindowedMode(); -bool ShouldOnlyServeAdsWithValidInternetConnection(); -bool ShouldOnlyServeAdsIfMediaIsNotPlaying(); -bool ShouldOnlyServeAdsIfBrowserIsActive(); +constexpr base::FeatureParam kShouldOnlyServeAdsInWindowedMode{ + &kPermissionRulesFeature, "should_only_serve_ads_in_windowed_mode", true}; -} // namespace brave_ads::permission_rules::features +constexpr base::FeatureParam + kShouldOnlyServeAdsWithValidInternetConnection{ + &kPermissionRulesFeature, + "should_only_serve_ads_with_valid_internet_connection", true}; + +constexpr base::FeatureParam kShouldOnlyServeAdsIfMediaIsNotPlaying{ + &kPermissionRulesFeature, "should_only_serve_ads_if_media_is_not_playing", + true}; + +constexpr base::FeatureParam kShouldOnlyServeAdsIfBrowserIsActive{ + &kPermissionRulesFeature, "should_only_serve_ads_if_browser_is_active", + true}; + +} // namespace brave_ads #endif // BRAVE_COMPONENTS_BRAVE_ADS_CORE_INTERNAL_ADS_SERVING_PERMISSION_RULES_PERMISSION_RULE_FEATURES_H_ diff --git a/components/brave_ads/core/internal/ads/serving/permission_rules/permission_rule_features_unittest.cc b/components/brave_ads/core/internal/ads/serving/permission_rules/permission_rule_features_unittest.cc index d9197a4a0379..7d567a2f6410 100644 --- a/components/brave_ads/core/internal/ads/serving/permission_rules/permission_rule_features_unittest.cc +++ b/components/brave_ads/core/internal/ads/serving/permission_rules/permission_rule_features_unittest.cc @@ -12,7 +12,7 @@ // npm run test -- brave_unit_tests --filter=BatAds* -namespace brave_ads::permission_rules::features { +namespace brave_ads { TEST(BatAdsPermissionRuleFeaturesTest, IsEnabled) { // Arrange @@ -20,7 +20,7 @@ TEST(BatAdsPermissionRuleFeaturesTest, IsEnabled) { // Act // Assert - EXPECT_TRUE(IsEnabled()); + EXPECT_TRUE(IsPermissionRulesEnabled()); } TEST(BatAdsPermissionRuleFeaturesTest, IsDisabled) { @@ -28,7 +28,7 @@ TEST(BatAdsPermissionRuleFeaturesTest, IsDisabled) { const std::vector enabled_features; std::vector disabled_features; - disabled_features.emplace_back(kFeature); + disabled_features.emplace_back(kPermissionRulesFeature); base::test::ScopedFeatureList scoped_feature_list; scoped_feature_list.InitWithFeaturesAndParameters(enabled_features, @@ -37,7 +37,7 @@ TEST(BatAdsPermissionRuleFeaturesTest, IsDisabled) { // Act // Assert - EXPECT_FALSE(IsEnabled()); + EXPECT_FALSE(IsPermissionRulesEnabled()); } TEST(BatAdsPermissionRuleFeaturesTest, ShouldOnlyServeAdsInWindowedMode) { @@ -45,7 +45,7 @@ TEST(BatAdsPermissionRuleFeaturesTest, ShouldOnlyServeAdsInWindowedMode) { base::FieldTrialParams params; params["should_only_serve_ads_in_windowed_mode"] = "false"; std::vector enabled_features; - enabled_features.emplace_back(kFeature, params); + enabled_features.emplace_back(kPermissionRulesFeature, params); const std::vector disabled_features; @@ -56,7 +56,7 @@ TEST(BatAdsPermissionRuleFeaturesTest, ShouldOnlyServeAdsInWindowedMode) { // Act // Assert - EXPECT_FALSE(ShouldOnlyServeAdsInWindowedMode()); + EXPECT_FALSE(kShouldOnlyServeAdsInWindowedMode.Get()); } TEST(BatAdsPermissionRuleFeaturesTest, @@ -66,7 +66,7 @@ TEST(BatAdsPermissionRuleFeaturesTest, // Act // Assert - EXPECT_TRUE(ShouldOnlyServeAdsInWindowedMode()); + EXPECT_TRUE(kShouldOnlyServeAdsInWindowedMode.Get()); } TEST(BatAdsPermissionRuleFeaturesTest, @@ -75,7 +75,7 @@ TEST(BatAdsPermissionRuleFeaturesTest, const std::vector enabled_features; std::vector disabled_features; - disabled_features.emplace_back(kFeature); + disabled_features.emplace_back(kPermissionRulesFeature); base::test::ScopedFeatureList scoped_feature_list; scoped_feature_list.InitWithFeaturesAndParameters(enabled_features, @@ -84,7 +84,7 @@ TEST(BatAdsPermissionRuleFeaturesTest, // Act // Assert - EXPECT_TRUE(ShouldOnlyServeAdsInWindowedMode()); + EXPECT_TRUE(kShouldOnlyServeAdsInWindowedMode.Get()); } TEST(BatAdsPermissionRuleFeaturesTest, @@ -93,7 +93,7 @@ TEST(BatAdsPermissionRuleFeaturesTest, base::FieldTrialParams params; params["should_only_serve_ads_with_valid_internet_connection"] = "false"; std::vector enabled_features; - enabled_features.emplace_back(kFeature, params); + enabled_features.emplace_back(kPermissionRulesFeature, params); const std::vector disabled_features; @@ -104,7 +104,7 @@ TEST(BatAdsPermissionRuleFeaturesTest, // Act // Assert - EXPECT_FALSE(ShouldOnlyServeAdsWithValidInternetConnection()); + EXPECT_FALSE(kShouldOnlyServeAdsWithValidInternetConnection.Get()); } TEST(BatAdsPermissionRuleFeaturesTest, @@ -114,7 +114,7 @@ TEST(BatAdsPermissionRuleFeaturesTest, // Act // Assert - EXPECT_TRUE(ShouldOnlyServeAdsWithValidInternetConnection()); + EXPECT_TRUE(kShouldOnlyServeAdsWithValidInternetConnection.Get()); } TEST(BatAdsPermissionRuleFeaturesTest, @@ -123,7 +123,7 @@ TEST(BatAdsPermissionRuleFeaturesTest, const std::vector enabled_features; std::vector disabled_features; - disabled_features.emplace_back(kFeature); + disabled_features.emplace_back(kPermissionRulesFeature); base::test::ScopedFeatureList scoped_feature_list; scoped_feature_list.InitWithFeaturesAndParameters(enabled_features, @@ -132,7 +132,7 @@ TEST(BatAdsPermissionRuleFeaturesTest, // Act // Assert - EXPECT_TRUE(ShouldOnlyServeAdsWithValidInternetConnection()); + EXPECT_TRUE(kShouldOnlyServeAdsWithValidInternetConnection.Get()); } TEST(BatAdsPermissionRuleFeaturesTest, ShouldOnlyServeAdsIfMediaIsNotPlaying) { @@ -140,7 +140,7 @@ TEST(BatAdsPermissionRuleFeaturesTest, ShouldOnlyServeAdsIfMediaIsNotPlaying) { base::FieldTrialParams params; params["should_only_serve_ads_if_media_is_not_playing"] = "false"; std::vector enabled_features; - enabled_features.emplace_back(kFeature, params); + enabled_features.emplace_back(kPermissionRulesFeature, params); const std::vector disabled_features; @@ -151,7 +151,7 @@ TEST(BatAdsPermissionRuleFeaturesTest, ShouldOnlyServeAdsIfMediaIsNotPlaying) { // Act // Assert - EXPECT_FALSE(ShouldOnlyServeAdsIfMediaIsNotPlaying()); + EXPECT_FALSE(kShouldOnlyServeAdsIfMediaIsNotPlaying.Get()); } TEST(BatAdsPermissionRuleFeaturesTest, @@ -161,7 +161,7 @@ TEST(BatAdsPermissionRuleFeaturesTest, // Act // Assert - EXPECT_TRUE(ShouldOnlyServeAdsIfMediaIsNotPlaying()); + EXPECT_TRUE(kShouldOnlyServeAdsIfMediaIsNotPlaying.Get()); } TEST(BatAdsPermissionRuleFeaturesTest, @@ -170,7 +170,7 @@ TEST(BatAdsPermissionRuleFeaturesTest, const std::vector enabled_features; std::vector disabled_features; - disabled_features.emplace_back(kFeature); + disabled_features.emplace_back(kPermissionRulesFeature); base::test::ScopedFeatureList scoped_feature_list; scoped_feature_list.InitWithFeaturesAndParameters(enabled_features, @@ -179,7 +179,7 @@ TEST(BatAdsPermissionRuleFeaturesTest, // Act // Assert - EXPECT_TRUE(ShouldOnlyServeAdsIfMediaIsNotPlaying()); + EXPECT_TRUE(kShouldOnlyServeAdsIfMediaIsNotPlaying.Get()); } TEST(BatAdsPermissionRuleFeaturesTest, ShouldOnlyServeAdsIfBrowserIsActive) { @@ -187,7 +187,7 @@ TEST(BatAdsPermissionRuleFeaturesTest, ShouldOnlyServeAdsIfBrowserIsActive) { base::FieldTrialParams params; params["should_only_serve_ads_if_browser_is_active"] = "false"; std::vector enabled_features; - enabled_features.emplace_back(kFeature, params); + enabled_features.emplace_back(kPermissionRulesFeature, params); const std::vector disabled_features; @@ -198,7 +198,7 @@ TEST(BatAdsPermissionRuleFeaturesTest, ShouldOnlyServeAdsIfBrowserIsActive) { // Act // Assert - EXPECT_FALSE(ShouldOnlyServeAdsIfBrowserIsActive()); + EXPECT_FALSE(kShouldOnlyServeAdsIfBrowserIsActive.Get()); } TEST(BatAdsPermissionRuleFeaturesTest, @@ -208,7 +208,7 @@ TEST(BatAdsPermissionRuleFeaturesTest, // Act // Assert - EXPECT_TRUE(ShouldOnlyServeAdsIfBrowserIsActive()); + EXPECT_TRUE(kShouldOnlyServeAdsIfBrowserIsActive.Get()); } TEST(BatAdsPermissionRuleFeaturesTest, @@ -217,7 +217,7 @@ TEST(BatAdsPermissionRuleFeaturesTest, const std::vector enabled_features; std::vector disabled_features; - disabled_features.emplace_back(kFeature); + disabled_features.emplace_back(kPermissionRulesFeature); base::test::ScopedFeatureList scoped_feature_list; scoped_feature_list.InitWithFeaturesAndParameters(enabled_features, @@ -226,7 +226,7 @@ TEST(BatAdsPermissionRuleFeaturesTest, // Act // Assert - EXPECT_TRUE(ShouldOnlyServeAdsIfBrowserIsActive()); + EXPECT_TRUE(kShouldOnlyServeAdsIfBrowserIsActive.Get()); } -} // namespace brave_ads::permission_rules::features +} // namespace brave_ads diff --git a/components/brave_ads/core/internal/ads/serving/permission_rules/promoted_content_ads/promoted_content_ads_per_day_permission_rule.cc b/components/brave_ads/core/internal/ads/serving/permission_rules/promoted_content_ads/promoted_content_ads_per_day_permission_rule.cc index 5e52f9d97b57..6fe24b956b84 100644 --- a/components/brave_ads/core/internal/ads/serving/permission_rules/promoted_content_ads/promoted_content_ads_per_day_permission_rule.cc +++ b/components/brave_ads/core/internal/ads/serving/permission_rules/promoted_content_ads/promoted_content_ads_per_day_permission_rule.cc @@ -21,8 +21,8 @@ namespace { constexpr base::TimeDelta kTimeConstraint = base::Days(1); bool DoesRespectCap(const std::vector& history) { - return DoesHistoryRespectRollingTimeConstraint( - history, kTimeConstraint, features::GetMaximumAdsPerDay()); + return DoesHistoryRespectRollingTimeConstraint(history, kTimeConstraint, + kMaximumAdsPerDay.Get()); } } // namespace diff --git a/components/brave_ads/core/internal/ads/serving/permission_rules/promoted_content_ads/promoted_content_ads_per_day_permission_rule_unittest.cc b/components/brave_ads/core/internal/ads/serving/permission_rules/promoted_content_ads/promoted_content_ads_per_day_permission_rule_unittest.cc index 5ed451e501e4..8ad83385dbbd 100644 --- a/components/brave_ads/core/internal/ads/serving/permission_rules/promoted_content_ads/promoted_content_ads_per_day_permission_rule_unittest.cc +++ b/components/brave_ads/core/internal/ads/serving/permission_rules/promoted_content_ads/promoted_content_ads_per_day_permission_rule_unittest.cc @@ -46,8 +46,8 @@ TEST_F(BatAdsPromotedContentAdsPerDayPermissionRuleTest, TEST_F(BatAdsPromotedContentAdsPerDayPermissionRuleTest, AllowAdIfDoesNotExceedCap) { // Arrange - const int count = features::GetMaximumAdsPerDay() - 1; - RecordAdEvents(AdType::kPromotedContentAd, ConfirmationType::kServed, count); + RecordAdEvents(AdType::kPromotedContentAd, ConfirmationType::kServed, + /*count*/ kMaximumAdsPerDay.Get() - 1); // Act AdsPerDayPermissionRule permission_rule; @@ -60,8 +60,8 @@ TEST_F(BatAdsPromotedContentAdsPerDayPermissionRuleTest, TEST_F(BatAdsPromotedContentAdsPerDayPermissionRuleTest, AllowAdIfDoesNotExceedCapAfter1Day) { // Arrange - const int count = features::GetMaximumAdsPerDay(); - RecordAdEvents(AdType::kPromotedContentAd, ConfirmationType::kServed, count); + RecordAdEvents(AdType::kPromotedContentAd, ConfirmationType::kServed, + /*count*/ kMaximumAdsPerDay.Get()); AdvanceClockBy(base::Days(1)); @@ -76,8 +76,8 @@ TEST_F(BatAdsPromotedContentAdsPerDayPermissionRuleTest, TEST_F(BatAdsPromotedContentAdsPerDayPermissionRuleTest, DoNotAllowAdIfExceedsCapWithin1Day) { // Arrange - const int count = features::GetMaximumAdsPerDay(); - RecordAdEvents(AdType::kPromotedContentAd, ConfirmationType::kServed, count); + RecordAdEvents(AdType::kPromotedContentAd, ConfirmationType::kServed, + /*count*/ kMaximumAdsPerDay.Get()); AdvanceClockBy(base::Days(1) - base::Seconds(1)); diff --git a/components/brave_ads/core/internal/ads/serving/permission_rules/promoted_content_ads/promoted_content_ads_per_hour_permission_rule.cc b/components/brave_ads/core/internal/ads/serving/permission_rules/promoted_content_ads/promoted_content_ads_per_hour_permission_rule.cc index 82fc7d1e3225..1108ed272df0 100644 --- a/components/brave_ads/core/internal/ads/serving/permission_rules/promoted_content_ads/promoted_content_ads_per_hour_permission_rule.cc +++ b/components/brave_ads/core/internal/ads/serving/permission_rules/promoted_content_ads/promoted_content_ads_per_hour_permission_rule.cc @@ -21,8 +21,8 @@ namespace { constexpr base::TimeDelta kTimeConstraint = base::Hours(1); bool DoesRespectCap(const std::vector& history) { - return DoesHistoryRespectRollingTimeConstraint( - history, kTimeConstraint, features::GetMaximumAdsPerHour()); + return DoesHistoryRespectRollingTimeConstraint(history, kTimeConstraint, + kMaximumAdsPerHour.Get()); } } // namespace diff --git a/components/brave_ads/core/internal/ads/serving/permission_rules/promoted_content_ads/promoted_content_ads_per_hour_permission_rule_unittest.cc b/components/brave_ads/core/internal/ads/serving/permission_rules/promoted_content_ads/promoted_content_ads_per_hour_permission_rule_unittest.cc index 877180fe40a2..5756d04c32f7 100644 --- a/components/brave_ads/core/internal/ads/serving/permission_rules/promoted_content_ads/promoted_content_ads_per_hour_permission_rule_unittest.cc +++ b/components/brave_ads/core/internal/ads/serving/permission_rules/promoted_content_ads/promoted_content_ads_per_hour_permission_rule_unittest.cc @@ -46,8 +46,8 @@ TEST_F(BatAdsPromotedContentAdsPerHourPermissionRuleTest, TEST_F(BatAdsPromotedContentAdsPerHourPermissionRuleTest, AllowAdIfDoesNotExceedCap) { // Arrange - const int count = features::GetMaximumAdsPerHour() - 1; - RecordAdEvents(AdType::kPromotedContentAd, ConfirmationType::kServed, count); + RecordAdEvents(AdType::kPromotedContentAd, ConfirmationType::kServed, + /*count*/ kMaximumAdsPerHour.Get() - 1); // Act AdsPerHourPermissionRule permission_rule; @@ -60,8 +60,8 @@ TEST_F(BatAdsPromotedContentAdsPerHourPermissionRuleTest, TEST_F(BatAdsPromotedContentAdsPerHourPermissionRuleTest, AllowAdIfDoesNotExceedCapAfter1Hour) { // Arrange - const int count = features::GetMaximumAdsPerHour(); - RecordAdEvents(AdType::kPromotedContentAd, ConfirmationType::kServed, count); + RecordAdEvents(AdType::kPromotedContentAd, ConfirmationType::kServed, + /*count*/ kMaximumAdsPerHour.Get()); AdvanceClockBy(base::Hours(1)); @@ -76,8 +76,8 @@ TEST_F(BatAdsPromotedContentAdsPerHourPermissionRuleTest, TEST_F(BatAdsPromotedContentAdsPerHourPermissionRuleTest, DoNotAllowAdIfExceedsCapWithin1Hour) { // Arrange - const int count = features::GetMaximumAdsPerHour(); - RecordAdEvents(AdType::kPromotedContentAd, ConfirmationType::kServed, count); + RecordAdEvents(AdType::kPromotedContentAd, ConfirmationType::kServed, + /*count*/ kMaximumAdsPerHour.Get()); AdvanceClockBy(base::Hours(1) - base::Seconds(1)); diff --git a/components/brave_ads/core/internal/ads/serving/permission_rules/search_result_ads/search_result_ads_per_day_permission_rule.cc b/components/brave_ads/core/internal/ads/serving/permission_rules/search_result_ads/search_result_ads_per_day_permission_rule.cc index e4833525083e..be87ee74e8cf 100644 --- a/components/brave_ads/core/internal/ads/serving/permission_rules/search_result_ads/search_result_ads_per_day_permission_rule.cc +++ b/components/brave_ads/core/internal/ads/serving/permission_rules/search_result_ads/search_result_ads_per_day_permission_rule.cc @@ -21,8 +21,8 @@ namespace { constexpr base::TimeDelta kTimeConstraint = base::Days(1); bool DoesRespectCap(const std::vector& history) { - return DoesHistoryRespectRollingTimeConstraint( - history, kTimeConstraint, features::GetMaximumAdsPerDay()); + return DoesHistoryRespectRollingTimeConstraint(history, kTimeConstraint, + kMaximumAdsPerDay.Get()); } } // namespace diff --git a/components/brave_ads/core/internal/ads/serving/permission_rules/search_result_ads/search_result_ads_per_day_permission_rule_unittest.cc b/components/brave_ads/core/internal/ads/serving/permission_rules/search_result_ads/search_result_ads_per_day_permission_rule_unittest.cc index d2991d555312..cdda215050b4 100644 --- a/components/brave_ads/core/internal/ads/serving/permission_rules/search_result_ads/search_result_ads_per_day_permission_rule_unittest.cc +++ b/components/brave_ads/core/internal/ads/serving/permission_rules/search_result_ads/search_result_ads_per_day_permission_rule_unittest.cc @@ -46,8 +46,8 @@ TEST_F(BatAdsSearchResultAdsPerDayPermissionRuleTest, TEST_F(BatAdsSearchResultAdsPerDayPermissionRuleTest, AllowAdIfDoesNotExceedCap) { // Arrange - const int count = features::GetMaximumAdsPerDay() - 1; - RecordAdEvents(AdType::kSearchResultAd, ConfirmationType::kServed, count); + RecordAdEvents(AdType::kSearchResultAd, ConfirmationType::kServed, + /*count*/ kMaximumAdsPerDay.Get() - 1); // Act AdsPerDayPermissionRule permission_rule; @@ -60,8 +60,8 @@ TEST_F(BatAdsSearchResultAdsPerDayPermissionRuleTest, TEST_F(BatAdsSearchResultAdsPerDayPermissionRuleTest, AllowAdIfDoesNotExceedCapAfter1Day) { // Arrange - const int count = features::GetMaximumAdsPerDay(); - RecordAdEvents(AdType::kSearchResultAd, ConfirmationType::kServed, count); + RecordAdEvents(AdType::kSearchResultAd, ConfirmationType::kServed, + /*count*/ kMaximumAdsPerDay.Get()); AdvanceClockBy(base::Days(1)); @@ -76,8 +76,8 @@ TEST_F(BatAdsSearchResultAdsPerDayPermissionRuleTest, TEST_F(BatAdsSearchResultAdsPerDayPermissionRuleTest, DoNotAllowAdIfExceedsCapWithin1Day) { // Arrange - const int count = features::GetMaximumAdsPerDay(); - RecordAdEvents(AdType::kSearchResultAd, ConfirmationType::kServed, count); + RecordAdEvents(AdType::kSearchResultAd, ConfirmationType::kServed, + /*count*/ kMaximumAdsPerDay.Get()); AdvanceClockBy(base::Days(1) - base::Seconds(1)); diff --git a/components/brave_ads/core/internal/ads/serving/permission_rules/search_result_ads/search_result_ads_per_hour_permission_rule.cc b/components/brave_ads/core/internal/ads/serving/permission_rules/search_result_ads/search_result_ads_per_hour_permission_rule.cc index 47e509436791..bf8524b1914d 100644 --- a/components/brave_ads/core/internal/ads/serving/permission_rules/search_result_ads/search_result_ads_per_hour_permission_rule.cc +++ b/components/brave_ads/core/internal/ads/serving/permission_rules/search_result_ads/search_result_ads_per_hour_permission_rule.cc @@ -21,8 +21,8 @@ namespace { constexpr base::TimeDelta kTimeConstraint = base::Hours(1); bool DoesRespectCap(const std::vector& history) { - return DoesHistoryRespectRollingTimeConstraint( - history, kTimeConstraint, features::GetMaximumAdsPerHour()); + return DoesHistoryRespectRollingTimeConstraint(history, kTimeConstraint, + kMaximumAdsPerHour.Get()); } } // namespace diff --git a/components/brave_ads/core/internal/ads/serving/permission_rules/search_result_ads/search_result_ads_per_hour_permission_rule_unittest.cc b/components/brave_ads/core/internal/ads/serving/permission_rules/search_result_ads/search_result_ads_per_hour_permission_rule_unittest.cc index a22c0cdee87c..a1c7838d80f3 100644 --- a/components/brave_ads/core/internal/ads/serving/permission_rules/search_result_ads/search_result_ads_per_hour_permission_rule_unittest.cc +++ b/components/brave_ads/core/internal/ads/serving/permission_rules/search_result_ads/search_result_ads_per_hour_permission_rule_unittest.cc @@ -46,8 +46,8 @@ TEST_F(BatAdsSearchResultAdsPerHourPermissionRuleTest, TEST_F(BatAdsSearchResultAdsPerHourPermissionRuleTest, AllowAdIfDoesNotExceedCap) { // Arrange - const int count = features::GetMaximumAdsPerHour() - 1; - RecordAdEvents(AdType::kSearchResultAd, ConfirmationType::kServed, count); + RecordAdEvents(AdType::kSearchResultAd, ConfirmationType::kServed, + /*count*/ kMaximumAdsPerHour.Get() - 1); // Act AdsPerHourPermissionRule permission_rule; @@ -60,8 +60,8 @@ TEST_F(BatAdsSearchResultAdsPerHourPermissionRuleTest, TEST_F(BatAdsSearchResultAdsPerHourPermissionRuleTest, AllowAdIfDoesNotExceedCapAfter1Hour) { // Arrange - const int count = features::GetMaximumAdsPerHour(); - RecordAdEvents(AdType::kSearchResultAd, ConfirmationType::kServed, count); + RecordAdEvents(AdType::kSearchResultAd, ConfirmationType::kServed, + /*count*/ kMaximumAdsPerHour.Get()); AdvanceClockBy(base::Hours(1)); @@ -76,8 +76,8 @@ TEST_F(BatAdsSearchResultAdsPerHourPermissionRuleTest, TEST_F(BatAdsSearchResultAdsPerHourPermissionRuleTest, DoNotAllowAdIfExceedsCapWithin1Hour) { // Arrange - const int count = features::GetMaximumAdsPerHour(); - RecordAdEvents(AdType::kSearchResultAd, ConfirmationType::kServed, count); + RecordAdEvents(AdType::kSearchResultAd, ConfirmationType::kServed, + /*count*/ kMaximumAdsPerHour.Get()); AdvanceClockBy(base::Hours(1) - base::Seconds(1)); diff --git a/components/brave_ads/core/internal/ads/serving/permission_rules/user_activity_permission_rule_unittest.cc b/components/brave_ads/core/internal/ads/serving/permission_rules/user_activity_permission_rule_unittest.cc index 71262aa2bbdb..6b56ae62b318 100644 --- a/components/brave_ads/core/internal/ads/serving/permission_rules/user_activity_permission_rule_unittest.cc +++ b/components/brave_ads/core/internal/ads/serving/permission_rules/user_activity_permission_rule_unittest.cc @@ -25,7 +25,7 @@ class BatAdsUserActivityPermissionRuleTest : public UnitTestBase { params["time_window"] = "1h"; params["threshold"] = "2.0"; std::vector enabled_features; - enabled_features.emplace_back(user_activity::features::kFeature, params); + enabled_features.emplace_back(kUserActivityFeature, params); const std::vector disabled_features; diff --git a/components/brave_ads/core/internal/ads/serving/targeting/behavioral/multi_armed_bandits/epsilon_greedy_bandit_features.cc b/components/brave_ads/core/internal/ads/serving/targeting/behavioral/multi_armed_bandits/epsilon_greedy_bandit_features.cc index 1a765272f087..127ac4f138f0 100644 --- a/components/brave_ads/core/internal/ads/serving/targeting/behavioral/multi_armed_bandits/epsilon_greedy_bandit_features.cc +++ b/components/brave_ads/core/internal/ads/serving/targeting/behavioral/multi_armed_bandits/epsilon_greedy_bandit_features.cc @@ -5,29 +5,14 @@ #include "brave/components/brave_ads/core/internal/ads/serving/targeting/behavioral/multi_armed_bandits/epsilon_greedy_bandit_features.h" -#include "base/metrics/field_trial_params.h" +namespace brave_ads::targeting { -namespace brave_ads::targeting::features { - -namespace { - -constexpr char kEpsilonValueFieldTrialParamName[] = "epsilon_value"; -constexpr double kEpsilonValueDefaultValue = 0.25; - -} // namespace - -BASE_FEATURE(kEpsilonGreedyBandit, +BASE_FEATURE(kEpsilonGreedyBanditFeatures, "EpsilonGreedyBandit", base::FEATURE_DISABLED_BY_DEFAULT); bool IsEpsilonGreedyBanditEnabled() { - return base::FeatureList::IsEnabled(kEpsilonGreedyBandit); -} - -double GetEpsilonGreedyBanditEpsilonValue() { - return GetFieldTrialParamByFeatureAsDouble(kEpsilonGreedyBandit, - kEpsilonValueFieldTrialParamName, - kEpsilonValueDefaultValue); + return base::FeatureList::IsEnabled(kEpsilonGreedyBanditFeatures); } -} // namespace brave_ads::targeting::features +} // namespace brave_ads::targeting diff --git a/components/brave_ads/core/internal/ads/serving/targeting/behavioral/multi_armed_bandits/epsilon_greedy_bandit_features.h b/components/brave_ads/core/internal/ads/serving/targeting/behavioral/multi_armed_bandits/epsilon_greedy_bandit_features.h index ce20e41824be..1f907c366f4f 100644 --- a/components/brave_ads/core/internal/ads/serving/targeting/behavioral/multi_armed_bandits/epsilon_greedy_bandit_features.h +++ b/components/brave_ads/core/internal/ads/serving/targeting/behavioral/multi_armed_bandits/epsilon_greedy_bandit_features.h @@ -7,15 +7,17 @@ #define BRAVE_COMPONENTS_BRAVE_ADS_CORE_INTERNAL_ADS_SERVING_TARGETING_BEHAVIORAL_MULTI_ARMED_BANDITS_EPSILON_GREEDY_BANDIT_FEATURES_H_ #include "base/feature_list.h" +#include "base/metrics/field_trial_params.h" -namespace brave_ads::targeting::features { +namespace brave_ads::targeting { -BASE_DECLARE_FEATURE(kEpsilonGreedyBandit); +BASE_DECLARE_FEATURE(kEpsilonGreedyBanditFeatures); bool IsEpsilonGreedyBanditEnabled(); -double GetEpsilonGreedyBanditEpsilonValue(); +constexpr base::FeatureParam kEpsilonGreedyBanditEpsilonValue{ + &kEpsilonGreedyBanditFeatures, "epsilon_value", 0.25}; -} // namespace brave_ads::targeting::features +} // namespace brave_ads::targeting #endif // BRAVE_COMPONENTS_BRAVE_ADS_CORE_INTERNAL_ADS_SERVING_TARGETING_BEHAVIORAL_MULTI_ARMED_BANDITS_EPSILON_GREEDY_BANDIT_FEATURES_H_ diff --git a/components/brave_ads/core/internal/ads/serving/targeting/behavioral/multi_armed_bandits/epsilon_greedy_bandit_features_unittest.cc b/components/brave_ads/core/internal/ads/serving/targeting/behavioral/multi_armed_bandits/epsilon_greedy_bandit_features_unittest.cc index bea08dcfcb5b..5db5af488be7 100644 --- a/components/brave_ads/core/internal/ads/serving/targeting/behavioral/multi_armed_bandits/epsilon_greedy_bandit_features_unittest.cc +++ b/components/brave_ads/core/internal/ads/serving/targeting/behavioral/multi_armed_bandits/epsilon_greedy_bandit_features_unittest.cc @@ -12,13 +12,13 @@ // npm run test -- brave_unit_tests --filter=BatAds* -namespace brave_ads::targeting::features { +namespace brave_ads::targeting { -TEST(BatAdsEpsilonGreedyBanditFeaturesTest, IsEpsilonGreedyBanditEnabled) { +TEST(BatAdsEpsilonGreedyBanditFeaturesTest, IsEnabled) { // Arrange base::FieldTrialParams params; std::vector enabled_features; - enabled_features.emplace_back(kEpsilonGreedyBandit, params); + enabled_features.emplace_back(kEpsilonGreedyBanditFeatures, params); const std::vector disabled_features; @@ -32,7 +32,7 @@ TEST(BatAdsEpsilonGreedyBanditFeaturesTest, IsEpsilonGreedyBanditEnabled) { EXPECT_TRUE(IsEpsilonGreedyBanditEnabled()); } -TEST(BatAdsEpsilonGreedyBanditFeaturesTest, IsEpsilonGreedyBanditDisabled) { +TEST(BatAdsEpsilonGreedyBanditFeaturesTest, IsDisabled) { // Arrange // Act @@ -47,7 +47,7 @@ TEST(BatAdsEpsilonGreedyBanditFeaturesTest, base::FieldTrialParams params; params["epsilon_value"] = "0.33"; std::vector enabled_features; - enabled_features.emplace_back(kEpsilonGreedyBandit, params); + enabled_features.emplace_back(kEpsilonGreedyBanditFeatures, params); const std::vector disabled_features; @@ -58,7 +58,7 @@ TEST(BatAdsEpsilonGreedyBanditFeaturesTest, // Act // Assert - EXPECT_EQ(0.33, GetEpsilonGreedyBanditEpsilonValue()); + EXPECT_EQ(0.33, kEpsilonGreedyBanditEpsilonValue.Get()); } TEST(BatAdsEpsilonGreedyBanditFeaturesTest, @@ -68,7 +68,7 @@ TEST(BatAdsEpsilonGreedyBanditFeaturesTest, // Act // Assert - EXPECT_EQ(0.25, GetEpsilonGreedyBanditEpsilonValue()); + EXPECT_EQ(0.25, kEpsilonGreedyBanditEpsilonValue.Get()); } TEST(BatAdsEpsilonGreedyBanditFeaturesTest, @@ -77,7 +77,7 @@ TEST(BatAdsEpsilonGreedyBanditFeaturesTest, const std::vector enabled_features; std::vector disabled_features; - disabled_features.emplace_back(kEpsilonGreedyBandit); + disabled_features.emplace_back(kEpsilonGreedyBanditFeatures); base::test::ScopedFeatureList scoped_feature_list; scoped_feature_list.InitWithFeaturesAndParameters(enabled_features, @@ -86,7 +86,7 @@ TEST(BatAdsEpsilonGreedyBanditFeaturesTest, // Act // Assert - EXPECT_EQ(0.25, GetEpsilonGreedyBanditEpsilonValue()); + EXPECT_EQ(0.25, kEpsilonGreedyBanditEpsilonValue.Get()); } -} // namespace brave_ads::targeting::features +} // namespace brave_ads::targeting diff --git a/components/brave_ads/core/internal/ads/serving/targeting/behavioral/multi_armed_bandits/epsilon_greedy_bandit_model.cc b/components/brave_ads/core/internal/ads/serving/targeting/behavioral/multi_armed_bandits/epsilon_greedy_bandit_model.cc index 4eb29b072e6e..7a216eae4f6b 100644 --- a/components/brave_ads/core/internal/ads/serving/targeting/behavioral/multi_armed_bandits/epsilon_greedy_bandit_model.cc +++ b/components/brave_ads/core/internal/ads/serving/targeting/behavioral/multi_armed_bandits/epsilon_greedy_bandit_model.cc @@ -161,7 +161,7 @@ SegmentList GetSegmentsForArms(const EpsilonGreedyBanditArmMap& arms) { const EpsilonGreedyBanditArmMap eligible_arms = GetEligibleArms(arms); - if (base::RandDouble() < features::GetEpsilonGreedyBanditEpsilonValue()) { + if (base::RandDouble() < kEpsilonGreedyBanditEpsilonValue.Get()) { segments = ExploreSegments(eligible_arms); } else { segments = ExploitSegments(eligible_arms); diff --git a/components/brave_ads/core/internal/ads/serving/targeting/behavioral/multi_armed_bandits/epsilon_greedy_bandit_model_unittest.cc b/components/brave_ads/core/internal/ads/serving/targeting/behavioral/multi_armed_bandits/epsilon_greedy_bandit_model_unittest.cc index e19827a5230a..2cb45d7c31d8 100644 --- a/components/brave_ads/core/internal/ads/serving/targeting/behavioral/multi_armed_bandits/epsilon_greedy_bandit_model_unittest.cc +++ b/components/brave_ads/core/internal/ads/serving/targeting/behavioral/multi_armed_bandits/epsilon_greedy_bandit_model_unittest.cc @@ -52,7 +52,7 @@ TEST_F(BatAdsEpsilonGreedyBanditModelTest, EligableSegmentsAreEmpty) { // Arrange base::test::ScopedFeatureList scoped_feature_list; scoped_feature_list.InitAndEnableFeatureWithParameters( - features::kEpsilonGreedyBandit, {{"epsilon_value", "0.5"}}); + kEpsilonGreedyBanditFeatures, {{"epsilon_value", "0.5"}}); const processor::EpsilonGreedyBandit processor; @@ -70,7 +70,7 @@ TEST_F(BatAdsEpsilonGreedyBanditModelTest, GetSegmentsIfNeverProcessed) { base::test::ScopedFeatureList scoped_feature_list; scoped_feature_list.InitAndEnableFeatureWithParameters( - features::kEpsilonGreedyBandit, {{"epsilon_value", "0.25"}}); + kEpsilonGreedyBanditFeatures, {{"epsilon_value", "0.25"}}); const processor::EpsilonGreedyBandit processor; @@ -88,7 +88,7 @@ TEST_F(BatAdsEpsilonGreedyBanditModelTest, GetSegmentsForExploration) { base::test::ScopedFeatureList scoped_feature_list; scoped_feature_list.InitAndEnableFeatureWithParameters( - features::kEpsilonGreedyBandit, {{"epsilon_value", "1.0"}}); + kEpsilonGreedyBanditFeatures, {{"epsilon_value", "1.0"}}); const processor::EpsilonGreedyBandit processor; @@ -114,7 +114,7 @@ TEST_F(BatAdsEpsilonGreedyBanditModelTest, GetSegmentsForExploitation) { base::test::ScopedFeatureList scoped_feature_list; scoped_feature_list.InitAndEnableFeatureWithParameters( - features::kEpsilonGreedyBandit, {{"epsilon_value", "0.0"}}); + kEpsilonGreedyBanditFeatures, {{"epsilon_value", "0.0"}}); // Set all values to zero by choosing a zero-reward action due to // optimistic initial values for arms @@ -168,7 +168,7 @@ TEST_F(BatAdsEpsilonGreedyBanditModelTest, GetSegmentsForEligibleSegments) { base::test::ScopedFeatureList scoped_feature_list; scoped_feature_list.InitAndEnableFeatureWithParameters( - features::kEpsilonGreedyBandit, {{"epsilon_value", "0.0"}}); + kEpsilonGreedyBanditFeatures, {{"epsilon_value", "0.0"}}); // Set all values to zero by choosing a zero-reward action due to // optimistic initial values for arms diff --git a/components/brave_ads/core/internal/ads/serving/targeting/behavioral/purchase_intent/purchase_intent_features.cc b/components/brave_ads/core/internal/ads/serving/targeting/behavioral/purchase_intent/purchase_intent_features.cc index 02256c732087..17d5fcbba717 100644 --- a/components/brave_ads/core/internal/ads/serving/targeting/behavioral/purchase_intent/purchase_intent_features.cc +++ b/components/brave_ads/core/internal/ads/serving/targeting/behavioral/purchase_intent/purchase_intent_features.cc @@ -5,47 +5,14 @@ #include "brave/components/brave_ads/core/internal/ads/serving/targeting/behavioral/purchase_intent/purchase_intent_features.h" -#include "base/metrics/field_trial_params.h" -#include "base/time/time.h" -#include "brave/components/brave_ads/core/internal/common/metrics/field_trial_params_util.h" +namespace brave_ads::targeting { -namespace brave_ads::targeting::features { - -namespace { - -constexpr char kResourceVersionFieldTrialParamName[] = "resource_version"; -constexpr int kResourceVersionDefaultValue = 1; - -constexpr char kThresholdFieldTrialParamName[] = "threshold"; -constexpr uint16_t kThresholdDefaultValue = 3; - -constexpr char kTimeWindowFieldTrialParamName[] = "time_window"; -constexpr base::TimeDelta kTimeWindowDefaultValue = base::Days(7); - -} // namespace - -BASE_FEATURE(kPurchaseIntent, +BASE_FEATURE(kPurchaseIntentFeature, "PurchaseIntent", base::FEATURE_ENABLED_BY_DEFAULT); bool IsPurchaseIntentEnabled() { - return base::FeatureList::IsEnabled(kPurchaseIntent); -} - -int GetPurchaseIntentResourceVersion() { - return GetFieldTrialParamByFeatureAsInt(kPurchaseIntent, - kResourceVersionFieldTrialParamName, - kResourceVersionDefaultValue); -} - -uint16_t GetPurchaseIntentThreshold() { - return GetFieldTrialParamByFeatureAsInt( - kPurchaseIntent, kThresholdFieldTrialParamName, kThresholdDefaultValue); -} - -base::TimeDelta GetPurchaseIntentTimeWindow() { - return GetFieldTrialParamByFeatureAsTimeDelta( - kPurchaseIntent, kTimeWindowFieldTrialParamName, kTimeWindowDefaultValue); + return base::FeatureList::IsEnabled(kPurchaseIntentFeature); } -} // namespace brave_ads::targeting::features +} // namespace brave_ads::targeting diff --git a/components/brave_ads/core/internal/ads/serving/targeting/behavioral/purchase_intent/purchase_intent_features.h b/components/brave_ads/core/internal/ads/serving/targeting/behavioral/purchase_intent/purchase_intent_features.h index 8022abf7c5f4..d7dfe2f08534 100644 --- a/components/brave_ads/core/internal/ads/serving/targeting/behavioral/purchase_intent/purchase_intent_features.h +++ b/components/brave_ads/core/internal/ads/serving/targeting/behavioral/purchase_intent/purchase_intent_features.h @@ -6,23 +6,28 @@ #ifndef BRAVE_COMPONENTS_BRAVE_ADS_CORE_INTERNAL_ADS_SERVING_TARGETING_BEHAVIORAL_PURCHASE_INTENT_PURCHASE_INTENT_FEATURES_H_ #define BRAVE_COMPONENTS_BRAVE_ADS_CORE_INTERNAL_ADS_SERVING_TARGETING_BEHAVIORAL_PURCHASE_INTENT_PURCHASE_INTENT_FEATURES_H_ -#include - #include "base/feature_list.h" +#include "base/metrics/field_trial_params.h" namespace base { class TimeDelta; } // namespace base -namespace brave_ads::targeting::features { +namespace brave_ads::targeting { -BASE_DECLARE_FEATURE(kPurchaseIntent); +BASE_DECLARE_FEATURE(kPurchaseIntentFeature); bool IsPurchaseIntentEnabled(); -int GetPurchaseIntentResourceVersion(); -uint16_t GetPurchaseIntentThreshold(); -base::TimeDelta GetPurchaseIntentTimeWindow(); -} // namespace brave_ads::targeting::features +constexpr base::FeatureParam kPurchaseIntentResourceVersion{ + &kPurchaseIntentFeature, "resource_version", 1}; + +constexpr base::FeatureParam kPurchaseIntentThreshold{ + &kPurchaseIntentFeature, "threshold", 3}; + +constexpr base::FeatureParam kPurchaseIntentTimeWindow{ + &kPurchaseIntentFeature, "time_window", base::Days(7)}; + +} // namespace brave_ads::targeting #endif // BRAVE_COMPONENTS_BRAVE_ADS_CORE_INTERNAL_ADS_SERVING_TARGETING_BEHAVIORAL_PURCHASE_INTENT_PURCHASE_INTENT_FEATURES_H_ diff --git a/components/brave_ads/core/internal/ads/serving/targeting/behavioral/purchase_intent/purchase_intent_features_unittest.cc b/components/brave_ads/core/internal/ads/serving/targeting/behavioral/purchase_intent/purchase_intent_features_unittest.cc index 36b52fcd685e..6d6b983c3bdd 100644 --- a/components/brave_ads/core/internal/ads/serving/targeting/behavioral/purchase_intent/purchase_intent_features_unittest.cc +++ b/components/brave_ads/core/internal/ads/serving/targeting/behavioral/purchase_intent/purchase_intent_features_unittest.cc @@ -13,9 +13,9 @@ // npm run test -- brave_unit_tests --filter=BatAds* -namespace brave_ads::targeting::features { +namespace brave_ads::targeting { -TEST(BatAdsPurchaseIntentFeaturesTest, IsPurchaseIntentEnabled) { +TEST(BatAdsPurchaseIntentFeaturesTest, IsEnabled) { // Arrange // Act @@ -24,12 +24,12 @@ TEST(BatAdsPurchaseIntentFeaturesTest, IsPurchaseIntentEnabled) { EXPECT_TRUE(IsPurchaseIntentEnabled()); } -TEST(BatAdsPurchaseIntentFeaturesTest, IsPurchaseIntentDisabled) { +TEST(BatAdsPurchaseIntentFeaturesTest, IsDisabled) { // Arrange const std::vector enabled_features; std::vector disabled_features; - disabled_features.emplace_back(kPurchaseIntent); + disabled_features.emplace_back(kPurchaseIntentFeature); base::test::ScopedFeatureList scoped_feature_list; scoped_feature_list.InitWithFeaturesAndParameters(enabled_features, @@ -46,7 +46,7 @@ TEST(BatAdsPurchaseIntentFeaturesTest, GetPurchaseIntentResourceVersion) { base::FieldTrialParams params; params["resource_version"] = "0"; std::vector enabled_features; - enabled_features.emplace_back(kPurchaseIntent, params); + enabled_features.emplace_back(kPurchaseIntentFeature, params); const std::vector disabled_features; @@ -57,7 +57,7 @@ TEST(BatAdsPurchaseIntentFeaturesTest, GetPurchaseIntentResourceVersion) { // Act // Assert - EXPECT_EQ(0, GetPurchaseIntentResourceVersion()); + EXPECT_EQ(0, kPurchaseIntentResourceVersion.Get()); } TEST(BatAdsPurchaseIntentFeaturesTest, DefaultPurchaseIntentResourceVersion) { @@ -66,7 +66,7 @@ TEST(BatAdsPurchaseIntentFeaturesTest, DefaultPurchaseIntentResourceVersion) { // Act // Assert - EXPECT_EQ(1, GetPurchaseIntentResourceVersion()); + EXPECT_EQ(1, kPurchaseIntentResourceVersion.Get()); } TEST(BatAdsPurchaseIntentFeaturesTest, @@ -75,7 +75,7 @@ TEST(BatAdsPurchaseIntentFeaturesTest, const std::vector enabled_features; std::vector disabled_features; - disabled_features.emplace_back(kPurchaseIntent); + disabled_features.emplace_back(kPurchaseIntentFeature); base::test::ScopedFeatureList scoped_feature_list; scoped_feature_list.InitWithFeaturesAndParameters(enabled_features, @@ -84,7 +84,7 @@ TEST(BatAdsPurchaseIntentFeaturesTest, // Act // Assert - EXPECT_EQ(1, GetPurchaseIntentResourceVersion()); + EXPECT_EQ(1, kPurchaseIntentResourceVersion.Get()); } TEST(BatAdsPurchaseIntentFeaturesTest, GetPurchaseIntentThreshold) { @@ -92,7 +92,7 @@ TEST(BatAdsPurchaseIntentFeaturesTest, GetPurchaseIntentThreshold) { base::FieldTrialParams params; params["threshold"] = "5"; std::vector enabled_features; - enabled_features.emplace_back(kPurchaseIntent, params); + enabled_features.emplace_back(kPurchaseIntentFeature, params); const std::vector disabled_features; @@ -103,7 +103,7 @@ TEST(BatAdsPurchaseIntentFeaturesTest, GetPurchaseIntentThreshold) { // Act // Assert - EXPECT_EQ(5, GetPurchaseIntentThreshold()); + EXPECT_EQ(5, kPurchaseIntentThreshold.Get()); } TEST(BatAdsPurchaseIntentFeaturesTest, DefaultPurchaseIntentThreshold) { @@ -112,7 +112,7 @@ TEST(BatAdsPurchaseIntentFeaturesTest, DefaultPurchaseIntentThreshold) { // Act // Assert - EXPECT_EQ(3, GetPurchaseIntentThreshold()); + EXPECT_EQ(3, kPurchaseIntentThreshold.Get()); } TEST(BatAdsPurchaseIntentFeaturesTest, @@ -121,7 +121,7 @@ TEST(BatAdsPurchaseIntentFeaturesTest, const std::vector enabled_features; std::vector disabled_features; - disabled_features.emplace_back(kPurchaseIntent); + disabled_features.emplace_back(kPurchaseIntentFeature); base::test::ScopedFeatureList scoped_feature_list; scoped_feature_list.InitWithFeaturesAndParameters(enabled_features, @@ -130,7 +130,7 @@ TEST(BatAdsPurchaseIntentFeaturesTest, // Act // Assert - EXPECT_EQ(3, GetPurchaseIntentThreshold()); + EXPECT_EQ(3, kPurchaseIntentThreshold.Get()); } TEST(BatAdsPurchaseIntentFeaturesTest, GetPurchaseIntentTimeWindow) { @@ -138,7 +138,7 @@ TEST(BatAdsPurchaseIntentFeaturesTest, GetPurchaseIntentTimeWindow) { base::FieldTrialParams params; params["time_window"] = "1d"; std::vector enabled_features; - enabled_features.emplace_back(kPurchaseIntent, params); + enabled_features.emplace_back(kPurchaseIntentFeature, params); const std::vector disabled_features; @@ -149,7 +149,7 @@ TEST(BatAdsPurchaseIntentFeaturesTest, GetPurchaseIntentTimeWindow) { // Act // Assert - EXPECT_EQ(base::Days(1), GetPurchaseIntentTimeWindow()); + EXPECT_EQ(base::Days(1), kPurchaseIntentTimeWindow.Get()); } TEST(BatAdsPurchaseIntentFeaturesTest, DefaultPurchaseIntentTimeWindow) { @@ -158,7 +158,7 @@ TEST(BatAdsPurchaseIntentFeaturesTest, DefaultPurchaseIntentTimeWindow) { // Act // Assert - EXPECT_EQ(base::Days(7), GetPurchaseIntentTimeWindow()); + EXPECT_EQ(base::Days(7), kPurchaseIntentTimeWindow.Get()); } TEST(BatAdsPurchaseIntentFeaturesTest, @@ -167,7 +167,7 @@ TEST(BatAdsPurchaseIntentFeaturesTest, const std::vector enabled_features; std::vector disabled_features; - disabled_features.emplace_back(kPurchaseIntent); + disabled_features.emplace_back(kPurchaseIntentFeature); base::test::ScopedFeatureList scoped_feature_list; scoped_feature_list.InitWithFeaturesAndParameters(enabled_features, @@ -176,7 +176,7 @@ TEST(BatAdsPurchaseIntentFeaturesTest, // Act // Assert - EXPECT_EQ(base::Days(7), GetPurchaseIntentTimeWindow()); + EXPECT_EQ(base::Days(7), kPurchaseIntentTimeWindow.Get()); } -} // namespace brave_ads::targeting::features +} // namespace brave_ads::targeting diff --git a/components/brave_ads/core/internal/ads/serving/targeting/behavioral/purchase_intent/purchase_intent_model.cc b/components/brave_ads/core/internal/ads/serving/targeting/behavioral/purchase_intent/purchase_intent_model.cc index b76ccf065367..85d3beb87208 100644 --- a/components/brave_ads/core/internal/ads/serving/targeting/behavioral/purchase_intent/purchase_intent_model.cc +++ b/components/brave_ads/core/internal/ads/serving/targeting/behavioral/purchase_intent/purchase_intent_model.cc @@ -26,7 +26,8 @@ uint16_t CalculateScoreForHistory( const PurchaseIntentSignalHistoryList& history) { uint16_t score = 0; - const base::TimeDelta time_window = features::GetPurchaseIntentTimeWindow(); + const base::TimeDelta time_window = kPurchaseIntentTimeWindow.Get(); + for (const auto& signal_segment : history) { const base::Time signal_decayed_time = signal_segment.created_at + time_window; @@ -59,7 +60,8 @@ SegmentList PurchaseIntent::GetSegments() const { scores.insert(std::make_pair(score, segment)); } - const uint16_t threshold = features::GetPurchaseIntentThreshold(); + const uint16_t threshold = kPurchaseIntentThreshold.Get(); + for (const auto& [score, segment] : base::Reversed(scores)) { if (score >= threshold) { segments.push_back(segment); diff --git a/components/brave_ads/core/internal/ads/serving/targeting/contextual/text_classification/text_classification_features.cc b/components/brave_ads/core/internal/ads/serving/targeting/contextual/text_classification/text_classification_features.cc index 8e179f37c92f..107c0c019758 100644 --- a/components/brave_ads/core/internal/ads/serving/targeting/contextual/text_classification/text_classification_features.cc +++ b/components/brave_ads/core/internal/ads/serving/targeting/contextual/text_classification/text_classification_features.cc @@ -5,39 +5,14 @@ #include "brave/components/brave_ads/core/internal/ads/serving/targeting/contextual/text_classification/text_classification_features.h" -#include "base/metrics/field_trial_params.h" +namespace brave_ads::targeting { -namespace brave_ads::targeting::features { - -namespace { - -constexpr char kResourceVersionFieldTrialParamName[] = "resource_version"; -constexpr int kResourceVersionDefaultValue = 1; - -constexpr char kPageProbabilitiesHistorySizeFieldTrialParamName[] = - "page_probabilities_history_size"; -constexpr int kPageProbabilitiesHistorySizeDefaultValue = 5; - -} // namespace - -BASE_FEATURE(kTextClassification, +BASE_FEATURE(kTextClassificationFeature, "TextClassification", base::FEATURE_ENABLED_BY_DEFAULT); bool IsTextClassificationEnabled() { - return base::FeatureList::IsEnabled(kTextClassification); -} - -int GetTextClassificationResourceVersion() { - return GetFieldTrialParamByFeatureAsInt(kTextClassification, - kResourceVersionFieldTrialParamName, - kResourceVersionDefaultValue); -} - -int GetTextClassificationProbabilitiesHistorySize() { - return GetFieldTrialParamByFeatureAsInt( - kTextClassification, kPageProbabilitiesHistorySizeFieldTrialParamName, - kPageProbabilitiesHistorySizeDefaultValue); + return base::FeatureList::IsEnabled(kTextClassificationFeature); } -} // namespace brave_ads::targeting::features +} // namespace brave_ads::targeting diff --git a/components/brave_ads/core/internal/ads/serving/targeting/contextual/text_classification/text_classification_features.h b/components/brave_ads/core/internal/ads/serving/targeting/contextual/text_classification/text_classification_features.h index e6f0102701f7..d2bc5a840165 100644 --- a/components/brave_ads/core/internal/ads/serving/targeting/contextual/text_classification/text_classification_features.h +++ b/components/brave_ads/core/internal/ads/serving/targeting/contextual/text_classification/text_classification_features.h @@ -7,15 +7,21 @@ #define BRAVE_COMPONENTS_BRAVE_ADS_CORE_INTERNAL_ADS_SERVING_TARGETING_CONTEXTUAL_TEXT_CLASSIFICATION_TEXT_CLASSIFICATION_FEATURES_H_ #include "base/feature_list.h" +#include "base/metrics/field_trial_params.h" -namespace brave_ads::targeting::features { +namespace brave_ads::targeting { -BASE_DECLARE_FEATURE(kTextClassification); +BASE_DECLARE_FEATURE(kTextClassificationFeature); bool IsTextClassificationEnabled(); -int GetTextClassificationResourceVersion(); -int GetTextClassificationProbabilitiesHistorySize(); -} // namespace brave_ads::targeting::features +constexpr base::FeatureParam kTextClassificationResourceVersion{ + &kTextClassificationFeature, "resource_version", 1}; + +constexpr base::FeatureParam + kTextClassificationPageProbabilitiesHistorySize{ + &kTextClassificationFeature, "page_probabilities_history_size", 5}; + +} // namespace brave_ads::targeting #endif // BRAVE_COMPONENTS_BRAVE_ADS_CORE_INTERNAL_ADS_SERVING_TARGETING_CONTEXTUAL_TEXT_CLASSIFICATION_TEXT_CLASSIFICATION_FEATURES_H_ diff --git a/components/brave_ads/core/internal/ads/serving/targeting/contextual/text_classification/text_classification_features_unittest.cc b/components/brave_ads/core/internal/ads/serving/targeting/contextual/text_classification/text_classification_features_unittest.cc index d3000ce7c070..f20f40528037 100644 --- a/components/brave_ads/core/internal/ads/serving/targeting/contextual/text_classification/text_classification_features_unittest.cc +++ b/components/brave_ads/core/internal/ads/serving/targeting/contextual/text_classification/text_classification_features_unittest.cc @@ -12,9 +12,9 @@ // npm run test -- brave_unit_tests --filter=BatAds* -namespace brave_ads::targeting::features { +namespace brave_ads::targeting { -TEST(BatAdsTextClassificationFeaturesTest, IsTextClassificationEnabled) { +TEST(BatAdsTextClassificationFeaturesTest, IsEnabled) { // Arrange // Act @@ -23,12 +23,12 @@ TEST(BatAdsTextClassificationFeaturesTest, IsTextClassificationEnabled) { EXPECT_TRUE(IsTextClassificationEnabled()); } -TEST(BatAdsTextClassificationFeaturesTest, IsTextClassificationDisabled) { +TEST(BatAdsTextClassificationFeaturesTest, IsDisabled) { // Arrange const std::vector enabled_features; std::vector disabled_features; - disabled_features.emplace_back(kTextClassification); + disabled_features.emplace_back(kTextClassificationFeature); base::test::ScopedFeatureList scoped_feature_list; scoped_feature_list.InitWithFeaturesAndParameters(enabled_features, @@ -46,7 +46,7 @@ TEST(BatAdsTextClassificationFeaturesTest, base::FieldTrialParams params; params["resource_version"] = "0"; std::vector enabled_features; - enabled_features.emplace_back(kTextClassification, params); + enabled_features.emplace_back(kTextClassificationFeature, params); const std::vector disabled_features; @@ -57,7 +57,7 @@ TEST(BatAdsTextClassificationFeaturesTest, // Act // Assert - EXPECT_EQ(0, GetTextClassificationResourceVersion()); + EXPECT_EQ(0, kTextClassificationResourceVersion.Get()); } TEST(BatAdsTextClassificationFeaturesTest, @@ -67,7 +67,7 @@ TEST(BatAdsTextClassificationFeaturesTest, // Act // Assert - EXPECT_EQ(1, GetTextClassificationResourceVersion()); + EXPECT_EQ(1, kTextClassificationResourceVersion.Get()); } TEST(BatAdsTextClassificationFeaturesTest, @@ -76,7 +76,7 @@ TEST(BatAdsTextClassificationFeaturesTest, const std::vector enabled_features; std::vector disabled_features; - disabled_features.emplace_back(kTextClassification); + disabled_features.emplace_back(kTextClassificationFeature); base::test::ScopedFeatureList scoped_feature_list; scoped_feature_list.InitWithFeaturesAndParameters(enabled_features, @@ -85,7 +85,7 @@ TEST(BatAdsTextClassificationFeaturesTest, // Act // Assert - EXPECT_EQ(1, GetTextClassificationResourceVersion()); + EXPECT_EQ(1, kTextClassificationResourceVersion.Get()); } TEST(BatAdsTextClassificationFeaturesTest, @@ -94,7 +94,7 @@ TEST(BatAdsTextClassificationFeaturesTest, base::FieldTrialParams params; params["page_probabilities_history_size"] = "3"; std::vector enabled_features; - enabled_features.emplace_back(kTextClassification, params); + enabled_features.emplace_back(kTextClassificationFeature, params); const std::vector disabled_features; @@ -105,7 +105,7 @@ TEST(BatAdsTextClassificationFeaturesTest, // Act // Assert - EXPECT_EQ(3, GetTextClassificationProbabilitiesHistorySize()); + EXPECT_EQ(3, kTextClassificationPageProbabilitiesHistorySize.Get()); } TEST(BatAdsTextClassificationFeaturesTest, @@ -115,7 +115,7 @@ TEST(BatAdsTextClassificationFeaturesTest, // Act // Assert - EXPECT_EQ(5, GetTextClassificationProbabilitiesHistorySize()); + EXPECT_EQ(5, kTextClassificationPageProbabilitiesHistorySize.Get()); } TEST(BatAdsTextClassificationFeaturesTest, @@ -124,7 +124,7 @@ TEST(BatAdsTextClassificationFeaturesTest, const std::vector enabled_features; std::vector disabled_features; - disabled_features.emplace_back(kTextClassification); + disabled_features.emplace_back(kTextClassificationFeature); base::test::ScopedFeatureList scoped_feature_list; scoped_feature_list.InitWithFeaturesAndParameters(enabled_features, @@ -133,7 +133,7 @@ TEST(BatAdsTextClassificationFeaturesTest, // Act // Assert - EXPECT_EQ(5, GetTextClassificationProbabilitiesHistorySize()); + EXPECT_EQ(5, kTextClassificationPageProbabilitiesHistorySize.Get()); } -} // namespace brave_ads::targeting::features +} // namespace brave_ads::targeting diff --git a/components/brave_ads/core/internal/ads/serving/targeting/contextual/text_embedding/text_embedding_features.cc b/components/brave_ads/core/internal/ads/serving/targeting/contextual/text_embedding/text_embedding_features.cc index 744392bb6045..c33bbe28c247 100644 --- a/components/brave_ads/core/internal/ads/serving/targeting/contextual/text_embedding/text_embedding_features.cc +++ b/components/brave_ads/core/internal/ads/serving/targeting/contextual/text_embedding/text_embedding_features.cc @@ -5,38 +5,14 @@ #include "brave/components/brave_ads/core/internal/ads/serving/targeting/contextual/text_embedding/text_embedding_features.h" -#include "base/metrics/field_trial_params.h" +namespace brave_ads::targeting { -namespace brave_ads::targeting::features { - -namespace { - -constexpr char kResourceVersionFieldTrialParamName[] = "resource_version"; -constexpr int kResourceVersionDefaultValue = 1; - -constexpr char kHistorySizeFieldTrialParamName[] = "history_size"; -constexpr int kHistorySizeDefaultValue = 10; - -} // namespace - -BASE_FEATURE(kTextEmbedding, +BASE_FEATURE(kTextEmbeddingFeature, "TextEmbedding", base::FEATURE_DISABLED_BY_DEFAULT); bool IsTextEmbeddingEnabled() { - return base::FeatureList::IsEnabled(kTextEmbedding); -} - -int GetTextEmbeddingResourceVersion() { - return GetFieldTrialParamByFeatureAsInt(kTextEmbedding, - kResourceVersionFieldTrialParamName, - kResourceVersionDefaultValue); -} - -int GetTextEmbeddingsHistorySize() { - return GetFieldTrialParamByFeatureAsInt(kTextEmbedding, - kHistorySizeFieldTrialParamName, - kHistorySizeDefaultValue); + return base::FeatureList::IsEnabled(kTextEmbeddingFeature); } -} // namespace brave_ads::targeting::features +} // namespace brave_ads::targeting diff --git a/components/brave_ads/core/internal/ads/serving/targeting/contextual/text_embedding/text_embedding_features.h b/components/brave_ads/core/internal/ads/serving/targeting/contextual/text_embedding/text_embedding_features.h index daed9ea6dd65..eefbe3cabfd4 100644 --- a/components/brave_ads/core/internal/ads/serving/targeting/contextual/text_embedding/text_embedding_features.h +++ b/components/brave_ads/core/internal/ads/serving/targeting/contextual/text_embedding/text_embedding_features.h @@ -7,15 +7,20 @@ #define BRAVE_COMPONENTS_BRAVE_ADS_CORE_INTERNAL_ADS_SERVING_TARGETING_CONTEXTUAL_TEXT_EMBEDDING_TEXT_EMBEDDING_FEATURES_H_ #include "base/feature_list.h" +#include "base/metrics/field_trial_params.h" -namespace brave_ads::targeting::features { +namespace brave_ads::targeting { -BASE_DECLARE_FEATURE(kTextEmbedding); +BASE_DECLARE_FEATURE(kTextEmbeddingFeature); bool IsTextEmbeddingEnabled(); -int GetTextEmbeddingResourceVersion(); -int GetTextEmbeddingsHistorySize(); -} // namespace brave_ads::targeting::features +constexpr base::FeatureParam kTextEmbeddingResourceVersion{ + &kTextEmbeddingFeature, "resource_version", 1}; + +constexpr base::FeatureParam kTextEmbeddingHistorySize{ + &kTextEmbeddingFeature, "history_size", 10}; + +} // namespace brave_ads::targeting #endif // BRAVE_COMPONENTS_BRAVE_ADS_CORE_INTERNAL_ADS_SERVING_TARGETING_CONTEXTUAL_TEXT_EMBEDDING_TEXT_EMBEDDING_FEATURES_H_ diff --git a/components/brave_ads/core/internal/ads/serving/targeting/contextual/text_embedding/text_embedding_features_unittest.cc b/components/brave_ads/core/internal/ads/serving/targeting/contextual/text_embedding/text_embedding_features_unittest.cc index 1ed3cf6dd3f8..14a0e5e11e98 100644 --- a/components/brave_ads/core/internal/ads/serving/targeting/contextual/text_embedding/text_embedding_features_unittest.cc +++ b/components/brave_ads/core/internal/ads/serving/targeting/contextual/text_embedding/text_embedding_features_unittest.cc @@ -12,22 +12,13 @@ // npm run test -- brave_unit_tests --filter=BatAds* -namespace brave_ads::targeting::features { +namespace brave_ads::targeting { -TEST(BatAdsTextEmbeddingFeaturesTest, IsTextEmbeddingDisabled) { - // Arrange - - // Act - - // Assert - EXPECT_FALSE(IsTextEmbeddingEnabled()); -} - -TEST(BatAdsTextEmbeddingFeaturesTest, IsTextEmbeddingEnabled) { +TEST(BatAdsTextEmbeddingFeaturesTest, IsEnabled) { // Arrange base::FieldTrialParams params; std::vector enabled_features; - enabled_features.emplace_back(kTextEmbedding, params); + enabled_features.emplace_back(kTextEmbeddingFeature, params); const std::vector disabled_features; @@ -41,12 +32,21 @@ TEST(BatAdsTextEmbeddingFeaturesTest, IsTextEmbeddingEnabled) { EXPECT_TRUE(IsTextEmbeddingEnabled()); } +TEST(BatAdsTextEmbeddingFeaturesTest, IsDisabled) { + // Arrange + + // Act + + // Assert + EXPECT_FALSE(IsTextEmbeddingEnabled()); +} + TEST(BatAdsTextEmbeddingFeaturesTest, GetTextEmbeddingResourceVersion) { // Arrange base::FieldTrialParams params; params["resource_version"] = "0"; std::vector enabled_features; - enabled_features.emplace_back(kTextEmbedding, params); + enabled_features.emplace_back(kTextEmbeddingFeature, params); const std::vector disabled_features; @@ -57,7 +57,7 @@ TEST(BatAdsTextEmbeddingFeaturesTest, GetTextEmbeddingResourceVersion) { // Act // Assert - EXPECT_EQ(0, GetTextEmbeddingResourceVersion()); + EXPECT_EQ(0, kTextEmbeddingResourceVersion.Get()); } TEST(BatAdsTextEmbeddingFeaturesTest, DefaultTextEmbeddingResourceVersion) { @@ -66,7 +66,7 @@ TEST(BatAdsTextEmbeddingFeaturesTest, DefaultTextEmbeddingResourceVersion) { // Act // Assert - EXPECT_EQ(1, GetTextEmbeddingResourceVersion()); + EXPECT_EQ(1, kTextEmbeddingResourceVersion.Get()); } TEST(BatAdsTextEmbeddingFeaturesTest, @@ -75,7 +75,7 @@ TEST(BatAdsTextEmbeddingFeaturesTest, const std::vector enabled_features; std::vector disabled_features; - disabled_features.emplace_back(kTextEmbedding); + disabled_features.emplace_back(kTextEmbeddingFeature); base::test::ScopedFeatureList scoped_feature_list; scoped_feature_list.InitWithFeaturesAndParameters(enabled_features, @@ -84,7 +84,7 @@ TEST(BatAdsTextEmbeddingFeaturesTest, // Act // Assert - EXPECT_EQ(1, GetTextEmbeddingResourceVersion()); + EXPECT_EQ(1, kTextEmbeddingResourceVersion.Get()); } TEST(BatAdsTextEmbeddingFeaturesTest, GetTextEmbeddingsHistorySize) { @@ -92,7 +92,7 @@ TEST(BatAdsTextEmbeddingFeaturesTest, GetTextEmbeddingsHistorySize) { base::FieldTrialParams params; params["history_size"] = "42"; std::vector enabled_features; - enabled_features.emplace_back(kTextEmbedding, params); + enabled_features.emplace_back(kTextEmbeddingFeature, params); const std::vector disabled_features; @@ -103,7 +103,7 @@ TEST(BatAdsTextEmbeddingFeaturesTest, GetTextEmbeddingsHistorySize) { // Act // Assert - EXPECT_EQ(42, GetTextEmbeddingsHistorySize()); + EXPECT_EQ(42, kTextEmbeddingHistorySize.Get()); } TEST(BatAdsTextEmbeddingFeaturesTest, DefaultTextEmbeddingsHistorySize) { @@ -112,7 +112,7 @@ TEST(BatAdsTextEmbeddingFeaturesTest, DefaultTextEmbeddingsHistorySize) { // Act // Assert - EXPECT_EQ(10, GetTextEmbeddingsHistorySize()); + EXPECT_EQ(10, kTextEmbeddingHistorySize.Get()); } TEST(BatAdsTextClassificationFeaturesTest, @@ -121,7 +121,7 @@ TEST(BatAdsTextClassificationFeaturesTest, const std::vector enabled_features; std::vector disabled_features; - disabled_features.emplace_back(kTextEmbedding); + disabled_features.emplace_back(kTextEmbeddingFeature); base::test::ScopedFeatureList scoped_feature_list; scoped_feature_list.InitWithFeaturesAndParameters(enabled_features, @@ -130,7 +130,7 @@ TEST(BatAdsTextClassificationFeaturesTest, // Act // Assert - EXPECT_EQ(10, GetTextEmbeddingsHistorySize()); + EXPECT_EQ(10, kTextEmbeddingHistorySize.Get()); } -} // namespace brave_ads::targeting::features +} // namespace brave_ads::targeting diff --git a/components/brave_ads/core/internal/ads/serving/targeting/top_segments_unittest.cc b/components/brave_ads/core/internal/ads/serving/targeting/top_segments_unittest.cc index e77cd8442eb2..d53fec6b9b71 100644 --- a/components/brave_ads/core/internal/ads/serving/targeting/top_segments_unittest.cc +++ b/components/brave_ads/core/internal/ads/serving/targeting/top_segments_unittest.cc @@ -181,21 +181,21 @@ TEST_P(BatAdsTopSegmentsTest, GetSegments) { base::FieldTrialParams params; params["epsilon_value"] = "0.0"; // Set bandit to always exploit for deterministic execution - enabled_features.emplace_back(features::kEpsilonGreedyBandit, params); + enabled_features.emplace_back(kEpsilonGreedyBanditFeatures, params); } else { - disabled_features.emplace_back(features::kEpsilonGreedyBandit); + disabled_features.emplace_back(kEpsilonGreedyBanditFeatures); } if (param.purchase_intent_enabled) { - enabled_features.push_back({features::kPurchaseIntent, {}}); + enabled_features.push_back({kPurchaseIntentFeature, {}}); } else { - disabled_features.emplace_back(features::kPurchaseIntent); + disabled_features.emplace_back(kPurchaseIntentFeature); } if (param.text_classification_enabled) { - enabled_features.push_back({features::kTextClassification, {}}); + enabled_features.push_back({kTextClassificationFeature, {}}); } else { - disabled_features.emplace_back(features::kTextClassification); + disabled_features.emplace_back(kTextClassificationFeature); } base::test::ScopedFeatureList scoped_feature_list; @@ -259,9 +259,9 @@ TEST_F(BatAdsTopSegmentsTest, GetSegmentsForAllModelsIfPreviouslyProcessed) { base::test::ScopedFeatureList scoped_feature_list; scoped_feature_list.InitWithFeaturesAndParameters( - {{features::kPurchaseIntent, /*default params*/ {}}, - {features::kEpsilonGreedyBandit, params}, - {features::kTextClassification, /*default params*/ {}}}, + {{kPurchaseIntentFeature, /*default params*/ {}}, + {kEpsilonGreedyBanditFeatures, params}, + {kTextClassificationFeature, /*default params*/ {}}}, {}); // Act diff --git a/components/brave_ads/core/internal/ads/serving/targeting/user_model_builder.cc b/components/brave_ads/core/internal/ads/serving/targeting/user_model_builder.cc index a330abeb884c..9b874bd8d487 100644 --- a/components/brave_ads/core/internal/ads/serving/targeting/user_model_builder.cc +++ b/components/brave_ads/core/internal/ads/serving/targeting/user_model_builder.cc @@ -45,23 +45,23 @@ void OnGetTextEmbeddingHtmlEvents( void BuildUserModel(BuildUserModelCallback callback) { UserModelInfo user_model; - if (features::IsTextClassificationEnabled()) { + if (IsTextClassificationEnabled()) { const model::TextClassification text_classification_model; user_model.interest_segments = text_classification_model.GetSegments(); } - if (features::IsEpsilonGreedyBanditEnabled()) { + if (IsEpsilonGreedyBanditEnabled()) { const model::EpsilonGreedyBandit epsilon_greedy_bandit_model; user_model.latent_interest_segments = epsilon_greedy_bandit_model.GetSegments(); } - if (features::IsPurchaseIntentEnabled()) { + if (IsPurchaseIntentEnabled()) { const model::PurchaseIntent purchase_intent_model; user_model.purchase_intent_segments = purchase_intent_model.GetSegments(); } - if (features::IsTextEmbeddingEnabled()) { + if (IsTextEmbeddingEnabled()) { GetTextEmbeddingHtmlEventsFromDatabase(base::BindOnce( &OnGetTextEmbeddingHtmlEvents, user_model, std::move(callback))); } else { diff --git a/components/brave_ads/core/internal/common/metrics/field_trial_params_util.cc b/components/brave_ads/core/internal/common/metrics/field_trial_params_util.cc deleted file mode 100644 index 0e5abb299925..000000000000 --- a/components/brave_ads/core/internal/common/metrics/field_trial_params_util.cc +++ /dev/null @@ -1,56 +0,0 @@ -/* Copyright (c) 2020 The Brave Authors. All rights reserved. - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this file, - * You can obtain one at https://mozilla.org/MPL/2.0/. */ - -#include "brave/components/brave_ads/core/internal/common/metrics/field_trial_params_util.h" - -#include "base/feature_list.h" -#include "base/metrics/field_trial_params.h" -#include "base/time/time.h" -#include "base/time/time_delta_from_string.h" -#include "brave/components/brave_ads/core/internal/common/logging_util.h" -#include "third_party/abseil-cpp/absl/types/optional.h" - -namespace brave_ads { - -std::string GetFieldTrialParamByFeatureAsString( - const base::Feature& feature, - const std::string& param_name, - const std::string& default_value) { - std::string value = GetFieldTrialParamValueByFeature(feature, param_name); - - if (value.empty()) { - return default_value; - } - - return value; -} - -base::TimeDelta GetFieldTrialParamByFeatureAsTimeDelta( - const base::Feature& feature, - const std::string& param_name, - const base::TimeDelta default_value) { - const std::string value = - GetFieldTrialParamValueByFeature(feature, param_name); - - if (value.empty()) { - return default_value; - } - - const absl::optional time_delta = - base::TimeDeltaFromString(value); - if (!time_delta) { - BLOG(0, "Failed to parse field trial param " - << param_name << " with string value " << value - << " under feature " << feature.name - << " into a base::TimeDelta. Falling back to default value of " - << default_value); - - return default_value; - } - - return *time_delta; -} - -} // namespace brave_ads diff --git a/components/brave_ads/core/internal/common/metrics/field_trial_params_util.h b/components/brave_ads/core/internal/common/metrics/field_trial_params_util.h deleted file mode 100644 index 6d4d1c0f5048..000000000000 --- a/components/brave_ads/core/internal/common/metrics/field_trial_params_util.h +++ /dev/null @@ -1,31 +0,0 @@ -/* Copyright (c) 2020 The Brave Authors. All rights reserved. - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this file, - * You can obtain one at https://mozilla.org/MPL/2.0/. */ - -#ifndef BRAVE_COMPONENTS_BRAVE_ADS_CORE_INTERNAL_COMMON_METRICS_FIELD_TRIAL_PARAMS_UTIL_H_ -#define BRAVE_COMPONENTS_BRAVE_ADS_CORE_INTERNAL_COMMON_METRICS_FIELD_TRIAL_PARAMS_UTIL_H_ - -#include - -#include "base/feature_list.h" - -namespace base { -class TimeDelta; -} // namespace base - -namespace brave_ads { - -std::string GetFieldTrialParamByFeatureAsString( - const base::Feature& feature, - const std::string& param_name, - const std::string& default_value); - -base::TimeDelta GetFieldTrialParamByFeatureAsTimeDelta( - const base::Feature& feature, - const std::string& param_name, - base::TimeDelta default_value); - -} // namespace brave_ads - -#endif // BRAVE_COMPONENTS_BRAVE_ADS_CORE_INTERNAL_COMMON_METRICS_FIELD_TRIAL_PARAMS_UTIL_H_ diff --git a/components/brave_ads/core/internal/conversions/conversions.cc b/components/brave_ads/core/internal/conversions/conversions.cc index 0967b1b05bca..2d9ebe20345f 100644 --- a/components/brave_ads/core/internal/conversions/conversions.cc +++ b/components/brave_ads/core/internal/conversions/conversions.cc @@ -98,7 +98,7 @@ std::string ExtractConversionIdFromText( const std::string& conversion_url_pattern, const ConversionIdPatternMap& conversion_id_patterns) { std::string conversion_id; - std::string conversion_id_pattern = features::GetConversionIdPattern(); + std::string conversion_id_pattern = kConversionsIdPattern.Get(); std::string text = html; const auto iter = conversion_id_patterns.find(conversion_url_pattern); diff --git a/components/brave_ads/core/internal/conversions/conversions_features.cc b/components/brave_ads/core/internal/conversions/conversions_features.cc index b9d31a7c5230..f4c05b895628 100644 --- a/components/brave_ads/core/internal/conversions/conversions_features.cc +++ b/components/brave_ads/core/internal/conversions/conversions_features.cc @@ -5,39 +5,14 @@ #include "brave/components/brave_ads/core/internal/conversions/conversions_features.h" -#include "base/metrics/field_trial_params.h" -#include "brave/components/brave_ads/core/internal/common/metrics/field_trial_params_util.h" +namespace brave_ads { -namespace brave_ads::features { - -namespace { - -constexpr char kResourceVersionFieldTrialParamName[] = "resource_version"; -constexpr int kResourceVersionDefaultValue = 1; - -constexpr char kConversionIdPatternFieldTrialParamName[] = - "conversion_id_pattern"; -constexpr char kConversionIdPatternDefaultValue[] = - R"~()~"; - -} // namespace - -BASE_FEATURE(kConversions, "Conversions", base::FEATURE_ENABLED_BY_DEFAULT); +BASE_FEATURE(kConversionsFeature, + "Conversions", + base::FEATURE_ENABLED_BY_DEFAULT); bool IsConversionsEnabled() { - return base::FeatureList::IsEnabled(kConversions); -} - -int GetConversionsResourceVersion() { - return GetFieldTrialParamByFeatureAsInt(kConversions, - kResourceVersionFieldTrialParamName, - kResourceVersionDefaultValue); -} - -std::string GetConversionIdPattern() { - return GetFieldTrialParamByFeatureAsString( - kConversions, kConversionIdPatternFieldTrialParamName, - kConversionIdPatternDefaultValue); + return base::FeatureList::IsEnabled(kConversionsFeature); } -} // namespace brave_ads::features +} // namespace brave_ads diff --git a/components/brave_ads/core/internal/conversions/conversions_features.h b/components/brave_ads/core/internal/conversions/conversions_features.h index 2e5e73a87fd0..2a03db745365 100644 --- a/components/brave_ads/core/internal/conversions/conversions_features.h +++ b/components/brave_ads/core/internal/conversions/conversions_features.h @@ -9,15 +9,21 @@ #include #include "base/feature_list.h" +#include "base/metrics/field_trial_params.h" -namespace brave_ads::features { +namespace brave_ads { -BASE_DECLARE_FEATURE(kConversions); +BASE_DECLARE_FEATURE(kConversionsFeature); bool IsConversionsEnabled(); -int GetConversionsResourceVersion(); -std::string GetConversionIdPattern(); -} // namespace brave_ads::features +constexpr base::FeatureParam kConversionsResourceVersion{ + &kConversionsFeature, "resource_version", 1}; + +constexpr base::FeatureParam kConversionsIdPattern{ + &kConversionsFeature, "conversion_id_pattern", + R"~()~"}; + +} // namespace brave_ads #endif // BRAVE_COMPONENTS_BRAVE_ADS_CORE_INTERNAL_CONVERSIONS_CONVERSIONS_FEATURES_H_ diff --git a/components/brave_ads/core/internal/conversions/conversions_features_unittest.cc b/components/brave_ads/core/internal/conversions/conversions_features_unittest.cc index 069c01ebe0e6..e8cedf67edc6 100644 --- a/components/brave_ads/core/internal/conversions/conversions_features_unittest.cc +++ b/components/brave_ads/core/internal/conversions/conversions_features_unittest.cc @@ -12,9 +12,9 @@ // npm run test -- brave_unit_tests --filter=BatAds* -namespace brave_ads::features { +namespace brave_ads { -TEST(BatAdsConversionsFeaturesTest, IsConversionsEnabled) { +TEST(BatAdsConversionsFeaturesTest, IsEnabled) { // Arrange // Act @@ -23,12 +23,12 @@ TEST(BatAdsConversionsFeaturesTest, IsConversionsEnabled) { EXPECT_TRUE(IsConversionsEnabled()); } -TEST(BatAdsConversionsFeaturesTest, IsConversionsDisabled) { +TEST(BatAdsConversionsFeaturesTest, IsDisabled) { // Arrange const std::vector enabled_features; std::vector disabled_features; - disabled_features.emplace_back(kConversions); + disabled_features.emplace_back(kConversionsFeature); base::test::ScopedFeatureList scoped_feature_list; scoped_feature_list.InitWithFeaturesAndParameters(enabled_features, @@ -45,7 +45,7 @@ TEST(BatAdsConversionsFeaturesTest, GetConversionsResourceVersion) { base::FieldTrialParams params; params["resource_version"] = "0"; std::vector enabled_features; - enabled_features.emplace_back(kConversions, params); + enabled_features.emplace_back(kConversionsFeature, params); const std::vector disabled_features; @@ -56,7 +56,7 @@ TEST(BatAdsConversionsFeaturesTest, GetConversionsResourceVersion) { // Act // Assert - EXPECT_EQ(0, GetConversionsResourceVersion()); + EXPECT_EQ(0, kConversionsResourceVersion.Get()); } TEST(BatAdsConversionsFeaturesTest, DefaultConversionsResourceVersion) { @@ -65,7 +65,7 @@ TEST(BatAdsConversionsFeaturesTest, DefaultConversionsResourceVersion) { // Act // Assert - EXPECT_EQ(1, GetConversionsResourceVersion()); + EXPECT_EQ(1, kConversionsResourceVersion.Get()); } TEST(BatAdsConversionsFeaturesTest, @@ -74,7 +74,7 @@ TEST(BatAdsConversionsFeaturesTest, const std::vector enabled_features; std::vector disabled_features; - disabled_features.emplace_back(kConversions); + disabled_features.emplace_back(kConversionsFeature); base::test::ScopedFeatureList scoped_feature_list; scoped_feature_list.InitWithFeaturesAndParameters(enabled_features, @@ -83,7 +83,7 @@ TEST(BatAdsConversionsFeaturesTest, // Act // Assert - EXPECT_EQ(1, GetConversionsResourceVersion()); + EXPECT_EQ(1, kConversionsResourceVersion.Get()); } TEST(BatAdsConversionsFeaturesTest, GetConversionIdPattern) { @@ -91,7 +91,7 @@ TEST(BatAdsConversionsFeaturesTest, GetConversionIdPattern) { base::FieldTrialParams params; params["conversion_id_pattern"] = "*"; std::vector enabled_features; - enabled_features.emplace_back(kConversions, params); + enabled_features.emplace_back(kConversionsFeature, params); const std::vector disabled_features; @@ -102,7 +102,7 @@ TEST(BatAdsConversionsFeaturesTest, GetConversionIdPattern) { // Act // Assert - EXPECT_EQ("*", GetConversionIdPattern()); + EXPECT_EQ("*", kConversionsIdPattern.Get()); } TEST(BatAdsConversionsFeaturesTest, DefaultConversionIdPattern) { @@ -113,7 +113,7 @@ TEST(BatAdsConversionsFeaturesTest, DefaultConversionIdPattern) { // Assert const std::string expected_pattern = R"~()~"; - EXPECT_EQ(expected_pattern, GetConversionIdPattern()); + EXPECT_EQ(expected_pattern, kConversionsIdPattern.Get()); } TEST(BatAdsConversionsFeaturesTest, DefaultConversionIdPatternWhenDisabled) { @@ -121,7 +121,7 @@ TEST(BatAdsConversionsFeaturesTest, DefaultConversionIdPatternWhenDisabled) { const std::vector enabled_features; std::vector disabled_features; - disabled_features.emplace_back(kConversions); + disabled_features.emplace_back(kConversionsFeature); base::test::ScopedFeatureList scoped_feature_list; scoped_feature_list.InitWithFeaturesAndParameters(enabled_features, @@ -132,7 +132,7 @@ TEST(BatAdsConversionsFeaturesTest, DefaultConversionIdPatternWhenDisabled) { // Assert const std::string expected_pattern = R"~()~"; - EXPECT_EQ(expected_pattern, GetConversionIdPattern()); + EXPECT_EQ(expected_pattern, kConversionsIdPattern.Get()); } -} // namespace brave_ads::features +} // namespace brave_ads diff --git a/components/brave_ads/core/internal/deprecated/client/client_state_manager.cc b/components/brave_ads/core/internal/deprecated/client/client_state_manager.cc index 94107ccfe23c..063e7f1aa2e9 100644 --- a/components/brave_ads/core/internal/deprecated/client/client_state_manager.cc +++ b/components/brave_ads/core/internal/deprecated/client/client_state_manager.cc @@ -493,7 +493,7 @@ void ClientStateManager::AppendTextClassificationProbabilitiesToHistory( client_->text_classification_probabilities.push_front(probabilities); const size_t maximum_entries = - targeting::features::GetTextClassificationProbabilitiesHistorySize(); + targeting::kTextClassificationPageProbabilitiesHistorySize.Get(); if (client_->text_classification_probabilities.size() > maximum_entries) { client_->text_classification_probabilities.resize(maximum_entries); } diff --git a/components/brave_ads/core/internal/flags/did_override/did_override_features_from_command_line_util.cc b/components/brave_ads/core/internal/flags/did_override/did_override_features_from_command_line_util.cc index 168f9bfc17d1..e56fc854a892 100644 --- a/components/brave_ads/core/internal/flags/did_override/did_override_features_from_command_line_util.cc +++ b/components/brave_ads/core/internal/flags/did_override/did_override_features_from_command_line_util.cc @@ -36,22 +36,22 @@ namespace brave_ads { namespace { const base::Feature* const kFeatures[] = { - &exclusion_rules::features::kFeature, - &features::kAccount, - &features::kConversions, - &features::kEligibleAds, &features::kShouldTriggerSearchResultAdEvents, - &inline_content_ads::features::kFeature, - &new_tab_page_ads::features::kFeature, - ¬ification_ads::features::kFeature, - &permission_rules::features::kFeature, - &promoted_content_ads::features::kFeature, - &resource::features::kAntiTargeting, - &search_result_ads::features::kFeature, - &targeting::features::kEpsilonGreedyBandit, - &targeting::features::kPurchaseIntent, - &targeting::features::kTextClassification, - &user_activity::features::kFeature}; + &inline_content_ads::kAdsFeature, + &kAccountFeature, + &kAntiTargetingFeature, + &kConversionsFeature, + &kEligibleAdsFeature, + &kExclusionRulesFeature, + &kPermissionRulesFeature, + &kUserActivityFeature, + &new_tab_page_ads::kAdsFeature, + ¬ification_ads::kAdsFeature, + &promoted_content_ads::kAdsFeature, + &search_result_ads::kAdsFeature, + &targeting::kEpsilonGreedyBanditFeatures, + &targeting::kPurchaseIntentFeature, + &targeting::kTextClassificationFeature}; constexpr char kFeaturesSeparators[] = ",:<"; diff --git a/components/brave_ads/core/internal/flags/did_override/did_override_features_from_command_line_util_unittest.cc b/components/brave_ads/core/internal/flags/did_override/did_override_features_from_command_line_util_unittest.cc index adcf7270ee84..56943130facf 100644 --- a/components/brave_ads/core/internal/flags/did_override/did_override_features_from_command_line_util_unittest.cc +++ b/components/brave_ads/core/internal/flags/did_override/did_override_features_from_command_line_util_unittest.cc @@ -56,73 +56,70 @@ struct ParamInfo final { /*expected_did_override_from_command_line*/ false}, {/*command_line_switch*/ { ::switches::kEnableFeatures, - base::JoinString( - {"Foo", user_activity::features::kFeature.name, "Bar"}, - ",")}, + base::JoinString({"Foo", kUserActivityFeature.name, "Bar"}, ",")}, /*expected_did_override_from_command_line*/ true}, {/*command_line_switch*/ {::switches::kEnableFeatures, - exclusion_rules::features::kFeature.name}, + kExclusionRulesFeature.name}, /*expected_did_override_from_command_line*/ true}, {/*command_line_switch*/ {::switches::kEnableFeatures, - features::kAccount.name}, + kAccountFeature.name}, /*expected_did_override_from_command_line*/ true}, {/*command_line_switch*/ {::switches::kEnableFeatures, - features::kConversions.name}, + kConversionsFeature.name}, /*expected_did_override_from_command_line*/ true}, {/*command_line_switch*/ {::switches::kEnableFeatures, - features::kEligibleAds.name}, + kEligibleAdsFeature.name}, /*expected_did_override_from_command_line*/ true}, {/*command_line_switch*/ { ::switches::kEnableFeatures, features::kShouldTriggerSearchResultAdEvents.name}, /*expected_did_override_from_command_line*/ true}, {/*command_line_switch*/ {::switches::kEnableFeatures, - inline_content_ads::features::kFeature.name}, + inline_content_ads::kAdsFeature.name}, /*expected_did_override_from_command_line*/ true}, {/*command_line_switch*/ {::switches::kEnableFeatures, - new_tab_page_ads::features::kFeature.name}, + new_tab_page_ads::kAdsFeature.name}, /*expected_did_override_from_command_line*/ true}, {/*command_line_switch*/ {::switches::kEnableFeatures, - notification_ads::features::kFeature.name}, + notification_ads::kAdsFeature.name}, /*expected_did_override_from_command_line*/ true}, {/*command_line_switch*/ {::switches::kEnableFeatures, - permission_rules::features::kFeature.name}, + kPermissionRulesFeature.name}, /*expected_did_override_from_command_line*/ true}, {/*command_line_switch*/ {::switches::kEnableFeatures, - promoted_content_ads::features::kFeature.name}, + promoted_content_ads::kAdsFeature.name}, /*expected_did_override_from_command_line*/ true}, {/*command_line_switch*/ {::switches::kEnableFeatures, - resource::features::kAntiTargeting.name}, + kAntiTargetingFeature.name}, /*expected_did_override_from_command_line*/ true}, {/*command_line_switch*/ { ::switches::kEnableFeatures, - base::StrCat( - {resource::features::kAntiTargeting.name, ":param/value"})}, + base::StrCat({kAntiTargetingFeature.name, ":param/value"})}, /*expected_did_override_from_command_line*/ true}, {/*command_line_switch*/ {::switches::kEnableFeatures, - search_result_ads::features::kFeature.name}, + search_result_ads::kAdsFeature.name}, /*expected_did_override_from_command_line*/ true}, {/*command_line_switch*/ {::switches::kEnableFeatures, - targeting::features::kEpsilonGreedyBandit.name}, + targeting::kEpsilonGreedyBanditFeatures.name}, /*expected_did_override_from_command_line*/ true}, {/*command_line_switch*/ { ::switches::kEnableFeatures, - base::StrCat({targeting::features::kEpsilonGreedyBandit.name, + base::StrCat({targeting::kEpsilonGreedyBanditFeatures.name, "( - targeting::features::GetTextEmbeddingsHistorySize())); + EXPECT_LE( + text_embedding_html_event_count, + static_cast(targeting::kTextEmbeddingHistorySize.Get())); })); } diff --git a/components/brave_ads/core/internal/processors/contextual/text_embedding/text_embedding_processor.cc b/components/brave_ads/core/internal/processors/contextual/text_embedding/text_embedding_processor.cc index 25f5a20cb8ff..e73d3c0d3392 100644 --- a/components/brave_ads/core/internal/processors/contextual/text_embedding/text_embedding_processor.cc +++ b/components/brave_ads/core/internal/processors/contextual/text_embedding/text_embedding_processor.cc @@ -26,7 +26,7 @@ namespace brave_ads::processor { namespace { bool IsEnabled() { - return targeting::features::IsTextEmbeddingEnabled(); + return targeting::IsTextEmbeddingEnabled(); } } // namespace diff --git a/components/brave_ads/core/internal/reminder/reminder.cc b/components/brave_ads/core/internal/reminder/reminder.cc index 8f46297f2642..a5beed827f89 100644 --- a/components/brave_ads/core/internal/reminder/reminder.cc +++ b/components/brave_ads/core/internal/reminder/reminder.cc @@ -14,7 +14,7 @@ namespace brave_ads { namespace { void MaybeShowReminder(const HistoryItemInfo& history_item) { - if (!features::IsEnabled()) { + if (!IsReminderEnabled()) { return; } diff --git a/components/brave_ads/core/internal/reminder/reminder_features.cc b/components/brave_ads/core/internal/reminder/reminder_features.cc index 63f05508ce2b..a9105e3322e4 100644 --- a/components/brave_ads/core/internal/reminder/reminder_features.cc +++ b/components/brave_ads/core/internal/reminder/reminder_features.cc @@ -5,28 +5,12 @@ #include "brave/components/brave_ads/core/internal/reminder/reminder_features.h" -#include "base/metrics/field_trial_params.h" +namespace brave_ads { -namespace brave_ads::features { +BASE_FEATURE(kReminderFeature, "Reminder", base::FEATURE_ENABLED_BY_DEFAULT); -namespace { - -constexpr char kRemindUserIfClickingTheSameAdAfterTrialParamName[] = - "remind_user_if_clicking_the_same_ad_after"; -constexpr int kRemindUserIfClickingTheSameAdAfterDefaultValue = 3; - -} // namespace - -BASE_FEATURE(kReminder, "Reminder", base::FEATURE_ENABLED_BY_DEFAULT); - -bool IsEnabled() { - return base::FeatureList::IsEnabled(kReminder); -} - -size_t GetRemindUserIfClickingTheSameAdAfter() { - return static_cast(GetFieldTrialParamByFeatureAsInt( - kReminder, kRemindUserIfClickingTheSameAdAfterTrialParamName, - kRemindUserIfClickingTheSameAdAfterDefaultValue)); +bool IsReminderEnabled() { + return base::FeatureList::IsEnabled(kReminderFeature); } -} // namespace brave_ads::features +} // namespace brave_ads diff --git a/components/brave_ads/core/internal/reminder/reminder_features.h b/components/brave_ads/core/internal/reminder/reminder_features.h index d5dcea39acf0..fecf9b977cb9 100644 --- a/components/brave_ads/core/internal/reminder/reminder_features.h +++ b/components/brave_ads/core/internal/reminder/reminder_features.h @@ -7,15 +7,17 @@ #define BRAVE_COMPONENTS_BRAVE_ADS_CORE_INTERNAL_REMINDER_REMINDER_FEATURES_H_ #include "base/feature_list.h" +#include "base/metrics/field_trial_params.h" -namespace brave_ads::features { +namespace brave_ads { -BASE_DECLARE_FEATURE(kReminder); +BASE_DECLARE_FEATURE(kReminderFeature); -bool IsEnabled(); +bool IsReminderEnabled(); -size_t GetRemindUserIfClickingTheSameAdAfter(); +constexpr base::FeatureParam kRemindUserIfClickingTheSameAdAfter{ + &kReminderFeature, "remind_user_if_clicking_the_same_ad_after", 3}; -} // namespace brave_ads::features +} // namespace brave_ads #endif // BRAVE_COMPONENTS_BRAVE_ADS_CORE_INTERNAL_REMINDER_REMINDER_FEATURES_H_ diff --git a/components/brave_ads/core/internal/reminder/reminder_features_unittest.cc b/components/brave_ads/core/internal/reminder/reminder_features_unittest.cc index d5b39e3d11c8..712670ce4d16 100644 --- a/components/brave_ads/core/internal/reminder/reminder_features_unittest.cc +++ b/components/brave_ads/core/internal/reminder/reminder_features_unittest.cc @@ -12,7 +12,7 @@ // npm run test -- brave_unit_tests --filter=BatAds* -namespace brave_ads::features { +namespace brave_ads { TEST(BatAdsReminderFeaturesTest, IsEnabled) { // Arrange @@ -20,14 +20,14 @@ TEST(BatAdsReminderFeaturesTest, IsEnabled) { // Act // Assert - EXPECT_TRUE(IsEnabled()); + EXPECT_TRUE(IsReminderEnabled()); } TEST(BatAdsReminderFeaturesTest, IsDisabled) { // Arrange const std::vector enabled_features; std::vector disabled_features; - disabled_features.emplace_back(kReminder); + disabled_features.emplace_back(kReminderFeature); base::test::ScopedFeatureList scoped_feature_list; scoped_feature_list.InitWithFeaturesAndParameters(enabled_features, @@ -36,7 +36,7 @@ TEST(BatAdsReminderFeaturesTest, IsDisabled) { // Act // Assert - EXPECT_FALSE(IsEnabled()); + EXPECT_FALSE(IsReminderEnabled()); } TEST(BatAdsReminderFeaturesTest, RemindUserIfClickingTheSameAdAfter) { @@ -44,7 +44,7 @@ TEST(BatAdsReminderFeaturesTest, RemindUserIfClickingTheSameAdAfter) { base::FieldTrialParams params; params["remind_user_if_clicking_the_same_ad_after"] = "1"; std::vector enabled_features; - enabled_features.emplace_back(kReminder, params); + enabled_features.emplace_back(kReminderFeature, params); const std::vector disabled_features; @@ -55,7 +55,7 @@ TEST(BatAdsReminderFeaturesTest, RemindUserIfClickingTheSameAdAfter) { // Act // Assert - EXPECT_EQ(1U, GetRemindUserIfClickingTheSameAdAfter()); + EXPECT_EQ(1, kRemindUserIfClickingTheSameAdAfter.Get()); } TEST(BatAdsReminderFeaturesTest, DefaultRemindUserIfClickingTheSameAdAfter) { @@ -64,7 +64,7 @@ TEST(BatAdsReminderFeaturesTest, DefaultRemindUserIfClickingTheSameAdAfter) { // Act // Assert - EXPECT_EQ(3U, GetRemindUserIfClickingTheSameAdAfter()); + EXPECT_EQ(3, kRemindUserIfClickingTheSameAdAfter.Get()); } TEST(BatAdsReminderFeaturesTest, @@ -73,7 +73,7 @@ TEST(BatAdsReminderFeaturesTest, const std::vector enabled_features; std::vector disabled_features; - disabled_features.emplace_back(kReminder); + disabled_features.emplace_back(kReminderFeature); base::test::ScopedFeatureList scoped_feature_list; scoped_feature_list.InitWithFeaturesAndParameters(enabled_features, @@ -82,7 +82,7 @@ TEST(BatAdsReminderFeaturesTest, // Act // Assert - EXPECT_EQ(3U, GetRemindUserIfClickingTheSameAdAfter()); + EXPECT_EQ(3, kRemindUserIfClickingTheSameAdAfter.Get()); } -} // namespace brave_ads::features +} // namespace brave_ads diff --git a/components/brave_ads/core/internal/reminder/reminder_unittest.cc b/components/brave_ads/core/internal/reminder/reminder_unittest.cc index 78809dd53501..338de12f640d 100644 --- a/components/brave_ads/core/internal/reminder/reminder_unittest.cc +++ b/components/brave_ads/core/internal/reminder/reminder_unittest.cc @@ -53,7 +53,7 @@ TEST_F(BatAdsReminderTest, ShowReminderWhenUserClicksTheSameAdMultipleTimes) { ShowReminder(mojom::ReminderType::kClickedSameAdMultipleTimes)); // Act - AddHistory(/*count*/ features::GetRemindUserIfClickingTheSameAdAfter()); + AddHistory(/*count*/ kRemindUserIfClickingTheSameAdAfter.Get()); // Assert } @@ -64,7 +64,7 @@ TEST_F(BatAdsReminderTest, EXPECT_CALL(*ads_client_mock_, ShowReminder(_)).Times(0); // Act - AddHistory(/*count*/ features::GetRemindUserIfClickingTheSameAdAfter() - 1); + AddHistory(/*count*/ kRemindUserIfClickingTheSameAdAfter.Get() - 1); // Assert } @@ -75,7 +75,7 @@ TEST_F(BatAdsReminderTest, const std::vector enabled_features; std::vector disabled_features; - disabled_features.emplace_back(features::kReminder); + disabled_features.emplace_back(kReminderFeature); base::test::ScopedFeatureList scoped_feature_list; scoped_feature_list.InitWithFeaturesAndParameters(enabled_features, @@ -84,7 +84,7 @@ TEST_F(BatAdsReminderTest, EXPECT_CALL(*ads_client_mock_, ShowReminder(_)).Times(0); // Act - AddHistory(/*count*/ features::GetRemindUserIfClickingTheSameAdAfter()); + AddHistory(/*count*/ kRemindUserIfClickingTheSameAdAfter.Get()); // Assert } diff --git a/components/brave_ads/core/internal/reminder/reminders/clicked_same_ad_multiple_times_reminder_util.cc b/components/brave_ads/core/internal/reminder/reminders/clicked_same_ad_multiple_times_reminder_util.cc index 48cb23e025ee..5c51e4e60f85 100644 --- a/components/brave_ads/core/internal/reminder/reminders/clicked_same_ad_multiple_times_reminder_util.cc +++ b/components/brave_ads/core/internal/reminder/reminders/clicked_same_ad_multiple_times_reminder_util.cc @@ -20,7 +20,7 @@ namespace { bool CanRemind(const HistoryItemInfo& history_item) { return !PlatformHelper::GetInstance()->IsMobile() && - features::GetRemindUserIfClickingTheSameAdAfter() > 0 && + kRemindUserIfClickingTheSameAdAfter.Get() > 0 && history_item.ad_content.type == AdType::kNotificationAd && history_item.ad_content.confirmation_type == ConfirmationType::kClicked; @@ -46,7 +46,7 @@ bool DidUserClickTheSameAdMultipleTimes(const HistoryItemInfo& history_item) { } const size_t remind_user_if_clicking_the_same_ad_after = - features::GetRemindUserIfClickingTheSameAdAfter(); + kRemindUserIfClickingTheSameAdAfter.Get(); DCHECK_GT(remind_user_if_clicking_the_same_ad_after, 0U); return (count - 1) % remind_user_if_clicking_the_same_ad_after == diff --git a/components/brave_ads/core/internal/reminder/reminders/clicked_same_ad_multiple_times_reminder_util_unittest.cc b/components/brave_ads/core/internal/reminder/reminders/clicked_same_ad_multiple_times_reminder_util_unittest.cc index 4274eff5d3db..61ad7828c9c2 100644 --- a/components/brave_ads/core/internal/reminder/reminders/clicked_same_ad_multiple_times_reminder_util_unittest.cc +++ b/components/brave_ads/core/internal/reminder/reminders/clicked_same_ad_multiple_times_reminder_util_unittest.cc @@ -56,7 +56,7 @@ TEST_F(BatAdsClickedSameAdMultipleTimesReminderUtilTest, RemindUserOnDesktopOperatingSystems) { // Arrange const HistoryItemInfo history_item = - AddHistory(/*count*/ features::GetRemindUserIfClickingTheSameAdAfter(), + AddHistory(/*count*/ kRemindUserIfClickingTheSameAdAfter.Get(), /*should_use_random_creative_instance_guid*/ false); // Assert @@ -82,7 +82,7 @@ TEST_F(BatAdsClickedSameAdMultipleTimesReminderUtilTest, RemindUserAfterClickingTheSameAdMultipleTimes) { // Arrange const HistoryItemInfo history_item = - AddHistory(/*count*/ features::GetRemindUserIfClickingTheSameAdAfter(), + AddHistory(/*count*/ kRemindUserIfClickingTheSameAdAfter.Get(), /*should_use_random_creative_instance_guid*/ false); // Act @@ -95,7 +95,7 @@ TEST_F(BatAdsClickedSameAdMultipleTimesReminderUtilTest, DoNotRemindUserIfTheyDidNotClickTheSameAdMultipleTimes) { // Arrange const HistoryItemInfo history_item = AddHistory( - /*count*/ features::GetRemindUserIfClickingTheSameAdAfter() - 1, + /*count*/ kRemindUserIfClickingTheSameAdAfter.Get() - 1, /*should_use_random_creative_instance_guid*/ false); // Act @@ -108,7 +108,7 @@ TEST_F(BatAdsClickedSameAdMultipleTimesReminderUtilTest, RemindUserAfterOnceAgainClickingTheSameAdMultipleTimes) { // Arrange const HistoryItemInfo history_item = AddHistory( - /*count*/ features::GetRemindUserIfClickingTheSameAdAfter() * 2, + /*count*/ kRemindUserIfClickingTheSameAdAfter.Get() * 2, /*should_use_random_creative_instance_guid*/ false); // Act @@ -121,7 +121,7 @@ TEST_F(BatAdsClickedSameAdMultipleTimesReminderUtilTest, DoNotRemindUserIfTheyDidNotOnceAgainClickTheSameAdMultipleTimes) { // Arrange const HistoryItemInfo history_item = AddHistory( - /*count*/ (features::GetRemindUserIfClickingTheSameAdAfter() * 2) - 1, + /*count*/ (kRemindUserIfClickingTheSameAdAfter.Get() * 2) - 1, /*should_use_random_creative_instance_guid*/ false); // Act @@ -155,7 +155,7 @@ TEST_F( DoNotRemindUserIfTheyDidNotClickTheSameAdMultipleTimesAfterTheHistoryHasExpired) { // Arrange AddHistory( - /*count*/ features::GetRemindUserIfClickingTheSameAdAfter() - 1, + /*count*/ kRemindUserIfClickingTheSameAdAfter.Get() - 1, /*should_use_random_creative_instance_guid*/ false); AdvanceClockBy(kHistoryTimeWindow); @@ -172,7 +172,7 @@ TEST_F(BatAdsClickedSameAdMultipleTimesReminderUtilTest, DoNotRemindTheUserAfterClickingDifferentAds) { // Arrange const HistoryItemInfo history_item = AddHistory( - /*count*/ features::GetRemindUserIfClickingTheSameAdAfter(), + /*count*/ kRemindUserIfClickingTheSameAdAfter.Get(), /*should_use_random_creative_instance_guid*/ true); // Act diff --git a/components/brave_ads/core/internal/resources/behavioral/anti_targeting/anti_targeting_features.cc b/components/brave_ads/core/internal/resources/behavioral/anti_targeting/anti_targeting_features.cc index 1ef9fcf4e261..91e5db9d40d2 100644 --- a/components/brave_ads/core/internal/resources/behavioral/anti_targeting/anti_targeting_features.cc +++ b/components/brave_ads/core/internal/resources/behavioral/anti_targeting/anti_targeting_features.cc @@ -5,27 +5,14 @@ #include "brave/components/brave_ads/core/internal/resources/behavioral/anti_targeting/anti_targeting_features.h" -#include "base/metrics/field_trial_params.h" +namespace brave_ads { -namespace brave_ads::resource::features { - -namespace { - -constexpr char kResourceVersionFieldTrialParamName[] = "resource_version"; -constexpr int kResourceVersionDefaultValue = 1; - -} // namespace - -BASE_FEATURE(kAntiTargeting, "AntiTargeting", base::FEATURE_ENABLED_BY_DEFAULT); +BASE_FEATURE(kAntiTargetingFeature, + "AntiTargeting", + base::FEATURE_ENABLED_BY_DEFAULT); bool IsAntiTargetingEnabled() { - return base::FeatureList::IsEnabled(kAntiTargeting); -} - -int GetAntiTargetingResourceVersion() { - return GetFieldTrialParamByFeatureAsInt(kAntiTargeting, - kResourceVersionFieldTrialParamName, - kResourceVersionDefaultValue); + return base::FeatureList::IsEnabled(kAntiTargetingFeature); } -} // namespace brave_ads::resource::features +} // namespace brave_ads diff --git a/components/brave_ads/core/internal/resources/behavioral/anti_targeting/anti_targeting_features.h b/components/brave_ads/core/internal/resources/behavioral/anti_targeting/anti_targeting_features.h index 2fb8db46d454..f3513db9a39e 100644 --- a/components/brave_ads/core/internal/resources/behavioral/anti_targeting/anti_targeting_features.h +++ b/components/brave_ads/core/internal/resources/behavioral/anti_targeting/anti_targeting_features.h @@ -7,14 +7,17 @@ #define BRAVE_COMPONENTS_BRAVE_ADS_CORE_INTERNAL_RESOURCES_BEHAVIORAL_ANTI_TARGETING_ANTI_TARGETING_FEATURES_H_ #include "base/feature_list.h" +#include "base/metrics/field_trial_params.h" -namespace brave_ads::resource::features { +namespace brave_ads { -BASE_DECLARE_FEATURE(kAntiTargeting); +BASE_DECLARE_FEATURE(kAntiTargetingFeature); bool IsAntiTargetingEnabled(); -int GetAntiTargetingResourceVersion(); -} // namespace brave_ads::resource::features +constexpr base::FeatureParam kAntiTargetingResourceVersion{ + &kAntiTargetingFeature, "resource_version", 1}; + +} // namespace brave_ads #endif // BRAVE_COMPONENTS_BRAVE_ADS_CORE_INTERNAL_RESOURCES_BEHAVIORAL_ANTI_TARGETING_ANTI_TARGETING_FEATURES_H_ diff --git a/components/brave_ads/core/internal/resources/behavioral/anti_targeting/anti_targeting_features_unittest.cc b/components/brave_ads/core/internal/resources/behavioral/anti_targeting/anti_targeting_features_unittest.cc index e44876a7a95f..c9c0a4e844f9 100644 --- a/components/brave_ads/core/internal/resources/behavioral/anti_targeting/anti_targeting_features_unittest.cc +++ b/components/brave_ads/core/internal/resources/behavioral/anti_targeting/anti_targeting_features_unittest.cc @@ -12,9 +12,9 @@ // npm run test -- brave_unit_tests --filter=BatAds* -namespace brave_ads::resource::features { +namespace brave_ads { -TEST(BatAdsAntiTargetingFeaturesTest, IsAntiTargetingEnabled) { +TEST(BatAdsAntiTargetingFeaturesTest, IsEnabled) { // Arrange // Act @@ -23,12 +23,12 @@ TEST(BatAdsAntiTargetingFeaturesTest, IsAntiTargetingEnabled) { EXPECT_TRUE(IsAntiTargetingEnabled()); } -TEST(BatAdsUserActivityFeaturesTest, IsAntiTargetingDisabled) { +TEST(BatAdsAntiTargetingFeaturesTest, IsDisabled) { // Arrange const std::vector enabled_features; std::vector disabled_features; - disabled_features.emplace_back(kAntiTargeting); + disabled_features.emplace_back(kAntiTargetingFeature); base::test::ScopedFeatureList scoped_feature_list; scoped_feature_list.InitWithFeaturesAndParameters(enabled_features, @@ -45,7 +45,7 @@ TEST(BatAdsAntiTargetingFeaturesTest, GetAntiTargetingResourceVersion) { base::FieldTrialParams params; params["resource_version"] = "0"; std::vector enabled_features; - enabled_features.emplace_back(kAntiTargeting, params); + enabled_features.emplace_back(kAntiTargetingFeature, params); const std::vector disabled_features; @@ -56,7 +56,7 @@ TEST(BatAdsAntiTargetingFeaturesTest, GetAntiTargetingResourceVersion) { // Act // Assert - EXPECT_EQ(0, GetAntiTargetingResourceVersion()); + EXPECT_EQ(0, kAntiTargetingResourceVersion.Get()); } TEST(BatAdsAntiTargetingFeaturesTest, DefaultAntiTargetingResourceVersion) { @@ -65,7 +65,7 @@ TEST(BatAdsAntiTargetingFeaturesTest, DefaultAntiTargetingResourceVersion) { // Act // Assert - EXPECT_EQ(1, GetAntiTargetingResourceVersion()); + EXPECT_EQ(1, kAntiTargetingResourceVersion.Get()); } TEST(BatAdsIdleDetectionFeaturesTest, @@ -74,7 +74,7 @@ TEST(BatAdsIdleDetectionFeaturesTest, const std::vector enabled_features; std::vector disabled_features; - disabled_features.emplace_back(kAntiTargeting); + disabled_features.emplace_back(kAntiTargetingFeature); base::test::ScopedFeatureList scoped_feature_list; scoped_feature_list.InitWithFeaturesAndParameters(enabled_features, @@ -83,7 +83,7 @@ TEST(BatAdsIdleDetectionFeaturesTest, // Act // Assert - EXPECT_EQ(1, GetAntiTargetingResourceVersion()); + EXPECT_EQ(1, kAntiTargetingResourceVersion.Get()); } -} // namespace brave_ads::resource::features +} // namespace brave_ads diff --git a/components/brave_ads/core/internal/resources/behavioral/anti_targeting/anti_targeting_info.cc b/components/brave_ads/core/internal/resources/behavioral/anti_targeting/anti_targeting_info.cc index a301ff270ef1..e1723c08e4be 100644 --- a/components/brave_ads/core/internal/resources/behavioral/anti_targeting/anti_targeting_info.cc +++ b/components/brave_ads/core/internal/resources/behavioral/anti_targeting/anti_targeting_info.cc @@ -27,7 +27,7 @@ AntiTargetingInfo::CreateFromValue(const base::Value::Dict dict) { AntiTargetingInfo anti_targeting; if (absl::optional version = dict.FindInt("version")) { - if (features::GetAntiTargetingResourceVersion() != *version) { + if (kAntiTargetingResourceVersion.Get() != *version) { return base::unexpected("Failed to load from JSON, version missing"); } diff --git a/components/brave_ads/core/internal/resources/behavioral/anti_targeting/anti_targeting_resource.cc b/components/brave_ads/core/internal/resources/behavioral/anti_targeting/anti_targeting_resource.cc index a0358f5c2808..1c0178bba323 100644 --- a/components/brave_ads/core/internal/resources/behavioral/anti_targeting/anti_targeting_resource.cc +++ b/components/brave_ads/core/internal/resources/behavioral/anti_targeting/anti_targeting_resource.cc @@ -29,7 +29,7 @@ AntiTargeting::~AntiTargeting() { } void AntiTargeting::Load() { - LoadAndParseResource(kResourceId, features::GetAntiTargetingResourceVersion(), + LoadAndParseResource(kResourceId, kAntiTargetingResourceVersion.Get(), base::BindOnce(&AntiTargeting::OnLoadAndParseResource, weak_factory_.GetWeakPtr())); } diff --git a/components/brave_ads/core/internal/resources/behavioral/conversions/conversions_info.cc b/components/brave_ads/core/internal/resources/behavioral/conversions/conversions_info.cc index 7637e3a73444..4e5186f8e939 100644 --- a/components/brave_ads/core/internal/resources/behavioral/conversions/conversions_info.cc +++ b/components/brave_ads/core/internal/resources/behavioral/conversions/conversions_info.cc @@ -25,7 +25,7 @@ base::expected ConversionsInfo::CreateFromValue( ConversionsInfo conversion; if (absl::optional version = dict.FindInt("version")) { - if (features::GetConversionsResourceVersion() != *version) { + if (kConversionsResourceVersion.Get() != *version) { return base::unexpected("Failed to load from JSON, version missing"); } conversion.version = *version; diff --git a/components/brave_ads/core/internal/resources/behavioral/conversions/conversions_resource.cc b/components/brave_ads/core/internal/resources/behavioral/conversions/conversions_resource.cc index 5dae9b8e909a..861de8fc51b1 100644 --- a/components/brave_ads/core/internal/resources/behavioral/conversions/conversions_resource.cc +++ b/components/brave_ads/core/internal/resources/behavioral/conversions/conversions_resource.cc @@ -24,7 +24,7 @@ Conversions::Conversions() = default; Conversions::~Conversions() = default; void Conversions::Load() { - LoadAndParseResource(kResourceId, features::GetConversionsResourceVersion(), + LoadAndParseResource(kResourceId, kConversionsResourceVersion.Get(), base::BindOnce(&Conversions::OnLoadAndParseResource, weak_factory_.GetWeakPtr())); } diff --git a/components/brave_ads/core/internal/resources/behavioral/purchase_intent/purchase_intent_info.cc b/components/brave_ads/core/internal/resources/behavioral/purchase_intent/purchase_intent_info.cc index dfc07055987f..821004272bcc 100644 --- a/components/brave_ads/core/internal/resources/behavioral/purchase_intent/purchase_intent_info.cc +++ b/components/brave_ads/core/internal/resources/behavioral/purchase_intent/purchase_intent_info.cc @@ -29,7 +29,7 @@ PurchaseIntentInfo::CreateFromValue(const base::Value::Dict dict) { PurchaseIntentInfo purchase_intent; if (absl::optional version = dict.FindInt("version")) { - if (features::GetPurchaseIntentResourceVersion() != *version) { + if (kPurchaseIntentResourceVersion.Get() != *version) { return base::unexpected("Failed to load from JSON, version missing"); } diff --git a/components/brave_ads/core/internal/resources/behavioral/purchase_intent/purchase_intent_resource.cc b/components/brave_ads/core/internal/resources/behavioral/purchase_intent/purchase_intent_resource.cc index c25af4f678d7..832a5672aeee 100644 --- a/components/brave_ads/core/internal/resources/behavioral/purchase_intent/purchase_intent_resource.cc +++ b/components/brave_ads/core/internal/resources/behavioral/purchase_intent/purchase_intent_resource.cc @@ -24,7 +24,7 @@ PurchaseIntent::~PurchaseIntent() = default; void PurchaseIntent::Load() { LoadAndParseResource(kResourceId, - targeting::features::GetPurchaseIntentResourceVersion(), + targeting::kPurchaseIntentResourceVersion.Get(), base::BindOnce(&PurchaseIntent::OnLoadAndParseResource, weak_factory_.GetWeakPtr())); } diff --git a/components/brave_ads/core/internal/resources/contextual/text_classification/text_classification_resource.cc b/components/brave_ads/core/internal/resources/contextual/text_classification/text_classification_resource.cc index 29fb0260e2a1..ee1730bd2aff 100644 --- a/components/brave_ads/core/internal/resources/contextual/text_classification/text_classification_resource.cc +++ b/components/brave_ads/core/internal/resources/contextual/text_classification/text_classification_resource.cc @@ -28,7 +28,7 @@ bool TextClassification::IsInitialized() const { void TextClassification::Load() { LoadAndParseResource( - kResourceId, targeting::features::GetTextClassificationResourceVersion(), + kResourceId, targeting::kTextClassificationResourceVersion.Get(), base::BindOnce(&TextClassification::OnLoadAndParseResource, weak_factory_.GetWeakPtr())); } diff --git a/components/brave_ads/core/internal/resources/contextual/text_embedding/text_embedding_resource.cc b/components/brave_ads/core/internal/resources/contextual/text_embedding/text_embedding_resource.cc index ca8d1dd9a4ee..aed76790061a 100644 --- a/components/brave_ads/core/internal/resources/contextual/text_embedding/text_embedding_resource.cc +++ b/components/brave_ads/core/internal/resources/contextual/text_embedding/text_embedding_resource.cc @@ -28,7 +28,7 @@ bool TextEmbedding::IsInitialized() const { void TextEmbedding::Load() { LoadAndParseResource(kResourceId, - targeting::features::GetTextEmbeddingResourceVersion(), + targeting::kTextEmbeddingResourceVersion.Get(), base::BindOnce(&TextEmbedding::OnLoadAndParseResource, weak_factory_.GetWeakPtr())); } diff --git a/components/brave_ads/core/internal/settings/settings.cc b/components/brave_ads/core/internal/settings/settings.cc index 68dd1b720d81..d1fcaf65ec4e 100644 --- a/components/brave_ads/core/internal/settings/settings.cc +++ b/components/brave_ads/core/internal/settings/settings.cc @@ -20,8 +20,8 @@ int GetMaximumNotificationAdsPerHour() { prefs::kMaximumNotificationAdsPerHour); if (ads_per_hour == -1) { - ads_per_hour = static_cast( - notification_ads::features::GetDefaultAdsPerHour()); + ads_per_hour = + static_cast(notification_ads::kDefaultAdsPerHour.Get()); } const int64_t clamped_ads_per_hour = base::clamp( diff --git a/components/brave_ads/core/internal/settings/settings_unittest.cc b/components/brave_ads/core/internal/settings/settings_unittest.cc index c8fcf8c7501e..d6f363112020 100644 --- a/components/brave_ads/core/internal/settings/settings_unittest.cc +++ b/components/brave_ads/core/internal/settings/settings_unittest.cc @@ -23,7 +23,7 @@ TEST_F(BatAdsSettingsTest, AdsPerHourWhenUserHasChangedDefaultSetting) { std::vector enabled_features; base::FieldTrialParams params; params["default_ads_per_hour"] = "2"; - enabled_features.emplace_back(notification_ads::features::kFeature, params); + enabled_features.emplace_back(notification_ads::kAdsFeature, params); const std::vector disabled_features; @@ -46,7 +46,7 @@ TEST_F(BatAdsSettingsTest, AdsPerHourWhenUserHasNotChangedDefaultSetting) { std::vector enabled_features; base::FieldTrialParams params; params["default_ads_per_hour"] = "2"; - enabled_features.emplace_back(notification_ads::features::kFeature, params); + enabled_features.emplace_back(notification_ads::kAdsFeature, params); const std::vector disabled_features; @@ -66,7 +66,7 @@ TEST_F(BatAdsSettingsTest, ClampMinAdsPerHour) { std::vector enabled_features; base::FieldTrialParams params; params["default_ads_per_hour"] = "-1"; - enabled_features.emplace_back(notification_ads::features::kFeature, params); + enabled_features.emplace_back(notification_ads::kAdsFeature, params); const std::vector disabled_features; @@ -86,7 +86,7 @@ TEST_F(BatAdsSettingsTest, ClampMaxAdsPerHour) { std::vector enabled_features; base::FieldTrialParams params; params["default_ads_per_hour"] = "11"; - enabled_features.emplace_back(notification_ads::features::kFeature, params); + enabled_features.emplace_back(notification_ads::kAdsFeature, params); const std::vector disabled_features; diff --git a/components/brave_ads/core/internal/user_attention/idle_detection/idle_detection.cc b/components/brave_ads/core/internal/user_attention/idle_detection/idle_detection.cc index cbc622b12017..05f1545f05db 100644 --- a/components/brave_ads/core/internal/user_attention/idle_detection/idle_detection.cc +++ b/components/brave_ads/core/internal/user_attention/idle_detection/idle_detection.cc @@ -14,7 +14,7 @@ namespace brave_ads { IdleDetection::IdleDetection() { - idle_detection::MaybeUpdateIdleTimeThreshold(); + MaybeUpdateIdleTimeThreshold(); AdsClientHelper::AddObserver(this); } @@ -32,7 +32,7 @@ void IdleDetection::OnNotifyUserDidBecomeActive(const base::TimeDelta idle_time, BLOG(1, "Screen was locked before the user become active"); } - idle_detection::MaybeUpdateIdleTimeThreshold(); + MaybeUpdateIdleTimeThreshold(); SetLastUnIdleTimeDiagnosticEntry(base::Time::Now()); } diff --git a/components/brave_ads/core/internal/user_attention/idle_detection/idle_detection_features.cc b/components/brave_ads/core/internal/user_attention/idle_detection/idle_detection_features.cc index 7e786b3e246b..fd0eb585d09e 100644 --- a/components/brave_ads/core/internal/user_attention/idle_detection/idle_detection_features.cc +++ b/components/brave_ads/core/internal/user_attention/idle_detection/idle_detection_features.cc @@ -5,48 +5,14 @@ #include "brave/components/brave_ads/core/internal/user_attention/idle_detection/idle_detection_features.h" -#include "base/metrics/field_trial_params.h" -#include "base/time/time.h" -#include "brave/components/brave_ads/core/internal/common/metrics/field_trial_params_util.h" +namespace brave_ads { -namespace brave_ads::idle_detection::features { +BASE_FEATURE(kIdleDetectionFeature, + "IdleDetection", + base::FEATURE_ENABLED_BY_DEFAULT); -namespace { - -constexpr char kIdleTimeThresholdFieldTrialParamName[] = "idle_time_threshold"; -constexpr base::TimeDelta kIdleTimeThresholdDefaultValue = base::Seconds(5); - -constexpr char kMaximumIdleTimeFieldTrialParamName[] = "maximum_idle_time"; -constexpr base::TimeDelta kMaximumIdleTimeDefaultValue = base::Seconds(0); - -constexpr char kShouldDetectScreenWasLockedFieldTrialParamName[] = - "should_detect_screen_was_locked"; -constexpr bool kShouldDetectScreenWasLockedDefaultValue = false; - -} // namespace - -BASE_FEATURE(kIdleDetection, "IdleDetection", base::FEATURE_ENABLED_BY_DEFAULT); - -bool IsEnabled() { - return base::FeatureList::IsEnabled(kIdleDetection); -} - -base::TimeDelta GetIdleTimeThreshold() { - return GetFieldTrialParamByFeatureAsTimeDelta( - kIdleDetection, kIdleTimeThresholdFieldTrialParamName, - kIdleTimeThresholdDefaultValue); -} - -base::TimeDelta GetMaximumIdleTime() { - return GetFieldTrialParamByFeatureAsTimeDelta( - kIdleDetection, kMaximumIdleTimeFieldTrialParamName, - kMaximumIdleTimeDefaultValue); -} - -bool ShouldDetectScreenWasLocked() { - return GetFieldTrialParamByFeatureAsBool( - kIdleDetection, kShouldDetectScreenWasLockedFieldTrialParamName, - kShouldDetectScreenWasLockedDefaultValue); +bool IsIdleDetectionEnabled() { + return base::FeatureList::IsEnabled(kIdleDetectionFeature); } -} // namespace brave_ads::idle_detection::features +} // namespace brave_ads diff --git a/components/brave_ads/core/internal/user_attention/idle_detection/idle_detection_features.h b/components/brave_ads/core/internal/user_attention/idle_detection/idle_detection_features.h index 50bccfdba1c2..9350a355c36c 100644 --- a/components/brave_ads/core/internal/user_attention/idle_detection/idle_detection_features.h +++ b/components/brave_ads/core/internal/user_attention/idle_detection/idle_detection_features.h @@ -7,20 +7,27 @@ #define BRAVE_COMPONENTS_BRAVE_ADS_CORE_INTERNAL_USER_ATTENTION_IDLE_DETECTION_IDLE_DETECTION_FEATURES_H_ #include "base/feature_list.h" +#include "base/metrics/field_trial_params.h" namespace base { class TimeDelta; } // namespace base -namespace brave_ads::idle_detection::features { +namespace brave_ads { -BASE_DECLARE_FEATURE(kIdleDetection); +BASE_DECLARE_FEATURE(kIdleDetectionFeature); -bool IsEnabled(); -base::TimeDelta GetIdleTimeThreshold(); -base::TimeDelta GetMaximumIdleTime(); -bool ShouldDetectScreenWasLocked(); +bool IsIdleDetectionEnabled(); -} // namespace brave_ads::idle_detection::features +constexpr base::FeatureParam kIdleTimeThreshold{ + &kIdleDetectionFeature, "idle_time_threshold", base::Seconds(5)}; + +constexpr base::FeatureParam kMaximumIdleTime{ + &kIdleDetectionFeature, "maximum_idle_time", base::Seconds(0)}; + +constexpr base::FeatureParam kShouldDetectScreenWasLocked{ + &kIdleDetectionFeature, "should_detect_screen_was_locked", false}; + +} // namespace brave_ads #endif // BRAVE_COMPONENTS_BRAVE_ADS_CORE_INTERNAL_USER_ATTENTION_IDLE_DETECTION_IDLE_DETECTION_FEATURES_H_ diff --git a/components/brave_ads/core/internal/user_attention/idle_detection/idle_detection_features_unittest.cc b/components/brave_ads/core/internal/user_attention/idle_detection/idle_detection_features_unittest.cc index a8cffea2ba70..99f137bfbb79 100644 --- a/components/brave_ads/core/internal/user_attention/idle_detection/idle_detection_features_unittest.cc +++ b/components/brave_ads/core/internal/user_attention/idle_detection/idle_detection_features_unittest.cc @@ -12,7 +12,7 @@ // npm run test -- brave_unit_tests --filter=BatAds* -namespace brave_ads::idle_detection::features { +namespace brave_ads { TEST(BatAdsIdleDetectionFeaturesTest, IsEnabled) { // Arrange @@ -20,7 +20,7 @@ TEST(BatAdsIdleDetectionFeaturesTest, IsEnabled) { // Act // Assert - EXPECT_TRUE(IsEnabled()); + EXPECT_TRUE(IsIdleDetectionEnabled()); } TEST(BatAdsIdleDetectionFeaturesTest, IsDisabled) { @@ -28,7 +28,7 @@ TEST(BatAdsIdleDetectionFeaturesTest, IsDisabled) { const std::vector enabled_features; std::vector disabled_features; - disabled_features.emplace_back(kIdleDetection); + disabled_features.emplace_back(kIdleDetectionFeature); base::test::ScopedFeatureList scoped_feature_list; scoped_feature_list.InitWithFeaturesAndParameters(enabled_features, @@ -37,7 +37,7 @@ TEST(BatAdsIdleDetectionFeaturesTest, IsDisabled) { // Act // Assert - EXPECT_FALSE(IsEnabled()); + EXPECT_FALSE(IsIdleDetectionEnabled()); } TEST(BatAdsIdleDetectionFeaturesTest, GetIdleTimeThreshold) { @@ -45,7 +45,7 @@ TEST(BatAdsIdleDetectionFeaturesTest, GetIdleTimeThreshold) { base::FieldTrialParams params; params["idle_time_threshold"] = "7s"; std::vector enabled_features; - enabled_features.emplace_back(kIdleDetection, params); + enabled_features.emplace_back(kIdleDetectionFeature, params); const std::vector disabled_features; @@ -56,7 +56,7 @@ TEST(BatAdsIdleDetectionFeaturesTest, GetIdleTimeThreshold) { // Act // Assert - EXPECT_EQ(base::Seconds(7), GetIdleTimeThreshold()); + EXPECT_EQ(base::Seconds(7), kIdleTimeThreshold.Get()); } TEST(BatAdsIdleDetectionFeaturesTest, DefaultIdleTimeThreshold) { @@ -65,7 +65,7 @@ TEST(BatAdsIdleDetectionFeaturesTest, DefaultIdleTimeThreshold) { // Act // Assert - EXPECT_EQ(base::Seconds(5), GetIdleTimeThreshold()); + EXPECT_EQ(base::Seconds(5), kIdleTimeThreshold.Get()); } TEST(BatAdsIdleDetectionFeaturesTest, DefaultIdleTimeThresholdWhenDisabled) { @@ -73,7 +73,7 @@ TEST(BatAdsIdleDetectionFeaturesTest, DefaultIdleTimeThresholdWhenDisabled) { const std::vector enabled_features; std::vector disabled_features; - disabled_features.emplace_back(kIdleDetection); + disabled_features.emplace_back(kIdleDetectionFeature); base::test::ScopedFeatureList scoped_feature_list; scoped_feature_list.InitWithFeaturesAndParameters(enabled_features, @@ -82,7 +82,7 @@ TEST(BatAdsIdleDetectionFeaturesTest, DefaultIdleTimeThresholdWhenDisabled) { // Act // Assert - EXPECT_EQ(base::Seconds(5), GetIdleTimeThreshold()); + EXPECT_EQ(base::Seconds(5), kIdleTimeThreshold.Get()); } TEST(BatAdsIdleDetectionFeaturesTest, GetMaximumIdleTime) { @@ -90,7 +90,7 @@ TEST(BatAdsIdleDetectionFeaturesTest, GetMaximumIdleTime) { base::FieldTrialParams params; params["maximum_idle_time"] = "30m"; std::vector enabled_features; - enabled_features.emplace_back(kIdleDetection, params); + enabled_features.emplace_back(kIdleDetectionFeature, params); const std::vector disabled_features; @@ -101,7 +101,7 @@ TEST(BatAdsIdleDetectionFeaturesTest, GetMaximumIdleTime) { // Act // Assert - EXPECT_EQ(base::Minutes(30), GetMaximumIdleTime()); + EXPECT_EQ(base::Minutes(30), kMaximumIdleTime.Get()); } TEST(BatAdsIdleDetectionFeaturesTest, DefaultMaximumIdleTime) { @@ -110,7 +110,7 @@ TEST(BatAdsIdleDetectionFeaturesTest, DefaultMaximumIdleTime) { // Act // Assert - EXPECT_EQ(base::Seconds(0), GetMaximumIdleTime()); + EXPECT_EQ(base::Seconds(0), kMaximumIdleTime.Get()); } TEST(BatAdsIdleDetectionFeaturesTest, DefaultMaximumIdleTimeWhenDisabled) { @@ -118,7 +118,7 @@ TEST(BatAdsIdleDetectionFeaturesTest, DefaultMaximumIdleTimeWhenDisabled) { const std::vector enabled_features; std::vector disabled_features; - disabled_features.emplace_back(kIdleDetection); + disabled_features.emplace_back(kIdleDetectionFeature); base::test::ScopedFeatureList scoped_feature_list; scoped_feature_list.InitWithFeaturesAndParameters(enabled_features, @@ -127,7 +127,7 @@ TEST(BatAdsIdleDetectionFeaturesTest, DefaultMaximumIdleTimeWhenDisabled) { // Act // Assert - EXPECT_EQ(base::Seconds(0), GetMaximumIdleTime()); + EXPECT_EQ(base::Seconds(0), kMaximumIdleTime.Get()); } TEST(BatAdsIdleDetectionFeaturesTest, ShouldDetectScreenWasLocked) { @@ -135,7 +135,7 @@ TEST(BatAdsIdleDetectionFeaturesTest, ShouldDetectScreenWasLocked) { base::FieldTrialParams params; params["should_detect_screen_was_locked"] = "true"; std::vector enabled_features; - enabled_features.emplace_back(kIdleDetection, params); + enabled_features.emplace_back(kIdleDetectionFeature, params); const std::vector disabled_features; @@ -146,7 +146,7 @@ TEST(BatAdsIdleDetectionFeaturesTest, ShouldDetectScreenWasLocked) { // Act // Assert - EXPECT_TRUE(ShouldDetectScreenWasLocked()); + EXPECT_TRUE(kShouldDetectScreenWasLocked.Get()); } TEST(BatAdsIdleDetectionFeaturesTest, DefaultShouldDetectScreenWasLocked) { @@ -155,7 +155,7 @@ TEST(BatAdsIdleDetectionFeaturesTest, DefaultShouldDetectScreenWasLocked) { // Act // Assert - EXPECT_FALSE(ShouldDetectScreenWasLocked()); + EXPECT_FALSE(kShouldDetectScreenWasLocked.Get()); } TEST(BatAdsIdleDetectionFeaturesTest, ShouldDetectScreenWasLockedWhenDisabled) { @@ -163,7 +163,7 @@ TEST(BatAdsIdleDetectionFeaturesTest, ShouldDetectScreenWasLockedWhenDisabled) { const std::vector enabled_features; std::vector disabled_features; - disabled_features.emplace_back(kIdleDetection); + disabled_features.emplace_back(kIdleDetectionFeature); base::test::ScopedFeatureList scoped_feature_list; scoped_feature_list.InitWithFeaturesAndParameters(enabled_features, @@ -172,7 +172,7 @@ TEST(BatAdsIdleDetectionFeaturesTest, ShouldDetectScreenWasLockedWhenDisabled) { // Act // Assert - EXPECT_FALSE(ShouldDetectScreenWasLocked()); + EXPECT_FALSE(kShouldDetectScreenWasLocked.Get()); } -} // namespace brave_ads::idle_detection::features +} // namespace brave_ads diff --git a/components/brave_ads/core/internal/user_attention/idle_detection/idle_detection_util.cc b/components/brave_ads/core/internal/user_attention/idle_detection/idle_detection_util.cc index c7f4de287f09..49f362bb9ddc 100644 --- a/components/brave_ads/core/internal/user_attention/idle_detection/idle_detection_util.cc +++ b/components/brave_ads/core/internal/user_attention/idle_detection/idle_detection_util.cc @@ -10,14 +10,14 @@ #include "brave/components/brave_ads/core/internal/ads_client_helper.h" #include "brave/components/brave_ads/core/internal/user_attention/idle_detection/idle_detection_features.h" -namespace brave_ads::idle_detection { +namespace brave_ads { bool MaybeScreenWasLocked(const bool screen_was_locked) { - return features::ShouldDetectScreenWasLocked() && screen_was_locked; + return kShouldDetectScreenWasLocked.Get() && screen_was_locked; } bool HasExceededMaximumIdleTime(const base::TimeDelta idle_time) { - const base::TimeDelta maximum_idle_time = features::GetMaximumIdleTime(); + const base::TimeDelta maximum_idle_time = kMaximumIdleTime.Get(); if (maximum_idle_time.is_zero()) { // Infinite return false; } @@ -29,7 +29,7 @@ bool MaybeUpdateIdleTimeThreshold() { const int last_idle_time_threshold = AdsClientHelper::GetInstance()->GetIntegerPref(prefs::kIdleTimeThreshold); - const base::TimeDelta idle_time_threshold = features::GetIdleTimeThreshold(); + const base::TimeDelta idle_time_threshold = kIdleTimeThreshold.Get(); const int idle_time_threshold_as_int = static_cast(idle_time_threshold.InSeconds()); @@ -43,4 +43,4 @@ bool MaybeUpdateIdleTimeThreshold() { return true; } -} // namespace brave_ads::idle_detection +} // namespace brave_ads diff --git a/components/brave_ads/core/internal/user_attention/idle_detection/idle_detection_util.h b/components/brave_ads/core/internal/user_attention/idle_detection/idle_detection_util.h index 1b1092c36f52..30f9ae337915 100644 --- a/components/brave_ads/core/internal/user_attention/idle_detection/idle_detection_util.h +++ b/components/brave_ads/core/internal/user_attention/idle_detection/idle_detection_util.h @@ -10,7 +10,7 @@ namespace base { class TimeDelta; } // namespace base -namespace brave_ads::idle_detection { +namespace brave_ads { bool MaybeScreenWasLocked(bool screen_was_locked); @@ -18,6 +18,6 @@ bool HasExceededMaximumIdleTime(base::TimeDelta idle_time); bool MaybeUpdateIdleTimeThreshold(); -} // namespace brave_ads::idle_detection +} // namespace brave_ads #endif // BRAVE_COMPONENTS_BRAVE_ADS_CORE_INTERNAL_USER_ATTENTION_IDLE_DETECTION_IDLE_DETECTION_UTIL_H_ diff --git a/components/brave_ads/core/internal/user_attention/idle_detection/idle_detection_util_unittest.cc b/components/brave_ads/core/internal/user_attention/idle_detection/idle_detection_util_unittest.cc index 54f20d401b42..35f88c8bb38f 100644 --- a/components/brave_ads/core/internal/user_attention/idle_detection/idle_detection_util_unittest.cc +++ b/components/brave_ads/core/internal/user_attention/idle_detection/idle_detection_util_unittest.cc @@ -14,7 +14,7 @@ // npm run test -- brave_unit_tests --filter=BatAds* -namespace brave_ads::idle_detection { +namespace brave_ads { class BatAdsIdleDetectionUtilTest : public UnitTestBase {}; @@ -23,7 +23,7 @@ TEST_F(BatAdsIdleDetectionUtilTest, WasLocked) { base::FieldTrialParams params; params["should_detect_screen_was_locked"] = "true"; std::vector enabled_features; - enabled_features.emplace_back(features::kIdleDetection, params); + enabled_features.emplace_back(kIdleDetectionFeature, params); const std::vector disabled_features; @@ -44,7 +44,7 @@ TEST_F(BatAdsIdleDetectionUtilTest, WasLockedIfShouldDetectScreenWasLocked) { base::FieldTrialParams params; params["should_detect_screen_was_locked"] = "true"; std::vector enabled_features; - enabled_features.emplace_back(features::kIdleDetection, params); + enabled_features.emplace_back(kIdleDetectionFeature, params); const std::vector disabled_features; @@ -65,7 +65,7 @@ TEST_F(BatAdsIdleDetectionUtilTest, WasNotLocked) { base::FieldTrialParams params; params["should_detect_screen_was_locked"] = "true"; std::vector enabled_features; - enabled_features.emplace_back(features::kIdleDetection, params); + enabled_features.emplace_back(kIdleDetectionFeature, params); const std::vector disabled_features; @@ -86,7 +86,7 @@ TEST_F(BatAdsIdleDetectionUtilTest, WasNotLockedIfShouldNotDetectWasLocked) { base::FieldTrialParams params; params["should_detect_screen_was_locked"] = "false"; std::vector enabled_features; - enabled_features.emplace_back(features::kIdleDetection, params); + enabled_features.emplace_back(kIdleDetectionFeature, params); const std::vector disabled_features; @@ -107,7 +107,7 @@ TEST_F(BatAdsIdleDetectionUtilTest, HasNotExceededMaximumIdleTime) { base::FieldTrialParams params; params["maximum_idle_time"] = "10s"; std::vector enabled_features; - enabled_features.emplace_back(features::kIdleDetection, params); + enabled_features.emplace_back(kIdleDetectionFeature, params); const std::vector disabled_features; @@ -128,7 +128,7 @@ TEST_F(BatAdsIdleDetectionUtilTest, HasNotExceededInfiniteMaximumIdleTime) { base::FieldTrialParams params; params["maximum_idle_time"] = "0s"; std::vector enabled_features; - enabled_features.emplace_back(features::kIdleDetection, params); + enabled_features.emplace_back(kIdleDetectionFeature, params); const std::vector disabled_features; @@ -149,7 +149,7 @@ TEST_F(BatAdsIdleDetectionUtilTest, HasExceededMaximumIdleTime) { base::FieldTrialParams params; params["maximum_idle_time"] = "10s"; std::vector enabled_features; - enabled_features.emplace_back(features::kIdleDetection, params); + enabled_features.emplace_back(kIdleDetectionFeature, params); const std::vector disabled_features; @@ -170,7 +170,7 @@ TEST_F(BatAdsIdleDetectionUtilTest, UpdateIdleTimeThreshold) { base::FieldTrialParams params; params["idle_time_threshold"] = "5s"; std::vector enabled_features; - enabled_features.emplace_back(features::kIdleDetection, params); + enabled_features.emplace_back(kIdleDetectionFeature, params); const std::vector disabled_features; @@ -195,7 +195,7 @@ TEST_F(BatAdsIdleDetectionUtilTest, DoNotUpdateIdleTimeThreshold) { base::FieldTrialParams params; params["idle_time_threshold"] = "10s"; std::vector enabled_features; - enabled_features.emplace_back(features::kIdleDetection, params); + enabled_features.emplace_back(kIdleDetectionFeature, params); const std::vector disabled_features; @@ -215,4 +215,4 @@ TEST_F(BatAdsIdleDetectionUtilTest, DoNotUpdateIdleTimeThreshold) { EXPECT_EQ(10, idle_time_threshold); } -} // namespace brave_ads::idle_detection +} // namespace brave_ads diff --git a/components/brave_ads/core/internal/user_attention/user_activity/user_activity_features.cc b/components/brave_ads/core/internal/user_attention/user_activity/user_activity_features.cc index efdc93b81901..c19d67128c6c 100644 --- a/components/brave_ads/core/internal/user_attention/user_activity/user_activity_features.cc +++ b/components/brave_ads/core/internal/user_attention/user_activity/user_activity_features.cc @@ -5,45 +5,14 @@ #include "brave/components/brave_ads/core/internal/user_attention/user_activity/user_activity_features.h" -#include "base/metrics/field_trial_params.h" -#include "base/time/time.h" -#include "brave/components/brave_ads/core/internal/common/metrics/field_trial_params_util.h" +namespace brave_ads { -namespace brave_ads::user_activity::features { +BASE_FEATURE(kUserActivityFeature, + "UserActivity", + base::FEATURE_ENABLED_BY_DEFAULT); -namespace { - -constexpr char kTriggersFieldTrialParamName[] = "triggers"; -constexpr char kTriggersDefaultValue[] = - "0D0B14110D0B14110D0B14110D0B1411=-1.0;0D0B1411070707=-1.0;07070707=-1.0"; - -constexpr char kTimeWindowFieldTrialParamName[] = "time_window"; -constexpr base::TimeDelta kTimeWindowDefaultValue = base::Minutes(15); - -constexpr char kThresholdFieldTrialParamName[] = "threshold"; -constexpr double kTresholdDefaultValue = 0.0; - -} // namespace - -BASE_FEATURE(kFeature, "UserActivity", base::FEATURE_ENABLED_BY_DEFAULT); - -bool IsEnabled() { - return base::FeatureList::IsEnabled(kFeature); -} - -std::string GetTriggers() { - return GetFieldTrialParamByFeatureAsString( - kFeature, kTriggersFieldTrialParamName, kTriggersDefaultValue); -} - -base::TimeDelta GetTimeWindow() { - return GetFieldTrialParamByFeatureAsTimeDelta( - kFeature, kTimeWindowFieldTrialParamName, kTimeWindowDefaultValue); -} - -double GetThreshold() { - return GetFieldTrialParamByFeatureAsDouble( - kFeature, kThresholdFieldTrialParamName, kTresholdDefaultValue); +bool IsUserActivityEnabled() { + return base::FeatureList::IsEnabled(kUserActivityFeature); } -} // namespace brave_ads::user_activity::features +} // namespace brave_ads diff --git a/components/brave_ads/core/internal/user_attention/user_activity/user_activity_features.h b/components/brave_ads/core/internal/user_attention/user_activity/user_activity_features.h index edbaf1b104b4..0d34687b5598 100644 --- a/components/brave_ads/core/internal/user_attention/user_activity/user_activity_features.h +++ b/components/brave_ads/core/internal/user_attention/user_activity/user_activity_features.h @@ -9,20 +9,28 @@ #include #include "base/feature_list.h" +#include "base/metrics/field_trial_params.h" namespace base { class TimeDelta; } // namespace base -namespace brave_ads::user_activity::features { +namespace brave_ads { -BASE_DECLARE_FEATURE(kFeature); +BASE_DECLARE_FEATURE(kUserActivityFeature); -bool IsEnabled(); -std::string GetTriggers(); -base::TimeDelta GetTimeWindow(); -double GetThreshold(); +bool IsUserActivityEnabled(); -} // namespace brave_ads::user_activity::features +constexpr base::FeatureParam kUserActivityTriggers{ + &kUserActivityFeature, "triggers", + "0D0B14110D0B14110D0B14110D0B1411=-1.0;0D0B1411070707=-1.0;07070707=-1.0"}; + +constexpr base::FeatureParam kUserActivityTimeWindow{ + &kUserActivityFeature, "time_window", base::Minutes(15)}; + +constexpr base::FeatureParam kUserActivityThreshold{ + &kUserActivityFeature, "threshold", 0.0}; + +} // namespace brave_ads #endif // BRAVE_COMPONENTS_BRAVE_ADS_CORE_INTERNAL_USER_ATTENTION_USER_ACTIVITY_USER_ACTIVITY_FEATURES_H_ diff --git a/components/brave_ads/core/internal/user_attention/user_activity/user_activity_features_unittest.cc b/components/brave_ads/core/internal/user_attention/user_activity/user_activity_features_unittest.cc index d016ac50d6a9..920deb984c2b 100644 --- a/components/brave_ads/core/internal/user_attention/user_activity/user_activity_features_unittest.cc +++ b/components/brave_ads/core/internal/user_attention/user_activity/user_activity_features_unittest.cc @@ -12,7 +12,7 @@ // npm run test -- brave_unit_tests --filter=BatAds* -namespace brave_ads::user_activity::features { +namespace brave_ads { TEST(BatAdsUserActivityFeaturesTest, IsEnabled) { // Arrange @@ -20,7 +20,7 @@ TEST(BatAdsUserActivityFeaturesTest, IsEnabled) { // Act // Assert - EXPECT_TRUE(IsEnabled()); + EXPECT_TRUE(IsUserActivityEnabled()); } TEST(BatAdsUserActivityFeaturesTest, IsDisabled) { @@ -28,7 +28,7 @@ TEST(BatAdsUserActivityFeaturesTest, IsDisabled) { const std::vector enabled_features; std::vector disabled_features; - disabled_features.emplace_back(kFeature); + disabled_features.emplace_back(kUserActivityFeature); base::test::ScopedFeatureList scoped_feature_list; scoped_feature_list.InitWithFeaturesAndParameters(enabled_features, @@ -37,7 +37,7 @@ TEST(BatAdsUserActivityFeaturesTest, IsDisabled) { // Act // Assert - EXPECT_FALSE(IsEnabled()); + EXPECT_FALSE(IsUserActivityEnabled()); } TEST(BatAdsUserActivityFeaturesTest, GetTriggers) { @@ -45,7 +45,7 @@ TEST(BatAdsUserActivityFeaturesTest, GetTriggers) { base::FieldTrialParams params; params["triggers"] = "01=0.5;010203=1.0;0203=0.75"; std::vector enabled_features; - enabled_features.emplace_back(kFeature, params); + enabled_features.emplace_back(kUserActivityFeature, params); const std::vector disabled_features; @@ -56,7 +56,7 @@ TEST(BatAdsUserActivityFeaturesTest, GetTriggers) { // Act // Assert - EXPECT_EQ("01=0.5;010203=1.0;0203=0.75", GetTriggers()); + EXPECT_EQ("01=0.5;010203=1.0;0203=0.75", kUserActivityTriggers.Get()); } TEST(BatAdsUserActivityFeaturesTest, DefaultTriggers) { @@ -67,7 +67,7 @@ TEST(BatAdsUserActivityFeaturesTest, DefaultTriggers) { // Assert EXPECT_EQ( "0D0B14110D0B14110D0B14110D0B1411=-1.0;0D0B1411070707=-1.0;07070707=-1.0", - GetTriggers()); + kUserActivityTriggers.Get()); } TEST(BatAdsUserActivityFeaturesTest, DefaultTriggersWhenDisabled) { @@ -75,7 +75,7 @@ TEST(BatAdsUserActivityFeaturesTest, DefaultTriggersWhenDisabled) { const std::vector enabled_features; std::vector disabled_features; - disabled_features.emplace_back(kFeature); + disabled_features.emplace_back(kUserActivityFeature); base::test::ScopedFeatureList scoped_feature_list; scoped_feature_list.InitWithFeaturesAndParameters(enabled_features, @@ -86,7 +86,7 @@ TEST(BatAdsUserActivityFeaturesTest, DefaultTriggersWhenDisabled) { // Assert EXPECT_EQ( "0D0B14110D0B14110D0B14110D0B1411=-1.0;0D0B1411070707=-1.0;07070707=-1.0", - GetTriggers()); + kUserActivityTriggers.Get()); } TEST(BatAdsUserActivityFeaturesTest, GetTimeWindow) { @@ -94,7 +94,7 @@ TEST(BatAdsUserActivityFeaturesTest, GetTimeWindow) { base::FieldTrialParams params; params["time_window"] = "2h"; std::vector enabled_features; - enabled_features.emplace_back(kFeature, params); + enabled_features.emplace_back(kUserActivityFeature, params); const std::vector disabled_features; @@ -105,7 +105,7 @@ TEST(BatAdsUserActivityFeaturesTest, GetTimeWindow) { // Act // Assert - EXPECT_EQ(base::Hours(2), GetTimeWindow()); + EXPECT_EQ(base::Hours(2), kUserActivityTimeWindow.Get()); } TEST(BatAdsUserActivityFeaturesTest, DefaultTimeWindow) { @@ -114,7 +114,7 @@ TEST(BatAdsUserActivityFeaturesTest, DefaultTimeWindow) { // Act // Assert - EXPECT_EQ(base::Minutes(15), GetTimeWindow()); + EXPECT_EQ(base::Minutes(15), kUserActivityTimeWindow.Get()); } TEST(BatAdsUserActivityFeaturesTest, DefaultTimeWindowWhenDisabled) { @@ -122,7 +122,7 @@ TEST(BatAdsUserActivityFeaturesTest, DefaultTimeWindowWhenDisabled) { const std::vector enabled_features; std::vector disabled_features; - disabled_features.emplace_back(kFeature); + disabled_features.emplace_back(kUserActivityFeature); base::test::ScopedFeatureList scoped_feature_list; scoped_feature_list.InitWithFeaturesAndParameters(enabled_features, @@ -131,7 +131,7 @@ TEST(BatAdsUserActivityFeaturesTest, DefaultTimeWindowWhenDisabled) { // Act // Assert - EXPECT_EQ(base::Minutes(15), GetTimeWindow()); + EXPECT_EQ(base::Minutes(15), kUserActivityTimeWindow.Get()); } TEST(BatAdsUserActivityFeaturesTest, GetThreshold) { @@ -139,7 +139,7 @@ TEST(BatAdsUserActivityFeaturesTest, GetThreshold) { base::FieldTrialParams params; params["threshold"] = "7.0"; std::vector enabled_features; - enabled_features.emplace_back(kFeature, params); + enabled_features.emplace_back(kUserActivityFeature, params); const std::vector disabled_features; @@ -150,7 +150,7 @@ TEST(BatAdsUserActivityFeaturesTest, GetThreshold) { // Act // Assert - EXPECT_EQ(7.0, GetThreshold()); + EXPECT_EQ(7.0, kUserActivityThreshold.Get()); } TEST(BatAdsUserActivityFeaturesTest, DefaultThreshold) { @@ -159,7 +159,7 @@ TEST(BatAdsUserActivityFeaturesTest, DefaultThreshold) { // Act // Assert - EXPECT_EQ(0.0, GetThreshold()); + EXPECT_EQ(0.0, kUserActivityThreshold.Get()); } TEST(BatAdsUserActivityFeaturesTest, DefaultThresholdWhenDisabled) { @@ -167,7 +167,7 @@ TEST(BatAdsUserActivityFeaturesTest, DefaultThresholdWhenDisabled) { const std::vector enabled_features; std::vector disabled_features; - disabled_features.emplace_back(kFeature); + disabled_features.emplace_back(kUserActivityFeature); base::test::ScopedFeatureList scoped_feature_list; scoped_feature_list.InitWithFeaturesAndParameters(enabled_features, @@ -176,7 +176,7 @@ TEST(BatAdsUserActivityFeaturesTest, DefaultThresholdWhenDisabled) { // Act // Assert - EXPECT_EQ(0.0, GetThreshold()); + EXPECT_EQ(0.0, kUserActivityThreshold.Get()); } -} // namespace brave_ads::user_activity::features +} // namespace brave_ads diff --git a/components/brave_ads/core/internal/user_attention/user_activity/user_activity_manager.cc b/components/brave_ads/core/internal/user_attention/user_activity/user_activity_manager.cc index 6ebdbba4854a..cb4ef262bf5d 100644 --- a/components/brave_ads/core/internal/user_attention/user_activity/user_activity_manager.cc +++ b/components/brave_ads/core/internal/user_attention/user_activity/user_activity_manager.cc @@ -32,22 +32,16 @@ UserActivityManager* g_user_activity_manager_instance = nullptr; void LogEvent(const UserActivityEventType event_type) { const UserActivityTriggerList triggers = - ToUserActivityTriggers(user_activity::features::GetTriggers()); + ToUserActivityTriggers(kUserActivityTriggers.Get()); - const base::TimeDelta time_window = user_activity::features::GetTimeWindow(); const UserActivityEventList events = - UserActivityManager::GetInstance()->GetHistoryForTimeWindow(time_window); + UserActivityManager::GetInstance()->GetHistoryForTimeWindow( + kUserActivityTimeWindow.Get()); - const double score = GetUserActivityScore(triggers, events); - - const double threshold = user_activity::features::GetThreshold(); - - const std::string encoded_event_type = - base::HexEncode(&event_type, sizeof(int8_t)); - - BLOG(6, "Triggered event: " - << encoded_event_type << " (" << score << ":" << threshold << ":" - << user_activity::features::GetTimeWindow() << ")"); + BLOG(6, "Triggered event: " << base::HexEncode(&event_type, sizeof(int8_t)) + << " (" << GetUserActivityScore(triggers, events) + << ":" << kUserActivityThreshold.Get() << ":" + << kUserActivityTimeWindow.Get() << ")"); } } // namespace diff --git a/components/brave_ads/core/internal/user_attention/user_activity/user_activity_scoring_util.cc b/components/brave_ads/core/internal/user_attention/user_activity/user_activity_scoring_util.cc index e231e211ae86..4ef1445d3aca 100644 --- a/components/brave_ads/core/internal/user_attention/user_activity/user_activity_scoring_util.cc +++ b/components/brave_ads/core/internal/user_attention/user_activity/user_activity_scoring_util.cc @@ -16,16 +16,13 @@ namespace brave_ads { bool WasUserActive() { const UserActivityTriggerList triggers = - ToUserActivityTriggers(user_activity::features::GetTriggers()); + ToUserActivityTriggers(kUserActivityTriggers.Get()); - const base::TimeDelta time_window = user_activity::features::GetTimeWindow(); const UserActivityEventList events = - UserActivityManager::GetInstance()->GetHistoryForTimeWindow(time_window); + UserActivityManager::GetInstance()->GetHistoryForTimeWindow( + kUserActivityTimeWindow.Get()); - const double score = GetUserActivityScore(triggers, events); - - const double threshold = user_activity::features::GetThreshold(); - return score >= threshold; + return GetUserActivityScore(triggers, events) >= kUserActivityThreshold.Get(); } } // namespace brave_ads diff --git a/components/brave_ads/core/internal/user_attention/user_activity/user_activity_scoring_util_unittest.cc b/components/brave_ads/core/internal/user_attention/user_activity/user_activity_scoring_util_unittest.cc index 1352eb845588..9a1ba58992d8 100644 --- a/components/brave_ads/core/internal/user_attention/user_activity/user_activity_scoring_util_unittest.cc +++ b/components/brave_ads/core/internal/user_attention/user_activity/user_activity_scoring_util_unittest.cc @@ -26,7 +26,7 @@ class BatAdsUserActivityScoringUtilTest : public UnitTestBase { params["time_window"] = "1h"; params["threshold"] = "2.0"; std::vector enabled_features; - enabled_features.emplace_back(user_activity::features::kFeature, params); + enabled_features.emplace_back(kUserActivityFeature, params); const std::vector disabled_features; @@ -82,7 +82,7 @@ TEST_F(BatAdsUserActivityScoringUtilTest, UserActivityEventType::kClosedTab); const base::TimeDelta elapsed_time_window = - user_activity::features::GetTimeWindow() + base::Seconds(1); + kUserActivityTimeWindow.Get() + base::Seconds(1); AdvanceClockBy(elapsed_time_window); // Act From 4e6bc9d53cb745263cb1f21cf1fb53c34bd3fdeb Mon Sep 17 00:00:00 2001 From: Terry Mancey Date: Fri, 14 Apr 2023 13:34:34 +0100 Subject: [PATCH 04/11] Fix Brave Ads logging for resources version mismatch --- .../resources/behavioral/anti_targeting/anti_targeting_info.cc | 2 +- .../resources/behavioral/conversions/conversions_info.cc | 2 +- .../behavioral/purchase_intent/purchase_intent_info.cc | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/components/brave_ads/core/internal/resources/behavioral/anti_targeting/anti_targeting_info.cc b/components/brave_ads/core/internal/resources/behavioral/anti_targeting/anti_targeting_info.cc index e1723c08e4be..8f2044597093 100644 --- a/components/brave_ads/core/internal/resources/behavioral/anti_targeting/anti_targeting_info.cc +++ b/components/brave_ads/core/internal/resources/behavioral/anti_targeting/anti_targeting_info.cc @@ -28,7 +28,7 @@ AntiTargetingInfo::CreateFromValue(const base::Value::Dict dict) { if (absl::optional version = dict.FindInt("version")) { if (kAntiTargetingResourceVersion.Get() != *version) { - return base::unexpected("Failed to load from JSON, version missing"); + return base::unexpected("Failed to load from JSON, version mismatch"); } anti_targeting.version = *version; diff --git a/components/brave_ads/core/internal/resources/behavioral/conversions/conversions_info.cc b/components/brave_ads/core/internal/resources/behavioral/conversions/conversions_info.cc index 4e5186f8e939..1cca6a1668c4 100644 --- a/components/brave_ads/core/internal/resources/behavioral/conversions/conversions_info.cc +++ b/components/brave_ads/core/internal/resources/behavioral/conversions/conversions_info.cc @@ -26,7 +26,7 @@ base::expected ConversionsInfo::CreateFromValue( if (absl::optional version = dict.FindInt("version")) { if (kConversionsResourceVersion.Get() != *version) { - return base::unexpected("Failed to load from JSON, version missing"); + return base::unexpected("Failed to load from JSON, version mismatch"); } conversion.version = *version; } diff --git a/components/brave_ads/core/internal/resources/behavioral/purchase_intent/purchase_intent_info.cc b/components/brave_ads/core/internal/resources/behavioral/purchase_intent/purchase_intent_info.cc index 821004272bcc..76cc1b6525eb 100644 --- a/components/brave_ads/core/internal/resources/behavioral/purchase_intent/purchase_intent_info.cc +++ b/components/brave_ads/core/internal/resources/behavioral/purchase_intent/purchase_intent_info.cc @@ -30,7 +30,7 @@ PurchaseIntentInfo::CreateFromValue(const base::Value::Dict dict) { if (absl::optional version = dict.FindInt("version")) { if (kPurchaseIntentResourceVersion.Get() != *version) { - return base::unexpected("Failed to load from JSON, version missing"); + return base::unexpected("Failed to load from JSON, version mismatch"); } purchase_intent.version = *version; From 908198eb43842d8df432b4f6f8c52eb21e470d25 Mon Sep 17 00:00:00 2001 From: Terry Mancey Date: Fri, 14 Apr 2023 13:42:57 +0100 Subject: [PATCH 05/11] Cleanup Brave Ads database table variable names --- .../notification_ads/eligible_notification_ads_v3.cc | 2 +- .../creative_inline_content_ads_database_table_test.cc | 8 ++++---- .../creative_notification_ads_database_table_test.cc | 4 ++-- .../creative_promoted_content_ads_database_table_test.cc | 5 ++--- 4 files changed, 9 insertions(+), 10 deletions(-) diff --git a/components/brave_ads/core/internal/ads/serving/eligible_ads/pipelines/notification_ads/eligible_notification_ads_v3.cc b/components/brave_ads/core/internal/ads/serving/eligible_ads/pipelines/notification_ads/eligible_notification_ads_v3.cc index 910f689ed5fd..7d6b3a7094a3 100644 --- a/components/brave_ads/core/internal/ads/serving/eligible_ads/pipelines/notification_ads/eligible_notification_ads_v3.cc +++ b/components/brave_ads/core/internal/ads/serving/eligible_ads/pipelines/notification_ads/eligible_notification_ads_v3.cc @@ -74,7 +74,7 @@ void EligibleAdsV3::GetEligibleAds( const AdEventList& ad_events, GetEligibleAdsCallback callback, const BrowsingHistoryList& browsing_history) { - database::table::CreativeNotificationAds database_table; + const database::table::CreativeNotificationAds database_table; database_table.GetAll(base::BindOnce( &EligibleAdsV3::OnGetEligibleAds, weak_factory_.GetWeakPtr(), user_model, ad_events, browsing_history, std::move(callback))); diff --git a/components/brave_ads/core/internal/creatives/inline_content_ads/creative_inline_content_ads_database_table_test.cc b/components/brave_ads/core/internal/creatives/inline_content_ads/creative_inline_content_ads_database_table_test.cc index 7040288a7345..251d3422de75 100644 --- a/components/brave_ads/core/internal/creatives/inline_content_ads/creative_inline_content_ads_database_table_test.cc +++ b/components/brave_ads/core/internal/creatives/inline_content_ads/creative_inline_content_ads_database_table_test.cc @@ -37,8 +37,8 @@ TEST_F(BatAdsCreativeInlineContentAdsDatabaseTableIntegrationTest, // Act // Assert - const database::table::CreativeInlineContentAds creative_ads; - creative_ads.GetForSegmentsAndDimensions( + const database::table::CreativeInlineContentAds database_table; + database_table.GetForSegmentsAndDimensions( /*segments*/ {"technology & computing"}, /*dimensions*/ "200x100", base::BindOnce([](const bool success, const SegmentList& /*segments*/, const CreativeInlineContentAdList& creative_ads) { @@ -54,8 +54,8 @@ TEST_F(BatAdsCreativeInlineContentAdsDatabaseTableIntegrationTest, // Act // Assert - const database::table::CreativeInlineContentAds creative_ads; - creative_ads.GetForDimensions( + const database::table::CreativeInlineContentAds database_table; + database_table.GetForDimensions( "200x100", base::BindOnce([](const bool success, const CreativeInlineContentAdList& creative_ads) { diff --git a/components/brave_ads/core/internal/creatives/notification_ads/creative_notification_ads_database_table_test.cc b/components/brave_ads/core/internal/creatives/notification_ads/creative_notification_ads_database_table_test.cc index 48e9dc232bb5..7bd46fb07de1 100644 --- a/components/brave_ads/core/internal/creatives/notification_ads/creative_notification_ads_database_table_test.cc +++ b/components/brave_ads/core/internal/creatives/notification_ads/creative_notification_ads_database_table_test.cc @@ -34,8 +34,8 @@ TEST_F(BatAdsCreativeNotificationAdsDatabaseTableIntegrationTest, // Act // Assert - const database::table::CreativeNotificationAds creative_ads; - creative_ads.GetForSegments( + const database::table::CreativeNotificationAds database_table; + database_table.GetForSegments( /*segments*/ {"technology & computing"}, base::BindOnce([](const bool success, const SegmentList& /*segments*/, const CreativeNotificationAdList& creative_ads) { diff --git a/components/brave_ads/core/internal/creatives/promoted_content_ads/creative_promoted_content_ads_database_table_test.cc b/components/brave_ads/core/internal/creatives/promoted_content_ads/creative_promoted_content_ads_database_table_test.cc index fde49ce6a9cc..ffa355194449 100644 --- a/components/brave_ads/core/internal/creatives/promoted_content_ads/creative_promoted_content_ads_database_table_test.cc +++ b/components/brave_ads/core/internal/creatives/promoted_content_ads/creative_promoted_content_ads_database_table_test.cc @@ -35,9 +35,8 @@ TEST_F(BatAdsCreativePromotedContentAdsDatabaseTableIntegrationTest, // Act // Assert - const database::table::CreativePromotedContentAds - creative_promoted_content_ads; - creative_promoted_content_ads.GetForSegments( + const database::table::CreativePromotedContentAds database_table; + database_table.GetForSegments( /*segments*/ {"technology & computing"}, base::BindOnce([](const bool success, const SegmentList& /*segments*/, const CreativePromotedContentAdList& From 662f0c2ce0e93c2feaa19764d66229d11b98b494 Mon Sep 17 00:00:00 2001 From: Terry Mancey Date: Fri, 14 Apr 2023 14:04:46 +0100 Subject: [PATCH 06/11] Cleanup Brave Ads name spacing --- .../core/internal/account/account.cc | 2 +- .../core/internal/account/account_unittest.cc | 6 +-- .../core/internal/account/account_util.cc | 2 +- .../internal/account/statement/statement.cc | 2 +- .../account/transactions/transactions.cc | 32 +++++++-------- .../account/transactions/transactions.h | 29 ++++++------- .../transactions/transactions_unittest.cc | 22 +++++----- .../transactions_unittest_util.cc | 2 +- .../account/user_data/conversion_user_data.cc | 2 +- .../user_data/conversion_user_data_builder.cc | 4 +- .../user_data/conversion_user_data_builder.h | 4 +- .../conversion_user_data_builder_unittest.cc | 4 +- .../ads/ad_events/ad_event_unittest_util.cc | 25 +++++++++++ .../ads/ad_events/ad_event_unittest_util.h | 6 +++ .../ad_events_database_table_unittest_util.cc | 41 ------------------- .../ad_events_database_table_unittest_util.h | 17 -------- .../eligible_ads_unittest_util.cc | 5 +-- .../text_embedding_html_events.cc | 8 ++-- .../text_embedding_html_events.h | 8 ++-- components/brave_ads/core/test/BUILD.gn | 2 - 20 files changed, 96 insertions(+), 127 deletions(-) delete mode 100644 components/brave_ads/core/internal/ads/ad_events/ad_events_database_table_unittest_util.cc delete mode 100644 components/brave_ads/core/internal/ads/ad_events/ad_events_database_table_unittest_util.h diff --git a/components/brave_ads/core/internal/account/account.cc b/components/brave_ads/core/internal/account/account.cc index c3f0561217a5..5ecb6072b4ad 100644 --- a/components/brave_ads/core/internal/account/account.cc +++ b/components/brave_ads/core/internal/account/account.cc @@ -188,7 +188,7 @@ void Account::ProcessDeposit(const std::string& creative_instance_id, const std::string& segment, const ConfirmationType& confirmation_type, const double value) const { - transactions::Add( + AddTransaction( creative_instance_id, segment, value, ad_type, confirmation_type, base::BindOnce(&Account::OnDepositProcessed, weak_factory_.GetWeakPtr(), creative_instance_id, ad_type, confirmation_type)); diff --git a/components/brave_ads/core/internal/account/account_unittest.cc b/components/brave_ads/core/internal/account/account_unittest.cc index 612aa3a54c3c..031a18067ec1 100644 --- a/components/brave_ads/core/internal/account/account_unittest.cc +++ b/components/brave_ads/core/internal/account/account_unittest.cc @@ -396,7 +396,7 @@ TEST_F(BatAdsAccountTest, DepositForCash) { expected_transaction.confirmation_type = ConfirmationType::kViewed; expected_transactions.push_back(expected_transaction); - transactions::GetForDateRange( + GetTransactionsForDateRange( DistantPast(), DistantFuture(), base::BindOnce( [](const TransactionList& expected_transactions, const bool success, @@ -434,7 +434,7 @@ TEST_F(BatAdsAccountTest, DepositForNonCash) { expected_transaction.confirmation_type = ConfirmationType::kClicked; expected_transactions.push_back(expected_transaction); - transactions::GetForDateRange( + GetTransactionsForDateRange( DistantPast(), DistantFuture(), base::BindOnce( [](const TransactionList& expected_transactions, const bool success, @@ -463,7 +463,7 @@ TEST_F(BatAdsAccountTest, DoNotDepositCashIfCreativeInstanceIdDoesNotExist) { EXPECT_TRUE(failed_to_process_deposit_); EXPECT_FALSE(statement_of_accounts_did_change_); - transactions::GetForDateRange( + GetTransactionsForDateRange( DistantPast(), DistantFuture(), base::BindOnce( [](const bool success, const TransactionList& transactions) { diff --git a/components/brave_ads/core/internal/account/account_util.cc b/components/brave_ads/core/internal/account/account_util.cc index 37d1d93db8cd..3137fbe18d97 100644 --- a/components/brave_ads/core/internal/account/account_util.cc +++ b/components/brave_ads/core/internal/account/account_util.cc @@ -22,7 +22,7 @@ bool ShouldRewardUser() { } void ResetRewards(ResetRewardsCallback callback) { - transactions::RemoveAll(base::BindOnce( + RemoveAllTransactions(base::BindOnce( [](ResetRewardsCallback callback, const bool success) { if (!success) { BLOG(0, "Failed to remove transactions"); diff --git a/components/brave_ads/core/internal/account/statement/statement.cc b/components/brave_ads/core/internal/account/statement/statement.cc index 28de7e33e17a..6335abcf3d2d 100644 --- a/components/brave_ads/core/internal/account/statement/statement.cc +++ b/components/brave_ads/core/internal/account/statement/statement.cc @@ -22,7 +22,7 @@ void BuildStatement(BuildStatementCallback callback) { const base::Time from_time = GetTimeInDistantPast(); const base::Time to_time = GetLocalTimeAtEndOfThisMonth(); - transactions::GetForDateRange( + GetTransactionsForDateRange( from_time, to_time, base::BindOnce( [](BuildStatementCallback callback, const bool success, diff --git a/components/brave_ads/core/internal/account/transactions/transactions.cc b/components/brave_ads/core/internal/account/transactions/transactions.cc index 1f95b8fcbe8c..eda234b3045b 100644 --- a/components/brave_ads/core/internal/account/transactions/transactions.cc +++ b/components/brave_ads/core/internal/account/transactions/transactions.cc @@ -16,14 +16,14 @@ #include "brave/components/brave_ads/core/confirmation_type.h" #include "brave/components/brave_ads/core/internal/account/transactions/transactions_database_table.h" -namespace brave_ads::transactions { +namespace brave_ads { -TransactionInfo Add(const std::string& creative_instance_id, - const std::string& segment, - const double value, - const AdType& ad_type, - const ConfirmationType& confirmation_type, - AddCallback callback) { +TransactionInfo AddTransaction(const std::string& creative_instance_id, + const std::string& segment, + const double value, + const AdType& ad_type, + const ConfirmationType& confirmation_type, + AddTransactionCallback callback) { DCHECK(!creative_instance_id.empty()); DCHECK_NE(AdType::kUndefined, ad_type); DCHECK_NE(ConfirmationType::kUndefined, confirmation_type); @@ -41,8 +41,8 @@ TransactionInfo Add(const std::string& creative_instance_id, database_table.Save( {transaction}, base::BindOnce( - [](AddCallback callback, const TransactionInfo& transaction, - const bool success) { + [](AddTransactionCallback callback, + const TransactionInfo& transaction, const bool success) { if (!success) { return std::move(callback).Run(/*success*/ false, {}); } @@ -54,14 +54,14 @@ TransactionInfo Add(const std::string& creative_instance_id, return transaction; } -void GetForDateRange(const base::Time from_time, - const base::Time to_time, - GetCallback callback) { +void GetTransactionsForDateRange(const base::Time from_time, + const base::Time to_time, + GetTransactionsCallback callback) { const database::table::Transactions database_table; database_table.GetForDateRange( from_time, to_time, base::BindOnce( - [](GetCallback callback, const bool success, + [](GetTransactionsCallback callback, const bool success, const TransactionList& transactions) { if (!success) { return std::move(callback).Run(/*success*/ false, {}); @@ -72,10 +72,10 @@ void GetForDateRange(const base::Time from_time, std::move(callback))); } -void RemoveAll(RemoveAllCallback callback) { +void RemoveAllTransactions(RemoveAllTransactionsCallback callback) { const database::table::Transactions database_table; database_table.Delete(base::BindOnce( - [](RemoveAllCallback callback, const bool success) { + [](RemoveAllTransactionsCallback callback, const bool success) { if (!success) { return std::move(callback).Run(/*success*/ false); } @@ -85,4 +85,4 @@ void RemoveAll(RemoveAllCallback callback) { std::move(callback))); } -} // namespace brave_ads::transactions +} // namespace brave_ads diff --git a/components/brave_ads/core/internal/account/transactions/transactions.h b/components/brave_ads/core/internal/account/transactions/transactions.h index ceb94796fb2c..a47951f37fc3 100644 --- a/components/brave_ads/core/internal/account/transactions/transactions.h +++ b/components/brave_ads/core/internal/account/transactions/transactions.h @@ -20,30 +20,27 @@ namespace brave_ads { class AdType; class ConfirmationType; -namespace transactions { - -using AddCallback = +using AddTransactionCallback = base::OnceCallback; -using GetCallback = +using GetTransactionsCallback = base::OnceCallback; -using RemoveAllCallback = base::OnceCallback; +using RemoveAllTransactionsCallback = base::OnceCallback; -TransactionInfo Add(const std::string& creative_instance_id, - const std::string& segment, - double value, - const AdType& ad_type, - const ConfirmationType& confirmation_type, - AddCallback callback); +TransactionInfo AddTransaction(const std::string& creative_instance_id, + const std::string& segment, + double value, + const AdType& ad_type, + const ConfirmationType& confirmation_type, + AddTransactionCallback callback); -void GetForDateRange(base::Time from_time, - base::Time to_time, - GetCallback callback); +void GetTransactionsForDateRange(base::Time from_time, + base::Time to_time, + GetTransactionsCallback callback); -void RemoveAll(RemoveAllCallback callback); +void RemoveAllTransactions(RemoveAllTransactionsCallback callback); -} // namespace transactions } // namespace brave_ads #endif // BRAVE_COMPONENTS_BRAVE_ADS_CORE_INTERNAL_ACCOUNT_TRANSACTIONS_TRANSACTIONS_H_ diff --git a/components/brave_ads/core/internal/account/transactions/transactions_unittest.cc b/components/brave_ads/core/internal/account/transactions/transactions_unittest.cc index a6ae4ae7a349..1a4e98ce2717 100644 --- a/components/brave_ads/core/internal/account/transactions/transactions_unittest.cc +++ b/components/brave_ads/core/internal/account/transactions/transactions_unittest.cc @@ -23,18 +23,18 @@ TEST_F(BatAdsTransactionsTest, Add) { // Arrange // Act - const TransactionInfo transaction = transactions::Add( - "42a33833-0a08-4cbb-ab3e-458e020221ab", "segment", 0.01, - AdType::kNotificationAd, ConfirmationType::kViewed, - base::BindOnce( - [](const bool success, const TransactionInfo& /*transaction*/) { - ASSERT_TRUE(success); - })); + const TransactionInfo transaction = + AddTransaction("42a33833-0a08-4cbb-ab3e-458e020221ab", "segment", 0.01, + AdType::kNotificationAd, ConfirmationType::kViewed, + base::BindOnce([](const bool success, + const TransactionInfo& /*transaction*/) { + ASSERT_TRUE(success); + })); // Assert TransactionList expected_transactions = {transaction}; - transactions::GetForDateRange( + GetTransactionsForDateRange( DistantPast(), DistantFuture(), base::BindOnce( [](const TransactionList& expected_transactions, const bool success, @@ -70,7 +70,7 @@ TEST_F(BatAdsTransactionsTest, GetForDateRange) { // Act TransactionList expected_transactions = {transaction_2, transaction_3}; - transactions::GetForDateRange( + GetTransactionsForDateRange( Now(), DistantFuture(), base::BindOnce( [](const TransactionList& expected_transactions, const bool success, @@ -98,11 +98,11 @@ TEST_F(BatAdsTransactionsTest, RemoveAll) { SaveTransactions(transactions); // Act - transactions::RemoveAll( + RemoveAllTransactions( base::BindOnce([](const bool success) { ASSERT_TRUE(success); })); // Assert - transactions::GetForDateRange( + GetTransactionsForDateRange( DistantPast(), DistantFuture(), base::BindOnce( [](const bool success, const TransactionList& transactions) { diff --git a/components/brave_ads/core/internal/account/transactions/transactions_unittest_util.cc b/components/brave_ads/core/internal/account/transactions/transactions_unittest_util.cc index 2e859b0181a2..b08b11861b49 100644 --- a/components/brave_ads/core/internal/account/transactions/transactions_unittest_util.cc +++ b/components/brave_ads/core/internal/account/transactions/transactions_unittest_util.cc @@ -49,7 +49,7 @@ TransactionInfo BuildTransaction(const double value, int GetTransactionCount() { int count = 0; - transactions::GetForDateRange( + GetTransactionsForDateRange( DistantPast(), DistantFuture(), base::BindOnce( [](int* count, const bool success, diff --git a/components/brave_ads/core/internal/account/user_data/conversion_user_data.cc b/components/brave_ads/core/internal/account/user_data/conversion_user_data.cc index f88ccf125699..4e450a572971 100644 --- a/components/brave_ads/core/internal/account/user_data/conversion_user_data.cc +++ b/components/brave_ads/core/internal/account/user_data/conversion_user_data.cc @@ -24,7 +24,7 @@ void GetConversion(const std::string& creative_instance_id, return std::move(callback).Run(base::Value::Dict()); } - builder::BuildConversion( + BuildConversion( creative_instance_id, base::BindOnce( [](ConversionCallback callback, base::Value::Dict user_data) { diff --git a/components/brave_ads/core/internal/account/user_data/conversion_user_data_builder.cc b/components/brave_ads/core/internal/account/user_data/conversion_user_data_builder.cc index 02f5e5a3b39b..7ea061ffb632 100644 --- a/components/brave_ads/core/internal/account/user_data/conversion_user_data_builder.cc +++ b/components/brave_ads/core/internal/account/user_data/conversion_user_data_builder.cc @@ -18,7 +18,7 @@ #include "brave/components/brave_ads/core/internal/conversions/verifiable_conversion_envelope_info.h" #include "third_party/abseil-cpp/absl/types/optional.h" -namespace brave_ads::user_data::builder { +namespace brave_ads::user_data { void BuildConversion(const std::string& creative_instance_id, BuildConversionCallback callback) { @@ -66,4 +66,4 @@ void BuildConversion(const std::string& creative_instance_id, std::move(callback))); } -} // namespace brave_ads::user_data::builder +} // namespace brave_ads::user_data diff --git a/components/brave_ads/core/internal/account/user_data/conversion_user_data_builder.h b/components/brave_ads/core/internal/account/user_data/conversion_user_data_builder.h index be9b6b78af09..aba60b811148 100644 --- a/components/brave_ads/core/internal/account/user_data/conversion_user_data_builder.h +++ b/components/brave_ads/core/internal/account/user_data/conversion_user_data_builder.h @@ -11,7 +11,7 @@ #include "base/functional/callback_forward.h" #include "base/values.h" -namespace brave_ads::user_data::builder { +namespace brave_ads::user_data { using BuildConversionCallback = base::OnceCallback; @@ -19,6 +19,6 @@ using BuildConversionCallback = void BuildConversion(const std::string& creative_instance_id, BuildConversionCallback callback); -} // namespace brave_ads::user_data::builder +} // namespace brave_ads::user_data #endif // BRAVE_COMPONENTS_BRAVE_ADS_CORE_INTERNAL_ACCOUNT_USER_DATA_CONVERSION_USER_DATA_BUILDER_H_ diff --git a/components/brave_ads/core/internal/account/user_data/conversion_user_data_builder_unittest.cc b/components/brave_ads/core/internal/account/user_data/conversion_user_data_builder_unittest.cc index 714bb6a667f0..49c387c464af 100644 --- a/components/brave_ads/core/internal/account/user_data/conversion_user_data_builder_unittest.cc +++ b/components/brave_ads/core/internal/account/user_data/conversion_user_data_builder_unittest.cc @@ -16,7 +16,7 @@ // npm run test -- brave_unit_tests --filter=BatAds* -namespace brave_ads::user_data::builder { +namespace brave_ads::user_data { class BatAdsConversionUserDataBuilderTest : public UnitTestBase {}; @@ -85,4 +85,4 @@ TEST_F(BatAdsConversionUserDataBuilderTest, })); } -} // namespace brave_ads::user_data::builder +} // namespace brave_ads::user_data diff --git a/components/brave_ads/core/internal/ads/ad_events/ad_event_unittest_util.cc b/components/brave_ads/core/internal/ads/ad_events/ad_event_unittest_util.cc index 89562e716c42..417a0b912c0a 100644 --- a/components/brave_ads/core/internal/ads/ad_events/ad_event_unittest_util.cc +++ b/components/brave_ads/core/internal/ads/ad_events/ad_event_unittest_util.cc @@ -5,12 +5,14 @@ #include "brave/components/brave_ads/core/internal/ads/ad_events/ad_event_unittest_util.h" +#include #include #include "base/check_op.h" #include "base/functional/bind.h" #include "base/guid.h" #include "base/time/time.h" +#include "brave/components/brave_ads/common/interfaces/ads.mojom.h" #include "brave/components/brave_ads/core/ad_info.h" #include "brave/components/brave_ads/core/ad_type.h" #include "brave/components/brave_ads/core/confirmation_type.h" @@ -18,6 +20,7 @@ #include "brave/components/brave_ads/core/internal/ads/ad_events/ad_events.h" #include "brave/components/brave_ads/core/internal/ads/ad_unittest_constants.h" #include "brave/components/brave_ads/core/internal/ads_client_helper.h" +#include "brave/components/brave_ads/core/internal/common/database/database_table_util.h" #include "brave/components/brave_ads/core/internal/common/instance_id_constants.h" #include "brave/components/brave_ads/core/internal/common/unittest/unittest_time_util.h" #include "brave/components/brave_ads/core/internal/creatives/creative_ad_info.h" @@ -132,4 +135,26 @@ int GetAdEventCount(const AdType& ad_type, return ad_events.size(); } +void ResetAdEvents(ResultAdEventsCallback callback) { + mojom::DBTransactionInfoPtr transaction = mojom::DBTransactionInfo::New(); + database::DeleteTable(transaction.get(), "ad_events"); + + AdsClientHelper::GetInstance()->RunDBTransaction( + std::move(transaction), + base::BindOnce( + [](ResultAdEventsCallback callback, + mojom::DBCommandResponseInfoPtr command_response) { + if (!command_response || + command_response->status != + mojom::DBCommandResponseInfo::StatusType::RESPONSE_OK) { + return std::move(callback).Run(/*success*/ false); + } + + RebuildAdEventHistoryFromDatabase(); + + std::move(callback).Run(/*success*/ true); + }, + std::move(callback))); +} + } // namespace brave_ads diff --git a/components/brave_ads/core/internal/ads/ad_events/ad_event_unittest_util.h b/components/brave_ads/core/internal/ads/ad_events/ad_event_unittest_util.h index b280be2137ae..eacb96af67c2 100644 --- a/components/brave_ads/core/internal/ads/ad_events/ad_event_unittest_util.h +++ b/components/brave_ads/core/internal/ads/ad_events/ad_event_unittest_util.h @@ -8,12 +8,16 @@ #include +#include "base/functional/callback.h" + namespace base { class Time; } // namespace base namespace brave_ads { +using ResultAdEventsCallback = base::OnceCallback; + class AdType; class ConfirmationType; struct AdEventInfo; @@ -48,6 +52,8 @@ void FireAdEvents(const AdEventInfo& ad_event, int count); int GetAdEventCount(const AdType& ad_type, const ConfirmationType& confirmation_type); +void ResetAdEvents(ResultAdEventsCallback callback); + } // namespace brave_ads #endif // BRAVE_COMPONENTS_BRAVE_ADS_CORE_INTERNAL_ADS_AD_EVENTS_AD_EVENT_UNITTEST_UTIL_H_ diff --git a/components/brave_ads/core/internal/ads/ad_events/ad_events_database_table_unittest_util.cc b/components/brave_ads/core/internal/ads/ad_events/ad_events_database_table_unittest_util.cc deleted file mode 100644 index 638d2550ec1c..000000000000 --- a/components/brave_ads/core/internal/ads/ad_events/ad_events_database_table_unittest_util.cc +++ /dev/null @@ -1,41 +0,0 @@ -/* Copyright (c) 2021 The Brave Authors. All rights reserved. - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this file, - * You can obtain one at https://mozilla.org/MPL/2.0/. */ - -#include "brave/components/brave_ads/core/internal/ads/ad_events/ad_events_database_table_unittest_util.h" - -#include - -#include "base/functional/bind.h" -#include "brave/components/brave_ads/common/interfaces/ads.mojom.h" -#include "brave/components/brave_ads/core/internal/ads/ad_events/ad_events.h" -#include "brave/components/brave_ads/core/internal/ads_client_helper.h" -#include "brave/components/brave_ads/core/internal/common/database/database_table_util.h" - -namespace brave_ads::database::table::ad_events { - -void Reset(ResultCallback callback) { - mojom::DBTransactionInfoPtr transaction = mojom::DBTransactionInfo::New(); - - DeleteTable(transaction.get(), "ad_events"); - - AdsClientHelper::GetInstance()->RunDBTransaction( - std::move(transaction), - base::BindOnce( - [](ResultCallback callback, - mojom::DBCommandResponseInfoPtr command_response) { - if (!command_response || - command_response->status != - mojom::DBCommandResponseInfo::StatusType::RESPONSE_OK) { - return std::move(callback).Run(/*success*/ false); - } - - RebuildAdEventHistoryFromDatabase(); - - std::move(callback).Run(/*success*/ true); - }, - std::move(callback))); -} - -} // namespace brave_ads::database::table::ad_events diff --git a/components/brave_ads/core/internal/ads/ad_events/ad_events_database_table_unittest_util.h b/components/brave_ads/core/internal/ads/ad_events/ad_events_database_table_unittest_util.h deleted file mode 100644 index 5d51e56d07c5..000000000000 --- a/components/brave_ads/core/internal/ads/ad_events/ad_events_database_table_unittest_util.h +++ /dev/null @@ -1,17 +0,0 @@ -/* Copyright (c) 2021 The Brave Authors. All rights reserved. - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this file, - * You can obtain one at https://mozilla.org/MPL/2.0/. */ - -#ifndef BRAVE_COMPONENTS_BRAVE_ADS_CORE_INTERNAL_ADS_AD_EVENTS_AD_EVENTS_DATABASE_TABLE_UNITTEST_UTIL_H_ -#define BRAVE_COMPONENTS_BRAVE_ADS_CORE_INTERNAL_ADS_AD_EVENTS_AD_EVENTS_DATABASE_TABLE_UNITTEST_UTIL_H_ - -#include "brave/components/brave_ads/core/ads_client_callback.h" - -namespace brave_ads::database::table::ad_events { - -void Reset(ResultCallback callback); - -} // namespace brave_ads::database::table::ad_events - -#endif // BRAVE_COMPONENTS_BRAVE_ADS_CORE_INTERNAL_ADS_AD_EVENTS_AD_EVENTS_DATABASE_TABLE_UNITTEST_UTIL_H_ diff --git a/components/brave_ads/core/internal/ads/serving/eligible_ads/eligible_ads_unittest_util.cc b/components/brave_ads/core/internal/ads/serving/eligible_ads/eligible_ads_unittest_util.cc index 8750eb010e15..1377558f9fe1 100644 --- a/components/brave_ads/core/internal/ads/serving/eligible_ads/eligible_ads_unittest_util.cc +++ b/components/brave_ads/core/internal/ads/serving/eligible_ads/eligible_ads_unittest_util.cc @@ -8,7 +8,7 @@ #include "base/check.h" #include "base/functional/bind.h" #include "brave/components/brave_ads/core/ad_type.h" -#include "brave/components/brave_ads/core/internal/ads/ad_events/ad_events_database_table_unittest_util.h" +#include "brave/components/brave_ads/core/internal/ads/ad_events/ad_event_unittest_util.h" #include "brave/components/brave_ads/core/internal/deprecated/client/client_state_manager.h" namespace brave_ads { @@ -18,8 +18,7 @@ void ResetEligibleAds(const AdType& type) { ClientStateManager::GetInstance()->ResetAllSeenAdvertisersForType(type); - database::table::ad_events::Reset( - base::BindOnce([](const bool success) { CHECK(success); })); + ResetAdEvents(base::BindOnce([](const bool success) { CHECK(success); })); } } // namespace brave_ads diff --git a/components/brave_ads/core/internal/processors/contextual/text_embedding/text_embedding_html_events.cc b/components/brave_ads/core/internal/processors/contextual/text_embedding/text_embedding_html_events.cc index f57fd1252cf0..ef7ded3ee060 100644 --- a/components/brave_ads/core/internal/processors/contextual/text_embedding/text_embedding_html_events.cc +++ b/components/brave_ads/core/internal/processors/contextual/text_embedding/text_embedding_html_events.cc @@ -31,22 +31,22 @@ TextEmbeddingHtmlEventInfo BuildTextEmbeddingHtmlEvent( void LogTextEmbeddingHtmlEvent( const TextEmbeddingHtmlEventInfo& text_embedding_html_event, - TextEmbeddingHtmlEventCallback callback) { + LogTextEmbeddingHtmlEventCallback callback) { database::table::TextEmbeddingHtmlEvents database_table; database_table.LogEvent( text_embedding_html_event, base::BindOnce( - [](TextEmbeddingHtmlEventCallback callback, const bool success) { + [](LogTextEmbeddingHtmlEventCallback callback, const bool success) { std::move(callback).Run(success); }, std::move(callback))); } void PurgeStaleTextEmbeddingHtmlEvents( - TextEmbeddingHtmlEventCallback callback) { + LogTextEmbeddingHtmlEventCallback callback) { const database::table::TextEmbeddingHtmlEvents database_table; database_table.PurgeStale(base::BindOnce( - [](TextEmbeddingHtmlEventCallback callback, const bool success) { + [](LogTextEmbeddingHtmlEventCallback callback, const bool success) { std::move(callback).Run(success); }, std::move(callback))); diff --git a/components/brave_ads/core/internal/processors/contextual/text_embedding/text_embedding_html_events.h b/components/brave_ads/core/internal/processors/contextual/text_embedding/text_embedding_html_events.h index 114da821aae1..b204dc215613 100644 --- a/components/brave_ads/core/internal/processors/contextual/text_embedding/text_embedding_html_events.h +++ b/components/brave_ads/core/internal/processors/contextual/text_embedding/text_embedding_html_events.h @@ -12,7 +12,8 @@ namespace brave_ads { -using TextEmbeddingHtmlEventCallback = base::OnceCallback; +using LogTextEmbeddingHtmlEventCallback = + base::OnceCallback; struct TextEmbeddingHtmlEventInfo; @@ -21,9 +22,10 @@ TextEmbeddingHtmlEventInfo BuildTextEmbeddingHtmlEvent( void LogTextEmbeddingHtmlEvent( const TextEmbeddingHtmlEventInfo& text_embedding_html_event, - TextEmbeddingHtmlEventCallback callback); + LogTextEmbeddingHtmlEventCallback callback); -void PurgeStaleTextEmbeddingHtmlEvents(TextEmbeddingHtmlEventCallback callback); +void PurgeStaleTextEmbeddingHtmlEvents( + LogTextEmbeddingHtmlEventCallback callback); void GetTextEmbeddingHtmlEventsFromDatabase( database::table::GetTextEmbeddingHtmlEventsCallback callback); diff --git a/components/brave_ads/core/test/BUILD.gn b/components/brave_ads/core/test/BUILD.gn index 1959b9f062bf..04526cd6298f 100644 --- a/components/brave_ads/core/test/BUILD.gn +++ b/components/brave_ads/core/test/BUILD.gn @@ -93,8 +93,6 @@ source_set("brave_ads_unit_tests") { "//brave/components/brave_ads/core/internal/ads/ad_events/ad_event_unittest_util.h", "//brave/components/brave_ads/core/internal/ads/ad_events/ad_event_util_unittest.cc", "//brave/components/brave_ads/core/internal/ads/ad_events/ad_events_database_table_unittest.cc", - "//brave/components/brave_ads/core/internal/ads/ad_events/ad_events_database_table_unittest_util.cc", - "//brave/components/brave_ads/core/internal/ads/ad_events/ad_events_database_table_unittest_util.h", "//brave/components/brave_ads/core/internal/ads/ad_events/inline_content_ads/inline_content_ad_event_handler_unittest.cc", "//brave/components/brave_ads/core/internal/ads/ad_events/new_tab_page_ads/new_tab_page_ad_event_handler_if_ads_disabled_unittest.cc", "//brave/components/brave_ads/core/internal/ads/ad_events/new_tab_page_ads/new_tab_page_ad_event_handler_unittest.cc", From 8628e436d4d73aaf4c5cf8a395dd33756d1ca7e9 Mon Sep 17 00:00:00 2001 From: Terry Mancey Date: Fri, 14 Apr 2023 14:29:14 +0100 Subject: [PATCH 07/11] Cleanup Brave Ads parameter comments --- .../account/transactions/transactions.cc | 6 +++-- .../user_data/conversion_user_data_builder.cc | 6 ++--- .../ads/ad_events/ad_events_database_table.cc | 2 +- .../eligible_inline_content_ads_v1.cc | 15 ++++++++----- .../eligible_inline_content_ads_v2.cc | 15 ++++++++----- .../eligible_new_tab_page_ads_v1.cc | 15 ++++++++----- .../eligible_new_tab_page_ads_v2.cc | 15 ++++++++----- .../eligible_notification_ads_v1.cc | 15 ++++++++----- .../eligible_notification_ads_v2.cc | 15 ++++++++----- .../eligible_notification_ads_v3.cc | 15 ++++++++----- .../conversion_queue_database_table.cc | 9 +++++--- .../conversions/conversions_database_table.cc | 3 ++- .../creatives/creative_ads_database_table.cc | 6 +++-- ...ative_inline_content_ads_database_table.cc | 22 ++++++++++++------- ...reative_new_tab_page_ads_database_table.cc | 18 ++++++++++----- ...reative_notification_ads_database_table.cc | 9 +++++--- ...ive_promoted_content_ads_database_table.cc | 18 ++++++++++----- .../text_embedding_html_events.cc | 2 +- ...xt_embedding_html_events_database_table.cc | 4 ++-- 19 files changed, 137 insertions(+), 73 deletions(-) diff --git a/components/brave_ads/core/internal/account/transactions/transactions.cc b/components/brave_ads/core/internal/account/transactions/transactions.cc index eda234b3045b..8422797cece5 100644 --- a/components/brave_ads/core/internal/account/transactions/transactions.cc +++ b/components/brave_ads/core/internal/account/transactions/transactions.cc @@ -44,7 +44,8 @@ TransactionInfo AddTransaction(const std::string& creative_instance_id, [](AddTransactionCallback callback, const TransactionInfo& transaction, const bool success) { if (!success) { - return std::move(callback).Run(/*success*/ false, {}); + return std::move(callback).Run(/*success*/ false, + /*transaction*/ {}); } std::move(callback).Run(/*success*/ true, transaction); @@ -64,7 +65,8 @@ void GetTransactionsForDateRange(const base::Time from_time, [](GetTransactionsCallback callback, const bool success, const TransactionList& transactions) { if (!success) { - return std::move(callback).Run(/*success*/ false, {}); + return std::move(callback).Run(/*success*/ false, + /*transactions*/ {}); } std::move(callback).Run(/*success*/ true, transactions); diff --git a/components/brave_ads/core/internal/account/user_data/conversion_user_data_builder.cc b/components/brave_ads/core/internal/account/user_data/conversion_user_data_builder.cc index 7ea061ffb632..878ad670a0e7 100644 --- a/components/brave_ads/core/internal/account/user_data/conversion_user_data_builder.cc +++ b/components/brave_ads/core/internal/account/user_data/conversion_user_data_builder.cc @@ -32,11 +32,11 @@ void BuildConversion(const std::string& creative_instance_id, const std::string& /*creative_instance_id*/, const ConversionQueueItemList& conversion_queue_items) { if (!success) { - return std::move(callback).Run({}); + return std::move(callback).Run(/*user_data*/ {}); } if (conversion_queue_items.empty()) { - return std::move(callback).Run({}); + return std::move(callback).Run(/*user_data*/ {}); } const ConversionQueueItemInfo& conversion_queue_item = @@ -45,7 +45,7 @@ void BuildConversion(const std::string& creative_instance_id, verifiable_conversion_envelope = GetEnvelope(conversion_queue_item); if (!verifiable_conversion_envelope) { - return std::move(callback).Run({}); + return std::move(callback).Run(/*user_data*/ {}); } base::Value::Dict dict; diff --git a/components/brave_ads/core/internal/ads/ad_events/ad_events_database_table.cc b/components/brave_ads/core/internal/ads/ad_events/ad_events_database_table.cc index 9825373cd6b2..e36cfd10fd6a 100644 --- a/components/brave_ads/core/internal/ads/ad_events/ad_events_database_table.cc +++ b/components/brave_ads/core/internal/ads/ad_events/ad_events_database_table.cc @@ -70,7 +70,7 @@ void OnGetAdEvents(GetAdEventsCallback callback, command_response->status != mojom::DBCommandResponseInfo::StatusType::RESPONSE_OK) { BLOG(0, "Failed to get ad events"); - std::move(callback).Run(/*success*/ false, {}); + std::move(callback).Run(/*success*/ false, /*ad_events*/ {}); return; } diff --git a/components/brave_ads/core/internal/ads/serving/eligible_ads/pipelines/inline_content_ads/eligible_inline_content_ads_v1.cc b/components/brave_ads/core/internal/ads/serving/eligible_ads/pipelines/inline_content_ads/eligible_inline_content_ads_v1.cc index 96147e662425..b4160ff4ebc4 100644 --- a/components/brave_ads/core/internal/ads/serving/eligible_ads/pipelines/inline_content_ads/eligible_inline_content_ads_v1.cc +++ b/components/brave_ads/core/internal/ads/serving/eligible_ads/pipelines/inline_content_ads/eligible_inline_content_ads_v1.cc @@ -57,7 +57,8 @@ void EligibleAdsV1::OnGetForUserModel( const AdEventList& ad_events) { if (!success) { BLOG(1, "Failed to get ad events"); - return std::move(callback).Run(/*had_opportunity*/ false, {}); + return std::move(callback).Run(/*had_opportunity*/ false, + /*eligible_ads*/ {}); } GetBrowsingHistory(std::move(user_model), dimensions, ad_events, @@ -125,7 +126,8 @@ void EligibleAdsV1::OnGetForChildSegments( const CreativeInlineContentAdList& creative_ads) { if (!success) { BLOG(1, "Failed to get ads for child segments"); - return std::move(callback).Run(/*had_opportunity*/ false, {}); + return std::move(callback).Run(/*had_opportunity*/ false, + /*eligible_ads*/ {}); } const CreativeInlineContentAdList eligible_creative_ads = @@ -179,7 +181,8 @@ void EligibleAdsV1::OnGetForParentSegments( const CreativeInlineContentAdList& creative_ads) { if (!success) { BLOG(1, "Failed to get ads for parent segments"); - return std::move(callback).Run(/*had_opportunity*/ false, {}); + return std::move(callback).Run(/*had_opportunity*/ false, + /*eligible_ads*/ {}); } const CreativeInlineContentAdList eligible_creative_ads = @@ -222,7 +225,8 @@ void EligibleAdsV1::OnGetForUntargeted( const CreativeInlineContentAdList& creative_ads) { if (!success) { BLOG(1, "Failed to get ads for untargeted segment"); - return std::move(callback).Run(/*had_opportunity*/ false, {}); + return std::move(callback).Run(/*had_opportunity*/ false, + /*eligible_ads*/ {}); } const CreativeInlineContentAdList eligible_creative_ads = @@ -230,7 +234,8 @@ void EligibleAdsV1::OnGetForUntargeted( if (eligible_creative_ads.empty()) { BLOG(1, "No eligible ads out of " << creative_ads.size() << " ads for untargeted segment"); - return std::move(callback).Run(/*had_opportunity*/ false, {}); + return std::move(callback).Run(/*had_opportunity*/ false, + /*eligible_ads*/ {}); } BLOG(1, eligible_creative_ads.size() diff --git a/components/brave_ads/core/internal/ads/serving/eligible_ads/pipelines/inline_content_ads/eligible_inline_content_ads_v2.cc b/components/brave_ads/core/internal/ads/serving/eligible_ads/pipelines/inline_content_ads/eligible_inline_content_ads_v2.cc index 2d61f4975d3c..31b05c0bc28b 100644 --- a/components/brave_ads/core/internal/ads/serving/eligible_ads/pipelines/inline_content_ads/eligible_inline_content_ads_v2.cc +++ b/components/brave_ads/core/internal/ads/serving/eligible_ads/pipelines/inline_content_ads/eligible_inline_content_ads_v2.cc @@ -55,7 +55,8 @@ void EligibleAdsV2::OnGetForUserModel( const AdEventList& ad_events) { if (!success) { BLOG(1, "Failed to get ad events"); - return std::move(callback).Run(/*had_opportunity*/ false, {}); + return std::move(callback).Run(/*had_opportunity*/ false, + /*eligible_ads*/ {}); } GetBrowsingHistory(std::move(user_model), ad_events, dimensions, @@ -97,26 +98,30 @@ void EligibleAdsV2::OnGetEligibleAds( const CreativeInlineContentAdList& creative_ads) { if (!success) { BLOG(1, "Failed to get ads"); - return std::move(callback).Run(/*had_opportunity*/ false, {}); + return std::move(callback).Run(/*had_opportunity*/ false, + /*eligible_ads*/ {}); } if (creative_ads.empty()) { BLOG(1, "No eligible ads"); - return std::move(callback).Run(/*had_opportunity*/ false, {}); + return std::move(callback).Run(/*had_opportunity*/ false, + /*eligible_ads*/ {}); } const CreativeInlineContentAdList eligible_creative_ads = FilterCreativeAds(creative_ads, ad_events, browsing_history); if (eligible_creative_ads.empty()) { BLOG(1, "No eligible ads out of " << creative_ads.size() << " ads"); - return std::move(callback).Run(/*had_opportunity*/ true, {}); + return std::move(callback).Run(/*had_opportunity*/ true, + /*eligible_ads*/ {}); } const absl::optional creative_ad = PredictAd(user_model, ad_events, eligible_creative_ads); if (!creative_ad) { BLOG(1, "No eligible ads out of " << creative_ads.size() << " ads"); - return std::move(callback).Run(/*had_opportunity*/ true, {}); + return std::move(callback).Run(/*had_opportunity*/ true, + /*eligible_ads*/ {}); } BLOG(1, eligible_creative_ads.size() diff --git a/components/brave_ads/core/internal/ads/serving/eligible_ads/pipelines/new_tab_page_ads/eligible_new_tab_page_ads_v1.cc b/components/brave_ads/core/internal/ads/serving/eligible_ads/pipelines/new_tab_page_ads/eligible_new_tab_page_ads_v1.cc index 21e83c727ac2..71caff373e07 100644 --- a/components/brave_ads/core/internal/ads/serving/eligible_ads/pipelines/new_tab_page_ads/eligible_new_tab_page_ads_v1.cc +++ b/components/brave_ads/core/internal/ads/serving/eligible_ads/pipelines/new_tab_page_ads/eligible_new_tab_page_ads_v1.cc @@ -56,7 +56,8 @@ void EligibleAdsV1::OnGetForUserModel( const AdEventList& ad_events) { if (!success) { BLOG(1, "Failed to get ad events"); - return std::move(callback).Run(/*had_opportunity*/ false, {}); + return std::move(callback).Run(/*had_opportunity*/ false, + /*eligible_ads*/ {}); } GetBrowsingHistory(std::move(user_model), ad_events, std::move(callback)); @@ -115,7 +116,8 @@ void EligibleAdsV1::OnGetForChildSegments( const CreativeNewTabPageAdList& creative_ads) { if (!success) { BLOG(1, "Failed to get ads for child segments"); - return std::move(callback).Run(/*had_opportunity*/ false, {}); + return std::move(callback).Run(/*had_opportunity*/ false, + /*eligible_ads*/ {}); } const CreativeNewTabPageAdList eligible_creative_ads = @@ -165,7 +167,8 @@ void EligibleAdsV1::OnGetForParentSegments( const CreativeNewTabPageAdList& creative_ads) { if (!success) { BLOG(1, "Failed to get ads for parent segments"); - return std::move(callback).Run(/*had_opportunity*/ false, {}); + return std::move(callback).Run(/*had_opportunity*/ false, + /*eligible_ads*/ {}); } const CreativeNewTabPageAdList eligible_creative_ads = @@ -205,7 +208,8 @@ void EligibleAdsV1::OnGetForUntargeted( const CreativeNewTabPageAdList& creative_ads) { if (!success) { BLOG(1, "Failed to get ads for untargeted segment"); - return std::move(callback).Run(/*had_opportunity*/ false, {}); + return std::move(callback).Run(/*had_opportunity*/ false, + /*eligible_ads*/ {}); } const CreativeNewTabPageAdList eligible_creative_ads = @@ -213,7 +217,8 @@ void EligibleAdsV1::OnGetForUntargeted( if (eligible_creative_ads.empty()) { BLOG(1, "No eligible ads out of " << creative_ads.size() << " ads for untargeted segment"); - return std::move(callback).Run(/*had_opportunity*/ false, {}); + return std::move(callback).Run(/*had_opportunity*/ false, + /*eligible_ads*/ {}); } std::move(callback).Run(/*had_opportunity*/ true, eligible_creative_ads); diff --git a/components/brave_ads/core/internal/ads/serving/eligible_ads/pipelines/new_tab_page_ads/eligible_new_tab_page_ads_v2.cc b/components/brave_ads/core/internal/ads/serving/eligible_ads/pipelines/new_tab_page_ads/eligible_new_tab_page_ads_v2.cc index 46a27234d586..4f36dee65129 100644 --- a/components/brave_ads/core/internal/ads/serving/eligible_ads/pipelines/new_tab_page_ads/eligible_new_tab_page_ads_v2.cc +++ b/components/brave_ads/core/internal/ads/serving/eligible_ads/pipelines/new_tab_page_ads/eligible_new_tab_page_ads_v2.cc @@ -52,7 +52,8 @@ void EligibleAdsV2::OnGetForUserModel( const AdEventList& ad_events) { if (!success) { BLOG(1, "Failed to get ad events"); - return std::move(callback).Run(/*had_opportunity*/ false, {}); + return std::move(callback).Run(/*had_opportunity*/ false, + /*eligible_ads*/ {}); } GetBrowsingHistory(std::move(user_model), ad_events, std::move(callback)); @@ -90,26 +91,30 @@ void EligibleAdsV2::OnGetEligibleAds( const CreativeNewTabPageAdList& creative_ads) { if (!success) { BLOG(1, "Failed to get ads"); - return std::move(callback).Run(/*had_opportunity*/ false, {}); + return std::move(callback).Run(/*had_opportunity*/ false, + /*eligible_ads*/ {}); } if (creative_ads.empty()) { BLOG(1, "No eligible ads"); - return std::move(callback).Run(/*had_opportunity*/ false, {}); + return std::move(callback).Run(/*had_opportunity*/ false, + /*eligible_ads*/ {}); } const CreativeNewTabPageAdList eligible_creative_ads = FilterCreativeAds(creative_ads, ad_events, browsing_history); if (eligible_creative_ads.empty()) { BLOG(1, "No eligible ads out of " << creative_ads.size() << " ads"); - return std::move(callback).Run(/*had_opportunity*/ true, {}); + return std::move(callback).Run(/*had_opportunity*/ true, + /*eligible_ads*/ {}); } const absl::optional creative_ad = PredictAd(user_model, ad_events, eligible_creative_ads); if (!creative_ad) { BLOG(1, "No eligible ads out of " << creative_ads.size() << " ads"); - return std::move(callback).Run(/*had_opportunity*/ true, {}); + return std::move(callback).Run(/*had_opportunity*/ true, + /*eligible_ads*/ {}); } BLOG(1, eligible_creative_ads.size() diff --git a/components/brave_ads/core/internal/ads/serving/eligible_ads/pipelines/notification_ads/eligible_notification_ads_v1.cc b/components/brave_ads/core/internal/ads/serving/eligible_ads/pipelines/notification_ads/eligible_notification_ads_v1.cc index 9d6f39c020b3..12538b45adab 100644 --- a/components/brave_ads/core/internal/ads/serving/eligible_ads/pipelines/notification_ads/eligible_notification_ads_v1.cc +++ b/components/brave_ads/core/internal/ads/serving/eligible_ads/pipelines/notification_ads/eligible_notification_ads_v1.cc @@ -56,7 +56,8 @@ void EligibleAdsV1::OnGetForUserModel( const AdEventList& ad_events) { if (!success) { BLOG(1, "Failed to get ad events"); - return std::move(callback).Run(/*had_opportunity*/ false, {}); + return std::move(callback).Run(/*had_opportunity*/ false, + /*eligible_ads*/ {}); } GetBrowsingHistory(std::move(user_model), ad_events, std::move(callback)); @@ -115,7 +116,8 @@ void EligibleAdsV1::OnGetForChildSegments( const CreativeNotificationAdList& creative_ads) { if (!success) { BLOG(1, "Failed to get ads for child segments"); - return std::move(callback).Run(/*had_opportunity*/ false, {}); + return std::move(callback).Run(/*had_opportunity*/ false, + /*eligible_ads*/ {}); } const CreativeNotificationAdList eligible_creative_ads = @@ -165,7 +167,8 @@ void EligibleAdsV1::OnGetForParentSegments( const CreativeNotificationAdList& creative_ads) { if (!success) { BLOG(1, "Failed to get ads for parent segments"); - return std::move(callback).Run(/*had_opportunity*/ false, {}); + return std::move(callback).Run(/*had_opportunity*/ false, + /*eligible_ads*/ {}); } const CreativeNotificationAdList eligible_creative_ads = @@ -205,7 +208,8 @@ void EligibleAdsV1::OnGetForUntargeted( const CreativeNotificationAdList& creative_ads) { if (!success) { BLOG(1, "Failed to get ads for untargeted segment"); - return std::move(callback).Run(/*had_opportunity*/ false, {}); + return std::move(callback).Run(/*had_opportunity*/ false, + /*eligible_ads*/ {}); } const CreativeNotificationAdList eligible_creative_ads = @@ -213,7 +217,8 @@ void EligibleAdsV1::OnGetForUntargeted( if (eligible_creative_ads.empty()) { BLOG(1, "No eligible ads out of " << creative_ads.size() << " ads for untargeted segment"); - return std::move(callback).Run(/*had_opportunity*/ false, {}); + return std::move(callback).Run(/*had_opportunity*/ false, + /*eligible_ads*/ {}); } BLOG(1, eligible_creative_ads.size() diff --git a/components/brave_ads/core/internal/ads/serving/eligible_ads/pipelines/notification_ads/eligible_notification_ads_v2.cc b/components/brave_ads/core/internal/ads/serving/eligible_ads/pipelines/notification_ads/eligible_notification_ads_v2.cc index 44015763ad0e..417d065e733a 100644 --- a/components/brave_ads/core/internal/ads/serving/eligible_ads/pipelines/notification_ads/eligible_notification_ads_v2.cc +++ b/components/brave_ads/core/internal/ads/serving/eligible_ads/pipelines/notification_ads/eligible_notification_ads_v2.cc @@ -53,7 +53,8 @@ void EligibleAdsV2::OnGetForUserModel( const AdEventList& ad_events) { if (!success) { BLOG(1, "Failed to get ad events"); - return std::move(callback).Run(/*had_opportunity*/ false, {}); + return std::move(callback).Run(/*had_opportunity*/ false, + /*eligible_ads*/ {}); } GetBrowsingHistory(std::move(user_model), ad_events, std::move(callback)); @@ -90,26 +91,30 @@ void EligibleAdsV2::OnGetEligibleAds( const CreativeNotificationAdList& creative_ads) { if (!success) { BLOG(1, "Failed to get ads"); - return std::move(callback).Run(/*had_opportunity*/ false, {}); + return std::move(callback).Run(/*had_opportunity*/ false, + /*eligible_ads*/ {}); } if (creative_ads.empty()) { BLOG(1, "No eligible ads"); - return std::move(callback).Run(/*had_opportunity*/ false, {}); + return std::move(callback).Run(/*had_opportunity*/ false, + /*eligible_ads*/ {}); } const CreativeNotificationAdList eligible_creative_ads = FilterCreativeAds(creative_ads, ad_events, browsing_history); if (eligible_creative_ads.empty()) { BLOG(1, "No eligible ads out of " << creative_ads.size() << " ads"); - return std::move(callback).Run(/*had_opportunity*/ true, {}); + return std::move(callback).Run(/*had_opportunity*/ true, + /*eligible_ads*/ {}); } const absl::optional creative_ad = PredictAd(user_model, ad_events, eligible_creative_ads); if (!creative_ad) { BLOG(1, "No eligible ads out of " << creative_ads.size() << " ads"); - return std::move(callback).Run(/*had_opportunity*/ true, {}); + return std::move(callback).Run(/*had_opportunity*/ true, + /*eligible_ads*/ {}); } BLOG(1, eligible_creative_ads.size() diff --git a/components/brave_ads/core/internal/ads/serving/eligible_ads/pipelines/notification_ads/eligible_notification_ads_v3.cc b/components/brave_ads/core/internal/ads/serving/eligible_ads/pipelines/notification_ads/eligible_notification_ads_v3.cc index 7d6b3a7094a3..4b07a4eacb90 100644 --- a/components/brave_ads/core/internal/ads/serving/eligible_ads/pipelines/notification_ads/eligible_notification_ads_v3.cc +++ b/components/brave_ads/core/internal/ads/serving/eligible_ads/pipelines/notification_ads/eligible_notification_ads_v3.cc @@ -53,7 +53,8 @@ void EligibleAdsV3::OnGetForUserModel( const AdEventList& ad_events) { if (!success) { BLOG(1, "Failed to get ad events"); - return std::move(callback).Run(/*had_opportunity*/ false, {}); + return std::move(callback).Run(/*had_opportunity*/ false, + /*eligible_ads*/ {}); } GetBrowsingHistory(std::move(user_model), ad_events, std::move(callback)); @@ -90,19 +91,22 @@ void EligibleAdsV3::OnGetEligibleAds( const CreativeNotificationAdList& creative_ads) { if (!success) { BLOG(1, "Failed to get ads"); - return std::move(callback).Run(/*had_opportunity*/ false, {}); + return std::move(callback).Run(/*had_opportunity*/ false, + /*eligible_ads*/ {}); } if (creative_ads.empty()) { BLOG(1, "No eligible ads"); - return std::move(callback).Run(/*had_opportunity*/ false, {}); + return std::move(callback).Run(/*had_opportunity*/ false, + /*eligible_ads*/ {}); } const CreativeNotificationAdList eligible_creative_ads = FilterCreativeAds(creative_ads, ad_events, browsing_history); if (eligible_creative_ads.empty()) { BLOG(1, "No eligible ads out of " << creative_ads.size() << " ads"); - return std::move(callback).Run(/*had_opportunity*/ false, {}); + return std::move(callback).Run(/*had_opportunity*/ false, + /*eligible_ads*/ {}); } absl::optional creative_ad; @@ -115,7 +119,8 @@ void EligibleAdsV3::OnGetEligibleAds( if (!creative_ad) { BLOG(1, "No eligible ads out of " << creative_ads.size() << " ads"); - return std::move(callback).Run(/*had_opportunity*/ false, {}); + return std::move(callback).Run(/*had_opportunity*/ false, + /*eligible_ads*/ {}); } BLOG(1, eligible_creative_ads.size() diff --git a/components/brave_ads/core/internal/conversions/conversion_queue_database_table.cc b/components/brave_ads/core/internal/conversions/conversion_queue_database_table.cc index e64468de1059..6e9dd24f3e14 100644 --- a/components/brave_ads/core/internal/conversions/conversion_queue_database_table.cc +++ b/components/brave_ads/core/internal/conversions/conversion_queue_database_table.cc @@ -79,7 +79,8 @@ void OnGetAll(GetConversionQueueCallback callback, command_response->status != mojom::DBCommandResponseInfo::StatusType::RESPONSE_OK) { BLOG(0, "Failed to get conversion queue"); - return std::move(callback).Run(/*success*/ false, {}); + return std::move(callback).Run(/*success*/ false, + /*conversions_queue_items*/ {}); } ConversionQueueItemList conversion_queue_items; @@ -101,7 +102,8 @@ void OnGetForCreativeInstanceId( command_response->status != mojom::DBCommandResponseInfo::StatusType::RESPONSE_OK) { BLOG(0, "Failed to get conversion queue"); - return std::move(callback).Run(/*success*/ false, creative_instance_id, {}); + return std::move(callback).Run(/*success*/ false, creative_instance_id, + /*conversion_queue_items*/ {}); } ConversionQueueItemList conversion_queue_items; @@ -437,7 +439,8 @@ void ConversionQueue::GetForCreativeInstanceId( const std::string& creative_instance_id, GetConversionQueueForCreativeInstanceIdCallback callback) const { if (creative_instance_id.empty()) { - return std::move(callback).Run(/*success*/ false, creative_instance_id, {}); + return std::move(callback).Run(/*success*/ false, creative_instance_id, + /*conversion_queue_items*/ {}); } const std::string query = base::StringPrintf( diff --git a/components/brave_ads/core/internal/conversions/conversions_database_table.cc b/components/brave_ads/core/internal/conversions/conversions_database_table.cc index 1ade73167847..2c022e845126 100644 --- a/components/brave_ads/core/internal/conversions/conversions_database_table.cc +++ b/components/brave_ads/core/internal/conversions/conversions_database_table.cc @@ -68,7 +68,8 @@ void OnGetConversions(GetConversionsCallback callback, command_response->status != mojom::DBCommandResponseInfo::StatusType::RESPONSE_OK) { BLOG(0, "Failed to get creative conversions"); - return std::move(callback).Run(/*success*/ false, {}); + return std::move(callback).Run(/*success*/ false, + /*conversion_queue_items*/ {}); } ConversionList conversions; diff --git a/components/brave_ads/core/internal/creatives/creative_ads_database_table.cc b/components/brave_ads/core/internal/creatives/creative_ads_database_table.cc index 26c13c832196..d126ce09e999 100644 --- a/components/brave_ads/core/internal/creatives/creative_ads_database_table.cc +++ b/components/brave_ads/core/internal/creatives/creative_ads_database_table.cc @@ -128,7 +128,8 @@ void OnGetForCreativeInstanceId( command_response->status != mojom::DBCommandResponseInfo::StatusType::RESPONSE_OK) { BLOG(0, "Failed to get creative ad"); - return std::move(callback).Run(/*success*/ false, creative_instance_id, {}); + return std::move(callback).Run(/*success*/ false, creative_instance_id, + /*creative_ad*/ {}); } const CreativeAdList creative_ads = @@ -136,7 +137,8 @@ void OnGetForCreativeInstanceId( if (creative_ads.size() != 1) { BLOG(0, "Failed to get creative ad"); - return std::move(callback).Run(/*success*/ false, creative_instance_id, {}); + return std::move(callback).Run(/*success*/ false, creative_instance_id, + /*creative_ad*/ {}); } const CreativeAdInfo& creative_ad = creative_ads.front(); diff --git a/components/brave_ads/core/internal/creatives/inline_content_ads/creative_inline_content_ads_database_table.cc b/components/brave_ads/core/internal/creatives/inline_content_ads/creative_inline_content_ads_database_table.cc index 311a79ba5f6c..26c0a0c5fc75 100644 --- a/components/brave_ads/core/internal/creatives/inline_content_ads/creative_inline_content_ads_database_table.cc +++ b/components/brave_ads/core/internal/creatives/inline_content_ads/creative_inline_content_ads_database_table.cc @@ -164,7 +164,8 @@ void OnGetForCreativeInstanceId( command_response->status != mojom::DBCommandResponseInfo::StatusType::RESPONSE_OK) { BLOG(0, "Failed to get creative inline content ad"); - return std::move(callback).Run(/*success*/ false, creative_instance_id, {}); + return std::move(callback).Run(/*success*/ false, creative_instance_id, + /*creative_ad*/ {}); } const CreativeInlineContentAdList creative_ads = @@ -172,7 +173,8 @@ void OnGetForCreativeInstanceId( if (creative_ads.size() != 1) { BLOG(0, "Failed to get creative inline content ad"); - return std::move(callback).Run(/*success*/ false, creative_instance_id, {}); + return std::move(callback).Run(/*success*/ false, creative_instance_id, + /*creative_ad*/ {}); } const CreativeInlineContentAdInfo& creative_ad = creative_ads.front(); @@ -188,7 +190,8 @@ void OnGetForSegmentsAndDimensions( command_response->status != mojom::DBCommandResponseInfo::StatusType::RESPONSE_OK) { BLOG(0, "Failed to get creative inline content ads"); - return std::move(callback).Run(/*success*/ false, segments, {}); + return std::move(callback).Run(/*success*/ false, segments, + /*creative_ad*/ {}); } const CreativeInlineContentAdList creative_ads = @@ -204,7 +207,7 @@ void OnGetForDimensions( command_response->status != mojom::DBCommandResponseInfo::StatusType::RESPONSE_OK) { BLOG(0, "Failed to get creative inline content ads"); - return std::move(callback).Run(/*success*/ false, {}); + return std::move(callback).Run(/*success*/ false, /*creative_ad*/ {}); } const CreativeInlineContentAdList creative_ads = @@ -219,7 +222,8 @@ void OnGetAll(GetCreativeInlineContentAdsCallback callback, command_response->status != mojom::DBCommandResponseInfo::StatusType::RESPONSE_OK) { BLOG(0, "Failed to get all creative inline content ads"); - return std::move(callback).Run(/*success*/ false, {}, {}); + return std::move(callback).Run(/*success*/ false, /*segments*/ {}, + /*creative_ads*/ {}); } const CreativeInlineContentAdList creative_ads = @@ -315,7 +319,8 @@ void CreativeInlineContentAds::GetForCreativeInstanceId( const std::string& creative_instance_id, GetCreativeInlineContentAdCallback callback) const { if (creative_instance_id.empty()) { - return std::move(callback).Run(/*success*/ false, creative_instance_id, {}); + return std::move(callback).Run(/*success*/ false, creative_instance_id, + /*creative_ads*/ {}); } const std::string query = base::StringPrintf( @@ -411,7 +416,8 @@ void CreativeInlineContentAds::GetForSegmentsAndDimensions( const std::string& dimensions, GetCreativeInlineContentAdsCallback callback) const { if (segments.empty() || dimensions.empty()) { - return std::move(callback).Run(/*success*/ true, segments, {}); + return std::move(callback).Run(/*success*/ true, segments, + /*creative_ads*/ {}); } const std::string query = base::StringPrintf( @@ -515,7 +521,7 @@ void CreativeInlineContentAds::GetForDimensions( const std::string& dimensions, GetCreativeInlineContentAdsForDimensionsCallback callback) const { if (dimensions.empty()) { - return std::move(callback).Run(/*success*/ true, {}); + return std::move(callback).Run(/*success*/ true, /*creative_ads*/ {}); } const std::string query = base::StringPrintf( diff --git a/components/brave_ads/core/internal/creatives/new_tab_page_ads/creative_new_tab_page_ads_database_table.cc b/components/brave_ads/core/internal/creatives/new_tab_page_ads/creative_new_tab_page_ads_database_table.cc index 988e5f531b63..e2316bb13969 100644 --- a/components/brave_ads/core/internal/creatives/new_tab_page_ads/creative_new_tab_page_ads_database_table.cc +++ b/components/brave_ads/core/internal/creatives/new_tab_page_ads/creative_new_tab_page_ads_database_table.cc @@ -169,7 +169,8 @@ void OnGetForCreativeInstanceId( command_response->status != mojom::DBCommandResponseInfo::StatusType::RESPONSE_OK) { BLOG(0, "Failed to get creative new tab page ad"); - return std::move(callback).Run(/*success*/ false, creative_instance_id, {}); + return std::move(callback).Run(/*success*/ false, creative_instance_id, + /*creative_ads*/ {}); } const CreativeNewTabPageAdList creative_ads = @@ -177,7 +178,8 @@ void OnGetForCreativeInstanceId( if (creative_ads.size() != 1) { BLOG(0, "Failed to get creative new tab page ad"); - return std::move(callback).Run(/*success*/ false, creative_instance_id, {}); + return std::move(callback).Run(/*success*/ false, creative_instance_id, + /*creative_ads*/ {}); } const CreativeNewTabPageAdInfo& creative_ad = creative_ads.front(); @@ -192,7 +194,8 @@ void OnGetForSegments(const SegmentList& segments, command_response->status != mojom::DBCommandResponseInfo::StatusType::RESPONSE_OK) { BLOG(0, "Failed to get creative new tab page ads"); - return std::move(callback).Run(/*success*/ false, segments, {}); + return std::move(callback).Run(/*success*/ false, segments, + /*creative_ads*/ {}); } const CreativeNewTabPageAdList creative_ads = @@ -207,7 +210,8 @@ void OnGetAll(GetCreativeNewTabPageAdsCallback callback, command_response->status != mojom::DBCommandResponseInfo::StatusType::RESPONSE_OK) { BLOG(0, "Failed to get all creative new tab page ads"); - return std::move(callback).Run(/*success*/ false, {}, {}); + return std::move(callback).Run(/*success*/ false, /*segments*/ {}, + /*creative_ads*/ {}); } const CreativeNewTabPageAdList creative_ads = @@ -304,7 +308,8 @@ void CreativeNewTabPageAds::GetForCreativeInstanceId( const std::string& creative_instance_id, GetCreativeNewTabPageAdCallback callback) const { if (creative_instance_id.empty()) { - return std::move(callback).Run(/*success*/ false, creative_instance_id, {}); + return std::move(callback).Run(/*success*/ false, creative_instance_id, + /*creative_ads*/ {}); } const std::string query = base::StringPrintf( @@ -405,7 +410,8 @@ void CreativeNewTabPageAds::GetForSegments( const SegmentList& segments, GetCreativeNewTabPageAdsCallback callback) const { if (segments.empty()) { - return std::move(callback).Run(/*success*/ true, segments, {}); + return std::move(callback).Run(/*success*/ true, segments, + /*creative_ads*/ {}); } const std::string query = base::StringPrintf( diff --git a/components/brave_ads/core/internal/creatives/notification_ads/creative_notification_ads_database_table.cc b/components/brave_ads/core/internal/creatives/notification_ads/creative_notification_ads_database_table.cc index 17d630ff3588..b6afd976b8e9 100644 --- a/components/brave_ads/core/internal/creatives/notification_ads/creative_notification_ads_database_table.cc +++ b/components/brave_ads/core/internal/creatives/notification_ads/creative_notification_ads_database_table.cc @@ -158,7 +158,8 @@ void OnGetForSegments(const SegmentList& segments, command_response->status != mojom::DBCommandResponseInfo::StatusType::RESPONSE_OK) { BLOG(0, "Failed to get creative notification ads"); - return std::move(callback).Run(/*success*/ false, segments, {}); + return std::move(callback).Run(/*success*/ false, segments, + /*creative_ads*/ {}); } const CreativeNotificationAdList creative_ads = @@ -173,7 +174,8 @@ void OnGetAll(GetCreativeNotificationAdsCallback callback, command_response->status != mojom::DBCommandResponseInfo::StatusType::RESPONSE_OK) { BLOG(0, "Failed to get all creative notification ads"); - return std::move(callback).Run(/*success*/ false, {}, {}); + return std::move(callback).Run(/*success*/ false, /*segments*/ {}, + /*creative_ads*/ {}); } const CreativeNotificationAdList creative_ads = @@ -269,7 +271,8 @@ void CreativeNotificationAds::GetForSegments( const SegmentList& segments, GetCreativeNotificationAdsCallback callback) const { if (segments.empty()) { - return std::move(callback).Run(/*success*/ true, segments, {}); + return std::move(callback).Run(/*success*/ true, segments, + /*creative_ads*/ {}); } const std::string query = base::StringPrintf( diff --git a/components/brave_ads/core/internal/creatives/promoted_content_ads/creative_promoted_content_ads_database_table.cc b/components/brave_ads/core/internal/creatives/promoted_content_ads/creative_promoted_content_ads_database_table.cc index 6a6a1a0c6709..4181b7f2efdf 100644 --- a/components/brave_ads/core/internal/creatives/promoted_content_ads/creative_promoted_content_ads_database_table.cc +++ b/components/brave_ads/core/internal/creatives/promoted_content_ads/creative_promoted_content_ads_database_table.cc @@ -155,7 +155,8 @@ void OnGetForCreativeInstanceId( command_response->status != mojom::DBCommandResponseInfo::StatusType::RESPONSE_OK) { BLOG(0, "Failed to get creative promoted content ad"); - return std::move(callback).Run(/*success*/ false, creative_instance_id, {}); + return std::move(callback).Run(/*success*/ false, creative_instance_id, + /*creative_ads*/ {}); } const CreativePromotedContentAdList creative_ads = @@ -163,7 +164,8 @@ void OnGetForCreativeInstanceId( if (creative_ads.size() != 1) { BLOG(0, "Failed to get creative promoted content ad"); - return std::move(callback).Run(/*success*/ false, creative_instance_id, {}); + return std::move(callback).Run(/*success*/ false, creative_instance_id, + /*creative_ads*/ {}); } const CreativePromotedContentAdInfo& creative_ad = creative_ads.front(); @@ -178,7 +180,8 @@ void OnGetForSegments(const SegmentList& segments, command_response->status != mojom::DBCommandResponseInfo::StatusType::RESPONSE_OK) { BLOG(0, "Failed to get creative promoted content ads"); - return std::move(callback).Run(/*success*/ false, segments, {}); + return std::move(callback).Run(/*success*/ false, segments, + /*creative_ads*/ {}); } const CreativePromotedContentAdList creative_ads = @@ -193,7 +196,8 @@ void OnGetAll(GetCreativePromotedContentAdsCallback callback, command_response->status != mojom::DBCommandResponseInfo::StatusType::RESPONSE_OK) { BLOG(0, "Failed to get all creative new tab page ads"); - return std::move(callback).Run(/*success*/ false, {}, {}); + return std::move(callback).Run(/*success*/ false, /*segments*/ {}, + /*creative_ads*/ {}); } const CreativePromotedContentAdList creative_ads = @@ -287,7 +291,8 @@ void CreativePromotedContentAds::GetForCreativeInstanceId( GetCreativePromotedContentAdCallback callback) const { if (creative_instance_id.empty()) { DCHECK(false) << "FOOBAR"; - return std::move(callback).Run(/*success*/ false, creative_instance_id, {}); + return std::move(callback).Run(/*success*/ false, creative_instance_id, + /*creative_ads*/ {}); } const std::string query = base::StringPrintf( @@ -374,7 +379,8 @@ void CreativePromotedContentAds::GetForSegments( const SegmentList& segments, GetCreativePromotedContentAdsCallback callback) const { if (segments.empty()) { - return std::move(callback).Run(/*success*/ true, segments, {}); + return std::move(callback).Run(/*success*/ true, segments, + /*creative_ads*/ {}); } const std::string query = base::StringPrintf( diff --git a/components/brave_ads/core/internal/processors/contextual/text_embedding/text_embedding_html_events.cc b/components/brave_ads/core/internal/processors/contextual/text_embedding/text_embedding_html_events.cc index ef7ded3ee060..296aceef6bd7 100644 --- a/components/brave_ads/core/internal/processors/contextual/text_embedding/text_embedding_html_events.cc +++ b/components/brave_ads/core/internal/processors/contextual/text_embedding/text_embedding_html_events.cc @@ -66,7 +66,7 @@ void OnGetTextEmbeddingHtmlEventsFromDatabase( if (!success) { BLOG(1, "Failed to get text embedding HTML events"); return std::move(callback).Run(success, - /* text_embedding_html_events */ {}); + /*text_embedding_html_events*/ {}); } std::move(callback).Run(success, text_embedding_html_events); } diff --git a/components/brave_ads/core/internal/processors/contextual/text_embedding/text_embedding_html_events_database_table.cc b/components/brave_ads/core/internal/processors/contextual/text_embedding/text_embedding_html_events_database_table.cc index abb8d6844368..74a0a9d7d7b0 100644 --- a/components/brave_ads/core/internal/processors/contextual/text_embedding/text_embedding_html_events_database_table.cc +++ b/components/brave_ads/core/internal/processors/contextual/text_embedding/text_embedding_html_events_database_table.cc @@ -73,8 +73,8 @@ void OnGetTextEmbeddingHtmlEvents( command_response->status != mojom::DBCommandResponseInfo::StatusType::RESPONSE_OK) { BLOG(0, "Failed to get embeddings"); - return std::move(callback).Run(/* success */ false, - /* text_embedding_html_events */ {}); + return std::move(callback).Run(/*success*/ false, + /*text_embedding_html_events*/ {}); } TextEmbeddingHtmlEventList text_embedding_html_events; From 7a03d58ba6417ce9ecad0709c590f7c0013f3981 Mon Sep 17 00:00:00 2001 From: Terry Mancey Date: Fri, 14 Apr 2023 15:35:10 +0100 Subject: [PATCH 08/11] Cleanup Brave Ads unit tests --- .../core/internal/account/account_unittest.cc | 14 +- .../internal/account/account_util_unittest.cc | 4 +- ...nfirmation_payload_json_writer_unittest.cc | 2 +- .../confirmation_util_unittest.cc | 6 +- ...pted_in_credential_json_writer_unittest.cc | 2 +- .../deposits/deposits_database_table.cc | 8 +- .../account/issuers/issuers_util_unittest.cc | 3 +- .../reconciled_transactions_util_unittest.cc | 2 +- .../rotating_hash_user_data_unittest.cc | 2 +- .../redeem_opted_in_confirmation_unittest.cc | 38 ++--- ...nfirmation_url_request_builder_unittest.cc | 12 +- ...ment_token_url_request_builder_unittest.cc | 2 +- ...edeem_unblinded_payment_tokens_unittest.cc | 10 +- .../refill_unblinded_tokens_unittest.cc | 4 +- .../internal/ad_event_history_unittest.cc | 2 +- .../ads/ad_events/ad_event_util_unittest.cc | 8 +- ..._event_handler_if_ads_disabled_unittest.cc | 4 +- .../internal/ads/search_result_ad_test.cc | 2 +- ...eative_instance_exclusion_rule_unittest.cc | 2 +- .../daily_cap_exclusion_rule_unittest.cc | 2 +- ...on_ad_dismissed_exclusion_rule_unittest.cc | 10 +- .../per_day_exclusion_rule_unittest.cc | 2 +- .../per_month_exclusion_rule_unittest.cc | 2 +- .../per_week_exclusion_rule_unittest.cc | 2 +- .../transferred_exclusion_rule_unittest.cc | 8 +- .../ads/serving/inline_content_ad_serving.cc | 2 +- .../ads/serving/new_tab_page_ad_serving.cc | 2 +- ..._notifications_permission_rule_unittest.cc | 13 +- ...wser_is_active_permission_rule_unittest.cc | 29 ++-- .../catalog_permission_rule_test.cc | 20 +-- .../command_line_permission_rule_unittest.cc | 21 +-- ...do_not_disturb_permission_rule_unittest.cc | 48 ++---- ...ll_screen_mode_permission_rule_unittest.cc | 25 ++- ...ine_content_ads_per_day_permission_rule.cc | 5 +- ...nt_ads_per_day_permission_rule_unittest.cc | 28 ++-- ...ne_content_ads_per_hour_permission_rule.cc | 5 +- ...t_ads_per_hour_permission_rule_unittest.cc | 28 ++-- .../issuers_permission_rule_unittest.cc | 13 +- .../media_permission_rule_unittest.cc | 53 +++---- ...ork_connection_permission_rule_unittest.cc | 17 +- ...e_ads_minimum_wait_time_permission_rule.cc | 2 +- ...imum_wait_time_permission_rule_unittest.cc | 23 ++- ...ew_tab_page_ads_per_day_permission_rule.cc | 5 +- ...ge_ads_per_day_permission_rule_unittest.cc | 24 +-- ...w_tab_page_ads_per_hour_permission_rule.cc | 5 +- ...e_ads_per_hour_permission_rule_unittest.cc | 24 +-- ...imum_wait_time_permission_rule_unittest.cc | 23 ++- ...otification_ads_per_day_permission_rule.cc | 5 +- ...on_ads_per_day_permission_rule_unittest.cc | 24 +-- ...tification_ads_per_hour_permission_rule.cc | 2 +- ...n_ads_per_hour_permission_rule_unittest.cc | 66 ++++---- ...ted_content_ads_per_day_permission_rule.cc | 5 +- ...nt_ads_per_day_permission_rule_unittest.cc | 28 ++-- ...ed_content_ads_per_hour_permission_rule.cc | 5 +- ...t_ads_per_hour_permission_rule_unittest.cc | 28 ++-- ...arch_result_ads_per_day_permission_rule.cc | 5 +- ...lt_ads_per_day_permission_rule_unittest.cc | 28 ++-- ...rch_result_ads_per_hour_permission_rule.cc | 5 +- ...t_ads_per_hour_permission_rule_unittest.cc | 28 ++-- ...blinded_tokens_permission_rule_unittest.cc | 21 ++- ...ed_tokens_permission_rule_unittest_util.cc | 2 +- .../user_activity_permission_rule_unittest.cc | 26 ++- .../brave_ads/core/internal/ads_impl.cc | 4 +- .../internal/catalog/catalog_util_unittest.cc | 2 +- .../calendar_leap_year_util_unittest.cc | 22 +-- .../common/numbers/number_util_unittest.cc | 64 +++----- ...earch_engine_results_page_util_unittest.cc | 6 +- .../search_engine_util_unittest.cc | 6 +- .../time/time_constraint_util_unittest.cc | 12 +- .../internal/common/url/url_util_unittest.cc | 148 +++++------------- .../conversions/conversions_unittest.cc | 2 +- ...ew_tab_page_ads_database_table_unittest.cc | 2 +- .../internal/history/history_util_unittest.cc | 2 +- .../batch_dleq_proof_unittest.cc | 30 ++-- .../dleq_proof_unittest.cc | 30 ++-- .../verification_key_unittest.cc | 10 +- .../locale/country_code_util_unittest.cc | 14 +- ...d_multiple_times_reminder_util_unittest.cc | 2 +- .../user_activity_scoring_util_unittest.cc | 2 +- .../user_reactions/user_reactions_unittest.cc | 4 +- 80 files changed, 467 insertions(+), 741 deletions(-) diff --git a/components/brave_ads/core/internal/account/account_unittest.cc b/components/brave_ads/core/internal/account/account_unittest.cc index 031a18067ec1..8123918455c4 100644 --- a/components/brave_ads/core/internal/account/account_unittest.cc +++ b/components/brave_ads/core/internal/account/account_unittest.cc @@ -189,7 +189,7 @@ TEST_F(BatAdsAccountTest, GetWallet) { TEST_F(BatAdsAccountTest, GetIssuersWhenWalletIsCreated) { // Arrange - privacy::SetUnblindedTokens(50); + privacy::SetUnblindedTokens(/*count*/ 50); MockUrlResponses(ads_client_mock_, GetValidIssuersUrlResponses()); @@ -211,7 +211,7 @@ TEST_F(BatAdsAccountTest, GetIssuersWhenWalletIsCreated) { TEST_F(BatAdsAccountTest, DoNotGetIssuersWhenWalletIsCreatedIfIssuersAlreadyExist) { // Arrange - privacy::SetUnblindedTokens(50); + privacy::SetUnblindedTokens(/*count*/ 50); MockUrlResponses(ads_client_mock_, GetValidIssuersUrlResponses()); @@ -368,9 +368,9 @@ TEST_F(BatAdsAccountTest, DepositForCash) { BuildAndSetIssuers(); ON_CALL(*token_generator_mock_, Generate(_)) - .WillByDefault(Return(privacy::GetTokens(1))); + .WillByDefault(Return(privacy::GetTokens(/*count*/ 1))); - privacy::SetUnblindedTokens(1); + privacy::SetUnblindedTokens(/*count*/ 1); const CreativeNotificationAdInfo creative_ad = BuildCreativeNotificationAd(/*should_use_random_guids*/ false); @@ -410,9 +410,9 @@ TEST_F(BatAdsAccountTest, DepositForCash) { TEST_F(BatAdsAccountTest, DepositForNonCash) { // Arrange ON_CALL(*token_generator_mock_, Generate(_)) - .WillByDefault(Return(privacy::GetTokens(1))); + .WillByDefault(Return(privacy::GetTokens(/*count*/ 1))); - privacy::SetUnblindedTokens(1); + privacy::SetUnblindedTokens(/*count*/ 1); // Act account_->Deposit(kCreativeInstanceId, AdType::kNotificationAd, kSegment, @@ -448,7 +448,7 @@ TEST_F(BatAdsAccountTest, DepositForNonCash) { TEST_F(BatAdsAccountTest, DoNotDepositCashIfCreativeInstanceIdDoesNotExist) { // Arrange ON_CALL(*token_generator_mock_, Generate(_)) - .WillByDefault(Return(privacy::GetTokens(1))); + .WillByDefault(Return(privacy::GetTokens(/*count*/ 1))); const CreativeNotificationAdInfo creative_ad = BuildCreativeNotificationAd(/*should_use_random_guids*/ false); diff --git a/components/brave_ads/core/internal/account/account_util_unittest.cc b/components/brave_ads/core/internal/account/account_util_unittest.cc index 17d5bff8ec4c..5fd68414d27e 100644 --- a/components/brave_ads/core/internal/account/account_util_unittest.cc +++ b/components/brave_ads/core/internal/account/account_util_unittest.cc @@ -52,7 +52,7 @@ TEST_F(BatAdsAccountUtilTest, ResetRewards) { transactions.push_back(transaction); SaveTransactions(transactions); - privacy::SetUnblindedTokens(1); + privacy::SetUnblindedTokens(/*count*/ 1); const absl::optional confirmation = BuildConfirmation(); ASSERT_TRUE(confirmation); @@ -60,7 +60,7 @@ TEST_F(BatAdsAccountUtilTest, ResetRewards) { *confirmation); const privacy::UnblindedPaymentTokenList unblinded_payment_tokens = - privacy::GetUnblindedPaymentTokens(1); + privacy::GetUnblindedPaymentTokens(/*count*/ 1); privacy::GetUnblindedPaymentTokens()->AddTokens(unblinded_payment_tokens); // Act diff --git a/components/brave_ads/core/internal/account/confirmations/confirmation_payload_json_writer_unittest.cc b/components/brave_ads/core/internal/account/confirmations/confirmation_payload_json_writer_unittest.cc index 126c13b2bb62..012818412ccb 100644 --- a/components/brave_ads/core/internal/account/confirmations/confirmation_payload_json_writer_unittest.cc +++ b/components/brave_ads/core/internal/account/confirmations/confirmation_payload_json_writer_unittest.cc @@ -24,7 +24,7 @@ class BatAdsConfirmationPayloadJsonWriterTest : public UnitTestBase {}; TEST_F(BatAdsConfirmationPayloadJsonWriterTest, WriteJson) { // Arrange - privacy::SetUnblindedTokens(1); + privacy::SetUnblindedTokens(/*count*/ 1); const absl::optional confirmation = BuildConfirmation(); ASSERT_TRUE(confirmation); diff --git a/components/brave_ads/core/internal/account/confirmations/confirmation_util_unittest.cc b/components/brave_ads/core/internal/account/confirmations/confirmation_util_unittest.cc index c5efca90990c..9b0e33c0871e 100644 --- a/components/brave_ads/core/internal/account/confirmations/confirmation_util_unittest.cc +++ b/components/brave_ads/core/internal/account/confirmations/confirmation_util_unittest.cc @@ -47,7 +47,7 @@ TEST_F(BatAdsConfirmationUtilTest, CreateConfirmationForNonOptedInUser) { privacy::SetUnblindedTokens(/*count*/ 1); ON_CALL(*token_generator_mock_, Generate(_)) - .WillByDefault(Return(privacy::GetTokens(1))); + .WillByDefault(Return(privacy::GetTokens(/*count*/ 1))); const TransactionInfo transaction = BuildTransaction(/*value*/ 0.0, ConfirmationType::kViewed); @@ -79,7 +79,7 @@ TEST_F(BatAdsConfirmationUtilTest, CreateConfirmationForOptedInUser) { privacy::SetUnblindedTokens(/*count*/ 1); ON_CALL(*token_generator_mock_, Generate(_)) - .WillByDefault(Return(privacy::GetTokens(1))); + .WillByDefault(Return(privacy::GetTokens(/*count*/ 1))); const TransactionInfo transaction = BuildTransaction(/*value*/ 0.0, ConfirmationType::kViewed); @@ -98,7 +98,7 @@ TEST_F(BatAdsConfirmationUtilTest, CreateConfirmationForOptedInUser) { TEST_F(BatAdsConfirmationUtilTest, FailToCreateConfirmationForOptedInUser) { // Arrange ON_CALL(*token_generator_mock_, Generate(_)) - .WillByDefault(Return(privacy::GetTokens(1))); + .WillByDefault(Return(privacy::GetTokens(/*count*/ 1))); const TransactionInfo transaction = BuildTransaction(/*value*/ 0.0, ConfirmationType::kViewed); diff --git a/components/brave_ads/core/internal/account/confirmations/opted_in_credential_json_writer_unittest.cc b/components/brave_ads/core/internal/account/confirmations/opted_in_credential_json_writer_unittest.cc index 177c738c0dd9..dd2efc998e45 100644 --- a/components/brave_ads/core/internal/account/confirmations/opted_in_credential_json_writer_unittest.cc +++ b/components/brave_ads/core/internal/account/confirmations/opted_in_credential_json_writer_unittest.cc @@ -25,7 +25,7 @@ class BatAdsOptedInCredentialJsonWriterTest : public UnitTestBase {}; TEST_F(BatAdsOptedInCredentialJsonWriterTest, WriteJson) { // Arrange const privacy::UnblindedTokenList unblinded_tokens = - privacy::GetUnblindedTokens(1); + privacy::GetUnblindedTokens(/*count*/ 1); ASSERT_TRUE(!unblinded_tokens.empty()); const privacy::UnblindedTokenInfo& unblinded_token = unblinded_tokens.front(); diff --git a/components/brave_ads/core/internal/account/deposits/deposits_database_table.cc b/components/brave_ads/core/internal/account/deposits/deposits_database_table.cc index 598929f8b5d5..c6a1dc5854c4 100644 --- a/components/brave_ads/core/internal/account/deposits/deposits_database_table.cc +++ b/components/brave_ads/core/internal/account/deposits/deposits_database_table.cc @@ -70,11 +70,12 @@ void OnGetForCreativeInstanceId( command_response->status != mojom::DBCommandResponseInfo::StatusType::RESPONSE_OK) { BLOG(0, "Failed to get deposit value"); - return std::move(callback).Run(/*success*/ false, absl::nullopt); + return std::move(callback).Run(/*success*/ false, + /*deposit*/ absl::nullopt); } if (command_response->result->get_records().empty()) { - return std::move(callback).Run(/*success*/ true, absl::nullopt); + return std::move(callback).Run(/*success*/ true, /*deposit*/ absl::nullopt); } const mojom::DBRecordInfoPtr record = @@ -148,7 +149,8 @@ void Deposits::InsertOrUpdate(mojom::DBTransactionInfo* transaction, void Deposits::GetForCreativeInstanceId(const std::string& creative_instance_id, GetDepositsCallback callback) const { if (creative_instance_id.empty()) { - return std::move(callback).Run(/*success*/ false, absl::nullopt); + return std::move(callback).Run(/*success*/ false, + /*deposit*/ absl::nullopt); } const std::string query = base::StringPrintf( diff --git a/components/brave_ads/core/internal/account/issuers/issuers_util_unittest.cc b/components/brave_ads/core/internal/account/issuers/issuers_util_unittest.cc index 6cca2df2fcfc..8d8250ee69bd 100644 --- a/components/brave_ads/core/internal/account/issuers/issuers_util_unittest.cc +++ b/components/brave_ads/core/internal/account/issuers/issuers_util_unittest.cc @@ -231,10 +231,9 @@ TEST_F(BatAdsIssuersUtilTest, IsIssuersValid) { {"hJP1nDjTdHcVDw347oH0XO+XBPPh5wZA2xWZE8QUSSA=", 0.1}}); // Act - const bool is_valid = IsIssuersValid(issuers); // Assert - EXPECT_TRUE(is_valid); + EXPECT_TRUE(IsIssuersValid(issuers)); } TEST_F(BatAdsIssuersUtilTest, IsIssuersInvalid) { diff --git a/components/brave_ads/core/internal/account/transactions/reconciled_transactions_util_unittest.cc b/components/brave_ads/core/internal/account/transactions/reconciled_transactions_util_unittest.cc index b51ada889bea..cd93fde62147 100644 --- a/components/brave_ads/core/internal/account/transactions/reconciled_transactions_util_unittest.cc +++ b/components/brave_ads/core/internal/account/transactions/reconciled_transactions_util_unittest.cc @@ -145,7 +145,7 @@ TEST_F(BatAdsReconciledTransactionsUtilTest, // Act const bool did_reconcile_transaction = DidReconcileTransactionWithinDateRange( - transaction, Now() + base::Seconds(1), DistantFuture()); + transaction, Now() + base::Milliseconds(1), DistantFuture()); // Assert EXPECT_FALSE(did_reconcile_transaction); diff --git a/components/brave_ads/core/internal/account/user_data/rotating_hash_user_data_unittest.cc b/components/brave_ads/core/internal/account/user_data/rotating_hash_user_data_unittest.cc index e5deea6c2d28..9ad0c5933eb2 100644 --- a/components/brave_ads/core/internal/account/user_data/rotating_hash_user_data_unittest.cc +++ b/components/brave_ads/core/internal/account/user_data/rotating_hash_user_data_unittest.cc @@ -51,7 +51,7 @@ TEST_F(BatAdsRotatingHashUserDataTest, RotatingHashMatchesBeforeNextHour) { const base::Value::Dict user_data_before = GetRotatingHash(transaction); // Act - AdvanceClockBy(base::Hours(1) - base::Seconds(1)); + AdvanceClockBy(base::Hours(1) - base::Milliseconds(1)); const base::Value::Dict user_data_after = GetRotatingHash(transaction); diff --git a/components/brave_ads/core/internal/account/utility/redeem_confirmation/redeem_opted_in_confirmation_unittest.cc b/components/brave_ads/core/internal/account/utility/redeem_confirmation/redeem_opted_in_confirmation_unittest.cc index 73dbc0cc08ba..d63ea58520f8 100644 --- a/components/brave_ads/core/internal/account/utility/redeem_confirmation/redeem_opted_in_confirmation_unittest.cc +++ b/components/brave_ads/core/internal/account/utility/redeem_confirmation/redeem_opted_in_confirmation_unittest.cc @@ -85,7 +85,7 @@ TEST_F(BatAdsRedeemOptedInConfirmationTest, Redeem) { BuildAndSetIssuers(); - privacy::SetUnblindedTokens(1); + privacy::SetUnblindedTokens(/*count*/ 1); const absl::optional confirmation = BuildConfirmation(); ASSERT_TRUE(confirmation); @@ -113,7 +113,7 @@ TEST_F(BatAdsRedeemOptedInConfirmationTest, Redeem) { TEST_F(BatAdsRedeemOptedInConfirmationTest, RetryRedeemingIfNoIssuers) { // Arrange - privacy::SetUnblindedTokens(1); + privacy::SetUnblindedTokens(/*count*/ 1); const absl::optional confirmation = BuildConfirmation(); ASSERT_TRUE(confirmation); @@ -164,7 +164,7 @@ TEST_F(BatAdsRedeemOptedInConfirmationTest, BuildAndSetIssuers(); - privacy::SetUnblindedTokens(1); + privacy::SetUnblindedTokens(/*count*/ 1); const absl::optional confirmation = BuildConfirmation(); ASSERT_TRUE(confirmation); @@ -214,7 +214,7 @@ TEST_F(BatAdsRedeemOptedInConfirmationTest, BuildAndSetIssuers(); - privacy::SetUnblindedTokens(1); + privacy::SetUnblindedTokens(/*count*/ 1); const absl::optional confirmation = BuildConfirmation(); ASSERT_TRUE(confirmation); @@ -262,7 +262,7 @@ TEST_F(BatAdsRedeemOptedInConfirmationTest, BuildAndSetIssuers(); - privacy::SetUnblindedTokens(1); + privacy::SetUnblindedTokens(/*count*/ 1); const absl::optional confirmation = BuildConfirmation(); ASSERT_TRUE(confirmation); @@ -313,7 +313,7 @@ TEST_F(BatAdsRedeemOptedInConfirmationTest, BuildAndSetIssuers(); - privacy::SetUnblindedTokens(1); + privacy::SetUnblindedTokens(/*count*/ 1); const absl::optional confirmation = BuildConfirmation(); ASSERT_TRUE(confirmation); @@ -364,7 +364,7 @@ TEST_F(BatAdsRedeemOptedInConfirmationTest, BuildAndSetIssuers(); - privacy::SetUnblindedTokens(1); + privacy::SetUnblindedTokens(/*count*/ 1); const absl::optional confirmation = BuildConfirmation(); ASSERT_TRUE(confirmation); @@ -423,7 +423,7 @@ TEST_F(BatAdsRedeemOptedInConfirmationTest, BuildAndSetIssuers(); - privacy::SetUnblindedTokens(1); + privacy::SetUnblindedTokens(/*count*/ 1); const absl::optional confirmation = BuildConfirmation(); ASSERT_TRUE(confirmation); @@ -493,7 +493,7 @@ TEST_F(BatAdsRedeemOptedInConfirmationTest, BuildAndSetIssuers(); - privacy::SetUnblindedTokens(1); + privacy::SetUnblindedTokens(/*count*/ 1); const absl::optional confirmation = BuildConfirmation(); ASSERT_TRUE(confirmation); @@ -567,7 +567,7 @@ TEST_F(BatAdsRedeemOptedInConfirmationTest, BuildAndSetIssuers(); - privacy::SetUnblindedTokens(1); + privacy::SetUnblindedTokens(/*count*/ 1); const absl::optional confirmation = BuildConfirmation(); ASSERT_TRUE(confirmation); @@ -634,7 +634,7 @@ TEST_F(BatAdsRedeemOptedInConfirmationTest, BuildAndSetIssuers(); - privacy::SetUnblindedTokens(1); + privacy::SetUnblindedTokens(/*count*/ 1); const absl::optional confirmation = BuildConfirmation(); ASSERT_TRUE(confirmation); @@ -707,7 +707,7 @@ TEST_F(BatAdsRedeemOptedInConfirmationTest, BuildAndSetIssuers(); - privacy::SetUnblindedTokens(1); + privacy::SetUnblindedTokens(/*count*/ 1); const absl::optional confirmation = BuildConfirmation(); ASSERT_TRUE(confirmation); @@ -781,7 +781,7 @@ TEST_F(BatAdsRedeemOptedInConfirmationTest, BuildAndSetIssuers(); - privacy::SetUnblindedTokens(1); + privacy::SetUnblindedTokens(/*count*/ 1); const absl::optional confirmation = BuildConfirmation(); ASSERT_TRUE(confirmation); @@ -854,7 +854,7 @@ TEST_F(BatAdsRedeemOptedInConfirmationTest, BuildAndSetIssuers(); - privacy::SetUnblindedTokens(1); + privacy::SetUnblindedTokens(/*count*/ 1); const absl::optional confirmation = BuildConfirmation(); ASSERT_TRUE(confirmation); @@ -927,7 +927,7 @@ TEST_F(BatAdsRedeemOptedInConfirmationTest, BuildAndSetIssuers(); - privacy::SetUnblindedTokens(1); + privacy::SetUnblindedTokens(/*count*/ 1); const absl::optional confirmation = BuildConfirmation(); ASSERT_TRUE(confirmation); @@ -1001,7 +1001,7 @@ TEST_F(BatAdsRedeemOptedInConfirmationTest, BuildAndSetIssuers(); - privacy::SetUnblindedTokens(1); + privacy::SetUnblindedTokens(/*count*/ 1); const absl::optional confirmation = BuildConfirmation(); ASSERT_TRUE(confirmation); @@ -1072,7 +1072,7 @@ TEST_F(BatAdsRedeemOptedInConfirmationTest, BuildAndSetIssuers(); - privacy::SetUnblindedTokens(1); + privacy::SetUnblindedTokens(/*count*/ 1); const absl::optional confirmation = BuildConfirmation(); ASSERT_TRUE(confirmation); @@ -1143,7 +1143,7 @@ TEST_F(BatAdsRedeemOptedInConfirmationTest, BuildAndSetIssuers(); - privacy::SetUnblindedTokens(1); + privacy::SetUnblindedTokens(/*count*/ 1); const absl::optional confirmation = BuildConfirmation(); ASSERT_TRUE(confirmation); @@ -1217,7 +1217,7 @@ TEST_F(BatAdsRedeemOptedInConfirmationTest, BuildAndSetIssuers(); - privacy::SetUnblindedTokens(1); + privacy::SetUnblindedTokens(/*count*/ 1); const absl::optional confirmation = BuildConfirmation(); ASSERT_TRUE(confirmation); diff --git a/components/brave_ads/core/internal/account/utility/redeem_confirmation/url_request_builders/create_opted_in_confirmation_url_request_builder_unittest.cc b/components/brave_ads/core/internal/account/utility/redeem_confirmation/url_request_builders/create_opted_in_confirmation_url_request_builder_unittest.cc index 8ea6f667a895..5ea7e4f1ccd3 100644 --- a/components/brave_ads/core/internal/account/utility/redeem_confirmation/url_request_builders/create_opted_in_confirmation_url_request_builder_unittest.cc +++ b/components/brave_ads/core/internal/account/utility/redeem_confirmation/url_request_builders/create_opted_in_confirmation_url_request_builder_unittest.cc @@ -41,7 +41,7 @@ TEST_F(BatAdsCreateOptedInConfirmationUrlRequestBuilderTest, FlagManager::GetInstance()->SetEnvironmentTypeForTesting( EnvironmentType::kStaging); - privacy::SetUnblindedTokens(1); + privacy::SetUnblindedTokens(/*count*/ 1); MockBuildChannel(BuildChannelType::kRelease); @@ -69,7 +69,7 @@ TEST_F(BatAdsCreateOptedInConfirmationUrlRequestBuilderTest, FlagManager::GetInstance()->SetEnvironmentTypeForTesting( EnvironmentType::kStaging); - privacy::SetUnblindedTokens(1); + privacy::SetUnblindedTokens(/*count*/ 1); MockBuildChannel(BuildChannelType::kRelease); @@ -99,7 +99,7 @@ TEST_F(BatAdsCreateOptedInConfirmationUrlRequestBuilderTest, FlagManager::GetInstance()->SetEnvironmentTypeForTesting( EnvironmentType::kStaging); - privacy::SetUnblindedTokens(1); + privacy::SetUnblindedTokens(/*count*/ 1); MockBuildChannel(BuildChannelType::kRelease); @@ -129,7 +129,7 @@ TEST_F(BatAdsCreateOptedInConfirmationUrlRequestBuilderTest, FlagManager::GetInstance()->SetEnvironmentTypeForTesting( EnvironmentType::kStaging); - privacy::SetUnblindedTokens(1); + privacy::SetUnblindedTokens(/*count*/ 1); MockBuildChannel(BuildChannelType::kNightly); @@ -157,7 +157,7 @@ TEST_F(BatAdsCreateOptedInConfirmationUrlRequestBuilderTest, FlagManager::GetInstance()->SetEnvironmentTypeForTesting( EnvironmentType::kStaging); - privacy::SetUnblindedTokens(1); + privacy::SetUnblindedTokens(/*count*/ 1); MockBuildChannel(BuildChannelType::kNightly); @@ -187,7 +187,7 @@ TEST_F(BatAdsCreateOptedInConfirmationUrlRequestBuilderTest, FlagManager::GetInstance()->SetEnvironmentTypeForTesting( EnvironmentType::kStaging); - privacy::SetUnblindedTokens(1); + privacy::SetUnblindedTokens(/*count*/ 1); MockBuildChannel(BuildChannelType::kNightly); diff --git a/components/brave_ads/core/internal/account/utility/redeem_confirmation/url_request_builders/fetch_payment_token_url_request_builder_unittest.cc b/components/brave_ads/core/internal/account/utility/redeem_confirmation/url_request_builders/fetch_payment_token_url_request_builder_unittest.cc index 7abb7277ac1c..2fac88b17a6b 100644 --- a/components/brave_ads/core/internal/account/utility/redeem_confirmation/url_request_builders/fetch_payment_token_url_request_builder_unittest.cc +++ b/components/brave_ads/core/internal/account/utility/redeem_confirmation/url_request_builders/fetch_payment_token_url_request_builder_unittest.cc @@ -22,7 +22,7 @@ TEST_F(BatAdsFetchPaymentTokenUrlRequestBuilderTest, BuildUrl) { FlagManager::GetInstance()->SetEnvironmentTypeForTesting( EnvironmentType::kStaging); - privacy::SetUnblindedTokens(1); + privacy::SetUnblindedTokens(/*count*/ 1); const absl::optional confirmation = BuildConfirmation(); ASSERT_TRUE(confirmation); diff --git a/components/brave_ads/core/internal/account/utility/redeem_unblinded_payment_tokens/redeem_unblinded_payment_tokens_unittest.cc b/components/brave_ads/core/internal/account/utility/redeem_unblinded_payment_tokens/redeem_unblinded_payment_tokens_unittest.cc index 994b2d9b472f..602c3b8f38ef 100644 --- a/components/brave_ads/core/internal/account/utility/redeem_unblinded_payment_tokens/redeem_unblinded_payment_tokens_unittest.cc +++ b/components/brave_ads/core/internal/account/utility/redeem_unblinded_payment_tokens/redeem_unblinded_payment_tokens_unittest.cc @@ -69,7 +69,7 @@ TEST_F(BatAdsRedeemUnblindedPaymentTokensTest, RedeemUnblindedPaymentTokens) { Now()); const privacy::UnblindedPaymentTokenList unblinded_payment_tokens = - privacy::GetUnblindedPaymentTokens(1); + privacy::GetUnblindedPaymentTokens(/*count*/ 1); privacy::GetUnblindedPaymentTokens()->SetTokens(unblinded_payment_tokens); // Act @@ -139,7 +139,7 @@ TEST_F(BatAdsRedeemUnblindedPaymentTokensTest, Now()); const privacy::UnblindedPaymentTokenList unblinded_payment_tokens = - privacy::GetUnblindedPaymentTokens(1); + privacy::GetUnblindedPaymentTokens(/*count*/ 1); privacy::GetUnblindedPaymentTokens()->SetTokens(unblinded_payment_tokens); // Act @@ -195,7 +195,7 @@ TEST_F(BatAdsRedeemUnblindedPaymentTokensTest, ScheduleNextTokenRedemption) { Now()); const privacy::UnblindedPaymentTokenList unblinded_payment_tokens = - privacy::GetUnblindedPaymentTokens(1); + privacy::GetUnblindedPaymentTokens(/*count*/ 1); privacy::GetUnblindedPaymentTokens()->SetTokens(unblinded_payment_tokens); // Act @@ -250,7 +250,7 @@ TEST_F(BatAdsRedeemUnblindedPaymentTokensTest, InvalidWallet) { Now()); const privacy::UnblindedPaymentTokenList unblinded_payment_tokens = - privacy::GetUnblindedPaymentTokens(1); + privacy::GetUnblindedPaymentTokens(/*count*/ 1); privacy::GetUnblindedPaymentTokens()->SetTokens(unblinded_payment_tokens); // Act @@ -357,7 +357,7 @@ TEST_F(BatAdsRedeemUnblindedPaymentTokensTest, Retry) { Now()); const privacy::UnblindedPaymentTokenList unblinded_payment_tokens = - privacy::GetUnblindedPaymentTokens(1); + privacy::GetUnblindedPaymentTokens(/*count*/ 1); privacy::GetUnblindedPaymentTokens()->SetTokens(unblinded_payment_tokens); // Act diff --git a/components/brave_ads/core/internal/account/utility/refill_unblinded_tokens/refill_unblinded_tokens_unittest.cc b/components/brave_ads/core/internal/account/utility/refill_unblinded_tokens/refill_unblinded_tokens_unittest.cc index 7b929d70f7f1..71aa8b17af07 100644 --- a/components/brave_ads/core/internal/account/utility/refill_unblinded_tokens/refill_unblinded_tokens_unittest.cc +++ b/components/brave_ads/core/internal/account/utility/refill_unblinded_tokens/refill_unblinded_tokens_unittest.cc @@ -970,7 +970,7 @@ TEST_F(BatAdsRefillUnblindedTokensTest, GetInvalidSignedTokens) { TEST_F(BatAdsRefillUnblindedTokensTest, DoNotRefillIfAboveTheMinimumThreshold) { // Arrange - privacy::SetUnblindedTokens(50); + privacy::SetUnblindedTokens(/*count*/ 50); BuildAndSetIssuers(); @@ -1000,7 +1000,7 @@ TEST_F(BatAdsRefillUnblindedTokensTest, DoNotRefillIfAboveTheMinimumThreshold) { TEST_F(BatAdsRefillUnblindedTokensTest, RefillIfBelowTheMinimumThreshold) { // Arrange - privacy::SetUnblindedTokens(19); + privacy::SetUnblindedTokens(/*count*/ 19); const URLResponseMap url_responses = { {// Request signed tokens diff --git a/components/brave_ads/core/internal/ad_event_history_unittest.cc b/components/brave_ads/core/internal/ad_event_history_unittest.cc index 5b235195c747..19958c6ce966 100644 --- a/components/brave_ads/core/internal/ad_event_history_unittest.cc +++ b/components/brave_ads/core/internal/ad_event_history_unittest.cc @@ -98,7 +98,7 @@ TEST_F(BatAdsAdEventHistoryTest, PurgeHistoryOlderThan) { // Arrange RecordAdEvent(kID1, AdType::kNotificationAd, ConfirmationType::kViewed); - AdvanceClockBy(base::Days(1) + base::Seconds(1)); + AdvanceClockBy(base::Days(1) + base::Milliseconds(1)); RecordAdEvent(kID1, AdType::kNotificationAd, ConfirmationType::kViewed); diff --git a/components/brave_ads/core/internal/ads/ad_events/ad_event_util_unittest.cc b/components/brave_ads/core/internal/ads/ad_events/ad_event_util_unittest.cc index e90987871dbb..921b379c9780 100644 --- a/components/brave_ads/core/internal/ads/ad_events/ad_event_util_unittest.cc +++ b/components/brave_ads/core/internal/ads/ad_events/ad_event_util_unittest.cc @@ -30,7 +30,7 @@ TEST(BatAdsAdEventUtilTest, GetLastSeenAdTimeForEmptyAdEvents) { GetLastSeenAdTime(ad_events, creative_ad); // Assert - EXPECT_EQ(absl::nullopt, last_seen_ad_time); + EXPECT_FALSE(last_seen_ad_time); } TEST(BatAdsAdEventUtilTest, GetLastSeenAdTimeForUnseenAd) { @@ -53,7 +53,7 @@ TEST(BatAdsAdEventUtilTest, GetLastSeenAdTimeForUnseenAd) { GetLastSeenAdTime(ad_events, creative_ad_2); // Assert - EXPECT_EQ(absl::nullopt, last_seen_ad_time); + EXPECT_FALSE(last_seen_ad_time); } TEST(BatAdsAdEventUtilTest, GetLastSeenAdTime) { @@ -109,7 +109,7 @@ TEST(BatAdsAdEventUtilTest, GetLastSeenAdvertiserTimeForEmptyAdEvents) { GetLastSeenAdvertiserTime(ad_events, creative_ad); // Assert - EXPECT_EQ(absl::nullopt, last_seen_advertiser_time); + EXPECT_FALSE(last_seen_advertiser_time); } TEST(BatAdsAdEventUtilTest, GetLastSeenAdvertiserTimeForUnseenAdvertiser) { @@ -131,7 +131,7 @@ TEST(BatAdsAdEventUtilTest, GetLastSeenAdvertiserTimeForUnseenAdvertiser) { GetLastSeenAdvertiserTime(ad_events, creative_ad_2); // Assert - EXPECT_EQ(absl::nullopt, last_seen_advertiser_time); + EXPECT_FALSE(last_seen_advertiser_time); } TEST(BatAdsAdEventUtilTest, GetLastSeenAdvertiserTime) { diff --git a/components/brave_ads/core/internal/ads/ad_events/new_tab_page_ads/new_tab_page_ad_event_handler_if_ads_disabled_unittest.cc b/components/brave_ads/core/internal/ads/ad_events/new_tab_page_ads/new_tab_page_ad_event_handler_if_ads_disabled_unittest.cc index 718c705703e0..3ce49e276c7d 100644 --- a/components/brave_ads/core/internal/ads/ad_events/new_tab_page_ads/new_tab_page_ad_event_handler_if_ads_disabled_unittest.cc +++ b/components/brave_ads/core/internal/ads/ad_events/new_tab_page_ads/new_tab_page_ad_event_handler_if_ads_disabled_unittest.cc @@ -327,7 +327,7 @@ TEST_F(BatAdsNewTabPageAdEventHandlerIfAdsDisabledTest, creative_ad, AdType::kNewTabPageAd, ConfirmationType::kViewed, Now()); FireAdEvents(viewed_ad_event, ads_per_day - 1); - AdvanceClockBy(base::Days(1) - base::Seconds(1)); + AdvanceClockBy(base::Days(1) - base::Milliseconds(1)); const std::string placement_id = base::GUID::GenerateRandomV4().AsLowercaseString(); @@ -361,7 +361,7 @@ TEST_F(BatAdsNewTabPageAdEventHandlerIfAdsDisabledTest, creative_ad, AdType::kNewTabPageAd, ConfirmationType::kViewed, Now()); FireAdEvents(viewed_ad_event, ads_per_day); - AdvanceClockBy(base::Days(1) - base::Seconds(1)); + AdvanceClockBy(base::Days(1) - base::Milliseconds(1)); const std::string placement_id = base::GUID::GenerateRandomV4().AsLowercaseString(); diff --git a/components/brave_ads/core/internal/ads/search_result_ad_test.cc b/components/brave_ads/core/internal/ads/search_result_ad_test.cc index 3b77b2483e52..10676688ba2e 100644 --- a/components/brave_ads/core/internal/ads/search_result_ad_test.cc +++ b/components/brave_ads/core/internal/ads/search_result_ad_test.cc @@ -27,7 +27,7 @@ class BatAdsSearchResultAdIntegrationTest : public UnitTestBase { ForcePermissionRulesForTesting(); // Need to trigger several search result ad events. - privacy::SetUnblindedTokens(11); + privacy::SetUnblindedTokens(/*count*/ 11); } }; diff --git a/components/brave_ads/core/internal/ads/serving/eligible_ads/exclusion_rules/creative_instance_exclusion_rule_unittest.cc b/components/brave_ads/core/internal/ads/serving/eligible_ads/exclusion_rules/creative_instance_exclusion_rule_unittest.cc index 442b26cf6282..d9cd5894e5bb 100644 --- a/components/brave_ads/core/internal/ads/serving/eligible_ads/exclusion_rules/creative_instance_exclusion_rule_unittest.cc +++ b/components/brave_ads/core/internal/ads/serving/eligible_ads/exclusion_rules/creative_instance_exclusion_rule_unittest.cc @@ -101,7 +101,7 @@ TEST_F(BatAdsCreativeInstanceExclusionRuleTest, ad_events.push_back(ad_event); - AdvanceClockBy(base::Hours(1) - base::Seconds(1)); + AdvanceClockBy(base::Hours(1) - base::Milliseconds(1)); // Act CreativeInstanceExclusionRule exclusion_rule(ad_events); diff --git a/components/brave_ads/core/internal/ads/serving/eligible_ads/exclusion_rules/daily_cap_exclusion_rule_unittest.cc b/components/brave_ads/core/internal/ads/serving/eligible_ads/exclusion_rules/daily_cap_exclusion_rule_unittest.cc index 0f91cf3c7a47..285a9c6a0852 100644 --- a/components/brave_ads/core/internal/ads/serving/eligible_ads/exclusion_rules/daily_cap_exclusion_rule_unittest.cc +++ b/components/brave_ads/core/internal/ads/serving/eligible_ads/exclusion_rules/daily_cap_exclusion_rule_unittest.cc @@ -99,7 +99,7 @@ TEST_F(BatAdsDailyCapExclusionRuleTest, AllowAdIfDoesNotExceedCapWithin1Day) { ad_events.push_back(ad_event); - AdvanceClockBy(base::Days(1) - base::Seconds(1)); + AdvanceClockBy(base::Days(1) - base::Milliseconds(1)); // Act DailyCapExclusionRule exclusion_rule(ad_events); diff --git a/components/brave_ads/core/internal/ads/serving/eligible_ads/exclusion_rules/notification_ads/notification_ad_dismissed_exclusion_rule_unittest.cc b/components/brave_ads/core/internal/ads/serving/eligible_ads/exclusion_rules/notification_ads/notification_ad_dismissed_exclusion_rule_unittest.cc index c4394c352596..949aa5021943 100644 --- a/components/brave_ads/core/internal/ads/serving/eligible_ads/exclusion_rules/notification_ads/notification_ad_dismissed_exclusion_rule_unittest.cc +++ b/components/brave_ads/core/internal/ads/serving/eligible_ads/exclusion_rules/notification_ads/notification_ad_dismissed_exclusion_rule_unittest.cc @@ -78,7 +78,7 @@ TEST_F(BatAdsDismissedExclusionRuleTest, AdvanceClockBy(base::Hours(48) - (base::Minutes(5) * confirmation_types.size()) - - base::Seconds(1)); + base::Milliseconds(1)); // Act DismissedExclusionRule exclusion_rule(ad_events); @@ -169,7 +169,7 @@ TEST_F(BatAdsDismissedExclusionRuleTest, AdvanceClockBy(base::Hours(48) - (base::Minutes(5) * confirmation_types.size()) - - base::Seconds(1)); + base::Milliseconds(1)); // Act DismissedExclusionRule exclusion_rule(ad_events); @@ -256,7 +256,7 @@ TEST_F(BatAdsDismissedExclusionRuleTest, AdvanceClockBy(base::Hours(48) - (base::Minutes(5) * confirmation_types.size()) - - base::Seconds(1)); + base::Milliseconds(1)); // Act DismissedExclusionRule exclusion_rule(ad_events); @@ -387,7 +387,7 @@ TEST_F(BatAdsDismissedExclusionRuleTest, AdvanceClockBy(base::Hours(48) - (base::Minutes(5) * confirmation_types.size()) - - base::Seconds(1)); + base::Milliseconds(1)); // Act DismissedExclusionRule exclusion_rule(ad_events); @@ -474,7 +474,7 @@ TEST_F(BatAdsDismissedExclusionRuleTest, AdvanceClockBy(base::Hours(48) - (base::Minutes(5) * confirmation_types.size()) - - base::Seconds(1)); + base::Milliseconds(1)); // Act DismissedExclusionRule exclusion_rule(ad_events); diff --git a/components/brave_ads/core/internal/ads/serving/eligible_ads/exclusion_rules/per_day_exclusion_rule_unittest.cc b/components/brave_ads/core/internal/ads/serving/eligible_ads/exclusion_rules/per_day_exclusion_rule_unittest.cc index b8f5a31ed878..589574846906 100644 --- a/components/brave_ads/core/internal/ads/serving/eligible_ads/exclusion_rules/per_day_exclusion_rule_unittest.cc +++ b/components/brave_ads/core/internal/ads/serving/eligible_ads/exclusion_rules/per_day_exclusion_rule_unittest.cc @@ -107,7 +107,7 @@ TEST_F(BatAdsPerDayExclusionRuleTest, DoNotAllowAdIfExceedsCapWithin1Day) { ad_events.push_back(ad_event); ad_events.push_back(ad_event); - AdvanceClockBy(base::Hours(24) - base::Seconds(1)); + AdvanceClockBy(base::Hours(24) - base::Milliseconds(1)); // Act PerDayExclusionRule exclusion_rule(ad_events); diff --git a/components/brave_ads/core/internal/ads/serving/eligible_ads/exclusion_rules/per_month_exclusion_rule_unittest.cc b/components/brave_ads/core/internal/ads/serving/eligible_ads/exclusion_rules/per_month_exclusion_rule_unittest.cc index 302960f65588..b7cdcdc92e17 100644 --- a/components/brave_ads/core/internal/ads/serving/eligible_ads/exclusion_rules/per_month_exclusion_rule_unittest.cc +++ b/components/brave_ads/core/internal/ads/serving/eligible_ads/exclusion_rules/per_month_exclusion_rule_unittest.cc @@ -107,7 +107,7 @@ TEST_F(BatAdsPerMonthExclusionRuleTest, DoNotAllowAdIfExceedsCapWithin1Month) { ad_events.push_back(ad_event); ad_events.push_back(ad_event); - AdvanceClockBy(base::Days(28) - base::Seconds(1)); + AdvanceClockBy(base::Days(28) - base::Milliseconds(1)); // Act PerMonthExclusionRule exclusion_rule(ad_events); diff --git a/components/brave_ads/core/internal/ads/serving/eligible_ads/exclusion_rules/per_week_exclusion_rule_unittest.cc b/components/brave_ads/core/internal/ads/serving/eligible_ads/exclusion_rules/per_week_exclusion_rule_unittest.cc index d86f2b39165b..1dda5162a6db 100644 --- a/components/brave_ads/core/internal/ads/serving/eligible_ads/exclusion_rules/per_week_exclusion_rule_unittest.cc +++ b/components/brave_ads/core/internal/ads/serving/eligible_ads/exclusion_rules/per_week_exclusion_rule_unittest.cc @@ -107,7 +107,7 @@ TEST_F(BatAdsPerWeekExclusionRuleTest, DoNotAllowAdIfExceedsCapWithin1Week) { ad_events.push_back(ad_event); ad_events.push_back(ad_event); - AdvanceClockBy(base::Days(7) - base::Seconds(1)); + AdvanceClockBy(base::Days(7) - base::Milliseconds(1)); // Act PerWeekExclusionRule exclusion_rule(ad_events); diff --git a/components/brave_ads/core/internal/ads/serving/eligible_ads/exclusion_rules/transferred_exclusion_rule_unittest.cc b/components/brave_ads/core/internal/ads/serving/eligible_ads/exclusion_rules/transferred_exclusion_rule_unittest.cc index b0faf453b9e2..783da52ca9b8 100644 --- a/components/brave_ads/core/internal/ads/serving/eligible_ads/exclusion_rules/transferred_exclusion_rule_unittest.cc +++ b/components/brave_ads/core/internal/ads/serving/eligible_ads/exclusion_rules/transferred_exclusion_rule_unittest.cc @@ -73,7 +73,7 @@ TEST_F(BatAdsTransferredExclusionRuleTest, ad_events.push_back(ad_event); - AdvanceClockBy(base::Hours(48) - base::Seconds(1)); + AdvanceClockBy(base::Hours(48) - base::Milliseconds(1)); // Act TransferredExclusionRule exclusion_rule(ad_events); @@ -127,7 +127,7 @@ TEST_F(BatAdsTransferredExclusionRuleTest, ConfirmationType::kTransferred, Now()); ad_events.push_back(ad_event_3); - AdvanceClockBy(base::Hours(48) - base::Seconds(1)); + AdvanceClockBy(base::Hours(48) - base::Milliseconds(1)); // Act TransferredExclusionRule exclusion_rule(ad_events); @@ -163,7 +163,7 @@ TEST_F(BatAdsTransferredExclusionRuleTest, ad_events.push_back(ad_event); - AdvanceClockBy(base::Hours(48) - base::Seconds(1)); + AdvanceClockBy(base::Hours(48) - base::Milliseconds(1)); // Act TransferredExclusionRule exclusion_rule(ad_events); @@ -199,7 +199,7 @@ TEST_F(BatAdsTransferredExclusionRuleTest, ad_events.push_back(ad_event); - AdvanceClockBy(base::Hours(48) - base::Seconds(1)); + AdvanceClockBy(base::Hours(48) - base::Milliseconds(1)); // Act TransferredExclusionRule exclusion_rule(ad_events); diff --git a/components/brave_ads/core/internal/ads/serving/inline_content_ad_serving.cc b/components/brave_ads/core/internal/ads/serving/inline_content_ad_serving.cc index fceea4bd8f84..56b44b176d13 100644 --- a/components/brave_ads/core/internal/ads/serving/inline_content_ad_serving.cc +++ b/components/brave_ads/core/internal/ads/serving/inline_content_ad_serving.cc @@ -137,7 +137,7 @@ void Serving::FailedToServeAd(const std::string& dimensions, MaybeServeInlineContentAdCallback callback) { NotifyFailedToServeInlineContentAd(); - std::move(callback).Run(dimensions, absl::nullopt); + std::move(callback).Run(dimensions, /*ad*/ absl::nullopt); } void Serving::NotifyOpportunityAroseToServeInlineContentAd( diff --git a/components/brave_ads/core/internal/ads/serving/new_tab_page_ad_serving.cc b/components/brave_ads/core/internal/ads/serving/new_tab_page_ad_serving.cc index edfb8800344b..6d5ed3c119fc 100644 --- a/components/brave_ads/core/internal/ads/serving/new_tab_page_ad_serving.cc +++ b/components/brave_ads/core/internal/ads/serving/new_tab_page_ad_serving.cc @@ -134,7 +134,7 @@ void Serving::ServeAd(const NewTabPageAdInfo& ad, void Serving::FailedToServeAd(MaybeServeNewTabPageAdCallback callback) { NotifyFailedToServeNewTabPageAd(); - std::move(callback).Run(/*ads*/ absl::nullopt); + std::move(callback).Run(/*ad*/ absl::nullopt); } void Serving::NotifyOpportunityAroseToServeNewTabPageAd( diff --git a/components/brave_ads/core/internal/ads/serving/permission_rules/allow_notifications_permission_rule_unittest.cc b/components/brave_ads/core/internal/ads/serving/permission_rules/allow_notifications_permission_rule_unittest.cc index 4864295142b8..dd98db4523be 100644 --- a/components/brave_ads/core/internal/ads/serving/permission_rules/allow_notifications_permission_rule_unittest.cc +++ b/components/brave_ads/core/internal/ads/serving/permission_rules/allow_notifications_permission_rule_unittest.cc @@ -12,18 +12,19 @@ namespace brave_ads { -class BatAdsAllowNotificationsPermissionRuleTest : public UnitTestBase {}; +class BatAdsAllowNotificationsPermissionRuleTest : public UnitTestBase { + protected: + AllowNotificationsPermissionRule permission_rule_; +}; TEST_F(BatAdsAllowNotificationsPermissionRuleTest, AllowAd) { // Arrange MockCanShowNotificationAds(ads_client_mock_, true); // Act - AllowNotificationsPermissionRule permission_rule; - const bool is_allowed = permission_rule.ShouldAllow(); // Assert - EXPECT_TRUE(is_allowed); + EXPECT_TRUE(permission_rule_.ShouldAllow()); } TEST_F(BatAdsAllowNotificationsPermissionRuleTest, DoNotAllowAd) { @@ -31,11 +32,9 @@ TEST_F(BatAdsAllowNotificationsPermissionRuleTest, DoNotAllowAd) { MockCanShowNotificationAds(ads_client_mock_, false); // Act - AllowNotificationsPermissionRule permission_rule; - const bool is_allowed = permission_rule.ShouldAllow(); // Assert - EXPECT_FALSE(is_allowed); + EXPECT_FALSE(permission_rule_.ShouldAllow()); } } // namespace brave_ads diff --git a/components/brave_ads/core/internal/ads/serving/permission_rules/browser_is_active_permission_rule_unittest.cc b/components/brave_ads/core/internal/ads/serving/permission_rules/browser_is_active_permission_rule_unittest.cc index bf063c1e606b..614532456bc2 100644 --- a/components/brave_ads/core/internal/ads/serving/permission_rules/browser_is_active_permission_rule_unittest.cc +++ b/components/brave_ads/core/internal/ads/serving/permission_rules/browser_is_active_permission_rule_unittest.cc @@ -16,7 +16,10 @@ namespace brave_ads { -class BatAdsBrowserIsActivePermissionRuleTest : public UnitTestBase {}; +class BatAdsBrowserIsActivePermissionRuleTest : public UnitTestBase { + protected: + BrowserIsActivePermissionRule permission_rule_; +}; TEST_F(BatAdsBrowserIsActivePermissionRuleTest, AllowAd) { // Arrange @@ -27,9 +30,7 @@ TEST_F(BatAdsBrowserIsActivePermissionRuleTest, AllowAd) { NotifyBrowserDidEnterForeground(); // Assert - BrowserIsActivePermissionRule permission_rule; - const bool is_allowed = permission_rule.ShouldAllow(); - EXPECT_TRUE(is_allowed); + EXPECT_TRUE(permission_rule_.ShouldAllow()); } TEST_F(BatAdsBrowserIsActivePermissionRuleTest, AlwaysAllowAdForAndroid) { @@ -41,9 +42,7 @@ TEST_F(BatAdsBrowserIsActivePermissionRuleTest, AlwaysAllowAdForAndroid) { NotifyBrowserDidEnterBackground(); // Assert - BrowserIsActivePermissionRule permission_rule; - const bool is_allowed = permission_rule.ShouldAllow(); - EXPECT_TRUE(is_allowed); + EXPECT_TRUE(permission_rule_.ShouldAllow()); } TEST_F(BatAdsBrowserIsActivePermissionRuleTest, DoNotAllowAd) { @@ -55,9 +54,7 @@ TEST_F(BatAdsBrowserIsActivePermissionRuleTest, DoNotAllowAd) { NotifyBrowserDidEnterBackground(); // Assert - BrowserIsActivePermissionRule permission_rule; - const bool is_allowed = permission_rule.ShouldAllow(); - EXPECT_FALSE(is_allowed); + EXPECT_FALSE(permission_rule_.ShouldAllow()); } TEST_F(BatAdsBrowserIsActivePermissionRuleTest, @@ -81,9 +78,7 @@ TEST_F(BatAdsBrowserIsActivePermissionRuleTest, NotifyBrowserDidEnterBackground(); // Assert - BrowserIsActivePermissionRule permission_rule; - const bool is_allowed = permission_rule.ShouldAllow(); - EXPECT_TRUE(is_allowed); + EXPECT_TRUE(permission_rule_.ShouldAllow()); } TEST_F(BatAdsBrowserIsActivePermissionRuleTest, @@ -96,9 +91,7 @@ TEST_F(BatAdsBrowserIsActivePermissionRuleTest, NotifyBrowserDidEnterBackground(); // Assert - BrowserIsActivePermissionRule permission_rule; - const bool is_allowed = permission_rule.ShouldAllow(); - EXPECT_FALSE(is_allowed); + EXPECT_FALSE(permission_rule_.ShouldAllow()); } TEST_F(BatAdsBrowserIsActivePermissionRuleTest, @@ -111,9 +104,7 @@ TEST_F(BatAdsBrowserIsActivePermissionRuleTest, NotifyBrowserDidEnterForeground(); // Assert - BrowserIsActivePermissionRule permission_rule; - const bool is_allowed = permission_rule.ShouldAllow(); - EXPECT_FALSE(is_allowed); + EXPECT_FALSE(permission_rule_.ShouldAllow()); } } // namespace brave_ads diff --git a/components/brave_ads/core/internal/ads/serving/permission_rules/catalog_permission_rule_test.cc b/components/brave_ads/core/internal/ads/serving/permission_rules/catalog_permission_rule_test.cc index 9dd6a28c557c..c905578d17d7 100644 --- a/components/brave_ads/core/internal/ads/serving/permission_rules/catalog_permission_rule_test.cc +++ b/components/brave_ads/core/internal/ads/serving/permission_rules/catalog_permission_rule_test.cc @@ -25,30 +25,28 @@ class BatAdsCatalogPermissionRuleIntegrationTest : public UnitTestBase { {"/v9/catalog", {{net::HTTP_OK, "/catalog.json"}}}}; MockUrlResponses(ads_client_mock_, url_responses); } + + CatalogPermissionRule permission_rule_; }; TEST_F(BatAdsCatalogPermissionRuleIntegrationTest, AllowAd) { // Arrange // Act - CatalogPermissionRule permission_rule; - const bool is_allowed = permission_rule.ShouldAllow(); // Assert - EXPECT_TRUE(is_allowed); + EXPECT_TRUE(permission_rule_.ShouldAllow()); } TEST_F(BatAdsCatalogPermissionRuleIntegrationTest, AllowAdIfCatalogWasLastUpdated23HoursAnd59MinutesAgo) { // Arrange - AdvanceClockBy(base::Days(1) - base::Seconds(1)); + AdvanceClockBy(base::Days(1) - base::Milliseconds(1)); // Act - CatalogPermissionRule permission_rule; - const bool is_allowed = permission_rule.ShouldAllow(); // Assert - EXPECT_TRUE(is_allowed); + EXPECT_TRUE(permission_rule_.ShouldAllow()); } TEST_F(BatAdsCatalogPermissionRuleIntegrationTest, @@ -57,11 +55,9 @@ TEST_F(BatAdsCatalogPermissionRuleIntegrationTest, AdvanceClockBy(base::Days(1)); // Act - CatalogPermissionRule permission_rule; - const bool is_allowed = permission_rule.ShouldAllow(); // Assert - EXPECT_FALSE(is_allowed); + EXPECT_FALSE(permission_rule_.ShouldAllow()); } TEST_F(BatAdsCatalogPermissionRuleIntegrationTest, @@ -70,11 +66,9 @@ TEST_F(BatAdsCatalogPermissionRuleIntegrationTest, SetCatalogVersion(0); // Act - CatalogPermissionRule permission_rule; - const bool is_allowed = permission_rule.ShouldAllow(); // Assert - EXPECT_FALSE(is_allowed); + EXPECT_FALSE(permission_rule_.ShouldAllow()); } } // namespace brave_ads diff --git a/components/brave_ads/core/internal/ads/serving/permission_rules/command_line_permission_rule_unittest.cc b/components/brave_ads/core/internal/ads/serving/permission_rules/command_line_permission_rule_unittest.cc index e9dcdbc80371..759a8875ee1a 100644 --- a/components/brave_ads/core/internal/ads/serving/permission_rules/command_line_permission_rule_unittest.cc +++ b/components/brave_ads/core/internal/ads/serving/permission_rules/command_line_permission_rule_unittest.cc @@ -13,7 +13,10 @@ namespace brave_ads { -class BatAdsCommandLinePermissionRuleTest : public UnitTestBase {}; +class BatAdsCommandLinePermissionRuleTest : public UnitTestBase { + protected: + CommandLinePermissionRule permission_rule_; +}; TEST_F(BatAdsCommandLinePermissionRuleTest, AllowAdIfDidNotOverrideCommandLineSwitchesForProduction) { @@ -24,11 +27,9 @@ TEST_F(BatAdsCommandLinePermissionRuleTest, FlagManager::GetInstance()->SetDidOverrideFromCommandLineForTesting(false); // Act - CommandLinePermissionRule permission_rule; - const bool is_allowed = permission_rule.ShouldAllow(); // Assert - EXPECT_TRUE(is_allowed); + EXPECT_TRUE(permission_rule_.ShouldAllow()); } TEST_F(BatAdsCommandLinePermissionRuleTest, @@ -40,11 +41,9 @@ TEST_F(BatAdsCommandLinePermissionRuleTest, FlagManager::GetInstance()->SetDidOverrideFromCommandLineForTesting(false); // Act - CommandLinePermissionRule permission_rule; - const bool is_allowed = permission_rule.ShouldAllow(); // Assert - EXPECT_TRUE(is_allowed); + EXPECT_TRUE(permission_rule_.ShouldAllow()); } TEST_F(BatAdsCommandLinePermissionRuleTest, @@ -56,11 +55,9 @@ TEST_F(BatAdsCommandLinePermissionRuleTest, FlagManager::GetInstance()->SetDidOverrideFromCommandLineForTesting(true); // Act - CommandLinePermissionRule permission_rule; - const bool is_allowed = permission_rule.ShouldAllow(); // Assert - EXPECT_FALSE(is_allowed); + EXPECT_FALSE(permission_rule_.ShouldAllow()); } TEST_F(BatAdsCommandLinePermissionRuleTest, @@ -72,11 +69,9 @@ TEST_F(BatAdsCommandLinePermissionRuleTest, FlagManager::GetInstance()->SetDidOverrideFromCommandLineForTesting(true); // Act - CommandLinePermissionRule permission_rule; - const bool is_allowed = permission_rule.ShouldAllow(); // Assert - EXPECT_TRUE(is_allowed); + EXPECT_TRUE(permission_rule_.ShouldAllow()); } } // namespace brave_ads diff --git a/components/brave_ads/core/internal/ads/serving/permission_rules/do_not_disturb_permission_rule_unittest.cc b/components/brave_ads/core/internal/ads/serving/permission_rules/do_not_disturb_permission_rule_unittest.cc index 0ad975599290..f394267e3a36 100644 --- a/components/brave_ads/core/internal/ads/serving/permission_rules/do_not_disturb_permission_rule_unittest.cc +++ b/components/brave_ads/core/internal/ads/serving/permission_rules/do_not_disturb_permission_rule_unittest.cc @@ -31,8 +31,7 @@ TEST_F(BatAdsDoNotDisturbPermissionRuleTest, // Assert DoNotDisturbPermissionRule permission_rule; - const bool is_allowed = permission_rule.ShouldAllow(); - EXPECT_FALSE(is_allowed); + EXPECT_FALSE(permission_rule.ShouldAllow()); } { @@ -41,8 +40,7 @@ TEST_F(BatAdsDoNotDisturbPermissionRuleTest, // Assert DoNotDisturbPermissionRule permission_rule; - const bool is_allowed = permission_rule.ShouldAllow(); - EXPECT_TRUE(is_allowed); + EXPECT_TRUE(permission_rule.ShouldAllow()); } { @@ -51,8 +49,7 @@ TEST_F(BatAdsDoNotDisturbPermissionRuleTest, // Assert DoNotDisturbPermissionRule permission_rule; - const bool is_allowed = permission_rule.ShouldAllow(); - EXPECT_TRUE(is_allowed); + EXPECT_TRUE(permission_rule.ShouldAllow()); } { @@ -61,8 +58,7 @@ TEST_F(BatAdsDoNotDisturbPermissionRuleTest, // Assert DoNotDisturbPermissionRule permission_rule; - const bool is_allowed = permission_rule.ShouldAllow(); - EXPECT_FALSE(is_allowed); + EXPECT_FALSE(permission_rule.ShouldAllow()); } } @@ -83,8 +79,7 @@ TEST_F(BatAdsDoNotDisturbPermissionRuleTest, // Assert DoNotDisturbPermissionRule permission_rule; - const bool is_allowed = permission_rule.ShouldAllow(); - EXPECT_TRUE(is_allowed); + EXPECT_TRUE(permission_rule.ShouldAllow()); } { @@ -93,8 +88,7 @@ TEST_F(BatAdsDoNotDisturbPermissionRuleTest, // Assert DoNotDisturbPermissionRule permission_rule; - const bool is_allowed = permission_rule.ShouldAllow(); - EXPECT_TRUE(is_allowed); + EXPECT_TRUE(permission_rule.ShouldAllow()); } { @@ -103,8 +97,7 @@ TEST_F(BatAdsDoNotDisturbPermissionRuleTest, // Assert DoNotDisturbPermissionRule permission_rule; - const bool is_allowed = permission_rule.ShouldAllow(); - EXPECT_TRUE(is_allowed); + EXPECT_TRUE(permission_rule.ShouldAllow()); } { @@ -113,8 +106,7 @@ TEST_F(BatAdsDoNotDisturbPermissionRuleTest, // Assert DoNotDisturbPermissionRule permission_rule; - const bool is_allowed = permission_rule.ShouldAllow(); - EXPECT_TRUE(is_allowed); + EXPECT_TRUE(permission_rule.ShouldAllow()); } } @@ -133,8 +125,7 @@ TEST_F(BatAdsDoNotDisturbPermissionRuleTest, AlwaysAllowAdForIOS) { // Assert DoNotDisturbPermissionRule permission_rule; - const bool is_allowed = permission_rule.ShouldAllow(); - EXPECT_TRUE(is_allowed); + EXPECT_TRUE(permission_rule.ShouldAllow()); } { @@ -143,8 +134,7 @@ TEST_F(BatAdsDoNotDisturbPermissionRuleTest, AlwaysAllowAdForIOS) { // Assert DoNotDisturbPermissionRule permission_rule; - const bool is_allowed = permission_rule.ShouldAllow(); - EXPECT_TRUE(is_allowed); + EXPECT_TRUE(permission_rule.ShouldAllow()); } } @@ -163,8 +153,7 @@ TEST_F(BatAdsDoNotDisturbPermissionRuleTest, AlwaysAllowAdForMacOS) { // Assert DoNotDisturbPermissionRule permission_rule; - const bool is_allowed = permission_rule.ShouldAllow(); - EXPECT_TRUE(is_allowed); + EXPECT_TRUE(permission_rule.ShouldAllow()); } { @@ -173,8 +162,7 @@ TEST_F(BatAdsDoNotDisturbPermissionRuleTest, AlwaysAllowAdForMacOS) { // Assert DoNotDisturbPermissionRule permission_rule; - const bool is_allowed = permission_rule.ShouldAllow(); - EXPECT_TRUE(is_allowed); + EXPECT_TRUE(permission_rule.ShouldAllow()); } } @@ -193,8 +181,7 @@ TEST_F(BatAdsDoNotDisturbPermissionRuleTest, AlwaysAllowAdForWindows) { // Assert DoNotDisturbPermissionRule permission_rule; - const bool is_allowed = permission_rule.ShouldAllow(); - EXPECT_TRUE(is_allowed); + EXPECT_TRUE(permission_rule.ShouldAllow()); } { @@ -203,8 +190,7 @@ TEST_F(BatAdsDoNotDisturbPermissionRuleTest, AlwaysAllowAdForWindows) { // Assert DoNotDisturbPermissionRule permission_rule; - const bool is_allowed = permission_rule.ShouldAllow(); - EXPECT_TRUE(is_allowed); + EXPECT_TRUE(permission_rule.ShouldAllow()); } } @@ -223,8 +209,7 @@ TEST_F(BatAdsDoNotDisturbPermissionRuleTest, AlwaysAllowAdForLinux) { // Assert DoNotDisturbPermissionRule permission_rule; - const bool is_allowed = permission_rule.ShouldAllow(); - EXPECT_TRUE(is_allowed); + EXPECT_TRUE(permission_rule.ShouldAllow()); } { @@ -233,8 +218,7 @@ TEST_F(BatAdsDoNotDisturbPermissionRuleTest, AlwaysAllowAdForLinux) { // Assert DoNotDisturbPermissionRule permission_rule; - const bool is_allowed = permission_rule.ShouldAllow(); - EXPECT_TRUE(is_allowed); + EXPECT_TRUE(permission_rule.ShouldAllow()); } } diff --git a/components/brave_ads/core/internal/ads/serving/permission_rules/full_screen_mode_permission_rule_unittest.cc b/components/brave_ads/core/internal/ads/serving/permission_rules/full_screen_mode_permission_rule_unittest.cc index 0835361c8475..b39f9a0d4d07 100644 --- a/components/brave_ads/core/internal/ads/serving/permission_rules/full_screen_mode_permission_rule_unittest.cc +++ b/components/brave_ads/core/internal/ads/serving/permission_rules/full_screen_mode_permission_rule_unittest.cc @@ -16,18 +16,19 @@ namespace brave_ads { -class BatAdsFullScreenModePermissionRuleTest : public UnitTestBase {}; +class BatAdsFullScreenModePermissionRuleTest : public UnitTestBase { + protected: + FullScreenModePermissionRule permission_rule_; +}; TEST_F(BatAdsFullScreenModePermissionRuleTest, AllowAd) { // Arrange MockIsBrowserInFullScreenMode(ads_client_mock_, false); // Act - FullScreenModePermissionRule permission_rule; - const bool is_allowed = permission_rule.ShouldAllow(); // Assert - EXPECT_TRUE(is_allowed); + EXPECT_TRUE(permission_rule_.ShouldAllow()); } TEST_F(BatAdsFullScreenModePermissionRuleTest, AlwaysAllowAdForAndroid) { @@ -37,11 +38,9 @@ TEST_F(BatAdsFullScreenModePermissionRuleTest, AlwaysAllowAdForAndroid) { MockIsBrowserInFullScreenMode(ads_client_mock_, true); // Act - FullScreenModePermissionRule permission_rule; - const bool is_allowed = permission_rule.ShouldAllow(); // Assert - EXPECT_TRUE(is_allowed); + EXPECT_TRUE(permission_rule_.ShouldAllow()); } TEST_F(BatAdsFullScreenModePermissionRuleTest, AlwaysAllowAdForIOS) { @@ -51,11 +50,9 @@ TEST_F(BatAdsFullScreenModePermissionRuleTest, AlwaysAllowAdForIOS) { MockIsBrowserInFullScreenMode(ads_client_mock_, true); // Act - FullScreenModePermissionRule permission_rule; - const bool is_allowed = permission_rule.ShouldAllow(); // Assert - EXPECT_TRUE(is_allowed); + EXPECT_TRUE(permission_rule_.ShouldAllow()); } TEST_F(BatAdsFullScreenModePermissionRuleTest, DoNotAllowAd) { @@ -63,11 +60,9 @@ TEST_F(BatAdsFullScreenModePermissionRuleTest, DoNotAllowAd) { MockIsBrowserInFullScreenMode(ads_client_mock_, true); // Act - FullScreenModePermissionRule permission_rule; - const bool is_allowed = permission_rule.ShouldAllow(); // Assert - EXPECT_FALSE(is_allowed); + EXPECT_FALSE(permission_rule_.ShouldAllow()); } TEST_F(BatAdsFullScreenModePermissionRuleTest, @@ -87,11 +82,9 @@ TEST_F(BatAdsFullScreenModePermissionRuleTest, MockIsBrowserInFullScreenMode(ads_client_mock_, true); // Act - FullScreenModePermissionRule permission_rule; - const bool is_allowed = permission_rule.ShouldAllow(); // Assert - EXPECT_TRUE(is_allowed); + EXPECT_TRUE(permission_rule_.ShouldAllow()); } } // namespace brave_ads diff --git a/components/brave_ads/core/internal/ads/serving/permission_rules/inline_content_ads/inline_content_ads_per_day_permission_rule.cc b/components/brave_ads/core/internal/ads/serving/permission_rules/inline_content_ads/inline_content_ads_per_day_permission_rule.cc index d58f8167e98c..fbfda4d63e7d 100644 --- a/components/brave_ads/core/internal/ads/serving/permission_rules/inline_content_ads/inline_content_ads_per_day_permission_rule.cc +++ b/components/brave_ads/core/internal/ads/serving/permission_rules/inline_content_ads/inline_content_ads_per_day_permission_rule.cc @@ -21,8 +21,9 @@ namespace { constexpr base::TimeDelta kTimeConstraint = base::Days(1); bool DoesRespectCap(const std::vector& history) { - return DoesHistoryRespectRollingTimeConstraint(history, kTimeConstraint, - kMaximumAdsPerDay.Get()); + return DoesHistoryRespectRollingTimeConstraint( + history, kTimeConstraint, + /*cap*/ kMaximumAdsPerDay.Get()); } } // namespace diff --git a/components/brave_ads/core/internal/ads/serving/permission_rules/inline_content_ads/inline_content_ads_per_day_permission_rule_unittest.cc b/components/brave_ads/core/internal/ads/serving/permission_rules/inline_content_ads/inline_content_ads_per_day_permission_rule_unittest.cc index 86ce450b4453..130030ca2d31 100644 --- a/components/brave_ads/core/internal/ads/serving/permission_rules/inline_content_ads/inline_content_ads_per_day_permission_rule_unittest.cc +++ b/components/brave_ads/core/internal/ads/serving/permission_rules/inline_content_ads/inline_content_ads_per_day_permission_rule_unittest.cc @@ -29,6 +29,8 @@ class BatAdsInlineContentAdsPerDayPermissionRuleTest : public UnitTestBase { scoped_feature_list.InitWithFeaturesAndParameters(enabled_features, disabled_features); } + + AdsPerDayPermissionRule permission_rule_; }; TEST_F(BatAdsInlineContentAdsPerDayPermissionRuleTest, @@ -36,25 +38,21 @@ TEST_F(BatAdsInlineContentAdsPerDayPermissionRuleTest, // Arrange // Act - AdsPerDayPermissionRule permission_rule; - const bool is_allowed = permission_rule.ShouldAllow(); // Assert - EXPECT_TRUE(is_allowed); + EXPECT_TRUE(permission_rule_.ShouldAllow()); } TEST_F(BatAdsInlineContentAdsPerDayPermissionRuleTest, AllowAdIfDoesNotExceedCap) { // Arrange - RecordAdEvents(AdType::kInlineContentAd, ConfirmationType::kServed, - /*count*/ kMaximumAdsPerDay.Get() - 1); // Act - AdsPerDayPermissionRule permission_rule; - const bool is_allowed = permission_rule.ShouldAllow(); + RecordAdEvents(AdType::kInlineContentAd, ConfirmationType::kServed, + /*count*/ kMaximumAdsPerDay.Get() - 1); // Assert - EXPECT_TRUE(is_allowed); + EXPECT_TRUE(permission_rule_.ShouldAllow()); } TEST_F(BatAdsInlineContentAdsPerDayPermissionRuleTest, @@ -63,14 +61,11 @@ TEST_F(BatAdsInlineContentAdsPerDayPermissionRuleTest, RecordAdEvents(AdType::kInlineContentAd, ConfirmationType::kServed, /*count*/ kMaximumAdsPerDay.Get()); - AdvanceClockBy(base::Days(1)); - // Act - AdsPerDayPermissionRule permission_rule; - const bool is_allowed = permission_rule.ShouldAllow(); + AdvanceClockBy(base::Days(1)); // Assert - EXPECT_TRUE(is_allowed); + EXPECT_TRUE(permission_rule_.ShouldAllow()); } TEST_F(BatAdsInlineContentAdsPerDayPermissionRuleTest, @@ -79,14 +74,11 @@ TEST_F(BatAdsInlineContentAdsPerDayPermissionRuleTest, RecordAdEvents(AdType::kInlineContentAd, ConfirmationType::kServed, /*count*/ kMaximumAdsPerDay.Get()); - AdvanceClockBy(base::Days(1) - base::Seconds(1)); - // Act - AdsPerDayPermissionRule permission_rule; - const bool is_allowed = permission_rule.ShouldAllow(); + AdvanceClockBy(base::Days(1) - base::Milliseconds(1)); // Assert - EXPECT_FALSE(is_allowed); + EXPECT_FALSE(permission_rule_.ShouldAllow()); } } // namespace brave_ads::inline_content_ads diff --git a/components/brave_ads/core/internal/ads/serving/permission_rules/inline_content_ads/inline_content_ads_per_hour_permission_rule.cc b/components/brave_ads/core/internal/ads/serving/permission_rules/inline_content_ads/inline_content_ads_per_hour_permission_rule.cc index fc054cdb4810..df4bf581301d 100644 --- a/components/brave_ads/core/internal/ads/serving/permission_rules/inline_content_ads/inline_content_ads_per_hour_permission_rule.cc +++ b/components/brave_ads/core/internal/ads/serving/permission_rules/inline_content_ads/inline_content_ads_per_hour_permission_rule.cc @@ -21,8 +21,9 @@ namespace { constexpr base::TimeDelta kTimeConstraint = base::Hours(1); bool DoesRespectCap(const std::vector& history) { - return DoesHistoryRespectRollingTimeConstraint(history, kTimeConstraint, - kMaximumAdsPerHour.Get()); + return DoesHistoryRespectRollingTimeConstraint( + history, kTimeConstraint, + /*cap*/ kMaximumAdsPerHour.Get()); } } // namespace diff --git a/components/brave_ads/core/internal/ads/serving/permission_rules/inline_content_ads/inline_content_ads_per_hour_permission_rule_unittest.cc b/components/brave_ads/core/internal/ads/serving/permission_rules/inline_content_ads/inline_content_ads_per_hour_permission_rule_unittest.cc index e91fc97cf65c..6b24a6f94ae5 100644 --- a/components/brave_ads/core/internal/ads/serving/permission_rules/inline_content_ads/inline_content_ads_per_hour_permission_rule_unittest.cc +++ b/components/brave_ads/core/internal/ads/serving/permission_rules/inline_content_ads/inline_content_ads_per_hour_permission_rule_unittest.cc @@ -29,6 +29,8 @@ class BatAdsInlineContentAdsPerHourPermissionRuleTest : public UnitTestBase { scoped_feature_list.InitWithFeaturesAndParameters(enabled_features, disabled_features); } + + AdsPerHourPermissionRule permission_rule_; }; TEST_F(BatAdsInlineContentAdsPerHourPermissionRuleTest, @@ -36,25 +38,21 @@ TEST_F(BatAdsInlineContentAdsPerHourPermissionRuleTest, // Arrange // Act - AdsPerHourPermissionRule permission_rule; - const bool is_allowed = permission_rule.ShouldAllow(); // Assert - EXPECT_TRUE(is_allowed); + EXPECT_TRUE(permission_rule_.ShouldAllow()); } TEST_F(BatAdsInlineContentAdsPerHourPermissionRuleTest, AllowAdIfDoesNotExceedCap) { // Arrange - RecordAdEvents(AdType::kInlineContentAd, ConfirmationType::kServed, - /*count*/ kMaximumAdsPerHour.Get() - 1); // Act - AdsPerHourPermissionRule permission_rule; - const bool is_allowed = permission_rule.ShouldAllow(); + RecordAdEvents(AdType::kInlineContentAd, ConfirmationType::kServed, + /*count*/ kMaximumAdsPerHour.Get() - 1); // Assert - EXPECT_TRUE(is_allowed); + EXPECT_TRUE(permission_rule_.ShouldAllow()); } TEST_F(BatAdsInlineContentAdsPerHourPermissionRuleTest, @@ -63,14 +61,11 @@ TEST_F(BatAdsInlineContentAdsPerHourPermissionRuleTest, RecordAdEvents(AdType::kInlineContentAd, ConfirmationType::kServed, /*count*/ kMaximumAdsPerHour.Get()); - AdvanceClockBy(base::Hours(1)); - // Act - AdsPerHourPermissionRule permission_rule; - const bool is_allowed = permission_rule.ShouldAllow(); + AdvanceClockBy(base::Hours(1)); // Assert - EXPECT_TRUE(is_allowed); + EXPECT_TRUE(permission_rule_.ShouldAllow()); } TEST_F(BatAdsInlineContentAdsPerHourPermissionRuleTest, @@ -79,14 +74,11 @@ TEST_F(BatAdsInlineContentAdsPerHourPermissionRuleTest, RecordAdEvents(AdType::kInlineContentAd, ConfirmationType::kServed, /*count*/ kMaximumAdsPerHour.Get()); - AdvanceClockBy(base::Hours(1) - base::Seconds(1)); - // Act - AdsPerHourPermissionRule permission_rule; - const bool is_allowed = permission_rule.ShouldAllow(); + AdvanceClockBy(base::Hours(1) - base::Milliseconds(1)); // Assert - EXPECT_FALSE(is_allowed); + EXPECT_FALSE(permission_rule_.ShouldAllow()); } } // namespace brave_ads::inline_content_ads diff --git a/components/brave_ads/core/internal/ads/serving/permission_rules/issuers_permission_rule_unittest.cc b/components/brave_ads/core/internal/ads/serving/permission_rules/issuers_permission_rule_unittest.cc index 25472224f8cd..44bd03863076 100644 --- a/components/brave_ads/core/internal/ads/serving/permission_rules/issuers_permission_rule_unittest.cc +++ b/components/brave_ads/core/internal/ads/serving/permission_rules/issuers_permission_rule_unittest.cc @@ -12,29 +12,28 @@ namespace brave_ads { -class BatAdsIssuersPermissionRuleTest : public UnitTestBase {}; +class BatAdsIssuersPermissionRuleTest : public UnitTestBase { + protected: + IssuersPermissionRule permission_rule_; +}; TEST_F(BatAdsIssuersPermissionRuleTest, Issuers) { // Arrange BuildAndSetIssuers(); // Act - IssuersPermissionRule permission_rule; - const bool is_allowed = permission_rule.ShouldAllow(); // Assert - EXPECT_TRUE(is_allowed); + EXPECT_TRUE(permission_rule_.ShouldAllow()); } TEST_F(BatAdsIssuersPermissionRuleTest, NoIssuers) { // Arrange // Act - IssuersPermissionRule permission_rule; - const bool is_allowed = permission_rule.ShouldAllow(); // Assert - EXPECT_FALSE(is_allowed); + EXPECT_FALSE(permission_rule_.ShouldAllow()); } } // namespace brave_ads diff --git a/components/brave_ads/core/internal/ads/serving/permission_rules/media_permission_rule_unittest.cc b/components/brave_ads/core/internal/ads/serving/permission_rules/media_permission_rule_unittest.cc index 56856dddf05a..03209e9145d3 100644 --- a/components/brave_ads/core/internal/ads/serving/permission_rules/media_permission_rule_unittest.cc +++ b/components/brave_ads/core/internal/ads/serving/permission_rules/media_permission_rule_unittest.cc @@ -16,17 +16,18 @@ namespace brave_ads { -class BatAdsMediaPermissionRuleTest : public UnitTestBase {}; +class BatAdsMediaPermissionRuleTest : public UnitTestBase { + protected: + MediaPermissionRule permission_rule_; +}; TEST_F(BatAdsMediaPermissionRuleTest, AllowAdIfMediaIsNotPlaying) { // Arrange // Act - MediaPermissionRule permission_rule; - const bool is_allowed = permission_rule.ShouldAllow(); // Assert - EXPECT_TRUE(is_allowed); + EXPECT_TRUE(permission_rule_.ShouldAllow()); } TEST_F(BatAdsMediaPermissionRuleTest, AllowAdIfMediaIsStoppedForSingleTab) { @@ -37,14 +38,12 @@ TEST_F(BatAdsMediaPermissionRuleTest, AllowAdIfMediaIsStoppedForSingleTab) { /*is_incognito*/ false); NotifyTabDidStartPlayingMedia(/*id*/ 1); - NotifyTabDidStopPlayingMedia(/*id*/ 1); // Act - MediaPermissionRule permission_rule; - const bool is_allowed = permission_rule.ShouldAllow(); + NotifyTabDidStopPlayingMedia(/*id*/ 1); // Assert - EXPECT_TRUE(is_allowed); + EXPECT_TRUE(permission_rule_.ShouldAllow()); } TEST_F(BatAdsMediaPermissionRuleTest, AllowAdIfMediaIsStoppedOnMultipleTabs) { @@ -56,15 +55,13 @@ TEST_F(BatAdsMediaPermissionRuleTest, AllowAdIfMediaIsStoppedOnMultipleTabs) { NotifyTabDidStartPlayingMedia(/*id*/ 1); NotifyTabDidStartPlayingMedia(/*id*/ 2); - NotifyTabDidStopPlayingMedia(/*id*/ 1); - NotifyTabDidStopPlayingMedia(/*id*/ 2); // Act - MediaPermissionRule permission_rule; - const bool is_allowed = permission_rule.ShouldAllow(); + NotifyTabDidStopPlayingMedia(/*id*/ 1); + NotifyTabDidStopPlayingMedia(/*id*/ 2); // Assert - EXPECT_TRUE(is_allowed); + EXPECT_TRUE(permission_rule_.ShouldAllow()); } TEST_F(BatAdsMediaPermissionRuleTest, @@ -77,14 +74,12 @@ TEST_F(BatAdsMediaPermissionRuleTest, NotifyTabDidStartPlayingMedia(/*id*/ 1); NotifyTabDidStartPlayingMedia(/*id*/ 2); - NotifyTabDidStopPlayingMedia(/*id*/ 1); // Act - MediaPermissionRule permission_rule; - const bool is_allowed = permission_rule.ShouldAllow(); + NotifyTabDidStopPlayingMedia(/*id*/ 1); // Assert - EXPECT_TRUE(is_allowed); + EXPECT_TRUE(permission_rule_.ShouldAllow()); } TEST_F(BatAdsMediaPermissionRuleTest, @@ -95,14 +90,11 @@ TEST_F(BatAdsMediaPermissionRuleTest, /*is_active*/ true, /*is_incognito*/ false); - NotifyTabDidStartPlayingMedia(/*id*/ 1); - // Act - MediaPermissionRule permission_rule; - const bool is_allowed = permission_rule.ShouldAllow(); + NotifyTabDidStartPlayingMedia(/*id*/ 1); // Assert - EXPECT_FALSE(is_allowed); + EXPECT_FALSE(permission_rule_.ShouldAllow()); } TEST_F(BatAdsMediaPermissionRuleTest, @@ -127,11 +119,9 @@ TEST_F(BatAdsMediaPermissionRuleTest, NotifyTabDidStartPlayingMedia(/*id*/ 1); // Act - MediaPermissionRule permission_rule; - const bool is_allowed = permission_rule.ShouldAllow(); // Assert - EXPECT_TRUE(is_allowed); + EXPECT_TRUE(permission_rule_.ShouldAllow()); } TEST_F(BatAdsMediaPermissionRuleTest, @@ -142,15 +132,12 @@ TEST_F(BatAdsMediaPermissionRuleTest, /*is_active*/ true, /*is_incognito*/ false); + // Act NotifyTabDidStartPlayingMedia(/*id*/ 1); NotifyTabDidStartPlayingMedia(/*id*/ 2); - // Act - MediaPermissionRule permission_rule; - const bool is_allowed = permission_rule.ShouldAllow(); - // Assert - EXPECT_FALSE(is_allowed); + EXPECT_FALSE(permission_rule_.ShouldAllow()); } TEST_F(BatAdsMediaPermissionRuleTest, @@ -163,14 +150,12 @@ TEST_F(BatAdsMediaPermissionRuleTest, NotifyTabDidStartPlayingMedia(/*id*/ 1); NotifyTabDidStartPlayingMedia(/*id*/ 2); - NotifyTabDidStopPlayingMedia(/*id*/ 2); // Act - MediaPermissionRule permission_rule; - const bool is_allowed = permission_rule.ShouldAllow(); + NotifyTabDidStopPlayingMedia(/*id*/ 2); // Assert - EXPECT_FALSE(is_allowed); + EXPECT_FALSE(permission_rule_.ShouldAllow()); } } // namespace brave_ads diff --git a/components/brave_ads/core/internal/ads/serving/permission_rules/network_connection_permission_rule_unittest.cc b/components/brave_ads/core/internal/ads/serving/permission_rules/network_connection_permission_rule_unittest.cc index 0c8f87996fcf..f820e60abe0a 100644 --- a/components/brave_ads/core/internal/ads/serving/permission_rules/network_connection_permission_rule_unittest.cc +++ b/components/brave_ads/core/internal/ads/serving/permission_rules/network_connection_permission_rule_unittest.cc @@ -16,18 +16,19 @@ namespace brave_ads { -class BatAdsNetworkConnectionPermissionRuleTest : public UnitTestBase {}; +class BatAdsNetworkConnectionPermissionRuleTest : public UnitTestBase { + protected: + NetworkConnectionPermissionRule permission_rule_; +}; TEST_F(BatAdsNetworkConnectionPermissionRuleTest, AllowAd) { // Arrange MockIsNetworkConnectionAvailable(ads_client_mock_, true); // Act - NetworkConnectionPermissionRule permission_rule; - const bool is_allowed = permission_rule.ShouldAllow(); // Assert - EXPECT_TRUE(is_allowed); + EXPECT_TRUE(permission_rule_.ShouldAllow()); } TEST_F(BatAdsNetworkConnectionPermissionRuleTest, DoNotAllowAd) { @@ -35,11 +36,9 @@ TEST_F(BatAdsNetworkConnectionPermissionRuleTest, DoNotAllowAd) { MockIsNetworkConnectionAvailable(ads_client_mock_, false); // Act - NetworkConnectionPermissionRule permission_rule; - const bool is_allowed = permission_rule.ShouldAllow(); // Assert - EXPECT_FALSE(is_allowed); + EXPECT_FALSE(permission_rule_.ShouldAllow()); } TEST_F(BatAdsNetworkConnectionPermissionRuleTest, @@ -59,11 +58,9 @@ TEST_F(BatAdsNetworkConnectionPermissionRuleTest, MockIsNetworkConnectionAvailable(ads_client_mock_, false); // Act - NetworkConnectionPermissionRule permission_rule; - const bool is_allowed = permission_rule.ShouldAllow(); // Assert - EXPECT_TRUE(is_allowed); + EXPECT_TRUE(permission_rule_.ShouldAllow()); } } // namespace brave_ads diff --git a/components/brave_ads/core/internal/ads/serving/permission_rules/new_tab_page_ads/new_tab_page_ads_minimum_wait_time_permission_rule.cc b/components/brave_ads/core/internal/ads/serving/permission_rules/new_tab_page_ads/new_tab_page_ads_minimum_wait_time_permission_rule.cc index 1f80c309ae5b..fc7af63a40ed 100644 --- a/components/brave_ads/core/internal/ads/serving/permission_rules/new_tab_page_ads/new_tab_page_ads_minimum_wait_time_permission_rule.cc +++ b/components/brave_ads/core/internal/ads/serving/permission_rules/new_tab_page_ads/new_tab_page_ads_minimum_wait_time_permission_rule.cc @@ -22,7 +22,7 @@ constexpr int kMinimumWaitTimeCap = 1; bool DoesRespectCap(const std::vector& history) { return DoesHistoryRespectRollingTimeConstraint( - history, kMinimumWaitTime.Get(), kMinimumWaitTimeCap); + history, /*time_constraint*/ kMinimumWaitTime.Get(), kMinimumWaitTimeCap); } } // namespace diff --git a/components/brave_ads/core/internal/ads/serving/permission_rules/new_tab_page_ads/new_tab_page_ads_minimum_wait_time_permission_rule_unittest.cc b/components/brave_ads/core/internal/ads/serving/permission_rules/new_tab_page_ads/new_tab_page_ads_minimum_wait_time_permission_rule_unittest.cc index f47b17c1c3d1..5e25f795162e 100644 --- a/components/brave_ads/core/internal/ads/serving/permission_rules/new_tab_page_ads/new_tab_page_ads_minimum_wait_time_permission_rule_unittest.cc +++ b/components/brave_ads/core/internal/ads/serving/permission_rules/new_tab_page_ads/new_tab_page_ads_minimum_wait_time_permission_rule_unittest.cc @@ -14,18 +14,19 @@ namespace brave_ads::new_tab_page_ads { class BatAdsNewTabPageAdsMinimumWaitTimePermissionRuleTest - : public UnitTestBase {}; + : public UnitTestBase { + protected: + MinimumWaitTimePermissionRule permission_rule_; +}; TEST_F(BatAdsNewTabPageAdsMinimumWaitTimePermissionRuleTest, AllowAdIfThereIsNoAdsHistory) { // Arrange // Act - MinimumWaitTimePermissionRule permission_rule; - const bool is_allowed = permission_rule.ShouldAllow(); // Assert - EXPECT_TRUE(is_allowed); + EXPECT_TRUE(permission_rule_.ShouldAllow()); } TEST_F(BatAdsNewTabPageAdsMinimumWaitTimePermissionRuleTest, @@ -33,14 +34,11 @@ TEST_F(BatAdsNewTabPageAdsMinimumWaitTimePermissionRuleTest, // Arrange RecordAdEvent(AdType::kNewTabPageAd, ConfirmationType::kServed); - AdvanceClockBy(kMinimumWaitTime.Get()); - // Act - MinimumWaitTimePermissionRule permission_rule; - const bool is_allowed = permission_rule.ShouldAllow(); + AdvanceClockBy(kMinimumWaitTime.Get()); // Assert - EXPECT_TRUE(is_allowed); + EXPECT_TRUE(permission_rule_.ShouldAllow()); } TEST_F(BatAdsNewTabPageAdsMinimumWaitTimePermissionRuleTest, @@ -48,14 +46,11 @@ TEST_F(BatAdsNewTabPageAdsMinimumWaitTimePermissionRuleTest, // Arrange RecordAdEvent(AdType::kNewTabPageAd, ConfirmationType::kServed); - AdvanceClockBy(kMinimumWaitTime.Get() - base::Seconds(1)); - // Act - MinimumWaitTimePermissionRule permission_rule; - const bool is_allowed = permission_rule.ShouldAllow(); + AdvanceClockBy(kMinimumWaitTime.Get() - base::Milliseconds(1)); // Assert - EXPECT_FALSE(is_allowed); + EXPECT_FALSE(permission_rule_.ShouldAllow()); } } // namespace brave_ads::new_tab_page_ads diff --git a/components/brave_ads/core/internal/ads/serving/permission_rules/new_tab_page_ads/new_tab_page_ads_per_day_permission_rule.cc b/components/brave_ads/core/internal/ads/serving/permission_rules/new_tab_page_ads/new_tab_page_ads_per_day_permission_rule.cc index 2ef20cae637d..6c1234ffc30a 100644 --- a/components/brave_ads/core/internal/ads/serving/permission_rules/new_tab_page_ads/new_tab_page_ads_per_day_permission_rule.cc +++ b/components/brave_ads/core/internal/ads/serving/permission_rules/new_tab_page_ads/new_tab_page_ads_per_day_permission_rule.cc @@ -21,8 +21,9 @@ namespace { constexpr base::TimeDelta kTimeConstraint = base::Days(1); bool DoesRespectCap(const std::vector& history) { - return DoesHistoryRespectRollingTimeConstraint(history, kTimeConstraint, - kMaximumAdsPerDay.Get()); + return DoesHistoryRespectRollingTimeConstraint( + history, kTimeConstraint, + /*cap*/ kMaximumAdsPerDay.Get()); } } // namespace diff --git a/components/brave_ads/core/internal/ads/serving/permission_rules/new_tab_page_ads/new_tab_page_ads_per_day_permission_rule_unittest.cc b/components/brave_ads/core/internal/ads/serving/permission_rules/new_tab_page_ads/new_tab_page_ads_per_day_permission_rule_unittest.cc index 74ff10a34551..409853058477 100644 --- a/components/brave_ads/core/internal/ads/serving/permission_rules/new_tab_page_ads/new_tab_page_ads_per_day_permission_rule_unittest.cc +++ b/components/brave_ads/core/internal/ads/serving/permission_rules/new_tab_page_ads/new_tab_page_ads_per_day_permission_rule_unittest.cc @@ -29,6 +29,8 @@ class BatAdsNewTabPageAdsPerDayPermissionRuleTest : public UnitTestBase { scoped_feature_list.InitWithFeaturesAndParameters(enabled_features, disabled_features); } + + AdsPerDayPermissionRule permission_rule_; }; TEST_F(BatAdsNewTabPageAdsPerDayPermissionRuleTest, @@ -36,11 +38,9 @@ TEST_F(BatAdsNewTabPageAdsPerDayPermissionRuleTest, // Arrange // Act - AdsPerDayPermissionRule permission_rule; - const bool is_allowed = permission_rule.ShouldAllow(); // Assert - EXPECT_TRUE(is_allowed); + EXPECT_TRUE(permission_rule_.ShouldAllow()); } TEST_F(BatAdsNewTabPageAdsPerDayPermissionRuleTest, AllowAdIfDoesNotExceedCap) { @@ -49,11 +49,9 @@ TEST_F(BatAdsNewTabPageAdsPerDayPermissionRuleTest, AllowAdIfDoesNotExceedCap) { /*count*/ kMaximumAdsPerDay.Get() - 1); // Act - AdsPerDayPermissionRule permission_rule; - const bool is_allowed = permission_rule.ShouldAllow(); // Assert - EXPECT_TRUE(is_allowed); + EXPECT_TRUE(permission_rule_.ShouldAllow()); } TEST_F(BatAdsNewTabPageAdsPerDayPermissionRuleTest, @@ -62,14 +60,11 @@ TEST_F(BatAdsNewTabPageAdsPerDayPermissionRuleTest, RecordAdEvents(AdType::kNewTabPageAd, ConfirmationType::kServed, /*count*/ kMaximumAdsPerDay.Get()); - AdvanceClockBy(base::Days(1)); - // Act - AdsPerDayPermissionRule permission_rule; - const bool is_allowed = permission_rule.ShouldAllow(); + AdvanceClockBy(base::Days(1)); // Assert - EXPECT_TRUE(is_allowed); + EXPECT_TRUE(permission_rule_.ShouldAllow()); } TEST_F(BatAdsNewTabPageAdsPerDayPermissionRuleTest, @@ -78,14 +73,11 @@ TEST_F(BatAdsNewTabPageAdsPerDayPermissionRuleTest, RecordAdEvents(AdType::kNewTabPageAd, ConfirmationType::kServed, /*count*/ kMaximumAdsPerDay.Get()); - AdvanceClockBy(base::Days(1) - base::Seconds(1)); - // Act - AdsPerDayPermissionRule permission_rule; - const bool is_allowed = permission_rule.ShouldAllow(); + AdvanceClockBy(base::Days(1) - base::Milliseconds(1)); // Assert - EXPECT_FALSE(is_allowed); + EXPECT_FALSE(permission_rule_.ShouldAllow()); } } // namespace brave_ads::new_tab_page_ads diff --git a/components/brave_ads/core/internal/ads/serving/permission_rules/new_tab_page_ads/new_tab_page_ads_per_hour_permission_rule.cc b/components/brave_ads/core/internal/ads/serving/permission_rules/new_tab_page_ads/new_tab_page_ads_per_hour_permission_rule.cc index dfcba2836ee6..6f4f68fed8ee 100644 --- a/components/brave_ads/core/internal/ads/serving/permission_rules/new_tab_page_ads/new_tab_page_ads_per_hour_permission_rule.cc +++ b/components/brave_ads/core/internal/ads/serving/permission_rules/new_tab_page_ads/new_tab_page_ads_per_hour_permission_rule.cc @@ -21,8 +21,9 @@ namespace { constexpr base::TimeDelta kTimeConstraint = base::Hours(1); bool DoesRespectCap(const std::vector& history) { - return DoesHistoryRespectRollingTimeConstraint(history, kTimeConstraint, - kMaximumAdsPerHour.Get()); + return DoesHistoryRespectRollingTimeConstraint( + history, kTimeConstraint, + /*cap*/ kMaximumAdsPerHour.Get()); } } // namespace diff --git a/components/brave_ads/core/internal/ads/serving/permission_rules/new_tab_page_ads/new_tab_page_ads_per_hour_permission_rule_unittest.cc b/components/brave_ads/core/internal/ads/serving/permission_rules/new_tab_page_ads/new_tab_page_ads_per_hour_permission_rule_unittest.cc index bded73d23bb0..d16ecd62e2a8 100644 --- a/components/brave_ads/core/internal/ads/serving/permission_rules/new_tab_page_ads/new_tab_page_ads_per_hour_permission_rule_unittest.cc +++ b/components/brave_ads/core/internal/ads/serving/permission_rules/new_tab_page_ads/new_tab_page_ads_per_hour_permission_rule_unittest.cc @@ -29,6 +29,8 @@ class BatAdsNewTabPageAdsPerHourPermissionRuleTest : public UnitTestBase { scoped_feature_list.InitWithFeaturesAndParameters(enabled_features, disabled_features); } + + AdsPerHourPermissionRule permission_rule_; }; TEST_F(BatAdsNewTabPageAdsPerHourPermissionRuleTest, @@ -36,11 +38,9 @@ TEST_F(BatAdsNewTabPageAdsPerHourPermissionRuleTest, // Arrange // Act - AdsPerHourPermissionRule permission_rule; - const bool is_allowed = permission_rule.ShouldAllow(); // Assert - EXPECT_TRUE(is_allowed); + EXPECT_TRUE(permission_rule_.ShouldAllow()); } TEST_F(BatAdsNewTabPageAdsPerHourPermissionRuleTest, @@ -50,11 +50,9 @@ TEST_F(BatAdsNewTabPageAdsPerHourPermissionRuleTest, /*count*/ kMaximumAdsPerHour.Get() - 1); // Act - AdsPerHourPermissionRule permission_rule; - const bool is_allowed = permission_rule.ShouldAllow(); // Assert - EXPECT_TRUE(is_allowed); + EXPECT_TRUE(permission_rule_.ShouldAllow()); } TEST_F(BatAdsNewTabPageAdsPerHourPermissionRuleTest, @@ -63,14 +61,11 @@ TEST_F(BatAdsNewTabPageAdsPerHourPermissionRuleTest, RecordAdEvents(AdType::kNewTabPageAd, ConfirmationType::kServed, /*count*/ kMaximumAdsPerHour.Get()); - AdvanceClockBy(base::Hours(1)); - // Act - AdsPerHourPermissionRule permission_rule; - const bool is_allowed = permission_rule.ShouldAllow(); + AdvanceClockBy(base::Hours(1)); // Assert - EXPECT_TRUE(is_allowed); + EXPECT_TRUE(permission_rule_.ShouldAllow()); } TEST_F(BatAdsNewTabPageAdsPerHourPermissionRuleTest, @@ -79,14 +74,11 @@ TEST_F(BatAdsNewTabPageAdsPerHourPermissionRuleTest, RecordAdEvents(AdType::kNewTabPageAd, ConfirmationType::kServed, /*count*/ kMaximumAdsPerHour.Get()); - AdvanceClockBy(base::Hours(1) - base::Seconds(1)); - // Act - AdsPerHourPermissionRule permission_rule; - const bool is_allowed = permission_rule.ShouldAllow(); + AdvanceClockBy(base::Hours(1) - base::Milliseconds(1)); // Assert - EXPECT_FALSE(is_allowed); + EXPECT_FALSE(permission_rule_.ShouldAllow()); } } // namespace brave_ads::new_tab_page_ads diff --git a/components/brave_ads/core/internal/ads/serving/permission_rules/notification_ads/notification_ads_minimum_wait_time_permission_rule_unittest.cc b/components/brave_ads/core/internal/ads/serving/permission_rules/notification_ads/notification_ads_minimum_wait_time_permission_rule_unittest.cc index 73997781db30..640507d7626d 100644 --- a/components/brave_ads/core/internal/ads/serving/permission_rules/notification_ads/notification_ads_minimum_wait_time_permission_rule_unittest.cc +++ b/components/brave_ads/core/internal/ads/serving/permission_rules/notification_ads/notification_ads_minimum_wait_time_permission_rule_unittest.cc @@ -14,18 +14,19 @@ namespace brave_ads::notification_ads { class BatAdsNotificationAdsMinimumWaitTimePermissionRuleTest - : public UnitTestBase {}; + : public UnitTestBase { + protected: + MinimumWaitTimePermissionRule permission_rule_; +}; TEST_F(BatAdsNotificationAdsMinimumWaitTimePermissionRuleTest, AllowAdIfThereIsNoAdsHistory) { // Arrange // Act - MinimumWaitTimePermissionRule permission_rule; - const bool is_allowed = permission_rule.ShouldAllow(); // Assert - EXPECT_TRUE(is_allowed); + EXPECT_TRUE(permission_rule_.ShouldAllow()); } TEST_F(BatAdsNotificationAdsMinimumWaitTimePermissionRuleTest, @@ -36,14 +37,11 @@ TEST_F(BatAdsNotificationAdsMinimumWaitTimePermissionRuleTest, RecordAdEvent(AdType::kNotificationAd, ConfirmationType::kServed); - AdvanceClockBy(base::Minutes(12)); - // Act - MinimumWaitTimePermissionRule permission_rule; - const bool is_allowed = permission_rule.ShouldAllow(); + AdvanceClockBy(base::Minutes(12)); // Assert - EXPECT_TRUE(is_allowed); + EXPECT_TRUE(permission_rule_.ShouldAllow()); } TEST_F(BatAdsNotificationAdsMinimumWaitTimePermissionRuleTest, @@ -54,14 +52,11 @@ TEST_F(BatAdsNotificationAdsMinimumWaitTimePermissionRuleTest, RecordAdEvent(AdType::kNotificationAd, ConfirmationType::kServed); - AdvanceClockBy(base::Minutes(12) - base::Seconds(1)); - // Act - MinimumWaitTimePermissionRule permission_rule; - const bool is_allowed = permission_rule.ShouldAllow(); + AdvanceClockBy(base::Minutes(12) - base::Milliseconds(1)); // Assert - EXPECT_FALSE(is_allowed); + EXPECT_FALSE(permission_rule_.ShouldAllow()); } } // namespace brave_ads::notification_ads diff --git a/components/brave_ads/core/internal/ads/serving/permission_rules/notification_ads/notification_ads_per_day_permission_rule.cc b/components/brave_ads/core/internal/ads/serving/permission_rules/notification_ads/notification_ads_per_day_permission_rule.cc index 77619ff3b78c..7da2baf3b69d 100644 --- a/components/brave_ads/core/internal/ads/serving/permission_rules/notification_ads/notification_ads_per_day_permission_rule.cc +++ b/components/brave_ads/core/internal/ads/serving/permission_rules/notification_ads/notification_ads_per_day_permission_rule.cc @@ -21,8 +21,9 @@ namespace { constexpr base::TimeDelta kTimeConstraint = base::Days(1); bool DoesRespectCap(const std::vector& history) { - return DoesHistoryRespectRollingTimeConstraint(history, kTimeConstraint, - kMaximumAdsPerDay.Get()); + return DoesHistoryRespectRollingTimeConstraint( + history, kTimeConstraint, + /*cap*/ kMaximumAdsPerDay.Get()); } } // namespace diff --git a/components/brave_ads/core/internal/ads/serving/permission_rules/notification_ads/notification_ads_per_day_permission_rule_unittest.cc b/components/brave_ads/core/internal/ads/serving/permission_rules/notification_ads/notification_ads_per_day_permission_rule_unittest.cc index ffa24a023b68..f5d3e6038d3e 100644 --- a/components/brave_ads/core/internal/ads/serving/permission_rules/notification_ads/notification_ads_per_day_permission_rule_unittest.cc +++ b/components/brave_ads/core/internal/ads/serving/permission_rules/notification_ads/notification_ads_per_day_permission_rule_unittest.cc @@ -29,6 +29,8 @@ class BatAdsNotificationAdsPerDayPermissionRuleTest : public UnitTestBase { scoped_feature_list.InitWithFeaturesAndParameters(enabled_features, disabled_features); } + + AdsPerDayPermissionRule permission_rule_; }; TEST_F(BatAdsNotificationAdsPerDayPermissionRuleTest, @@ -36,11 +38,9 @@ TEST_F(BatAdsNotificationAdsPerDayPermissionRuleTest, // Arrange // Act - AdsPerDayPermissionRule permission_rule; - const bool is_allowed = permission_rule.ShouldAllow(); // Assert - EXPECT_TRUE(is_allowed); + EXPECT_TRUE(permission_rule_.ShouldAllow()); } TEST_F(BatAdsNotificationAdsPerDayPermissionRuleTest, @@ -50,11 +50,9 @@ TEST_F(BatAdsNotificationAdsPerDayPermissionRuleTest, /*count*/ kMaximumAdsPerDay.Get() - 1); // Act - AdsPerDayPermissionRule permission_rule; - const bool is_allowed = permission_rule.ShouldAllow(); // Assert - EXPECT_TRUE(is_allowed); + EXPECT_TRUE(permission_rule_.ShouldAllow()); } TEST_F(BatAdsNotificationAdsPerDayPermissionRuleTest, @@ -63,14 +61,11 @@ TEST_F(BatAdsNotificationAdsPerDayPermissionRuleTest, RecordAdEvents(AdType::kNotificationAd, ConfirmationType::kServed, /*count*/ kMaximumAdsPerDay.Get()); - AdvanceClockBy(base::Days(1)); - // Act - AdsPerDayPermissionRule permission_rule; - const bool is_allowed = permission_rule.ShouldAllow(); + AdvanceClockBy(base::Days(1)); // Assert - EXPECT_TRUE(is_allowed); + EXPECT_TRUE(permission_rule_.ShouldAllow()); } TEST_F(BatAdsNotificationAdsPerDayPermissionRuleTest, @@ -79,14 +74,11 @@ TEST_F(BatAdsNotificationAdsPerDayPermissionRuleTest, RecordAdEvents(AdType::kNotificationAd, ConfirmationType::kServed, /*count*/ kMaximumAdsPerDay.Get()); - AdvanceClockBy(base::Days(1) - base::Seconds(1)); - // Act - AdsPerDayPermissionRule permission_rule; - const bool is_allowed = permission_rule.ShouldAllow(); + AdvanceClockBy(base::Days(1) - base::Milliseconds(1)); // Assert - EXPECT_FALSE(is_allowed); + EXPECT_FALSE(permission_rule_.ShouldAllow()); } } // namespace brave_ads::notification_ads diff --git a/components/brave_ads/core/internal/ads/serving/permission_rules/notification_ads/notification_ads_per_hour_permission_rule.cc b/components/brave_ads/core/internal/ads/serving/permission_rules/notification_ads/notification_ads_per_hour_permission_rule.cc index ec23283f654a..83c6a14801bb 100644 --- a/components/brave_ads/core/internal/ads/serving/permission_rules/notification_ads/notification_ads_per_hour_permission_rule.cc +++ b/components/brave_ads/core/internal/ads/serving/permission_rules/notification_ads/notification_ads_per_hour_permission_rule.cc @@ -29,7 +29,7 @@ bool DoesRespectCap(const std::vector& history) { } return DoesHistoryRespectRollingTimeConstraint(history, kTimeConstraint, - ads_per_hour); + /*cap*/ ads_per_hour); } } // namespace diff --git a/components/brave_ads/core/internal/ads/serving/permission_rules/notification_ads/notification_ads_per_hour_permission_rule_unittest.cc b/components/brave_ads/core/internal/ads/serving/permission_rules/notification_ads/notification_ads_per_hour_permission_rule_unittest.cc index 1948d8aad61f..22b8bbe55556 100644 --- a/components/brave_ads/core/internal/ads/serving/permission_rules/notification_ads/notification_ads_per_hour_permission_rule_unittest.cc +++ b/components/brave_ads/core/internal/ads/serving/permission_rules/notification_ads/notification_ads_per_hour_permission_rule_unittest.cc @@ -9,6 +9,7 @@ #include "brave/components/brave_ads/common/pref_names.h" #include "brave/components/brave_ads/core/internal/ads/ad_events/ad_event_unittest_util.h" +#include "brave/components/brave_ads/core/internal/ads/notification_ad_features.h" #include "brave/components/brave_ads/core/internal/common/unittest/unittest_base.h" #include "brave/components/brave_ads/core/internal/common/unittest/unittest_mock_util.h" @@ -16,118 +17,105 @@ namespace brave_ads::notification_ads { -class BatAdsNotificationAdsPerHourPermissionRuleTest : public UnitTestBase {}; +class BatAdsNotificationAdsPerHourPermissionRuleTest : public UnitTestBase { + protected: + AdsPerHourPermissionRule permission_rule_; +}; TEST_F(BatAdsNotificationAdsPerHourPermissionRuleTest, AllowAdIfThereIsNoAdsHistory) { // Arrange // Act - AdsPerHourPermissionRule permission_rule; - const bool is_allowed = permission_rule.ShouldAllow(); // Assert - EXPECT_TRUE(is_allowed); + EXPECT_TRUE(permission_rule_.ShouldAllow()); } TEST_F(BatAdsNotificationAdsPerHourPermissionRuleTest, AlwaysAllowAdOnAndroid) { // Arrange MockPlatformHelper(platform_helper_mock_, PlatformType::kAndroid); - const int64_t ads_per_hour = 5; + const int ads_per_hour = kDefaultAdsPerHour.Get(); AdsClientHelper::GetInstance()->SetInt64Pref( prefs::kMaximumNotificationAdsPerHour, ads_per_hour); - RecordAdEvents(AdType::kNotificationAd, ConfirmationType::kServed, - ads_per_hour); - // Act - AdsPerHourPermissionRule permission_rule; - const bool is_allowed = permission_rule.ShouldAllow(); + RecordAdEvents(AdType::kNotificationAd, ConfirmationType::kServed, + /*count*/ ads_per_hour); // Assert - EXPECT_TRUE(is_allowed); + EXPECT_TRUE(permission_rule_.ShouldAllow()); } TEST_F(BatAdsNotificationAdsPerHourPermissionRuleTest, AlwaysAllowAdOnIOS) { // Arrange MockPlatformHelper(platform_helper_mock_, PlatformType::kIOS); - const int64_t ads_per_hour = 5; + const int ads_per_hour = kDefaultAdsPerHour.Get(); + AdsClientHelper::GetInstance()->SetInt64Pref( prefs::kMaximumNotificationAdsPerHour, ads_per_hour); - RecordAdEvents(AdType::kNotificationAd, ConfirmationType::kServed, - ads_per_hour); - // Act - AdsPerHourPermissionRule permission_rule; - const bool is_allowed = permission_rule.ShouldAllow(); + RecordAdEvents(AdType::kNotificationAd, ConfirmationType::kServed, + /*count*/ ads_per_hour); // Assert - EXPECT_TRUE(is_allowed); + EXPECT_TRUE(permission_rule_.ShouldAllow()); } TEST_F(BatAdsNotificationAdsPerHourPermissionRuleTest, AllowAdIfDoesNotExceedCap) { // Arrange - const int64_t ads_per_hour = 5; + const int ads_per_hour = kDefaultAdsPerHour.Get(); AdsClientHelper::GetInstance()->SetInt64Pref( prefs::kMaximumNotificationAdsPerHour, ads_per_hour); - RecordAdEvents(AdType::kNotificationAd, ConfirmationType::kServed, - ads_per_hour - 1); - // Act - AdsPerHourPermissionRule permission_rule; - const bool is_allowed = permission_rule.ShouldAllow(); + RecordAdEvents(AdType::kNotificationAd, ConfirmationType::kServed, + /*count*/ ads_per_hour - 1); // Assert - EXPECT_TRUE(is_allowed); + EXPECT_TRUE(permission_rule_.ShouldAllow()); } TEST_F(BatAdsNotificationAdsPerHourPermissionRuleTest, AllowAdIfDoesNotExceedCapAfter1Hour) { // Arrange - const int64_t ads_per_hour = 5; + const int ads_per_hour = kDefaultAdsPerHour.Get(); AdsClientHelper::GetInstance()->SetInt64Pref( prefs::kMaximumNotificationAdsPerHour, ads_per_hour); RecordAdEvents(AdType::kNotificationAd, ConfirmationType::kServed, - ads_per_hour); - - AdvanceClockBy(base::Hours(1)); + /*count*/ ads_per_hour); // Act - AdsPerHourPermissionRule permission_rule; - const bool is_allowed = permission_rule.ShouldAllow(); + AdvanceClockBy(base::Hours(1)); // Assert - EXPECT_TRUE(is_allowed); + EXPECT_TRUE(permission_rule_.ShouldAllow()); } TEST_F(BatAdsNotificationAdsPerHourPermissionRuleTest, DoNotAllowAdIfExceedsCapWithin1Hour) { // Arrange - const int64_t ads_per_hour = 5; + const int ads_per_hour = kDefaultAdsPerHour.Get(); AdsClientHelper::GetInstance()->SetInt64Pref( prefs::kMaximumNotificationAdsPerHour, ads_per_hour); RecordAdEvents(AdType::kNotificationAd, ConfirmationType::kServed, - ads_per_hour); - - AdvanceClockBy(base::Hours(1) - base::Seconds(1)); + /*count*/ ads_per_hour); // Act - AdsPerHourPermissionRule permission_rule; - const bool is_allowed = permission_rule.ShouldAllow(); + AdvanceClockBy(base::Hours(1) - base::Milliseconds(1)); // Assert - EXPECT_FALSE(is_allowed); + EXPECT_FALSE(permission_rule_.ShouldAllow()); } } // namespace brave_ads::notification_ads diff --git a/components/brave_ads/core/internal/ads/serving/permission_rules/promoted_content_ads/promoted_content_ads_per_day_permission_rule.cc b/components/brave_ads/core/internal/ads/serving/permission_rules/promoted_content_ads/promoted_content_ads_per_day_permission_rule.cc index 6fe24b956b84..719868e52169 100644 --- a/components/brave_ads/core/internal/ads/serving/permission_rules/promoted_content_ads/promoted_content_ads_per_day_permission_rule.cc +++ b/components/brave_ads/core/internal/ads/serving/permission_rules/promoted_content_ads/promoted_content_ads_per_day_permission_rule.cc @@ -21,8 +21,9 @@ namespace { constexpr base::TimeDelta kTimeConstraint = base::Days(1); bool DoesRespectCap(const std::vector& history) { - return DoesHistoryRespectRollingTimeConstraint(history, kTimeConstraint, - kMaximumAdsPerDay.Get()); + return DoesHistoryRespectRollingTimeConstraint( + history, kTimeConstraint, + /*cap*/ kMaximumAdsPerDay.Get()); } } // namespace diff --git a/components/brave_ads/core/internal/ads/serving/permission_rules/promoted_content_ads/promoted_content_ads_per_day_permission_rule_unittest.cc b/components/brave_ads/core/internal/ads/serving/permission_rules/promoted_content_ads/promoted_content_ads_per_day_permission_rule_unittest.cc index 8ad83385dbbd..511b860bad71 100644 --- a/components/brave_ads/core/internal/ads/serving/permission_rules/promoted_content_ads/promoted_content_ads_per_day_permission_rule_unittest.cc +++ b/components/brave_ads/core/internal/ads/serving/permission_rules/promoted_content_ads/promoted_content_ads_per_day_permission_rule_unittest.cc @@ -29,6 +29,8 @@ class BatAdsPromotedContentAdsPerDayPermissionRuleTest : public UnitTestBase { scoped_feature_list.InitWithFeaturesAndParameters(enabled_features, disabled_features); } + + AdsPerDayPermissionRule permission_rule_; }; TEST_F(BatAdsPromotedContentAdsPerDayPermissionRuleTest, @@ -36,25 +38,21 @@ TEST_F(BatAdsPromotedContentAdsPerDayPermissionRuleTest, // Arrange // Act - AdsPerDayPermissionRule permission_rule; - const bool is_allowed = permission_rule.ShouldAllow(); // Assert - EXPECT_TRUE(is_allowed); + EXPECT_TRUE(permission_rule_.ShouldAllow()); } TEST_F(BatAdsPromotedContentAdsPerDayPermissionRuleTest, AllowAdIfDoesNotExceedCap) { // Arrange - RecordAdEvents(AdType::kPromotedContentAd, ConfirmationType::kServed, - /*count*/ kMaximumAdsPerDay.Get() - 1); // Act - AdsPerDayPermissionRule permission_rule; - const bool is_allowed = permission_rule.ShouldAllow(); + RecordAdEvents(AdType::kPromotedContentAd, ConfirmationType::kServed, + /*count*/ kMaximumAdsPerDay.Get() - 1); // Assert - EXPECT_TRUE(is_allowed); + EXPECT_TRUE(permission_rule_.ShouldAllow()); } TEST_F(BatAdsPromotedContentAdsPerDayPermissionRuleTest, @@ -63,14 +61,11 @@ TEST_F(BatAdsPromotedContentAdsPerDayPermissionRuleTest, RecordAdEvents(AdType::kPromotedContentAd, ConfirmationType::kServed, /*count*/ kMaximumAdsPerDay.Get()); - AdvanceClockBy(base::Days(1)); - // Act - AdsPerDayPermissionRule permission_rule; - const bool is_allowed = permission_rule.ShouldAllow(); + AdvanceClockBy(base::Days(1)); // Assert - EXPECT_TRUE(is_allowed); + EXPECT_TRUE(permission_rule_.ShouldAllow()); } TEST_F(BatAdsPromotedContentAdsPerDayPermissionRuleTest, @@ -79,14 +74,11 @@ TEST_F(BatAdsPromotedContentAdsPerDayPermissionRuleTest, RecordAdEvents(AdType::kPromotedContentAd, ConfirmationType::kServed, /*count*/ kMaximumAdsPerDay.Get()); - AdvanceClockBy(base::Days(1) - base::Seconds(1)); - // Act - AdsPerDayPermissionRule permission_rule; - const bool is_allowed = permission_rule.ShouldAllow(); + AdvanceClockBy(base::Days(1) - base::Milliseconds(1)); // Assert - EXPECT_FALSE(is_allowed); + EXPECT_FALSE(permission_rule_.ShouldAllow()); } } // namespace brave_ads::promoted_content_ads diff --git a/components/brave_ads/core/internal/ads/serving/permission_rules/promoted_content_ads/promoted_content_ads_per_hour_permission_rule.cc b/components/brave_ads/core/internal/ads/serving/permission_rules/promoted_content_ads/promoted_content_ads_per_hour_permission_rule.cc index 1108ed272df0..69010fc3857b 100644 --- a/components/brave_ads/core/internal/ads/serving/permission_rules/promoted_content_ads/promoted_content_ads_per_hour_permission_rule.cc +++ b/components/brave_ads/core/internal/ads/serving/permission_rules/promoted_content_ads/promoted_content_ads_per_hour_permission_rule.cc @@ -21,8 +21,9 @@ namespace { constexpr base::TimeDelta kTimeConstraint = base::Hours(1); bool DoesRespectCap(const std::vector& history) { - return DoesHistoryRespectRollingTimeConstraint(history, kTimeConstraint, - kMaximumAdsPerHour.Get()); + return DoesHistoryRespectRollingTimeConstraint( + history, kTimeConstraint, + /*cap*/ kMaximumAdsPerHour.Get()); } } // namespace diff --git a/components/brave_ads/core/internal/ads/serving/permission_rules/promoted_content_ads/promoted_content_ads_per_hour_permission_rule_unittest.cc b/components/brave_ads/core/internal/ads/serving/permission_rules/promoted_content_ads/promoted_content_ads_per_hour_permission_rule_unittest.cc index 5756d04c32f7..10dacd5df707 100644 --- a/components/brave_ads/core/internal/ads/serving/permission_rules/promoted_content_ads/promoted_content_ads_per_hour_permission_rule_unittest.cc +++ b/components/brave_ads/core/internal/ads/serving/permission_rules/promoted_content_ads/promoted_content_ads_per_hour_permission_rule_unittest.cc @@ -29,6 +29,8 @@ class BatAdsPromotedContentAdsPerHourPermissionRuleTest : public UnitTestBase { scoped_feature_list.InitWithFeaturesAndParameters(enabled_features, disabled_features); } + + AdsPerHourPermissionRule permission_rule_; }; TEST_F(BatAdsPromotedContentAdsPerHourPermissionRuleTest, @@ -36,25 +38,21 @@ TEST_F(BatAdsPromotedContentAdsPerHourPermissionRuleTest, // Arrange // Act - AdsPerHourPermissionRule permission_rule; - const bool is_allowed = permission_rule.ShouldAllow(); // Assert - EXPECT_TRUE(is_allowed); + EXPECT_TRUE(permission_rule_.ShouldAllow()); } TEST_F(BatAdsPromotedContentAdsPerHourPermissionRuleTest, AllowAdIfDoesNotExceedCap) { // Arrange - RecordAdEvents(AdType::kPromotedContentAd, ConfirmationType::kServed, - /*count*/ kMaximumAdsPerHour.Get() - 1); // Act - AdsPerHourPermissionRule permission_rule; - const bool is_allowed = permission_rule.ShouldAllow(); + RecordAdEvents(AdType::kPromotedContentAd, ConfirmationType::kServed, + /*count*/ kMaximumAdsPerHour.Get() - 1); // Assert - EXPECT_TRUE(is_allowed); + EXPECT_TRUE(permission_rule_.ShouldAllow()); } TEST_F(BatAdsPromotedContentAdsPerHourPermissionRuleTest, @@ -63,14 +61,11 @@ TEST_F(BatAdsPromotedContentAdsPerHourPermissionRuleTest, RecordAdEvents(AdType::kPromotedContentAd, ConfirmationType::kServed, /*count*/ kMaximumAdsPerHour.Get()); - AdvanceClockBy(base::Hours(1)); - // Act - AdsPerHourPermissionRule permission_rule; - const bool is_allowed = permission_rule.ShouldAllow(); + AdvanceClockBy(base::Hours(1)); // Assert - EXPECT_TRUE(is_allowed); + EXPECT_TRUE(permission_rule_.ShouldAllow()); } TEST_F(BatAdsPromotedContentAdsPerHourPermissionRuleTest, @@ -79,14 +74,11 @@ TEST_F(BatAdsPromotedContentAdsPerHourPermissionRuleTest, RecordAdEvents(AdType::kPromotedContentAd, ConfirmationType::kServed, /*count*/ kMaximumAdsPerHour.Get()); - AdvanceClockBy(base::Hours(1) - base::Seconds(1)); - // Act - AdsPerHourPermissionRule permission_rule; - const bool is_allowed = permission_rule.ShouldAllow(); + AdvanceClockBy(base::Hours(1) - base::Milliseconds(1)); // Assert - EXPECT_FALSE(is_allowed); + EXPECT_FALSE(permission_rule_.ShouldAllow()); } } // namespace brave_ads::promoted_content_ads diff --git a/components/brave_ads/core/internal/ads/serving/permission_rules/search_result_ads/search_result_ads_per_day_permission_rule.cc b/components/brave_ads/core/internal/ads/serving/permission_rules/search_result_ads/search_result_ads_per_day_permission_rule.cc index be87ee74e8cf..ee0d57eafafa 100644 --- a/components/brave_ads/core/internal/ads/serving/permission_rules/search_result_ads/search_result_ads_per_day_permission_rule.cc +++ b/components/brave_ads/core/internal/ads/serving/permission_rules/search_result_ads/search_result_ads_per_day_permission_rule.cc @@ -21,8 +21,9 @@ namespace { constexpr base::TimeDelta kTimeConstraint = base::Days(1); bool DoesRespectCap(const std::vector& history) { - return DoesHistoryRespectRollingTimeConstraint(history, kTimeConstraint, - kMaximumAdsPerDay.Get()); + return DoesHistoryRespectRollingTimeConstraint( + history, kTimeConstraint, + /*cap*/ kMaximumAdsPerDay.Get()); } } // namespace diff --git a/components/brave_ads/core/internal/ads/serving/permission_rules/search_result_ads/search_result_ads_per_day_permission_rule_unittest.cc b/components/brave_ads/core/internal/ads/serving/permission_rules/search_result_ads/search_result_ads_per_day_permission_rule_unittest.cc index cdda215050b4..21c271e4a5e1 100644 --- a/components/brave_ads/core/internal/ads/serving/permission_rules/search_result_ads/search_result_ads_per_day_permission_rule_unittest.cc +++ b/components/brave_ads/core/internal/ads/serving/permission_rules/search_result_ads/search_result_ads_per_day_permission_rule_unittest.cc @@ -29,6 +29,8 @@ class BatAdsSearchResultAdsPerDayPermissionRuleTest : public UnitTestBase { scoped_feature_list.InitWithFeaturesAndParameters(enabled_features, disabled_features); } + + AdsPerDayPermissionRule permission_rule_; }; TEST_F(BatAdsSearchResultAdsPerDayPermissionRuleTest, @@ -36,25 +38,21 @@ TEST_F(BatAdsSearchResultAdsPerDayPermissionRuleTest, // Arrange // Act - AdsPerDayPermissionRule permission_rule; - const bool is_allowed = permission_rule.ShouldAllow(); // Assert - EXPECT_TRUE(is_allowed); + EXPECT_TRUE(permission_rule_.ShouldAllow()); } TEST_F(BatAdsSearchResultAdsPerDayPermissionRuleTest, AllowAdIfDoesNotExceedCap) { // Arrange - RecordAdEvents(AdType::kSearchResultAd, ConfirmationType::kServed, - /*count*/ kMaximumAdsPerDay.Get() - 1); // Act - AdsPerDayPermissionRule permission_rule; - const bool is_allowed = permission_rule.ShouldAllow(); + RecordAdEvents(AdType::kSearchResultAd, ConfirmationType::kServed, + /*count*/ kMaximumAdsPerDay.Get() - 1); // Assert - EXPECT_TRUE(is_allowed); + EXPECT_TRUE(permission_rule_.ShouldAllow()); } TEST_F(BatAdsSearchResultAdsPerDayPermissionRuleTest, @@ -63,14 +61,11 @@ TEST_F(BatAdsSearchResultAdsPerDayPermissionRuleTest, RecordAdEvents(AdType::kSearchResultAd, ConfirmationType::kServed, /*count*/ kMaximumAdsPerDay.Get()); - AdvanceClockBy(base::Days(1)); - // Act - AdsPerDayPermissionRule permission_rule; - const bool is_allowed = permission_rule.ShouldAllow(); + AdvanceClockBy(base::Days(1)); // Assert - EXPECT_TRUE(is_allowed); + EXPECT_TRUE(permission_rule_.ShouldAllow()); } TEST_F(BatAdsSearchResultAdsPerDayPermissionRuleTest, @@ -79,14 +74,11 @@ TEST_F(BatAdsSearchResultAdsPerDayPermissionRuleTest, RecordAdEvents(AdType::kSearchResultAd, ConfirmationType::kServed, /*count*/ kMaximumAdsPerDay.Get()); - AdvanceClockBy(base::Days(1) - base::Seconds(1)); - // Act - AdsPerDayPermissionRule permission_rule; - const bool is_allowed = permission_rule.ShouldAllow(); + AdvanceClockBy(base::Days(1) - base::Milliseconds(1)); // Assert - EXPECT_FALSE(is_allowed); + EXPECT_FALSE(permission_rule_.ShouldAllow()); } } // namespace brave_ads::search_result_ads diff --git a/components/brave_ads/core/internal/ads/serving/permission_rules/search_result_ads/search_result_ads_per_hour_permission_rule.cc b/components/brave_ads/core/internal/ads/serving/permission_rules/search_result_ads/search_result_ads_per_hour_permission_rule.cc index bf8524b1914d..8bb9a91f5e6e 100644 --- a/components/brave_ads/core/internal/ads/serving/permission_rules/search_result_ads/search_result_ads_per_hour_permission_rule.cc +++ b/components/brave_ads/core/internal/ads/serving/permission_rules/search_result_ads/search_result_ads_per_hour_permission_rule.cc @@ -21,8 +21,9 @@ namespace { constexpr base::TimeDelta kTimeConstraint = base::Hours(1); bool DoesRespectCap(const std::vector& history) { - return DoesHistoryRespectRollingTimeConstraint(history, kTimeConstraint, - kMaximumAdsPerHour.Get()); + return DoesHistoryRespectRollingTimeConstraint( + history, kTimeConstraint, + /*cap*/ kMaximumAdsPerHour.Get()); } } // namespace diff --git a/components/brave_ads/core/internal/ads/serving/permission_rules/search_result_ads/search_result_ads_per_hour_permission_rule_unittest.cc b/components/brave_ads/core/internal/ads/serving/permission_rules/search_result_ads/search_result_ads_per_hour_permission_rule_unittest.cc index a1c7838d80f3..ff998ea9b585 100644 --- a/components/brave_ads/core/internal/ads/serving/permission_rules/search_result_ads/search_result_ads_per_hour_permission_rule_unittest.cc +++ b/components/brave_ads/core/internal/ads/serving/permission_rules/search_result_ads/search_result_ads_per_hour_permission_rule_unittest.cc @@ -29,6 +29,8 @@ class BatAdsSearchResultAdsPerHourPermissionRuleTest : public UnitTestBase { scoped_feature_list.InitWithFeaturesAndParameters(enabled_features, disabled_features); } + + AdsPerHourPermissionRule permission_rule_; }; TEST_F(BatAdsSearchResultAdsPerHourPermissionRuleTest, @@ -36,25 +38,21 @@ TEST_F(BatAdsSearchResultAdsPerHourPermissionRuleTest, // Arrange // Act - AdsPerHourPermissionRule permission_rule; - const bool is_allowed = permission_rule.ShouldAllow(); // Assert - EXPECT_TRUE(is_allowed); + EXPECT_TRUE(permission_rule_.ShouldAllow()); } TEST_F(BatAdsSearchResultAdsPerHourPermissionRuleTest, AllowAdIfDoesNotExceedCap) { // Arrange - RecordAdEvents(AdType::kSearchResultAd, ConfirmationType::kServed, - /*count*/ kMaximumAdsPerHour.Get() - 1); // Act - AdsPerHourPermissionRule permission_rule; - const bool is_allowed = permission_rule.ShouldAllow(); + RecordAdEvents(AdType::kSearchResultAd, ConfirmationType::kServed, + /*count*/ kMaximumAdsPerHour.Get() - 1); // Assert - EXPECT_TRUE(is_allowed); + EXPECT_TRUE(permission_rule_.ShouldAllow()); } TEST_F(BatAdsSearchResultAdsPerHourPermissionRuleTest, @@ -63,14 +61,11 @@ TEST_F(BatAdsSearchResultAdsPerHourPermissionRuleTest, RecordAdEvents(AdType::kSearchResultAd, ConfirmationType::kServed, /*count*/ kMaximumAdsPerHour.Get()); - AdvanceClockBy(base::Hours(1)); - // Act - AdsPerHourPermissionRule permission_rule; - const bool is_allowed = permission_rule.ShouldAllow(); + AdvanceClockBy(base::Hours(1)); // Assert - EXPECT_TRUE(is_allowed); + EXPECT_TRUE(permission_rule_.ShouldAllow()); } TEST_F(BatAdsSearchResultAdsPerHourPermissionRuleTest, @@ -79,14 +74,11 @@ TEST_F(BatAdsSearchResultAdsPerHourPermissionRuleTest, RecordAdEvents(AdType::kSearchResultAd, ConfirmationType::kServed, /*count*/ kMaximumAdsPerHour.Get()); - AdvanceClockBy(base::Hours(1) - base::Seconds(1)); - // Act - AdsPerHourPermissionRule permission_rule; - const bool is_allowed = permission_rule.ShouldAllow(); + AdvanceClockBy(base::Hours(1) - base::Milliseconds(1)); // Assert - EXPECT_FALSE(is_allowed); + EXPECT_FALSE(permission_rule_.ShouldAllow()); } } // namespace brave_ads::search_result_ads diff --git a/components/brave_ads/core/internal/ads/serving/permission_rules/unblinded_tokens_permission_rule_unittest.cc b/components/brave_ads/core/internal/ads/serving/permission_rules/unblinded_tokens_permission_rule_unittest.cc index d7793542111f..a4692d2b72a9 100644 --- a/components/brave_ads/core/internal/ads/serving/permission_rules/unblinded_tokens_permission_rule_unittest.cc +++ b/components/brave_ads/core/internal/ads/serving/permission_rules/unblinded_tokens_permission_rule_unittest.cc @@ -12,18 +12,19 @@ namespace brave_ads { -class BatAdsUnblindedTokensPermissionRuleTest : public UnitTestBase {}; +class BatAdsUnblindedTokensPermissionRuleTest : public UnitTestBase { + protected: + UnblindedTokensPermissionRule permission_rule_; +}; TEST_F(BatAdsUnblindedTokensPermissionRuleTest, AllowAdIfDoesNotExceedCap) { // Arrange - privacy::SetUnblindedTokens(10); + privacy::SetUnblindedTokens(/*count*/ 10); // Act - UnblindedTokensPermissionRule permission_rule; - const bool is_allowed = permission_rule.ShouldAllow(); // Assert - EXPECT_TRUE(is_allowed); + EXPECT_TRUE(permission_rule_.ShouldAllow()); } TEST_F(BatAdsUnblindedTokensPermissionRuleTest, @@ -31,23 +32,19 @@ TEST_F(BatAdsUnblindedTokensPermissionRuleTest, // Arrange // Act - UnblindedTokensPermissionRule permission_rule; - const bool is_allowed = permission_rule.ShouldAllow(); // Assert - EXPECT_FALSE(is_allowed); + EXPECT_FALSE(permission_rule_.ShouldAllow()); } TEST_F(BatAdsUnblindedTokensPermissionRuleTest, DoNotAllowAdIfExceedsCap) { // Arrange - privacy::SetUnblindedTokens(9); + privacy::SetUnblindedTokens(/*count*/ 9); // Act - UnblindedTokensPermissionRule permission_rule; - const bool is_allowed = permission_rule.ShouldAllow(); // Assert - EXPECT_FALSE(is_allowed); + EXPECT_FALSE(permission_rule_.ShouldAllow()); } } // namespace brave_ads diff --git a/components/brave_ads/core/internal/ads/serving/permission_rules/unblinded_tokens_permission_rule_unittest_util.cc b/components/brave_ads/core/internal/ads/serving/permission_rules/unblinded_tokens_permission_rule_unittest_util.cc index 22ecde114d3e..dd137a628ce9 100644 --- a/components/brave_ads/core/internal/ads/serving/permission_rules/unblinded_tokens_permission_rule_unittest_util.cc +++ b/components/brave_ads/core/internal/ads/serving/permission_rules/unblinded_tokens_permission_rule_unittest_util.cc @@ -10,7 +10,7 @@ namespace brave_ads { void ForceUnblindedTokensPermissionRuleForTesting() { - privacy::SetUnblindedTokens(50); + privacy::SetUnblindedTokens(/*count*/ 50); } } // namespace brave_ads diff --git a/components/brave_ads/core/internal/ads/serving/permission_rules/user_activity_permission_rule_unittest.cc b/components/brave_ads/core/internal/ads/serving/permission_rules/user_activity_permission_rule_unittest.cc index 6b56ae62b318..fbc353592998 100644 --- a/components/brave_ads/core/internal/ads/serving/permission_rules/user_activity_permission_rule_unittest.cc +++ b/components/brave_ads/core/internal/ads/serving/permission_rules/user_activity_permission_rule_unittest.cc @@ -34,27 +34,29 @@ class BatAdsUserActivityPermissionRuleTest : public UnitTestBase { } base::test::ScopedFeatureList scoped_feature_list_; + + UserActivityPermissionRule permission_rule_; }; TEST_F(BatAdsUserActivityPermissionRuleTest, AllowAdIfUserActivityScoreIsEqualToTheThreshold) { // Arrange + + // Act UserActivityManager::GetInstance()->RecordEvent( UserActivityEventType::kOpenedNewTab); UserActivityManager::GetInstance()->RecordEvent( UserActivityEventType::kClosedTab); - // Act - UserActivityPermissionRule permission_rule; - const bool is_allowed = permission_rule.ShouldAllow(); - // Assert - EXPECT_TRUE(is_allowed); + EXPECT_TRUE(permission_rule_.ShouldAllow()); } TEST_F(BatAdsUserActivityPermissionRuleTest, AllowAdIfUserActivityScoreIsGreaterThanTheThreshold) { // Arrange + + // Act UserActivityManager::GetInstance()->RecordEvent( UserActivityEventType::kOpenedNewTab); UserActivityManager::GetInstance()->RecordEvent( @@ -62,26 +64,20 @@ TEST_F(BatAdsUserActivityPermissionRuleTest, UserActivityManager::GetInstance()->RecordEvent( UserActivityEventType::kClosedTab); - // Act - UserActivityPermissionRule permission_rule; - const bool is_allowed = permission_rule.ShouldAllow(); - // Assert - EXPECT_TRUE(is_allowed); + EXPECT_TRUE(permission_rule_.ShouldAllow()); } TEST_F(BatAdsUserActivityPermissionRuleTest, DoNotAllowAdIfUserActivityScoreIsLessThanTheThreshold) { // Arrange - UserActivityManager::GetInstance()->RecordEvent( - UserActivityEventType::kOpenedNewTab); // Act - UserActivityPermissionRule permission_rule; - const bool is_allowed = permission_rule.ShouldAllow(); + UserActivityManager::GetInstance()->RecordEvent( + UserActivityEventType::kOpenedNewTab); // Assert - EXPECT_FALSE(is_allowed); + EXPECT_FALSE(permission_rule_.ShouldAllow()); } } // namespace brave_ads diff --git a/components/brave_ads/core/internal/ads_impl.cc b/components/brave_ads/core/internal/ads_impl.cc index 13d1030725be..7cfb3e21cadc 100644 --- a/components/brave_ads/core/internal/ads_impl.cc +++ b/components/brave_ads/core/internal/ads_impl.cc @@ -191,7 +191,7 @@ void AdsImpl::TriggerNotificationAdEvent( void AdsImpl::MaybeServeNewTabPageAd(MaybeServeNewTabPageAdCallback callback) { if (!IsInitialized()) { - return std::move(callback).Run(/*ads*/ absl::nullopt); + return std::move(callback).Run(/*ad*/ absl::nullopt); } new_tab_page_ad_handler_->MaybeServe(std::move(callback)); @@ -221,7 +221,7 @@ void AdsImpl::MaybeServeInlineContentAd( const std::string& dimensions, MaybeServeInlineContentAdCallback callback) { if (!IsInitialized()) { - return std::move(callback).Run(dimensions, absl::nullopt); + return std::move(callback).Run(dimensions, /*ad*/ absl::nullopt); } inline_content_ad_handler_->MaybeServe(dimensions, std::move(callback)); diff --git a/components/brave_ads/core/internal/catalog/catalog_util_unittest.cc b/components/brave_ads/core/internal/catalog/catalog_util_unittest.cc index 80d26f37f6b8..16d32a06245b 100644 --- a/components/brave_ads/core/internal/catalog/catalog_util_unittest.cc +++ b/components/brave_ads/core/internal/catalog/catalog_util_unittest.cc @@ -96,7 +96,7 @@ TEST_F(BatAdsCatalogUtilTest, CatalogHasNotExpired) { SetCatalogLastUpdated(Now()); // Act - AdvanceClockBy(base::Days(1) - base::Seconds(1)); + AdvanceClockBy(base::Days(1) - base::Milliseconds(1)); // Assert const bool has_expired = HasCatalogExpired(); diff --git a/components/brave_ads/core/internal/common/calendar/calendar_leap_year_util_unittest.cc b/components/brave_ads/core/internal/common/calendar/calendar_leap_year_util_unittest.cc index 8bc7dbc7127f..f347f68bab78 100644 --- a/components/brave_ads/core/internal/common/calendar/calendar_leap_year_util_unittest.cc +++ b/components/brave_ads/core/internal/common/calendar/calendar_leap_year_util_unittest.cc @@ -13,30 +13,10 @@ namespace brave_ads { TEST(BatAdsCalendarLeapYearUtilTest, IsLeapYear) { // Arrange - const int leap_years[] = {2000, 2004, 2008, 2012, 2016, 2020, 2024, - 2028, 2032, 2036, 2040, 2044, 2048}; - - // Act - for (const int year : leap_years) { - const bool is_leap_year = IsLeapYear(year); - EXPECT_TRUE(is_leap_year); - } - - // Assert -} - -TEST(BatAdsCalendarLeapYearUtilTest, IsCommonYear) { - // Arrange // Act for (int year = 2000; year < 2050; year++) { - if (year % 4 == 0) { - ASSERT_TRUE(IsLeapYear(year)); - continue; - } - - const bool is_leap_year = IsLeapYear(year); - EXPECT_FALSE(is_leap_year); + EXPECT_EQ(year % 4 == 0, IsLeapYear(year)); } // Assert diff --git a/components/brave_ads/core/internal/common/numbers/number_util_unittest.cc b/components/brave_ads/core/internal/common/numbers/number_util_unittest.cc index 8f7aaf81abb2..f58592303b37 100644 --- a/components/brave_ads/core/internal/common/numbers/number_util_unittest.cc +++ b/components/brave_ads/core/internal/common/numbers/number_util_unittest.cc @@ -13,120 +13,108 @@ namespace brave_ads { TEST(BatAdsNumberUtilTest, DoubleEquals) { // Arrange - const double value = 1.00001; // Act - const bool does_equal = DoubleEquals(value, 1.00002); // Assert - EXPECT_TRUE(does_equal); + EXPECT_TRUE(DoubleEquals(1.00001, 1.00002)); } TEST(BatAdsNumberUtilTest, DoubleNotEquals) { // Arrange - const double value = 1.0001; // Act - const bool does_equal = DoubleEquals(value, 1.0002); // Assert - EXPECT_FALSE(does_equal); + EXPECT_FALSE(DoubleEquals(1.0001, 1.0002)); } TEST(BatAdsNumberUtilTest, DoubleIsGreaterEqual) { // Arrange - const double value = 0.41749999999999687361196265555918216705322265625000; // Act - const bool is_greater_equal = DoubleIsGreaterEqual( - value, 0.41750000000000014876988529977097641676664352416992); // Assert - EXPECT_TRUE(is_greater_equal); + EXPECT_TRUE(DoubleIsGreaterEqual( + 0.41749999999999687361196265555918216705322265625000, + 0.41750000000000014876988529977097641676664352416992)); } TEST(BatAdsNumberUtilTest, DoubleIsNotGreaterEqual) { // Arrange - const double value = 0.41744999999999687361196265555918216705322265625000; // Act - const bool is_greater_equal = DoubleIsGreaterEqual( - value, 0.41750000000000014876988529977097641676664352416992); // Assert - EXPECT_FALSE(is_greater_equal); + EXPECT_FALSE(DoubleIsGreaterEqual( + 0.41744999999999687361196265555918216705322265625000, + 0.41750000000000014876988529977097641676664352416992)); } TEST(BatAdsNumberUtilTest, DoubleIsGreater) { // Arrange - const double value = 0.41759999999999687361196265555918216705322265625000; // Act - const bool is_greater = DoubleIsGreater( - value, 0.41750000000000014876988529977097641676664352416992); // Assert - EXPECT_TRUE(is_greater); + EXPECT_TRUE( + DoubleIsGreater(0.41759999999999687361196265555918216705322265625000, + 0.41750000000000014876988529977097641676664352416992)); } TEST(BatAdsNumberUtilTest, DoubleIsNotGreater) { // Arrange - const double value = 0.41749999999999687361196265555918216705322265625000; // Act - const bool is_greater = DoubleIsGreater( - value, 0.41750000000000014876988529977097641676664352416992); // Assert - EXPECT_FALSE(is_greater); + EXPECT_FALSE( + DoubleIsGreater(0.41749999999999687361196265555918216705322265625000, + 0.41750000000000014876988529977097641676664352416992)); } TEST(BatAdsNumberUtilTest, DoubleIsLessEqual) { // Arrange - const double value = 0.41750000000000014876988529977097641676664352416992; // Act - const bool is_less_equal = DoubleIsLessEqual( - value, 0.41749999999999687361196265555918216705322265625000); // Assert - EXPECT_TRUE(is_less_equal); + EXPECT_TRUE( + DoubleIsLessEqual(0.41750000000000014876988529977097641676664352416992, + 0.41749999999999687361196265555918216705322265625000)); } TEST(BatAdsNumberUtilTest, DoubleIsNotLessEqual) { // Arrange - const double value = 0.41750000000000014876988529977097641676664352416992; // Act - const bool is_less_equal = DoubleIsLessEqual( - value, 0.41744999999999687361196265555918216705322265625000); // Assert - EXPECT_FALSE(is_less_equal); + EXPECT_FALSE( + DoubleIsLessEqual(0.41750000000000014876988529977097641676664352416992, + 0.41744999999999687361196265555918216705322265625000)); } TEST(BatAdsNumberUtilTest, DoubleIsLess) { // Arrange - const double value = 0.41750000000000014876988529977097641676664352416992; // Act - const bool is_less = - DoubleIsLess(value, 0.41759999999999687361196265555918216705322265625000); // Assert - EXPECT_TRUE(is_less); + EXPECT_TRUE( + DoubleIsLess(0.41750000000000014876988529977097641676664352416992, + 0.41759999999999687361196265555918216705322265625000)); } TEST(BatAdsNumberUtilTest, DoubleIsNotLess) { // Arrange - const double value = 0.41750000000000014876988529977097641676664352416992; // Act - const bool is_less = - DoubleIsLess(value, 0.41749999999999687361196265555918216705322265625000); // Assert - EXPECT_FALSE(is_less); + EXPECT_FALSE( + DoubleIsLess(0.41750000000000014876988529977097641676664352416992, + 0.41749999999999687361196265555918216705322265625000)); } } // namespace brave_ads diff --git a/components/brave_ads/core/internal/common/search_engine/search_engine_results_page_util_unittest.cc b/components/brave_ads/core/internal/common/search_engine/search_engine_results_page_util_unittest.cc index 33926afca6d9..2174d5216017 100644 --- a/components/brave_ads/core/internal/common/search_engine/search_engine_results_page_util_unittest.cc +++ b/components/brave_ads/core/internal/common/search_engine/search_engine_results_page_util_unittest.cc @@ -32,10 +32,9 @@ TEST(BatAdsSearchEngineResultsPageUtilTest, IsNotSearchEngineResultsPage) { const GURL url = GURL("https://brave.com/"); // Act - const bool is_search_engine_result_page = IsSearchEngineResultsPage(url); // Assert - EXPECT_FALSE(is_search_engine_result_page); + EXPECT_FALSE(IsSearchEngineResultsPage(url)); } TEST(BatAdsSearchEngineResultsPageUtilTest, @@ -44,10 +43,9 @@ TEST(BatAdsSearchEngineResultsPageUtilTest, const GURL url = GURL("INVALID_URL"); // Act - const bool is_search_engine_result_page = IsSearchEngineResultsPage(url); // Assert - EXPECT_FALSE(is_search_engine_result_page); + EXPECT_FALSE(IsSearchEngineResultsPage(url)); } TEST(BatAdsSearchEngineResultsPageUtilTest, ExtractSearchTermQueryValue) { diff --git a/components/brave_ads/core/internal/common/search_engine/search_engine_util_unittest.cc b/components/brave_ads/core/internal/common/search_engine/search_engine_util_unittest.cc index 330de945e73c..ed3a21f04325 100644 --- a/components/brave_ads/core/internal/common/search_engine/search_engine_util_unittest.cc +++ b/components/brave_ads/core/internal/common/search_engine/search_engine_util_unittest.cc @@ -177,10 +177,9 @@ TEST(BatAdsSearchEngineUtilTest, IsNotSearchEngine) { const GURL url = GURL("https://foobar.com/"); // Act - const bool is_search_engine = IsSearchEngine(url); // Assert - EXPECT_FALSE(is_search_engine); + EXPECT_FALSE(IsSearchEngine(url)); } TEST(BatAdsSearchEngineUtilTest, IsNotSearchEngineWithInvalidUrl) { @@ -188,10 +187,9 @@ TEST(BatAdsSearchEngineUtilTest, IsNotSearchEngineWithInvalidUrl) { const GURL url = GURL("INVALID_URL"); // Act - const bool is_search_engine = IsSearchEngine(url); // Assert - EXPECT_FALSE(is_search_engine); + EXPECT_FALSE(IsSearchEngine(url)); } } // namespace brave_ads diff --git a/components/brave_ads/core/internal/common/time/time_constraint_util_unittest.cc b/components/brave_ads/core/internal/common/time/time_constraint_util_unittest.cc index a7ab7d4ba79c..5690c46379bd 100644 --- a/components/brave_ads/core/internal/common/time/time_constraint_util_unittest.cc +++ b/components/brave_ads/core/internal/common/time/time_constraint_util_unittest.cc @@ -20,8 +20,8 @@ TEST_F(BatAdsTimeConstraintUtilTest, DoesRespectWhenNoHistoory) { const std::vector history; // Act - const bool does_respect = - DoesHistoryRespectRollingTimeConstraint(history, base::Days(1), 1); + const bool does_respect = DoesHistoryRespectRollingTimeConstraint( + history, /*time_constraint*/ base::Days(1), /*cap*/ 1); // Assert EXPECT_TRUE(does_respect); @@ -35,8 +35,8 @@ TEST_F(BatAdsTimeConstraintUtilTest, DoesRespect) { AdvanceClockBy(base::Days(1)); // Act - const bool does_respect = - DoesHistoryRespectRollingTimeConstraint(history, base::Days(1), 1); + const bool does_respect = DoesHistoryRespectRollingTimeConstraint( + history, /*time_constraint*/ base::Days(1), /*cap*/ 1); // Assert EXPECT_TRUE(does_respect); @@ -48,8 +48,8 @@ TEST_F(BatAdsTimeConstraintUtilTest, DoesNotRespect) { history.push_back(Now()); // Act - const bool does_respect = - DoesHistoryRespectRollingTimeConstraint(history, base::Days(1), 1); + const bool does_respect = DoesHistoryRespectRollingTimeConstraint( + history, /*time_constraint*/ base::Days(1), /*cap*/ 1); // Assert EXPECT_FALSE(does_respect); diff --git a/components/brave_ads/core/internal/common/url/url_util_unittest.cc b/components/brave_ads/core/internal/common/url/url_util_unittest.cc index d518bda6ee06..f25004ea5619 100644 --- a/components/brave_ads/core/internal/common/url/url_util_unittest.cc +++ b/components/brave_ads/core/internal/common/url/url_util_unittest.cc @@ -16,326 +16,270 @@ namespace brave_ads { TEST(BatAdsUrlUtilTest, HttpsSchemeIsSupported) { // Arrange - const GURL url = GURL("https://foobar.com"); // Act - const bool is_supported = SchemeIsSupported(url); // Assert - EXPECT_TRUE(is_supported); + EXPECT_TRUE(SchemeIsSupported(GURL("https://foobar.com"))); } TEST(BatAdsUrlUtilTest, HttpSchemeIsNotSupported) { // Arrange - const GURL url = GURL("http://foobar.com"); // Act - const bool is_supported = SchemeIsSupported(url); // Assert - EXPECT_FALSE(is_supported); + EXPECT_FALSE(SchemeIsSupported(GURL("http://foobar.com"))); } TEST(BatAdsUrlUtilTest, FooBarSchemeIsNotSupported) { // Arrange - const GURL url = GURL("foobar://baz"); // Act - const bool is_supported = SchemeIsSupported(url); // Assert - EXPECT_FALSE(is_supported); + EXPECT_FALSE(SchemeIsSupported(GURL("foobar://baz"))); } TEST(BatAdsUrlUtilTest, BraveSchemeWithFooBarHostNameIsNotSupported) { // Arrange - const GURL url = GURL("brave://foobar"); // Act - const bool is_supported = SchemeIsSupported(url); // Assert - EXPECT_FALSE(is_supported); + EXPECT_FALSE(SchemeIsSupported(GURL("brave://foobar"))); } TEST(BatAdsUrlUtilTest, BraveSchemeWithWalletHostNameIsSupported) { // Arrange - const GURL url = GURL("brave://wallet"); // Act - const bool is_supported = SchemeIsSupported(url); // Assert - EXPECT_TRUE(is_supported); + EXPECT_TRUE(SchemeIsSupported(GURL("brave://wallet"))); } TEST(BatAdsUrlUtilTest, BraveSchemeWithWalletHostNameAndPathIsSupported) { // Arrange - const GURL url = GURL("brave://wallet/foo"); // Act - const bool is_supported = SchemeIsSupported(url); // Assert - EXPECT_TRUE(is_supported); + EXPECT_TRUE(SchemeIsSupported(GURL("brave://wallet/foo"))); } TEST(BatAdsUrlUtilTest, BraveSchemeWithSyncHostNameIsSupported) { // Arrange - const GURL url = GURL("brave://sync"); // Act - const bool is_supported = SchemeIsSupported(url); // Assert - EXPECT_TRUE(is_supported); + EXPECT_TRUE(SchemeIsSupported(GURL("brave://sync"))); } TEST(BatAdsUrlUtilTest, BraveSchemeWithSyncHostNameAndPathIsSupported) { // Arrange - const GURL url = GURL("brave://sync/foo"); // Act - const bool is_supported = SchemeIsSupported(url); // Assert - EXPECT_TRUE(is_supported); + EXPECT_TRUE(SchemeIsSupported(GURL("brave://sync/foo"))); } TEST(BatAdsUrlUtilTest, BraveSchemeWithRewardsHostNameIsSupported) { // Arrange - const GURL url = GURL("brave://rewards"); // Act - const bool is_supported = SchemeIsSupported(url); // Assert - EXPECT_TRUE(is_supported); + EXPECT_TRUE(SchemeIsSupported(GURL("brave://rewards"))); } TEST(BatAdsUrlUtilTest, BraveSchemeWithRewardsHostNameAndPathIsSupported) { // Arrange - const GURL url = GURL("brave://rewards/foo"); // Act - const bool is_supported = SchemeIsSupported(url); // Assert - EXPECT_TRUE(is_supported); + EXPECT_TRUE(SchemeIsSupported(GURL("brave://rewards/foo"))); } TEST(BatAdsUrlUtilTest, BraveSchemeWithSettingsHostNameAndSearchEnginesPathIsSupported) { // Arrange - const GURL url = GURL("brave://settings/searchEngines"); // Act - const bool is_supported = SchemeIsSupported(url); // Assert - EXPECT_TRUE(is_supported); + EXPECT_TRUE(SchemeIsSupported(GURL("brave://settings/searchEngines"))); } TEST(BatAdsUrlUtilTest, BraveSchemeWithSettingsHostNameAndSearchPathIsSupported) { // Arrange - const GURL url = GURL("brave://settings/search"); // Act - const bool is_supported = SchemeIsSupported(url); // Assert - EXPECT_TRUE(is_supported); + EXPECT_TRUE(SchemeIsSupported(GURL("brave://settings/search"))); } TEST(BatAdsUrlUtilTest, BraveSchemeWithSettingsHostNameAndFooBarPathIsNotSupported) { // Arrange - const GURL url = GURL("brave://settings/foobar"); // Act - const bool is_supported = SchemeIsSupported(url); // Assert - EXPECT_FALSE(is_supported); + EXPECT_FALSE(SchemeIsSupported(GURL("brave://settings/foobar"))); } TEST(BatAdsUrlUtilTest, BraveSchemeWithSettingsHostNameIsNotSupported) { // Arrange - const GURL url = GURL("brave://settings"); // Act - const bool is_supported = SchemeIsSupported(url); // Assert - EXPECT_FALSE(is_supported); + EXPECT_FALSE(SchemeIsSupported(GURL("brave://settings"))); } TEST(BatAdsUrlUtilTest, MalformedUrlIsNotSupported) { // Arrange - const GURL url = GURL("http://foobar.com/brave://wallet"); // Act - const bool is_supported = SchemeIsSupported(url); // Assert - EXPECT_FALSE(is_supported); + EXPECT_FALSE(SchemeIsSupported(GURL("http://foobar.com/brave://wallet"))); } TEST(BatAdsUrlUtilTest, UrlMatchesPatternWithNoWildcards) { // Arrange - const GURL url = GURL("https://www.foo.com/"); - const std::string pattern = "https://www.foo.com/"; // Act - const bool does_match = MatchUrlPattern(url, pattern); // Assert - EXPECT_TRUE(does_match); + EXPECT_TRUE(MatchUrlPattern(GURL("https://www.foo.com/"), + /*pattern*/ "https://www.foo.com/")); } TEST(BatAdsUrlUtilTest, UrlWithPathMatchesPatternWithNoWildcards) { // Arrange - const GURL url = GURL("https://www.foo.com/bar"); - const std::string pattern = "https://www.foo.com/bar"; // Act - const bool does_match = MatchUrlPattern(url, pattern); // Assert - EXPECT_TRUE(does_match); + EXPECT_TRUE(MatchUrlPattern(GURL("https://www.foo.com/bar"), + /*pattern*/ "https://www.foo.com/bar")); } TEST(BatAdsUrlUtilTest, UrlDoesNotMatchPattern) { // Arrange - const GURL url = GURL("https://www.foo.com/"); - const std::string pattern = "www.foo.com"; // Act - const bool does_match = MatchUrlPattern(url, pattern); // Assert - EXPECT_FALSE(does_match); + EXPECT_FALSE( + MatchUrlPattern(GURL("https://www.foo.com/"), /*pattern*/ "www.foo.com")); } TEST(BatAdsUrlUtilTest, UrlDoesNotMatchPatternWithMissingEmptyPath) { // Arrange - const GURL url = GURL("https://www.foo.com/"); - const std::string pattern = "https://www.foo.com"; // Act - const bool does_match = MatchUrlPattern(url, pattern); // Assert - EXPECT_FALSE(does_match); + EXPECT_FALSE(MatchUrlPattern(GURL("https://www.foo.com/"), + /*pattern*/ "https://www.foo.com")); } TEST(BatAdsUrlUtilTest, UrlMatchesEndWildcardPattern) { // Arrange - const GURL url = GURL("https://www.foo.com/bar?key=test"); - const std::string pattern = "https://www.foo.com/bar*"; // Act - const bool does_match = MatchUrlPattern(url, pattern); // Assert - EXPECT_TRUE(does_match); + EXPECT_TRUE(MatchUrlPattern(GURL("https://www.foo.com/bar?key=test"), + /*pattern*/ "https://www.foo.com/bar*")); } TEST(BatAdsUrlUtilTest, UrlMatchesMidWildcardPattern) { // Arrange - const GURL url = GURL("https://www.foo.com/woo-bar-hoo"); - const std::string pattern = "https://www.foo.com/woo*hoo"; // Act - const bool does_match = MatchUrlPattern(url, pattern); // Assert - EXPECT_TRUE(does_match); + EXPECT_TRUE(MatchUrlPattern(GURL("https://www.foo.com/woo-bar-hoo"), + /*pattern*/ "https://www.foo.com/woo*hoo")); } TEST(BatAdsUrlUtilTest, UrlDoesNotMatchMidWildcardPattern) { // Arrange - const GURL url = GURL("https://www.foo.com/woo"); - const std::string pattern = "https://www.foo.com/woo*hoo"; // Act - const bool does_match = MatchUrlPattern(url, pattern); // Assert - EXPECT_FALSE(does_match); + EXPECT_FALSE(MatchUrlPattern(GURL("https://www.foo.com/woo"), + /*pattern*/ "https://www.foo.com/woo*hoo")); } TEST(BatAdsUrlUtilTest, SameDomainOrHost) { // Arrange - const GURL url1 = GURL("https://foo.com?bar=test"); - const GURL url2 = GURL("https://subdomain.foo.com/bar"); // Act - const bool is_same_site = SameDomainOrHost(url1, url2); // Assert - EXPECT_TRUE(is_same_site); + EXPECT_TRUE(SameDomainOrHost(GURL("https://foo.com?bar=test"), + GURL("https://subdomain.foo.com/bar"))); } TEST(BatAdsUrlUtilTest, NotSameDomainOrHost) { // Arrange - const GURL url1 = GURL("https://foo.com?bar=test"); - const GURL url2 = GURL("https://subdomain.bar.com/foo"); // Act - const bool is_same_site = SameDomainOrHost(url1, url2); // Assert - EXPECT_FALSE(is_same_site); + EXPECT_FALSE(SameDomainOrHost(GURL("https://foo.com?bar=test"), + GURL("https://subdomain.bar.com/foo"))); } TEST(BatAdsUrlUtilTest, SameDomainOrHostForUrlWithNoSubdomain) { // Arrange - const GURL url1 = GURL("https://foo.com?bar=test"); - const GURL url2 = GURL("https://foo.com/bar"); // Act - const bool is_same_site = SameDomainOrHost(url1, url2); // Assert - EXPECT_TRUE(is_same_site); + EXPECT_TRUE(SameDomainOrHost(GURL("https://foo.com?bar=test"), + GURL("https://foo.com/bar"))); } TEST(BatAdsUrlUtilTest, NotSameDomainOrHostForUrlWithNoSubdomain) { // Arrange - const GURL url1 = GURL("https://foo.com?bar=test"); - const GURL url2 = GURL("https://bar.com/foo"); // Act - const bool is_same_site = SameDomainOrHost(url1, url2); // Assert - EXPECT_FALSE(is_same_site); + EXPECT_FALSE(SameDomainOrHost(GURL("https://foo.com?bar=test"), + GURL("https://bar.com/foo"))); } TEST(BatAdsUrlUtilTest, SameDomainOrHostForUrlWithRef) { // Arrange - const GURL url1 = GURL("https://foo.com?bar=test#ref"); - const GURL url2 = GURL("https://foo.com/bar"); // Act - const bool is_same_site = SameDomainOrHost(url1, url2); // Assert - EXPECT_TRUE(is_same_site); + EXPECT_TRUE(SameDomainOrHost(GURL("https://foo.com?bar=test#ref"), + GURL("https://foo.com/bar"))); } TEST(BatAdsUrlUtilTest, NotSameDomainOrHostForUrlWithRef) { // Arrange - const GURL url1 = GURL("https://foo.com?bar=test#ref"); - const GURL url2 = GURL("https://bar.com/foo"); // Act - const bool is_same_site = SameDomainOrHost(url1, url2); // Assert - EXPECT_FALSE(is_same_site); + EXPECT_FALSE(SameDomainOrHost(GURL("https://foo.com?bar=test#ref"), + GURL("https://bar.com/foo"))); } TEST(BatAdsUrlUtilTest, DomainOrHostExists) { @@ -343,13 +287,10 @@ TEST(BatAdsUrlUtilTest, DomainOrHostExists) { const std::vector urls = {GURL("https://foo.com"), GURL("https://bar.com")}; - const GURL url = GURL("https://bar.com/foo"); - // Act - const bool does_exist = DomainOrHostExists(urls, url); // Assert - EXPECT_TRUE(does_exist); + EXPECT_TRUE(DomainOrHostExists(urls, GURL("https://bar.com/foo"))); } TEST(BatAdsUrlUtilTest, DomainOrHostDoesNotExist) { @@ -357,13 +298,10 @@ TEST(BatAdsUrlUtilTest, DomainOrHostDoesNotExist) { const std::vector urls = {GURL("https://foo.com"), GURL("https://bar.com")}; - const GURL url = GURL("https://baz.com/qux"); - // Act - const bool does_exist = DomainOrHostExists(urls, url); // Assert - EXPECT_FALSE(does_exist); + EXPECT_FALSE(DomainOrHostExists(urls, GURL("https://baz.com/qux"))); } } // namespace brave_ads diff --git a/components/brave_ads/core/internal/conversions/conversions_unittest.cc b/components/brave_ads/core/internal/conversions/conversions_unittest.cc index 1de863eef535..41471277657b 100644 --- a/components/brave_ads/core/internal/conversions/conversions_unittest.cc +++ b/components/brave_ads/core/internal/conversions/conversions_unittest.cc @@ -1230,7 +1230,7 @@ TEST_F(BatAdsConversionsTest, ConvertAdWhenTheConversionIsOnTheCuspOfExpiring) { BuildAdEvent(conversion.creative_set_id, ConfirmationType::kViewed); FireAdEvent(ad_event); - AdvanceClockBy(base::Days(3) - base::Seconds(1)); + AdvanceClockBy(base::Days(3) - base::Milliseconds(1)); // Act conversions_->MaybeConvert({GURL("https://foo.bar.com/qux")}, {}, {}); diff --git a/components/brave_ads/core/internal/creatives/new_tab_page_ads/creative_new_tab_page_ads_database_table_unittest.cc b/components/brave_ads/core/internal/creatives/new_tab_page_ads/creative_new_tab_page_ads_database_table_unittest.cc index b9b87737a594..dbc62e612cbc 100644 --- a/components/brave_ads/core/internal/creatives/new_tab_page_ads/creative_new_tab_page_ads_database_table_unittest.cc +++ b/components/brave_ads/core/internal/creatives/new_tab_page_ads/creative_new_tab_page_ads_database_table_unittest.cc @@ -291,7 +291,7 @@ TEST_F(BatAdsCreativeNewTabPageAdsDatabaseTableTest, SaveCreativeAds(creative_ads); // Act - AdvanceClockBy(base::Seconds(1)); + AdvanceClockBy(base::Milliseconds(1)); // Assert CreativeNewTabPageAdList expected_creative_ads = {creative_ad_2}; diff --git a/components/brave_ads/core/internal/history/history_util_unittest.cc b/components/brave_ads/core/internal/history/history_util_unittest.cc index f927c1e46213..dde3a4ec1cd6 100644 --- a/components/brave_ads/core/internal/history/history_util_unittest.cc +++ b/components/brave_ads/core/internal/history/history_util_unittest.cc @@ -47,7 +47,7 @@ TEST_F(BatAdsHistoryUtilTest, PurgeHistoryOlderThanTimeWindow) { const NotificationAdInfo ad_1 = BuildNotificationAd(creative_ad_1); HistoryManager::GetInstance()->Add(ad_1, ConfirmationType::kViewed); - AdvanceClockBy(kHistoryTimeWindow + base::Seconds(1)); + AdvanceClockBy(kHistoryTimeWindow + base::Milliseconds(1)); // Act const CreativeNotificationAdInfo creative_ad_2 = diff --git a/components/brave_ads/core/internal/privacy/challenge_bypass_ristretto/batch_dleq_proof_unittest.cc b/components/brave_ads/core/internal/privacy/challenge_bypass_ristretto/batch_dleq_proof_unittest.cc index f02f49533167..31fa572f7fbf 100644 --- a/components/brave_ads/core/internal/privacy/challenge_bypass_ristretto/batch_dleq_proof_unittest.cc +++ b/components/brave_ads/core/internal/privacy/challenge_bypass_ristretto/batch_dleq_proof_unittest.cc @@ -166,11 +166,10 @@ TEST(BatAdsBatchDLEQProofTest, Verify) { BatchDLEQProof batch_dleq_proof(kBatchDLEQProofBase64); // Act - const bool is_valid = batch_dleq_proof.Verify( - GetBlindedTokens(), GetSignedTokens(), GetPublicKey()); // Assert - EXPECT_TRUE(is_valid); + EXPECT_TRUE(batch_dleq_proof.Verify(GetBlindedTokens(), GetSignedTokens(), + GetPublicKey())); } TEST(BatAdsBatchDLEQProofTest, FailToVerifyWhenUninitialized) { @@ -178,11 +177,10 @@ TEST(BatAdsBatchDLEQProofTest, FailToVerifyWhenUninitialized) { BatchDLEQProof batch_dleq_proof; // Act - const bool is_valid = batch_dleq_proof.Verify( - GetBlindedTokens(), GetSignedTokens(), GetPublicKey()); // Assert - EXPECT_FALSE(is_valid); + EXPECT_FALSE(batch_dleq_proof.Verify(GetBlindedTokens(), GetSignedTokens(), + GetPublicKey())); } TEST(BatAdsBatchDLEQProofTest, FailToVerifyWithInvalidBlindedTokens) { @@ -190,11 +188,10 @@ TEST(BatAdsBatchDLEQProofTest, FailToVerifyWithInvalidBlindedTokens) { BatchDLEQProof batch_dleq_proof(kBatchDLEQProofBase64); // Act - const bool is_valid = batch_dleq_proof.Verify( - GetInvalidBlindedTokens(), GetSignedTokens(), GetPublicKey()); // Assert - EXPECT_FALSE(is_valid); + EXPECT_FALSE(batch_dleq_proof.Verify(GetInvalidBlindedTokens(), + GetSignedTokens(), GetPublicKey())); } TEST(BatAdsBatchDLEQProofTest, FailToVerifyWithInvalidSignedTokens) { @@ -202,11 +199,10 @@ TEST(BatAdsBatchDLEQProofTest, FailToVerifyWithInvalidSignedTokens) { BatchDLEQProof batch_dleq_proof(kBatchDLEQProofBase64); // Act - const bool is_valid = batch_dleq_proof.Verify( - GetBlindedTokens(), GetInvalidSignedTokens(), GetPublicKey()); // Assert - EXPECT_FALSE(is_valid); + EXPECT_FALSE(batch_dleq_proof.Verify( + GetBlindedTokens(), GetInvalidSignedTokens(), GetPublicKey())); } TEST(BatAdsBatchDLEQProofTest, FailToVerifyWithMismatchingPublicKey) { @@ -214,11 +210,10 @@ TEST(BatAdsBatchDLEQProofTest, FailToVerifyWithMismatchingPublicKey) { BatchDLEQProof batch_dleq_proof(kBatchDLEQProofBase64); // Act - const bool is_valid = batch_dleq_proof.Verify( - GetBlindedTokens(), GetSignedTokens(), GetMismatchingPublicKey()); // Assert - EXPECT_FALSE(is_valid); + EXPECT_FALSE(batch_dleq_proof.Verify(GetBlindedTokens(), GetSignedTokens(), + GetMismatchingPublicKey())); } TEST(BatAdsBatchDLEQProofTest, FailToVerifyWithInvalidPublicKey) { @@ -226,11 +221,10 @@ TEST(BatAdsBatchDLEQProofTest, FailToVerifyWithInvalidPublicKey) { BatchDLEQProof batch_dleq_proof(kBatchDLEQProofBase64); // Act - const bool is_valid = batch_dleq_proof.Verify( - GetBlindedTokens(), GetSignedTokens(), GetInvalidPublicKey()); // Assert - EXPECT_FALSE(is_valid); + EXPECT_FALSE(batch_dleq_proof.Verify(GetBlindedTokens(), GetSignedTokens(), + GetInvalidPublicKey())); } TEST(BatAdsBatchDLEQProofTest, VerifyAndUnblind) { diff --git a/components/brave_ads/core/internal/privacy/challenge_bypass_ristretto/dleq_proof_unittest.cc b/components/brave_ads/core/internal/privacy/challenge_bypass_ristretto/dleq_proof_unittest.cc index ccab2e65abb3..b826b67fc179 100644 --- a/components/brave_ads/core/internal/privacy/challenge_bypass_ristretto/dleq_proof_unittest.cc +++ b/components/brave_ads/core/internal/privacy/challenge_bypass_ristretto/dleq_proof_unittest.cc @@ -157,11 +157,10 @@ TEST(BatAdsDLEQProofTest, Verify) { DLEQProof dleq_proof(kDLEQProofBase64); // Act - const bool is_valid = - dleq_proof.Verify(GetBlindedToken(), GetSignedToken(), GetPublicKey()); // Assert - EXPECT_TRUE(is_valid); + EXPECT_TRUE( + dleq_proof.Verify(GetBlindedToken(), GetSignedToken(), GetPublicKey())); } TEST(BatAdsDLEQProofTest, FailToVerifyWhenUninitialized) { @@ -169,11 +168,10 @@ TEST(BatAdsDLEQProofTest, FailToVerifyWhenUninitialized) { DLEQProof dleq_proof; // Act - const bool is_valid = - dleq_proof.Verify(GetBlindedToken(), GetSignedToken(), GetPublicKey()); // Assert - EXPECT_FALSE(is_valid); + EXPECT_FALSE( + dleq_proof.Verify(GetBlindedToken(), GetSignedToken(), GetPublicKey())); } TEST(BatAdsDLEQProofTest, FailToVerifyWithInvalidBlindedToken) { @@ -181,11 +179,10 @@ TEST(BatAdsDLEQProofTest, FailToVerifyWithInvalidBlindedToken) { DLEQProof dleq_proof(kDLEQProofBase64); // Act - const bool is_valid = dleq_proof.Verify(GetInvalidBlindedToken(), - GetSignedToken(), GetPublicKey()); // Assert - EXPECT_FALSE(is_valid); + EXPECT_FALSE(dleq_proof.Verify(GetInvalidBlindedToken(), GetSignedToken(), + GetPublicKey())); } TEST(BatAdsDLEQProofTest, FailToVerifyWithInvalidSignedToken) { @@ -193,11 +190,10 @@ TEST(BatAdsDLEQProofTest, FailToVerifyWithInvalidSignedToken) { DLEQProof dleq_proof(kDLEQProofBase64); // Act - const bool is_valid = dleq_proof.Verify( - GetBlindedToken(), GetInvalidSignedToken(), GetPublicKey()); // Assert - EXPECT_FALSE(is_valid); + EXPECT_FALSE(dleq_proof.Verify(GetBlindedToken(), GetInvalidSignedToken(), + GetPublicKey())); } TEST(BatAdsDLEQProofTest, FailToVerifyWithMismatchingPublicKey) { @@ -205,11 +201,10 @@ TEST(BatAdsDLEQProofTest, FailToVerifyWithMismatchingPublicKey) { DLEQProof dleq_proof(kDLEQProofBase64); // Act - const bool is_valid = dleq_proof.Verify(GetBlindedToken(), GetSignedToken(), - GetMismatchingPublicKey()); // Assert - EXPECT_FALSE(is_valid); + EXPECT_FALSE(dleq_proof.Verify(GetBlindedToken(), GetSignedToken(), + GetMismatchingPublicKey())); } TEST(BatAdsDLEQProofTest, FailToVerifyWithInvalidPublicKey) { @@ -217,11 +212,10 @@ TEST(BatAdsDLEQProofTest, FailToVerifyWithInvalidPublicKey) { DLEQProof dleq_proof(kDLEQProofBase64); // Act - const bool is_valid = dleq_proof.Verify(GetBlindedToken(), GetSignedToken(), - GetInvalidPublicKey()); // Assert - EXPECT_FALSE(is_valid); + EXPECT_FALSE(dleq_proof.Verify(GetBlindedToken(), GetSignedToken(), + GetInvalidPublicKey())); } TEST(BatAdsDLEQProofTest, IsEqual) { diff --git a/components/brave_ads/core/internal/privacy/challenge_bypass_ristretto/verification_key_unittest.cc b/components/brave_ads/core/internal/privacy/challenge_bypass_ristretto/verification_key_unittest.cc index f3d11e5df079..0282df71b8f1 100644 --- a/components/brave_ads/core/internal/privacy/challenge_bypass_ristretto/verification_key_unittest.cc +++ b/components/brave_ads/core/internal/privacy/challenge_bypass_ristretto/verification_key_unittest.cc @@ -36,11 +36,8 @@ TEST(BatAdsVerificationKeyTest, Verify) { VerificationKey verification_key = GetVerificationKey(); // Act - const bool is_valid = - verification_key.Verify(GetVerificationSignature(), kMessage); - // Assert - EXPECT_TRUE(is_valid); + EXPECT_TRUE(verification_key.Verify(GetVerificationSignature(), kMessage)); } TEST(BatAdsVerificationKeyTest, FailToVerifyWithInvalidVerificationSignature) { @@ -48,11 +45,10 @@ TEST(BatAdsVerificationKeyTest, FailToVerifyWithInvalidVerificationSignature) { VerificationKey verification_key = GetVerificationKey(); // Act - const bool is_valid = - verification_key.Verify(GetInvalidVerificationSignature(), kMessage); // Assert - EXPECT_FALSE(is_valid); + EXPECT_FALSE( + verification_key.Verify(GetInvalidVerificationSignature(), kMessage)); } } // namespace brave_ads::privacy::cbr diff --git a/components/brave_ads/core/internal/privacy/locale/country_code_util_unittest.cc b/components/brave_ads/core/internal/privacy/locale/country_code_util_unittest.cc index 937f8f08f0fb..6537d99efce3 100644 --- a/components/brave_ads/core/internal/privacy/locale/country_code_util_unittest.cc +++ b/components/brave_ads/core/internal/privacy/locale/country_code_util_unittest.cc @@ -15,42 +15,36 @@ TEST(BatAdsCountryCodeUtilTest, IsCountryCodeMemberOfAnonymitySet) { // Arrange // Act - const bool is_member_of_anonymity_set = - IsCountryCodeMemberOfAnonymitySet("US"); // Assert - EXPECT_TRUE(is_member_of_anonymity_set); + EXPECT_TRUE(IsCountryCodeMemberOfAnonymitySet("US")); } TEST(BatAdsCountryCodeUtilTest, IsCountryCodeNotMemberOfAnonymitySet) { // Arrange // Act - const bool is_member_of_anonymity_set = - IsCountryCodeMemberOfAnonymitySet("XX"); // Assert - EXPECT_FALSE(is_member_of_anonymity_set); + EXPECT_FALSE(IsCountryCodeMemberOfAnonymitySet("XX")); } TEST(BatAdsCountryCodeUtilTest, ShouldClassifyCountryCodeAsOther) { // Arrange // Act - const bool is_anonymous = ShouldClassifyCountryCodeAsOther("CX"); // Assert - EXPECT_TRUE(is_anonymous); + EXPECT_TRUE(ShouldClassifyCountryCodeAsOther("CX")); } TEST(BatAdsCountryCodeUtilTest, ShouldNotClassifyCountryCodeAsOther) { // Arrange // Act - const bool is_anonymous = ShouldClassifyCountryCodeAsOther("XX"); // Assert - EXPECT_FALSE(is_anonymous); + EXPECT_FALSE(ShouldClassifyCountryCodeAsOther("XX")); } } // namespace brave_ads::privacy::locale diff --git a/components/brave_ads/core/internal/reminder/reminders/clicked_same_ad_multiple_times_reminder_util_unittest.cc b/components/brave_ads/core/internal/reminder/reminders/clicked_same_ad_multiple_times_reminder_util_unittest.cc index 61ad7828c9c2..3b19a16ea76a 100644 --- a/components/brave_ads/core/internal/reminder/reminders/clicked_same_ad_multiple_times_reminder_util_unittest.cc +++ b/components/brave_ads/core/internal/reminder/reminders/clicked_same_ad_multiple_times_reminder_util_unittest.cc @@ -140,7 +140,7 @@ TEST_F( AddHistory(ad, ConfirmationType::kClicked); AddHistory(ad, ConfirmationType::kClicked); - AdvanceClockBy(kHistoryTimeWindow - base::Nanoseconds(1)); + AdvanceClockBy(kHistoryTimeWindow - base::Milliseconds(1)); // Act const HistoryItemInfo history_item = diff --git a/components/brave_ads/core/internal/user_attention/user_activity/user_activity_scoring_util_unittest.cc b/components/brave_ads/core/internal/user_attention/user_activity/user_activity_scoring_util_unittest.cc index 9a1ba58992d8..514c342f43ca 100644 --- a/components/brave_ads/core/internal/user_attention/user_activity/user_activity_scoring_util_unittest.cc +++ b/components/brave_ads/core/internal/user_attention/user_activity/user_activity_scoring_util_unittest.cc @@ -82,7 +82,7 @@ TEST_F(BatAdsUserActivityScoringUtilTest, UserActivityEventType::kClosedTab); const base::TimeDelta elapsed_time_window = - kUserActivityTimeWindow.Get() + base::Seconds(1); + kUserActivityTimeWindow.Get() + base::Milliseconds(1); AdvanceClockBy(elapsed_time_window); // Act diff --git a/components/brave_ads/core/internal/user_attention/user_reactions/user_reactions_unittest.cc b/components/brave_ads/core/internal/user_attention/user_reactions/user_reactions_unittest.cc index d39d47cc021f..4c81279b50ec 100644 --- a/components/brave_ads/core/internal/user_attention/user_reactions/user_reactions_unittest.cc +++ b/components/brave_ads/core/internal/user_attention/user_reactions/user_reactions_unittest.cc @@ -45,9 +45,9 @@ class BatAdsUserReactionsTest : public AccountObserver, public UnitTestBase { user_reactions_ = std::make_unique(account_.get()); ON_CALL(*token_generator_mock_, Generate(_)) - .WillByDefault(Return(privacy::GetTokens(1))); + .WillByDefault(Return(privacy::GetTokens(/*count*/ 1))); - privacy::SetUnblindedTokens(1); + privacy::SetUnblindedTokens(/*count*/ 1); } void TearDown() override { From 25d47f80bff0e998e5b8b1c2fd03c588ac25f5f6 Mon Sep 17 00:00:00 2001 From: Terry Mancey Date: Fri, 14 Apr 2023 16:40:14 +0100 Subject: [PATCH 09/11] Cleanup Brave Ads database --- .../deposits/deposits_database_table.cc | 11 +++++++--- .../transactions_database_table.cc | 6 ++++-- ...ent_tokens_url_request_builder_unittest.cc | 2 +- .../refill_unblinded_tokens_unittest.cc | 2 +- ...ned_tokens_url_request_builder_unittest.cc | 2 +- .../ads/ad_events/ad_event_unittest_util.cc | 2 +- .../ads/ad_events/ad_events_database_table.cc | 6 ++++-- .../per_day_exclusion_rule_unittest.cc | 2 +- .../common/database/database_bind_util.cc | 20 ++++++++++--------- .../common/database/database_bind_util.h | 2 +- .../conversion_queue_database_table.cc | 7 +++++-- .../conversions/conversions_database_table.cc | 6 ++++-- .../creatives/campaigns_database_table.cc | 6 ++++-- .../creatives/creative_ads_database_table.cc | 6 ++++-- .../creatives/dayparts_database_table.cc | 6 ++++-- .../creatives/embeddings_database_table.cc | 6 ++++-- .../creatives/geo_targets_database_table.cc | 6 ++++-- ...ative_inline_content_ads_database_table.cc | 6 ++++-- ...w_tab_page_ad_wallpapers_database_table.cc | 6 ++++-- ...reative_new_tab_page_ads_database_table.cc | 6 ++++-- ...reative_notification_ads_database_table.cc | 6 ++++-- ...ive_promoted_content_ads_database_table.cc | 6 ++++-- .../creatives/segments_database_table.cc | 6 ++++-- ...xt_embedding_html_events_database_table.cc | 7 +++++-- 24 files changed, 91 insertions(+), 50 deletions(-) diff --git a/components/brave_ads/core/internal/account/deposits/deposits_database_table.cc b/components/brave_ads/core/internal/account/deposits/deposits_database_table.cc index c6a1dc5854c4..1791f623367f 100644 --- a/components/brave_ads/core/internal/account/deposits/deposits_database_table.cc +++ b/components/brave_ads/core/internal/account/deposits/deposits_database_table.cc @@ -227,7 +227,7 @@ std::string Deposits::BuildInsertOrUpdateQuery( const CreativeAdList& creative_ads) const { DCHECK(command); - const int count = BindParameters(command, creative_ads); + const int binded_parameters_count = BindParameters(command, creative_ads); return base::StringPrintf( "INSERT OR REPLACE INTO %s " @@ -235,7 +235,9 @@ std::string Deposits::BuildInsertOrUpdateQuery( "value, " "expire_at) VALUES %s", GetTableName().c_str(), - BuildBindingParameterPlaceholders(3, count).c_str()); + BuildBindingParameterPlaceholders(/*parameters_count*/ 3, + binded_parameters_count) + .c_str()); } std::string Deposits::BuildInsertOrUpdateQuery( @@ -251,7 +253,10 @@ std::string Deposits::BuildInsertOrUpdateQuery( "(creative_instance_id, " "value, " "expire_at) VALUES %s", - GetTableName().c_str(), BuildBindingParameterPlaceholders(3, 1).c_str()); + GetTableName().c_str(), + BuildBindingParameterPlaceholders(/*parameters_count*/ 3, + /*binded_parameters_count*/ 1) + .c_str()); } } // namespace brave_ads::database::table diff --git a/components/brave_ads/core/internal/account/transactions/transactions_database_table.cc b/components/brave_ads/core/internal/account/transactions/transactions_database_table.cc index 36f433d6ff81..507055c72551 100644 --- a/components/brave_ads/core/internal/account/transactions/transactions_database_table.cc +++ b/components/brave_ads/core/internal/account/transactions/transactions_database_table.cc @@ -342,7 +342,7 @@ std::string Transactions::BuildInsertOrUpdateQuery( const TransactionList& transactions) const { DCHECK(command); - const int count = BindParameters(command, transactions); + const int binded_parameters_count = BindParameters(command, transactions); return base::StringPrintf( "INSERT OR REPLACE INTO %s " @@ -355,7 +355,9 @@ std::string Transactions::BuildInsertOrUpdateQuery( "confirmation_type, " "reconciled_at) VALUES %s", GetTableName().c_str(), - BuildBindingParameterPlaceholders(8, count).c_str()); + BuildBindingParameterPlaceholders(/*parameters_count*/ 8, + binded_parameters_count) + .c_str()); } } // namespace brave_ads::database::table diff --git a/components/brave_ads/core/internal/account/utility/redeem_unblinded_payment_tokens/redeem_unblinded_payment_tokens_url_request_builder_unittest.cc b/components/brave_ads/core/internal/account/utility/redeem_unblinded_payment_tokens/redeem_unblinded_payment_tokens_url_request_builder_unittest.cc index 5512d2fedbd5..d3409f87bd78 100644 --- a/components/brave_ads/core/internal/account/utility/redeem_unblinded_payment_tokens/redeem_unblinded_payment_tokens_url_request_builder_unittest.cc +++ b/components/brave_ads/core/internal/account/utility/redeem_unblinded_payment_tokens/redeem_unblinded_payment_tokens_url_request_builder_unittest.cc @@ -81,7 +81,7 @@ TEST_F(BatAdsRedeemUnblindedPaymentTokensUrlRequestBuilderTest, BuildUrl) { EnvironmentType::kStaging); const privacy::UnblindedPaymentTokenList unblinded_payment_tokens = - GetUnblindedPaymentTokens(7); + GetUnblindedPaymentTokens(/*count*/ 7); const RedeemUnblindedPaymentTokensUserDataBuilder user_data_builder( unblinded_payment_tokens); diff --git a/components/brave_ads/core/internal/account/utility/refill_unblinded_tokens/refill_unblinded_tokens_unittest.cc b/components/brave_ads/core/internal/account/utility/refill_unblinded_tokens/refill_unblinded_tokens_unittest.cc index 71aa8b17af07..dd19578d4412 100644 --- a/components/brave_ads/core/internal/account/utility/refill_unblinded_tokens/refill_unblinded_tokens_unittest.cc +++ b/components/brave_ads/core/internal/account/utility/refill_unblinded_tokens/refill_unblinded_tokens_unittest.cc @@ -1056,7 +1056,7 @@ TEST_F(BatAdsRefillUnblindedTokensTest, RefillIfBelowTheMinimumThreshold) { MockUrlResponses(ads_client_mock_, url_responses); ON_CALL(*token_generator_mock_, Generate(_)) - .WillByDefault(Return(privacy::GetTokens(31))); + .WillByDefault(Return(privacy::GetTokens(/*count*/ 31))); BuildAndSetIssuers(); diff --git a/components/brave_ads/core/internal/account/utility/refill_unblinded_tokens/request_signed_tokens_url_request_builder_unittest.cc b/components/brave_ads/core/internal/account/utility/refill_unblinded_tokens/request_signed_tokens_url_request_builder_unittest.cc index 5e16b6f82029..dbeaa37f1342 100644 --- a/components/brave_ads/core/internal/account/utility/refill_unblinded_tokens/request_signed_tokens_url_request_builder_unittest.cc +++ b/components/brave_ads/core/internal/account/utility/refill_unblinded_tokens/request_signed_tokens_url_request_builder_unittest.cc @@ -55,7 +55,7 @@ TEST_F(BatAdsRequestSignedTokensUrlRequestBuilderTest, BuildUrl) { FlagManager::GetInstance()->SetEnvironmentTypeForTesting( EnvironmentType::kStaging); - const std::vector tokens = GetTokens(3); + const std::vector tokens = GetTokens(/*count*/ 3); const std::vector blinded_tokens = privacy::cbr::BlindTokens(tokens); diff --git a/components/brave_ads/core/internal/ads/ad_events/ad_event_unittest_util.cc b/components/brave_ads/core/internal/ads/ad_events/ad_event_unittest_util.cc index 417a0b912c0a..643bd1cf0a20 100644 --- a/components/brave_ads/core/internal/ads/ad_events/ad_event_unittest_util.cc +++ b/components/brave_ads/core/internal/ads/ad_events/ad_event_unittest_util.cc @@ -98,7 +98,7 @@ AdEventInfo BuildAdEvent(const std::string& creative_set_id, void RecordAdEvent(const AdType& type, const ConfirmationType& confirmation_type) { - RecordAdEvents(type, confirmation_type, 1); + RecordAdEvents(type, confirmation_type, /*count*/ 1); } void RecordAdEvents(const AdType& type, diff --git a/components/brave_ads/core/internal/ads/ad_events/ad_events_database_table.cc b/components/brave_ads/core/internal/ads/ad_events/ad_events_database_table.cc index e36cfd10fd6a..63363bf6685a 100644 --- a/components/brave_ads/core/internal/ads/ad_events/ad_events_database_table.cc +++ b/components/brave_ads/core/internal/ads/ad_events/ad_events_database_table.cc @@ -359,7 +359,7 @@ std::string AdEvents::BuildInsertOrUpdateQuery( const AdEventList& ad_events) const { DCHECK(command); - const int count = BindParameters(command, ad_events); + const int binded_parameters_count = BindParameters(command, ad_events); return base::StringPrintf( "INSERT OR REPLACE INTO %s " @@ -372,7 +372,9 @@ std::string AdEvents::BuildInsertOrUpdateQuery( "advertiser_id, " "timestamp) VALUES %s", GetTableName().c_str(), - BuildBindingParameterPlaceholders(8, count).c_str()); + BuildBindingParameterPlaceholders(/*parameters_count*/ 8, + binded_parameters_count) + .c_str()); } } // namespace brave_ads::database::table diff --git a/components/brave_ads/core/internal/ads/serving/eligible_ads/exclusion_rules/per_day_exclusion_rule_unittest.cc b/components/brave_ads/core/internal/ads/serving/eligible_ads/exclusion_rules/per_day_exclusion_rule_unittest.cc index 589574846906..ca430d4353be 100644 --- a/components/brave_ads/core/internal/ads/serving/eligible_ads/exclusion_rules/per_day_exclusion_rule_unittest.cc +++ b/components/brave_ads/core/internal/ads/serving/eligible_ads/exclusion_rules/per_day_exclusion_rule_unittest.cc @@ -107,7 +107,7 @@ TEST_F(BatAdsPerDayExclusionRuleTest, DoNotAllowAdIfExceedsCapWithin1Day) { ad_events.push_back(ad_event); ad_events.push_back(ad_event); - AdvanceClockBy(base::Hours(24) - base::Milliseconds(1)); + AdvanceClockBy(base::Days(1) - base::Milliseconds(1)); // Act PerDayExclusionRule exclusion_rule(ad_events); diff --git a/components/brave_ads/core/internal/common/database/database_bind_util.cc b/components/brave_ads/core/internal/common/database/database_bind_util.cc index 20871fd9ce20..b60e3e6ee8e1 100644 --- a/components/brave_ads/core/internal/common/database/database_bind_util.cc +++ b/components/brave_ads/core/internal/common/database/database_bind_util.cc @@ -24,18 +24,20 @@ std::string BuildBindingParameterPlaceholder(const size_t parameters_count) { base::JoinString(placeholders, ", ").c_str()); } -std::string BuildBindingParameterPlaceholders(const size_t parameters_count, - const size_t values_count) { - DCHECK_NE(0U, values_count); - - std::string value = BuildBindingParameterPlaceholder(parameters_count); - if (values_count == 1) { - return value; +std::string BuildBindingParameterPlaceholders( + const size_t parameters_count, + const size_t binded_parameters_count) { + DCHECK_NE(0U, binded_parameters_count); + + std::string placeholder = BuildBindingParameterPlaceholder(parameters_count); + if (binded_parameters_count == 1) { + return placeholder; } - const std::vector values(values_count, value); + const std::vector placeholders(binded_parameters_count, + placeholder); - return base::JoinString(values, ", "); + return base::JoinString(placeholders, ", "); } void Bind(sql::Statement* statement, diff --git a/components/brave_ads/core/internal/common/database/database_bind_util.h b/components/brave_ads/core/internal/common/database/database_bind_util.h index 86cf51f5383b..f89be6438943 100644 --- a/components/brave_ads/core/internal/common/database/database_bind_util.h +++ b/components/brave_ads/core/internal/common/database/database_bind_util.h @@ -16,7 +16,7 @@ namespace brave_ads::database { std::string BuildBindingParameterPlaceholder(size_t parameters_count); std::string BuildBindingParameterPlaceholders(size_t parameters_count, - size_t values_count); + size_t binded_parameters_count); void Bind(sql::Statement* statement, const mojom::DBCommandBindingInfo& binding); diff --git a/components/brave_ads/core/internal/conversions/conversion_queue_database_table.cc b/components/brave_ads/core/internal/conversions/conversion_queue_database_table.cc index 6e9dd24f3e14..b2d1b1fc574d 100644 --- a/components/brave_ads/core/internal/conversions/conversion_queue_database_table.cc +++ b/components/brave_ads/core/internal/conversions/conversion_queue_database_table.cc @@ -552,7 +552,8 @@ std::string ConversionQueue::BuildInsertOrUpdateQuery( const ConversionQueueItemList& conversion_queue_items) const { DCHECK(command); - const int count = BindParameters(command, conversion_queue_items); + const int binded_parameters_count = + BindParameters(command, conversion_queue_items); return base::StringPrintf( "INSERT OR REPLACE INTO %s " @@ -567,7 +568,9 @@ std::string ConversionQueue::BuildInsertOrUpdateQuery( "timestamp, " "was_processed) VALUES %s", GetTableName().c_str(), - BuildBindingParameterPlaceholders(10, count).c_str()); + BuildBindingParameterPlaceholders(/*parameters_count*/ 10, + binded_parameters_count) + .c_str()); } } // namespace brave_ads::database::table diff --git a/components/brave_ads/core/internal/conversions/conversions_database_table.cc b/components/brave_ads/core/internal/conversions/conversions_database_table.cc index 2c022e845126..b4fb670519ba 100644 --- a/components/brave_ads/core/internal/conversions/conversions_database_table.cc +++ b/components/brave_ads/core/internal/conversions/conversions_database_table.cc @@ -218,7 +218,7 @@ std::string Conversions::BuildInsertOrUpdateQuery( const ConversionList& conversions) const { DCHECK(command); - const int count = BindParameters(command, conversions); + const int binded_parameters_count = BindParameters(command, conversions); return base::StringPrintf( "INSERT OR REPLACE INTO %s " @@ -229,7 +229,9 @@ std::string Conversions::BuildInsertOrUpdateQuery( "observation_window, " "expiry_timestamp) VALUES %s", GetTableName().c_str(), - BuildBindingParameterPlaceholders(6, count).c_str()); + BuildBindingParameterPlaceholders(/*parameters_count*/ 6, + binded_parameters_count) + .c_str()); } } // namespace brave_ads::database::table diff --git a/components/brave_ads/core/internal/creatives/campaigns_database_table.cc b/components/brave_ads/core/internal/creatives/campaigns_database_table.cc index 1b0a48c6c614..537caecd4c46 100644 --- a/components/brave_ads/core/internal/creatives/campaigns_database_table.cc +++ b/components/brave_ads/core/internal/creatives/campaigns_database_table.cc @@ -120,7 +120,7 @@ std::string Campaigns::BuildInsertOrUpdateQuery( const CreativeAdList& creative_ads) const { DCHECK(command); - const int count = BindParameters(command, creative_ads); + const int binded_parameters_count = BindParameters(command, creative_ads); return base::StringPrintf( "INSERT OR REPLACE INTO %s " @@ -132,7 +132,9 @@ std::string Campaigns::BuildInsertOrUpdateQuery( "priority, " "ptr) VALUES %s", GetTableName().c_str(), - BuildBindingParameterPlaceholders(7, count).c_str()); + BuildBindingParameterPlaceholders(/*parameters_count*/ 7, + binded_parameters_count) + .c_str()); } } // namespace brave_ads::database::table diff --git a/components/brave_ads/core/internal/creatives/creative_ads_database_table.cc b/components/brave_ads/core/internal/creatives/creative_ads_database_table.cc index d126ce09e999..a09ed4040830 100644 --- a/components/brave_ads/core/internal/creatives/creative_ads_database_table.cc +++ b/components/brave_ads/core/internal/creatives/creative_ads_database_table.cc @@ -276,7 +276,7 @@ std::string CreativeAds::BuildInsertOrUpdateQuery( const CreativeAdList& creative_ads) const { DCHECK(command); - const int count = BindParameters(command, creative_ads); + const int binded_parameters_count = BindParameters(command, creative_ads); return base::StringPrintf( "INSERT OR REPLACE INTO %s " @@ -290,7 +290,9 @@ std::string CreativeAds::BuildInsertOrUpdateQuery( "split_test_group, " "target_url) VALUES %s", GetTableName().c_str(), - BuildBindingParameterPlaceholders(9, count).c_str()); + BuildBindingParameterPlaceholders(/*parameters_count*/ 9, + binded_parameters_count) + .c_str()); } } // namespace brave_ads::database::table diff --git a/components/brave_ads/core/internal/creatives/dayparts_database_table.cc b/components/brave_ads/core/internal/creatives/dayparts_database_table.cc index 5926264822d5..a23411112eb8 100644 --- a/components/brave_ads/core/internal/creatives/dayparts_database_table.cc +++ b/components/brave_ads/core/internal/creatives/dayparts_database_table.cc @@ -118,7 +118,7 @@ std::string Dayparts::BuildInsertOrUpdateQuery( const CreativeAdList& creative_ads) const { DCHECK(command); - const int count = BindParameters(command, creative_ads); + const int binded_parameters_count = BindParameters(command, creative_ads); return base::StringPrintf( "INSERT OR REPLACE INTO %s " @@ -127,7 +127,9 @@ std::string Dayparts::BuildInsertOrUpdateQuery( "start_minute, " "end_minute) VALUES %s", GetTableName().c_str(), - BuildBindingParameterPlaceholders(4, count).c_str()); + BuildBindingParameterPlaceholders(/*parameters_count*/ 4, + binded_parameters_count) + .c_str()); } } // namespace brave_ads::database::table diff --git a/components/brave_ads/core/internal/creatives/embeddings_database_table.cc b/components/brave_ads/core/internal/creatives/embeddings_database_table.cc index a515e5133f71..3e064754e6e1 100644 --- a/components/brave_ads/core/internal/creatives/embeddings_database_table.cc +++ b/components/brave_ads/core/internal/creatives/embeddings_database_table.cc @@ -115,14 +115,16 @@ std::string Embeddings::BuildInsertOrUpdateQuery( const CreativeAdList& creative_ads) const { DCHECK(command); - const int count = BindParameters(command, creative_ads); + const int binded_parameters_count = BindParameters(command, creative_ads); return base::StringPrintf( "INSERT OR REPLACE INTO %s " "(creative_set_id, " "embedding) VALUES %s", GetTableName().c_str(), - BuildBindingParameterPlaceholders(2, count).c_str()); + BuildBindingParameterPlaceholders(/*parameters_count*/ 2, + binded_parameters_count) + .c_str()); } } // namespace brave_ads::database::table diff --git a/components/brave_ads/core/internal/creatives/geo_targets_database_table.cc b/components/brave_ads/core/internal/creatives/geo_targets_database_table.cc index ec321129d563..9aee0c66e6e9 100644 --- a/components/brave_ads/core/internal/creatives/geo_targets_database_table.cc +++ b/components/brave_ads/core/internal/creatives/geo_targets_database_table.cc @@ -113,14 +113,16 @@ std::string GeoTargets::BuildInsertOrUpdateQuery( const CreativeAdList& creative_ads) const { DCHECK(command); - const int count = BindParameters(command, creative_ads); + const int binded_parameters_count = BindParameters(command, creative_ads); return base::StringPrintf( "INSERT OR REPLACE INTO %s " "(campaign_id, " "geo_target) VALUES %s", GetTableName().c_str(), - BuildBindingParameterPlaceholders(2, count).c_str()); + BuildBindingParameterPlaceholders(/*parameters_count*/ 2, + binded_parameters_count) + .c_str()); } } // namespace brave_ads::database::table diff --git a/components/brave_ads/core/internal/creatives/inline_content_ads/creative_inline_content_ads_database_table.cc b/components/brave_ads/core/internal/creatives/inline_content_ads/creative_inline_content_ads_database_table.cc index 26c0a0c5fc75..465f871b9c05 100644 --- a/components/brave_ads/core/internal/creatives/inline_content_ads/creative_inline_content_ads_database_table.cc +++ b/components/brave_ads/core/internal/creatives/inline_content_ads/creative_inline_content_ads_database_table.cc @@ -744,7 +744,7 @@ std::string CreativeInlineContentAds::BuildInsertOrUpdateQuery( const CreativeInlineContentAdList& creative_ads) const { DCHECK(command); - const int count = BindParameters(command, creative_ads); + const int binded_parameters_count = BindParameters(command, creative_ads); return base::StringPrintf( "INSERT OR REPLACE INTO %s " @@ -757,7 +757,9 @@ std::string CreativeInlineContentAds::BuildInsertOrUpdateQuery( "dimensions, " "cta_text) VALUES %s", GetTableName().c_str(), - BuildBindingParameterPlaceholders(8, count).c_str()); + BuildBindingParameterPlaceholders(/*parameters_count*/ 8, + binded_parameters_count) + .c_str()); } } // namespace brave_ads::database::table diff --git a/components/brave_ads/core/internal/creatives/new_tab_page_ads/creative_new_tab_page_ad_wallpapers_database_table.cc b/components/brave_ads/core/internal/creatives/new_tab_page_ads/creative_new_tab_page_ad_wallpapers_database_table.cc index 6062e4149b56..b54d090d6352 100644 --- a/components/brave_ads/core/internal/creatives/new_tab_page_ads/creative_new_tab_page_ad_wallpapers_database_table.cc +++ b/components/brave_ads/core/internal/creatives/new_tab_page_ads/creative_new_tab_page_ad_wallpapers_database_table.cc @@ -130,7 +130,7 @@ std::string CreativeNewTabPageAdWallpapers::BuildInsertOrUpdateQuery( const CreativeNewTabPageAdList& creative_ads) const { DCHECK(command); - const int count = BindParameters(command, creative_ads); + const int binded_parameters_count = BindParameters(command, creative_ads); return base::StringPrintf( "INSERT OR REPLACE INTO %s " @@ -139,7 +139,9 @@ std::string CreativeNewTabPageAdWallpapers::BuildInsertOrUpdateQuery( "focal_point_x, " "focal_point_y) VALUES %s", GetTableName().c_str(), - BuildBindingParameterPlaceholders(4, count).c_str()); + BuildBindingParameterPlaceholders(/*parameters_count*/ 4, + binded_parameters_count) + .c_str()); } } // namespace brave_ads::database::table diff --git a/components/brave_ads/core/internal/creatives/new_tab_page_ads/creative_new_tab_page_ads_database_table.cc b/components/brave_ads/core/internal/creatives/new_tab_page_ads/creative_new_tab_page_ads_database_table.cc index e2316bb13969..b98fe2aa95de 100644 --- a/components/brave_ads/core/internal/creatives/new_tab_page_ads/creative_new_tab_page_ads_database_table.cc +++ b/components/brave_ads/core/internal/creatives/new_tab_page_ads/creative_new_tab_page_ads_database_table.cc @@ -653,7 +653,7 @@ std::string CreativeNewTabPageAds::BuildInsertOrUpdateQuery( const CreativeNewTabPageAdList& creative_ads) const { DCHECK(command); - const int count = BindParameters(command, creative_ads); + const int binded_parameters_count = BindParameters(command, creative_ads); return base::StringPrintf( "INSERT OR REPLACE INTO %s " @@ -664,7 +664,9 @@ std::string CreativeNewTabPageAds::BuildInsertOrUpdateQuery( "image_url, " "alt) VALUES %s", GetTableName().c_str(), - BuildBindingParameterPlaceholders(6, count).c_str()); + BuildBindingParameterPlaceholders(/*parameters_count*/ 6, + binded_parameters_count) + .c_str()); } } // namespace brave_ads::database::table diff --git a/components/brave_ads/core/internal/creatives/notification_ads/creative_notification_ads_database_table.cc b/components/brave_ads/core/internal/creatives/notification_ads/creative_notification_ads_database_table.cc index b6afd976b8e9..3a850fac2dcc 100644 --- a/components/brave_ads/core/internal/creatives/notification_ads/creative_notification_ads_database_table.cc +++ b/components/brave_ads/core/internal/creatives/notification_ads/creative_notification_ads_database_table.cc @@ -498,7 +498,7 @@ std::string CreativeNotificationAds::BuildInsertOrUpdateQuery( const CreativeNotificationAdList& creative_ads) const { DCHECK(command); - const int count = BindParameters(command, creative_ads); + const int binded_parameters_count = BindParameters(command, creative_ads); return base::StringPrintf( "INSERT OR REPLACE INTO %s " @@ -508,7 +508,9 @@ std::string CreativeNotificationAds::BuildInsertOrUpdateQuery( "title, " "body) VALUES %s", GetTableName().c_str(), - BuildBindingParameterPlaceholders(5, count).c_str()); + BuildBindingParameterPlaceholders(/*parameters_count*/ 5, + binded_parameters_count) + .c_str()); } } // namespace brave_ads::database::table diff --git a/components/brave_ads/core/internal/creatives/promoted_content_ads/creative_promoted_content_ads_database_table.cc b/components/brave_ads/core/internal/creatives/promoted_content_ads/creative_promoted_content_ads_database_table.cc index 4181b7f2efdf..b6bd4979756d 100644 --- a/components/brave_ads/core/internal/creatives/promoted_content_ads/creative_promoted_content_ads_database_table.cc +++ b/components/brave_ads/core/internal/creatives/promoted_content_ads/creative_promoted_content_ads_database_table.cc @@ -594,7 +594,7 @@ std::string CreativePromotedContentAds::BuildInsertOrUpdateQuery( const CreativePromotedContentAdList& creative_ads) const { DCHECK(command); - const int count = BindParameters(command, creative_ads); + const int binded_parameters_count = BindParameters(command, creative_ads); return base::StringPrintf( "INSERT OR REPLACE INTO %s " @@ -604,7 +604,9 @@ std::string CreativePromotedContentAds::BuildInsertOrUpdateQuery( "title, " "description) VALUES %s", GetTableName().c_str(), - BuildBindingParameterPlaceholders(5, count).c_str()); + BuildBindingParameterPlaceholders(/*parameters_count*/ 5, + binded_parameters_count) + .c_str()); } } // namespace brave_ads::database::table diff --git a/components/brave_ads/core/internal/creatives/segments_database_table.cc b/components/brave_ads/core/internal/creatives/segments_database_table.cc index 4b68f5af571e..a74b07e02e27 100644 --- a/components/brave_ads/core/internal/creatives/segments_database_table.cc +++ b/components/brave_ads/core/internal/creatives/segments_database_table.cc @@ -112,14 +112,16 @@ std::string Segments::BuildInsertOrUpdateQuery( const CreativeAdList& creative_ads) const { DCHECK(command); - const int count = BindParameters(command, creative_ads); + const int binded_parameters_count = BindParameters(command, creative_ads); return base::StringPrintf( "INSERT OR REPLACE INTO %s " "(creative_set_id, " "segment) VALUES %s", GetTableName().c_str(), - BuildBindingParameterPlaceholders(2, count).c_str()); + BuildBindingParameterPlaceholders(/*parameters_count*/ 2, + binded_parameters_count) + .c_str()); } } // namespace brave_ads::database::table diff --git a/components/brave_ads/core/internal/processors/contextual/text_embedding/text_embedding_html_events_database_table.cc b/components/brave_ads/core/internal/processors/contextual/text_embedding/text_embedding_html_events_database_table.cc index 74a0a9d7d7b0..78b6cc39e93c 100644 --- a/components/brave_ads/core/internal/processors/contextual/text_embedding/text_embedding_html_events_database_table.cc +++ b/components/brave_ads/core/internal/processors/contextual/text_embedding/text_embedding_html_events_database_table.cc @@ -222,7 +222,8 @@ std::string TextEmbeddingHtmlEvents::BuildInsertOrUpdateQuery( const TextEmbeddingHtmlEventList& text_embedding_html_events) const { DCHECK(command); - const int count = BindParameters(command, text_embedding_html_events); + const int binded_parameters_count = + BindParameters(command, text_embedding_html_events); return base::StringPrintf( "INSERT OR REPLACE INTO %s " @@ -231,7 +232,9 @@ std::string TextEmbeddingHtmlEvents::BuildInsertOrUpdateQuery( "hashed_text_base64, " "embedding) VALUES %s", GetTableName().c_str(), - BuildBindingParameterPlaceholders(4, count).c_str()); + BuildBindingParameterPlaceholders(/*parameters_count*/ 4, + binded_parameters_count) + .c_str()); } } // namespace brave_ads::database::table From 2031196f2024c9f589d2403be8b4c50a2e53be28 Mon Sep 17 00:00:00 2001 From: Terry Mancey Date: Fri, 14 Apr 2023 16:59:16 +0100 Subject: [PATCH 10/11] Cleanup Brave Ads parameter names --- .../text_embedding/text_embedding_processor.cc | 14 +++----------- .../text_embedding/text_embedding_processor.h | 2 +- 2 files changed, 4 insertions(+), 12 deletions(-) diff --git a/components/brave_ads/core/internal/processors/contextual/text_embedding/text_embedding_processor.cc b/components/brave_ads/core/internal/processors/contextual/text_embedding/text_embedding_processor.cc index e73d3c0d3392..2601c3d42eb4 100644 --- a/components/brave_ads/core/internal/processors/contextual/text_embedding/text_embedding_processor.cc +++ b/components/brave_ads/core/internal/processors/contextual/text_embedding/text_embedding_processor.cc @@ -23,14 +23,6 @@ namespace brave_ads::processor { -namespace { - -bool IsEnabled() { - return targeting::IsTextEmbeddingEnabled(); -} - -} // namespace - TextEmbedding::TextEmbedding(resource::TextEmbedding* resource) : resource_(resource) { DCHECK(resource_); @@ -109,7 +101,7 @@ void TextEmbedding::OnNotifyDidUpdateResourceComponent(const std::string& id) { void TextEmbedding::OnHtmlContentDidChange( const int32_t /*tab_id*/, const std::vector& redirect_chain, - const std::string& html) { + const std::string& content) { if (redirect_chain.empty()) { return; } @@ -130,11 +122,11 @@ void TextEmbedding::OnHtmlContentDidChange( return; } - if (!IsEnabled()) { + if (!targeting::IsTextEmbeddingEnabled()) { return; } - Process(html); + Process(content); } } // namespace brave_ads::processor diff --git a/components/brave_ads/core/internal/processors/contextual/text_embedding/text_embedding_processor.h b/components/brave_ads/core/internal/processors/contextual/text_embedding/text_embedding_processor.h index 820bf0df64db..fbab1288e635 100644 --- a/components/brave_ads/core/internal/processors/contextual/text_embedding/text_embedding_processor.h +++ b/components/brave_ads/core/internal/processors/contextual/text_embedding/text_embedding_processor.h @@ -47,7 +47,7 @@ class TextEmbedding final : public AdsClientNotifierObserver, // TabManagerObserver: void OnHtmlContentDidChange(int32_t tab_id, const std::vector& redirect_chain, - const std::string& html) override; + const std::string& content) override; const raw_ptr resource_ = nullptr; // NOT OWNED }; From 04cb0e9ea58589afeb50632820e5d7e62f0bdb4e Mon Sep 17 00:00:00 2001 From: Terry Mancey Date: Sat, 15 Apr 2023 00:22:56 +0100 Subject: [PATCH 11/11] Cleanup Brave Ads unit tests --- .../core/internal/account/account_unittest.cc | 25 +- .../internal/account/account_util_unittest.cc | 6 +- .../confirmation_util_unittest.cc | 23 +- .../account/deposits/cash_deposit_test.cc | 2 +- .../account/issuers/issuers_unittest.cc | 43 +- .../account/issuers/issuers_unittest_util.cc | 4 +- .../account/issuers/public_key_alias.h | 3 +- .../reconciled_transactions_util_unittest.cc | 32 +- .../user_data/totals_user_data_alias.h | 6 +- .../user_data/user_data_builder_interface.h | 4 +- .../redeem_opted_in_confirmation_unittest.cc | 189 +- .../redeem_opted_out_confirmation_unittest.cc | 50 +- ...edeem_unblinded_payment_tokens_unittest.cc | 84 +- .../refill_unblinded_tokens_unittest.cc | 204 +- .../ads/ad_events/ad_event_unittest_util.h | 2 - .../ads/ad_events/ad_event_util_unittest.cc | 44 +- .../core/internal/ads/ad_unittest_constants.h | 4 + .../internal/ads/inline_content_ad_test.cc | 3 +- .../core/internal/ads/new_tab_page_ad_test.cc | 3 +- .../ads/notification_ad_for_mobile_test.cc | 3 +- .../core/internal/ads/notification_ad_test.cc | 3 +- .../internal/ads/promoted_content_ad_test.cc | 3 +- .../ads/serving/choose/ad_predictor_info.h | 3 +- .../serving/eligible_ads/eligible_ads_alias.h | 2 +- .../anti_targeting_exclusion_rule_unittest.cc | 50 +- .../conversion_exclusion_rule_unittest.cc | 24 +- ...eative_instance_exclusion_rule_unittest.cc | 24 +- .../daily_cap_exclusion_rule_unittest.cc | 36 +- .../daypart_exclusion_rule_unittest.cc | 33 +- .../dislike_exclusion_rule_unittest.cc | 13 +- ...s_inappropriate_exclusion_rule_unittest.cc | 14 +- ..._longer_receive_exclusion_rule_unittest.cc | 13 +- ...on_ad_dismissed_exclusion_rule_unittest.cc | 128 +- ...on_ad_embedding_exclusion_rule_unittest.cc | 31 +- .../per_day_exclusion_rule_unittest.cc | 36 +- .../per_month_exclusion_rule_unittest.cc | 36 +- .../per_week_exclusion_rule_unittest.cc | 36 +- .../split_test_exclusion_rule_unittest.cc | 25 +- ...ision_targeting_exclusion_rule_unittest.cc | 36 +- .../total_max_exclusion_rule_unittest.cc | 30 +- .../transferred_exclusion_rule_unittest.cc | 74 +- .../eligible_ads/priority/priority_util.h | 8 +- .../inline_content_ad_serving_unittest.cc | 1 + .../new_tab_page_ad_serving_unittest.cc | 2 +- .../catalog_permission_rule_test.cc | 2 +- .../epsilon_greedy_bandit_model.cc | 4 +- .../text_classification_alias.h | 9 +- .../catalog/catalog_json_reader_unittest.cc | 1 - .../common/unittest/unittest_mock_util.cc | 7 +- .../unittest/unittest_url_response_alias.h | 5 +- .../conversions_database_table_test.cc | 2 +- .../conversions/conversions_unittest.cc | 233 +- .../creatives/creative_ads_database_table.cc | 3 +- ...ative_inline_content_ads_database_table.cc | 2 +- ..._inline_content_ads_database_table_test.cc | 2 +- ...reative_new_tab_page_ads_database_table.cc | 3 +- ...ve_new_tab_page_ads_database_table_test.cc | 2 +- ...reative_notification_ads_database_table.cc | 2 +- ...ve_notification_ads_database_table_test.cc | 2 +- ...ive_promoted_content_ads_database_table.cc | 3 +- ...romoted_content_ads_database_table_test.cc | 2 +- ...d_served_at_predictor_variable_unittest.cc | 2 +- .../subdivision_targeting_unittest.cc | 16 +- .../subdivision/supported_subdivision_codes.h | 2 +- .../filters/confirmation_history_filter.cc | 2 +- .../brave_ads/core/internal/ml/ml_alias.h | 2 +- .../text_processing/embedding_processing.cc | 3 + .../embedding_processing_unittest.cc | 11 - .../text_processing/text_processing.cc | 3 + .../epsilon_greedy_bandit_arms_alias.h | 2 +- ...psilon_greedy_bandit_processor_unittest.cc | 1 - .../purchase_intent_processor.cc | 2 +- .../anti_targeting/anti_targeting_info.cc | 3 + .../anti_targeting/anti_targeting_info.h | 3 +- .../anti_targeting_resource_unittest.cc | 68 +- .../conversions/conversion_id_pattern_info.h | 3 +- .../conversions/conversions_info.cc | 3 + .../conversions_resource_unittest.cc | 65 +- ...epsilon_greedy_bandit_resource_unittest.cc | 10 +- .../purchase_intent/purchase_intent_info.cc | 3 + .../purchase_intent_resource.cc | 1 + .../purchase_intent_resource_unittest.cc | 68 +- .../purchase_intent_signal_history_info.h | 2 +- .../text_classification_resource.cc | 1 + .../text_classification_resource_unittest.cc | 57 +- .../text_embedding/text_embedding_resource.cc | 1 + .../text_embedding_resource_unittest.cc | 48 +- .../resources/resources_unittest_constants.h | 16 + .../core/internal/resources/resources_util.h | 1 - .../core/internal/segments/segment_alias.h | 2 +- .../segments/segment_util_unittest.cc | 36 +- .../core/internal/tabs/tab_manager.h | 2 +- .../page_transition_util_unittest.cc | 60 +- .../user_activity_scoring_util_unittest.cc | 25 +- .../user_reactions/user_reactions_unittest.cc | 8 +- components/brave_ads/core/test/BUILD.gn | 1 + ...bnmjhecfbjpeciancnchbmlobenjn_invalid_json | 37 - .../core/test/data/resources/invalid_resource | 1 + .../mkdhnfmjhklfnamlheoliekgeohamoig | 4 +- .../wtpwsrqtjxmfdwaymauprezkunxprysm | 372377 +-------------- ...wsrqtjxmfdwaymauprezkunxprysm_invalid_json | 310 - .../wtpwsrqtjxmfdwaymauprezkunxprysm_simple | 22 - 102 files changed, 1168 insertions(+), 373795 deletions(-) create mode 100644 components/brave_ads/core/internal/resources/resources_unittest_constants.h delete mode 100644 components/brave_ads/core/test/data/resources/feibnmjhecfbjpeciancnchbmlobenjn_invalid_json create mode 100644 components/brave_ads/core/test/data/resources/invalid_resource delete mode 100644 components/brave_ads/core/test/data/resources/wtpwsrqtjxmfdwaymauprezkunxprysm_invalid_json delete mode 100644 components/brave_ads/core/test/data/resources/wtpwsrqtjxmfdwaymauprezkunxprysm_simple diff --git a/components/brave_ads/core/internal/account/account_unittest.cc b/components/brave_ads/core/internal/account/account_unittest.cc index 8123918455c4..87974cb638f0 100644 --- a/components/brave_ads/core/internal/account/account_unittest.cc +++ b/components/brave_ads/core/internal/account/account_unittest.cc @@ -44,9 +44,7 @@ class BatAdsAccountTest : public AccountObserver, public UnitTestBase { void SetUp() override { UnitTestBase::SetUp(); - token_generator_mock_ = - std::make_unique>(); - account_ = std::make_unique(token_generator_mock_.get()); + account_ = std::make_unique(&token_generator_mock_); account_->AddObserver(this); } @@ -86,7 +84,7 @@ class BatAdsAccountTest : public AccountObserver, public UnitTestBase { statement_of_accounts_did_change_ = true; } - std::unique_ptr token_generator_mock_; + NiceMock token_generator_mock_; std::unique_ptr account_; bool wallet_was_created_ = false; @@ -285,7 +283,7 @@ TEST_F(BatAdsAccountTest, DoNotGetMissingIssuers) { // Arrange const URLResponseMap url_responses = {{// Get issuers request "/v3/issuers/", - {{net::HTTP_OK, R"( + {{net::HTTP_OK, /*response_body*/ R"( { "ping": 7200000, "issuers": [] @@ -306,9 +304,10 @@ TEST_F(BatAdsAccountTest, DoNotGetMissingIssuers) { TEST_F(BatAdsAccountTest, DoNotGetIssuersFromInvalidResponse) { // Arrange - const URLResponseMap url_responses = {{// Get issuers request - "/v3/issuers/", - {{net::HTTP_OK, "INVALID"}}}}; + const URLResponseMap url_responses = { + {// Get issuers request + "/v3/issuers/", + {{net::HTTP_OK, /*response_body*/ "INVALID"}}}}; MockUrlResponses(ads_client_mock_, url_responses); account_->Process(); @@ -336,7 +335,7 @@ TEST_F(BatAdsAccountTest, DepositForCash) { "JmWjVUMGt2QmhEM0E9PSIsInQiOiJWV0tFZEliOG5Nd21UMWVMdE5MR3VmVmU2TlFCRS9TW" "GpCcHlsTFlUVk1KVFQrZk5ISTJWQmQyenRZcUlwRVdsZWF6TiswYk5jNGF2S2ZrY3YyRkw3" "Zz09In0=", - {{net::HTTP_CREATED, R"( + {{net::HTTP_CREATED, /*response_body*/ R"( { "id" : "8b742869-6e4a-490c-ac31-31b49130098a", "createdAt" : "2020-04-20T10:27:11.717Z", @@ -347,7 +346,7 @@ TEST_F(BatAdsAccountTest, DepositForCash) { )"}}}, {// Fetch payment token request "/v3/confirmation/8b742869-6e4a-490c-ac31-31b49130098a/paymentToken", - {{net::HTTP_OK, R"( + {{net::HTTP_OK, /*response_body*/ R"( { "id" : "8b742869-6e4a-490c-ac31-31b49130098a", "createdAt" : "2020-04-20T10:27:11.717Z", @@ -367,7 +366,7 @@ TEST_F(BatAdsAccountTest, DepositForCash) { BuildAndSetIssuers(); - ON_CALL(*token_generator_mock_, Generate(_)) + ON_CALL(token_generator_mock_, Generate(_)) .WillByDefault(Return(privacy::GetTokens(/*count*/ 1))); privacy::SetUnblindedTokens(/*count*/ 1); @@ -409,7 +408,7 @@ TEST_F(BatAdsAccountTest, DepositForCash) { TEST_F(BatAdsAccountTest, DepositForNonCash) { // Arrange - ON_CALL(*token_generator_mock_, Generate(_)) + ON_CALL(token_generator_mock_, Generate(_)) .WillByDefault(Return(privacy::GetTokens(/*count*/ 1))); privacy::SetUnblindedTokens(/*count*/ 1); @@ -447,7 +446,7 @@ TEST_F(BatAdsAccountTest, DepositForNonCash) { TEST_F(BatAdsAccountTest, DoNotDepositCashIfCreativeInstanceIdDoesNotExist) { // Arrange - ON_CALL(*token_generator_mock_, Generate(_)) + ON_CALL(token_generator_mock_, Generate(_)) .WillByDefault(Return(privacy::GetTokens(/*count*/ 1))); const CreativeNotificationAdInfo creative_ad = diff --git a/components/brave_ads/core/internal/account/account_util_unittest.cc b/components/brave_ads/core/internal/account/account_util_unittest.cc index 5fd68414d27e..08c5fc8129ea 100644 --- a/components/brave_ads/core/internal/account/account_util_unittest.cc +++ b/components/brave_ads/core/internal/account/account_util_unittest.cc @@ -27,10 +27,9 @@ TEST_F(BatAdsAccountUtilTest, ShouldRewardUser) { // Arrange // Act - const bool should_reward_user = ShouldRewardUser(); // Assert - EXPECT_TRUE(should_reward_user); + EXPECT_TRUE(ShouldRewardUser()); } TEST_F(BatAdsAccountUtilTest, ShouldNotRewardUser) { @@ -38,10 +37,9 @@ TEST_F(BatAdsAccountUtilTest, ShouldNotRewardUser) { AdsClientHelper::GetInstance()->SetBooleanPref(prefs::kEnabled, false); // Act - const bool should_reward_user = ShouldRewardUser(); // Assert - EXPECT_FALSE(should_reward_user); + EXPECT_FALSE(ShouldRewardUser()); } TEST_F(BatAdsAccountUtilTest, ResetRewards) { diff --git a/components/brave_ads/core/internal/account/confirmations/confirmation_util_unittest.cc b/components/brave_ads/core/internal/account/confirmations/confirmation_util_unittest.cc index 9b0e33c0871e..a4ad891b634a 100644 --- a/components/brave_ads/core/internal/account/confirmations/confirmation_util_unittest.cc +++ b/components/brave_ads/core/internal/account/confirmations/confirmation_util_unittest.cc @@ -5,8 +5,6 @@ #include "brave/components/brave_ads/core/internal/account/confirmations/confirmation_util.h" -#include - #include "brave/components/brave_ads/common/pref_names.h" #include "brave/components/brave_ads/core/confirmation_type.h" #include "brave/components/brave_ads/core/internal/account/confirmations/confirmation_unittest_util.h" @@ -30,14 +28,7 @@ using ::testing::Return; class BatAdsConfirmationUtilTest : public UnitTestBase { protected: - void SetUp() override { - UnitTestBase::SetUp(); - - token_generator_mock_ = - std::make_unique>(); - } - - std::unique_ptr token_generator_mock_; + NiceMock token_generator_mock_; }; TEST_F(BatAdsConfirmationUtilTest, CreateConfirmationForNonOptedInUser) { @@ -46,7 +37,7 @@ TEST_F(BatAdsConfirmationUtilTest, CreateConfirmationForNonOptedInUser) { privacy::SetUnblindedTokens(/*count*/ 1); - ON_CALL(*token_generator_mock_, Generate(_)) + ON_CALL(token_generator_mock_, Generate(_)) .WillByDefault(Return(privacy::GetTokens(/*count*/ 1))); const TransactionInfo transaction = @@ -54,7 +45,7 @@ TEST_F(BatAdsConfirmationUtilTest, CreateConfirmationForNonOptedInUser) { // Act const absl::optional confirmation = - CreateConfirmation(token_generator_mock_.get(), transaction, + CreateConfirmation(&token_generator_mock_, transaction, /*user_data*/ {}); ASSERT_TRUE(confirmation); @@ -78,7 +69,7 @@ TEST_F(BatAdsConfirmationUtilTest, CreateConfirmationForOptedInUser) { // Arrange privacy::SetUnblindedTokens(/*count*/ 1); - ON_CALL(*token_generator_mock_, Generate(_)) + ON_CALL(token_generator_mock_, Generate(_)) .WillByDefault(Return(privacy::GetTokens(/*count*/ 1))); const TransactionInfo transaction = @@ -86,7 +77,7 @@ TEST_F(BatAdsConfirmationUtilTest, CreateConfirmationForOptedInUser) { // Act const absl::optional confirmation = - CreateConfirmation(token_generator_mock_.get(), transaction, + CreateConfirmation(&token_generator_mock_, transaction, /*user_data*/ {}); ASSERT_TRUE(confirmation); @@ -97,7 +88,7 @@ TEST_F(BatAdsConfirmationUtilTest, CreateConfirmationForOptedInUser) { TEST_F(BatAdsConfirmationUtilTest, FailToCreateConfirmationForOptedInUser) { // Arrange - ON_CALL(*token_generator_mock_, Generate(_)) + ON_CALL(token_generator_mock_, Generate(_)) .WillByDefault(Return(privacy::GetTokens(/*count*/ 1))); const TransactionInfo transaction = @@ -105,7 +96,7 @@ TEST_F(BatAdsConfirmationUtilTest, FailToCreateConfirmationForOptedInUser) { // Act const absl::optional confirmation = - CreateConfirmation(token_generator_mock_.get(), transaction, + CreateConfirmation(&token_generator_mock_, transaction, /*user_data*/ {}); // Assert diff --git a/components/brave_ads/core/internal/account/deposits/cash_deposit_test.cc b/components/brave_ads/core/internal/account/deposits/cash_deposit_test.cc index 89ad385724dc..9ae196c01f5f 100644 --- a/components/brave_ads/core/internal/account/deposits/cash_deposit_test.cc +++ b/components/brave_ads/core/internal/account/deposits/cash_deposit_test.cc @@ -23,7 +23,7 @@ class BatAdsCashDepositIntegrationTest : public UnitTestBase { void SetUpMocks() override { const URLResponseMap url_responses = { - {"/v9/catalog", {{net::HTTP_OK, "/catalog.json"}}}}; + {"/v9/catalog", {{net::HTTP_OK, /*response_body*/ "/catalog.json"}}}}; MockUrlResponses(ads_client_mock_, url_responses); } }; diff --git a/components/brave_ads/core/internal/account/issuers/issuers_unittest.cc b/components/brave_ads/core/internal/account/issuers/issuers_unittest.cc index eb7b4674016d..761a83283a8b 100644 --- a/components/brave_ads/core/internal/account/issuers/issuers_unittest.cc +++ b/components/brave_ads/core/internal/account/issuers/issuers_unittest.cc @@ -29,12 +29,11 @@ class BatAdsIssuersTest : public UnitTestBase { UnitTestBase::SetUp(); issuers_ = std::make_unique(); - issuers_delegate_mock_ = std::make_unique>(); - issuers_->SetDelegate(issuers_delegate_mock_.get()); + issuers_->SetDelegate(&issuers_delegate_mock_); } std::unique_ptr issuers_; - std::unique_ptr issuers_delegate_mock_; + NiceMock issuers_delegate_mock_; }; TEST_F(BatAdsIssuersTest, FetchIssuers) { @@ -48,10 +47,10 @@ TEST_F(BatAdsIssuersTest, FetchIssuers) { {{"JiwFR2EU/Adf1lgox+xqOVPuc6a/rxdy/LguFG5eaXg=", 0.0}, {"bPE1QE65mkIgytffeu7STOfly+x10BXCGuk5pVlOHQU=", 0.1}}); - EXPECT_CALL(*issuers_delegate_mock_, OnDidFetchIssuers(expected_issuers)); - EXPECT_CALL(*issuers_delegate_mock_, OnFailedToFetchIssuers()).Times(0); - EXPECT_CALL(*issuers_delegate_mock_, OnWillRetryFetchingIssuers(_)).Times(0); - EXPECT_CALL(*issuers_delegate_mock_, OnDidRetryFetchingIssuers()).Times(0); + EXPECT_CALL(issuers_delegate_mock_, OnDidFetchIssuers(expected_issuers)); + EXPECT_CALL(issuers_delegate_mock_, OnFailedToFetchIssuers()).Times(0); + EXPECT_CALL(issuers_delegate_mock_, OnWillRetryFetchingIssuers(_)).Times(0); + EXPECT_CALL(issuers_delegate_mock_, OnDidRetryFetchingIssuers()).Times(0); // Act issuers_->MaybeFetch(); @@ -61,15 +60,16 @@ TEST_F(BatAdsIssuersTest, FetchIssuers) { TEST_F(BatAdsIssuersTest, FetchIssuersInvalidJsonResponse) { // Arrange - const URLResponseMap url_responses = {{// Issuers request - "/v3/issuers/", - {{net::HTTP_OK, "INVALID"}}}}; + const URLResponseMap url_responses = { + {// Issuers request + "/v3/issuers/", + {{net::HTTP_OK, /*response_body*/ "INVALID"}}}}; MockUrlResponses(ads_client_mock_, url_responses); - EXPECT_CALL(*issuers_delegate_mock_, OnDidFetchIssuers(_)).Times(0); - EXPECT_CALL(*issuers_delegate_mock_, OnFailedToFetchIssuers()).Times(2); - EXPECT_CALL(*issuers_delegate_mock_, OnWillRetryFetchingIssuers(_)).Times(2); - EXPECT_CALL(*issuers_delegate_mock_, OnDidRetryFetchingIssuers()); + EXPECT_CALL(issuers_delegate_mock_, OnDidFetchIssuers(_)).Times(0); + EXPECT_CALL(issuers_delegate_mock_, OnFailedToFetchIssuers()).Times(2); + EXPECT_CALL(issuers_delegate_mock_, OnWillRetryFetchingIssuers(_)).Times(2); + EXPECT_CALL(issuers_delegate_mock_, OnDidRetryFetchingIssuers()); // Act issuers_->MaybeFetch(); @@ -86,15 +86,16 @@ TEST_F(BatAdsIssuersTest, FetchIssuersInvalidJsonResponse) { TEST_F(BatAdsIssuersTest, FetchIssuersNonHttpOkResponse) { // Arrange - const URLResponseMap url_responses = {{// Issuers request - "/v3/issuers/", - {{net::HTTP_NOT_FOUND, {}}}}}; + const URLResponseMap url_responses = { + {// Issuers request + "/v3/issuers/", + {{net::HTTP_NOT_FOUND, /*response_body*/ {}}}}}; MockUrlResponses(ads_client_mock_, url_responses); - EXPECT_CALL(*issuers_delegate_mock_, OnDidFetchIssuers(_)).Times(0); - EXPECT_CALL(*issuers_delegate_mock_, OnFailedToFetchIssuers()).Times(2); - EXPECT_CALL(*issuers_delegate_mock_, OnWillRetryFetchingIssuers(_)).Times(2); - EXPECT_CALL(*issuers_delegate_mock_, OnDidRetryFetchingIssuers()); + EXPECT_CALL(issuers_delegate_mock_, OnDidFetchIssuers(_)).Times(0); + EXPECT_CALL(issuers_delegate_mock_, OnFailedToFetchIssuers()).Times(2); + EXPECT_CALL(issuers_delegate_mock_, OnWillRetryFetchingIssuers(_)).Times(2); + EXPECT_CALL(issuers_delegate_mock_, OnDidRetryFetchingIssuers()); // Act issuers_->MaybeFetch(); diff --git a/components/brave_ads/core/internal/account/issuers/issuers_unittest_util.cc b/components/brave_ads/core/internal/account/issuers/issuers_unittest_util.cc index 8941e1a84a8f..df781ee13673 100644 --- a/components/brave_ads/core/internal/account/issuers/issuers_unittest_util.cc +++ b/components/brave_ads/core/internal/account/issuers/issuers_unittest_util.cc @@ -28,7 +28,7 @@ IssuerInfo BuildIssuer(const IssuerType type, const PublicKeyMap& public_keys) { URLResponseMap GetValidIssuersUrlResponses() { return {{// Issuers request "/v3/issuers/", - {{net::HTTP_OK, R"( + {{net::HTTP_OK, /*response_body*/ R"( { "ping": 7200000, "issuers": [ @@ -66,7 +66,7 @@ URLResponseMap GetValidIssuersUrlResponses() { URLResponseMap GetInvalidIssuersUrlResponses() { return {{// Get issuers request "/v3/issuers/", - {{net::HTTP_OK, R"( + {{net::HTTP_OK, /*response_body*/ R"( { "ping": 7200000, "issuers": [ diff --git a/components/brave_ads/core/internal/account/issuers/public_key_alias.h b/components/brave_ads/core/internal/account/issuers/public_key_alias.h index a8e9222348cd..8647a433dd02 100644 --- a/components/brave_ads/core/internal/account/issuers/public_key_alias.h +++ b/components/brave_ads/core/internal/account/issuers/public_key_alias.h @@ -12,7 +12,8 @@ namespace brave_ads { -using PublicKeyMap = base::flat_map; +using PublicKeyMap = + base::flat_map; } // namespace brave_ads diff --git a/components/brave_ads/core/internal/account/transactions/reconciled_transactions_util_unittest.cc b/components/brave_ads/core/internal/account/transactions/reconciled_transactions_util_unittest.cc index cd93fde62147..a4fad66d3548 100644 --- a/components/brave_ads/core/internal/account/transactions/reconciled_transactions_util_unittest.cc +++ b/components/brave_ads/core/internal/account/transactions/reconciled_transactions_util_unittest.cc @@ -26,11 +26,9 @@ TEST_F(BatAdsReconciledTransactionsUtilTest, transactions.push_back(transaction); // Act - const bool did_reconcile_transactions = - DidReconcileTransactionsThisMonth(transactions); // Assert - EXPECT_TRUE(did_reconcile_transactions); + EXPECT_TRUE(DidReconcileTransactionsThisMonth(transactions)); } TEST_F(BatAdsReconciledTransactionsUtilTest, @@ -46,11 +44,9 @@ TEST_F(BatAdsReconciledTransactionsUtilTest, AdvanceClockTo(TimeFromString("25 December 2020", /*is_local*/ true)); // Act - const bool did_reconcile_transactions = - DidReconcileTransactionsThisMonth(transactions); // Assert - EXPECT_FALSE(did_reconcile_transactions); + EXPECT_FALSE(DidReconcileTransactionsThisMonth(transactions)); } TEST_F(BatAdsReconciledTransactionsUtilTest, @@ -66,11 +62,9 @@ TEST_F(BatAdsReconciledTransactionsUtilTest, AdvanceClockTo(TimeFromString("25 December 2020", /*is_local*/ true)); // Act - const bool did_reconcile_transactions = - DidReconcileTransactionsLastMonth(transactions); // Assert - EXPECT_TRUE(did_reconcile_transactions); + EXPECT_TRUE(DidReconcileTransactionsLastMonth(transactions)); } TEST_F(BatAdsReconciledTransactionsUtilTest, @@ -84,11 +78,9 @@ TEST_F(BatAdsReconciledTransactionsUtilTest, transactions.push_back(transaction); // Act - const bool did_reconcile_transactions = - DidReconcileTransactionsLastMonth(transactions); // Assert - EXPECT_FALSE(did_reconcile_transactions); + EXPECT_FALSE(DidReconcileTransactionsLastMonth(transactions)); } TEST_F(BatAdsReconciledTransactionsUtilTest, DidReconcileTransaction) { @@ -99,10 +91,9 @@ TEST_F(BatAdsReconciledTransactionsUtilTest, DidReconcileTransaction) { BuildTransaction(/*value*/ 0.01, ConfirmationType::kViewed, Now()); // Act - const bool did_reconcile_transaction = DidReconcileTransaction(transaction); // Assert - EXPECT_TRUE(did_reconcile_transaction); + EXPECT_TRUE(DidReconcileTransaction(transaction)); } TEST_F(BatAdsReconciledTransactionsUtilTest, WasTransactionNotReconciled) { @@ -113,10 +104,9 @@ TEST_F(BatAdsReconciledTransactionsUtilTest, WasTransactionNotReconciled) { BuildTransaction(/*value*/ 0.01, ConfirmationType::kViewed); // Act - const bool did_reconcile_transaction = DidReconcileTransaction(transaction); // Assert - EXPECT_FALSE(did_reconcile_transaction); + EXPECT_FALSE(DidReconcileTransaction(transaction)); } TEST_F(BatAdsReconciledTransactionsUtilTest, @@ -128,11 +118,10 @@ TEST_F(BatAdsReconciledTransactionsUtilTest, BuildTransaction(/*value*/ 0.01, ConfirmationType::kViewed, Now()); // Act - const bool did_reconcile_transaction = - DidReconcileTransactionWithinDateRange(transaction, DistantPast(), Now()); // Assert - EXPECT_TRUE(did_reconcile_transaction); + EXPECT_TRUE(DidReconcileTransactionWithinDateRange(transaction, DistantPast(), + Now())); } TEST_F(BatAdsReconciledTransactionsUtilTest, @@ -144,11 +133,10 @@ TEST_F(BatAdsReconciledTransactionsUtilTest, BuildTransaction(/*value*/ 0.01, ConfirmationType::kViewed); // Act - const bool did_reconcile_transaction = DidReconcileTransactionWithinDateRange( - transaction, Now() + base::Milliseconds(1), DistantFuture()); // Assert - EXPECT_FALSE(did_reconcile_transaction); + EXPECT_FALSE(DidReconcileTransactionWithinDateRange( + transaction, Now() + base::Milliseconds(1), DistantFuture())); } } // namespace brave_ads diff --git a/components/brave_ads/core/internal/account/user_data/totals_user_data_alias.h b/components/brave_ads/core/internal/account/user_data/totals_user_data_alias.h index c6b6282ba3a3..598e9390ef90 100644 --- a/components/brave_ads/core/internal/account/user_data/totals_user_data_alias.h +++ b/components/brave_ads/core/internal/account/user_data/totals_user_data_alias.h @@ -12,8 +12,10 @@ namespace brave_ads::user_data { -using ConfirmationTypeBucketMap = base::flat_map; -using AdTypeBucketMap = base::flat_map; +using ConfirmationTypeBucketMap = + base::flat_map; +using AdTypeBucketMap = + base::flat_map; } // namespace brave_ads::user_data diff --git a/components/brave_ads/core/internal/account/user_data/user_data_builder_interface.h b/components/brave_ads/core/internal/account/user_data/user_data_builder_interface.h index 56c4e50a0624..612abdbde0da 100644 --- a/components/brave_ads/core/internal/account/user_data/user_data_builder_interface.h +++ b/components/brave_ads/core/internal/account/user_data/user_data_builder_interface.h @@ -11,8 +11,8 @@ namespace brave_ads { -// TODO(tmancey) -using UserDataBuilderCallback = base::OnceCallback; +using UserDataBuilderCallback = + base::OnceCallback; class UserDataBuilderInterface { public: diff --git a/components/brave_ads/core/internal/account/utility/redeem_confirmation/redeem_opted_in_confirmation_unittest.cc b/components/brave_ads/core/internal/account/utility/redeem_confirmation/redeem_opted_in_confirmation_unittest.cc index d63ea58520f8..5d7341bf81f4 100644 --- a/components/brave_ads/core/internal/account/utility/redeem_confirmation/redeem_opted_in_confirmation_unittest.cc +++ b/components/brave_ads/core/internal/account/utility/redeem_confirmation/redeem_opted_in_confirmation_unittest.cc @@ -32,12 +32,9 @@ class BatAdsRedeemOptedInConfirmationTest : public UnitTestBase { AdsClientHelper::GetInstance()->SetBooleanPref(prefs::kEnabled, true); } - std::unique_ptr - redeem_confirmation_delegate_mock_ = - std::make_unique>(); + NiceMock redeem_confirmation_delegate_mock_; base::WeakPtrFactory - confirmation_delegate_weak_factory_{ - redeem_confirmation_delegate_mock_.get()}; + confirmation_delegate_weak_factory_{&redeem_confirmation_delegate_mock_}; }; TEST_F(BatAdsRedeemOptedInConfirmationTest, Redeem) { @@ -54,7 +51,7 @@ TEST_F(BatAdsRedeemOptedInConfirmationTest, Redeem) { "JmWjVUMGt2QmhEM0E9PSIsInQiOiJWV0tFZEliOG5Nd21UMWVMdE5MR3VmVmU2TlFCRS9TW" "GpCcHlsTFlUVk1KVFQrZk5ISTJWQmQyenRZcUlwRVdsZWF6TiswYk5jNGF2S2ZrY3YyRkw3" "Zz09In0=", - {{net::HTTP_CREATED, R"( + {{net::HTTP_CREATED, /*response_body*/ R"( { "id" : "8b742869-6e4a-490c-ac31-31b49130098a", "createdAt" : "2020-04-20T10:27:11.717Z", @@ -65,7 +62,7 @@ TEST_F(BatAdsRedeemOptedInConfirmationTest, Redeem) { )"}}}, {// Fetch payment token request "/v3/confirmation/8b742869-6e4a-490c-ac31-31b49130098a/paymentToken", - {{net::HTTP_OK, R"( + {{net::HTTP_OK, /*response_body*/ R"( { "id" : "8b742869-6e4a-490c-ac31-31b49130098a", "createdAt" : "2020-04-20T10:27:11.717Z", @@ -94,14 +91,14 @@ TEST_F(BatAdsRedeemOptedInConfirmationTest, Redeem) { ConfirmationInfo expected_confirmation = *confirmation; expected_confirmation.was_created = true; - EXPECT_CALL(*redeem_confirmation_delegate_mock_, + EXPECT_CALL(redeem_confirmation_delegate_mock_, OnDidRedeemOptedInConfirmation(expected_confirmation, _)); - EXPECT_CALL(*redeem_confirmation_delegate_mock_, + EXPECT_CALL(redeem_confirmation_delegate_mock_, OnDidRedeemOptedOutConfirmation(_)) .Times(0); - EXPECT_CALL(*redeem_confirmation_delegate_mock_, + EXPECT_CALL(redeem_confirmation_delegate_mock_, OnFailedToRedeemConfirmation(_, _, _)) .Times(0); @@ -119,15 +116,15 @@ TEST_F(BatAdsRedeemOptedInConfirmationTest, RetryRedeemingIfNoIssuers) { ASSERT_TRUE(confirmation); // Act - EXPECT_CALL(*redeem_confirmation_delegate_mock_, + EXPECT_CALL(redeem_confirmation_delegate_mock_, OnDidRedeemOptedInConfirmation(_, _)) .Times(0); - EXPECT_CALL(*redeem_confirmation_delegate_mock_, + EXPECT_CALL(redeem_confirmation_delegate_mock_, OnDidRedeemOptedOutConfirmation(_)) .Times(0); - EXPECT_CALL(*redeem_confirmation_delegate_mock_, + EXPECT_CALL(redeem_confirmation_delegate_mock_, OnFailedToRedeemConfirmation(*confirmation, /*should_retry*/ true, /*should_backoff*/ true)); @@ -144,7 +141,7 @@ TEST_F(BatAdsRedeemOptedInConfirmationTest, const URLResponseMap url_responses = { {// Fetch payment token request "/v3/confirmation/8b742869-6e4a-490c-ac31-31b49130098a/paymentToken", - {{net::HTTP_OK, R"( + {{net::HTTP_OK, /*response_body*/ R"( { "id" : "8b742869-6e4a-490c-ac31-31b49130098a", "createdAt" : "2020-04-20T10:27:11.717Z", @@ -174,14 +171,14 @@ TEST_F(BatAdsRedeemOptedInConfirmationTest, expected_confirmation.was_created = true; // Act - EXPECT_CALL(*redeem_confirmation_delegate_mock_, + EXPECT_CALL(redeem_confirmation_delegate_mock_, OnDidRedeemOptedInConfirmation(expected_confirmation, _)); - EXPECT_CALL(*redeem_confirmation_delegate_mock_, + EXPECT_CALL(redeem_confirmation_delegate_mock_, OnDidRedeemOptedOutConfirmation(_)) .Times(0); - EXPECT_CALL(*redeem_confirmation_delegate_mock_, + EXPECT_CALL(redeem_confirmation_delegate_mock_, OnFailedToRedeemConfirmation(_, _, _)) .Times(0); @@ -206,10 +203,10 @@ TEST_F(BatAdsRedeemOptedInConfirmationTest, "JmWjVUMGt2QmhEM0E9PSIsInQiOiJWV0tFZEliOG5Nd21UMWVMdE5MR3VmVmU2TlFCRS9TW" "GpCcHlsTFlUVk1KVFQrZk5ISTJWQmQyenRZcUlwRVdsZWF6TiswYk5jNGF2S2ZrY3YyRkw3" "Zz09In0=", - {{net::HTTP_OK, {}}}}, + {{net::HTTP_OK, /*response_body*/ {}}}}, {// Fetch payment token request "/v3/confirmation/8b742869-6e4a-490c-ac31-31b49130098a/paymentToken", - {{net::HTTP_NOT_FOUND, {}}}}}; + {{net::HTTP_NOT_FOUND, /*response_body*/ {}}}}}; MockUrlResponses(ads_client_mock_, url_responses); BuildAndSetIssuers(); @@ -220,15 +217,15 @@ TEST_F(BatAdsRedeemOptedInConfirmationTest, ASSERT_TRUE(confirmation); // Act - EXPECT_CALL(*redeem_confirmation_delegate_mock_, + EXPECT_CALL(redeem_confirmation_delegate_mock_, OnDidRedeemOptedInConfirmation(_, _)) .Times(0); - EXPECT_CALL(*redeem_confirmation_delegate_mock_, + EXPECT_CALL(redeem_confirmation_delegate_mock_, OnDidRedeemOptedOutConfirmation(_)) .Times(0); - EXPECT_CALL(*redeem_confirmation_delegate_mock_, + EXPECT_CALL(redeem_confirmation_delegate_mock_, OnFailedToRedeemConfirmation(*confirmation, /*should_retry*/ true, /*should_backoff*/ false)); @@ -254,10 +251,10 @@ TEST_F(BatAdsRedeemOptedInConfirmationTest, "JmWjVUMGt2QmhEM0E9PSIsInQiOiJWV0tFZEliOG5Nd21UMWVMdE5MR3VmVmU2TlFCRS9TW" "GpCcHlsTFlUVk1KVFQrZk5ISTJWQmQyenRZcUlwRVdsZWF6TiswYk5jNGF2S2ZrY3YyRkw3" "Zz09In0=", - {{net::HTTP_OK, {}}}}, + {{net::HTTP_OK, /*response_body*/ {}}}}, {// Fetch payment token request "/v3/confirmation/8b742869-6e4a-490c-ac31-31b49130098a/paymentToken", - {{net::HTTP_BAD_REQUEST, {}}}}}; + {{net::HTTP_BAD_REQUEST, /*response_body*/ {}}}}}; MockUrlResponses(ads_client_mock_, url_responses); BuildAndSetIssuers(); @@ -271,15 +268,15 @@ TEST_F(BatAdsRedeemOptedInConfirmationTest, ConfirmationInfo expected_confirmation = *confirmation; expected_confirmation.was_created = true; - EXPECT_CALL(*redeem_confirmation_delegate_mock_, + EXPECT_CALL(redeem_confirmation_delegate_mock_, OnDidRedeemOptedInConfirmation(_, _)) .Times(0); - EXPECT_CALL(*redeem_confirmation_delegate_mock_, + EXPECT_CALL(redeem_confirmation_delegate_mock_, OnDidRedeemOptedOutConfirmation(_)) .Times(0); - EXPECT_CALL(*redeem_confirmation_delegate_mock_, + EXPECT_CALL(redeem_confirmation_delegate_mock_, OnFailedToRedeemConfirmation(expected_confirmation, /*should_retry*/ false, /*should_backoff*/ false)); @@ -305,10 +302,10 @@ TEST_F(BatAdsRedeemOptedInConfirmationTest, "JmWjVUMGt2QmhEM0E9PSIsInQiOiJWV0tFZEliOG5Nd21UMWVMdE5MR3VmVmU2TlFCRS9TW" "GpCcHlsTFlUVk1KVFQrZk5ISTJWQmQyenRZcUlwRVdsZWF6TiswYk5jNGF2S2ZrY3YyRkw3" "Zz09In0=", - {{net::HTTP_OK, {}}}}, + {{net::HTTP_OK, /*response_body*/ {}}}}, {// Fetch payment token request "/v3/confirmation/8b742869-6e4a-490c-ac31-31b49130098a/paymentToken", - {{net::HTTP_ACCEPTED, {}}}}}; + {{net::HTTP_ACCEPTED, /*response_body*/ {}}}}}; MockUrlResponses(ads_client_mock_, url_responses); BuildAndSetIssuers(); @@ -322,15 +319,15 @@ TEST_F(BatAdsRedeemOptedInConfirmationTest, ConfirmationInfo expected_confirmation = *confirmation; expected_confirmation.was_created = true; - EXPECT_CALL(*redeem_confirmation_delegate_mock_, + EXPECT_CALL(redeem_confirmation_delegate_mock_, OnDidRedeemOptedInConfirmation(_, _)) .Times(0); - EXPECT_CALL(*redeem_confirmation_delegate_mock_, + EXPECT_CALL(redeem_confirmation_delegate_mock_, OnDidRedeemOptedOutConfirmation(_)) .Times(0); - EXPECT_CALL(*redeem_confirmation_delegate_mock_, + EXPECT_CALL(redeem_confirmation_delegate_mock_, OnFailedToRedeemConfirmation(expected_confirmation, /*should_retry*/ true, /*should_backoff*/ false)); @@ -356,10 +353,10 @@ TEST_F(BatAdsRedeemOptedInConfirmationTest, "JmWjVUMGt2QmhEM0E9PSIsInQiOiJWV0tFZEliOG5Nd21UMWVMdE5MR3VmVmU2TlFCRS9TW" "GpCcHlsTFlUVk1KVFQrZk5ISTJWQmQyenRZcUlwRVdsZWF6TiswYk5jNGF2S2ZrY3YyRkw3" "Zz09In0=", - {{net::HTTP_OK, {}}}}, + {{net::HTTP_OK, /*response_body*/ {}}}}, {// Fetch payment token request "/v3/confirmation/8b742869-6e4a-490c-ac31-31b49130098a/paymentToken", - {{net::HTTP_INTERNAL_SERVER_ERROR, {}}}}}; + {{net::HTTP_INTERNAL_SERVER_ERROR, /*response_body*/ {}}}}}; MockUrlResponses(ads_client_mock_, url_responses); BuildAndSetIssuers(); @@ -373,15 +370,15 @@ TEST_F(BatAdsRedeemOptedInConfirmationTest, ConfirmationInfo expected_confirmation = *confirmation; expected_confirmation.was_created = true; - EXPECT_CALL(*redeem_confirmation_delegate_mock_, + EXPECT_CALL(redeem_confirmation_delegate_mock_, OnDidRedeemOptedInConfirmation(_, _)) .Times(0); - EXPECT_CALL(*redeem_confirmation_delegate_mock_, + EXPECT_CALL(redeem_confirmation_delegate_mock_, OnDidRedeemOptedOutConfirmation(_)) .Times(0); - EXPECT_CALL(*redeem_confirmation_delegate_mock_, + EXPECT_CALL(redeem_confirmation_delegate_mock_, OnFailedToRedeemConfirmation(expected_confirmation, /*should_retry*/ true, /*should_backoff*/ true)); @@ -407,7 +404,7 @@ TEST_F(BatAdsRedeemOptedInConfirmationTest, "JmWjVUMGt2QmhEM0E9PSIsInQiOiJWV0tFZEliOG5Nd21UMWVMdE5MR3VmVmU2TlFCRS9TW" "GpCcHlsTFlUVk1KVFQrZk5ISTJWQmQyenRZcUlwRVdsZWF6TiswYk5jNGF2S2ZrY3YyRkw3" "Zz09In0=", - {{net::HTTP_CREATED, R"( + {{net::HTTP_CREATED, /*response_body*/ R"( { "id" : "8b742869-6e4a-490c-ac31-31b49130098a", "createdAt" : "2020-04-20T10:27:11.717Z", @@ -418,7 +415,7 @@ TEST_F(BatAdsRedeemOptedInConfirmationTest, )"}}}, {// Fetch payment token request "/v3/confirmation/8b742869-6e4a-490c-ac31-31b49130098a/paymentToken", - {{net::HTTP_OK, "INVALID_JSON"}}}}; + {{net::HTTP_OK, /*response_body*/ "INVALID_JSON"}}}}; MockUrlResponses(ads_client_mock_, url_responses); BuildAndSetIssuers(); @@ -429,15 +426,15 @@ TEST_F(BatAdsRedeemOptedInConfirmationTest, ASSERT_TRUE(confirmation); // Act - EXPECT_CALL(*redeem_confirmation_delegate_mock_, + EXPECT_CALL(redeem_confirmation_delegate_mock_, OnDidRedeemOptedInConfirmation(_, _)) .Times(0); - EXPECT_CALL(*redeem_confirmation_delegate_mock_, + EXPECT_CALL(redeem_confirmation_delegate_mock_, OnDidRedeemOptedOutConfirmation(_)) .Times(0); - EXPECT_CALL(*redeem_confirmation_delegate_mock_, + EXPECT_CALL(redeem_confirmation_delegate_mock_, OnFailedToRedeemConfirmation(_, /*should_retry*/ true, /*should_backoff*/ true)); @@ -463,7 +460,7 @@ TEST_F(BatAdsRedeemOptedInConfirmationTest, "JmWjVUMGt2QmhEM0E9PSIsInQiOiJWV0tFZEliOG5Nd21UMWVMdE5MR3VmVmU2TlFCRS9TW" "GpCcHlsTFlUVk1KVFQrZk5ISTJWQmQyenRZcUlwRVdsZWF6TiswYk5jNGF2S2ZrY3YyRkw3" "Zz09In0=", - {{net::HTTP_CREATED, R"( + {{net::HTTP_CREATED, /*response_body*/ R"( { "id" : "8b742869-6e4a-490c-ac31-31b49130098a", "createdAt" : "2020-04-20T10:27:11.717Z", @@ -474,7 +471,7 @@ TEST_F(BatAdsRedeemOptedInConfirmationTest, )"}}}, {// Fetch payment token request "/v3/confirmation/8b742869-6e4a-490c-ac31-31b49130098a/paymentToken", - {{net::HTTP_OK, R"( + {{net::HTTP_OK, /*response_body*/ R"( { "createdAt" : "2020-04-20T10:27:11.717Z", "type" : "view", @@ -502,15 +499,15 @@ TEST_F(BatAdsRedeemOptedInConfirmationTest, ConfirmationInfo expected_confirmation = *confirmation; expected_confirmation.was_created = true; - EXPECT_CALL(*redeem_confirmation_delegate_mock_, + EXPECT_CALL(redeem_confirmation_delegate_mock_, OnDidRedeemOptedInConfirmation(_, _)) .Times(0); - EXPECT_CALL(*redeem_confirmation_delegate_mock_, + EXPECT_CALL(redeem_confirmation_delegate_mock_, OnDidRedeemOptedOutConfirmation(_)) .Times(0); - EXPECT_CALL(*redeem_confirmation_delegate_mock_, + EXPECT_CALL(redeem_confirmation_delegate_mock_, OnFailedToRedeemConfirmation(expected_confirmation, /*should_retry*/ false, /*should_backoff*/ false)); @@ -536,7 +533,7 @@ TEST_F(BatAdsRedeemOptedInConfirmationTest, "JmWjVUMGt2QmhEM0E9PSIsInQiOiJWV0tFZEliOG5Nd21UMWVMdE5MR3VmVmU2TlFCRS9TW" "GpCcHlsTFlUVk1KVFQrZk5ISTJWQmQyenRZcUlwRVdsZWF6TiswYk5jNGF2S2ZrY3YyRkw3" "Zz09In0=", - {{net::HTTP_CREATED, R"( + {{net::HTTP_CREATED, /*response_body*/ R"( { "id" : "8b742869-6e4a-490c-ac31-31b49130098a", "createdAt" : "2020-04-20T10:27:11.717Z", @@ -547,7 +544,7 @@ TEST_F(BatAdsRedeemOptedInConfirmationTest, )"}}}, {// Fetch payment token request "/v3/confirmation/8b742869-6e4a-490c-ac31-31b49130098a/paymentToken", - {{net::HTTP_OK, R"( + {{net::HTTP_OK, /*response_body*/ R"( { "id" : "393abadc-e9ae-4aac-a321-3307e0d527c6", "createdAt" : "2020-04-20T10:27:11.717Z", @@ -576,15 +573,15 @@ TEST_F(BatAdsRedeemOptedInConfirmationTest, ConfirmationInfo expected_confirmation = *confirmation; expected_confirmation.was_created = true; - EXPECT_CALL(*redeem_confirmation_delegate_mock_, + EXPECT_CALL(redeem_confirmation_delegate_mock_, OnDidRedeemOptedInConfirmation(_, _)) .Times(0); - EXPECT_CALL(*redeem_confirmation_delegate_mock_, + EXPECT_CALL(redeem_confirmation_delegate_mock_, OnDidRedeemOptedOutConfirmation(_)) .Times(0); - EXPECT_CALL(*redeem_confirmation_delegate_mock_, + EXPECT_CALL(redeem_confirmation_delegate_mock_, OnFailedToRedeemConfirmation(expected_confirmation, /*should_retry*/ false, /*should_backoff*/ false)); @@ -610,7 +607,7 @@ TEST_F(BatAdsRedeemOptedInConfirmationTest, "JmWjVUMGt2QmhEM0E9PSIsInQiOiJWV0tFZEliOG5Nd21UMWVMdE5MR3VmVmU2TlFCRS9TW" "GpCcHlsTFlUVk1KVFQrZk5ISTJWQmQyenRZcUlwRVdsZWF6TiswYk5jNGF2S2ZrY3YyRkw3" "Zz09In0=", - {{net::HTTP_CREATED, R"( + {{net::HTTP_CREATED, /*response_body*/ R"( { "id" : "8b742869-6e4a-490c-ac31-31b49130098a", "createdAt" : "2020-04-20T10:27:11.717Z", @@ -621,7 +618,7 @@ TEST_F(BatAdsRedeemOptedInConfirmationTest, )"}}}, {// Fetch payment token request "/v3/confirmation/8b742869-6e4a-490c-ac31-31b49130098a/paymentToken", - {{net::HTTP_OK, R"( + {{net::HTTP_OK, /*response_body*/ R"( { "id" : "8b742869-6e4a-490c-ac31-31b49130098a", "createdAt" : "2020-04-20T10:27:11.717Z", @@ -643,15 +640,15 @@ TEST_F(BatAdsRedeemOptedInConfirmationTest, ConfirmationInfo expected_confirmation = *confirmation; expected_confirmation.was_created = true; - EXPECT_CALL(*redeem_confirmation_delegate_mock_, + EXPECT_CALL(redeem_confirmation_delegate_mock_, OnDidRedeemOptedInConfirmation(_, _)) .Times(0); - EXPECT_CALL(*redeem_confirmation_delegate_mock_, + EXPECT_CALL(redeem_confirmation_delegate_mock_, OnDidRedeemOptedOutConfirmation(_)) .Times(0); - EXPECT_CALL(*redeem_confirmation_delegate_mock_, + EXPECT_CALL(redeem_confirmation_delegate_mock_, OnFailedToRedeemConfirmation(expected_confirmation, /*should_retry*/ false, /*should_backoff*/ false)); @@ -677,7 +674,7 @@ TEST_F(BatAdsRedeemOptedInConfirmationTest, "JmWjVUMGt2QmhEM0E9PSIsInQiOiJWV0tFZEliOG5Nd21UMWVMdE5MR3VmVmU2TlFCRS9TW" "GpCcHlsTFlUVk1KVFQrZk5ISTJWQmQyenRZcUlwRVdsZWF6TiswYk5jNGF2S2ZrY3YyRkw3" "Zz09In0=", - {{net::HTTP_CREATED, R"( + {{net::HTTP_CREATED, /*response_body*/ R"( { "id" : "8b742869-6e4a-490c-ac31-31b49130098a", "createdAt" : "2020-04-20T10:27:11.717Z", @@ -688,7 +685,7 @@ TEST_F(BatAdsRedeemOptedInConfirmationTest, )"}}}, {// Fetch payment token request "/v3/confirmation/8b742869-6e4a-490c-ac31-31b49130098a/paymentToken", - {{net::HTTP_OK, R"( + {{net::HTTP_OK, /*response_body*/ R"( { "id" : "8b742869-6e4a-490c-ac31-31b49130098a", "createdAt" : "2020-04-20T10:27:11.717Z", @@ -716,15 +713,15 @@ TEST_F(BatAdsRedeemOptedInConfirmationTest, ConfirmationInfo expected_confirmation = *confirmation; expected_confirmation.was_created = true; - EXPECT_CALL(*redeem_confirmation_delegate_mock_, + EXPECT_CALL(redeem_confirmation_delegate_mock_, OnDidRedeemOptedInConfirmation(_, _)) .Times(0); - EXPECT_CALL(*redeem_confirmation_delegate_mock_, + EXPECT_CALL(redeem_confirmation_delegate_mock_, OnDidRedeemOptedOutConfirmation(_)) .Times(0); - EXPECT_CALL(*redeem_confirmation_delegate_mock_, + EXPECT_CALL(redeem_confirmation_delegate_mock_, OnFailedToRedeemConfirmation(expected_confirmation, /*should_retry*/ false, /*should_backoff*/ false)); @@ -750,7 +747,7 @@ TEST_F(BatAdsRedeemOptedInConfirmationTest, "JmWjVUMGt2QmhEM0E9PSIsInQiOiJWV0tFZEliOG5Nd21UMWVMdE5MR3VmVmU2TlFCRS9TW" "GpCcHlsTFlUVk1KVFQrZk5ISTJWQmQyenRZcUlwRVdsZWF6TiswYk5jNGF2S2ZrY3YyRkw3" "Zz09In0=", - {{net::HTTP_CREATED, R"( + {{net::HTTP_CREATED, /*response_body*/ R"( { "id" : "8b742869-6e4a-490c-ac31-31b49130098a", "createdAt" : "2020-04-20T10:27:11.717Z", @@ -761,7 +758,7 @@ TEST_F(BatAdsRedeemOptedInConfirmationTest, )"}}}, {// Fetch payment token request "/v3/confirmation/8b742869-6e4a-490c-ac31-31b49130098a/paymentToken", - {{net::HTTP_OK, R"( + {{net::HTTP_OK, /*response_body*/ R"( { "id" : "8b742869-6e4a-490c-ac31-31b49130098a", "createdAt" : "2020-04-20T10:27:11.717Z", @@ -790,15 +787,15 @@ TEST_F(BatAdsRedeemOptedInConfirmationTest, ConfirmationInfo expected_confirmation = *confirmation; expected_confirmation.was_created = true; - EXPECT_CALL(*redeem_confirmation_delegate_mock_, + EXPECT_CALL(redeem_confirmation_delegate_mock_, OnDidRedeemOptedInConfirmation(_, _)) .Times(0); - EXPECT_CALL(*redeem_confirmation_delegate_mock_, + EXPECT_CALL(redeem_confirmation_delegate_mock_, OnDidRedeemOptedOutConfirmation(_)) .Times(0); - EXPECT_CALL(*redeem_confirmation_delegate_mock_, + EXPECT_CALL(redeem_confirmation_delegate_mock_, OnFailedToRedeemConfirmation(expected_confirmation, /*should_retry*/ false, /*should_backoff*/ false)); @@ -824,7 +821,7 @@ TEST_F(BatAdsRedeemOptedInConfirmationTest, "JmWjVUMGt2QmhEM0E9PSIsInQiOiJWV0tFZEliOG5Nd21UMWVMdE5MR3VmVmU2TlFCRS9TW" "GpCcHlsTFlUVk1KVFQrZk5ISTJWQmQyenRZcUlwRVdsZWF6TiswYk5jNGF2S2ZrY3YyRkw3" "Zz09In0=", - {{net::HTTP_CREATED, R"( + {{net::HTTP_CREATED, /*response_body*/ R"( { "id" : "8b742869-6e4a-490c-ac31-31b49130098a", "createdAt" : "2020-04-20T10:27:11.717Z", @@ -835,7 +832,7 @@ TEST_F(BatAdsRedeemOptedInConfirmationTest, )"}}}, {// Fetch payment token request "/v3/confirmation/8b742869-6e4a-490c-ac31-31b49130098a/paymentToken", - {{net::HTTP_OK, R"( + {{net::HTTP_OK, /*response_body*/ R"( { "id" : "8b742869-6e4a-490c-ac31-31b49130098a", "createdAt" : "2020-04-20T10:27:11.717Z", @@ -863,15 +860,15 @@ TEST_F(BatAdsRedeemOptedInConfirmationTest, ConfirmationInfo expected_confirmation = *confirmation; expected_confirmation.was_created = true; - EXPECT_CALL(*redeem_confirmation_delegate_mock_, + EXPECT_CALL(redeem_confirmation_delegate_mock_, OnDidRedeemOptedInConfirmation(_, _)) .Times(0); - EXPECT_CALL(*redeem_confirmation_delegate_mock_, + EXPECT_CALL(redeem_confirmation_delegate_mock_, OnDidRedeemOptedOutConfirmation(_)) .Times(0); - EXPECT_CALL(*redeem_confirmation_delegate_mock_, + EXPECT_CALL(redeem_confirmation_delegate_mock_, OnFailedToRedeemConfirmation(expected_confirmation, /*should_retry*/ true, /*should_backoff*/ true)); @@ -897,7 +894,7 @@ TEST_F(BatAdsRedeemOptedInConfirmationTest, "JmWjVUMGt2QmhEM0E9PSIsInQiOiJWV0tFZEliOG5Nd21UMWVMdE5MR3VmVmU2TlFCRS9TW" "GpCcHlsTFlUVk1KVFQrZk5ISTJWQmQyenRZcUlwRVdsZWF6TiswYk5jNGF2S2ZrY3YyRkw3" "Zz09In0=", - {{net::HTTP_CREATED, R"( + {{net::HTTP_CREATED, /*response_body*/ R"( { "id" : "8b742869-6e4a-490c-ac31-31b49130098a", "createdAt" : "2020-04-20T10:27:11.717Z", @@ -908,7 +905,7 @@ TEST_F(BatAdsRedeemOptedInConfirmationTest, )"}}}, {// Fetch payment token request "/v3/confirmation/8b742869-6e4a-490c-ac31-31b49130098a/paymentToken", - {{net::HTTP_OK, R"( + {{net::HTTP_OK, /*response_body*/ R"( { "id" : "8b742869-6e4a-490c-ac31-31b49130098a", "createdAt" : "2020-04-20T10:27:11.717Z", @@ -936,15 +933,15 @@ TEST_F(BatAdsRedeemOptedInConfirmationTest, ConfirmationInfo expected_confirmation = *confirmation; expected_confirmation.was_created = true; - EXPECT_CALL(*redeem_confirmation_delegate_mock_, + EXPECT_CALL(redeem_confirmation_delegate_mock_, OnDidRedeemOptedInConfirmation(_, _)) .Times(0); - EXPECT_CALL(*redeem_confirmation_delegate_mock_, + EXPECT_CALL(redeem_confirmation_delegate_mock_, OnDidRedeemOptedOutConfirmation(_)) .Times(0); - EXPECT_CALL(*redeem_confirmation_delegate_mock_, + EXPECT_CALL(redeem_confirmation_delegate_mock_, OnFailedToRedeemConfirmation(expected_confirmation, /*should_retry*/ false, /*should_backoff*/ false)); @@ -970,7 +967,7 @@ TEST_F(BatAdsRedeemOptedInConfirmationTest, "JmWjVUMGt2QmhEM0E9PSIsInQiOiJWV0tFZEliOG5Nd21UMWVMdE5MR3VmVmU2TlFCRS9TW" "GpCcHlsTFlUVk1KVFQrZk5ISTJWQmQyenRZcUlwRVdsZWF6TiswYk5jNGF2S2ZrY3YyRkw3" "Zz09In0=", - {{net::HTTP_CREATED, R"( + {{net::HTTP_CREATED, /*response_body*/ R"( { "id" : "8b742869-6e4a-490c-ac31-31b49130098a", "createdAt" : "2020-04-20T10:27:11.717Z", @@ -981,7 +978,7 @@ TEST_F(BatAdsRedeemOptedInConfirmationTest, )"}}}, {// Fetch payment token request "/v3/confirmation/8b742869-6e4a-490c-ac31-31b49130098a/paymentToken", - {{net::HTTP_OK, R"( + {{net::HTTP_OK, /*response_body*/ R"( { "id" : "8b742869-6e4a-490c-ac31-31b49130098a", "createdAt" : "2020-04-20T10:27:11.717Z", @@ -1010,15 +1007,15 @@ TEST_F(BatAdsRedeemOptedInConfirmationTest, ConfirmationInfo expected_confirmation = *confirmation; expected_confirmation.was_created = true; - EXPECT_CALL(*redeem_confirmation_delegate_mock_, + EXPECT_CALL(redeem_confirmation_delegate_mock_, OnDidRedeemOptedInConfirmation(_, _)) .Times(0); - EXPECT_CALL(*redeem_confirmation_delegate_mock_, + EXPECT_CALL(redeem_confirmation_delegate_mock_, OnDidRedeemOptedOutConfirmation(_)) .Times(0); - EXPECT_CALL(*redeem_confirmation_delegate_mock_, + EXPECT_CALL(redeem_confirmation_delegate_mock_, OnFailedToRedeemConfirmation(expected_confirmation, /*should_retry*/ false, /*should_backoff*/ false)); @@ -1044,7 +1041,7 @@ TEST_F(BatAdsRedeemOptedInConfirmationTest, "JmWjVUMGt2QmhEM0E9PSIsInQiOiJWV0tFZEliOG5Nd21UMWVMdE5MR3VmVmU2TlFCRS9TW" "GpCcHlsTFlUVk1KVFQrZk5ISTJWQmQyenRZcUlwRVdsZWF6TiswYk5jNGF2S2ZrY3YyRkw3" "Zz09In0=", - {{net::HTTP_CREATED, R"( + {{net::HTTP_CREATED, /*response_body*/ R"( { "id" : "8b742869-6e4a-490c-ac31-31b49130098a", "createdAt" : "2020-04-20T10:27:11.717Z", @@ -1055,7 +1052,7 @@ TEST_F(BatAdsRedeemOptedInConfirmationTest, )"}}}, {// Fetch payment token request "/v3/confirmation/8b742869-6e4a-490c-ac31-31b49130098a/paymentToken", - {{net::HTTP_OK, R"( + {{net::HTTP_OK, /*response_body*/ R"( { "id" : "8b742869-6e4a-490c-ac31-31b49130098a", "createdAt" : "2020-04-20T10:27:11.717Z", @@ -1081,15 +1078,15 @@ TEST_F(BatAdsRedeemOptedInConfirmationTest, ConfirmationInfo expected_confirmation = *confirmation; expected_confirmation.was_created = true; - EXPECT_CALL(*redeem_confirmation_delegate_mock_, + EXPECT_CALL(redeem_confirmation_delegate_mock_, OnDidRedeemOptedInConfirmation(_, _)) .Times(0); - EXPECT_CALL(*redeem_confirmation_delegate_mock_, + EXPECT_CALL(redeem_confirmation_delegate_mock_, OnDidRedeemOptedOutConfirmation(_)) .Times(0); - EXPECT_CALL(*redeem_confirmation_delegate_mock_, + EXPECT_CALL(redeem_confirmation_delegate_mock_, OnFailedToRedeemConfirmation(expected_confirmation, /*should_retry*/ false, /*should_backoff*/ false)); @@ -1115,7 +1112,7 @@ TEST_F(BatAdsRedeemOptedInConfirmationTest, "JmWjVUMGt2QmhEM0E9PSIsInQiOiJWV0tFZEliOG5Nd21UMWVMdE5MR3VmVmU2TlFCRS9TW" "GpCcHlsTFlUVk1KVFQrZk5ISTJWQmQyenRZcUlwRVdsZWF6TiswYk5jNGF2S2ZrY3YyRkw3" "Zz09In0=", - {{net::HTTP_CREATED, R"( + {{net::HTTP_CREATED, /*response_body*/ R"( { "id" : "8b742869-6e4a-490c-ac31-31b49130098a", "createdAt" : "2020-04-20T10:27:11.717Z", @@ -1126,7 +1123,7 @@ TEST_F(BatAdsRedeemOptedInConfirmationTest, )"}}}, {// Fetch payment token request "/v3/confirmation/8b742869-6e4a-490c-ac31-31b49130098a/paymentToken", - {{net::HTTP_OK, R"( + {{net::HTTP_OK, /*response_body*/ R"( { "id" : "8b742869-6e4a-490c-ac31-31b49130098a", "createdAt" : "2020-04-20T10:27:11.717Z", @@ -1152,15 +1149,15 @@ TEST_F(BatAdsRedeemOptedInConfirmationTest, ConfirmationInfo expected_confirmation = *confirmation; expected_confirmation.was_created = true; - EXPECT_CALL(*redeem_confirmation_delegate_mock_, + EXPECT_CALL(redeem_confirmation_delegate_mock_, OnDidRedeemOptedInConfirmation(_, _)) .Times(0); - EXPECT_CALL(*redeem_confirmation_delegate_mock_, + EXPECT_CALL(redeem_confirmation_delegate_mock_, OnDidRedeemOptedOutConfirmation(_)) .Times(0); - EXPECT_CALL(*redeem_confirmation_delegate_mock_, + EXPECT_CALL(redeem_confirmation_delegate_mock_, OnFailedToRedeemConfirmation(expected_confirmation, /*should_retry*/ false, /*should_backoff*/ false)); @@ -1197,7 +1194,7 @@ TEST_F(BatAdsRedeemOptedInConfirmationTest, )"}}}, {// Fetch payment token request "/v3/confirmation/8b742869-6e4a-490c-ac31-31b49130098a/paymentToken", - {{net::HTTP_OK, R"( + {{net::HTTP_OK, /*response_body*/ R"( { "id" : "8b742869-6e4a-490c-ac31-31b49130098a", "createdAt" : "2020-04-20T10:27:11.717Z", @@ -1226,15 +1223,15 @@ TEST_F(BatAdsRedeemOptedInConfirmationTest, ConfirmationInfo expected_confirmation = *confirmation; expected_confirmation.was_created = true; - EXPECT_CALL(*redeem_confirmation_delegate_mock_, + EXPECT_CALL(redeem_confirmation_delegate_mock_, OnDidRedeemOptedInConfirmation(_, _)) .Times(0); - EXPECT_CALL(*redeem_confirmation_delegate_mock_, + EXPECT_CALL(redeem_confirmation_delegate_mock_, OnDidRedeemOptedOutConfirmation(_)) .Times(0); - EXPECT_CALL(*redeem_confirmation_delegate_mock_, + EXPECT_CALL(redeem_confirmation_delegate_mock_, OnFailedToRedeemConfirmation(expected_confirmation, /*should_retry*/ false, /*should_backoff*/ false)); diff --git a/components/brave_ads/core/internal/account/utility/redeem_confirmation/redeem_opted_out_confirmation_unittest.cc b/components/brave_ads/core/internal/account/utility/redeem_confirmation/redeem_opted_out_confirmation_unittest.cc index bc2b796afd4b..cef4b3dda6e7 100644 --- a/components/brave_ads/core/internal/account/utility/redeem_confirmation/redeem_opted_out_confirmation_unittest.cc +++ b/components/brave_ads/core/internal/account/utility/redeem_confirmation/redeem_opted_out_confirmation_unittest.cc @@ -5,8 +5,6 @@ #include "brave/components/brave_ads/core/internal/account/utility/redeem_confirmation/redeem_opted_out_confirmation.h" -#include - #include "base/memory/weak_ptr.h" #include "brave/components/brave_ads/common/pref_names.h" #include "brave/components/brave_ads/core/internal/account/confirmations/confirmation_unittest_util.h" @@ -31,12 +29,10 @@ class BatAdsRedeemOptedOutConfirmationTest : public UnitTestBase { AdsClientHelper::GetInstance()->SetBooleanPref(prefs::kEnabled, false); } - std::unique_ptr - redeem_confirmation_delegate_mock_ = - std::make_unique>(); + NiceMock redeem_confirmation_delegate_mock_; + base::WeakPtrFactory - confirmation_delegate_weak_factory_{ - redeem_confirmation_delegate_mock_.get()}; + confirmation_delegate_weak_factory_{&redeem_confirmation_delegate_mock_}; }; TEST_F(BatAdsRedeemOptedOutConfirmationTest, Redeem) { @@ -44,7 +40,7 @@ TEST_F(BatAdsRedeemOptedOutConfirmationTest, Redeem) { const URLResponseMap url_responses = { {// Create confirmation request "/v3/confirmation/8b742869-6e4a-490c-ac31-31b49130098a", - {{net::kHttpImATeapot, R"( + {{net::kHttpImATeapot, /*response_body*/ R"( { "id" : "8b742869-6e4a-490c-ac31-31b49130098a", "createdAt" : "2020-04-20T10:27:11.717Z", @@ -59,14 +55,14 @@ TEST_F(BatAdsRedeemOptedOutConfirmationTest, Redeem) { ASSERT_TRUE(confirmation); // Act - EXPECT_CALL(*redeem_confirmation_delegate_mock_, + EXPECT_CALL(redeem_confirmation_delegate_mock_, OnDidRedeemOptedInConfirmation(_, _)) .Times(0); - EXPECT_CALL(*redeem_confirmation_delegate_mock_, + EXPECT_CALL(redeem_confirmation_delegate_mock_, OnDidRedeemOptedOutConfirmation(*confirmation)); - EXPECT_CALL(*redeem_confirmation_delegate_mock_, + EXPECT_CALL(redeem_confirmation_delegate_mock_, OnFailedToRedeemConfirmation(_, _, _)) .Times(0); @@ -82,23 +78,23 @@ TEST_F(BatAdsRedeemOptedOutConfirmationTest, const URLResponseMap url_responses = { {// Create confirmation request "/v3/confirmation/8b742869-6e4a-490c-ac31-31b49130098a", - {{net::HTTP_BAD_REQUEST, {}}}}}; + {{net::HTTP_BAD_REQUEST, /*response_body*/ {}}}}}; MockUrlResponses(ads_client_mock_, url_responses); const absl::optional confirmation = BuildConfirmation(); ASSERT_TRUE(confirmation); // Act - EXPECT_CALL(*redeem_confirmation_delegate_mock_, + EXPECT_CALL(redeem_confirmation_delegate_mock_, OnDidRedeemOptedInConfirmation(_, _)) .Times(0); - EXPECT_CALL(*redeem_confirmation_delegate_mock_, + EXPECT_CALL(redeem_confirmation_delegate_mock_, OnDidRedeemOptedOutConfirmation(_)) .Times(0); EXPECT_CALL( - *redeem_confirmation_delegate_mock_, + redeem_confirmation_delegate_mock_, OnFailedToRedeemConfirmation(*confirmation, /*should_retry*/ false, /*should_backoff*/ false)); @@ -114,23 +110,23 @@ TEST_F(BatAdsRedeemOptedOutConfirmationTest, const URLResponseMap url_responses = { {// Create confirmation request "/v3/confirmation/8b742869-6e4a-490c-ac31-31b49130098a", - {{net::HTTP_CONFLICT, {}}}}}; + {{net::HTTP_CONFLICT, /*response_body*/ {}}}}}; MockUrlResponses(ads_client_mock_, url_responses); const absl::optional confirmation = BuildConfirmation(); ASSERT_TRUE(confirmation); // Act - EXPECT_CALL(*redeem_confirmation_delegate_mock_, + EXPECT_CALL(redeem_confirmation_delegate_mock_, OnDidRedeemOptedInConfirmation(_, _)) .Times(0); - EXPECT_CALL(*redeem_confirmation_delegate_mock_, + EXPECT_CALL(redeem_confirmation_delegate_mock_, OnDidRedeemOptedOutConfirmation(_)) .Times(0); EXPECT_CALL( - *redeem_confirmation_delegate_mock_, + redeem_confirmation_delegate_mock_, OnFailedToRedeemConfirmation(*confirmation, /*should_retry*/ false, /*should_backoff*/ false)); @@ -146,23 +142,23 @@ TEST_F(BatAdsRedeemOptedOutConfirmationTest, const URLResponseMap url_responses = { {// Create confirmation request "/v3/confirmation/8b742869-6e4a-490c-ac31-31b49130098a", - {{net::HTTP_CREATED, {}}}}}; + {{net::HTTP_CREATED, /*response_body*/ {}}}}}; MockUrlResponses(ads_client_mock_, url_responses); const absl::optional confirmation = BuildConfirmation(); ASSERT_TRUE(confirmation); // Act - EXPECT_CALL(*redeem_confirmation_delegate_mock_, + EXPECT_CALL(redeem_confirmation_delegate_mock_, OnDidRedeemOptedInConfirmation(_, _)) .Times(0); - EXPECT_CALL(*redeem_confirmation_delegate_mock_, + EXPECT_CALL(redeem_confirmation_delegate_mock_, OnDidRedeemOptedOutConfirmation(_)) .Times(0); EXPECT_CALL( - *redeem_confirmation_delegate_mock_, + redeem_confirmation_delegate_mock_, OnFailedToRedeemConfirmation(*confirmation, /*should_retry*/ false, /*should_backoff*/ false)); @@ -177,22 +173,22 @@ TEST_F(BatAdsRedeemOptedOutConfirmationTest, RetryRedeeming) { const URLResponseMap url_responses = { {// Create confirmation request "/v3/confirmation/8b742869-6e4a-490c-ac31-31b49130098a", - {{net::HTTP_INTERNAL_SERVER_ERROR, {}}}}}; + {{net::HTTP_INTERNAL_SERVER_ERROR, /*response_body*/ {}}}}}; MockUrlResponses(ads_client_mock_, url_responses); const absl::optional confirmation = BuildConfirmation(); ASSERT_TRUE(confirmation); // Act - EXPECT_CALL(*redeem_confirmation_delegate_mock_, + EXPECT_CALL(redeem_confirmation_delegate_mock_, OnDidRedeemOptedInConfirmation(_, _)) .Times(0); - EXPECT_CALL(*redeem_confirmation_delegate_mock_, + EXPECT_CALL(redeem_confirmation_delegate_mock_, OnDidRedeemOptedOutConfirmation(_)) .Times(0); - EXPECT_CALL(*redeem_confirmation_delegate_mock_, + EXPECT_CALL(redeem_confirmation_delegate_mock_, OnFailedToRedeemConfirmation(*confirmation, /*should_retry*/ true, /*should_backoff*/ true)); diff --git a/components/brave_ads/core/internal/account/utility/redeem_unblinded_payment_tokens/redeem_unblinded_payment_tokens_unittest.cc b/components/brave_ads/core/internal/account/utility/redeem_unblinded_payment_tokens/redeem_unblinded_payment_tokens_unittest.cc index 602c3b8f38ef..fc8bba11bd16 100644 --- a/components/brave_ads/core/internal/account/utility/redeem_unblinded_payment_tokens/redeem_unblinded_payment_tokens_unittest.cc +++ b/components/brave_ads/core/internal/account/utility/redeem_unblinded_payment_tokens/redeem_unblinded_payment_tokens_unittest.cc @@ -31,17 +31,14 @@ class BatAdsRedeemUnblindedPaymentTokensTest : public UnitTestBase { protected: BatAdsRedeemUnblindedPaymentTokensTest() : redeem_unblinded_payment_tokens_( - std::make_unique()), - redeem_unblinded_payment_tokens_delegate_mock_( - std::make_unique< - NiceMock>()) { + std::make_unique()) { redeem_unblinded_payment_tokens_->SetDelegate( - redeem_unblinded_payment_tokens_delegate_mock_.get()); + &redeem_unblinded_payment_tokens_delegate_mock_); } std::unique_ptr redeem_unblinded_payment_tokens_; - std::unique_ptr + NiceMock redeem_unblinded_payment_tokens_delegate_mock_; }; @@ -49,7 +46,7 @@ TEST_F(BatAdsRedeemUnblindedPaymentTokensTest, RedeemUnblindedPaymentTokens) { // Arrange const URLResponseMap url_responses = { {"/v3/confirmation/payment/27a39b2f-9b2e-4eb0-bbb2-2f84447496e7", - {{net::HTTP_OK, R"( + {{net::HTTP_OK, /*response_body*/ R"( { "payload": "{"paymentId":"27a39b2f-9b2e-4eb0-bbb2-2f84447496e7"}", "paymentCredentials": [ @@ -73,21 +70,21 @@ TEST_F(BatAdsRedeemUnblindedPaymentTokensTest, RedeemUnblindedPaymentTokens) { privacy::GetUnblindedPaymentTokens()->SetTokens(unblinded_payment_tokens); // Act - EXPECT_CALL(*redeem_unblinded_payment_tokens_delegate_mock_, + EXPECT_CALL(redeem_unblinded_payment_tokens_delegate_mock_, OnDidRedeemUnblindedPaymentTokens(_)); - EXPECT_CALL(*redeem_unblinded_payment_tokens_delegate_mock_, + EXPECT_CALL(redeem_unblinded_payment_tokens_delegate_mock_, OnFailedToRedeemUnblindedPaymentTokens()) .Times(0); - EXPECT_CALL(*redeem_unblinded_payment_tokens_delegate_mock_, + EXPECT_CALL(redeem_unblinded_payment_tokens_delegate_mock_, OnDidScheduleNextUnblindedPaymentTokensRedemption(_)); - EXPECT_CALL(*redeem_unblinded_payment_tokens_delegate_mock_, + EXPECT_CALL(redeem_unblinded_payment_tokens_delegate_mock_, OnWillRetryRedeemingUnblindedPaymentTokens(_)) .Times(0); - EXPECT_CALL(*redeem_unblinded_payment_tokens_delegate_mock_, + EXPECT_CALL(redeem_unblinded_payment_tokens_delegate_mock_, OnDidRetryRedeemingUnblindedPaymentTokens()) .Times(0); @@ -105,7 +102,7 @@ TEST_F(BatAdsRedeemUnblindedPaymentTokensTest, // Arrange const URLResponseMap url_responses = { {"/v3/confirmation/payment/27a39b2f-9b2e-4eb0-bbb2-2f84447496e7", - {{net::HTTP_OK, R"( + {{net::HTTP_OK, /*response_body*/ R"( { "payload": "{"paymentId":"27a39b2f-9b2e-4eb0-bbb2-2f84447496e7"}", "paymentCredentials": [ @@ -119,7 +116,7 @@ TEST_F(BatAdsRedeemUnblindedPaymentTokensTest, ] } )"}, - {net::HTTP_OK, R"( + {net::HTTP_OK, /*response_body*/ R"( { "payload": "{"paymentId":"27a39b2f-9b2e-4eb0-bbb2-2f84447496e7"}", "paymentCredentials": [ @@ -143,23 +140,23 @@ TEST_F(BatAdsRedeemUnblindedPaymentTokensTest, privacy::GetUnblindedPaymentTokens()->SetTokens(unblinded_payment_tokens); // Act - EXPECT_CALL(*redeem_unblinded_payment_tokens_delegate_mock_, + EXPECT_CALL(redeem_unblinded_payment_tokens_delegate_mock_, OnDidRedeemUnblindedPaymentTokens(_)) .Times(0); - EXPECT_CALL(*redeem_unblinded_payment_tokens_delegate_mock_, + EXPECT_CALL(redeem_unblinded_payment_tokens_delegate_mock_, OnFailedToRedeemUnblindedPaymentTokens()) .Times(0); - EXPECT_CALL(*redeem_unblinded_payment_tokens_delegate_mock_, + EXPECT_CALL(redeem_unblinded_payment_tokens_delegate_mock_, OnDidScheduleNextUnblindedPaymentTokensRedemption(_)) .Times(0); - EXPECT_CALL(*redeem_unblinded_payment_tokens_delegate_mock_, + EXPECT_CALL(redeem_unblinded_payment_tokens_delegate_mock_, OnWillRetryRedeemingUnblindedPaymentTokens(_)) .Times(0); - EXPECT_CALL(*redeem_unblinded_payment_tokens_delegate_mock_, + EXPECT_CALL(redeem_unblinded_payment_tokens_delegate_mock_, OnDidRetryRedeemingUnblindedPaymentTokens()) .Times(0); @@ -175,7 +172,7 @@ TEST_F(BatAdsRedeemUnblindedPaymentTokensTest, ScheduleNextTokenRedemption) { // Arrange const URLResponseMap url_responses = { {"/v3/confirmation/payment/27a39b2f-9b2e-4eb0-bbb2-2f84447496e7", - {{net::HTTP_OK, R"( + {{net::HTTP_OK, /*response_body*/ R"( { "payload": "{"paymentId":"27a39b2f-9b2e-4eb0-bbb2-2f84447496e7"}", "paymentCredentials": [ @@ -199,21 +196,21 @@ TEST_F(BatAdsRedeemUnblindedPaymentTokensTest, ScheduleNextTokenRedemption) { privacy::GetUnblindedPaymentTokens()->SetTokens(unblinded_payment_tokens); // Act - EXPECT_CALL(*redeem_unblinded_payment_tokens_delegate_mock_, + EXPECT_CALL(redeem_unblinded_payment_tokens_delegate_mock_, OnDidRedeemUnblindedPaymentTokens(_)); - EXPECT_CALL(*redeem_unblinded_payment_tokens_delegate_mock_, + EXPECT_CALL(redeem_unblinded_payment_tokens_delegate_mock_, OnFailedToRedeemUnblindedPaymentTokens()) .Times(0); - EXPECT_CALL(*redeem_unblinded_payment_tokens_delegate_mock_, + EXPECT_CALL(redeem_unblinded_payment_tokens_delegate_mock_, OnDidScheduleNextUnblindedPaymentTokensRedemption(_)); - EXPECT_CALL(*redeem_unblinded_payment_tokens_delegate_mock_, + EXPECT_CALL(redeem_unblinded_payment_tokens_delegate_mock_, OnWillRetryRedeemingUnblindedPaymentTokens(_)) .Times(0); - EXPECT_CALL(*redeem_unblinded_payment_tokens_delegate_mock_, + EXPECT_CALL(redeem_unblinded_payment_tokens_delegate_mock_, OnDidRetryRedeemingUnblindedPaymentTokens()) .Times(0); @@ -230,7 +227,7 @@ TEST_F(BatAdsRedeemUnblindedPaymentTokensTest, InvalidWallet) { // Arrange const URLResponseMap url_responses = { {"/v3/confirmation/payment/27a39b2f-9b2e-4eb0-bbb2-2f84447496e7", - {{net::HTTP_OK, R"( + {{net::HTTP_OK, /*response_body*/ R"( { "payload": "{"paymentId":"27a39b2f-9b2e-4eb0-bbb2-2f84447496e7"}", "paymentCredentials": [ @@ -256,22 +253,22 @@ TEST_F(BatAdsRedeemUnblindedPaymentTokensTest, InvalidWallet) { // Act const InSequence seq; - EXPECT_CALL(*redeem_unblinded_payment_tokens_delegate_mock_, + EXPECT_CALL(redeem_unblinded_payment_tokens_delegate_mock_, OnFailedToRedeemUnblindedPaymentTokens()); - EXPECT_CALL(*redeem_unblinded_payment_tokens_delegate_mock_, + EXPECT_CALL(redeem_unblinded_payment_tokens_delegate_mock_, OnWillRetryRedeemingUnblindedPaymentTokens(_)) .Times(0); - EXPECT_CALL(*redeem_unblinded_payment_tokens_delegate_mock_, + EXPECT_CALL(redeem_unblinded_payment_tokens_delegate_mock_, OnDidRetryRedeemingUnblindedPaymentTokens()) .Times(0); - EXPECT_CALL(*redeem_unblinded_payment_tokens_delegate_mock_, + EXPECT_CALL(redeem_unblinded_payment_tokens_delegate_mock_, OnDidRedeemUnblindedPaymentTokens(_)) .Times(0); - EXPECT_CALL(*redeem_unblinded_payment_tokens_delegate_mock_, + EXPECT_CALL(redeem_unblinded_payment_tokens_delegate_mock_, OnDidScheduleNextUnblindedPaymentTokensRedemption(_)) .Times(0); @@ -285,7 +282,7 @@ TEST_F(BatAdsRedeemUnblindedPaymentTokensTest, NoUnblindedPaymentTokens) { // Arrange const URLResponseMap url_responses = { {"/v3/confirmation/payment/27a39b2f-9b2e-4eb0-bbb2-2f84447496e7", - {{net::HTTP_OK, R"( + {{net::HTTP_OK, /*response_body*/ R"( { "payload": "{"paymentId":"27a39b2f-9b2e-4eb0-bbb2-2f84447496e7"}", "paymentCredentials": [ @@ -305,22 +302,22 @@ TEST_F(BatAdsRedeemUnblindedPaymentTokensTest, NoUnblindedPaymentTokens) { Now()); // Act - EXPECT_CALL(*redeem_unblinded_payment_tokens_delegate_mock_, + EXPECT_CALL(redeem_unblinded_payment_tokens_delegate_mock_, OnDidRedeemUnblindedPaymentTokens(_)) .Times(0); - EXPECT_CALL(*redeem_unblinded_payment_tokens_delegate_mock_, + EXPECT_CALL(redeem_unblinded_payment_tokens_delegate_mock_, OnFailedToRedeemUnblindedPaymentTokens()) .Times(0); - EXPECT_CALL(*redeem_unblinded_payment_tokens_delegate_mock_, + EXPECT_CALL(redeem_unblinded_payment_tokens_delegate_mock_, OnDidScheduleNextUnblindedPaymentTokensRedemption(_)); - EXPECT_CALL(*redeem_unblinded_payment_tokens_delegate_mock_, + EXPECT_CALL(redeem_unblinded_payment_tokens_delegate_mock_, OnWillRetryRedeemingUnblindedPaymentTokens(_)) .Times(0); - EXPECT_CALL(*redeem_unblinded_payment_tokens_delegate_mock_, + EXPECT_CALL(redeem_unblinded_payment_tokens_delegate_mock_, OnDidRetryRedeemingUnblindedPaymentTokens()) .Times(0); @@ -337,7 +334,8 @@ TEST_F(BatAdsRedeemUnblindedPaymentTokensTest, Retry) { // Arrange const URLResponseMap url_responses = { {"/v3/confirmation/payment/27a39b2f-9b2e-4eb0-bbb2-2f84447496e7", - {{net::HTTP_NOT_FOUND, {}}, {net::HTTP_OK, R"( + {{net::HTTP_NOT_FOUND, /*response_body*/ {}}, + {net::HTTP_OK, /*response_body*/ R"( { "payload": "{"paymentId":"27a39b2f-9b2e-4eb0-bbb2-2f84447496e7"}", "paymentCredentials": [ @@ -363,19 +361,19 @@ TEST_F(BatAdsRedeemUnblindedPaymentTokensTest, Retry) { // Act const InSequence seq; - EXPECT_CALL(*redeem_unblinded_payment_tokens_delegate_mock_, + EXPECT_CALL(redeem_unblinded_payment_tokens_delegate_mock_, OnFailedToRedeemUnblindedPaymentTokens()); - EXPECT_CALL(*redeem_unblinded_payment_tokens_delegate_mock_, + EXPECT_CALL(redeem_unblinded_payment_tokens_delegate_mock_, OnWillRetryRedeemingUnblindedPaymentTokens(_)); - EXPECT_CALL(*redeem_unblinded_payment_tokens_delegate_mock_, + EXPECT_CALL(redeem_unblinded_payment_tokens_delegate_mock_, OnDidRetryRedeemingUnblindedPaymentTokens()); - EXPECT_CALL(*redeem_unblinded_payment_tokens_delegate_mock_, + EXPECT_CALL(redeem_unblinded_payment_tokens_delegate_mock_, OnDidRedeemUnblindedPaymentTokens(_)); - EXPECT_CALL(*redeem_unblinded_payment_tokens_delegate_mock_, + EXPECT_CALL(redeem_unblinded_payment_tokens_delegate_mock_, OnDidScheduleNextUnblindedPaymentTokensRedemption(_)); const WalletInfo wallet = GetWalletForTesting(); diff --git a/components/brave_ads/core/internal/account/utility/refill_unblinded_tokens/refill_unblinded_tokens_unittest.cc b/components/brave_ads/core/internal/account/utility/refill_unblinded_tokens/refill_unblinded_tokens_unittest.cc index dd19578d4412..062125013559 100644 --- a/components/brave_ads/core/internal/account/utility/refill_unblinded_tokens/refill_unblinded_tokens_unittest.cc +++ b/components/brave_ads/core/internal/account/utility/refill_unblinded_tokens/refill_unblinded_tokens_unittest.cc @@ -52,7 +52,7 @@ std::vector GetTokens() { URLResponseMap GetValidUrlResonses() { return {{// Request signed tokens "/v3/confirmation/token/27a39b2f-9b2e-4eb0-bbb2-2f84447496e7", - {{net::HTTP_CREATED, R"( + {{net::HTTP_CREATED, /*response_body*/ R"( { "nonce": "2f0e2891-e7a5-4262-835b-550b13e58e5c" } @@ -61,7 +61,7 @@ URLResponseMap GetValidUrlResonses() { "/v3/confirmation/token/" "27a39b2f-9b2e-4eb0-bbb2-2f84447496e7?nonce=2f0e2891-e7a5-4262-835b-" "550b13e58e5c", - {{net::HTTP_OK, R"( + {{net::HTTP_OK, /*response_body*/ R"( { "batchProof": "BnqmsPk3PsQXVhcCE8YALSE8O+LVqOWabzCuyCTSgQjwAb3iAKrqDV3/zWKdU5TRoqzr32pyPyaS3xFI2iVmAw==", "signedTokens": [ @@ -128,19 +128,15 @@ class BatAdsRefillUnblindedTokensTest : public UnitTestBase { void SetUp() override { UnitTestBase::SetUp(); - token_generator_mock_ = - std::make_unique>(); refill_unblinded_tokens_ = - std::make_unique(token_generator_mock_.get()); - refill_unblinded_tokens_delegate_mock_ = - std::make_unique>(); + std::make_unique(&token_generator_mock_); refill_unblinded_tokens_->SetDelegate( - refill_unblinded_tokens_delegate_mock_.get()); + &refill_unblinded_tokens_delegate_mock_); } - std::unique_ptr token_generator_mock_; + NiceMock token_generator_mock_; std::unique_ptr refill_unblinded_tokens_; - std::unique_ptr + NiceMock refill_unblinded_tokens_delegate_mock_; }; @@ -150,23 +146,23 @@ TEST_F(BatAdsRefillUnblindedTokensTest, RefillUnblindedTokens) { MockUrlResponses(ads_client_mock_, url_responses); const std::vector tokens = GetTokens(); - ON_CALL(*token_generator_mock_, Generate(_)).WillByDefault(Return(tokens)); + ON_CALL(token_generator_mock_, Generate(_)).WillByDefault(Return(tokens)); BuildAndSetIssuers(); // Act - EXPECT_CALL(*refill_unblinded_tokens_delegate_mock_, + EXPECT_CALL(refill_unblinded_tokens_delegate_mock_, OnDidRefillUnblindedTokens()); - EXPECT_CALL(*refill_unblinded_tokens_delegate_mock_, + EXPECT_CALL(refill_unblinded_tokens_delegate_mock_, OnFailedToRefillUnblindedTokens()) .Times(0); - EXPECT_CALL(*refill_unblinded_tokens_delegate_mock_, + EXPECT_CALL(refill_unblinded_tokens_delegate_mock_, OnWillRetryRefillingUnblindedTokens(_)) .Times(0); - EXPECT_CALL(*refill_unblinded_tokens_delegate_mock_, + EXPECT_CALL(refill_unblinded_tokens_delegate_mock_, OnDidRetryRefillingUnblindedTokens()) .Times(0); @@ -182,7 +178,7 @@ TEST_F(BatAdsRefillUnblindedTokensTest, RefillUnblindedTokensCaptchaRequired) { const URLResponseMap url_responses = { {// Request signed tokens "/v3/confirmation/token/27a39b2f-9b2e-4eb0-bbb2-2f84447496e7", - {{net::HTTP_CREATED, R"( + {{net::HTTP_CREATED, /*response_body*/ R"( { "nonce": "2f0e2891-e7a5-4262-835b-550b13e58e5c" } @@ -191,7 +187,7 @@ TEST_F(BatAdsRefillUnblindedTokensTest, RefillUnblindedTokensCaptchaRequired) { "/v3/confirmation/token/" "27a39b2f-9b2e-4eb0-bbb2-2f84447496e7?nonce=2f0e2891-e7a5-4262-835b-" "550b13e58e5c", - {{net::HTTP_UNAUTHORIZED, R"( + {{net::HTTP_UNAUTHORIZED, /*response_body*/ R"( { "captcha_id": "captcha-id" } @@ -199,28 +195,28 @@ TEST_F(BatAdsRefillUnblindedTokensTest, RefillUnblindedTokensCaptchaRequired) { MockUrlResponses(ads_client_mock_, url_responses); const std::vector tokens = GetTokens(); - ON_CALL(*token_generator_mock_, Generate(_)).WillByDefault(Return(tokens)); + ON_CALL(token_generator_mock_, Generate(_)).WillByDefault(Return(tokens)); BuildAndSetIssuers(); // Act - EXPECT_CALL(*refill_unblinded_tokens_delegate_mock_, + EXPECT_CALL(refill_unblinded_tokens_delegate_mock_, OnDidRefillUnblindedTokens()) .Times(0); - EXPECT_CALL(*refill_unblinded_tokens_delegate_mock_, + EXPECT_CALL(refill_unblinded_tokens_delegate_mock_, OnFailedToRefillUnblindedTokens()) .Times(0); - EXPECT_CALL(*refill_unblinded_tokens_delegate_mock_, + EXPECT_CALL(refill_unblinded_tokens_delegate_mock_, OnWillRetryRefillingUnblindedTokens(_)) .Times(0); - EXPECT_CALL(*refill_unblinded_tokens_delegate_mock_, + EXPECT_CALL(refill_unblinded_tokens_delegate_mock_, OnDidRetryRefillingUnblindedTokens()) .Times(0); - EXPECT_CALL(*refill_unblinded_tokens_delegate_mock_, + EXPECT_CALL(refill_unblinded_tokens_delegate_mock_, OnCaptchaRequiredToRefillUnblindedTokens("captcha-id")); const WalletInfo wallet = GetWalletForTesting(); @@ -236,7 +232,7 @@ TEST_F(BatAdsRefillUnblindedTokensTest, IssuersPublicKeyMismatch) { MockUrlResponses(ads_client_mock_, url_responses); const std::vector tokens = GetTokens(); - ON_CALL(*token_generator_mock_, Generate(_)).WillByDefault(Return(tokens)); + ON_CALL(token_generator_mock_, Generate(_)).WillByDefault(Return(tokens)); const IssuersInfo issuers = BuildIssuers(7'200'000, @@ -248,18 +244,18 @@ TEST_F(BatAdsRefillUnblindedTokensTest, IssuersPublicKeyMismatch) { SetIssuers(issuers); // Act - EXPECT_CALL(*refill_unblinded_tokens_delegate_mock_, + EXPECT_CALL(refill_unblinded_tokens_delegate_mock_, OnDidRefillUnblindedTokens()) .Times(0); - EXPECT_CALL(*refill_unblinded_tokens_delegate_mock_, + EXPECT_CALL(refill_unblinded_tokens_delegate_mock_, OnFailedToRefillUnblindedTokens()); - EXPECT_CALL(*refill_unblinded_tokens_delegate_mock_, + EXPECT_CALL(refill_unblinded_tokens_delegate_mock_, OnWillRetryRefillingUnblindedTokens(_)) .Times(0); - EXPECT_CALL(*refill_unblinded_tokens_delegate_mock_, + EXPECT_CALL(refill_unblinded_tokens_delegate_mock_, OnDidRetryRefillingUnblindedTokens()) .Times(0); @@ -274,18 +270,18 @@ TEST_F(BatAdsRefillUnblindedTokensTest, InvalidIssuersFormat) { // Arrange // Act - EXPECT_CALL(*refill_unblinded_tokens_delegate_mock_, + EXPECT_CALL(refill_unblinded_tokens_delegate_mock_, OnDidRefillUnblindedTokens()) .Times(0); - EXPECT_CALL(*refill_unblinded_tokens_delegate_mock_, + EXPECT_CALL(refill_unblinded_tokens_delegate_mock_, OnFailedToRefillUnblindedTokens()); - EXPECT_CALL(*refill_unblinded_tokens_delegate_mock_, + EXPECT_CALL(refill_unblinded_tokens_delegate_mock_, OnWillRetryRefillingUnblindedTokens(_)) .Times(0); - EXPECT_CALL(*refill_unblinded_tokens_delegate_mock_, + EXPECT_CALL(refill_unblinded_tokens_delegate_mock_, OnDidRetryRefillingUnblindedTokens()) .Times(0); @@ -300,18 +296,18 @@ TEST_F(BatAdsRefillUnblindedTokensTest, InvalidWallet) { // Arrange // Act - EXPECT_CALL(*refill_unblinded_tokens_delegate_mock_, + EXPECT_CALL(refill_unblinded_tokens_delegate_mock_, OnDidRefillUnblindedTokens()) .Times(0); - EXPECT_CALL(*refill_unblinded_tokens_delegate_mock_, + EXPECT_CALL(refill_unblinded_tokens_delegate_mock_, OnFailedToRefillUnblindedTokens()); - EXPECT_CALL(*refill_unblinded_tokens_delegate_mock_, + EXPECT_CALL(refill_unblinded_tokens_delegate_mock_, OnWillRetryRefillingUnblindedTokens(_)) .Times(0); - EXPECT_CALL(*refill_unblinded_tokens_delegate_mock_, + EXPECT_CALL(refill_unblinded_tokens_delegate_mock_, OnDidRetryRefillingUnblindedTokens()) .Times(0); @@ -327,7 +323,8 @@ TEST_F(BatAdsRefillUnblindedTokensTest, const URLResponseMap url_responses = { {// Request signed tokens "/v3/confirmation/token/27a39b2f-9b2e-4eb0-bbb2-2f84447496e7", - {{net::HTTP_INTERNAL_SERVER_ERROR, {}}, {net::HTTP_CREATED, R"( + {{net::HTTP_INTERNAL_SERVER_ERROR, /*response_body*/ {}}, + {net::HTTP_CREATED, /*response_body*/ R"( { "nonce": "2f0e2891-e7a5-4262-835b-550b13e58e5c" } @@ -336,7 +333,7 @@ TEST_F(BatAdsRefillUnblindedTokensTest, "/v3/confirmation/token/" "27a39b2f-9b2e-4eb0-bbb2-2f84447496e7?nonce=2f0e2891-e7a5-4262-835b-" "550b13e58e5c", - {{net::HTTP_OK, R"( + {{net::HTTP_OK, /*response_body*/ R"( { "batchProof": "BnqmsPk3PsQXVhcCE8YALSE8O+LVqOWabzCuyCTSgQjwAb3iAKrqDV3/zWKdU5TRoqzr32pyPyaS3xFI2iVmAw==", "signedTokens": [ @@ -397,23 +394,23 @@ TEST_F(BatAdsRefillUnblindedTokensTest, MockUrlResponses(ads_client_mock_, url_responses); const std::vector tokens = GetTokens(); - ON_CALL(*token_generator_mock_, Generate(_)).WillByDefault(Return(tokens)); + ON_CALL(token_generator_mock_, Generate(_)).WillByDefault(Return(tokens)); BuildAndSetIssuers(); // Act const InSequence seq; - EXPECT_CALL(*refill_unblinded_tokens_delegate_mock_, + EXPECT_CALL(refill_unblinded_tokens_delegate_mock_, OnFailedToRefillUnblindedTokens()); - EXPECT_CALL(*refill_unblinded_tokens_delegate_mock_, + EXPECT_CALL(refill_unblinded_tokens_delegate_mock_, OnWillRetryRefillingUnblindedTokens(_)); - EXPECT_CALL(*refill_unblinded_tokens_delegate_mock_, + EXPECT_CALL(refill_unblinded_tokens_delegate_mock_, OnDidRetryRefillingUnblindedTokens()); - EXPECT_CALL(*refill_unblinded_tokens_delegate_mock_, + EXPECT_CALL(refill_unblinded_tokens_delegate_mock_, OnDidRefillUnblindedTokens()); const WalletInfo wallet = GetWalletForTesting(); @@ -429,27 +426,27 @@ TEST_F(BatAdsRefillUnblindedTokensTest, RequestSignedTokensMissingNonce) { // Arrange const URLResponseMap url_responses = { {"/v3/confirmation/token/27a39b2f-9b2e-4eb0-bbb2-2f84447496e7", - {{net::HTTP_CREATED, {}}}}}; + {{net::HTTP_CREATED, /*response_body*/ {}}}}}; MockUrlResponses(ads_client_mock_, url_responses); const std::vector tokens = GetTokens(); - ON_CALL(*token_generator_mock_, Generate(_)).WillByDefault(Return(tokens)); + ON_CALL(token_generator_mock_, Generate(_)).WillByDefault(Return(tokens)); BuildAndSetIssuers(); // Act - EXPECT_CALL(*refill_unblinded_tokens_delegate_mock_, + EXPECT_CALL(refill_unblinded_tokens_delegate_mock_, OnDidRefillUnblindedTokens()) .Times(0); - EXPECT_CALL(*refill_unblinded_tokens_delegate_mock_, + EXPECT_CALL(refill_unblinded_tokens_delegate_mock_, OnFailedToRefillUnblindedTokens()); - EXPECT_CALL(*refill_unblinded_tokens_delegate_mock_, + EXPECT_CALL(refill_unblinded_tokens_delegate_mock_, OnWillRetryRefillingUnblindedTokens(_)) .Times(0); - EXPECT_CALL(*refill_unblinded_tokens_delegate_mock_, + EXPECT_CALL(refill_unblinded_tokens_delegate_mock_, OnDidRetryRefillingUnblindedTokens()) .Times(0); @@ -466,12 +463,12 @@ TEST_F(BatAdsRefillUnblindedTokensTest, const URLResponseMap url_responses = { {// Request signed tokens "/v3/confirmation/token/27a39b2f-9b2e-4eb0-bbb2-2f84447496e7", - {{net::HTTP_CREATED, R"( + {{net::HTTP_CREATED, /*response_body*/ R"( { "nonce": "2f0e2891-e7a5-4262-835b-550b13e58e5c" } )"}, - {net::HTTP_CREATED, R"( + {net::HTTP_CREATED, /*response_body*/ R"( { "nonce": "2f0e2891-e7a5-4262-835b-550b13e58e5c" } @@ -480,7 +477,8 @@ TEST_F(BatAdsRefillUnblindedTokensTest, "/v3/confirmation/token/" "27a39b2f-9b2e-4eb0-bbb2-2f84447496e7?nonce=2f0e2891-e7a5-4262-835b-" "550b13e58e5c", - {{net::HTTP_INTERNAL_SERVER_ERROR, {}}, {net::HTTP_OK, R"( + {{net::HTTP_INTERNAL_SERVER_ERROR, /*response_body*/ {}}, + {net::HTTP_OK, /*response_body*/ R"( { "batchProof": "BnqmsPk3PsQXVhcCE8YALSE8O+LVqOWabzCuyCTSgQjwAb3iAKrqDV3/zWKdU5TRoqzr32pyPyaS3xFI2iVmAw==", "signedTokens": [ @@ -541,23 +539,23 @@ TEST_F(BatAdsRefillUnblindedTokensTest, MockUrlResponses(ads_client_mock_, url_responses); const std::vector tokens = GetTokens(); - ON_CALL(*token_generator_mock_, Generate(_)).WillByDefault(Return(tokens)); + ON_CALL(token_generator_mock_, Generate(_)).WillByDefault(Return(tokens)); BuildAndSetIssuers(); // Act const InSequence seq; - EXPECT_CALL(*refill_unblinded_tokens_delegate_mock_, + EXPECT_CALL(refill_unblinded_tokens_delegate_mock_, OnFailedToRefillUnblindedTokens()); - EXPECT_CALL(*refill_unblinded_tokens_delegate_mock_, + EXPECT_CALL(refill_unblinded_tokens_delegate_mock_, OnWillRetryRefillingUnblindedTokens(_)); - EXPECT_CALL(*refill_unblinded_tokens_delegate_mock_, + EXPECT_CALL(refill_unblinded_tokens_delegate_mock_, OnDidRetryRefillingUnblindedTokens()); - EXPECT_CALL(*refill_unblinded_tokens_delegate_mock_, + EXPECT_CALL(refill_unblinded_tokens_delegate_mock_, OnDidRefillUnblindedTokens()); const WalletInfo wallet = GetWalletForTesting(); @@ -574,7 +572,7 @@ TEST_F(BatAdsRefillUnblindedTokensTest, GetSignedTokensInvalidResponse) { const URLResponseMap url_responses = { {// Request signed tokens "/v3/confirmation/token/27a39b2f-9b2e-4eb0-bbb2-2f84447496e7", - {{net::HTTP_CREATED, R"( + {{net::HTTP_CREATED, /*response_body*/ R"( { "nonce": "2f0e2891-e7a5-4262-835b-550b13e58e5c" } @@ -583,27 +581,27 @@ TEST_F(BatAdsRefillUnblindedTokensTest, GetSignedTokensInvalidResponse) { "/v3/confirmation/token/" "27a39b2f-9b2e-4eb0-bbb2-2f84447496e7?nonce=2f0e2891-e7a5-4262-835b-" "550b13e58e5c", - {{net::HTTP_OK, "invalid_json"}}}}; + {{net::HTTP_OK, /*response_body*/ "invalid_json"}}}}; MockUrlResponses(ads_client_mock_, url_responses); const std::vector tokens = GetTokens(); - ON_CALL(*token_generator_mock_, Generate(_)).WillByDefault(Return(tokens)); + ON_CALL(token_generator_mock_, Generate(_)).WillByDefault(Return(tokens)); BuildAndSetIssuers(); // Act - EXPECT_CALL(*refill_unblinded_tokens_delegate_mock_, + EXPECT_CALL(refill_unblinded_tokens_delegate_mock_, OnDidRefillUnblindedTokens()) .Times(0); - EXPECT_CALL(*refill_unblinded_tokens_delegate_mock_, + EXPECT_CALL(refill_unblinded_tokens_delegate_mock_, OnFailedToRefillUnblindedTokens()); - EXPECT_CALL(*refill_unblinded_tokens_delegate_mock_, + EXPECT_CALL(refill_unblinded_tokens_delegate_mock_, OnWillRetryRefillingUnblindedTokens(_)) .Times(0); - EXPECT_CALL(*refill_unblinded_tokens_delegate_mock_, + EXPECT_CALL(refill_unblinded_tokens_delegate_mock_, OnDidRetryRefillingUnblindedTokens()) .Times(0); @@ -619,7 +617,7 @@ TEST_F(BatAdsRefillUnblindedTokensTest, GetSignedTokensMissingPublicKey) { const URLResponseMap url_responses = { {// Request signed tokens "/v3/confirmation/token/27a39b2f-9b2e-4eb0-bbb2-2f84447496e7", - {{net::HTTP_CREATED, R"( + {{net::HTTP_CREATED, /*response_body*/ R"( { "nonce": "2f0e2891-e7a5-4262-835b-550b13e58e5c" } @@ -628,7 +626,7 @@ TEST_F(BatAdsRefillUnblindedTokensTest, GetSignedTokensMissingPublicKey) { "/v3/confirmation/token/" "27a39b2f-9b2e-4eb0-bbb2-2f84447496e7?nonce=2f0e2891-e7a5-4262-835b-" "550b13e58e5c", - {{net::HTTP_OK, R"( + {{net::HTTP_OK, /*response_body*/ R"( { "batchProof": "BnqmsPk3PsQXVhcCE8YALSE8O+LVqOWabzCuyCTSgQjwAb3iAKrqDV3/zWKdU5TRoqzr32pyPyaS3xFI2iVmAw==", "signedTokens": [ @@ -688,23 +686,23 @@ TEST_F(BatAdsRefillUnblindedTokensTest, GetSignedTokensMissingPublicKey) { MockUrlResponses(ads_client_mock_, url_responses); const std::vector tokens = GetTokens(); - ON_CALL(*token_generator_mock_, Generate(_)).WillByDefault(Return(tokens)); + ON_CALL(token_generator_mock_, Generate(_)).WillByDefault(Return(tokens)); BuildAndSetIssuers(); // Act - EXPECT_CALL(*refill_unblinded_tokens_delegate_mock_, + EXPECT_CALL(refill_unblinded_tokens_delegate_mock_, OnDidRefillUnblindedTokens()) .Times(0); - EXPECT_CALL(*refill_unblinded_tokens_delegate_mock_, + EXPECT_CALL(refill_unblinded_tokens_delegate_mock_, OnFailedToRefillUnblindedTokens()); - EXPECT_CALL(*refill_unblinded_tokens_delegate_mock_, + EXPECT_CALL(refill_unblinded_tokens_delegate_mock_, OnWillRetryRefillingUnblindedTokens(_)) .Times(0); - EXPECT_CALL(*refill_unblinded_tokens_delegate_mock_, + EXPECT_CALL(refill_unblinded_tokens_delegate_mock_, OnDidRetryRefillingUnblindedTokens()) .Times(0); @@ -720,7 +718,7 @@ TEST_F(BatAdsRefillUnblindedTokensTest, GetSignedTokensMissingBatchProofDleq) { const URLResponseMap url_responses = { {// Request signed tokens "/v3/confirmation/token/27a39b2f-9b2e-4eb0-bbb2-2f84447496e7", - {{net::HTTP_CREATED, R"( + {{net::HTTP_CREATED, /*response_body*/ R"( { "nonce": "2f0e2891-e7a5-4262-835b-550b13e58e5c" } @@ -729,7 +727,7 @@ TEST_F(BatAdsRefillUnblindedTokensTest, GetSignedTokensMissingBatchProofDleq) { "/v3/confirmation/token/" "27a39b2f-9b2e-4eb0-bbb2-2f84447496e7?nonce=2f0e2891-e7a5-4262-835b-" "550b13e58e5c", - {{net::HTTP_OK, R"( + {{net::HTTP_OK, /*response_body*/ R"( { "signedTokens": [ "fD5YfqudgGrfn+oHpwPsF7COcPrCTLsYX70wa+EE+gg=", @@ -789,23 +787,23 @@ TEST_F(BatAdsRefillUnblindedTokensTest, GetSignedTokensMissingBatchProofDleq) { MockUrlResponses(ads_client_mock_, url_responses); const std::vector tokens = GetTokens(); - ON_CALL(*token_generator_mock_, Generate(_)).WillByDefault(Return(tokens)); + ON_CALL(token_generator_mock_, Generate(_)).WillByDefault(Return(tokens)); BuildAndSetIssuers(); // Act - EXPECT_CALL(*refill_unblinded_tokens_delegate_mock_, + EXPECT_CALL(refill_unblinded_tokens_delegate_mock_, OnDidRefillUnblindedTokens()) .Times(0); - EXPECT_CALL(*refill_unblinded_tokens_delegate_mock_, + EXPECT_CALL(refill_unblinded_tokens_delegate_mock_, OnFailedToRefillUnblindedTokens()); - EXPECT_CALL(*refill_unblinded_tokens_delegate_mock_, + EXPECT_CALL(refill_unblinded_tokens_delegate_mock_, OnWillRetryRefillingUnblindedTokens(_)) .Times(0); - EXPECT_CALL(*refill_unblinded_tokens_delegate_mock_, + EXPECT_CALL(refill_unblinded_tokens_delegate_mock_, OnDidRetryRefillingUnblindedTokens()) .Times(0); @@ -821,7 +819,7 @@ TEST_F(BatAdsRefillUnblindedTokensTest, GetSignedTokensMissingSignedTokens) { const URLResponseMap url_responses = { {// Request signed tokens "/v3/confirmation/token/27a39b2f-9b2e-4eb0-bbb2-2f84447496e7", - {{net::HTTP_CREATED, R"( + {{net::HTTP_CREATED, /*response_body*/ R"( { "nonce": "2f0e2891-e7a5-4262-835b-550b13e58e5c" } @@ -830,7 +828,7 @@ TEST_F(BatAdsRefillUnblindedTokensTest, GetSignedTokensMissingSignedTokens) { "/v3/confirmation/token/" "27a39b2f-9b2e-4eb0-bbb2-2f84447496e7?nonce=2f0e2891-e7a5-4262-835b-" "550b13e58e5c", - {{net::HTTP_OK, R"( + {{net::HTTP_OK, /*response_body*/ R"( { "batchProof": "BnqmsPk3PsQXVhcCE8YALSE8O+LVqOWabzCuyCTSgQjwAb3iAKrqDV3/zWKdU5TRoqzr32pyPyaS3xFI2iVmAw==", "publicKey": "crDVI1R6xHQZ4D9cQu4muVM5MaaM1QcOT4It8Y/CYlw=" @@ -839,23 +837,23 @@ TEST_F(BatAdsRefillUnblindedTokensTest, GetSignedTokensMissingSignedTokens) { MockUrlResponses(ads_client_mock_, url_responses); const std::vector tokens = GetTokens(); - ON_CALL(*token_generator_mock_, Generate(_)).WillByDefault(Return(tokens)); + ON_CALL(token_generator_mock_, Generate(_)).WillByDefault(Return(tokens)); BuildAndSetIssuers(); // Act - EXPECT_CALL(*refill_unblinded_tokens_delegate_mock_, + EXPECT_CALL(refill_unblinded_tokens_delegate_mock_, OnDidRefillUnblindedTokens()) .Times(0); - EXPECT_CALL(*refill_unblinded_tokens_delegate_mock_, + EXPECT_CALL(refill_unblinded_tokens_delegate_mock_, OnFailedToRefillUnblindedTokens()); - EXPECT_CALL(*refill_unblinded_tokens_delegate_mock_, + EXPECT_CALL(refill_unblinded_tokens_delegate_mock_, OnWillRetryRefillingUnblindedTokens(_)) .Times(0); - EXPECT_CALL(*refill_unblinded_tokens_delegate_mock_, + EXPECT_CALL(refill_unblinded_tokens_delegate_mock_, OnDidRetryRefillingUnblindedTokens()) .Times(0); @@ -871,7 +869,7 @@ TEST_F(BatAdsRefillUnblindedTokensTest, GetInvalidSignedTokens) { const URLResponseMap url_responses = { {// Request signed tokens "/v3/confirmation/token/27a39b2f-9b2e-4eb0-bbb2-2f84447496e7", - {{net::HTTP_CREATED, R"( + {{net::HTTP_CREATED, /*response_body*/ R"( { "nonce": "2f0e2891-e7a5-4262-835b-550b13e58e5c" } @@ -880,7 +878,7 @@ TEST_F(BatAdsRefillUnblindedTokensTest, GetInvalidSignedTokens) { "/v3/confirmation/token/" "27a39b2f-9b2e-4eb0-bbb2-2f84447496e7?nonce=2f0e2891-e7a5-4262-835b-" "550b13e58e5c", - {{net::HTTP_OK, R"( + {{net::HTTP_OK, /*response_body*/ R"( { "batchProof": "BnqmsPk3PsQXVhcCE8YALSE8O+LVqOWabzCuyCTSgQjwAb3iAKrqDV3/zWKdU5TRoqzr32pyPyaS3xFI2iVmAw==", "signedTokens": [ @@ -941,23 +939,23 @@ TEST_F(BatAdsRefillUnblindedTokensTest, GetInvalidSignedTokens) { MockUrlResponses(ads_client_mock_, url_responses); const std::vector tokens = GetTokens(); - ON_CALL(*token_generator_mock_, Generate(_)).WillByDefault(Return(tokens)); + ON_CALL(token_generator_mock_, Generate(_)).WillByDefault(Return(tokens)); BuildAndSetIssuers(); // Act - EXPECT_CALL(*refill_unblinded_tokens_delegate_mock_, + EXPECT_CALL(refill_unblinded_tokens_delegate_mock_, OnDidRefillUnblindedTokens()) .Times(0); - EXPECT_CALL(*refill_unblinded_tokens_delegate_mock_, + EXPECT_CALL(refill_unblinded_tokens_delegate_mock_, OnFailedToRefillUnblindedTokens()); - EXPECT_CALL(*refill_unblinded_tokens_delegate_mock_, + EXPECT_CALL(refill_unblinded_tokens_delegate_mock_, OnWillRetryRefillingUnblindedTokens(_)) .Times(0); - EXPECT_CALL(*refill_unblinded_tokens_delegate_mock_, + EXPECT_CALL(refill_unblinded_tokens_delegate_mock_, OnDidRetryRefillingUnblindedTokens()) .Times(0); @@ -975,19 +973,19 @@ TEST_F(BatAdsRefillUnblindedTokensTest, DoNotRefillIfAboveTheMinimumThreshold) { BuildAndSetIssuers(); // Act - EXPECT_CALL(*refill_unblinded_tokens_delegate_mock_, + EXPECT_CALL(refill_unblinded_tokens_delegate_mock_, OnDidRefillUnblindedTokens()) .Times(0); - EXPECT_CALL(*refill_unblinded_tokens_delegate_mock_, + EXPECT_CALL(refill_unblinded_tokens_delegate_mock_, OnFailedToRefillUnblindedTokens()) .Times(0); - EXPECT_CALL(*refill_unblinded_tokens_delegate_mock_, + EXPECT_CALL(refill_unblinded_tokens_delegate_mock_, OnWillRetryRefillingUnblindedTokens(_)) .Times(0); - EXPECT_CALL(*refill_unblinded_tokens_delegate_mock_, + EXPECT_CALL(refill_unblinded_tokens_delegate_mock_, OnDidRetryRefillingUnblindedTokens()) .Times(0); @@ -1005,7 +1003,7 @@ TEST_F(BatAdsRefillUnblindedTokensTest, RefillIfBelowTheMinimumThreshold) { const URLResponseMap url_responses = { {// Request signed tokens "/v3/confirmation/token/27a39b2f-9b2e-4eb0-bbb2-2f84447496e7", - {{net::HTTP_CREATED, R"( + {{net::HTTP_CREATED, /*response_body*/ R"( { "nonce": "abcb67a5-0a73-43ec-bbf9-51288ba76bb7" } @@ -1014,7 +1012,7 @@ TEST_F(BatAdsRefillUnblindedTokensTest, RefillIfBelowTheMinimumThreshold) { "/v3/confirmation/token/" "27a39b2f-9b2e-4eb0-bbb2-2f84447496e7?nonce=abcb67a5-0a73-43ec-bbf9-" "51288ba76bb7", - {{net::HTTP_OK, R"( + {{net::HTTP_OK, /*response_body*/ R"( { "batchProof": "WQ3ijykF8smhAs+boORkMqgBN0gtn5Bd9bm47rAWtA60kJZtR/JfCSmTsMGjO110pDkaklRrnjYj5CrEH9DbDA==", "signedTokens": [ @@ -1055,24 +1053,24 @@ TEST_F(BatAdsRefillUnblindedTokensTest, RefillIfBelowTheMinimumThreshold) { )"}}}}; MockUrlResponses(ads_client_mock_, url_responses); - ON_CALL(*token_generator_mock_, Generate(_)) + ON_CALL(token_generator_mock_, Generate(_)) .WillByDefault(Return(privacy::GetTokens(/*count*/ 31))); BuildAndSetIssuers(); // Act - EXPECT_CALL(*refill_unblinded_tokens_delegate_mock_, + EXPECT_CALL(refill_unblinded_tokens_delegate_mock_, OnDidRefillUnblindedTokens()); - EXPECT_CALL(*refill_unblinded_tokens_delegate_mock_, + EXPECT_CALL(refill_unblinded_tokens_delegate_mock_, OnFailedToRefillUnblindedTokens()) .Times(0); - EXPECT_CALL(*refill_unblinded_tokens_delegate_mock_, + EXPECT_CALL(refill_unblinded_tokens_delegate_mock_, OnWillRetryRefillingUnblindedTokens(_)) .Times(0); - EXPECT_CALL(*refill_unblinded_tokens_delegate_mock_, + EXPECT_CALL(refill_unblinded_tokens_delegate_mock_, OnDidRetryRefillingUnblindedTokens()) .Times(0); diff --git a/components/brave_ads/core/internal/ads/ad_events/ad_event_unittest_util.h b/components/brave_ads/core/internal/ads/ad_events/ad_event_unittest_util.h index eacb96af67c2..480017df62d3 100644 --- a/components/brave_ads/core/internal/ads/ad_events/ad_event_unittest_util.h +++ b/components/brave_ads/core/internal/ads/ad_events/ad_event_unittest_util.h @@ -28,12 +28,10 @@ AdEventInfo BuildAdEvent(const CreativeAdInfo& creative_ad, const AdType& ad_type, const ConfirmationType& confirmation_type, base::Time created_at); - AdEventInfo BuildAdEvent(const AdInfo& ad, const AdType& ad_type, const ConfirmationType& confirmation_type, base::Time created_at); - AdEventInfo BuildAdEvent(const std::string& placement_id, const std::string& creative_set_id, const ConfirmationType& confirmation_type); diff --git a/components/brave_ads/core/internal/ads/ad_events/ad_event_util_unittest.cc b/components/brave_ads/core/internal/ads/ad_events/ad_event_util_unittest.cc index 921b379c9780..b1c344ce233a 100644 --- a/components/brave_ads/core/internal/ads/ad_events/ad_event_util_unittest.cc +++ b/components/brave_ads/core/internal/ads/ad_events/ad_event_util_unittest.cc @@ -20,17 +20,13 @@ namespace brave_ads { TEST(BatAdsAdEventUtilTest, GetLastSeenAdTimeForEmptyAdEvents) { // Arrange - const AdEventList ad_events; - const CreativeNotificationAdInfo creative_ad = BuildCreativeNotificationAd(/*should_use_random_guids*/ true); // Act - const absl::optional last_seen_ad_time = - GetLastSeenAdTime(ad_events, creative_ad); // Assert - EXPECT_FALSE(last_seen_ad_time); + EXPECT_FALSE(GetLastSeenAdTime(/*ad_events*/ {}, creative_ad)); } TEST(BatAdsAdEventUtilTest, GetLastSeenAdTimeForUnseenAd) { @@ -46,14 +42,13 @@ TEST(BatAdsAdEventUtilTest, GetLastSeenAdTimeForUnseenAd) { ConfirmationType::kViewed, event_time); ad_events.push_back(ad_event); - // Act const CreativeNotificationAdInfo creative_ad_2 = BuildCreativeNotificationAd(/*should_use_random_guids*/ true); - const absl::optional last_seen_ad_time = - GetLastSeenAdTime(ad_events, creative_ad_2); + + // Act // Assert - EXPECT_FALSE(last_seen_ad_time); + EXPECT_FALSE(GetLastSeenAdTime(ad_events, creative_ad_2)); } TEST(BatAdsAdEventUtilTest, GetLastSeenAdTime) { @@ -91,25 +86,21 @@ TEST(BatAdsAdEventUtilTest, GetLastSeenAdTime) { // Act const absl::optional last_seen_ad_time = GetLastSeenAdTime(ad_events, creative_ad_1); + ASSERT_TRUE(last_seen_ad_time); // Assert - const base::Time expected_last_seen_ad_time = now - base::Hours(6); - EXPECT_EQ(expected_last_seen_ad_time, *last_seen_ad_time); + EXPECT_EQ(now - base::Hours(6), *last_seen_ad_time); } TEST(BatAdsAdEventUtilTest, GetLastSeenAdvertiserTimeForEmptyAdEvents) { // Arrange - const AdEventList ad_events; - const CreativeNotificationAdInfo creative_ad = BuildCreativeNotificationAd(/*should_use_random_guids*/ true); // Act - const absl::optional last_seen_advertiser_time = - GetLastSeenAdvertiserTime(ad_events, creative_ad); // Assert - EXPECT_FALSE(last_seen_advertiser_time); + EXPECT_FALSE(GetLastSeenAdvertiserTime(/*ad_events*/ {}, creative_ad)); } TEST(BatAdsAdEventUtilTest, GetLastSeenAdvertiserTimeForUnseenAdvertiser) { @@ -124,34 +115,33 @@ TEST(BatAdsAdEventUtilTest, GetLastSeenAdvertiserTimeForUnseenAdvertiser) { ConfirmationType::kViewed, Now() - base::Hours(12)); ad_events.push_back(ad_event); - // Act const CreativeNotificationAdInfo creative_ad_2 = BuildCreativeNotificationAd(/*should_use_random_guids*/ true); - const absl::optional last_seen_advertiser_time = - GetLastSeenAdvertiserTime(ad_events, creative_ad_2); + + // Act // Assert - EXPECT_FALSE(last_seen_advertiser_time); + EXPECT_FALSE(GetLastSeenAdvertiserTime(ad_events, creative_ad_2)); } TEST(BatAdsAdEventUtilTest, GetLastSeenAdvertiserTime) { // Arrange - const std::string advertiser_1 = + const std::string advertiser_id_1 = base::GUID::GenerateRandomV4().AsLowercaseString(); - const std::string advertiser_2 = + const std::string advertiser_id_2 = base::GUID::GenerateRandomV4().AsLowercaseString(); CreativeNotificationAdInfo creative_ad_1 = BuildCreativeNotificationAd(/*should_use_random_guids*/ true); - creative_ad_1.advertiser_id = advertiser_1; + creative_ad_1.advertiser_id = advertiser_id_1; CreativeNotificationAdInfo creative_ad_2 = BuildCreativeNotificationAd(/*should_use_random_guids*/ true); - creative_ad_2.advertiser_id = advertiser_2; + creative_ad_2.advertiser_id = advertiser_id_2; CreativeNotificationAdInfo creative_ad_3 = BuildCreativeNotificationAd(/*should_use_random_guids*/ true); - creative_ad_3.advertiser_id = advertiser_1; + creative_ad_3.advertiser_id = advertiser_id_1; AdEventList ad_events; @@ -180,10 +170,10 @@ TEST(BatAdsAdEventUtilTest, GetLastSeenAdvertiserTime) { // Act const absl::optional last_seen_advertiser_time = GetLastSeenAdvertiserTime(ad_events, creative_ad_3); + ASSERT_TRUE(last_seen_advertiser_time); // Assert - const base::Time expected_last_seen_advertiser_time = now - base::Hours(3); - EXPECT_EQ(expected_last_seen_advertiser_time, *last_seen_advertiser_time); + EXPECT_EQ(now - base::Hours(3), *last_seen_advertiser_time); } } // namespace brave_ads diff --git a/components/brave_ads/core/internal/ads/ad_unittest_constants.h b/components/brave_ads/core/internal/ads/ad_unittest_constants.h index c0627de5f263..94b40bbcdb60 100644 --- a/components/brave_ads/core/internal/ads/ad_unittest_constants.h +++ b/components/brave_ads/core/internal/ads/ad_unittest_constants.h @@ -9,6 +9,7 @@ namespace brave_ads { constexpr char kPlacementId[] = "8b742869-6e4a-490c-ac31-31b49130098a"; +constexpr char kMissingPlacementId[] = "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx"; constexpr char kInvalidPlacementId[] = ""; constexpr char kCreativeInstanceId[] = "546fe7b0-5047-4f28-a11c-81f14edcf0f6"; @@ -17,12 +18,15 @@ constexpr char kMissingCreativeInstanceId[] = constexpr char kInvalidCreativeInstanceId[] = ""; constexpr char kCreativeSetId[] = "c2ba3e7d-f688-4bc4-a053-cbe7ac1e6123"; +constexpr char kMissingCreativeSetId[] = "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx"; constexpr char kInvalidCreativeSetId[] = ""; constexpr char kCampaignId[] = "84197fc8-830a-4a8e-8339-7a70c2bfa104"; +constexpr char kMissingCampaignId[] = "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx"; constexpr char kInvalidCampaignId[] = ""; constexpr char kAdvertiserId[] = "5484a63f-eb99-4ba5-a3b0-8c25d3c0e4b2"; +constexpr char kMissingAdvertiserId[] = "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx"; constexpr char kInvalidAdvertiserId[] = ""; constexpr char kSegment[] = "untargeted"; diff --git a/components/brave_ads/core/internal/ads/inline_content_ad_test.cc b/components/brave_ads/core/internal/ads/inline_content_ad_test.cc index b80c442fade2..cce8fc6ad627 100644 --- a/components/brave_ads/core/internal/ads/inline_content_ad_test.cc +++ b/components/brave_ads/core/internal/ads/inline_content_ad_test.cc @@ -39,7 +39,8 @@ class BatAdsInlineContentAdIntegrationTest : public UnitTestBase { void SetUpMocks() override { const URLResponseMap url_responses = { {"/v9/catalog", - {{net::HTTP_OK, "/catalog_with_inline_content_ad.json"}}}}; + {{net::HTTP_OK, + /*response_body*/ "/catalog_with_inline_content_ad.json"}}}}; MockUrlResponses(ads_client_mock_, url_responses); } }; diff --git a/components/brave_ads/core/internal/ads/new_tab_page_ad_test.cc b/components/brave_ads/core/internal/ads/new_tab_page_ad_test.cc index 93cf904b56b9..86696a8bcf0b 100644 --- a/components/brave_ads/core/internal/ads/new_tab_page_ad_test.cc +++ b/components/brave_ads/core/internal/ads/new_tab_page_ad_test.cc @@ -32,7 +32,8 @@ class BatAdsNewTabPageAdIntegrationTest : public UnitTestBase { void SetUpMocks() override { const URLResponseMap url_responses = { {"/v9/catalog", - {{net::HTTP_OK, "/catalog_with_new_tab_page_ad.json"}}}}; + {{net::HTTP_OK, + /*response_body*/ "/catalog_with_new_tab_page_ad.json"}}}}; MockUrlResponses(ads_client_mock_, url_responses); } }; diff --git a/components/brave_ads/core/internal/ads/notification_ad_for_mobile_test.cc b/components/brave_ads/core/internal/ads/notification_ad_for_mobile_test.cc index ba7b980e24c9..2942636069be 100644 --- a/components/brave_ads/core/internal/ads/notification_ad_for_mobile_test.cc +++ b/components/brave_ads/core/internal/ads/notification_ad_for_mobile_test.cc @@ -38,7 +38,8 @@ class BatAdsNotificationAdForMobileIntegrationTest : public UnitTestBase { const URLResponseMap url_responses = { {"/v9/catalog", - {{net::HTTP_OK, "/catalog_with_notification_ad.json"}}}}; + {{net::HTTP_OK, + /*response_body*/ "/catalog_with_notification_ad.json"}}}}; MockUrlResponses(ads_client_mock_, url_responses); } diff --git a/components/brave_ads/core/internal/ads/notification_ad_test.cc b/components/brave_ads/core/internal/ads/notification_ad_test.cc index d66237f1e860..d563a22270d0 100644 --- a/components/brave_ads/core/internal/ads/notification_ad_test.cc +++ b/components/brave_ads/core/internal/ads/notification_ad_test.cc @@ -36,7 +36,8 @@ class BatAdsNotificationAdIntegrationTest : public UnitTestBase { void SetUpMocks() override { const URLResponseMap url_responses = { {"/v9/catalog", - {{net::HTTP_OK, "/catalog_with_notification_ad.json"}}}}; + {{net::HTTP_OK, + /*response_body*/ "/catalog_with_notification_ad.json"}}}}; MockUrlResponses(ads_client_mock_, url_responses); } diff --git a/components/brave_ads/core/internal/ads/promoted_content_ad_test.cc b/components/brave_ads/core/internal/ads/promoted_content_ad_test.cc index 22d80f71dd94..ddc3a5403ecf 100644 --- a/components/brave_ads/core/internal/ads/promoted_content_ad_test.cc +++ b/components/brave_ads/core/internal/ads/promoted_content_ad_test.cc @@ -29,7 +29,8 @@ class BatAdsPromotedContentAdIntegrationTest : public UnitTestBase { void SetUpMocks() override { const URLResponseMap url_responses = { {"/v9/catalog", - {{net::HTTP_OK, "/catalog_with_promoted_content_ad.json"}}}}; + {{net::HTTP_OK, + /*response_body*/ "/catalog_with_promoted_content_ad.json"}}}}; MockUrlResponses(ads_client_mock_, url_responses); } }; diff --git a/components/brave_ads/core/internal/ads/serving/choose/ad_predictor_info.h b/components/brave_ads/core/internal/ads/serving/choose/ad_predictor_info.h index ff1871d2ebc9..347bc84b9936 100644 --- a/components/brave_ads/core/internal/ads/serving/choose/ad_predictor_info.h +++ b/components/brave_ads/core/internal/ads/serving/choose/ad_predictor_info.h @@ -27,7 +27,8 @@ struct AdPredictorInfo final { }; template -using CreativeAdPredictorMap = std::map>; +using CreativeAdPredictorMap = std::map>; } // namespace brave_ads diff --git a/components/brave_ads/core/internal/ads/serving/eligible_ads/eligible_ads_alias.h b/components/brave_ads/core/internal/ads/serving/eligible_ads/eligible_ads_alias.h index 59712e735f4a..7a22e6fdeae6 100644 --- a/components/brave_ads/core/internal/ads/serving/eligible_ads/eligible_ads_alias.h +++ b/components/brave_ads/core/internal/ads/serving/eligible_ads/eligible_ads_alias.h @@ -10,7 +10,7 @@ namespace brave_ads { -using AdPredictorWeightList = std::vector; +using AdPredictorWeightList = std::vector; } // namespace brave_ads diff --git a/components/brave_ads/core/internal/ads/serving/eligible_ads/exclusion_rules/anti_targeting_exclusion_rule_unittest.cc b/components/brave_ads/core/internal/ads/serving/eligible_ads/exclusion_rules/anti_targeting_exclusion_rule_unittest.cc index 4f3bf5bd89ea..510aec4a4edf 100644 --- a/components/brave_ads/core/internal/ads/serving/eligible_ads/exclusion_rules/anti_targeting_exclusion_rule_unittest.cc +++ b/components/brave_ads/core/internal/ads/serving/eligible_ads/exclusion_rules/anti_targeting_exclusion_rule_unittest.cc @@ -5,6 +5,7 @@ #include "brave/components/brave_ads/core/internal/ads/serving/eligible_ads/exclusion_rules/anti_targeting_exclusion_rule.h" +#include "brave/components/brave_ads/core/internal/ads/ad_unittest_constants.h" #include "brave/components/brave_ads/core/internal/common/unittest/unittest_base.h" #include "brave/components/brave_ads/core/internal/resources/behavioral/anti_targeting/anti_targeting_resource.h" #include "url/gurl.h" @@ -13,21 +14,12 @@ namespace brave_ads { -namespace { - -constexpr char kCreativeSetIdOnAntiTargetingList[] = - "5bdeab83-048f-48a7-9602-a1092ded123c"; -constexpr char kCreativeSetIdNotOnAntiTargetingList[] = - "d175cdfd-57bf-46c3-9b00-89eed71c6ae5"; - -} // namespace - class BatAdsAntiTargetingExclusionRuleTest : public UnitTestBase {}; -TEST_F(BatAdsAntiTargetingExclusionRuleTest, AllowIfResourceDidNotLoad) { +TEST_F(BatAdsAntiTargetingExclusionRuleTest, AllowIfResourceIsNotInitialized) { // Arrange CreativeAdInfo creative_ad; - creative_ad.creative_set_id = kCreativeSetIdOnAntiTargetingList; + creative_ad.creative_set_id = kCreativeSetId; resource::AntiTargeting resource; @@ -35,18 +27,18 @@ TEST_F(BatAdsAntiTargetingExclusionRuleTest, AllowIfResourceDidNotLoad) { GURL("https://www.brave.com"), GURL("https://www.foo2.org")}; - // Act AntiTargetingExclusionRule exclusion_rule(resource, history); - const bool should_exclude = exclusion_rule.ShouldExclude(creative_ad); + + // Act // Assert - EXPECT_FALSE(should_exclude); + EXPECT_FALSE(exclusion_rule.ShouldExclude(creative_ad)); } -TEST_F(BatAdsAntiTargetingExclusionRuleTest, AllowIfCreativeSetDoesNotMatch) { +TEST_F(BatAdsAntiTargetingExclusionRuleTest, AllowIfCreativeSetDoesNotExist) { // Arrange CreativeAdInfo creative_ad; - creative_ad.creative_set_id = kCreativeSetIdNotOnAntiTargetingList; + creative_ad.creative_set_id = kMissingCreativeSetId; resource::AntiTargeting resource; resource.Load(); @@ -56,18 +48,18 @@ TEST_F(BatAdsAntiTargetingExclusionRuleTest, AllowIfCreativeSetDoesNotMatch) { GURL("https://www.brave.com"), GURL("https://www.foo2.org")}; - // Act AntiTargetingExclusionRule exclusion_rule(resource, history); - const bool should_exclude = exclusion_rule.ShouldExclude(creative_ad); + + // Act // Assert - EXPECT_FALSE(should_exclude); + EXPECT_FALSE(exclusion_rule.ShouldExclude(creative_ad)); } -TEST_F(BatAdsAntiTargetingExclusionRuleTest, AllowIfSiteDoesNotMatch) { +TEST_F(BatAdsAntiTargetingExclusionRuleTest, AllowIfSiteDoesNotExist) { // Arrange CreativeAdInfo creative_ad; - creative_ad.creative_set_id = kCreativeSetIdOnAntiTargetingList; + creative_ad.creative_set_id = kCreativeSetId; resource::AntiTargeting resource; resource.Load(); @@ -76,19 +68,19 @@ TEST_F(BatAdsAntiTargetingExclusionRuleTest, AllowIfSiteDoesNotMatch) { const BrowsingHistoryList history = {GURL("https://www.foo1.org"), GURL("https://www.foo2.org")}; - // Act AntiTargetingExclusionRule exclusion_rule(resource, history); - const bool should_exclude = exclusion_rule.ShouldExclude(creative_ad); + + // Act // Assert - EXPECT_FALSE(should_exclude); + EXPECT_FALSE(exclusion_rule.ShouldExclude(creative_ad)); } TEST_F(BatAdsAntiTargetingExclusionRuleTest, - DoNotAllowIfCreativeSetAndSiteDoesMatch) { + DoNotAllowIfCreativeSetAndSiteMatch) { // Arrange CreativeAdInfo creative_ad; - creative_ad.creative_set_id = kCreativeSetIdOnAntiTargetingList; + creative_ad.creative_set_id = kCreativeSetId; resource::AntiTargeting resource; resource.Load(); @@ -97,12 +89,12 @@ TEST_F(BatAdsAntiTargetingExclusionRuleTest, const BrowsingHistoryList history = {GURL("https://www.foo1.org"), GURL("https://www.brave.com")}; - // Act AntiTargetingExclusionRule exclusion_rule(resource, history); - const bool should_exclude = exclusion_rule.ShouldExclude(creative_ad); + + // Act // Assert - EXPECT_TRUE(should_exclude); + EXPECT_TRUE(exclusion_rule.ShouldExclude(creative_ad)); } } // namespace brave_ads diff --git a/components/brave_ads/core/internal/ads/serving/eligible_ads/exclusion_rules/conversion_exclusion_rule_unittest.cc b/components/brave_ads/core/internal/ads/serving/eligible_ads/exclusion_rules/conversion_exclusion_rule_unittest.cc index 6ff7ef08417f..4e23a1713670 100644 --- a/components/brave_ads/core/internal/ads/serving/eligible_ads/exclusion_rules/conversion_exclusion_rule_unittest.cc +++ b/components/brave_ads/core/internal/ads/serving/eligible_ads/exclusion_rules/conversion_exclusion_rule_unittest.cc @@ -33,14 +33,12 @@ TEST_F(BatAdsConversionExclusionRuleTest, AllowAdIfThereIsNoConversionHistory) { CreativeAdInfo creative_ad; creative_ad.creative_set_id = kCreativeSetId; - const AdEventList ad_events; + ConversionExclusionRule exclusion_rule({}); // Act - ConversionExclusionRule exclusion_rule(ad_events); - const bool should_exclude = exclusion_rule.ShouldExclude(creative_ad); // Assert - EXPECT_FALSE(should_exclude); + EXPECT_FALSE(exclusion_rule.ShouldExclude(creative_ad)); } TEST_F(BatAdsConversionExclusionRuleTest, DoNotAllowAdIfAlreadyConverted) { @@ -56,12 +54,12 @@ TEST_F(BatAdsConversionExclusionRuleTest, DoNotAllowAdIfAlreadyConverted) { ad_events.push_back(ad_event); - // Act ConversionExclusionRule exclusion_rule(ad_events); - const bool should_exclude = exclusion_rule.ShouldExclude(creative_ad); + + // Act // Assert - EXPECT_TRUE(should_exclude); + EXPECT_TRUE(exclusion_rule.ShouldExclude(creative_ad)); } TEST_F(BatAdsConversionExclusionRuleTest, @@ -89,12 +87,12 @@ TEST_F(BatAdsConversionExclusionRuleTest, ad_events.push_back(ad_event); - // Act ConversionExclusionRule exclusion_rule(ad_events); - const bool should_exclude = exclusion_rule.ShouldExclude(creative_ad); + + // Act // Assert - EXPECT_FALSE(should_exclude); + EXPECT_FALSE(exclusion_rule.ShouldExclude(creative_ad)); } TEST_F(BatAdsConversionExclusionRuleTest, AllowAdIfNotAlreadyConverted) { @@ -113,12 +111,12 @@ TEST_F(BatAdsConversionExclusionRuleTest, AllowAdIfNotAlreadyConverted) { ad_events.push_back(ad_event); - // Act ConversionExclusionRule exclusion_rule(ad_events); - const bool should_exclude = exclusion_rule.ShouldExclude(creative_ad_1); + + // Act // Assert - EXPECT_FALSE(should_exclude); + EXPECT_FALSE(exclusion_rule.ShouldExclude(creative_ad_1)); } } // namespace brave_ads diff --git a/components/brave_ads/core/internal/ads/serving/eligible_ads/exclusion_rules/creative_instance_exclusion_rule_unittest.cc b/components/brave_ads/core/internal/ads/serving/eligible_ads/exclusion_rules/creative_instance_exclusion_rule_unittest.cc index d9cd5894e5bb..0c5d13bdeb71 100644 --- a/components/brave_ads/core/internal/ads/serving/eligible_ads/exclusion_rules/creative_instance_exclusion_rule_unittest.cc +++ b/components/brave_ads/core/internal/ads/serving/eligible_ads/exclusion_rules/creative_instance_exclusion_rule_unittest.cc @@ -21,14 +21,12 @@ TEST_F(BatAdsCreativeInstanceExclusionRuleTest, AllowAdIfThereIsNoAdsHistory) { CreativeAdInfo creative_ad; creative_ad.creative_instance_id = kCreativeInstanceId; - const AdEventList ad_events; + CreativeInstanceExclusionRule exclusion_rule({}); // Act - CreativeInstanceExclusionRule exclusion_rule(ad_events); - const bool should_exclude = exclusion_rule.ShouldExclude(creative_ad); // Assert - EXPECT_FALSE(should_exclude); + EXPECT_FALSE(exclusion_rule.ShouldExclude(creative_ad)); } TEST_F(BatAdsCreativeInstanceExclusionRuleTest, AdAllowedAfter1Hour) { @@ -43,14 +41,14 @@ TEST_F(BatAdsCreativeInstanceExclusionRuleTest, AdAllowedAfter1Hour) { ad_events.push_back(ad_event); + CreativeInstanceExclusionRule exclusion_rule(ad_events); + AdvanceClockBy(base::Hours(1)); // Act - CreativeInstanceExclusionRule exclusion_rule(ad_events); - const bool should_exclude = exclusion_rule.ShouldExclude(creative_ad); // Assert - EXPECT_FALSE(should_exclude); + EXPECT_FALSE(exclusion_rule.ShouldExclude(creative_ad)); } TEST_F(BatAdsCreativeInstanceExclusionRuleTest, @@ -78,14 +76,14 @@ TEST_F(BatAdsCreativeInstanceExclusionRuleTest, creative_ad, AdType::kSearchResultAd, ConfirmationType::kServed, Now()); ad_events.push_back(ad_event_4); + CreativeInstanceExclusionRule exclusion_rule(ad_events); + AdvanceClockBy(base::Hours(1)); // Act - CreativeInstanceExclusionRule exclusion_rule(ad_events); - const bool should_exclude = exclusion_rule.ShouldExclude(creative_ad); // Assert - EXPECT_FALSE(should_exclude); + EXPECT_FALSE(exclusion_rule.ShouldExclude(creative_ad)); } TEST_F(BatAdsCreativeInstanceExclusionRuleTest, @@ -101,14 +99,14 @@ TEST_F(BatAdsCreativeInstanceExclusionRuleTest, ad_events.push_back(ad_event); + CreativeInstanceExclusionRule exclusion_rule(ad_events); + AdvanceClockBy(base::Hours(1) - base::Milliseconds(1)); // Act - CreativeInstanceExclusionRule exclusion_rule(ad_events); - const bool should_exclude = exclusion_rule.ShouldExclude(creative_ad); // Assert - EXPECT_TRUE(should_exclude); + EXPECT_TRUE(exclusion_rule.ShouldExclude(creative_ad)); } } // namespace brave_ads diff --git a/components/brave_ads/core/internal/ads/serving/eligible_ads/exclusion_rules/daily_cap_exclusion_rule_unittest.cc b/components/brave_ads/core/internal/ads/serving/eligible_ads/exclusion_rules/daily_cap_exclusion_rule_unittest.cc index 285a9c6a0852..8a9232ff4f69 100644 --- a/components/brave_ads/core/internal/ads/serving/eligible_ads/exclusion_rules/daily_cap_exclusion_rule_unittest.cc +++ b/components/brave_ads/core/internal/ads/serving/eligible_ads/exclusion_rules/daily_cap_exclusion_rule_unittest.cc @@ -30,14 +30,12 @@ TEST_F(BatAdsDailyCapExclusionRuleTest, AllowAdIfThereIsNoAdsHistory) { creative_ad.campaign_id = kCampaignIds[0]; creative_ad.daily_cap = 2; - const AdEventList ad_events; + DailyCapExclusionRule exclusion_rule({}); // Act - DailyCapExclusionRule exclusion_rule(ad_events); - const bool should_exclude = exclusion_rule.ShouldExclude(creative_ad); // Assert - EXPECT_FALSE(should_exclude); + EXPECT_FALSE(exclusion_rule.ShouldExclude(creative_ad)); } TEST_F(BatAdsDailyCapExclusionRuleTest, AllowAdIfDoesNotExceedCap) { @@ -53,12 +51,12 @@ TEST_F(BatAdsDailyCapExclusionRuleTest, AllowAdIfDoesNotExceedCap) { ad_events.push_back(ad_event); - // Act DailyCapExclusionRule exclusion_rule(ad_events); - const bool should_exclude = exclusion_rule.ShouldExclude(creative_ad); + + // Act // Assert - EXPECT_FALSE(should_exclude); + EXPECT_FALSE(exclusion_rule.ShouldExclude(creative_ad)); } TEST_F(BatAdsDailyCapExclusionRuleTest, @@ -78,12 +76,12 @@ TEST_F(BatAdsDailyCapExclusionRuleTest, ad_events.push_back(ad_event); - // Act DailyCapExclusionRule exclusion_rule(ad_events); - const bool should_exclude = exclusion_rule.ShouldExclude(creative_ad_1); + + // Act // Assert - EXPECT_FALSE(should_exclude); + EXPECT_FALSE(exclusion_rule.ShouldExclude(creative_ad_1)); } TEST_F(BatAdsDailyCapExclusionRuleTest, AllowAdIfDoesNotExceedCapWithin1Day) { @@ -99,14 +97,14 @@ TEST_F(BatAdsDailyCapExclusionRuleTest, AllowAdIfDoesNotExceedCapWithin1Day) { ad_events.push_back(ad_event); + DailyCapExclusionRule exclusion_rule(ad_events); + AdvanceClockBy(base::Days(1) - base::Milliseconds(1)); // Act - DailyCapExclusionRule exclusion_rule(ad_events); - const bool should_exclude = exclusion_rule.ShouldExclude(creative_ad); // Assert - EXPECT_FALSE(should_exclude); + EXPECT_FALSE(exclusion_rule.ShouldExclude(creative_ad)); } TEST_F(BatAdsDailyCapExclusionRuleTest, AllowAdIfDoesNotExceedCapAfter1Day) { @@ -122,14 +120,14 @@ TEST_F(BatAdsDailyCapExclusionRuleTest, AllowAdIfDoesNotExceedCapAfter1Day) { ad_events.push_back(ad_event); + DailyCapExclusionRule exclusion_rule(ad_events); + AdvanceClockBy(base::Days(1)); // Act - DailyCapExclusionRule exclusion_rule(ad_events); - const bool should_exclude = exclusion_rule.ShouldExclude(creative_ad); // Assert - EXPECT_FALSE(should_exclude); + EXPECT_FALSE(exclusion_rule.ShouldExclude(creative_ad)); } TEST_F(BatAdsDailyCapExclusionRuleTest, DoNotAllowAdIfExceedsCap) { @@ -146,12 +144,12 @@ TEST_F(BatAdsDailyCapExclusionRuleTest, DoNotAllowAdIfExceedsCap) { ad_events.push_back(ad_event); ad_events.push_back(ad_event); - // Act DailyCapExclusionRule exclusion_rule(ad_events); - const bool should_exclude = exclusion_rule.ShouldExclude(creative_ad); + + // Act // Assert - EXPECT_TRUE(should_exclude); + EXPECT_TRUE(exclusion_rule.ShouldExclude(creative_ad)); } } // namespace brave_ads diff --git a/components/brave_ads/core/internal/ads/serving/eligible_ads/exclusion_rules/daypart_exclusion_rule_unittest.cc b/components/brave_ads/core/internal/ads/serving/eligible_ads/exclusion_rules/daypart_exclusion_rule_unittest.cc index af1d56c8debd..6632733589d6 100644 --- a/components/brave_ads/core/internal/ads/serving/eligible_ads/exclusion_rules/daypart_exclusion_rule_unittest.cc +++ b/components/brave_ads/core/internal/ads/serving/eligible_ads/exclusion_rules/daypart_exclusion_rule_unittest.cc @@ -15,7 +15,10 @@ namespace brave_ads { -class BatAdsDaypartExclusionRuleTest : public UnitTestBase {}; +class BatAdsDaypartExclusionRuleTest : public UnitTestBase { + protected: + DaypartExclusionRule exclusion_rule_; +}; TEST_F(BatAdsDaypartExclusionRuleTest, AllowIfDaypartsIsEmpty) { // Arrange @@ -23,11 +26,9 @@ TEST_F(BatAdsDaypartExclusionRuleTest, AllowIfDaypartsIsEmpty) { creative_ad.creative_set_id = kCreativeSetId; // Act - DaypartExclusionRule exclusion_rule; - const bool should_exclude = exclusion_rule.ShouldExclude(creative_ad); // Assert - EXPECT_FALSE(should_exclude); + EXPECT_FALSE(exclusion_rule_.ShouldExclude(creative_ad)); } TEST_F(BatAdsDaypartExclusionRuleTest, AllowIfRightDayAndHours) { @@ -47,11 +48,9 @@ TEST_F(BatAdsDaypartExclusionRuleTest, AllowIfRightDayAndHours) { creative_ad.dayparts.push_back(daypart_1); // Act - DaypartExclusionRule exclusion_rule; - const bool should_exclude = exclusion_rule.ShouldExclude(creative_ad); // Assert - EXPECT_FALSE(should_exclude); + EXPECT_FALSE(exclusion_rule_.ShouldExclude(creative_ad)); } TEST_F(BatAdsDaypartExclusionRuleTest, AllowForMultipleDays) { @@ -70,11 +69,9 @@ TEST_F(BatAdsDaypartExclusionRuleTest, AllowForMultipleDays) { creative_ad.dayparts.push_back(daypart_1); // Act - DaypartExclusionRule exclusion_rule; - const bool should_exclude = exclusion_rule.ShouldExclude(creative_ad); // Assert - EXPECT_FALSE(should_exclude); + EXPECT_FALSE(exclusion_rule_.ShouldExclude(creative_ad)); } TEST_F(BatAdsDaypartExclusionRuleTest, AllowIfOneMatchExists) { @@ -109,11 +106,9 @@ TEST_F(BatAdsDaypartExclusionRuleTest, AllowIfOneMatchExists) { creative_ad.dayparts.push_back(daypart_3); // Act - DaypartExclusionRule exclusion_rule; - const bool should_exclude = exclusion_rule.ShouldExclude(creative_ad); // Assert - EXPECT_FALSE(should_exclude); + EXPECT_FALSE(exclusion_rule_.ShouldExclude(creative_ad)); } TEST_F(BatAdsDaypartExclusionRuleTest, DisallowIfNoMatches) { @@ -148,11 +143,9 @@ TEST_F(BatAdsDaypartExclusionRuleTest, DisallowIfNoMatches) { creative_ad.dayparts.push_back(daypart_3); // Act - DaypartExclusionRule exclusion_rule; - const bool should_exclude = exclusion_rule.ShouldExclude(creative_ad); // Assert - EXPECT_TRUE(should_exclude); + EXPECT_TRUE(exclusion_rule_.ShouldExclude(creative_ad)); } TEST_F(BatAdsDaypartExclusionRuleTest, DisallowIfWrongDay) { @@ -174,11 +167,9 @@ TEST_F(BatAdsDaypartExclusionRuleTest, DisallowIfWrongDay) { creative_ad.dayparts.push_back(daypart_1); // Act - DaypartExclusionRule exclusion_rule; - const bool should_exclude = exclusion_rule.ShouldExclude(creative_ad); // Assert - EXPECT_TRUE(should_exclude); + EXPECT_TRUE(exclusion_rule_.ShouldExclude(creative_ad)); } TEST_F(BatAdsDaypartExclusionRuleTest, DisallowIfWrongHours) { @@ -199,11 +190,9 @@ TEST_F(BatAdsDaypartExclusionRuleTest, DisallowIfWrongHours) { creative_ad.dayparts.push_back(daypart_1); // Act - DaypartExclusionRule exclusion_rule; - const bool should_exclude = exclusion_rule.ShouldExclude(creative_ad); // Assert - EXPECT_TRUE(should_exclude); + EXPECT_TRUE(exclusion_rule_.ShouldExclude(creative_ad)); } } // namespace brave_ads diff --git a/components/brave_ads/core/internal/ads/serving/eligible_ads/exclusion_rules/dislike_exclusion_rule_unittest.cc b/components/brave_ads/core/internal/ads/serving/eligible_ads/exclusion_rules/dislike_exclusion_rule_unittest.cc index c29c71ea1de0..8dafa99ea5c9 100644 --- a/components/brave_ads/core/internal/ads/serving/eligible_ads/exclusion_rules/dislike_exclusion_rule_unittest.cc +++ b/components/brave_ads/core/internal/ads/serving/eligible_ads/exclusion_rules/dislike_exclusion_rule_unittest.cc @@ -14,7 +14,10 @@ namespace brave_ads { -class BatAdsDislikeExclusionRuleTest : public UnitTestBase {}; +class BatAdsDislikeExclusionRuleTest : public UnitTestBase { + protected: + DislikeExclusionRule exclusion_rule_; +}; TEST_F(BatAdsDislikeExclusionRuleTest, AllowAd) { // Arrange @@ -22,11 +25,9 @@ TEST_F(BatAdsDislikeExclusionRuleTest, AllowAd) { creative_ad.advertiser_id = kAdvertiserId; // Act - DislikeExclusionRule exclusion_rule; - const bool should_exclude = exclusion_rule.ShouldExclude(creative_ad); // Assert - EXPECT_FALSE(should_exclude); + EXPECT_FALSE(exclusion_rule_.ShouldExclude(creative_ad)); } TEST_F(BatAdsDislikeExclusionRuleTest, DoNotAllowAd) { @@ -40,11 +41,9 @@ TEST_F(BatAdsDislikeExclusionRuleTest, DoNotAllowAd) { ClientStateManager::GetInstance()->ToggleDislikeAd(ad_content); // Act - DislikeExclusionRule exclusion_rule; - const bool should_exclude = exclusion_rule.ShouldExclude(creative_ad); // Assert - EXPECT_TRUE(should_exclude); + EXPECT_TRUE(exclusion_rule_.ShouldExclude(creative_ad)); } } // namespace brave_ads diff --git a/components/brave_ads/core/internal/ads/serving/eligible_ads/exclusion_rules/marked_as_inappropriate_exclusion_rule_unittest.cc b/components/brave_ads/core/internal/ads/serving/eligible_ads/exclusion_rules/marked_as_inappropriate_exclusion_rule_unittest.cc index 9347012dee93..be2557b1dda6 100644 --- a/components/brave_ads/core/internal/ads/serving/eligible_ads/exclusion_rules/marked_as_inappropriate_exclusion_rule_unittest.cc +++ b/components/brave_ads/core/internal/ads/serving/eligible_ads/exclusion_rules/marked_as_inappropriate_exclusion_rule_unittest.cc @@ -14,7 +14,10 @@ namespace brave_ads { -class BatAdsMarkedAsInappropriateExclusionRuleTest : public UnitTestBase {}; +class BatAdsMarkedAsInappropriateExclusionRuleTest : public UnitTestBase { + protected: + MarkedAsInappropriateExclusionRule exclusion_rule_; +}; TEST_F(BatAdsMarkedAsInappropriateExclusionRuleTest, AllowAd) { // Arrange @@ -23,11 +26,9 @@ TEST_F(BatAdsMarkedAsInappropriateExclusionRuleTest, AllowAd) { creative_ad.creative_set_id = kCreativeSetId; // Act - MarkedAsInappropriateExclusionRule exclusion_rule; - const bool should_exclude = exclusion_rule.ShouldExclude(creative_ad); // Assert - EXPECT_FALSE(should_exclude); + EXPECT_FALSE(exclusion_rule_.ShouldExclude(creative_ad)); } TEST_F(BatAdsMarkedAsInappropriateExclusionRuleTest, DoNotAllowAd) { @@ -39,15 +40,12 @@ TEST_F(BatAdsMarkedAsInappropriateExclusionRuleTest, DoNotAllowAd) { AdContentInfo ad_content; ad_content.creative_set_id = kCreativeSetId; ad_content.is_flagged = false; - ClientStateManager::GetInstance()->ToggleMarkAdAsInappropriate(ad_content); // Act - MarkedAsInappropriateExclusionRule exclusion_rule; - const bool should_exclude = exclusion_rule.ShouldExclude(creative_ad); // Assert - EXPECT_TRUE(should_exclude); + EXPECT_TRUE(exclusion_rule_.ShouldExclude(creative_ad)); } } // namespace brave_ads diff --git a/components/brave_ads/core/internal/ads/serving/eligible_ads/exclusion_rules/marked_to_no_longer_receive_exclusion_rule_unittest.cc b/components/brave_ads/core/internal/ads/serving/eligible_ads/exclusion_rules/marked_to_no_longer_receive_exclusion_rule_unittest.cc index 9e6d59409908..f7e7ba4f15e3 100644 --- a/components/brave_ads/core/internal/ads/serving/eligible_ads/exclusion_rules/marked_to_no_longer_receive_exclusion_rule_unittest.cc +++ b/components/brave_ads/core/internal/ads/serving/eligible_ads/exclusion_rules/marked_to_no_longer_receive_exclusion_rule_unittest.cc @@ -13,7 +13,10 @@ namespace brave_ads { -class BatAdsMarkedToNoLongerReceiveExclusionRuleTest : public UnitTestBase {}; +class BatAdsMarkedToNoLongerReceiveExclusionRuleTest : public UnitTestBase { + protected: + MarkedToNoLongerReceiveExclusionRule exclusion_rule_; +}; TEST_F(BatAdsMarkedToNoLongerReceiveExclusionRuleTest, AllowAd) { // Arrange @@ -21,11 +24,9 @@ TEST_F(BatAdsMarkedToNoLongerReceiveExclusionRuleTest, AllowAd) { creative_ad.segment = kSegment; // Act - MarkedToNoLongerReceiveExclusionRule exclusion_rule; - const bool should_exclude = exclusion_rule.ShouldExclude(creative_ad); // Assert - EXPECT_FALSE(should_exclude); + EXPECT_FALSE(exclusion_rule_.ShouldExclude(creative_ad)); } TEST_F(BatAdsMarkedToNoLongerReceiveExclusionRuleTest, DoNotAllowAd) { @@ -37,11 +38,9 @@ TEST_F(BatAdsMarkedToNoLongerReceiveExclusionRuleTest, DoNotAllowAd) { creative_ad.segment, CategoryContentOptActionType::kNone); // Act - MarkedToNoLongerReceiveExclusionRule exclusion_rule; - const bool should_exclude = exclusion_rule.ShouldExclude(creative_ad); // Assert - EXPECT_TRUE(should_exclude); + EXPECT_TRUE(exclusion_rule_.ShouldExclude(creative_ad)); } } // namespace brave_ads diff --git a/components/brave_ads/core/internal/ads/serving/eligible_ads/exclusion_rules/notification_ads/notification_ad_dismissed_exclusion_rule_unittest.cc b/components/brave_ads/core/internal/ads/serving/eligible_ads/exclusion_rules/notification_ads/notification_ad_dismissed_exclusion_rule_unittest.cc index 949aa5021943..b04f9713b5d2 100644 --- a/components/brave_ads/core/internal/ads/serving/eligible_ads/exclusion_rules/notification_ads/notification_ad_dismissed_exclusion_rule_unittest.cc +++ b/components/brave_ads/core/internal/ads/serving/eligible_ads/exclusion_rules/notification_ads/notification_ad_dismissed_exclusion_rule_unittest.cc @@ -33,21 +33,19 @@ TEST_F(BatAdsDismissedExclusionRuleTest, AllowAdIfThereIsNoAdsHistory) { creative_ad.creative_instance_id = kCreativeInstanceId; creative_ad.campaign_id = kCampaignIds[0]; - const AdEventList ad_events; + DismissedExclusionRule exclusion_rule({}); // Act - DismissedExclusionRule exclusion_rule(ad_events); - const bool should_exclude = exclusion_rule.ShouldExclude(creative_ad); // Assert - EXPECT_FALSE(should_exclude); + EXPECT_FALSE(exclusion_rule.ShouldExclude(creative_ad)); } TEST_F(BatAdsDismissedExclusionRuleTest, - AllowAdWithSameCampaignIdWithin48HoursIfDismissed) { + AllowAdWithSameCampaignIdWithin2DaysIfDismissed) { // Arrange base::FieldTrialParams params; - params["should_exclude_ad_if_dismissed_within_time_window"] = "48h"; + params["should_exclude_ad_if_dismissed_within_time_window"] = "2d"; std::vector enabled_features; enabled_features.emplace_back(kExclusionRulesFeature, params); @@ -76,23 +74,23 @@ TEST_F(BatAdsDismissedExclusionRuleTest, AdvanceClockBy(base::Minutes(5)); } - AdvanceClockBy(base::Hours(48) - + DismissedExclusionRule exclusion_rule(ad_events); + + AdvanceClockBy(base::Days(2) - (base::Minutes(5) * confirmation_types.size()) - base::Milliseconds(1)); // Act - DismissedExclusionRule exclusion_rule(ad_events); - const bool should_exclude = exclusion_rule.ShouldExclude(creative_ad); // Assert - EXPECT_FALSE(should_exclude); + EXPECT_FALSE(exclusion_rule.ShouldExclude(creative_ad)); } TEST_F(BatAdsDismissedExclusionRuleTest, - AllowAdWithSameCampaignIdWithin48HoursIfDismissedForMultipleTypes) { + AllowAdWithSameCampaignIdWithin2DaysIfDismissedForMultipleTypes) { // Arrange base::FieldTrialParams params; - params["should_exclude_ad_if_dismissed_within_time_window"] = "48h"; + params["should_exclude_ad_if_dismissed_within_time_window"] = "2d"; std::vector enabled_features; enabled_features.emplace_back(kExclusionRulesFeature, params); @@ -127,19 +125,19 @@ TEST_F(BatAdsDismissedExclusionRuleTest, ConfirmationType::kDismissed, Now()); ad_events.push_back(ad_event_4); - // Act DismissedExclusionRule exclusion_rule(ad_events); - const bool should_exclude = exclusion_rule.ShouldExclude(creative_ad); + + // Act // Assert - EXPECT_FALSE(should_exclude); + EXPECT_FALSE(exclusion_rule.ShouldExclude(creative_ad)); } TEST_F(BatAdsDismissedExclusionRuleTest, - AllowAdWithSameCampaignIdWithin48HoursIfDismissedThenClicked) { + AllowAdWithSameCampaignIdWithin2DaysIfDismissedThenClicked) { // Arrange base::FieldTrialParams params; - params["should_exclude_ad_if_dismissed_within_time_window"] = "48h"; + params["should_exclude_ad_if_dismissed_within_time_window"] = "2d"; std::vector enabled_features; enabled_features.emplace_back(kExclusionRulesFeature, params); @@ -167,23 +165,23 @@ TEST_F(BatAdsDismissedExclusionRuleTest, AdvanceClockBy(base::Minutes(5)); } - AdvanceClockBy(base::Hours(48) - + DismissedExclusionRule exclusion_rule(ad_events); + + AdvanceClockBy(base::Days(2) - (base::Minutes(5) * confirmation_types.size()) - base::Milliseconds(1)); // Act - DismissedExclusionRule exclusion_rule(ad_events); - const bool should_exclude = exclusion_rule.ShouldExclude(creative_ad); // Assert - EXPECT_FALSE(should_exclude); + EXPECT_FALSE(exclusion_rule.ShouldExclude(creative_ad)); } TEST_F(BatAdsDismissedExclusionRuleTest, - AllowAdWithSameCampaignIdAfter48HoursIfDismissedThenClicked) { + AllowAdWithSameCampaignIdAfter2DaysIfDismissedThenClicked) { // Arrange base::FieldTrialParams params; - params["should_exclude_ad_if_dismissed_within_time_window"] = "48h"; + params["should_exclude_ad_if_dismissed_within_time_window"] = "2d"; std::vector enabled_features; enabled_features.emplace_back(kExclusionRulesFeature, params); @@ -211,22 +209,22 @@ TEST_F(BatAdsDismissedExclusionRuleTest, AdvanceClockBy(base::Minutes(5)); } - AdvanceClockBy(base::Hours(48) - + DismissedExclusionRule exclusion_rule(ad_events); + + AdvanceClockBy(base::Days(2) - (base::Minutes(5) * confirmation_types.size())); // Act - DismissedExclusionRule exclusion_rule(ad_events); - const bool should_exclude = exclusion_rule.ShouldExclude(creative_ad); // Assert - EXPECT_FALSE(should_exclude); + EXPECT_FALSE(exclusion_rule.ShouldExclude(creative_ad)); } TEST_F(BatAdsDismissedExclusionRuleTest, - AllowAdWithSameCampaignIdWithin48HoursIfClickedThenDismissed) { + AllowAdWithSameCampaignIdWithin2DaysIfClickedThenDismissed) { // Arrange base::FieldTrialParams params; - params["should_exclude_ad_if_dismissed_within_time_window"] = "48h"; + params["should_exclude_ad_if_dismissed_within_time_window"] = "2d"; std::vector enabled_features; enabled_features.emplace_back(kExclusionRulesFeature, params); @@ -254,23 +252,23 @@ TEST_F(BatAdsDismissedExclusionRuleTest, AdvanceClockBy(base::Minutes(5)); } - AdvanceClockBy(base::Hours(48) - + DismissedExclusionRule exclusion_rule(ad_events); + + AdvanceClockBy(base::Days(2) - (base::Minutes(5) * confirmation_types.size()) - base::Milliseconds(1)); // Act - DismissedExclusionRule exclusion_rule(ad_events); - const bool should_exclude = exclusion_rule.ShouldExclude(creative_ad); // Assert - EXPECT_FALSE(should_exclude); + EXPECT_FALSE(exclusion_rule.ShouldExclude(creative_ad)); } TEST_F(BatAdsDismissedExclusionRuleTest, - AllowAdWithSameCampaignIdAfter48HoursIfClickedThenDismissed) { + AllowAdWithSameCampaignIdAfter2DaysIfClickedThenDismissed) { // Arrange base::FieldTrialParams params; - params["should_exclude_ad_if_dismissed_within_time_window"] = "48h"; + params["should_exclude_ad_if_dismissed_within_time_window"] = "2d"; std::vector enabled_features; enabled_features.emplace_back(kExclusionRulesFeature, params); @@ -298,22 +296,22 @@ TEST_F(BatAdsDismissedExclusionRuleTest, AdvanceClockBy(base::Minutes(5)); } - AdvanceClockBy(base::Hours(48) - + DismissedExclusionRule exclusion_rule(ad_events); + + AdvanceClockBy(base::Days(2) - (base::Minutes(5) * confirmation_types.size())); // Act - DismissedExclusionRule exclusion_rule(ad_events); - const bool should_exclude = exclusion_rule.ShouldExclude(creative_ad); // Assert - EXPECT_FALSE(should_exclude); + EXPECT_FALSE(exclusion_rule.ShouldExclude(creative_ad)); } TEST_F(BatAdsDismissedExclusionRuleTest, - AllowAdWithSameCampaignIdAfter48HoursIfClickedThenDismissedTwice) { + AllowAdWithSameCampaignIdAfter2DaysIfClickedThenDismissedTwice) { // Arrange base::FieldTrialParams params; - params["should_exclude_ad_if_dismissed_within_time_window"] = "48h"; + params["should_exclude_ad_if_dismissed_within_time_window"] = "2d"; std::vector enabled_features; enabled_features.emplace_back(kExclusionRulesFeature, params); @@ -342,21 +340,21 @@ TEST_F(BatAdsDismissedExclusionRuleTest, AdvanceClockBy(base::Minutes(5)); } - AdvanceClockBy(base::Hours(48)); + DismissedExclusionRule exclusion_rule(ad_events); + + AdvanceClockBy(base::Days(2)); // Act - DismissedExclusionRule exclusion_rule(ad_events); - const bool should_exclude = exclusion_rule.ShouldExclude(creative_ad); // Assert - EXPECT_FALSE(should_exclude); + EXPECT_FALSE(exclusion_rule.ShouldExclude(creative_ad)); } TEST_F(BatAdsDismissedExclusionRuleTest, - DoNotAllowAdWithSameCampaignIdWithin48HoursIfClickedThenDismissedTwice) { + DoNotAllowAdWithSameCampaignIdWithin2DaysIfClickedThenDismissedTwice) { // Arrange base::FieldTrialParams params; - params["should_exclude_ad_if_dismissed_within_time_window"] = "48h"; + params["should_exclude_ad_if_dismissed_within_time_window"] = "2d"; std::vector enabled_features; enabled_features.emplace_back(kExclusionRulesFeature, params); @@ -385,16 +383,16 @@ TEST_F(BatAdsDismissedExclusionRuleTest, AdvanceClockBy(base::Minutes(5)); } - AdvanceClockBy(base::Hours(48) - + DismissedExclusionRule exclusion_rule(ad_events); + + AdvanceClockBy(base::Days(2) - (base::Minutes(5) * confirmation_types.size()) - base::Milliseconds(1)); // Act - DismissedExclusionRule exclusion_rule(ad_events); - const bool should_exclude = exclusion_rule.ShouldExclude(creative_ad); // Assert - EXPECT_TRUE(should_exclude); + EXPECT_TRUE(exclusion_rule.ShouldExclude(creative_ad)); } TEST_F(BatAdsDismissedExclusionRuleTest, @@ -428,19 +426,19 @@ TEST_F(BatAdsDismissedExclusionRuleTest, ad_events.push_back(ad_event); } - // Act DismissedExclusionRule exclusion_rule(ad_events); - const bool should_exclude = exclusion_rule.ShouldExclude(creative_ad); + + // Act // Assert - EXPECT_FALSE(should_exclude); + EXPECT_FALSE(exclusion_rule.ShouldExclude(creative_ad)); } TEST_F(BatAdsDismissedExclusionRuleTest, - AllowAdWithDifferentCampaignIdWithin48Hours) { + AllowAdWithDifferentCampaignIdWithin2Days) { // Arrange base::FieldTrialParams params; - params["should_exclude_ad_if_dismissed_within_time_window"] = "48h"; + params["should_exclude_ad_if_dismissed_within_time_window"] = "2d"; std::vector enabled_features; enabled_features.emplace_back(kExclusionRulesFeature, params); @@ -472,20 +470,20 @@ TEST_F(BatAdsDismissedExclusionRuleTest, AdvanceClockBy(base::Minutes(5)); } - AdvanceClockBy(base::Hours(48) - + DismissedExclusionRule exclusion_rule(ad_events); + + AdvanceClockBy(base::Days(2) - (base::Minutes(5) * confirmation_types.size()) - base::Milliseconds(1)); // Act - DismissedExclusionRule exclusion_rule(ad_events); - const bool should_exclude = exclusion_rule.ShouldExclude(creative_ad_1); // Assert - EXPECT_FALSE(should_exclude); + EXPECT_FALSE(exclusion_rule.ShouldExclude(creative_ad_1)); } TEST_F(BatAdsDismissedExclusionRuleTest, - AllowAdWithDifferentCampaignIdAfter48Hours) { + AllowAdWithDifferentCampaignIdAfter2Days) { // Arrange CreativeAdInfo creative_ad_1; creative_ad_1.creative_instance_id = kCreativeInstanceId; @@ -509,15 +507,15 @@ TEST_F(BatAdsDismissedExclusionRuleTest, AdvanceClockBy(base::Minutes(5)); } - AdvanceClockBy(base::Hours(48) - + DismissedExclusionRule exclusion_rule(ad_events); + + AdvanceClockBy(base::Days(2) - (base::Minutes(5) * confirmation_types.size())); // Act - DismissedExclusionRule exclusion_rule(ad_events); - const bool should_exclude = exclusion_rule.ShouldExclude(creative_ad_1); // Assert - EXPECT_FALSE(should_exclude); + EXPECT_FALSE(exclusion_rule.ShouldExclude(creative_ad_1)); } } // namespace brave_ads::notification_ads diff --git a/components/brave_ads/core/internal/ads/serving/eligible_ads/exclusion_rules/notification_ads/notification_ad_embedding_exclusion_rule_unittest.cc b/components/brave_ads/core/internal/ads/serving/eligible_ads/exclusion_rules/notification_ads/notification_ad_embedding_exclusion_rule_unittest.cc index 039aaaa6fa42..35bd6fe8a04e 100644 --- a/components/brave_ads/core/internal/ads/serving/eligible_ads/exclusion_rules/notification_ads/notification_ad_embedding_exclusion_rule_unittest.cc +++ b/components/brave_ads/core/internal/ads/serving/eligible_ads/exclusion_rules/notification_ads/notification_ad_embedding_exclusion_rule_unittest.cc @@ -8,6 +8,7 @@ #include #include "base/test/scoped_feature_list.h" +#include "brave/components/brave_ads/core/internal/ads/ad_unittest_constants.h" #include "brave/components/brave_ads/core/internal/ads/serving/notification_ad_serving_features.h" #include "brave/components/brave_ads/core/internal/common/unittest/unittest_base.h" @@ -15,11 +16,10 @@ namespace brave_ads::notification_ads { -namespace { -constexpr char kCreativeSetId[] = "654f10df-fbc4-4a92-8d43-2edf73734a60"; -} // namespace - -class EmbeddingExclusionRuleTest : public UnitTestBase {}; +class EmbeddingExclusionRuleTest : public UnitTestBase { + protected: + EmbeddingExclusionRule exclusion_rule_; +}; TEST_F(EmbeddingExclusionRuleTest, AllowIfNoEmbeddingV2) { // Arrange @@ -38,11 +38,9 @@ TEST_F(EmbeddingExclusionRuleTest, AllowIfNoEmbeddingV2) { disabled_features); // Act - EmbeddingExclusionRule exclusion_rule; - const bool should_exclude = exclusion_rule.ShouldExclude(creative_ad); // Assert - EXPECT_FALSE(should_exclude); + EXPECT_FALSE(exclusion_rule_.ShouldExclude(creative_ad)); } TEST_F(EmbeddingExclusionRuleTest, AllowIfEmbeddingV2) { @@ -63,11 +61,9 @@ TEST_F(EmbeddingExclusionRuleTest, AllowIfEmbeddingV2) { disabled_features); // Act - EmbeddingExclusionRule exclusion_rule; - const bool should_exclude = exclusion_rule.ShouldExclude(creative_ad); // Assert - EXPECT_FALSE(should_exclude); + EXPECT_FALSE(exclusion_rule_.ShouldExclude(creative_ad)); } TEST_F(EmbeddingExclusionRuleTest, DisallowIfNoEmbeddingV3) { @@ -87,18 +83,15 @@ TEST_F(EmbeddingExclusionRuleTest, DisallowIfNoEmbeddingV3) { disabled_features); // Act - EmbeddingExclusionRule exclusion_rule; - const bool should_exclude = exclusion_rule.ShouldExclude(creative_ad); // Assert - EXPECT_TRUE(should_exclude); + EXPECT_TRUE(exclusion_rule_.ShouldExclude(creative_ad)); } TEST_F(EmbeddingExclusionRuleTest, DisallowIfEmptyEmbeddingV3) { // Arrange CreativeAdInfo creative_ad; creative_ad.creative_set_id = kCreativeSetId; - creative_ad.embedding = {}; std::vector enabled_features; base::FieldTrialParams params; @@ -112,11 +105,9 @@ TEST_F(EmbeddingExclusionRuleTest, DisallowIfEmptyEmbeddingV3) { disabled_features); // Act - EmbeddingExclusionRule exclusion_rule; - const bool should_exclude = exclusion_rule.ShouldExclude(creative_ad); // Assert - EXPECT_TRUE(should_exclude); + EXPECT_TRUE(exclusion_rule_.ShouldExclude(creative_ad)); } TEST_F(EmbeddingExclusionRuleTest, AllowIfEmbeddingV3) { @@ -137,11 +128,9 @@ TEST_F(EmbeddingExclusionRuleTest, AllowIfEmbeddingV3) { disabled_features); // Act - EmbeddingExclusionRule exclusion_rule; - const bool should_exclude = exclusion_rule.ShouldExclude(creative_ad); // Assert - EXPECT_FALSE(should_exclude); + EXPECT_FALSE(exclusion_rule_.ShouldExclude(creative_ad)); } } // namespace brave_ads::notification_ads diff --git a/components/brave_ads/core/internal/ads/serving/eligible_ads/exclusion_rules/per_day_exclusion_rule_unittest.cc b/components/brave_ads/core/internal/ads/serving/eligible_ads/exclusion_rules/per_day_exclusion_rule_unittest.cc index ca430d4353be..f068578fc57b 100644 --- a/components/brave_ads/core/internal/ads/serving/eligible_ads/exclusion_rules/per_day_exclusion_rule_unittest.cc +++ b/components/brave_ads/core/internal/ads/serving/eligible_ads/exclusion_rules/per_day_exclusion_rule_unittest.cc @@ -22,14 +22,12 @@ TEST_F(BatAdsPerDayExclusionRuleTest, AllowAdIfThereIsNoAdsHistory) { creative_ad.creative_set_id = kCreativeSetId; creative_ad.per_day = 2; - const AdEventList ad_events; + PerDayExclusionRule exclusion_rule({}); // Act - PerDayExclusionRule exclusion_rule(ad_events); - const bool should_exclude = exclusion_rule.ShouldExclude(creative_ad); // Assert - EXPECT_FALSE(should_exclude); + EXPECT_FALSE(exclusion_rule.ShouldExclude(creative_ad)); } TEST_F(BatAdsPerDayExclusionRuleTest, AllowAdIfZero) { @@ -38,14 +36,12 @@ TEST_F(BatAdsPerDayExclusionRuleTest, AllowAdIfZero) { creative_ad.creative_set_id = kCreativeSetId; creative_ad.per_day = 0; - const AdEventList ad_events; + PerDayExclusionRule exclusion_rule({}); // Act - PerDayExclusionRule exclusion_rule(ad_events); - const bool should_exclude = exclusion_rule.ShouldExclude(creative_ad); // Assert - EXPECT_FALSE(should_exclude); + EXPECT_FALSE(exclusion_rule.ShouldExclude(creative_ad)); } TEST_F(BatAdsPerDayExclusionRuleTest, AllowAdIfDoesNotExceedCap) { @@ -61,12 +57,12 @@ TEST_F(BatAdsPerDayExclusionRuleTest, AllowAdIfDoesNotExceedCap) { ad_events.push_back(ad_event); - // Act PerDayExclusionRule exclusion_rule(ad_events); - const bool should_exclude = exclusion_rule.ShouldExclude(creative_ad); + + // Act // Assert - EXPECT_FALSE(should_exclude); + EXPECT_FALSE(exclusion_rule.ShouldExclude(creative_ad)); } TEST_F(BatAdsPerDayExclusionRuleTest, AllowAdIfDoesNotExceedCapAfter1Day) { @@ -83,14 +79,14 @@ TEST_F(BatAdsPerDayExclusionRuleTest, AllowAdIfDoesNotExceedCapAfter1Day) { ad_events.push_back(ad_event); ad_events.push_back(ad_event); + PerDayExclusionRule exclusion_rule(ad_events); + AdvanceClockBy(base::Days(1)); // Act - PerDayExclusionRule exclusion_rule(ad_events); - const bool should_exclude = exclusion_rule.ShouldExclude(creative_ad); // Assert - EXPECT_FALSE(should_exclude); + EXPECT_FALSE(exclusion_rule.ShouldExclude(creative_ad)); } TEST_F(BatAdsPerDayExclusionRuleTest, DoNotAllowAdIfExceedsCapWithin1Day) { @@ -107,14 +103,14 @@ TEST_F(BatAdsPerDayExclusionRuleTest, DoNotAllowAdIfExceedsCapWithin1Day) { ad_events.push_back(ad_event); ad_events.push_back(ad_event); + PerDayExclusionRule exclusion_rule(ad_events); + AdvanceClockBy(base::Days(1) - base::Milliseconds(1)); // Act - PerDayExclusionRule exclusion_rule(ad_events); - const bool should_exclude = exclusion_rule.ShouldExclude(creative_ad); // Assert - EXPECT_TRUE(should_exclude); + EXPECT_TRUE(exclusion_rule.ShouldExclude(creative_ad)); } TEST_F(BatAdsPerDayExclusionRuleTest, DoNotAllowAdIfExceedsCap) { @@ -131,12 +127,12 @@ TEST_F(BatAdsPerDayExclusionRuleTest, DoNotAllowAdIfExceedsCap) { ad_events.push_back(ad_event); ad_events.push_back(ad_event); - // Act PerDayExclusionRule exclusion_rule(ad_events); - const bool should_exclude = exclusion_rule.ShouldExclude(creative_ad); + + // Act // Assert - EXPECT_TRUE(should_exclude); + EXPECT_TRUE(exclusion_rule.ShouldExclude(creative_ad)); } } // namespace brave_ads diff --git a/components/brave_ads/core/internal/ads/serving/eligible_ads/exclusion_rules/per_month_exclusion_rule_unittest.cc b/components/brave_ads/core/internal/ads/serving/eligible_ads/exclusion_rules/per_month_exclusion_rule_unittest.cc index b7cdcdc92e17..f8364cb6f2c6 100644 --- a/components/brave_ads/core/internal/ads/serving/eligible_ads/exclusion_rules/per_month_exclusion_rule_unittest.cc +++ b/components/brave_ads/core/internal/ads/serving/eligible_ads/exclusion_rules/per_month_exclusion_rule_unittest.cc @@ -22,14 +22,12 @@ TEST_F(BatAdsPerMonthExclusionRuleTest, AllowAdIfThereIsNoAdsHistory) { creative_ad.creative_set_id = kCreativeSetId; creative_ad.per_month = 2; - const AdEventList ad_events; + PerMonthExclusionRule exclusion_rule({}); // Act - PerMonthExclusionRule exclusion_rule(ad_events); - const bool should_exclude = exclusion_rule.ShouldExclude(creative_ad); // Assert - EXPECT_FALSE(should_exclude); + EXPECT_FALSE(exclusion_rule.ShouldExclude(creative_ad)); } TEST_F(BatAdsPerMonthExclusionRuleTest, AllowAdIfZero) { @@ -38,14 +36,12 @@ TEST_F(BatAdsPerMonthExclusionRuleTest, AllowAdIfZero) { creative_ad.creative_set_id = kCreativeSetId; creative_ad.per_month = 0; - const AdEventList ad_events; + PerMonthExclusionRule exclusion_rule({}); // Act - PerMonthExclusionRule exclusion_rule(ad_events); - const bool should_exclude = exclusion_rule.ShouldExclude(creative_ad); // Assert - EXPECT_FALSE(should_exclude); + EXPECT_FALSE(exclusion_rule.ShouldExclude(creative_ad)); } TEST_F(BatAdsPerMonthExclusionRuleTest, AllowAdIfDoesNotExceedCap) { @@ -61,12 +57,12 @@ TEST_F(BatAdsPerMonthExclusionRuleTest, AllowAdIfDoesNotExceedCap) { ad_events.push_back(ad_event); - // Act PerMonthExclusionRule exclusion_rule(ad_events); - const bool should_exclude = exclusion_rule.ShouldExclude(creative_ad); + + // Act // Assert - EXPECT_FALSE(should_exclude); + EXPECT_FALSE(exclusion_rule.ShouldExclude(creative_ad)); } TEST_F(BatAdsPerMonthExclusionRuleTest, AllowAdIfDoesNotExceedCapAfter1Month) { @@ -83,14 +79,14 @@ TEST_F(BatAdsPerMonthExclusionRuleTest, AllowAdIfDoesNotExceedCapAfter1Month) { ad_events.push_back(ad_event); ad_events.push_back(ad_event); + PerMonthExclusionRule exclusion_rule(ad_events); + AdvanceClockBy(base::Days(28)); // Act - PerMonthExclusionRule exclusion_rule(ad_events); - const bool should_exclude = exclusion_rule.ShouldExclude(creative_ad); // Assert - EXPECT_FALSE(should_exclude); + EXPECT_FALSE(exclusion_rule.ShouldExclude(creative_ad)); } TEST_F(BatAdsPerMonthExclusionRuleTest, DoNotAllowAdIfExceedsCapWithin1Month) { @@ -107,14 +103,14 @@ TEST_F(BatAdsPerMonthExclusionRuleTest, DoNotAllowAdIfExceedsCapWithin1Month) { ad_events.push_back(ad_event); ad_events.push_back(ad_event); + PerMonthExclusionRule exclusion_rule(ad_events); + AdvanceClockBy(base::Days(28) - base::Milliseconds(1)); // Act - PerMonthExclusionRule exclusion_rule(ad_events); - const bool should_exclude = exclusion_rule.ShouldExclude(creative_ad); // Assert - EXPECT_TRUE(should_exclude); + EXPECT_TRUE(exclusion_rule.ShouldExclude(creative_ad)); } TEST_F(BatAdsPerMonthExclusionRuleTest, DoNotAllowAdIfExceedsCap) { @@ -131,12 +127,12 @@ TEST_F(BatAdsPerMonthExclusionRuleTest, DoNotAllowAdIfExceedsCap) { ad_events.push_back(ad_event); ad_events.push_back(ad_event); - // Act PerMonthExclusionRule exclusion_rule(ad_events); - const bool should_exclude = exclusion_rule.ShouldExclude(creative_ad); + + // Act // Assert - EXPECT_TRUE(should_exclude); + EXPECT_TRUE(exclusion_rule.ShouldExclude(creative_ad)); } } // namespace brave_ads diff --git a/components/brave_ads/core/internal/ads/serving/eligible_ads/exclusion_rules/per_week_exclusion_rule_unittest.cc b/components/brave_ads/core/internal/ads/serving/eligible_ads/exclusion_rules/per_week_exclusion_rule_unittest.cc index 1dda5162a6db..70e077be3ce8 100644 --- a/components/brave_ads/core/internal/ads/serving/eligible_ads/exclusion_rules/per_week_exclusion_rule_unittest.cc +++ b/components/brave_ads/core/internal/ads/serving/eligible_ads/exclusion_rules/per_week_exclusion_rule_unittest.cc @@ -22,14 +22,12 @@ TEST_F(BatAdsPerWeekExclusionRuleTest, AllowAdIfThereIsNoAdsHistory) { creative_ad.creative_set_id = kCreativeSetId; creative_ad.per_week = 2; - const AdEventList ad_events; + PerWeekExclusionRule exclusion_rule({}); // Act - PerWeekExclusionRule exclusion_rule(ad_events); - const bool should_exclude = exclusion_rule.ShouldExclude(creative_ad); // Assert - EXPECT_FALSE(should_exclude); + EXPECT_FALSE(exclusion_rule.ShouldExclude(creative_ad)); } TEST_F(BatAdsPerWeekExclusionRuleTest, AllowAdIfZero) { @@ -38,14 +36,12 @@ TEST_F(BatAdsPerWeekExclusionRuleTest, AllowAdIfZero) { creative_ad.creative_set_id = kCreativeSetId; creative_ad.per_week = 0; - const AdEventList ad_events; + PerWeekExclusionRule exclusion_rule({}); // Act - PerWeekExclusionRule exclusion_rule(ad_events); - const bool should_exclude = exclusion_rule.ShouldExclude(creative_ad); // Assert - EXPECT_FALSE(should_exclude); + EXPECT_FALSE(exclusion_rule.ShouldExclude(creative_ad)); } TEST_F(BatAdsPerWeekExclusionRuleTest, AllowAdIfDoesNotExceedCap) { @@ -61,12 +57,12 @@ TEST_F(BatAdsPerWeekExclusionRuleTest, AllowAdIfDoesNotExceedCap) { ad_events.push_back(ad_event); - // Act PerWeekExclusionRule exclusion_rule(ad_events); - const bool should_exclude = exclusion_rule.ShouldExclude(creative_ad); + + // Act // Assert - EXPECT_FALSE(should_exclude); + EXPECT_FALSE(exclusion_rule.ShouldExclude(creative_ad)); } TEST_F(BatAdsPerWeekExclusionRuleTest, AllowAdIfDoesNotExceedCapAfter1Week) { @@ -83,14 +79,14 @@ TEST_F(BatAdsPerWeekExclusionRuleTest, AllowAdIfDoesNotExceedCapAfter1Week) { ad_events.push_back(ad_event); ad_events.push_back(ad_event); + PerWeekExclusionRule exclusion_rule(ad_events); + AdvanceClockBy(base::Days(7)); // Act - PerWeekExclusionRule exclusion_rule(ad_events); - const bool should_exclude = exclusion_rule.ShouldExclude(creative_ad); // Assert - EXPECT_FALSE(should_exclude); + EXPECT_FALSE(exclusion_rule.ShouldExclude(creative_ad)); } TEST_F(BatAdsPerWeekExclusionRuleTest, DoNotAllowAdIfExceedsCapWithin1Week) { @@ -107,14 +103,14 @@ TEST_F(BatAdsPerWeekExclusionRuleTest, DoNotAllowAdIfExceedsCapWithin1Week) { ad_events.push_back(ad_event); ad_events.push_back(ad_event); + PerWeekExclusionRule exclusion_rule(ad_events); + AdvanceClockBy(base::Days(7) - base::Milliseconds(1)); // Act - PerWeekExclusionRule exclusion_rule(ad_events); - const bool should_exclude = exclusion_rule.ShouldExclude(creative_ad); // Assert - EXPECT_TRUE(should_exclude); + EXPECT_TRUE(exclusion_rule.ShouldExclude(creative_ad)); } TEST_F(BatAdsPerWeekExclusionRuleTest, DoNotAllowAdIfExceedsCap) { @@ -131,12 +127,12 @@ TEST_F(BatAdsPerWeekExclusionRuleTest, DoNotAllowAdIfExceedsCap) { ad_events.push_back(ad_event); ad_events.push_back(ad_event); - // Act PerWeekExclusionRule exclusion_rule(ad_events); - const bool should_exclude = exclusion_rule.ShouldExclude(creative_ad); + + // Act // Assert - EXPECT_TRUE(should_exclude); + EXPECT_TRUE(exclusion_rule.ShouldExclude(creative_ad)); } } // namespace brave_ads diff --git a/components/brave_ads/core/internal/ads/serving/eligible_ads/exclusion_rules/split_test_exclusion_rule_unittest.cc b/components/brave_ads/core/internal/ads/serving/eligible_ads/exclusion_rules/split_test_exclusion_rule_unittest.cc index d10b10ca7902..0f681d4995fb 100644 --- a/components/brave_ads/core/internal/ads/serving/eligible_ads/exclusion_rules/split_test_exclusion_rule_unittest.cc +++ b/components/brave_ads/core/internal/ads/serving/eligible_ads/exclusion_rules/split_test_exclusion_rule_unittest.cc @@ -29,7 +29,10 @@ scoped_refptr CreateFieldTrial( } // namespace -class BatAdsSplitTestExclusionRuleTest : public UnitTestBase {}; +class BatAdsSplitTestExclusionRuleTest : public UnitTestBase { + protected: + SplitTestExclusionRule exclusion_rule_; +}; TEST_F(BatAdsSplitTestExclusionRuleTest, AllowIfNoFieldTrialAndNoAdGroup) { // Arrange @@ -37,11 +40,9 @@ TEST_F(BatAdsSplitTestExclusionRuleTest, AllowIfNoFieldTrialAndNoAdGroup) { creative_ad.creative_set_id = kCreativeSetId; // Act - SplitTestExclusionRule exclusion_rule; - const bool should_exclude = exclusion_rule.ShouldExclude(creative_ad); // Assert - EXPECT_FALSE(should_exclude); + EXPECT_FALSE(exclusion_rule_.ShouldExclude(creative_ad)); } TEST_F(BatAdsSplitTestExclusionRuleTest, DoNotAllowIfNoFieldTrialAndAdGroup) { @@ -51,11 +52,9 @@ TEST_F(BatAdsSplitTestExclusionRuleTest, DoNotAllowIfNoFieldTrialAndAdGroup) { creative_ad.split_test_group = "GroupA"; // Act - SplitTestExclusionRule exclusion_rule; - const bool should_exclude = exclusion_rule.ShouldExclude(creative_ad); // Assert - EXPECT_TRUE(should_exclude); + EXPECT_TRUE(exclusion_rule_.ShouldExclude(creative_ad)); } TEST_F(BatAdsSplitTestExclusionRuleTest, AllowIfFieldTrialAndNoAdGroup) { @@ -68,11 +67,9 @@ TEST_F(BatAdsSplitTestExclusionRuleTest, AllowIfFieldTrialAndNoAdGroup) { field_trial->AppendGroup(kGroupName, /*group_probability*/ 100); // Act - SplitTestExclusionRule exclusion_rule; - const bool should_exclude = exclusion_rule.ShouldExclude(creative_ad); // Assert - EXPECT_FALSE(should_exclude); + EXPECT_FALSE(exclusion_rule_.ShouldExclude(creative_ad)); } TEST_F(BatAdsSplitTestExclusionRuleTest, AllowIfFieldTrialMatchesAdGroup) { @@ -86,11 +83,9 @@ TEST_F(BatAdsSplitTestExclusionRuleTest, AllowIfFieldTrialMatchesAdGroup) { field_trial->AppendGroup(kGroupName, /*group_probability*/ 100); // Act - SplitTestExclusionRule exclusion_rule; - const bool should_exclude = exclusion_rule.ShouldExclude(creative_ad); // Assert - EXPECT_FALSE(should_exclude); + EXPECT_FALSE(exclusion_rule_.ShouldExclude(creative_ad)); } TEST_F(BatAdsSplitTestExclusionRuleTest, @@ -105,11 +100,9 @@ TEST_F(BatAdsSplitTestExclusionRuleTest, field_trial->AppendGroup(kGroupName, /*group_probability*/ 100); // Act - SplitTestExclusionRule exclusion_rule; - const bool should_exclude = exclusion_rule.ShouldExclude(creative_ad); // Assert - EXPECT_TRUE(should_exclude); + EXPECT_TRUE(exclusion_rule_.ShouldExclude(creative_ad)); } } // namespace brave_ads diff --git a/components/brave_ads/core/internal/ads/serving/eligible_ads/exclusion_rules/subdivision_targeting_exclusion_rule_unittest.cc b/components/brave_ads/core/internal/ads/serving/eligible_ads/exclusion_rules/subdivision_targeting_exclusion_rule_unittest.cc index 460a74d3080d..0ebd2352470a 100644 --- a/components/brave_ads/core/internal/ads/serving/eligible_ads/exclusion_rules/subdivision_targeting_exclusion_rule_unittest.cc +++ b/components/brave_ads/core/internal/ads/serving/eligible_ads/exclusion_rules/subdivision_targeting_exclusion_rule_unittest.cc @@ -98,10 +98,9 @@ TEST_P(BatAdsSubdivisionTargetingExclusionRuleTest, creative_ad.geo_targets = {GetSubdivisionParam()}; // Act - const bool should_exclude = exclusion_rule_->ShouldExclude(creative_ad); // Assert - EXPECT_FALSE(should_exclude); + EXPECT_FALSE(exclusion_rule_->ShouldExclude(creative_ad)); } TEST_P(BatAdsSubdivisionTargetingExclusionRuleTest, @@ -119,10 +118,9 @@ TEST_P(BatAdsSubdivisionTargetingExclusionRuleTest, GetAdditionalSubdivisionParam()}; // Act - const bool should_exclude = exclusion_rule_->ShouldExclude(creative_ad); // Assert - EXPECT_FALSE(should_exclude); + EXPECT_FALSE(exclusion_rule_->ShouldExclude(creative_ad)); } TEST_P( @@ -140,10 +138,9 @@ TEST_P( creative_ad.geo_targets = {GetCountryParam()}; // Act - const bool should_exclude = exclusion_rule_->ShouldExclude(creative_ad); // Assert - EXPECT_FALSE(should_exclude); + EXPECT_FALSE(exclusion_rule_->ShouldExclude(creative_ad)); } TEST_P(BatAdsSubdivisionTargetingExclusionRuleTest, @@ -160,10 +157,9 @@ TEST_P(BatAdsSubdivisionTargetingExclusionRuleTest, creative_ad.geo_targets = {GetSubdivisionParam()}; // Act - const bool should_exclude = exclusion_rule_->ShouldExclude(creative_ad); // Assert - EXPECT_FALSE(should_exclude); + EXPECT_FALSE(exclusion_rule_->ShouldExclude(creative_ad)); } TEST_P( @@ -181,10 +177,9 @@ TEST_P( creative_ad.geo_targets = {GetCountryParam()}; // Act - const bool should_exclude = exclusion_rule_->ShouldExclude(creative_ad); // Assert - EXPECT_FALSE(should_exclude); + EXPECT_FALSE(exclusion_rule_->ShouldExclude(creative_ad)); } TEST_P(BatAdsSubdivisionTargetingExclusionRuleTest, @@ -195,10 +190,9 @@ TEST_P(BatAdsSubdivisionTargetingExclusionRuleTest, creative_ad.geo_targets = {GetSubdivisionParam()}; // Act - const bool should_exclude = exclusion_rule_->ShouldExclude(creative_ad); // Assert - EXPECT_TRUE(should_exclude); + EXPECT_TRUE(exclusion_rule_->ShouldExclude(creative_ad)); } TEST_P(BatAdsSubdivisionTargetingExclusionRuleTest, @@ -215,10 +209,9 @@ TEST_P(BatAdsSubdivisionTargetingExclusionRuleTest, creative_ad.geo_targets = {GetUnsupportedSubdivisionParam()}; // Act - const bool should_exclude = exclusion_rule_->ShouldExclude(creative_ad); // Assert - EXPECT_TRUE(should_exclude); + EXPECT_TRUE(exclusion_rule_->ShouldExclude(creative_ad)); } TEST_P( @@ -236,16 +229,16 @@ TEST_P( creative_ad.geo_targets = {"GB-DEV"}; // Act - const bool should_exclude = exclusion_rule_->ShouldExclude(creative_ad); // Assert - EXPECT_TRUE(should_exclude); + EXPECT_TRUE(exclusion_rule_->ShouldExclude(creative_ad)); } TEST_P(BatAdsSubdivisionTargetingExclusionRuleTest, AllowAdIfSubdivisionTargetingIsNotSupportedForNonSubdivisionGeoTarget) { // Arrange - const URLResponseMap url_responses = {{"/v1/getstate", {{net::HTTP_OK, R"( + const URLResponseMap url_responses = { + {"/v1/getstate", {{net::HTTP_OK, /*response_body*/ R"( {"country":"XX", "region":"NO REGION"} )"}}}}; MockUrlResponses(ads_client_mock_, url_responses); @@ -257,10 +250,9 @@ TEST_P(BatAdsSubdivisionTargetingExclusionRuleTest, creative_ad.geo_targets = {"XX"}; // Act - const bool should_exclude = exclusion_rule_->ShouldExclude(creative_ad); // Assert - EXPECT_FALSE(should_exclude); + EXPECT_FALSE(exclusion_rule_->ShouldExclude(creative_ad)); } TEST_P(BatAdsSubdivisionTargetingExclusionRuleTest, @@ -280,10 +272,9 @@ TEST_P(BatAdsSubdivisionTargetingExclusionRuleTest, creative_ad.geo_targets = {GetSubdivisionParam()}; // Act - const bool should_exclude = exclusion_rule_->ShouldExclude(creative_ad); // Assert - EXPECT_TRUE(should_exclude); + EXPECT_TRUE(exclusion_rule_->ShouldExclude(creative_ad)); } TEST_P(BatAdsSubdivisionTargetingExclusionRuleTest, @@ -303,10 +294,9 @@ TEST_P(BatAdsSubdivisionTargetingExclusionRuleTest, creative_ad.geo_targets = {GetCountryParam()}; // Act - const bool should_exclude = exclusion_rule_->ShouldExclude(creative_ad); // Assert - EXPECT_FALSE(should_exclude); + EXPECT_FALSE(exclusion_rule_->ShouldExclude(creative_ad)); } constexpr SubdivisionTargetingExclusionRuleTestParam kTests[] = { diff --git a/components/brave_ads/core/internal/ads/serving/eligible_ads/exclusion_rules/total_max_exclusion_rule_unittest.cc b/components/brave_ads/core/internal/ads/serving/eligible_ads/exclusion_rules/total_max_exclusion_rule_unittest.cc index a2d3593e54e7..e441f9fc7e37 100644 --- a/components/brave_ads/core/internal/ads/serving/eligible_ads/exclusion_rules/total_max_exclusion_rule_unittest.cc +++ b/components/brave_ads/core/internal/ads/serving/eligible_ads/exclusion_rules/total_max_exclusion_rule_unittest.cc @@ -31,14 +31,12 @@ TEST_F(BatAdsTotalMaxExclusionRuleTest, AllowAdIfThereIsNoAdsHistory) { creative_ad.creative_set_id = kCreativeSetIds[0]; creative_ad.total_max = 2; - const AdEventList ad_events; + TotalMaxExclusionRule exclusion_rule({}); // Act - TotalMaxExclusionRule exclusion_rule(ad_events); - const bool should_exclude = exclusion_rule.ShouldExclude(creative_ad); // Assert - EXPECT_FALSE(should_exclude); + EXPECT_FALSE(exclusion_rule.ShouldExclude(creative_ad)); } TEST_F(BatAdsTotalMaxExclusionRuleTest, AllowAdIfDoesNotExceedCap) { @@ -54,12 +52,12 @@ TEST_F(BatAdsTotalMaxExclusionRuleTest, AllowAdIfDoesNotExceedCap) { ad_events.push_back(ad_event); - // Act TotalMaxExclusionRule exclusion_rule(ad_events); - const bool should_exclude = exclusion_rule.ShouldExclude(creative_ad); + + // Act // Assert - EXPECT_FALSE(should_exclude); + EXPECT_FALSE(exclusion_rule.ShouldExclude(creative_ad)); } TEST_F(BatAdsTotalMaxExclusionRuleTest, @@ -80,12 +78,12 @@ TEST_F(BatAdsTotalMaxExclusionRuleTest, ad_events.push_back(ad_event); ad_events.push_back(ad_event); - // Act TotalMaxExclusionRule exclusion_rule(ad_events); - const bool should_exclude = exclusion_rule.ShouldExclude(creative_ad_1); + + // Act // Assert - EXPECT_FALSE(should_exclude); + EXPECT_FALSE(exclusion_rule.ShouldExclude(creative_ad_1)); } TEST_F(BatAdsTotalMaxExclusionRuleTest, DoNotAllowAdIfExceedsZeroCap) { @@ -94,14 +92,12 @@ TEST_F(BatAdsTotalMaxExclusionRuleTest, DoNotAllowAdIfExceedsZeroCap) { creative_ad.creative_set_id = kCreativeSetIds[0]; creative_ad.total_max = 0; - const AdEventList ad_events; + TotalMaxExclusionRule exclusion_rule({}); // Act - TotalMaxExclusionRule exclusion_rule(ad_events); - const bool should_exclude = exclusion_rule.ShouldExclude(creative_ad); // Assert - EXPECT_TRUE(should_exclude); + EXPECT_TRUE(exclusion_rule.ShouldExclude(creative_ad)); } TEST_F(BatAdsTotalMaxExclusionRuleTest, DoNotAllowAdIfExceedsCap) { @@ -118,12 +114,12 @@ TEST_F(BatAdsTotalMaxExclusionRuleTest, DoNotAllowAdIfExceedsCap) { ad_events.push_back(ad_event); ad_events.push_back(ad_event); - // Act TotalMaxExclusionRule exclusion_rule(ad_events); - const bool should_exclude = exclusion_rule.ShouldExclude(creative_ad); + + // Act // Assert - EXPECT_TRUE(should_exclude); + EXPECT_TRUE(exclusion_rule.ShouldExclude(creative_ad)); } } // namespace brave_ads diff --git a/components/brave_ads/core/internal/ads/serving/eligible_ads/exclusion_rules/transferred_exclusion_rule_unittest.cc b/components/brave_ads/core/internal/ads/serving/eligible_ads/exclusion_rules/transferred_exclusion_rule_unittest.cc index 783da52ca9b8..4f1e791a31eb 100644 --- a/components/brave_ads/core/internal/ads/serving/eligible_ads/exclusion_rules/transferred_exclusion_rule_unittest.cc +++ b/components/brave_ads/core/internal/ads/serving/eligible_ads/exclusion_rules/transferred_exclusion_rule_unittest.cc @@ -33,21 +33,19 @@ TEST_F(BatAdsTransferredExclusionRuleTest, AllowAdIfThereIsNoAdsHistory) { creative_ad.creative_instance_id = kCreativeInstanceId; creative_ad.campaign_id = kCampaignIds[0]; - const AdEventList ad_events; + TransferredExclusionRule exclusion_rule({}); // Act - TransferredExclusionRule exclusion_rule(ad_events); - const bool should_exclude = exclusion_rule.ShouldExclude(creative_ad); // Assert - EXPECT_FALSE(should_exclude); + EXPECT_FALSE(exclusion_rule.ShouldExclude(creative_ad)); } TEST_F(BatAdsTransferredExclusionRuleTest, - AllowAdWithDifferentCampaignIdWithin48Hours) { + AllowAdWithDifferentCampaignIdWithin2Days) { // Arrange base::FieldTrialParams params; - params["should_exclude_ad_if_transferred_within_time_window"] = "48h"; + params["should_exclude_ad_if_transferred_within_time_window"] = "2d"; std::vector enabled_features; enabled_features.emplace_back(kExclusionRulesFeature, params); @@ -73,21 +71,21 @@ TEST_F(BatAdsTransferredExclusionRuleTest, ad_events.push_back(ad_event); - AdvanceClockBy(base::Hours(48) - base::Milliseconds(1)); + TransferredExclusionRule exclusion_rule(ad_events); + + AdvanceClockBy(base::Days(2) - base::Milliseconds(1)); // Act - TransferredExclusionRule exclusion_rule(ad_events); - const bool should_exclude = exclusion_rule.ShouldExclude(creative_ad_1); // Assert - EXPECT_FALSE(should_exclude); + EXPECT_FALSE(exclusion_rule.ShouldExclude(creative_ad_1)); } TEST_F(BatAdsTransferredExclusionRuleTest, - AllowAdWithDifferentCampaignIdWithin48HoursForMultipleTypes) { + AllowAdWithDifferentCampaignIdWithin2DaysForMultipleTypes) { // Arrange base::FieldTrialParams params; - params["should_exclude_ad_if_transferred_within_time_window"] = "48h"; + params["should_exclude_ad_if_transferred_within_time_window"] = "2d"; std::vector enabled_features; enabled_features.emplace_back(kExclusionRulesFeature, params); @@ -127,21 +125,21 @@ TEST_F(BatAdsTransferredExclusionRuleTest, ConfirmationType::kTransferred, Now()); ad_events.push_back(ad_event_3); - AdvanceClockBy(base::Hours(48) - base::Milliseconds(1)); + TransferredExclusionRule exclusion_rule(ad_events); + + AdvanceClockBy(base::Days(2) - base::Milliseconds(1)); // Act - TransferredExclusionRule exclusion_rule(ad_events); - const bool should_exclude = exclusion_rule.ShouldExclude(creative_ad_1); // Assert - EXPECT_FALSE(should_exclude); + EXPECT_FALSE(exclusion_rule.ShouldExclude(creative_ad_1)); } TEST_F(BatAdsTransferredExclusionRuleTest, - DoNotAllowAdWithSameCampaignIdWithin48Hours) { + DoNotAllowAdWithSameCampaignIdWithin2Days) { // Arrange base::FieldTrialParams params; - params["should_exclude_ad_if_transferred_within_time_window"] = "48h"; + params["should_exclude_ad_if_transferred_within_time_window"] = "2d"; std::vector enabled_features; enabled_features.emplace_back(kExclusionRulesFeature, params); @@ -163,14 +161,14 @@ TEST_F(BatAdsTransferredExclusionRuleTest, ad_events.push_back(ad_event); - AdvanceClockBy(base::Hours(48) - base::Milliseconds(1)); + TransferredExclusionRule exclusion_rule(ad_events); + + AdvanceClockBy(base::Days(2) - base::Milliseconds(1)); // Act - TransferredExclusionRule exclusion_rule(ad_events); - const bool should_exclude = exclusion_rule.ShouldExclude(creative_ad); // Assert - EXPECT_TRUE(should_exclude); + EXPECT_TRUE(exclusion_rule.ShouldExclude(creative_ad)); } TEST_F(BatAdsTransferredExclusionRuleTest, @@ -199,21 +197,21 @@ TEST_F(BatAdsTransferredExclusionRuleTest, ad_events.push_back(ad_event); - AdvanceClockBy(base::Hours(48) - base::Milliseconds(1)); + TransferredExclusionRule exclusion_rule(ad_events); + + AdvanceClockBy(base::Days(2) - base::Milliseconds(1)); // Act - TransferredExclusionRule exclusion_rule(ad_events); - const bool should_exclude = exclusion_rule.ShouldExclude(creative_ad); // Assert - EXPECT_FALSE(should_exclude); + EXPECT_FALSE(exclusion_rule.ShouldExclude(creative_ad)); } TEST_F(BatAdsTransferredExclusionRuleTest, - AllowAdWithSameCampaignIdAfter48Hours) { + AllowAdWithSameCampaignIdAfter2Days) { // Arrange base::FieldTrialParams params; - params["should_exclude_ad_if_transferred_within_time_window"] = "48h"; + params["should_exclude_ad_if_transferred_within_time_window"] = "2d"; std::vector enabled_features; enabled_features.emplace_back(kExclusionRulesFeature, params); @@ -235,21 +233,21 @@ TEST_F(BatAdsTransferredExclusionRuleTest, ad_events.push_back(ad_event); - AdvanceClockBy(base::Hours(48)); + TransferredExclusionRule exclusion_rule(ad_events); + + AdvanceClockBy(base::Days(2)); // Act - TransferredExclusionRule exclusion_rule(ad_events); - const bool should_exclude = exclusion_rule.ShouldExclude(creative_ad); // Assert - EXPECT_FALSE(should_exclude); + EXPECT_FALSE(exclusion_rule.ShouldExclude(creative_ad)); } TEST_F(BatAdsTransferredExclusionRuleTest, - AllowAdWithDifferentCampaignIdAfter48Hours) { + AllowAdWithDifferentCampaignIdAfter2Days) { // Arrange base::FieldTrialParams params; - params["should_exclude_ad_if_transferred_within_time_window"] = "48h"; + params["should_exclude_ad_if_transferred_within_time_window"] = "2d"; std::vector enabled_features; enabled_features.emplace_back(kExclusionRulesFeature, params); @@ -275,14 +273,14 @@ TEST_F(BatAdsTransferredExclusionRuleTest, ad_events.push_back(ad_event); - AdvanceClockBy(base::Hours(48)); + TransferredExclusionRule exclusion_rule(ad_events); + + AdvanceClockBy(base::Days(2)); // Act - TransferredExclusionRule exclusion_rule(ad_events); - const bool should_exclude = exclusion_rule.ShouldExclude(creative_ad_1); // Assert - EXPECT_FALSE(should_exclude); + EXPECT_FALSE(exclusion_rule.ShouldExclude(creative_ad_1)); } } // namespace brave_ads diff --git a/components/brave_ads/core/internal/ads/serving/eligible_ads/priority/priority_util.h b/components/brave_ads/core/internal/ads/serving/eligible_ads/priority/priority_util.h index 3f7cf2cdc1c9..68c5fedbb9fb 100644 --- a/components/brave_ads/core/internal/ads/serving/eligible_ads/priority/priority_util.h +++ b/components/brave_ads/core/internal/ads/serving/eligible_ads/priority/priority_util.h @@ -14,8 +14,8 @@ namespace brave_ads { template -base::flat_map SortCreativeAdsIntoPrioritizedBuckets( - const T& creative_ads) { +base::flat_map +SortCreativeAdsIntoPrioritizedBuckets(const T& creative_ads) { base::flat_map buckets; for (const auto& creative_ad : creative_ads) { @@ -36,8 +36,8 @@ base::flat_map SortCreativeAdsIntoPrioritizedBuckets( } template -std::pair GetHighestPriorityBucket( - const base::flat_map& buckets) { +std::pair +GetHighestPriorityBucket(const base::flat_map& buckets) { const auto iter = base::ranges::min_element( buckets, [](const auto& lhs, const auto& rhs) { return lhs.first < rhs.first; }); diff --git a/components/brave_ads/core/internal/ads/serving/inline_content_ad_serving_unittest.cc b/components/brave_ads/core/internal/ads/serving/inline_content_ad_serving_unittest.cc index ac43d245850e..e3c8a5f7eb74 100644 --- a/components/brave_ads/core/internal/ads/serving/inline_content_ad_serving_unittest.cc +++ b/components/brave_ads/core/internal/ads/serving/inline_content_ad_serving_unittest.cc @@ -51,6 +51,7 @@ class BatAdsInlineContentAdServingObserver : public ServingObserver { bool did_serve_ad_ = false; bool failed_to_serve_ad_ = false; }; + class BatAdsInlineContentAdServingTest : public UnitTestBase { protected: void SetUp() override { diff --git a/components/brave_ads/core/internal/ads/serving/new_tab_page_ad_serving_unittest.cc b/components/brave_ads/core/internal/ads/serving/new_tab_page_ad_serving_unittest.cc index 46ff998316cc..608018b74308 100644 --- a/components/brave_ads/core/internal/ads/serving/new_tab_page_ad_serving_unittest.cc +++ b/components/brave_ads/core/internal/ads/serving/new_tab_page_ad_serving_unittest.cc @@ -125,7 +125,7 @@ TEST_F(BatAdsNewTabPageAdServingTest, DoNotServeAdIfMissingWallpapers) { CreativeNewTabPageAdInfo creative_ad = BuildCreativeNewTabPageAd(/*should_use_random_guids*/ true); - creative_ad.wallpapers = {}; + creative_ad.wallpapers.clear(); SaveCreativeAds({creative_ad}); // Act diff --git a/components/brave_ads/core/internal/ads/serving/permission_rules/catalog_permission_rule_test.cc b/components/brave_ads/core/internal/ads/serving/permission_rules/catalog_permission_rule_test.cc index c905578d17d7..d7e710010497 100644 --- a/components/brave_ads/core/internal/ads/serving/permission_rules/catalog_permission_rule_test.cc +++ b/components/brave_ads/core/internal/ads/serving/permission_rules/catalog_permission_rule_test.cc @@ -22,7 +22,7 @@ class BatAdsCatalogPermissionRuleIntegrationTest : public UnitTestBase { void SetUpMocks() override { const URLResponseMap url_responses = { - {"/v9/catalog", {{net::HTTP_OK, "/catalog.json"}}}}; + {"/v9/catalog", {{net::HTTP_OK, /*response_body*/ "/catalog.json"}}}}; MockUrlResponses(ads_client_mock_, url_responses); } diff --git a/components/brave_ads/core/internal/ads/serving/targeting/behavioral/multi_armed_bandits/epsilon_greedy_bandit_model.cc b/components/brave_ads/core/internal/ads/serving/targeting/behavioral/multi_armed_bandits/epsilon_greedy_bandit_model.cc index 7a216eae4f6b..822f2cab1f13 100644 --- a/components/brave_ads/core/internal/ads/serving/targeting/behavioral/multi_armed_bandits/epsilon_greedy_bandit_model.cc +++ b/components/brave_ads/core/internal/ads/serving/targeting/behavioral/multi_armed_bandits/epsilon_greedy_bandit_model.cc @@ -25,9 +25,9 @@ namespace { constexpr size_t kTopArmCount = 3; using ArmBucketMap = - base::flat_map>; + base::flat_map>; using ArmList = std::vector; -using ArmBucketPair = std::pair; +using ArmBucketPair = std::pair; using ArmBucketList = std::vector; SegmentList ToSegmentList(const ArmList& arms) { diff --git a/components/brave_ads/core/internal/ads/serving/targeting/contextual/text_classification/text_classification_alias.h b/components/brave_ads/core/internal/ads/serving/targeting/contextual/text_classification/text_classification_alias.h index cb49519d390d..717176d04cba 100644 --- a/components/brave_ads/core/internal/ads/serving/targeting/contextual/text_classification/text_classification_alias.h +++ b/components/brave_ads/core/internal/ads/serving/targeting/contextual/text_classification/text_classification_alias.h @@ -15,13 +15,16 @@ namespace brave_ads::targeting { -using TextClassificationProbabilityMap = std::map; +using TextClassificationProbabilityMap = + std::map; using TextClassificationProbabilityList = base::circular_deque; -using SegmentProbabilityPair = std::pair; +using SegmentProbabilityPair = + std::pair; using SegmentProbabilityList = std::vector; -using SegmentProbabilityMap = std::map; +using SegmentProbabilityMap = + std::map; } // namespace brave_ads::targeting diff --git a/components/brave_ads/core/internal/catalog/catalog_json_reader_unittest.cc b/components/brave_ads/core/internal/catalog/catalog_json_reader_unittest.cc index 1f8978b49c6f..4be88e35be85 100644 --- a/components/brave_ads/core/internal/catalog/catalog_json_reader_unittest.cc +++ b/components/brave_ads/core/internal/catalog/catalog_json_reader_unittest.cc @@ -375,7 +375,6 @@ CatalogCampaignInfo BuildCatalogCampaign2() { conversion.type = "postclick"; conversion.url_pattern = "https://www.brave.com/2/*"; conversion.observation_window = 7; - conversion.advertiser_public_key = {}; conversion.expire_at = DistantFuture() + base::Days(conversion.observation_window); conversions.push_back(conversion); diff --git a/components/brave_ads/core/internal/common/unittest/unittest_mock_util.cc b/components/brave_ads/core/internal/common/unittest/unittest_mock_util.cc index 825c7da6cb0c..6b5f46a285cb 100644 --- a/components/brave_ads/core/internal/common/unittest/unittest_mock_util.cc +++ b/components/brave_ads/core/internal/common/unittest/unittest_mock_util.cc @@ -40,10 +40,11 @@ using ::testing::_; using ::testing::Invoke; using ::testing::Return; -using AdEventHistoryMap = base::flat_map>; -using AdEventMap = base::flat_map; +using AdEventHistoryMap = + base::flat_map>; +using AdEventMap = base::flat_map; -using PrefMap = base::flat_map; +using PrefMap = base::flat_map; namespace { diff --git a/components/brave_ads/core/internal/common/unittest/unittest_url_response_alias.h b/components/brave_ads/core/internal/common/unittest/unittest_url_response_alias.h index 9777596472e2..5341e6841f5b 100644 --- a/components/brave_ads/core/internal/common/unittest/unittest_url_response_alias.h +++ b/components/brave_ads/core/internal/common/unittest/unittest_url_response_alias.h @@ -14,9 +14,10 @@ namespace brave_ads { -using URLResponsePair = std::pair; +using URLResponsePair = + std::pair; using URLResponseList = std::vector; -using URLResponseMap = base::flat_map; +using URLResponseMap = base::flat_map; } // namespace brave_ads diff --git a/components/brave_ads/core/internal/conversions/conversions_database_table_test.cc b/components/brave_ads/core/internal/conversions/conversions_database_table_test.cc index b7721ed24004..14d74f65048a 100644 --- a/components/brave_ads/core/internal/conversions/conversions_database_table_test.cc +++ b/components/brave_ads/core/internal/conversions/conversions_database_table_test.cc @@ -22,7 +22,7 @@ class BatAdsConversionsDatabaseTableIntegrationTest : public UnitTestBase { void SetUpMocks() override { const URLResponseMap url_responses = { - {"/v9/catalog", {{net::HTTP_OK, "/catalog.json"}}}}; + {"/v9/catalog", {{net::HTTP_OK, /*response_body*/ "/catalog.json"}}}}; MockUrlResponses(ads_client_mock_, url_responses); } }; diff --git a/components/brave_ads/core/internal/conversions/conversions_unittest.cc b/components/brave_ads/core/internal/conversions/conversions_unittest.cc index 41471277657b..50653255ba4f 100644 --- a/components/brave_ads/core/internal/conversions/conversions_unittest.cc +++ b/components/brave_ads/core/internal/conversions/conversions_unittest.cc @@ -42,18 +42,12 @@ class BatAdsConversionsTest : public UnitTestBase { UnitTestBase::SetUp(); conversions_ = std::make_unique(); - ad_events_database_table_ = std::make_unique(); - conversion_queue_database_table_ = - std::make_unique(); - conversions_database_table_ = - std::make_unique(); } std::unique_ptr conversions_; - std::unique_ptr ad_events_database_table_; - std::unique_ptr - conversion_queue_database_table_; - std::unique_ptr conversions_database_table_; + database::table::AdEvents ad_events_database_table_; + database::table::ConversionQueue conversion_queue_database_table_; + database::table::Conversions conversions_database_table_; }; TEST_F(BatAdsConversionsTest, @@ -78,14 +72,16 @@ TEST_F(BatAdsConversionsTest, database::SaveConversions(conversions); // Act - conversions_->MaybeConvert({GURL("https://www.foo.com/bar")}, {}, {}); + conversions_->MaybeConvert( + /*redirect_chain*/ {GURL("https://www.foo.com/bar")}, /*html*/ {}, + /*conversion_id_patterns*/ {}); // Assert const std::string condition = base::StringPrintf( "creative_set_id = '%s' AND confirmation_type = 'conversion'", conversion.creative_set_id.c_str()); - ad_events_database_table_->GetIf( + ad_events_database_table_.GetIf( condition, base::BindOnce([](const bool success, const AdEventList& ad_events) { ASSERT_TRUE(success); @@ -115,14 +111,16 @@ TEST_F(BatAdsConversionsTest, ConvertViewedNotificationAdWhenAdsAreEnabled) { database::SaveConversions(conversions); // Act - conversions_->MaybeConvert({GURL("https://www.foo.com/bar")}, {}, {}); + conversions_->MaybeConvert( + /*redirect_chain*/ {GURL("https://www.foo.com/bar")}, /*html*/ {}, + /*conversion_id_patterns*/ {}); // Assert const std::string condition = base::StringPrintf( "creative_set_id = '%s' AND confirmation_type = 'conversion'", conversion.creative_set_id.c_str()); - ad_events_database_table_->GetIf( + ad_events_database_table_.GetIf( condition, base::BindOnce( [](const ConversionInfo& conversion, const bool success, const AdEventList& ad_events) { @@ -162,14 +160,16 @@ TEST_F(BatAdsConversionsTest, database::SaveConversions(conversions); // Act - conversions_->MaybeConvert({GURL("https://www.foo.com/bar")}, {}, {}); + conversions_->MaybeConvert( + /*redirect_chain*/ {GURL("https://www.foo.com/bar")}, /*html*/ {}, + /*conversion_id_patterns*/ {}); // Assert const std::string condition = base::StringPrintf( "creative_set_id = '%s' AND confirmation_type = 'conversion'", conversion.creative_set_id.c_str()); - ad_events_database_table_->GetIf( + ad_events_database_table_.GetIf( condition, base::BindOnce([](const bool success, const AdEventList& ad_events) { ASSERT_TRUE(success); @@ -202,14 +202,16 @@ TEST_F(BatAdsConversionsTest, ConvertClickedNotificationAdWhenAdsAreEnabled) { database::SaveConversions(conversions); // Act - conversions_->MaybeConvert({GURL("https://www.foo.com/bar")}, {}, {}); + conversions_->MaybeConvert( + /*redirect_chain*/ {GURL("https://www.foo.com/bar")}, /*html*/ {}, + /*conversion_id_patterns*/ {}); // Assert const std::string condition = base::StringPrintf( "creative_set_id = '%s' AND confirmation_type = 'conversion'", conversion.creative_set_id.c_str()); - ad_events_database_table_->GetIf( + ad_events_database_table_.GetIf( condition, base::BindOnce( [](const ConversionInfo& conversion, const bool success, const AdEventList& ad_events) { @@ -246,14 +248,16 @@ TEST_F(BatAdsConversionsTest, database::SaveConversions(conversions); // Act - conversions_->MaybeConvert({GURL("https://www.foo.com/bar")}, {}, {}); + conversions_->MaybeConvert( + /*redirect_chain*/ {GURL("https://www.foo.com/bar")}, /*html*/ {}, + /*conversion_id_patterns*/ {}); // Assert const std::string condition = base::StringPrintf( "creative_set_id = '%s' AND confirmation_type = 'conversion'", conversion.creative_set_id.c_str()); - ad_events_database_table_->GetIf( + ad_events_database_table_.GetIf( condition, base::BindOnce([](const bool success, const AdEventList& ad_events) { ASSERT_TRUE(success); @@ -283,14 +287,16 @@ TEST_F(BatAdsConversionsTest, ConvertViewedNewTabPageAdWhenAdsAreEnabled) { database::SaveConversions(conversions); // Act - conversions_->MaybeConvert({GURL("https://www.foo.com/bar")}, {}, {}); + conversions_->MaybeConvert( + /*redirect_chain*/ {GURL("https://www.foo.com/bar")}, /*html*/ {}, + /*conversion_id_patterns*/ {}); // Assert const std::string condition = base::StringPrintf( "creative_set_id = '%s' AND confirmation_type = 'conversion'", conversion.creative_set_id.c_str()); - ad_events_database_table_->GetIf( + ad_events_database_table_.GetIf( condition, base::BindOnce( [](const ConversionInfo& conversion, const bool success, const AdEventList& ad_events) { @@ -330,14 +336,16 @@ TEST_F(BatAdsConversionsTest, database::SaveConversions(conversions); // Act - conversions_->MaybeConvert({GURL("https://www.foo.com/bar")}, {}, {}); + conversions_->MaybeConvert( + /*redirect_chain*/ {GURL("https://www.foo.com/bar")}, /*html*/ {}, + /*conversion_id_patterns*/ {}); // Assert const std::string condition = base::StringPrintf( "creative_set_id = '%s' AND confirmation_type = 'conversion'", conversion.creative_set_id.c_str()); - ad_events_database_table_->GetIf( + ad_events_database_table_.GetIf( condition, base::BindOnce([](const bool success, const AdEventList& ad_events) { ASSERT_TRUE(success); @@ -370,14 +378,16 @@ TEST_F(BatAdsConversionsTest, ConvertClickedNewTabPageAdWhenAdsAreEnabled) { database::SaveConversions(conversions); // Act - conversions_->MaybeConvert({GURL("https://www.foo.com/bar")}, {}, {}); + conversions_->MaybeConvert( + /*redirect_chain*/ {GURL("https://www.foo.com/bar")}, /*html*/ {}, + /*conversion_id_patterns*/ {}); // Assert const std::string condition = base::StringPrintf( "creative_set_id = '%s' AND confirmation_type = 'conversion'", conversion.creative_set_id.c_str()); - ad_events_database_table_->GetIf( + ad_events_database_table_.GetIf( condition, base::BindOnce( [](const ConversionInfo& conversion, const bool success, const AdEventList& ad_events) { @@ -415,14 +425,16 @@ TEST_F(BatAdsConversionsTest, database::SaveConversions(conversions); // Act - conversions_->MaybeConvert({GURL("https://www.foo.com/bar")}, {}, {}); + conversions_->MaybeConvert( + /*redirect_chain*/ {GURL("https://www.foo.com/bar")}, /*html*/ {}, + /*conversion_id_patterns*/ {}); // Assert const std::string condition = base::StringPrintf( "creative_set_id = '%s' AND confirmation_type = 'conversion'", conversion.creative_set_id.c_str()); - ad_events_database_table_->GetIf( + ad_events_database_table_.GetIf( condition, base::BindOnce([](const bool success, const AdEventList& ad_events) { ASSERT_TRUE(success); @@ -453,14 +465,16 @@ TEST_F(BatAdsConversionsTest, ConvertViewedPromotedContentAdWhenAdsAreEnabled) { database::SaveConversions(conversions); // Act - conversions_->MaybeConvert({GURL("https://www.foo.com/bar")}, {}, {}); + conversions_->MaybeConvert( + /*redirect_chain*/ {GURL("https://www.foo.com/bar")}, /*html*/ {}, + /*conversion_id_patterns*/ {}); // Assert const std::string condition = base::StringPrintf( "creative_set_id = '%s' AND confirmation_type = 'conversion'", conversion.creative_set_id.c_str()); - ad_events_database_table_->GetIf( + ad_events_database_table_.GetIf( condition, base::BindOnce( [](const ConversionInfo& conversion, const bool success, const AdEventList& ad_events) { @@ -502,14 +516,16 @@ TEST_F(BatAdsConversionsTest, database::SaveConversions(conversions); // Act - conversions_->MaybeConvert({GURL("https://www.foo.com/bar")}, {}, {}); + conversions_->MaybeConvert( + /*redirect_chain*/ {GURL("https://www.foo.com/bar")}, /*html*/ {}, + /*conversion_id_patterns*/ {}); // Assert const std::string condition = base::StringPrintf( "creative_set_id = '%s' AND confirmation_type = 'conversion'", conversion.creative_set_id.c_str()); - ad_events_database_table_->GetIf( + ad_events_database_table_.GetIf( condition, base::BindOnce([](const bool success, const AdEventList& ad_events) { ASSERT_TRUE(success); @@ -545,14 +561,16 @@ TEST_F(BatAdsConversionsTest, database::SaveConversions(conversions); // Act - conversions_->MaybeConvert({GURL("https://www.foo.com/bar")}, {}, {}); + conversions_->MaybeConvert( + /*redirect_chain*/ {GURL("https://www.foo.com/bar")}, /*html*/ {}, + /*conversion_id_patterns*/ {}); // Assert const std::string condition = base::StringPrintf( "creative_set_id = '%s' AND confirmation_type = 'conversion'", conversion.creative_set_id.c_str()); - ad_events_database_table_->GetIf( + ad_events_database_table_.GetIf( condition, base::BindOnce( [](const ConversionInfo& conversion, const bool success, const AdEventList& ad_events) { @@ -589,14 +607,16 @@ TEST_F(BatAdsConversionsTest, database::SaveConversions(conversions); // Act - conversions_->MaybeConvert({GURL("https://www.foo.com/bar")}, {}, {}); + conversions_->MaybeConvert( + /*redirect_chain*/ {GURL("https://www.foo.com/bar")}, /*html*/ {}, + /*conversion_id_patterns*/ {}); // Assert const std::string condition = base::StringPrintf( "creative_set_id = '%s' AND confirmation_type = 'conversion'", conversion.creative_set_id.c_str()); - ad_events_database_table_->GetIf( + ad_events_database_table_.GetIf( condition, base::BindOnce([](const bool success, const AdEventList& ad_events) { ASSERT_TRUE(success); @@ -627,14 +647,16 @@ TEST_F(BatAdsConversionsTest, database::SaveConversions(conversions); // Act - conversions_->MaybeConvert({GURL("https://www.foo.com/bar")}, {}, {}); + conversions_->MaybeConvert( + /*redirect_chain*/ {GURL("https://www.foo.com/bar")}, /*html*/ {}, + /*conversion_id_patterns*/ {}); // Assert const std::string condition = base::StringPrintf( "creative_set_id = '%s' AND confirmation_type = 'conversion'", conversion.creative_set_id.c_str()); - ad_events_database_table_->GetIf( + ad_events_database_table_.GetIf( condition, base::BindOnce([](const bool success, const AdEventList& ad_events) { ASSERT_TRUE(success); @@ -667,14 +689,16 @@ TEST_F(BatAdsConversionsTest, ConvertClickedInlineContentAdWhenAdsAreDisabled) { database::SaveConversions(conversions); // Act - conversions_->MaybeConvert({GURL("https://www.foo.com/bar/baz")}, {}, {}); + conversions_->MaybeConvert( + /*redirect_chain*/ {GURL("https://www.foo.com/bar/baz")}, /*html*/ {}, + /*conversion_id_patterns*/ {}); // Assert const std::string condition = base::StringPrintf( "creative_set_id = '%s' AND confirmation_type = 'conversion'", conversion.creative_set_id.c_str()); - ad_events_database_table_->GetIf( + ad_events_database_table_.GetIf( condition, base::BindOnce( [](const ConversionInfo& conversion, const bool success, const AdEventList& ad_events) { @@ -713,14 +737,16 @@ TEST_F(BatAdsConversionsTest, ConvertClickedInlineContentAdWhenAdsAreEnabled) { database::SaveConversions(conversions); // Act - conversions_->MaybeConvert({GURL("https://www.foo.com/bar/baz")}, {}, {}); + conversions_->MaybeConvert( + /*redirect_chain*/ {GURL("https://www.foo.com/bar/baz")}, /*html*/ {}, + /*conversion_id_patterns*/ {}); // Assert const std::string condition = base::StringPrintf( "creative_set_id = '%s' AND confirmation_type = 'conversion'", conversion.creative_set_id.c_str()); - ad_events_database_table_->GetIf( + ad_events_database_table_.GetIf( condition, base::BindOnce( [](const ConversionInfo& conversion, const bool success, const AdEventList& ad_events) { @@ -757,14 +783,16 @@ TEST_F(BatAdsConversionsTest, database::SaveConversions(conversions); // Act - conversions_->MaybeConvert({GURL("https://www.foo.com/bar")}, {}, {}); + conversions_->MaybeConvert( + /*redirect_chain*/ {GURL("https://www.foo.com/bar")}, /*html*/ {}, + /*conversion_id_patterns*/ {}); // Assert const std::string condition = base::StringPrintf( "creative_set_id = '%s' AND confirmation_type = 'conversion'", conversion.creative_set_id.c_str()); - ad_events_database_table_->GetIf( + ad_events_database_table_.GetIf( condition, base::BindOnce([](const bool success, const AdEventList& ad_events) { ASSERT_TRUE(success); @@ -794,14 +822,16 @@ TEST_F(BatAdsConversionsTest, ConvertViewedSearchResultAdWhenAdsAreEnabled) { database::SaveConversions(conversions); // Act - conversions_->MaybeConvert({GURL("https://www.foo.com/bar")}, {}, {}); + conversions_->MaybeConvert( + /*redirect_chain*/ {GURL("https://www.foo.com/bar")}, /*html*/ {}, + /*conversion_id_patterns*/ {}); // Assert const std::string condition = base::StringPrintf( "creative_set_id = '%s' AND confirmation_type = 'conversion'", conversion.creative_set_id.c_str()); - ad_events_database_table_->GetIf( + ad_events_database_table_.GetIf( condition, base::BindOnce( [](const ConversionInfo& conversion, const bool success, const AdEventList& ad_events) { @@ -841,14 +871,16 @@ TEST_F(BatAdsConversionsTest, database::SaveConversions(conversions); // Act - conversions_->MaybeConvert({GURL("https://www.foo.com/bar")}, {}, {}); + conversions_->MaybeConvert( + /*redirect_chain*/ {GURL("https://www.foo.com/bar")}, /*html*/ {}, + /*conversion_id_patterns*/ {}); // Assert const std::string condition = base::StringPrintf( "creative_set_id = '%s' AND confirmation_type = 'conversion'", conversion.creative_set_id.c_str()); - ad_events_database_table_->GetIf( + ad_events_database_table_.GetIf( condition, base::BindOnce([](const bool success, const AdEventList& ad_events) { ASSERT_TRUE(success); @@ -881,14 +913,16 @@ TEST_F(BatAdsConversionsTest, ConvertClickedSearchResultAdWhenAdsAreEnabled) { database::SaveConversions(conversions); // Act - conversions_->MaybeConvert({GURL("https://www.foo.com/bar")}, {}, {}); + conversions_->MaybeConvert( + /*redirect_chain*/ {GURL("https://www.foo.com/bar")}, /*html*/ {}, + /*conversion_id_patterns*/ {}); // Assert const std::string condition = base::StringPrintf( "creative_set_id = '%s' AND confirmation_type = 'conversion'", conversion.creative_set_id.c_str()); - ad_events_database_table_->GetIf( + ad_events_database_table_.GetIf( condition, base::BindOnce( [](const ConversionInfo& conversion, const bool success, const AdEventList& ad_events) { @@ -928,25 +962,29 @@ TEST_F(BatAdsConversionsTest, ConvertMultipleAds) { database::SaveConversions(conversions); const AdEventInfo ad_event_1 = - BuildAdEvent("7ee858e8-6306-4317-88c3-9e7d58afad26", + BuildAdEvent(/*placement_id*/ "7ee858e8-6306-4317-88c3-9e7d58afad26", conversion_1.creative_set_id, ConfirmationType::kViewed); FireAdEvent(ad_event_1); AdvanceClockBy(base::Minutes(1)); const AdEventInfo ad_event_2 = - BuildAdEvent("da2d3397-bc97-46d1-a323-d8723c0a6b33", + BuildAdEvent(/*placement_id*/ "da2d3397-bc97-46d1-a323-d8723c0a6b33", conversion_2.creative_set_id, ConfirmationType::kViewed); FireAdEvent(ad_event_2); const AdEventInfo ad_event_3 = - BuildAdEvent("da2d3397-bc97-46d1-a323-d8723c0a6b33", + BuildAdEvent(/*placement_id*/ "da2d3397-bc97-46d1-a323-d8723c0a6b33", conversion_2.creative_set_id, ConfirmationType::kClicked); FireAdEvent(ad_event_3); // Act - conversions_->MaybeConvert({GURL("https://www.foo.com/qux")}, {}, {}); + conversions_->MaybeConvert( + /*redirect_chain*/ {GURL("https://www.foo.com/qux")}, /*html*/ {}, + /*conversion_id_patterns*/ {}); - conversions_->MaybeConvert({GURL("https://www.foo.com/bar/baz")}, {}, {}); + conversions_->MaybeConvert( + /*redirect_chain*/ {GURL("https://www.foo.com/bar/baz")}, /*html*/ {}, + /*conversion_id_patterns*/ {}); // Assert const std::string condition = base::StringPrintf( @@ -955,7 +993,7 @@ TEST_F(BatAdsConversionsTest, ConvertMultipleAds) { conversion_1.creative_set_id.c_str(), conversion_2.creative_set_id.c_str()); - ad_events_database_table_->GetIf( + ad_events_database_table_.GetIf( condition, base::BindOnce( [](const ConversionList& conversions, const bool success, @@ -997,14 +1035,16 @@ TEST_F(BatAdsConversionsTest, ConvertViewedAdWhenAdWasDismissed) { FireAdEvent(ad_event_2); // Act - conversions_->MaybeConvert({GURL("https://www.foo.com/quxbarbaz")}, {}, {}); + conversions_->MaybeConvert( + /*redirect_chain*/ {GURL("https://www.foo.com/quxbarbaz")}, /*html*/ {}, + /*conversion_id_patterns*/ {}); // Assert const std::string condition = base::StringPrintf( "creative_set_id = '%s' AND confirmation_type = 'conversion'", conversion.creative_set_id.c_str()); - ad_events_database_table_->GetIf( + ad_events_database_table_.GetIf( condition, base::BindOnce( [](const ConversionInfo& conversion, const bool success, const AdEventList& ad_events) { @@ -1056,14 +1096,16 @@ TEST_F(BatAdsConversionsTest, DoNotConvertNonViewedOrClickedAds) { FireAdEvent(ad_event_7); // Act - conversions_->MaybeConvert({GURL("https://www.foo.com/bar")}, {}, {}); + conversions_->MaybeConvert( + /*redirect_chain*/ {GURL("https://www.foo.com/bar")}, /*html*/ {}, + /*conversion_id_patterns*/ {}); // Assert const std::string condition = base::StringPrintf( "creative_set_id = '%s' AND confirmation_type = 'conversion'", conversion.creative_set_id.c_str()); - ad_events_database_table_->GetIf( + ad_events_database_table_.GetIf( condition, base::BindOnce([](const bool success, const AdEventList& ad_events) { ASSERT_TRUE(success); @@ -1091,14 +1133,16 @@ TEST_F(BatAdsConversionsTest, DoNotConvertViewedAdForPostClick) { FireAdEvent(ad_event); // Act - conversions_->MaybeConvert({GURL("https://www.foo.com/bar")}, {}, {}); + conversions_->MaybeConvert( + /*redirect_chain*/ {GURL("https://www.foo.com/bar")}, /*html*/ {}, + /*conversion_id_patterns*/ {}); // Assert const std::string condition = base::StringPrintf( "creative_set_id = '%s' AND confirmation_type = 'conversion'", conversion.creative_set_id.c_str()); - ad_events_database_table_->GetIf( + ad_events_database_table_.GetIf( condition, base::BindOnce([](const bool success, const AdEventList& ad_events) { ASSERT_TRUE(success); @@ -1116,14 +1160,16 @@ TEST_F(BatAdsConversionsTest, DoNotConvertAdIfConversionDoesNotExist) { FireAdEvent(ad_event); // Act - conversions_->MaybeConvert({GURL("https://www.foo.com/bar")}, {}, {}); + conversions_->MaybeConvert( + /*redirect_chain*/ {GURL("https://www.foo.com/bar")}, /*html*/ {}, + /*conversion_id_patterns*/ {}); // Assert const std::string condition = "creative_set_id = 'foobar' AND " "confirmation_type = 'conversion'"; - ad_events_database_table_->GetIf( + ad_events_database_table_.GetIf( condition, base::BindOnce([](const bool success, const AdEventList& ad_events) { ASSERT_TRUE(success); @@ -1151,17 +1197,21 @@ TEST_F(BatAdsConversionsTest, BuildAdEvent(conversion.creative_set_id, ConfirmationType::kViewed); FireAdEvent(ad_event); - conversions_->MaybeConvert({GURL("https://www.foo.com/bar")}, {}, {}); + conversions_->MaybeConvert( + /*redirect_chain*/ {GURL("https://www.foo.com/bar")}, /*html*/ {}, + /*conversion_id_patterns*/ {}); // Act - conversions_->MaybeConvert({GURL("https://www.foo.com/bar")}, {}, {}); + conversions_->MaybeConvert( + /*redirect_chain*/ {GURL("https://www.foo.com/bar")}, /*html*/ {}, + /*conversion_id_patterns*/ {}); // Assert const std::string condition = base::StringPrintf( "creative_set_id = '%s' AND confirmation_type = 'conversion'", conversion.creative_set_id.c_str()); - ad_events_database_table_->GetIf( + ad_events_database_table_.GetIf( condition, base::BindOnce( [](const ConversionInfo& conversion, const bool success, const AdEventList& ad_events) { @@ -1196,14 +1246,16 @@ TEST_F(BatAdsConversionsTest, FireAdEvent(ad_event); // Act - conversions_->MaybeConvert({GURL("https://www.foo.com/qux")}, {}, {}); + conversions_->MaybeConvert( + /*redirect_chain*/ {GURL("https://www.foo.com/qux")}, /*html*/ {}, + /*conversion_id_patterns*/ {}); // Assert const std::string condition = base::StringPrintf( "creative_set_id = '%s' AND confirmation_type = 'conversion'", conversion.creative_set_id.c_str()); - ad_events_database_table_->GetIf( + ad_events_database_table_.GetIf( condition, base::BindOnce([](const bool success, const AdEventList& ad_events) { ASSERT_TRUE(success); @@ -1233,14 +1285,16 @@ TEST_F(BatAdsConversionsTest, ConvertAdWhenTheConversionIsOnTheCuspOfExpiring) { AdvanceClockBy(base::Days(3) - base::Milliseconds(1)); // Act - conversions_->MaybeConvert({GURL("https://foo.bar.com/qux")}, {}, {}); + conversions_->MaybeConvert( + /*redirect_chain*/ {GURL("https://foo.bar.com/qux")}, /*html*/ {}, + /*conversion_id_patterns*/ {}); // Assert const std::string condition = base::StringPrintf( "creative_set_id = '%s' AND confirmation_type = 'conversion'", conversion.creative_set_id.c_str()); - ad_events_database_table_->GetIf( + ad_events_database_table_.GetIf( condition, base::BindOnce( [](const ConversionInfo& conversion, const bool success, const AdEventList& ad_events) { @@ -1276,14 +1330,16 @@ TEST_F(BatAdsConversionsTest, DoNotConvertAdWhenTheConversionHasExpired) { AdvanceClockBy(base::Days(3)); // Act - conversions_->MaybeConvert({GURL("https://www.foo.com/bar/qux")}, {}, {}); + conversions_->MaybeConvert( + /*redirect_chain*/ {GURL("https://www.foo.com/bar/qux")}, /*html*/ {}, + /*conversion_id_patterns*/ {}); // Assert const std::string condition = base::StringPrintf( "creative_set_id = '%s' AND confirmation_type = 'conversion'", conversion.creative_set_id.c_str()); - ad_events_database_table_->GetIf( + ad_events_database_table_.GetIf( condition, base::BindOnce([](const bool success, const AdEventList& ad_events) { ASSERT_TRUE(success); @@ -1312,16 +1368,17 @@ TEST_F(BatAdsConversionsTest, ConvertAdForRedirectChainIntermediateUrl) { // Act conversions_->MaybeConvert( - {GURL("https://foo.com/bar"), GURL("https://foo.com/baz"), - GURL("https://foo.com/qux")}, - {}, {}); + /*redirect_chain*/ {GURL("https://foo.com/bar"), + GURL("https://foo.com/baz"), + GURL("https://foo.com/qux")}, + /*html*/ {}, /*conversion_id_patterns*/ {}); // Assert const std::string condition = base::StringPrintf( "creative_set_id = '%s' AND confirmation_type = 'conversion'", conversion.creative_set_id.c_str()); - ad_events_database_table_->GetIf( + ad_events_database_table_.GetIf( condition, base::BindOnce( [](const ConversionInfo& conversion, const bool success, const AdEventList& ad_events) { @@ -1356,16 +1413,17 @@ TEST_F(BatAdsConversionsTest, ConvertAdForRedirectChainOriginalUrl) { // Act conversions_->MaybeConvert( - {GURL("https://foo.com/bar"), GURL("https://foo.com/baz"), - GURL("https://foo.com/qux")}, - {}, {}); + /*redirect_chain*/ {GURL("https://foo.com/bar"), + GURL("https://foo.com/baz"), + GURL("https://foo.com/qux")}, + /*html*/ {}, /*conversion_id_patterns*/ {}); // Assert const std::string condition = base::StringPrintf( "creative_set_id = '%s' AND confirmation_type = 'conversion'", conversion.creative_set_id.c_str()); - ad_events_database_table_->GetIf( + ad_events_database_table_.GetIf( condition, base::BindOnce( [](const ConversionInfo& conversion, const bool success, const AdEventList& ad_events) { @@ -1400,16 +1458,17 @@ TEST_F(BatAdsConversionsTest, ConvertAdForRedirectChainUrl) { // Act conversions_->MaybeConvert( - {GURL("https://foo.com/bar"), GURL("https://foo.com/baz"), - GURL("https://foo.com/qux")}, - {}, {}); + /*redirect_chain*/ {GURL("https://foo.com/bar"), + GURL("https://foo.com/baz"), + GURL("https://foo.com/qux")}, + /*html*/ {}, /*conversion_id_patterns*/ {}); // Assert const std::string condition = base::StringPrintf( "creative_set_id = '%s' AND confirmation_type = 'conversion'", conversion.creative_set_id.c_str()); - ad_events_database_table_->GetIf( + ad_events_database_table_.GetIf( condition, base::BindOnce( [](const ConversionInfo& conversion, const bool success, const AdEventList& ad_events) { @@ -1454,7 +1513,7 @@ TEST_F(BatAdsConversionsTest, ExtractConversionId) { resource.get()->id_patterns); // Assert - conversion_queue_database_table_->GetAll(base::BindOnce( + conversion_queue_database_table_.GetAll(base::BindOnce( [](const ConversionInfo& conversion, const bool success, const ConversionQueueItemList& conversion_queue_items) { ASSERT_TRUE(success); @@ -1505,7 +1564,7 @@ TEST_F(BatAdsConversionsTest, ExtractConversionIdWithResourcePatternFromHtml) { resource.get()->id_patterns); // Assert - conversion_queue_database_table_->GetAll(base::BindOnce( + conversion_queue_database_table_.GetAll(base::BindOnce( [](const ConversionInfo& conversion, const bool success, const ConversionQueueItemList& conversion_queue_items) { ASSERT_TRUE(success); @@ -1557,7 +1616,7 @@ TEST_F(BatAdsConversionsTest, ExtractConversionIdWithResourcePatternFromUrl) { resource.get()->id_patterns); // Assert - conversion_queue_database_table_->GetAll(base::BindOnce( + conversion_queue_database_table_.GetAll(base::BindOnce( [](const ConversionInfo& conversion, const bool success, const ConversionQueueItemList& conversion_queue_items) { ASSERT_TRUE(success); diff --git a/components/brave_ads/core/internal/creatives/creative_ads_database_table.cc b/components/brave_ads/core/internal/creatives/creative_ads_database_table.cc index a09ed4040830..748737c719bf 100644 --- a/components/brave_ads/core/internal/creatives/creative_ads_database_table.cc +++ b/components/brave_ads/core/internal/creatives/creative_ads_database_table.cc @@ -24,7 +24,8 @@ namespace brave_ads::database::table { -using CreativeAdMap = std::map; +using CreativeAdMap = + std::map; namespace { diff --git a/components/brave_ads/core/internal/creatives/inline_content_ads/creative_inline_content_ads_database_table.cc b/components/brave_ads/core/internal/creatives/inline_content_ads/creative_inline_content_ads_database_table.cc index 465f871b9c05..c028306e085b 100644 --- a/components/brave_ads/core/internal/creatives/inline_content_ads/creative_inline_content_ads_database_table.cc +++ b/components/brave_ads/core/internal/creatives/inline_content_ads/creative_inline_content_ads_database_table.cc @@ -37,7 +37,7 @@ namespace brave_ads::database::table { using CreativeInlineContentAdMap = - std::map; + std::map; namespace { diff --git a/components/brave_ads/core/internal/creatives/inline_content_ads/creative_inline_content_ads_database_table_test.cc b/components/brave_ads/core/internal/creatives/inline_content_ads/creative_inline_content_ads_database_table_test.cc index 251d3422de75..23f57737d791 100644 --- a/components/brave_ads/core/internal/creatives/inline_content_ads/creative_inline_content_ads_database_table_test.cc +++ b/components/brave_ads/core/internal/creatives/inline_content_ads/creative_inline_content_ads_database_table_test.cc @@ -25,7 +25,7 @@ class BatAdsCreativeInlineContentAdsDatabaseTableIntegrationTest void SetUpMocks() override { const URLResponseMap url_responses = { - {"/v9/catalog", {{net::HTTP_OK, "/catalog.json"}}}}; + {"/v9/catalog", {{net::HTTP_OK, /*response_body*/ "/catalog.json"}}}}; MockUrlResponses(ads_client_mock_, url_responses); } }; diff --git a/components/brave_ads/core/internal/creatives/new_tab_page_ads/creative_new_tab_page_ads_database_table.cc b/components/brave_ads/core/internal/creatives/new_tab_page_ads/creative_new_tab_page_ads_database_table.cc index b98fe2aa95de..20f2a76b823c 100644 --- a/components/brave_ads/core/internal/creatives/new_tab_page_ads/creative_new_tab_page_ads_database_table.cc +++ b/components/brave_ads/core/internal/creatives/new_tab_page_ads/creative_new_tab_page_ads_database_table.cc @@ -35,7 +35,8 @@ namespace brave_ads::database::table { -using CreativeNewTabPageAdMap = std::map; +using CreativeNewTabPageAdMap = + std::map; namespace { diff --git a/components/brave_ads/core/internal/creatives/new_tab_page_ads/creative_new_tab_page_ads_database_table_test.cc b/components/brave_ads/core/internal/creatives/new_tab_page_ads/creative_new_tab_page_ads_database_table_test.cc index ad5957d7e60c..bad81108e39a 100644 --- a/components/brave_ads/core/internal/creatives/new_tab_page_ads/creative_new_tab_page_ads_database_table_test.cc +++ b/components/brave_ads/core/internal/creatives/new_tab_page_ads/creative_new_tab_page_ads_database_table_test.cc @@ -23,7 +23,7 @@ class BatAdsCreativeNewTabPageAdsDatabaseTableIntegrationTest void SetUpMocks() override { const URLResponseMap url_responses = { - {"/v9/catalog", {{net::HTTP_OK, "/catalog.json"}}}}; + {"/v9/catalog", {{net::HTTP_OK, /*response_body*/ "/catalog.json"}}}}; MockUrlResponses(ads_client_mock_, url_responses); } }; diff --git a/components/brave_ads/core/internal/creatives/notification_ads/creative_notification_ads_database_table.cc b/components/brave_ads/core/internal/creatives/notification_ads/creative_notification_ads_database_table.cc index 3a850fac2dcc..8f3f844ebdd0 100644 --- a/components/brave_ads/core/internal/creatives/notification_ads/creative_notification_ads_database_table.cc +++ b/components/brave_ads/core/internal/creatives/notification_ads/creative_notification_ads_database_table.cc @@ -36,7 +36,7 @@ namespace brave_ads::database::table { using CreativeNotificationAdMap = - std::map; + std::map; namespace { diff --git a/components/brave_ads/core/internal/creatives/notification_ads/creative_notification_ads_database_table_test.cc b/components/brave_ads/core/internal/creatives/notification_ads/creative_notification_ads_database_table_test.cc index 7bd46fb07de1..46d02330521c 100644 --- a/components/brave_ads/core/internal/creatives/notification_ads/creative_notification_ads_database_table_test.cc +++ b/components/brave_ads/core/internal/creatives/notification_ads/creative_notification_ads_database_table_test.cc @@ -22,7 +22,7 @@ class BatAdsCreativeNotificationAdsDatabaseTableIntegrationTest void SetUpMocks() override { const URLResponseMap url_responses = { - {"/v9/catalog", {{net::HTTP_OK, "/catalog.json"}}}}; + {"/v9/catalog", {{net::HTTP_OK, /*response_body*/ "/catalog.json"}}}}; MockUrlResponses(ads_client_mock_, url_responses); } }; diff --git a/components/brave_ads/core/internal/creatives/promoted_content_ads/creative_promoted_content_ads_database_table.cc b/components/brave_ads/core/internal/creatives/promoted_content_ads/creative_promoted_content_ads_database_table.cc index b6bd4979756d..c1085ea5d763 100644 --- a/components/brave_ads/core/internal/creatives/promoted_content_ads/creative_promoted_content_ads_database_table.cc +++ b/components/brave_ads/core/internal/creatives/promoted_content_ads/creative_promoted_content_ads_database_table.cc @@ -35,7 +35,8 @@ namespace brave_ads::database::table { using CreativePromotedContentAdMap = - std::map; + std::map; namespace { diff --git a/components/brave_ads/core/internal/creatives/promoted_content_ads/creative_promoted_content_ads_database_table_test.cc b/components/brave_ads/core/internal/creatives/promoted_content_ads/creative_promoted_content_ads_database_table_test.cc index ffa355194449..ec825f1c4b72 100644 --- a/components/brave_ads/core/internal/creatives/promoted_content_ads/creative_promoted_content_ads_database_table_test.cc +++ b/components/brave_ads/core/internal/creatives/promoted_content_ads/creative_promoted_content_ads_database_table_test.cc @@ -23,7 +23,7 @@ class BatAdsCreativePromotedContentAdsDatabaseTableIntegrationTest void SetUpMocks() override { const URLResponseMap url_responses = { - {"/v9/catalog", {{net::HTTP_OK, "/catalog.json"}}}}; + {"/v9/catalog", {{net::HTTP_OK, /*response_body*/ "/catalog.json"}}}}; MockUrlResponses(ads_client_mock_, url_responses); } }; diff --git a/components/brave_ads/core/internal/fl/predictors/variables/notification_ad_served_at_predictor_variable_unittest.cc b/components/brave_ads/core/internal/fl/predictors/variables/notification_ad_served_at_predictor_variable_unittest.cc index 3941312c05ba..eb674e7597ec 100644 --- a/components/brave_ads/core/internal/fl/predictors/variables/notification_ad_served_at_predictor_variable_unittest.cc +++ b/components/brave_ads/core/internal/fl/predictors/variables/notification_ad_served_at_predictor_variable_unittest.cc @@ -18,7 +18,7 @@ class BatAdsNotificationAdServedAtPredictorVariableTest : public UnitTestBase { }; TEST_F(BatAdsNotificationAdServedAtPredictorVariableTest, GetDataType) { - std::unique_ptr predictor_variable = + std::unique_ptr predictor_variable = std::make_unique( base::Time::Now()); diff --git a/components/brave_ads/core/internal/geographic/subdivision/subdivision_targeting_unittest.cc b/components/brave_ads/core/internal/geographic/subdivision/subdivision_targeting_unittest.cc index 487fdf19d212..d7f1d1e2fa68 100644 --- a/components/brave_ads/core/internal/geographic/subdivision/subdivision_targeting_unittest.cc +++ b/components/brave_ads/core/internal/geographic/subdivision/subdivision_targeting_unittest.cc @@ -32,7 +32,9 @@ TEST_F(BatAdsSubdivisionTargetingTest, AutoDetectSubdivisionTargetingAllowedRegion) { // Arrange const URLResponseMap url_responses = { - {"/v1/getstate", {{net::HTTP_OK, R"({"country":"US", "region":"AL"})"}}}}; + {"/v1/getstate", + {{net::HTTP_OK, + /*response_body*/ R"({"country":"US", "region":"AL"})"}}}}; MockUrlResponses(ads_client_mock_, url_responses); // Act @@ -51,7 +53,8 @@ TEST_F(BatAdsSubdivisionTargetingTest, AutoDetectSubdivisionTargetingNoRegion) { // Arrange const URLResponseMap url_responses = { {"/v1/getstate", - {{net::HTTP_OK, R"({"country":"US", "region":"NO REGION"})"}}}}; + {{net::HTTP_OK, + /*response_body*/ R"({"country":"US", "region":"NO REGION"})"}}}}; MockUrlResponses(ads_client_mock_, url_responses); // Act @@ -67,7 +70,9 @@ TEST_F(BatAdsSubdivisionTargetingTest, AutoDetectSubdivisionTargetingWrongRegion) { // Arrange const URLResponseMap url_responses = { - {"/v1/getstate", {{net::HTTP_OK, R"({"country":"ES", "region":"AN"})"}}}}; + {"/v1/getstate", + {{net::HTTP_OK, + /*response_body*/ R"({"country":"ES", "region":"AN"})"}}}}; MockUrlResponses(ads_client_mock_, url_responses); // Act @@ -131,8 +136,9 @@ TEST_P(BatAdsSubdivisionTargetingRetryOnInvalidResponseTest, // Arrange const URLResponseMap url_responses = { {"/v1/getstate", - {{net::HTTP_OK, GetParam()}, - {net::HTTP_OK, R"({"country":"US", "region":"AL"})"}}}}; + {{net::HTTP_OK, /*response_body*/ GetParam()}, + {net::HTTP_OK, + /*response_body*/ R"({"country":"US", "region":"AL"})"}}}}; MockUrlResponses(ads_client_mock_, url_responses); // Act diff --git a/components/brave_ads/core/internal/geographic/subdivision/supported_subdivision_codes.h b/components/brave_ads/core/internal/geographic/subdivision/supported_subdivision_codes.h index ac0b5f01e4df..aefb00c3f0ea 100644 --- a/components/brave_ads/core/internal/geographic/subdivision/supported_subdivision_codes.h +++ b/components/brave_ads/core/internal/geographic/subdivision/supported_subdivision_codes.h @@ -15,7 +15,7 @@ namespace brave_ads::geographic { using SupportedSubdivisionCodesMap = - base::flat_map; + base::flat_map; const SupportedSubdivisionCodesMap& GetSupportedSubdivisionCodes(); diff --git a/components/brave_ads/core/internal/history/filters/confirmation_history_filter.cc b/components/brave_ads/core/internal/history/filters/confirmation_history_filter.cc index b9c4b6c83c88..957b30d4a39d 100644 --- a/components/brave_ads/core/internal/history/filters/confirmation_history_filter.cc +++ b/components/brave_ads/core/internal/history/filters/confirmation_history_filter.cc @@ -43,7 +43,7 @@ bool ShouldFilterConfirmationType(const ConfirmationType& confirmation_type) { return true; } -std::map BuildBuckets( +std::map BuildBuckets( const HistoryItemList& history_items) { std::map buckets; diff --git a/components/brave_ads/core/internal/ml/ml_alias.h b/components/brave_ads/core/internal/ml/ml_alias.h index bff818275399..ea4c230e730c 100644 --- a/components/brave_ads/core/internal/ml/ml_alias.h +++ b/components/brave_ads/core/internal/ml/ml_alias.h @@ -15,7 +15,7 @@ namespace brave_ads::ml { -using PredictionMap = std::map; +using PredictionMap = std::map; using TransformationPtr = std::unique_ptr; using TransformationVector = std::vector; diff --git a/components/brave_ads/core/internal/ml/pipeline/text_processing/embedding_processing.cc b/components/brave_ads/core/internal/ml/pipeline/text_processing/embedding_processing.cc index c36e327e42f9..c11597948540 100644 --- a/components/brave_ads/core/internal/ml/pipeline/text_processing/embedding_processing.cc +++ b/components/brave_ads/core/internal/ml/pipeline/text_processing/embedding_processing.cc @@ -33,10 +33,13 @@ EmbeddingProcessing::CreateFromValue(base::Value::Dict dict) { } EmbeddingProcessing::EmbeddingProcessing() = default; + EmbeddingProcessing::EmbeddingProcessing(EmbeddingProcessing&& other) noexcept = default; + EmbeddingProcessing& EmbeddingProcessing::operator=( EmbeddingProcessing&& other) noexcept = default; + EmbeddingProcessing::~EmbeddingProcessing() = default; bool EmbeddingProcessing::SetEmbeddingPipeline(base::Value::Dict dict) { diff --git a/components/brave_ads/core/internal/ml/pipeline/text_processing/embedding_processing_unittest.cc b/components/brave_ads/core/internal/ml/pipeline/text_processing/embedding_processing_unittest.cc index 890954514e4d..1d3be8610313 100644 --- a/components/brave_ads/core/internal/ml/pipeline/text_processing/embedding_processing_unittest.cc +++ b/components/brave_ads/core/internal/ml/pipeline/text_processing/embedding_processing_unittest.cc @@ -15,23 +15,12 @@ namespace brave_ads { -namespace { - -constexpr char kResourceFile[] = "wtpwsrqtjxmfdwaymauprezkunxprysm"; -constexpr char kSimpleResourceFile[] = - "resources/wtpwsrqtjxmfdwaymauprezkunxprysm_simple"; - -} // namespace - class BatAdsEmbeddingProcessingTest : public UnitTestBase {}; TEST_F(BatAdsEmbeddingProcessingTest, EmbedText) { // Arrange - CopyFileFromTestPathToTempPath(kSimpleResourceFile, kResourceFile); - resource::TextEmbedding resource; resource.Load(); - task_environment_.RunUntilIdle(); ASSERT_TRUE(resource.IsInitialized()); diff --git a/components/brave_ads/core/internal/ml/pipeline/text_processing/text_processing.cc b/components/brave_ads/core/internal/ml/pipeline/text_processing/text_processing.cc index 258afaff6e37..d23473ba6302 100644 --- a/components/brave_ads/core/internal/ml/pipeline/text_processing/text_processing.cc +++ b/components/brave_ads/core/internal/ml/pipeline/text_processing/text_processing.cc @@ -31,9 +31,12 @@ base::expected TextProcessing::CreateFromValue( } TextProcessing::TextProcessing() = default; + TextProcessing::TextProcessing(TextProcessing&& other) noexcept = default; + TextProcessing& TextProcessing::operator=(TextProcessing&& other) noexcept = default; + TextProcessing::~TextProcessing() = default; TextProcessing::TextProcessing(TransformationVector transformations, diff --git a/components/brave_ads/core/internal/processors/behavioral/multi_armed_bandits/epsilon_greedy_bandit_arms_alias.h b/components/brave_ads/core/internal/processors/behavioral/multi_armed_bandits/epsilon_greedy_bandit_arms_alias.h index 73b406cfc8fe..3db93c1b59d7 100644 --- a/components/brave_ads/core/internal/processors/behavioral/multi_armed_bandits/epsilon_greedy_bandit_arms_alias.h +++ b/components/brave_ads/core/internal/processors/behavioral/multi_armed_bandits/epsilon_greedy_bandit_arms_alias.h @@ -14,7 +14,7 @@ namespace brave_ads::targeting { using EpsilonGreedyBanditArmMap = - base::flat_map; + base::flat_map; } // namespace brave_ads::targeting diff --git a/components/brave_ads/core/internal/processors/behavioral/multi_armed_bandits/epsilon_greedy_bandit_processor_unittest.cc b/components/brave_ads/core/internal/processors/behavioral/multi_armed_bandits/epsilon_greedy_bandit_processor_unittest.cc index a383f2fe9b4e..15a39a668965 100644 --- a/components/brave_ads/core/internal/processors/behavioral/multi_armed_bandits/epsilon_greedy_bandit_processor_unittest.cc +++ b/components/brave_ads/core/internal/processors/behavioral/multi_armed_bandits/epsilon_greedy_bandit_processor_unittest.cc @@ -218,7 +218,6 @@ TEST_F(BatAdsEpsilonGreedyBanditProcessorTest, arms["travel"] = arm_1; targeting::EpsilonGreedyBanditArmInfo arm_2; - arm_2.segment = {}; arm_2.pulls = 0; arm_2.value = 1.0; arms[""] = arm_2; diff --git a/components/brave_ads/core/internal/processors/behavioral/purchase_intent/purchase_intent_processor.cc b/components/brave_ads/core/internal/processors/behavioral/purchase_intent/purchase_intent_processor.cc index def05367c088..0b21d67ffef9 100644 --- a/components/brave_ads/core/internal/processors/behavioral/purchase_intent/purchase_intent_processor.cc +++ b/components/brave_ads/core/internal/processors/behavioral/purchase_intent/purchase_intent_processor.cc @@ -27,7 +27,7 @@ namespace brave_ads::processor { -using KeywordList = std::vector; +using KeywordList = std::vector; namespace { diff --git a/components/brave_ads/core/internal/resources/behavioral/anti_targeting/anti_targeting_info.cc b/components/brave_ads/core/internal/resources/behavioral/anti_targeting/anti_targeting_info.cc index 8f2044597093..a6678fba4bc5 100644 --- a/components/brave_ads/core/internal/resources/behavioral/anti_targeting/anti_targeting_info.cc +++ b/components/brave_ads/core/internal/resources/behavioral/anti_targeting/anti_targeting_info.cc @@ -15,10 +15,13 @@ namespace brave_ads::resource { AntiTargetingInfo::AntiTargetingInfo() = default; + AntiTargetingInfo::AntiTargetingInfo(AntiTargetingInfo&& other) noexcept = default; + AntiTargetingInfo& AntiTargetingInfo::operator=( AntiTargetingInfo&& other) noexcept = default; + AntiTargetingInfo::~AntiTargetingInfo() = default; // static diff --git a/components/brave_ads/core/internal/resources/behavioral/anti_targeting/anti_targeting_info.h b/components/brave_ads/core/internal/resources/behavioral/anti_targeting/anti_targeting_info.h index 6f45dd7230db..ea5caa74656b 100644 --- a/components/brave_ads/core/internal/resources/behavioral/anti_targeting/anti_targeting_info.h +++ b/components/brave_ads/core/internal/resources/behavioral/anti_targeting/anti_targeting_info.h @@ -19,7 +19,8 @@ class GURL; namespace brave_ads::resource { using AntiTargetingSiteList = std::set; -using AntiTargetingMap = std::map; +using AntiTargetingMap = + std::map; struct AntiTargetingInfo final { AntiTargetingInfo(); diff --git a/components/brave_ads/core/internal/resources/behavioral/anti_targeting/anti_targeting_resource_unittest.cc b/components/brave_ads/core/internal/resources/behavioral/anti_targeting/anti_targeting_resource_unittest.cc index 46100765fdce..0adbc10410c4 100644 --- a/components/brave_ads/core/internal/resources/behavioral/anti_targeting/anti_targeting_resource_unittest.cc +++ b/components/brave_ads/core/internal/resources/behavioral/anti_targeting/anti_targeting_resource_unittest.cc @@ -5,17 +5,30 @@ #include "brave/components/brave_ads/core/internal/resources/behavioral/anti_targeting/anti_targeting_resource.h" +#include +#include + +#include "base/files/file.h" #include "brave/components/brave_ads/core/internal/common/unittest/unittest_base.h" +#include "brave/components/brave_ads/core/internal/common/unittest/unittest_file_util.h" +#include "brave/components/brave_ads/core/internal/resources/resources_unittest_constants.h" // npm run test -- brave_unit_tests --filter=BatAds* -namespace brave_ads::resource { +namespace brave_ads { + +using testing::_; +using testing::Invoke; + +namespace { +constexpr char kResourceId[] = "mkdhnfmjhklfnamlheoliekgeohamoig"; +} // namespace class BatAdsAntiTargetingResourceTest : public UnitTestBase {}; -TEST_F(BatAdsAntiTargetingResourceTest, Load) { +TEST_F(BatAdsAntiTargetingResourceTest, LoadResource) { // Arrange - AntiTargeting resource; + resource::AntiTargeting resource; // Act resource.Load(); @@ -25,4 +38,51 @@ TEST_F(BatAdsAntiTargetingResourceTest, Load) { EXPECT_TRUE(resource.IsInitialized()); } -} // namespace brave_ads::resource +TEST_F(BatAdsAntiTargetingResourceTest, DoNotLoadInvalidResource) { + // Arrange + CopyFileFromTestPathToTempPath(kInvalidResourceId, kResourceId); + + resource::AntiTargeting resource; + resource.Load(); + task_environment_.RunUntilIdle(); + + // Act + + // Assert + EXPECT_FALSE(resource.IsInitialized()); +} + +TEST_F(BatAdsAntiTargetingResourceTest, DoNotLoadMissingResource) { + // Arrange + EXPECT_CALL(*ads_client_mock_, LoadFileResource(kResourceId, _, _)) + .WillOnce(Invoke([](const std::string& /*id*/, const int /*version*/, + LoadFileCallback callback) { + const base::FilePath path = + GetFileResourcePath().AppendASCII(kMissingResourceId); + + base::File file( + path, base::File::Flags::FLAG_OPEN | base::File::Flags::FLAG_READ); + std::move(callback).Run(std::move(file)); + })); + + resource::AntiTargeting resource; + resource.Load(); + task_environment_.RunUntilIdle(); + + // Act + + // Assert + EXPECT_FALSE(resource.IsInitialized()); +} + +TEST_F(BatAdsAntiTargetingResourceTest, IsNotInitialized) { + // Arrange + resource::AntiTargeting resource; + + // Act + + // Assert + EXPECT_FALSE(resource.IsInitialized()); +} + +} // namespace brave_ads diff --git a/components/brave_ads/core/internal/resources/behavioral/conversions/conversion_id_pattern_info.h b/components/brave_ads/core/internal/resources/behavioral/conversions/conversion_id_pattern_info.h index cbe65e745850..6b612f346bdd 100644 --- a/components/brave_ads/core/internal/resources/behavioral/conversions/conversion_id_pattern_info.h +++ b/components/brave_ads/core/internal/resources/behavioral/conversions/conversion_id_pattern_info.h @@ -20,7 +20,8 @@ struct ConversionIdPatternInfo final { bool operator==(const ConversionIdPatternInfo&, const ConversionIdPatternInfo&); bool operator!=(const ConversionIdPatternInfo&, const ConversionIdPatternInfo&); -using ConversionIdPatternMap = std::map; +using ConversionIdPatternMap = + std::map; } // namespace brave_ads diff --git a/components/brave_ads/core/internal/resources/behavioral/conversions/conversions_info.cc b/components/brave_ads/core/internal/resources/behavioral/conversions/conversions_info.cc index 1cca6a1668c4..11598ee13cf5 100644 --- a/components/brave_ads/core/internal/resources/behavioral/conversions/conversions_info.cc +++ b/components/brave_ads/core/internal/resources/behavioral/conversions/conversions_info.cc @@ -14,9 +14,12 @@ namespace brave_ads::resource { ConversionsInfo::ConversionsInfo() = default; + ConversionsInfo::ConversionsInfo(ConversionsInfo&& other) noexcept = default; + ConversionsInfo& ConversionsInfo::operator=(ConversionsInfo&& other) noexcept = default; + ConversionsInfo::~ConversionsInfo() = default; // static diff --git a/components/brave_ads/core/internal/resources/behavioral/conversions/conversions_resource_unittest.cc b/components/brave_ads/core/internal/resources/behavioral/conversions/conversions_resource_unittest.cc index dd0b6d42043b..09dab67e72f8 100644 --- a/components/brave_ads/core/internal/resources/behavioral/conversions/conversions_resource_unittest.cc +++ b/components/brave_ads/core/internal/resources/behavioral/conversions/conversions_resource_unittest.cc @@ -5,18 +5,30 @@ #include "brave/components/brave_ads/core/internal/resources/behavioral/conversions/conversions_resource.h" +#include +#include + +#include "base/files/file.h" #include "brave/components/brave_ads/core/internal/common/unittest/unittest_base.h" -#include "brave/components/brave_ads/core/internal/resources/behavioral/conversions/conversions_info.h" +#include "brave/components/brave_ads/core/internal/common/unittest/unittest_file_util.h" +#include "brave/components/brave_ads/core/internal/resources/resources_unittest_constants.h" // npm run test -- brave_unit_tests --filter=BatAds* -namespace brave_ads::resource { +namespace brave_ads { + +using testing::_; +using testing::Invoke; + +namespace { +constexpr char kResourceId[] = "nnqccijfhvzwyrxpxwjrpmynaiazctqb"; +} // namespace class BatAdsConversionsResourceTest : public UnitTestBase {}; -TEST_F(BatAdsConversionsResourceTest, Load) { +TEST_F(BatAdsConversionsResourceTest, LoadResource) { // Arrange - Conversions resource; + resource::Conversions resource; // Act resource.Load(); @@ -26,18 +38,51 @@ TEST_F(BatAdsConversionsResourceTest, Load) { EXPECT_TRUE(resource.IsInitialized()); } -TEST_F(BatAdsConversionsResourceTest, Get) { +TEST_F(BatAdsConversionsResourceTest, DoNotLoadInvalidResource) { + // Arrange + CopyFileFromTestPathToTempPath(kInvalidResourceId, kResourceId); + + resource::Conversions resource; + resource.Load(); + task_environment_.RunUntilIdle(); + + // Act + + // Assert + EXPECT_FALSE(resource.IsInitialized()); +} + +TEST_F(BatAdsConversionsResourceTest, DoNotLoadMissingResource) { // Arrange - Conversions resource; + EXPECT_CALL(*ads_client_mock_, LoadFileResource(kResourceId, _, _)) + .WillOnce(Invoke([](const std::string& /*id*/, const int /*version*/, + LoadFileCallback callback) { + const base::FilePath path = + GetFileResourcePath().AppendASCII(kMissingResourceId); + + base::File file( + path, base::File::Flags::FLAG_OPEN | base::File::Flags::FLAG_READ); + std::move(callback).Run(std::move(file)); + })); + + resource::Conversions resource; resource.Load(); task_environment_.RunUntilIdle(); // Act - const ConversionIdPatternMap conversion_id_patterns = - resource.get()->id_patterns; // Assert - EXPECT_EQ(2U, conversion_id_patterns.size()); + EXPECT_FALSE(resource.IsInitialized()); +} + +TEST_F(BatAdsConversionsResourceTest, IsNotInitialized) { + // Arrange + resource::Conversions resource; + + // Act + + // Assert + EXPECT_FALSE(resource.IsInitialized()); } -} // namespace brave_ads::resource +} // namespace brave_ads diff --git a/components/brave_ads/core/internal/resources/behavioral/multi_armed_bandits/epsilon_greedy_bandit_resource_unittest.cc b/components/brave_ads/core/internal/resources/behavioral/multi_armed_bandits/epsilon_greedy_bandit_resource_unittest.cc index 2173da44c14a..911db913ce16 100644 --- a/components/brave_ads/core/internal/resources/behavioral/multi_armed_bandits/epsilon_greedy_bandit_resource_unittest.cc +++ b/components/brave_ads/core/internal/resources/behavioral/multi_armed_bandits/epsilon_greedy_bandit_resource_unittest.cc @@ -16,7 +16,7 @@ // npm run test -- brave_unit_tests --filter=BatAds* -namespace brave_ads::resource { +namespace brave_ads { namespace { constexpr char kCatalog[] = "catalog.json"; @@ -38,7 +38,7 @@ TEST_F(BatAdsEpsilonGreedyBanditResourceTest, ASSERT_TRUE(catalog_info); // Act - EpsilonGreedyBandit resource(&catalog); + resource::EpsilonGreedyBandit resource(&catalog); resource.LoadFromCatalog(*catalog_info); // Assert @@ -51,7 +51,7 @@ TEST_F(BatAdsEpsilonGreedyBanditResourceTest, Catalog catalog; // Act - EpsilonGreedyBandit resource(&catalog); + resource::EpsilonGreedyBandit resource(&catalog); resource.LoadFromCatalog(/*catalog*/ {}); // Assert @@ -64,10 +64,10 @@ TEST_F(BatAdsEpsilonGreedyBanditResourceTest, Catalog catalog; // Act - const EpsilonGreedyBandit resource(&catalog); + const resource::EpsilonGreedyBandit resource(&catalog); // Assert EXPECT_FALSE(resource.IsInitialized()); } -} // namespace brave_ads::resource +} // namespace brave_ads diff --git a/components/brave_ads/core/internal/resources/behavioral/purchase_intent/purchase_intent_info.cc b/components/brave_ads/core/internal/resources/behavioral/purchase_intent/purchase_intent_info.cc index 76cc1b6525eb..fddd9f0b92db 100644 --- a/components/brave_ads/core/internal/resources/behavioral/purchase_intent/purchase_intent_info.cc +++ b/components/brave_ads/core/internal/resources/behavioral/purchase_intent/purchase_intent_info.cc @@ -15,10 +15,13 @@ namespace brave_ads::targeting { PurchaseIntentInfo::PurchaseIntentInfo() = default; + PurchaseIntentInfo::PurchaseIntentInfo(PurchaseIntentInfo&& other) noexcept = default; + PurchaseIntentInfo& PurchaseIntentInfo::operator=( PurchaseIntentInfo&& other) noexcept = default; + PurchaseIntentInfo::~PurchaseIntentInfo() = default; // static diff --git a/components/brave_ads/core/internal/resources/behavioral/purchase_intent/purchase_intent_resource.cc b/components/brave_ads/core/internal/resources/behavioral/purchase_intent/purchase_intent_resource.cc index 832a5672aeee..ef25ad8d1320 100644 --- a/components/brave_ads/core/internal/resources/behavioral/purchase_intent/purchase_intent_resource.cc +++ b/components/brave_ads/core/internal/resources/behavioral/purchase_intent/purchase_intent_resource.cc @@ -20,6 +20,7 @@ constexpr char kResourceId[] = "bejenkminijgplakmkmcgkhjjnkelbld"; } // namespace PurchaseIntent::PurchaseIntent() = default; + PurchaseIntent::~PurchaseIntent() = default; void PurchaseIntent::Load() { diff --git a/components/brave_ads/core/internal/resources/behavioral/purchase_intent/purchase_intent_resource_unittest.cc b/components/brave_ads/core/internal/resources/behavioral/purchase_intent/purchase_intent_resource_unittest.cc index ef4976df1741..d89aeb0d2778 100644 --- a/components/brave_ads/core/internal/resources/behavioral/purchase_intent/purchase_intent_resource_unittest.cc +++ b/components/brave_ads/core/internal/resources/behavioral/purchase_intent/purchase_intent_resource_unittest.cc @@ -5,17 +5,30 @@ #include "brave/components/brave_ads/core/internal/resources/behavioral/purchase_intent/purchase_intent_resource.h" +#include +#include + +#include "base/files/file.h" #include "brave/components/brave_ads/core/internal/common/unittest/unittest_base.h" +#include "brave/components/brave_ads/core/internal/common/unittest/unittest_file_util.h" +#include "brave/components/brave_ads/core/internal/resources/resources_unittest_constants.h" // npm run test -- brave_unit_tests --filter=BatAds* -namespace brave_ads::resource { +namespace brave_ads { + +using testing::_; +using testing::Invoke; + +namespace { +constexpr char kResourceId[] = "bejenkminijgplakmkmcgkhjjnkelbld"; +} // namespace class BatAdsPurchaseIntentResourceTest : public UnitTestBase {}; -TEST_F(BatAdsPurchaseIntentResourceTest, Load) { +TEST_F(BatAdsPurchaseIntentResourceTest, LoadResource) { // Arrange - PurchaseIntent resource; + resource::PurchaseIntent resource; // Act resource.Load(); @@ -25,4 +38,51 @@ TEST_F(BatAdsPurchaseIntentResourceTest, Load) { EXPECT_TRUE(resource.IsInitialized()); } -} // namespace brave_ads::resource +TEST_F(BatAdsPurchaseIntentResourceTest, DoNotLoadInvalidResource) { + // Arrange + CopyFileFromTestPathToTempPath(kInvalidResourceId, kResourceId); + + resource::PurchaseIntent resource; + resource.Load(); + task_environment_.RunUntilIdle(); + + // Act + + // Assert + EXPECT_FALSE(resource.IsInitialized()); +} + +TEST_F(BatAdsPurchaseIntentResourceTest, DoNotLoadMissingResource) { + // Arrange + resource::PurchaseIntent resource; + EXPECT_CALL(*ads_client_mock_, LoadFileResource(kResourceId, _, _)) + .WillOnce(Invoke([](const std::string& /*id*/, const int /*version*/, + LoadFileCallback callback) { + const base::FilePath path = + GetFileResourcePath().AppendASCII(kMissingResourceId); + + base::File file( + path, base::File::Flags::FLAG_OPEN | base::File::Flags::FLAG_READ); + std::move(callback).Run(std::move(file)); + })); + + resource.Load(); + task_environment_.RunUntilIdle(); + + // Act + + // Assert + EXPECT_FALSE(resource.IsInitialized()); +} + +TEST_F(BatAdsPurchaseIntentResourceTest, IsNotInitialized) { + // Arrange + resource::PurchaseIntent resource; + + // Act + + // Assert + EXPECT_FALSE(resource.IsInitialized()); +} + +} // namespace brave_ads diff --git a/components/brave_ads/core/internal/resources/behavioral/purchase_intent/purchase_intent_signal_history_info.h b/components/brave_ads/core/internal/resources/behavioral/purchase_intent/purchase_intent_signal_history_info.h index 6661209e1f7b..5fd865ce69d8 100644 --- a/components/brave_ads/core/internal/resources/behavioral/purchase_intent/purchase_intent_signal_history_info.h +++ b/components/brave_ads/core/internal/resources/behavioral/purchase_intent/purchase_intent_signal_history_info.h @@ -30,7 +30,7 @@ bool operator!=(const PurchaseIntentSignalHistoryInfo&, using PurchaseIntentSignalHistoryList = std::vector; using PurchaseIntentSignalHistoryMap = - std::map; + std::map; } // namespace brave_ads::targeting diff --git a/components/brave_ads/core/internal/resources/contextual/text_classification/text_classification_resource.cc b/components/brave_ads/core/internal/resources/contextual/text_classification/text_classification_resource.cc index ee1730bd2aff..667922d6494b 100644 --- a/components/brave_ads/core/internal/resources/contextual/text_classification/text_classification_resource.cc +++ b/components/brave_ads/core/internal/resources/contextual/text_classification/text_classification_resource.cc @@ -20,6 +20,7 @@ constexpr char kResourceId[] = "feibnmjhecfbjpeciancnchbmlobenjn"; } // namespace TextClassification::TextClassification() = default; + TextClassification::~TextClassification() = default; bool TextClassification::IsInitialized() const { diff --git a/components/brave_ads/core/internal/resources/contextual/text_classification/text_classification_resource_unittest.cc b/components/brave_ads/core/internal/resources/contextual/text_classification/text_classification_resource_unittest.cc index 2d670d21b529..67ec734185f0 100644 --- a/components/brave_ads/core/internal/resources/contextual/text_classification/text_classification_resource_unittest.cc +++ b/components/brave_ads/core/internal/resources/contextual/text_classification/text_classification_resource_unittest.cc @@ -11,30 +11,24 @@ #include "base/files/file.h" #include "brave/components/brave_ads/core/internal/common/unittest/unittest_base.h" #include "brave/components/brave_ads/core/internal/common/unittest/unittest_file_util.h" +#include "brave/components/brave_ads/core/internal/resources/resources_unittest_constants.h" // npm run test -- brave_unit_tests --filter=BatAds* namespace brave_ads { -namespace { - using testing::_; using testing::Invoke; -constexpr char kInvalidJsonResourceFile[] = - "feibnmjhecfbjpeciancnchbmlobenjn_invalid_json"; -constexpr char kNotExistantResourceFile[] = - "feibnmjhecfbjpeciancnchbmlobenjn_not_existant"; - +namespace { +constexpr char kResourceId[] = "feibnmjhecfbjpeciancnchbmlobenjn"; } // namespace -namespace resource { - class BatAdsTextClassificationResourceTest : public UnitTestBase {}; -TEST_F(BatAdsTextClassificationResourceTest, Load) { +TEST_F(BatAdsTextClassificationResourceTest, LoadResource) { // Arrange - TextClassification resource; + resource::TextClassification resource; // Act resource.Load(); @@ -44,66 +38,51 @@ TEST_F(BatAdsTextClassificationResourceTest, Load) { EXPECT_TRUE(resource.IsInitialized()); } -TEST_F(BatAdsTextClassificationResourceTest, LoadInvalidJsonResource) { +TEST_F(BatAdsTextClassificationResourceTest, DoNotLoadInvalidResource) { // Arrange - TextClassification resource; - EXPECT_CALL(*ads_client_mock_, LoadFileResource(_, _, _)) - .WillOnce(Invoke([](const std::string& /*id*/, const int /*version*/, - LoadFileCallback callback) { - const base::FilePath path = - GetFileResourcePath().AppendASCII(kInvalidJsonResourceFile); - - base::File file( - path, base::File::Flags::FLAG_OPEN | base::File::Flags::FLAG_READ); - std::move(callback).Run(std::move(file)); - })); + CopyFileFromTestPathToTempPath(kInvalidResourceId, kResourceId); - // Act + resource::TextClassification resource; resource.Load(); task_environment_.RunUntilIdle(); + // Act + // Assert EXPECT_FALSE(resource.IsInitialized()); } -TEST_F(BatAdsTextClassificationResourceTest, LoadNotExistantJsonResource) { +TEST_F(BatAdsTextClassificationResourceTest, DoNotLoadMissingResource) { // Arrange - TextClassification resource; - EXPECT_CALL(*ads_client_mock_, LoadFileResource(_, _, _)) + EXPECT_CALL(*ads_client_mock_, LoadFileResource(kResourceId, _, _)) .WillOnce(Invoke([](const std::string& /*id*/, const int /*version*/, LoadFileCallback callback) { const base::FilePath path = - GetFileResourcePath().AppendASCII(kNotExistantResourceFile); + GetFileResourcePath().AppendASCII(kMissingResourceId); base::File file( path, base::File::Flags::FLAG_OPEN | base::File::Flags::FLAG_READ); std::move(callback).Run(std::move(file)); })); - // Act + resource::TextClassification resource; resource.Load(); task_environment_.RunUntilIdle(); + // Act + // Assert EXPECT_FALSE(resource.IsInitialized()); } -TEST_F(BatAdsTextClassificationResourceTest, LoadNotInitializedFile) { +TEST_F(BatAdsTextClassificationResourceTest, IsNotInitialized) { // Arrange - TextClassification resource; - EXPECT_CALL(*ads_client_mock_, LoadFileResource(_, _, _)) - .WillOnce(Invoke([](const std::string& /*id*/, const int /*version*/, - LoadFileCallback callback) { - std::move(callback).Run(base::File()); - })); + resource::TextClassification resource; // Act - resource.Load(); - task_environment_.RunUntilIdle(); // Assert EXPECT_FALSE(resource.IsInitialized()); } -} // namespace resource } // namespace brave_ads diff --git a/components/brave_ads/core/internal/resources/contextual/text_embedding/text_embedding_resource.cc b/components/brave_ads/core/internal/resources/contextual/text_embedding/text_embedding_resource.cc index aed76790061a..3fda87bfb0e4 100644 --- a/components/brave_ads/core/internal/resources/contextual/text_embedding/text_embedding_resource.cc +++ b/components/brave_ads/core/internal/resources/contextual/text_embedding/text_embedding_resource.cc @@ -20,6 +20,7 @@ constexpr char kResourceId[] = "wtpwsrqtjxmfdwaymauprezkunxprysm"; } // namespace TextEmbedding::TextEmbedding() = default; + TextEmbedding::~TextEmbedding() = default; bool TextEmbedding::IsInitialized() const { diff --git a/components/brave_ads/core/internal/resources/contextual/text_embedding/text_embedding_resource_unittest.cc b/components/brave_ads/core/internal/resources/contextual/text_embedding/text_embedding_resource_unittest.cc index d161e96ddc1d..00b5e77fc661 100644 --- a/components/brave_ads/core/internal/resources/contextual/text_embedding/text_embedding_resource_unittest.cc +++ b/components/brave_ads/core/internal/resources/contextual/text_embedding/text_embedding_resource_unittest.cc @@ -8,31 +8,27 @@ #include #include +#include "base/files/file.h" #include "brave/components/brave_ads/core/internal/common/unittest/unittest_base.h" #include "brave/components/brave_ads/core/internal/common/unittest/unittest_file_util.h" +#include "brave/components/brave_ads/core/internal/resources/resources_unittest_constants.h" // npm run test -- brave_unit_tests --filter=BatAds* -namespace brave_ads::resource { - -namespace { - -constexpr char kResourceFile[] = "wtpwsrqtjxmfdwaymauprezkunxprysm"; -constexpr char kInvalidJsonResourceFile[] = - "resources/wtpwsrqtjxmfdwaymauprezkunxprysm_invalid_json"; -constexpr char kNotExistantResourceFile[] = - "resources/wtpwsrqtjxmfdwaymauprezkunxprysm_not_existant"; - -} // namespace +namespace brave_ads { using testing::_; using testing::Invoke; +namespace { +constexpr char kResourceId[] = "wtpwsrqtjxmfdwaymauprezkunxprysm"; +} // namespace + class BatAdsTextEmbeddingResourceTest : public UnitTestBase {}; -TEST_F(BatAdsTextEmbeddingResourceTest, Load) { +TEST_F(BatAdsTextEmbeddingResourceTest, LoadResource) { // Arrange - TextEmbedding resource; + resource::TextEmbedding resource; // Act resource.Load(); @@ -42,47 +38,49 @@ TEST_F(BatAdsTextEmbeddingResourceTest, Load) { EXPECT_TRUE(resource.IsInitialized()); } -TEST_F(BatAdsTextEmbeddingResourceTest, LoadInvalidJsonResource) { +TEST_F(BatAdsTextEmbeddingResourceTest, DoNotLoadInvalidResource) { // Arrange - CopyFileFromTestPathToTempPath(kInvalidJsonResourceFile, kResourceFile); + CopyFileFromTestPathToTempPath(kInvalidResourceId, kResourceId); - TextEmbedding resource; + resource::TextEmbedding resource; resource.Load(); - task_environment_.RunUntilIdle(); + // Act + // Assert EXPECT_FALSE(resource.IsInitialized()); } -TEST_F(BatAdsTextEmbeddingResourceTest, LoadNotExistantJsonResource) { +TEST_F(BatAdsTextEmbeddingResourceTest, DoNotLoadMissingResource) { // Arrange - TextEmbedding resource; - EXPECT_CALL(*ads_client_mock_, LoadFileResource(_, _, _)) + EXPECT_CALL(*ads_client_mock_, LoadFileResource(kResourceId, _, _)) .WillOnce(Invoke([](const std::string& /*id*/, const int /*version*/, LoadFileCallback callback) { const base::FilePath path = - GetFileResourcePath().AppendASCII(kNotExistantResourceFile); + GetFileResourcePath().AppendASCII(kMissingResourceId); base::File file( path, base::File::Flags::FLAG_OPEN | base::File::Flags::FLAG_READ); std::move(callback).Run(std::move(file)); })); - // Act + resource::TextEmbedding resource; resource.Load(); task_environment_.RunUntilIdle(); + // Act + // Assert EXPECT_FALSE(resource.IsInitialized()); } -TEST_F(BatAdsTextEmbeddingResourceTest, LoadNotInitializedFile) { +TEST_F(BatAdsTextEmbeddingResourceTest, IsNotInitialized) { // Arrange - const TextEmbedding resource; + const resource::TextEmbedding resource; // Assert EXPECT_FALSE(resource.IsInitialized()); } -} // namespace brave_ads::resource +} // namespace brave_ads diff --git a/components/brave_ads/core/internal/resources/resources_unittest_constants.h b/components/brave_ads/core/internal/resources/resources_unittest_constants.h new file mode 100644 index 000000000000..e744e5f114f1 --- /dev/null +++ b/components/brave_ads/core/internal/resources/resources_unittest_constants.h @@ -0,0 +1,16 @@ +/* Copyright (c) 2023 The Brave Authors. All rights reserved. + * This Source Code Form is subject to the terms of the Mozilla Public + * License, v. 2.0. If a copy of the MPL was not distributed with this file, + * You can obtain one at https://mozilla.org/MPL/2.0/. */ + +#ifndef BRAVE_COMPONENTS_BRAVE_ADS_CORE_INTERNAL_RESOURCES_RESOURCES_UNITTEST_CONSTANTS_H_ +#define BRAVE_COMPONENTS_BRAVE_ADS_CORE_INTERNAL_RESOURCES_RESOURCES_UNITTEST_CONSTANTS_H_ + +namespace brave_ads { + +constexpr char kMissingResourceId[] = "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"; +constexpr char kInvalidResourceId[] = "resources/invalid_resource"; + +} // namespace brave_ads + +#endif // BRAVE_COMPONENTS_BRAVE_ADS_CORE_INTERNAL_RESOURCES_RESOURCES_UNITTEST_CONSTANTS_H_ diff --git a/components/brave_ads/core/internal/resources/resources_util.h b/components/brave_ads/core/internal/resources/resources_util.h index 12c67f95c4c0..78bf6ba1cc77 100644 --- a/components/brave_ads/core/internal/resources/resources_util.h +++ b/components/brave_ads/core/internal/resources/resources_util.h @@ -13,7 +13,6 @@ namespace brave_ads::resource { -// TODO(tmancey): template using LoadAndParseResourceCallback = base::OnceCallback)>; diff --git a/components/brave_ads/core/internal/segments/segment_alias.h b/components/brave_ads/core/internal/segments/segment_alias.h index 142e5233530d..0ace4d68535b 100644 --- a/components/brave_ads/core/internal/segments/segment_alias.h +++ b/components/brave_ads/core/internal/segments/segment_alias.h @@ -11,7 +11,7 @@ namespace brave_ads { -using SegmentList = std::vector; +using SegmentList = std::vector; } // namespace brave_ads diff --git a/components/brave_ads/core/internal/segments/segment_util_unittest.cc b/components/brave_ads/core/internal/segments/segment_util_unittest.cc index fe3383917782..1e8dd8a06d33 100644 --- a/components/brave_ads/core/internal/segments/segment_util_unittest.cc +++ b/components/brave_ads/core/internal/segments/segment_util_unittest.cc @@ -83,7 +83,6 @@ TEST_F(BatAdsSegmentUtilTest, GetParentSegments) { // Assert const SegmentList expected_parent_segments = { "technology & computing", "personal finance", "automobiles"}; - EXPECT_EQ(expected_parent_segments, parent_segments); } @@ -103,10 +102,9 @@ TEST_F(BatAdsSegmentUtilTest, ShouldFilterMatchingParentChildSegment) { "parent-child", CategoryContentOptActionType::kNone); // Act - const bool should_filter_segment = ShouldFilterSegment("parent-child"); // Assert - EXPECT_TRUE(should_filter_segment); + EXPECT_TRUE(ShouldFilterSegment("parent-child")); } TEST_F(BatAdsSegmentUtilTest, ShouldNotFilterNonMatchingParentChildSegment) { @@ -115,10 +113,9 @@ TEST_F(BatAdsSegmentUtilTest, ShouldNotFilterNonMatchingParentChildSegment) { "parent-child", CategoryContentOptActionType::kNone); // Act - const bool should_filter_segment = ShouldFilterSegment("foo-bar"); // Assert - EXPECT_FALSE(should_filter_segment); + EXPECT_FALSE(ShouldFilterSegment("foo-bar")); } TEST_F(BatAdsSegmentUtilTest, ShouldFilterMatchingParentSegment) { @@ -127,10 +124,9 @@ TEST_F(BatAdsSegmentUtilTest, ShouldFilterMatchingParentSegment) { "parent", CategoryContentOptActionType::kNone); // Act - const bool should_filter_segment = ShouldFilterSegment("parent"); // Assert - EXPECT_TRUE(should_filter_segment); + EXPECT_TRUE(ShouldFilterSegment("parent")); } TEST_F(BatAdsSegmentUtilTest, ShouldNotFilterNonMatchingParentSegment) { @@ -139,10 +135,9 @@ TEST_F(BatAdsSegmentUtilTest, ShouldNotFilterNonMatchingParentSegment) { "parent", CategoryContentOptActionType::kNone); // Act - const bool should_filter_segment = ShouldFilterSegment("foo"); // Assert - EXPECT_FALSE(should_filter_segment); + EXPECT_FALSE(ShouldFilterSegment("foo")); } TEST_F(BatAdsSegmentUtilTest, @@ -152,10 +147,9 @@ TEST_F(BatAdsSegmentUtilTest, "parent", CategoryContentOptActionType::kNone); // Act - const bool should_filter_segment = ShouldFilterSegment("parent-child"); // Assert - EXPECT_TRUE(should_filter_segment); + EXPECT_TRUE(ShouldFilterSegment("parent-child")); } TEST_F(BatAdsSegmentUtilTest, @@ -165,53 +159,47 @@ TEST_F(BatAdsSegmentUtilTest, "parent", CategoryContentOptActionType::kNone); // Act - const bool should_filter_segment = ShouldFilterSegment("foo-bar"); // Assert - EXPECT_FALSE(should_filter_segment); + EXPECT_FALSE(ShouldFilterSegment("foo-bar")); } TEST_F(BatAdsSegmentUtilTest, MatchParentSegments) { // Arrange // Act - const bool does_match = MatchParentSegments("technology & computing-windows", - "technology & computing-linux"); // Assert - EXPECT_TRUE(does_match); + EXPECT_TRUE(MatchParentSegments("technology & computing-windows", + "technology & computing-linux")); } TEST_F(BatAdsSegmentUtilTest, ParentSegmentsDoNotMatch) { // Arrange // Act - const bool does_match = - MatchParentSegments("business-banking", "technology & computing-linux"); // Assert - EXPECT_FALSE(does_match); + EXPECT_FALSE( + MatchParentSegments("business-banking", "technology & computing-linux")); } TEST_F(BatAdsSegmentUtilTest, HasChildSegment) { // Arrange // Act - const bool has_child_segment = - HasChildSegment("technology & computing-windows"); // Assert - EXPECT_TRUE(has_child_segment); + EXPECT_TRUE(HasChildSegment("technology & computing-windows")); } TEST_F(BatAdsSegmentUtilTest, DoesNotHaveChildSegment) { // Arrange // Act - const bool has_child_segment = HasChildSegment("technology & computing"); // Assert - EXPECT_FALSE(has_child_segment); + EXPECT_FALSE(HasChildSegment("technology & computing")); } } // namespace brave_ads diff --git a/components/brave_ads/core/internal/tabs/tab_manager.h b/components/brave_ads/core/internal/tabs/tab_manager.h index 7f287635abea..8a1bd2b83fd8 100644 --- a/components/brave_ads/core/internal/tabs/tab_manager.h +++ b/components/brave_ads/core/internal/tabs/tab_manager.h @@ -90,7 +90,7 @@ class TabManager final : public AdsClientNotifierObserver { int32_t visible_tab_id_ = 0; int32_t last_visible_tab_id_ = 0; - std::map tabs_; + std::map tabs_; }; } // namespace brave_ads diff --git a/components/brave_ads/core/internal/user_attention/user_activity/page_transition_util_unittest.cc b/components/brave_ads/core/internal/user_attention/user_activity/page_transition_util_unittest.cc index 80c9e1f5be70..0d54a8b37a69 100644 --- a/components/brave_ads/core/internal/user_attention/user_activity/page_transition_util_unittest.cc +++ b/components/brave_ads/core/internal/user_attention/user_activity/page_transition_util_unittest.cc @@ -15,10 +15,9 @@ TEST(BatAdsPageTransitionUtilTest, IsNewNavigation) { // Arrange // Act - const bool did_transition_page = IsNewNavigation(kPageTransitionTyped); // Assert - EXPECT_TRUE(did_transition_page); + EXPECT_TRUE(IsNewNavigation(kPageTransitionTyped)); } TEST(BatAdsPageTransitionUtilTest, @@ -26,77 +25,68 @@ TEST(BatAdsPageTransitionUtilTest, // Arrange // Act - const bool did_transition_page = - DidUseBackOrFowardButtonToTriggerNavigation(kPageTransitionForwardBack); // Assert - EXPECT_TRUE(did_transition_page); + EXPECT_TRUE( + DidUseBackOrFowardButtonToTriggerNavigation(kPageTransitionForwardBack)); } TEST(BatAdsPageTransitionUtilTest, DidUseAddressBarToTriggerNavigation) { // Arrange // Act - const bool did_transition_page = - DidUseAddressBarToTriggerNavigation(kPageTransitionFromAddressBar); // Assert - EXPECT_TRUE(did_transition_page); + EXPECT_TRUE( + DidUseAddressBarToTriggerNavigation(kPageTransitionFromAddressBar)); } TEST(BatAdsPageTransitionUtilTest, DidNavigateToHomePage) { // Arrange // Act - const bool did_transition_page = - DidNavigateToHomePage(kPageTransitionHomePage); // Assert - EXPECT_TRUE(did_transition_page); + EXPECT_TRUE(DidNavigateToHomePage(kPageTransitionHomePage)); } TEST(BatAdsPageTransitionUtilTest, DidTransitionFromExternalApplication) { // Arrange // Act - const bool did_transition_page = - DidTransitionFromExternalApplication(kPageTransitionFromAPI); // Assert - EXPECT_TRUE(did_transition_page); + EXPECT_TRUE(DidTransitionFromExternalApplication(kPageTransitionFromAPI)); } TEST(BatAdsPageTransitionUtilTest, ToUserActivityClickedLinkEventType) { // Arrange // Act - const absl::optional event_type = - ToUserActivityEventType(kPageTransitionLink); // Assert - EXPECT_EQ(UserActivityEventType::kClickedLink, event_type); + EXPECT_EQ(UserActivityEventType::kClickedLink, + ToUserActivityEventType(kPageTransitionLink)); } TEST(BatAdsPageTransitionUtilTest, ToUserActivityTypedUrlEventType) { // Arrange // Act - const absl::optional event_type = - ToUserActivityEventType(kPageTransitionTyped); // Assert - EXPECT_EQ(UserActivityEventType::kTypedUrl, event_type); + EXPECT_EQ(UserActivityEventType::kTypedUrl, + ToUserActivityEventType(kPageTransitionTyped)); } TEST(BatAdsPageTransitionUtilTest, ToUserActivityClickedBookmarkEventType) { // Arrange // Act - const absl::optional event_type = - ToUserActivityEventType(kPageTransitionAutoBookmark); // Assert - EXPECT_EQ(UserActivityEventType::kClickedBookmark, event_type); + EXPECT_EQ(UserActivityEventType::kClickedBookmark, + ToUserActivityEventType(kPageTransitionAutoBookmark)); } TEST(BatAdsPageTransitionUtilTest, @@ -104,33 +94,30 @@ TEST(BatAdsPageTransitionUtilTest, // Arrange // Act - const absl::optional event_type = - ToUserActivityEventType(kPageTransitionGenerated); // Assert - EXPECT_EQ(UserActivityEventType::kTypedAndSelectedNonUrl, event_type); + EXPECT_EQ(UserActivityEventType::kTypedAndSelectedNonUrl, + ToUserActivityEventType(kPageTransitionGenerated)); } TEST(BatAdsPageTransitionUtilTest, ToUserActivitySubmittedFormEventType) { // Arrange // Act - const absl::optional event_type = - ToUserActivityEventType(kPageTransitionFormSubmit); // Assert - EXPECT_EQ(UserActivityEventType::kSubmittedForm, event_type); + EXPECT_EQ(UserActivityEventType::kSubmittedForm, + ToUserActivityEventType(kPageTransitionFormSubmit)); } TEST(BatAdsPageTransitionUtilTest, ToUserActivityClickedReloadButtonEventType) { // Arrange // Act - const absl::optional event_type = - ToUserActivityEventType(kPageTransitionReload); // Assert - EXPECT_EQ(UserActivityEventType::kClickedReloadButton, event_type); + EXPECT_EQ(UserActivityEventType::kClickedReloadButton, + ToUserActivityEventType(kPageTransitionReload)); } TEST(BatAdsPageTransitionUtilTest, @@ -138,23 +125,20 @@ TEST(BatAdsPageTransitionUtilTest, // Arrange // Act - const absl::optional event_type = - ToUserActivityEventType(kPageTransitionKeyword); // Assert EXPECT_EQ(UserActivityEventType::kTypedKeywordOtherThanDefaultSearchProvider, - event_type); + ToUserActivityEventType(kPageTransitionKeyword)); } TEST(BatAdsPageTransitionUtilTest, ToUserActivityGeneratedKeywordEventType) { // Arrange // Act - const absl::optional event_type = - ToUserActivityEventType(kPageTransitionKeywordGenerated); // Assert - EXPECT_EQ(UserActivityEventType::kGeneratedKeyword, event_type); + EXPECT_EQ(UserActivityEventType::kGeneratedKeyword, + ToUserActivityEventType(kPageTransitionKeywordGenerated)); } } // namespace brave_ads diff --git a/components/brave_ads/core/internal/user_attention/user_activity/user_activity_scoring_util_unittest.cc b/components/brave_ads/core/internal/user_attention/user_activity/user_activity_scoring_util_unittest.cc index 514c342f43ca..6ba80f60b277 100644 --- a/components/brave_ads/core/internal/user_attention/user_activity/user_activity_scoring_util_unittest.cc +++ b/components/brave_ads/core/internal/user_attention/user_activity/user_activity_scoring_util_unittest.cc @@ -41,36 +41,33 @@ TEST_F(BatAdsUserActivityScoringUtilTest, WasUserActive) { // Arrange UserActivityManager::GetInstance()->RecordEvent( UserActivityEventType::kOpenedNewTab); - UserActivityManager::GetInstance()->RecordEvent( - UserActivityEventType::kClosedTab); // Act - const bool was_user_active = WasUserActive(); + UserActivityManager::GetInstance()->RecordEvent( + UserActivityEventType::kClosedTab); // Assert - EXPECT_TRUE(was_user_active); + EXPECT_TRUE(WasUserActive()); } TEST_F(BatAdsUserActivityScoringUtilTest, WasUserInactive) { // Arrange // Act - const bool was_user_active = WasUserActive(); // Assert - EXPECT_FALSE(was_user_active); + EXPECT_FALSE(WasUserActive()); } TEST_F(BatAdsUserActivityScoringUtilTest, WasUserInactiveIfBelowThreshold) { // Arrange - UserActivityManager::GetInstance()->RecordEvent( - UserActivityEventType::kOpenedNewTab); // Act - const bool was_user_active = WasUserActive(); + UserActivityManager::GetInstance()->RecordEvent( + UserActivityEventType::kOpenedNewTab); // Assert - EXPECT_FALSE(was_user_active); + EXPECT_FALSE(WasUserActive()); } TEST_F(BatAdsUserActivityScoringUtilTest, @@ -81,15 +78,11 @@ TEST_F(BatAdsUserActivityScoringUtilTest, UserActivityManager::GetInstance()->RecordEvent( UserActivityEventType::kClosedTab); - const base::TimeDelta elapsed_time_window = - kUserActivityTimeWindow.Get() + base::Milliseconds(1); - AdvanceClockBy(elapsed_time_window); - // Act - const bool was_user_active = WasUserActive(); + AdvanceClockBy(kUserActivityTimeWindow.Get() + base::Milliseconds(1)); // Assert - EXPECT_FALSE(was_user_active); + EXPECT_FALSE(WasUserActive()); } } // namespace brave_ads diff --git a/components/brave_ads/core/internal/user_attention/user_reactions/user_reactions_unittest.cc b/components/brave_ads/core/internal/user_attention/user_reactions/user_reactions_unittest.cc index 4c81279b50ec..8baeddd47f7a 100644 --- a/components/brave_ads/core/internal/user_attention/user_reactions/user_reactions_unittest.cc +++ b/components/brave_ads/core/internal/user_attention/user_reactions/user_reactions_unittest.cc @@ -37,14 +37,12 @@ class BatAdsUserReactionsTest : public AccountObserver, public UnitTestBase { void SetUp() override { UnitTestBase::SetUp(); - token_generator_mock_ = - std::make_unique>(); - account_ = std::make_unique(token_generator_mock_.get()); + account_ = std::make_unique(&token_generator_mock_); account_->AddObserver(this); user_reactions_ = std::make_unique(account_.get()); - ON_CALL(*token_generator_mock_, Generate(_)) + ON_CALL(token_generator_mock_, Generate(_)) .WillByDefault(Return(privacy::GetTokens(/*count*/ 1))); privacy::SetUnblindedTokens(/*count*/ 1); @@ -75,7 +73,7 @@ class BatAdsUserReactionsTest : public AccountObserver, public UnitTestBase { failed_to_process_deposit_ = true; } - std::unique_ptr token_generator_mock_; + NiceMock token_generator_mock_; std::unique_ptr account_; bool did_process_deposit_ = false; diff --git a/components/brave_ads/core/test/BUILD.gn b/components/brave_ads/core/test/BUILD.gn index 04526cd6298f..533dc6a5f3b1 100644 --- a/components/brave_ads/core/test/BUILD.gn +++ b/components/brave_ads/core/test/BUILD.gn @@ -448,6 +448,7 @@ source_set("brave_ads_unit_tests") { "//brave/components/brave_ads/core/internal/resources/behavioral/purchase_intent/purchase_intent_resource_unittest.cc", "//brave/components/brave_ads/core/internal/resources/contextual/text_classification/text_classification_resource_unittest.cc", "//brave/components/brave_ads/core/internal/resources/contextual/text_embedding/text_embedding_resource_unittest.cc", + "//brave/components/brave_ads/core/internal/resources/resources_unittest_constants.h", "//brave/components/brave_ads/core/internal/segments/segment_util_unittest.cc", "//brave/components/brave_ads/core/internal/segments/segment_value_util_unittest.cc", "//brave/components/brave_ads/core/internal/settings/settings_unittest.cc", diff --git a/components/brave_ads/core/test/data/resources/feibnmjhecfbjpeciancnchbmlobenjn_invalid_json b/components/brave_ads/core/test/data/resources/feibnmjhecfbjpeciancnchbmlobenjn_invalid_json deleted file mode 100644 index 96a43d7ff9b5..000000000000 --- a/components/brave_ads/core/test/data/resources/feibnmjhecfbjpeciancnchbmlobenjn_invalid_json +++ /dev/null @@ -1,37 +0,0 @@ -{ - NOT_VALID_JSON - "locale": "EN", - "version": 1, - "timestamp": "2020-04-21 18:53:48.704847", - "transformations": [ - { - "transformation_type": "TO_LOWER" - }, - { - "transformation_type": "HASHED_NGRAMS", - "params": { - "ngrams_range": [ - 4 - ], - "num_buckets": 10000 - } - }, - { - "transformation_type": "NORMALIZE" - } - ], - "classifier": { - "classifier_type": "LINEAR", - "classes": [ - "architecture-architecture" - ], - "class_weights": { - "architecture-architecture": [ - -0.0002 - ] - }, - "biases": [ - 0 - ] - } -} diff --git a/components/brave_ads/core/test/data/resources/invalid_resource b/components/brave_ads/core/test/data/resources/invalid_resource new file mode 100644 index 000000000000..0e54918647fe --- /dev/null +++ b/components/brave_ads/core/test/data/resources/invalid_resource @@ -0,0 +1 @@ +INVALID JSON diff --git a/components/brave_ads/core/test/data/resources/mkdhnfmjhklfnamlheoliekgeohamoig b/components/brave_ads/core/test/data/resources/mkdhnfmjhklfnamlheoliekgeohamoig index 1518eeecd90d..2b46662635c7 100644 --- a/components/brave_ads/core/test/data/resources/mkdhnfmjhklfnamlheoliekgeohamoig +++ b/components/brave_ads/core/test/data/resources/mkdhnfmjhklfnamlheoliekgeohamoig @@ -3,7 +3,7 @@ "version": 1, "timestamp": "2021-03-32 00:00:00", "sites": { - "5bdeab83-048f-48a7-9602-a1092ded123c": [ + "c2ba3e7d-f688-4bc4-a053-cbe7ac1e6123": [ "https://www.brave.com", "https://www.bravesoftware.com/" ], @@ -11,4 +11,4 @@ "https://www.bar.org" ] } -} \ No newline at end of file +} diff --git a/components/brave_ads/core/test/data/resources/wtpwsrqtjxmfdwaymauprezkunxprysm b/components/brave_ads/core/test/data/resources/wtpwsrqtjxmfdwaymauprezkunxprysm index 494d437ee857..b60d141252b8 100644 --- a/components/brave_ads/core/test/data/resources/wtpwsrqtjxmfdwaymauprezkunxprysm +++ b/components/brave_ads/core/test/data/resources/wtpwsrqtjxmfdwaymauprezkunxprysm @@ -3,372371 +3,20 @@ "timestamp": "2022-06-09 08:00:00.704847", "version": 1, "embeddings": { - "computer-based": [ - -0.064739, - -0.0045274, - -0.034366, - 0.0025805, - -0.0049916, - 0.013201, - 0.019719, - -0.052702, - -0.00062663, - 0.0086113, - 0.013345, - -0.018744, - -0.027416, - 0.037625, - -0.0024033, - 0.026011, - 0.057943, - 0.055109, - 0.037833, - 0.0094755, - -0.039404, - 0.024079, - 0.037148, - 0.038093, - 0.0014721, - 0.022359, - -0.021367, - 0.015442, - 0.024314, - 0.017985, - -0.028655, - -0.0028699, - -0.013963, - -0.065708, - 0.066867, - -0.0090839, - -0.013788, - -0.0043428, - 0.034044, - 0.0075364, - -0.037527, - -0.083954, - -0.023719, - 0.022324, - 0.015777, - -0.02335, - 0.02248, - -0.0080314, - 0.016192, - -0.018303, - -0.081916, - 0.018184, - -0.0025618, - 0.026432, - -0.020682, - 0.018376, - 0.0070382, - -0.027802, - 0.010503, - -0.030366, - 0.019995, - 0.01465, - 0.069541, - 0.076818, - -0.0092874, - 0.00097251, - -0.023795, - 0.015249, - -0.0090784, - 0.013368, - 0.0040245, - 0.0066167, - 0.018026, - 0.0073469, - 0.028822, - -0.024359, - -0.0096464, - -0.032884, - 0.014232, - -0.034535, - -0.0093447, - -0.02003, - -0.054796, - 0.013653, - 0.0096051, - -0.045379, - -0.023004, - -0.0010185, - -0.020501, - 0.019706, - -0.010598, - 0.032617, - -0.062142, - -0.00053923, - -0.01637, - 0.046962, - 0.0075063, - 0.0033272, - 0.025441, - -0.002931, - 0.027848, - -0.013543, - -0.0071566, - -0.026376, - -0.022877, - -0.041837, - 0.008469, - 0.0097354, - -0.018186, - -0.004279, - -0.013567, - 0.052056, - 0.02206, - 0.020301, - -0.03005, - 0.027897, - -0.026679, - 0.01171, - -0.0077624, - -0.00066682, - -0.020041, - 0.02655, - 0.022383, - -0.0020139, - 0.046126, - 0.011664, - -0.0032975, - 0.010629, - -0.02133, - 0.039557, - -0.018699, - -0.0050691, - -0.010931, - 0.012105, - 0.065755, - -0.033887, - 0.072902, - -0.027028, - 0.021289, - -0.0054826, - 0.02306, - 0.051512, - -0.0034143, - 0.002887, - -0.011878, - -0.022869, - -0.019515, - -0.028482, - 0.012206, - 0.036441, - 0.07162, - 0.098521, - 0.0053955, - -0.031251, - 0.0036954, - 0.009098, - -0.035588, - 0.027416, - 0.032646, - -0.017372, - 0.0183, - 0.001191, - -0.049115, - -0.0035166, - -0.011203, - 0.0067913, - 0.017317, - -0.0065816, - 0.02006, - 0.0095851, - 0.011457, - 0.011693, - 0.023807, - 0.017386, - -0.002964, - 0.036774, - -0.012055, - 0.0093705, - -0.041611, - 0.017727, - 0.060725, - 0.018155, - -0.044344, - 0.017443, - -0.010716, - 0.00023507, - -0.061974, - 0.094631, - -0.065716, - 0.0029785, - -0.033501, - 0.033484, - 0.049504, - -0.026487, - 0.0060211, - -0.037266, - -0.031044, - 0.023848, - -0.0012274, - 0.0011192, - -0.079172, - 0.034039, - -0.029197, - 0.012121, - -0.039969, - 0.025185, - 0.014782, - -0.0049008, - -0.045049, - 0.0050999, - 0.095338, - 0.034506, - 0.023973, - 0.030517, - -0.0028285, - -0.0034477, - 0.027971, - -0.005773, - -0.02778, - 0.0031937, - 0.0046913, - 0.021185, - -0.0065225, - 0.050929, - -0.028687, - -0.036772, - 0.02008, - 0.025265, - 0.011454, - -0.023343, - -0.007277, - -0.037855, - -0.0023923, - -0.025676, - 0.0060242, - 0.0038974, - 0.025777, - -0.0047436, - -0.018283, - -0.013582, - 0.030462, - 0.0263, - 0.041093, - 0.011076, - -0.094951, - 0.022063, - -0.0020801, - 0.0087264, - -0.011435, - 0.0049219, - 0.021467, - 0.028093, - 0.019808, - -0.0060902, - -0.018869, - 0.051437, - 0.0072448, - -0.033824, - -0.0073285, - -0.012183, - 0.026388, - 0.0081658, - -0.019845, - 0.028656, - -0.00062394, - -0.016956, - 0.020711, - -0.008927, - -0.019725, - 0.022352, - -0.045111, - 0.046037, - -0.042962, - 0.0017385, - -0.075868, - -0.04917, - 0.016699, - 0.040764, - 0.015829, - -0.010209, - 0.09196, - 0.018467, - -0.01016, - -0.029115, - -0.053557, - -0.023967, - -0.018528, - 0.00066692, - -0.03619, - 0.003579, - -0.032679, - 0.0101, - -0.0075264, - -0.022313, - 0.022948, - 0.025205, - -0.0073181, - -0.041812, - 0.029431, - 0.0077017 - ], - "diplomacy": [ - 0.023992, - -0.12044, - 0.00069647, - -0.010818, - -0.06426, - -0.0096826, - -0.064164, - -0.084005, - 0.055036, - 0.08122, - -0.0182, - -0.030307, - 0.0024866, - 0.048799, - 0.003402, - 0.037911, - 0.11489, - -0.010075, - 0.046515, - 0.017995, - -0.024883, - 0.025993, - 0.032276, - 0.042299, - -0.012868, - 0.039539, - 0.025805, - -0.010623, - -0.035329, - -0.039209, - -0.020131, - -0.0060735, - -0.013132, - -0.070267, - 0.044914, - 0.047343, - 0.02819, - 0.026292, - 0.053236, - 0.0072275, - -0.079423, - -0.104, - 0.018908, - 0.0022471, - 0.011021, - -0.058074, - -0.019791, - 0.010408, - -0.032422, - 0.0079582, - -0.01618, - -0.071971, - 0.017544, - -0.069247, - -0.066805, - 0.0046525, - 0.025835, - 0.0497, - -0.016887, - 0.032972, - 0.0090226, - 0.0020686, - 0.041645, - -0.051593, - -0.040782, - -0.043681, - 0.000232, - -0.010705, - 0.046171, - 0.0088194, - -0.016165, - -0.048006, - -0.037959, - 0.015405, - 0.011048, - 0.0067573, - -0.038537, - -0.024479, - 0.077563, - -0.034597, - -0.089781, - -0.041233, - -0.034629, - 0.04702, - 0.029477, - -0.1086, - -0.011732, - -0.0017775, - 0.025329, - 0.03471, - 0.0050278, - 0.041034, - -0.084281, - -0.002689, - 0.068447, - 0.070881, - -0.053202, - 0.020474, - -0.020311, - -0.10861, - 0.026735, - 0.055313, - 0.034497, - -0.05423, - -0.0029043, - -0.051913, - 0.032722, - 0.019796, - -0.052396, - -0.02932, - -0.051377, - 0.059553, - 0.028608, - 0.012841, - -0.0017113, - -0.069418, - 0.05636, - 0.053537, - -0.065502, - 0.025567, - 0.030098, - -0.076367, - -0.071525, - -0.027493, - 0.056175, - 0.071097, - -0.050877, - -0.065094, - -0.0032578, - 0.15658, - -0.031262, - -0.021024, - -0.035682, - 0.068462, - 0.0075005, - -0.041073, - -0.0032449, - -0.028528, - -0.0040853, - -0.001146, - 0.068852, - -0.091737, - 0.012908, - 0.0087333, - -0.045602, - 0.016878, - 0.011955, - -0.020994, - 0.04067, - -0.027406, - 0.078941, - 0.052721, - 0.015781, - -0.070376, - -0.055434, - 0.064771, - 0.011473, - -0.0010942, - -0.0055393, - -0.0005754, - 0.073525, - 0.035649, - -0.093739, - -0.0077264, - -0.11471, - 0.039231, - 0.029652, - -0.027272, - 0.022447, - -0.016048, - 0.066723, - 0.060192, - -0.056137, - -0.032978, - 0.0076303, - 0.047881, - -0.01662, - 0.076501, - -0.05684, - 0.048907, - -0.016693, - 0.013974, - 0.029588, - -0.025321, - 0.073223, - -0.045177, - -0.024442, - 0.095846, - 0.11924, - 0.021052, - -0.01158, - 0.041354, - -0.0068933, - -0.056796, - -0.014534, - 0.062207, - 0.030987, - 0.071413, - -0.035004, - 0.059817, - -0.12852, - 0.034066, - -0.0067679, - -0.0090342, - -0.10796, - -0.013043, - -0.06274, - -0.064044, - 0.060128, - -0.012744, - 0.088525, - 0.042148, - -0.0027537, - 0.060901, - 0.036644, - 0.052049, - -0.00098829, - -0.057581, - -0.06083, - -0.010779, - -0.014754, - 0.025787, - -0.073585, - 0.083498, - 0.029368, - 0.03935, - 0.053674, - 0.068802, - -0.025718, - -0.029224, - 0.023546, - -0.038616, - -0.036806, - -0.078117, - 0.038207, - -0.0058842, - -0.043634, - -0.067218, - 0.010923, - -0.02002, - 0.014331, - 0.07863, - -0.0057545, - -0.010682, - 0.022009, - 0.081289, - 0.017596, - -0.096254, - 0.040147, - 0.052919, - 0.05285, - 0.011698, - -0.029448, - -0.019996, - 0.045101, - 0.023652, - -0.010428, - 0.02584, - -0.006952, - 0.019245, - -0.029552, - 0.0017004, - 0.042217, - 0.054486, - -0.040037, - 0.042969, - 0.083217, - 0.015671, - -0.0059493, - -0.0022364, - -0.014717, - 0.06266, - -0.093852, - -0.026038, - -0.055109, - -0.020411, - -0.010821, - -0.0062156, - -0.0046026, - -0.032111, - 0.082301, - -0.015066, - -0.045325, - -0.011771, - -0.021774, - 0.0032825, - -0.0042441, - 0.030098, - -0.0051997, - -0.022804, - -0.015519, - 0.034475, - -0.02825, - 0.030167, - -0.001988, - 0.025599, - 0.0026251, - -0.0016233, - -0.053772, - -0.018064 - ], - "dance": [ - -0.04697, - -0.077322, - -0.025099, - 0.043076, - 0.018359, - 0.012679, - 0.062463, - -0.10034, - 0.089769, - -0.075709, - 0.10087, - -0.041575, - 0.12764, - 0.012406, - -0.014382, - 0.0059052, - 0.12783, - 0.037624, - 0.02036, - 0.078631, - -0.047958, - -0.081813, - -0.0032146, - 0.051335, - -0.04157, - 0.064774, - -0.0014101, - 0.041364, - -0.081906, - -0.087501, - -0.080581, - -0.027912, - 0.021676, - -0.023085, - 0.045985, - -0.034449, - 0.10865, - 0.018072, - 0.040944, - 0.033495, - -0.014228, - -0.18614, - -0.05571, - -0.038716, - 0.032291, - 0.0086744, - 0.12115, - -0.11256, - -0.025236, - 0.029497, - -0.0026201, - 0.086792, - 0.0070604, - 0.0094337, - -0.11741, - 0.036267, - -0.020925, - -0.078047, - -0.066988, - 0.043131, - 0.0094915, - -0.011456, - 0.15032, - -0.026016, - -0.027501, - 0.03005, - -0.023812, - 0.012656, - 0.0034644, - 0.0047656, - 0.0060686, - -0.010157, - 0.028455, - 0.056759, - 0.13711, - 0.053895, - 0.066808, - -0.00056316, - -0.018821, - -0.0025888, - -0.038199, - -0.032043, - -0.097229, - 0.063234, - -0.13128, - -0.092883, - -0.15778, - -0.02512, - 0.009259, - 0.012546, - -0.055541, - 0.050048, - -0.10961, - 0.0060358, - 0.07156, - 0.041736, - -0.0016814, - 0.074215, - 0.036907, - 0.051147, - 0.14408, - 0.058798, - 0.047095, - -0.10015, - 0.0049686, - -0.11211, - -0.09889, - 0.015948, - 0.026763, - -0.043854, - 0.055591, - 0.060451, - 0.090309, - 0.028932, - 0.093213, - 0.030673, - 0.0033278, - 0.10241, - -0.040681, - 0.013859, - -0.044478, - 0.045995, - -0.081111, - -0.024975, - 0.10059, - -0.0085531, - -0.035171, - -0.062845, - -0.010105, - 0.12479, - -0.02199, - 0.011094, - -0.037362, - 0.048838, - -0.0064272, - -0.051013, - -0.054552, - 0.02649, - 0.012233, - -0.044258, - -0.0074794, - 0.0481, - 0.056944, - 0.012735, - -0.018953, - -0.03, - 0.0087428, - 0.01043, - 0.029135, - -0.031947, - 0.010909, - 0.1324, - -0.070961, - -0.093754, - -0.021862, - -0.023602, - -0.042702, - -0.0035047, - -0.10139, - -0.034469, - 0.020128, - 0.091032, - -0.080069, - 0.0011777, - -0.017869, - 0.11768, - -0.086626, - 0.024548, - -0.020188, - 0.069919, - 0.050769, - 0.0033625, - 0.095159, - 0.035281, - 0.072309, - 0.083535, - -0.017741, - 0.045798, - -0.031498, - -0.14119, - 0.033141, - 0.012273, - -0.018383, - -0.059544, - 0.0025636, - -0.059369, - -0.11249, - 0.11123, - -0.0092751, - 0.0099913, - -0.011098, - 0.051965, - -0.023445, - -0.087949, - 0.05405, - 0.052011, - 0.026254, - -0.014466, - 0.027626, - -0.047059, - -0.18117, - 0.074876, - 0.014079, - -0.00074351, - 0.07881, - 0.045057, - 0.00016798, - -0.067187, - 0.011882, - -0.045943, - 0.1376, - -0.017743, - 0.029338, - 0.041408, - 0.022696, - 0.0097343, - 0.035567, - 0.062686, - -0.016912, - -0.029457, - 0.01927, - -0.12632, - -0.0139, - 0.10503, - 0.013483, - 0.01961, - 0.082112, - 0.094867, - -0.075948, - 0.037307, - 0.090176, - -0.058787, - -0.02748, - 0.002004, - -0.0052627, - -0.0068158, - -0.020219, - -0.013378, - -0.0048901, - -0.0091866, - 0.090193, - 0.050079, - -0.024705, - 0.0029865, - -0.035405, - 0.081699, - -0.14032, - 0.021633, - 0.067254, - 0.042477, - 0.10917, - -0.028475, - -0.055491, - -0.063369, - 0.015386, - 0.073314, - -0.11783, - 0.015587, - 0.075857, - 0.045752, - 0.10769, - 0.025613, - 0.038428, - -0.058647, - -0.070303, - -0.053947, - 0.035956, - -0.012746, - -0.032348, - -0.025998, - 0.097434, - 0.11588, - -0.12071, - -0.047407, - -0.012893, - -0.0097091, - 0.035646, - -0.059714, - -0.068792, - 0.033165, - 0.11246, - 0.0029711, - 0.017127, - -0.02095, - -0.060791, - 0.073904, - 0.061144, - 0.0060961, - -0.0036889, - -0.026698, - 0.039415, - -0.084792, - -0.020454, - -0.078174, - -0.017876, - 0.02026, - 0.11268, - 0.083156, - 0.062116, - 0.037127 - ], - "off-road": [ - -0.0051658, - 0.0083106, - 0.0056719, - 0.14087, - -0.064372, - 0.0086941, - -0.058526, - -0.073128, - 0.060788, - -0.012714, - -0.028013, - -0.04839, - -0.090909, - 0.015531, - -0.007242, - -0.041552, - 0.10119, - 0.043435, - 0.062238, - -0.041108, - 0.041633, - -0.061355, - 0.084282, - 0.082468, - 0.11858, - 0.054472, - -0.042456, - -0.0062419, - -0.013225, - -0.0063378, - -0.023062, - 0.027735, - 0.010945, - -0.087809, - 0.075643, - 0.018258, - 0.046968, - 0.007518, - -0.0041978, - -0.020961, - 0.11393, - -0.14071, - 0.044004, - 0.042913, - -0.011646, - -0.056693, - -0.11135, - 0.012431, - -0.046803, - -0.016098, - 0.024742, - 0.089045, - 0.045979, - 0.018943, - -0.04634, - -0.11364, - 0.029325, - -0.043881, - -0.074872, - 0.012639, - 0.03121, - 0.0075624, - 0.12005, - 0.045886, - 0.03201, - -0.11705, - 0.043784, - -0.058262, - 0.039722, - -0.0065869, - 0.10654, - -0.086727, - 0.031915, - 0.027752, - -0.0061809, - 0.022935, - -0.083678, - -0.030321, - 0.030756, - 0.015891, - 0.00088238, - -0.020904, - -0.0040812, - 0.057637, - 0.068938, - 0.0092124, - -0.01126, - 0.0088013, - 0.066033, - -0.057838, - 0.038741, - 0.043858, - -0.062913, - 0.029612, - 0.056807, - 0.06548, - -0.050993, - 0.027373, - 0.030993, - -0.081362, - 0.028667, - -0.015082, - 0.026598, - -0.024046, - 0.032405, - -0.048552, - 0.031575, - -0.011279, - -0.0071018, - 0.068649, - 0.076362, - 0.14435, - 0.07764, - 0.052477, - -0.013311, - 0.018452, - 0.016729, - 0.030368, - -0.018845, - -0.052277, - 0.0008449, - 0.076181, - -0.067949, - -0.058267, - 0.079705, - -0.00017241, - -0.06014, - -0.038109, - 0.045842, - 0.022281, - -0.038551, - 0.041453, - -0.017942, - 0.017532, - 0.013973, - -0.058502, - 0.10627, - 0.018255, - -0.049532, - -0.06778, - -0.14473, - -0.074709, - 0.084895, - -0.028698, - 0.025192, - 0.056536, - 0.016664, - -0.055299, - -0.047043, - -0.046491, - 0.096321, - 0.13388, - 0.034158, - -0.016282, - 0.055458, - 0.064937, - -0.030443, - 0.085636, - 0.0037756, - -0.039167, - 0.0014899, - 0.0049911, - -0.066019, - -0.00087207, - 0.04269, - -0.0060014, - 0.046405, - 0.012479, - 0.010885, - 0.034965, - 0.068715, - -0.086115, - 0.04353, - 0.088379, - -0.015135, - 0.065812, - 0.035078, - -0.034542, - -0.063742, - -0.0035264, - 0.05376, - 0.013528, - -0.017178, - -0.008142, - -0.0179, - -0.065073, - -0.036427, - 0.16041, - -0.057151, - -0.021026, - 0.022173, - 0.0074401, - 0.077324, - -0.017318, - 0.040006, - 0.044415, - 0.0046285, - -0.038254, - -0.016474, - 0.048262, - -0.14224, - 0.057071, - -0.05325, - -0.031244, - -0.009639, - 0.034122, - -0.050382, - 0.17268, - 0.070516, - -0.011152, - 0.10851, - -0.0017438, - 0.05659, - -0.0084951, - 0.045565, - 0.03632, - -0.073592, - -0.080953, - -0.0079554, - -0.038594, - -0.023998, - -0.064971, - -0.047951, - 0.080369, - -0.048537, - -0.036436, - -0.010354, - 0.080128, - -0.050995, - -0.0069296, - -0.024323, - -0.034224, - -0.046161, - -0.049935, - 0.017828, - -0.012475, - 0.015676, - 0.0090319, - -0.035692, - 0.02213, - 0.009308, - 0.091284, - -0.025642, - -0.03808, - -0.12625, - 0.0046153, - 0.024172, - -0.040555, - 0.025826, - 0.010514, - -0.00095454, - 0.034816, - 0.00030306, - 0.032464, - -0.0030037, - 0.017078, - -0.024006, - -0.057945, - 0.0075895, - 0.095917, - 0.072363, - 0.024007, - -0.16074, - 0.018963, - -0.010274, - -0.043498, - 0.0096759, - 0.0030343, - 0.093167, - -0.011095, - -0.039032, - 0.065209, - -0.084571, - -0.032448, - 0.00050934, - -0.078812, - -0.007366, - 0.065155, - -0.02211, - 0.016812, - 0.14683, - 0.03455, - -0.013105, - 0.113, - -0.011495, - -0.060547, - -0.015176, - -0.0061596, - 0.017325, - -0.0085904, - -0.0065304, - -0.10266, - -0.076658, - 0.02967, - -0.037696, - -0.083308, - 0.018403, - -0.0073221, - -0.036365, - -0.077005 - ], - "realty": [ - 0.080416, - 0.0010518, - 0.019491, - 0.087027, - -0.031863, - -0.024803, - -0.023412, - -0.081256, - 0.1054, - 0.023347, - -0.00081516, - -0.10325, - 0.046921, - -0.03125, - 0.033652, - -0.077817, - 0.1034, - 0.047678, - 0.0027509, - 0.048151, - -0.019665, - -0.025061, - 0.051063, - 0.038396, - 0.025059, - -0.037133, - -0.045785, - 0.062009, - 0.18522, - 0.0030062, - -0.026242, - -0.014948, - -0.0464, - -0.076716, - 0.062377, - 0.027457, - -0.0087629, - -0.034402, - -0.038875, - 0.049826, - -0.027416, - -0.11336, - -0.0073711, - 0.01337, - -0.069587, - -0.046603, - 0.013359, - 0.069079, - 0.031992, - -0.050873, - -0.01049, - -0.0088948, - -0.042068, - 0.06598, - -0.022856, - 0.014482, - -0.10575, - -0.032079, - -0.093425, - -0.1002, - 0.058362, - 0.05692, - 0.16228, - -0.017229, - 0.026983, - -0.05815, - -0.057668, - 0.012955, - -0.0010321, - -0.09162, - 0.055301, - -0.11752, - 0.071716, - 0.00075998, - 0.049564, - -0.069037, - -0.093191, - 0.021603, - -0.061537, - -0.021836, - 0.020279, - 0.029777, - -0.082452, - 0.099, - -0.034369, - -0.023394, - -0.0209, - -0.047211, - 0.026965, - -0.024499, - 0.0095085, - 0.091541, - -0.10698, - -0.042661, - -0.0013005, - 0.068355, - -0.055872, - -0.081439, - -0.0012767, - 0.0049949, - 0.02948, - 0.067674, - -0.072609, - -0.023623, - 0.019422, - -0.11719, - 0.017805, - 0.031651, - 0.0027723, - -0.0077913, - -0.060611, - 0.088804, - 0.03427, - 0.05575, - 0.027423, - 0.038218, - -0.071065, - -0.1745, - -0.065234, - -0.047536, - -0.089297, - 0.037129, - 0.028831, - 0.050505, - 0.13599, - 0.054123, - 0.032997, - -0.059005, - -0.025864, - 0.11901, - 0.072867, - -0.076798, - 0.092191, - -0.01615, - -0.012102, - 0.023448, - 0.072524, - 0.057784, - -0.086501, - -0.024061, - -0.025857, - -0.063705, - -0.018989, - 0.047479, - -0.070839, - -0.056503, - 0.0087971, - -0.018337, - 0.016639, - 0.028871, - 0.07233, - 0.06223, - 0.026524, - -0.14629, - -0.11184, - -0.094945, - 0.0078426, - 0.0099264, - 0.040693, - 0.087197, - 0.066832, - -0.02809, - -0.11902, - 0.021454, - -0.0028224, - -0.02914, - -0.014634, - -0.011021, - -0.015346, - 0.12271, - -0.0067324, - -0.039753, - -0.01666, - 0.013844, - -0.051096, - 0.040797, - -0.026626, - 0.022269, - -0.0048208, - 0.047191, - 0.0018845, - -0.022517, - 0.035019, - -0.063379, - -0.012164, - 0.023792, - 0.0061964, - 0.069657, - 0.034305, - -0.048524, - -0.025541, - 0.12488, - 0.037224, - 0.069705, - 0.034008, - 0.042025, - -0.0076779, - 0.065477, - -0.048165, - 0.049335, - -0.13113, - 0.030708, - -0.025486, - -0.035767, - 0.075679, - -0.045265, - 0.028425, - -0.086585, - -0.0061038, - 0.045883, - 0.12352, - -0.0019512, - -0.026737, - -0.051172, - -0.077895, - 0.012331, - 0.048156, - 0.00029518, - -0.000075118, - -0.0044662, - -0.021261, - -0.045368, - -0.043564, - 0.13152, - -0.033051, - -0.0099207, - 0.046712, - 0.1265, - -0.068628, - 0.004146, - -0.032973, - -0.067447, - -0.032328, - 0.011058, - -0.0037823, - -0.086201, - 0.0080313, - -0.00033598, - -0.0146, - -0.032632, - 0.094668, - -0.028599, - 0.012342, - -0.0082839, - -0.16145, - 0.041606, - 0.0017137, - 0.052877, - -0.016848, - -0.012416, - 0.030182, - -0.029646, - 0.053678, - 0.099789, - -0.040325, - -0.0089573, - 0.010719, - -0.015879, - 0.031454, - -0.0040246, - 0.045055, - 0.037414, - -0.010052, - 0.049419, - -0.0033763, - 0.045503, - 0.093626, - 0.03164, - 0.018192, - 0.026131, - -0.1371, - 0.10203, - -0.070153, - -0.024437, - 0.064419, - -0.02743, - 0.055591, - 0.039112, - 0.042629, - -0.028598, - -0.012856, - -0.001076, - -0.027436, - 0.02159, - 0.014872, - 0.021175, - -0.017327, - -0.055013, - -0.10469, - -0.0016155, - -0.05608, - -0.031781, - 0.041496, - 0.068179, - -0.04313, - -0.020778, - -0.048149, - 0.034877, - -0.046814, - -0.0017915 - ], - "narcotic": [ - -0.012035, - -0.028362, - 0.039172, - 0.042223, - -0.031925, - -0.066462, - -0.057192, - -0.083122, - 0.072126, - 0.024845, - -0.073707, - -0.0027125, - 0.029599, - 0.016344, - 0.035123, - -0.023447, - 0.085755, - -0.028533, - 0.033166, - 0.11288, - 0.025394, - -0.065742, - 0.014895, - 0.012268, - 0.025883, - -0.038273, - 0.017037, - 0.035648, - 0.055623, - 0.025573, - 0.013264, - 0.0051433, - -0.031976, - -0.039852, - 0.098855, - 0.021847, - -0.051479, - 0.020558, - 0.027638, - 0.0043198, - -0.012533, - -0.096906, - 0.096292, - -0.044633, - 0.081018, - -0.05252, - 0.041303, - 0.076616, - -0.030558, - 0.0050137, - -0.055908, - 0.042543, - 0.024509, - -0.063314, - 0.0089369, - 0.0043404, - -0.013475, - -0.020394, - -0.020187, - -0.0068348, - 0.013114, - -0.010017, - 0.1091, - -0.040771, - -0.13258, - -0.023411, - 0.060763, - -0.066756, - 0.034874, - -0.036025, - 0.036746, - 0.066842, - 0.022557, - -0.055728, - -0.0068272, - -0.02287, - 0.0044931, - -0.034924, - -0.0090954, - -0.036764, - -0.0004071, - -0.0063907, - -0.091091, - -0.012599, - -0.010446, - -0.027016, - 0.097565, - 0.02362, - 0.052464, - -0.039647, - 0.035921, - -0.037889, - -0.11618, - -0.02861, - 0.00043339, - 0.07102, - -0.030835, - -0.044398, - 0.044032, - 0.057229, - 0.068224, - -0.00029412, - -0.12436, - -0.063846, - 0.025173, - -0.10629, - -0.091893, - -0.040507, - -0.0044433, - 0.016017, - 0.040967, - 0.069438, - 0.060132, - -0.049255, - -0.059201, - 0.069417, - 0.00015359, - -0.067967, - -0.042372, - 0.059658, - 0.044662, - 0.004037, - -0.066055, - -0.06528, - 0.10767, - 0.069918, - -0.013647, - -0.050106, - 0.0064369, - 0.029293, - 0.0030337, - -0.019409, - 0.0082182, - 0.00090189, - 0.05436, - -0.083069, - -0.098429, - 0.058624, - 0.043328, - 0.0037475, - 0.074532, - 0.054393, - -0.039759, - -0.058973, - 0.041567, - -0.011313, - 0.013367, - 0.041022, - 0.038687, - -0.0015622, - 0.061762, - 0.15292, - -0.0037369, - 0.017427, - -0.020681, - 0.02471, - -0.11948, - 0.027876, - -0.020667, - 0.031836, - 0.030493, - 0.015548, - -0.13939, - 0.11097, - -0.031458, - -0.03947, - 0.041946, - -0.024508, - 0.024483, - 0.021489, - 0.0002315, - -0.00093652, - -0.023529, - 0.033927, - -0.00042447, - 0.039064, - -0.038267, - 0.0052403, - -0.021751, - -0.033135, - -0.079105, - 0.021235, - -0.057039, - -0.031143, - 0.015202, - -0.011273, - 0.036594, - 0.093506, - -0.026193, - -0.023547, - 0.12514, - 0.029438, - 0.10229, - 0.024407, - 0.025705, - 0.0025072, - -0.018152, - 0.10514, - -0.019393, - -0.044152, - -0.14679, - 0.0012352, - -0.097392, - 0.072432, - 0.043104, - 0.0073165, - 0.13666, - 0.011359, - 0.015942, - 0.013088, - 0.14254, - 0.014952, - 0.012768, - 0.030366, - 0.089478, - -0.011173, - 0.019098, - 0.024442, - -0.0033434, - -0.026856, - -0.0227, - -0.051376, - -0.03762, - 0.065989, - -0.017457, - 0.022497, - 0.052079, - 0.025454, - -0.024072, - -0.041584, - -0.087028, - -0.020196, - -0.065094, - -0.046659, - -0.0016345, - -0.061576, - -0.048129, - -0.071432, - 0.023337, - -0.073027, - 0.07062, - 0.030811, - -0.025382, - -0.066735, - -0.132, - -0.037328, - -0.049106, - -0.0089291, - 0.033341, - 0.053814, - -0.047417, - 0.0069691, - 0.051189, - -0.020175, - -0.0057434, - -0.025245, - 0.016246, - 0.0020867, - 0.063453, - -0.02992, - 0.013512, - -0.0073554, - -0.035586, - 0.010497, - -0.045728, - -0.022653, - -0.070909, - 0.0094741, - 0.010037, - 0.099148, - -0.077906, - 0.06009, - -0.067272, - -0.024634, - -0.021084, - -0.15233, - -0.019748, - 0.044705, - 0.00019717, - -0.00048473, - 0.1194, - 0.045219, - -0.066975, - -0.0451, - -0.0088493, - 0.017478, - 0.051691, - 0.013179, - 0.027852, - -0.041951, - -0.015315, - -0.023904, - 0.019877, - -0.039392, - -0.13484, - 0.035476, - 0.084188, - -0.02165, - 0.025947, - 0.017079 - ], - "weatherman": [ - 0.025927, - -0.047069, - -0.020563, - 0.019017, - -0.011331, - -0.11133, - 0.041813, - -0.067209, - 0.055704, - 0.033518, - -0.005272, - 0.059929, - -0.056735, - 0.043869, - -0.0078847, - 0.019607, - 0.042798, - 0.016948, - -0.00426, - 0.045852, - 0.079052, - 0.028025, - -0.0047039, - 0.017435, - 0.070168, - -0.002534, - 0.015878, - 0.025616, - -0.018417, - 0.033381, - 0.026627, - 0.042808, - 0.068616, - -0.012503, - 0.02101, - 0.03897, - -0.013603, - 0.025247, - 0.022803, - -0.019894, - -0.05362, - -0.13402, - 0.00038514, - 0.016267, - 0.041513, - 0.033586, - 0.027388, - -0.12369, - -0.072524, - 0.022704, - -0.0086251, - 0.028515, - 0.037695, - 0.089633, - -0.00063265, - 0.0029728, - 0.045126, - -0.012979, - -0.042593, - -0.0054517, - -0.083981, - 0.055292, - 0.053243, - -0.057504, - -0.040252, - 0.045517, - 0.0027594, - 0.027446, - 0.031422, - 0.023979, - 0.059129, - 0.029284, - 0.014004, - -0.023575, - -0.010651, - -0.043536, - 0.0056173, - -0.0072007, - -0.084095, - 0.027858, - 0.013299, - 0.039564, - -0.015687, - 0.051522, - -0.0067256, - 0.011531, - -0.010627, - 0.016558, - -0.018953, - -0.082198, - 0.041796, - -0.019614, - -0.069887, - -0.045162, - 0.045763, - 0.10058, - 0.0060547, - 0.11038, - -0.0094492, - 0.015136, - 0.032928, - -0.078376, - 0.043359, - 0.029909, - -0.025184, - -0.11673, - 0.0014808, - 0.030686, - 0.06948, - -0.0036741, - -0.073779, - 0.036034, - 0.025987, - 0.040231, - 0.062754, - -0.086875, - -0.051651, - 0.046887, - 0.0091014, - -0.010228, - 0.0092741, - -0.039629, - 0.009694, - 0.0098801, - 0.097947, - 0.025997, - 0.073362, - -0.0050063, - -0.11394, - 0.077806, - 0.057657, - -0.0072432, - -0.025766, - -0.047762, - 0.029464, - 0.073507, - 0.097515, - 0.040838, - -0.045034, - -0.013759, - 0.032224, - -0.042077, - -0.04816, - -0.022187, - -0.070428, - 0.0025023, - -0.005304, - -0.046221, - -0.039035, - -0.058834, - 0.0067403, - 0.067698, - -0.07324, - -0.034326, - -0.014454, - -0.001449, - 0.041975, - 0.034705, - 0.00078936, - 0.005226, - 0.026971, - -0.052343, - -0.042012, - 0.027165, - -0.033747, - -0.063089, - -0.047434, - -0.0010527, - -0.032498, - 0.11009, - -0.096081, - -0.0062522, - 0.01204, - -0.0071258, - 0.054803, - 0.0055578, - 0.015715, - 0.0091114, - 0.012528, - 0.029771, - 0.03756, - 0.0040821, - 0.052663, - -0.066734, - 0.017653, - -0.09227, - 0.024024, - 0.084986, - -0.00088384, - -0.032867, - 0.012279, - 0.062578, - -0.0326, - 0.018663, - 0.0030992, - -0.063365, - 0.011335, - 0.056389, - 0.0049449, - 0.030204, - -0.068564, - 0.011978, - -0.0085774, - -0.044034, - 0.059374, - 0.08083, - 0.040064, - 0.064855, - -0.075619, - -0.037274, - 0.04634, - 0.019299, - 0.048898, - 0.022725, - 0.022051, - 0.032409, - -0.007981, - -0.058442, - 0.028843, - 0.046077, - -0.070754, - 0.027724, - 0.0046721, - 0.085483, - 0.022318, - -0.00676, - 0.0020202, - 0.025358, - -0.052432, - 0.020914, - 0.056222, - -0.031097, - 0.0045898, - 0.015891, - -0.0291, - 0.026091, - 0.04047, - 0.01519, - 0.040239, - -0.026558, - 0.031261, - -0.0084882, - 0.024625, - -0.00082061, - 0.058009, - 0.032004, - 0.01511, - -0.023475, - -0.0026116, - -0.046063, - 0.08158, - 0.046697, - 0.040378, - 0.0065108, - 0.06007, - -0.011468, - 0.10206, - 0.0055892, - 0.031417, - -0.019728, - 0.080871, - -0.033754, - 0.022271, - 0.024622, - -0.036272, - -0.047722, - 0.0078392, - 0.017616, - 0.059503, - -0.027107, - -0.065947, - 0.061156, - -0.067697, - 0.0074175, - 0.04139, - -0.043474, - -0.034727, - 0.003008, - 0.024171, - -0.040955, - 0.072505, - 0.032088, - 0.00021931, - 0.0040836, - 0.010654, - -0.03086, - -0.012158, - -0.081599, - -0.050538, - 0.052939, - 0.03572, - -0.025477, - 0.0025765, - 0.053846, - -0.019529, - -0.040434, - -0.059926, - 0.041203, - 0.070088, - -0.10114 - ], - "habits": [ - -0.040001, - -0.047239, - -0.027262, - -0.037596, - -0.072399, - 0.02522, - -0.10294, - -0.071658, - 0.033625, - 0.055321, - -0.021643, - -0.11407, - -0.041939, - -0.096113, - -0.0057727, - -0.031291, - 0.1514, - 0.020441, - 0.06821, - 0.14601, - -0.020966, - -0.026781, - -0.038776, - 0.089911, - -0.1293, - -0.0015049, - -0.010858, - 0.060125, - 0.086973, - 0.011471, - 0.022458, - -0.059848, - -0.018703, - -0.013841, - 0.05632, - 0.04091, - -0.010515, - 0.035239, - 0.015744, - 0.025415, - 0.089106, - -0.16993, - -0.026642, - -0.022142, - 0.0096999, - -0.098923, - -0.03107, - -0.06383, - 0.00063992, - -0.082163, - -0.056402, - -0.025126, - 0.094434, - -0.012945, - -0.081874, - 0.053652, - 0.045709, - 0.030075, - -0.025782, - -0.0099158, - 0.02591, - -0.036379, - 0.18692, - -0.0047247, - 0.010741, - -0.05822, - -0.028374, - 0.074554, - 0.045431, - -0.041083, - 0.022943, - 0.066174, - 0.032618, - -0.082551, - 0.032204, - 0.00755, - 0.067413, - -0.04219, - -0.10255, - -0.044112, - -0.012757, - -0.025642, - 0.028072, - 0.046758, - 0.052895, - -0.095941, - -0.0098731, - 0.054875, - 0.057371, - -0.017527, - 0.11058, - 0.007197, - -0.10195, - 0.057579, - -0.041713, - 0.11923, - -0.031994, - 0.012019, - 0.15423, - 0.0069919, - 0.052833, - 0.053649, - 0.028631, - -0.025703, - 0.051833, - -0.072851, - -0.019383, - -0.028755, - 0.039607, - 0.0098087, - -0.0016119, - 0.062827, - 0.099987, - 0.039955, - 0.0076186, - -0.07354, - -0.013699, - 0.028893, - -0.067553, - -0.0060082, - 0.062918, - 0.028135, - 0.021463, - -0.036748, - 0.18293, - 0.01131, - -0.025792, - -0.0027636, - 0.001518, - 0.12902, - 0.098058, - -0.0217, - 0.087149, - 0.024797, - 0.011197, - -0.0067555, - -0.042425, - 0.074859, - -0.0017593, - 0.031944, - 0.14833, - -0.045751, - -0.0087951, - 0.051223, - 0.10136, - -0.059804, - 0.1233, - 0.0024982, - 0.10534, - -0.055659, - 0.064005, - 0.10687, - -0.031384, - -0.025369, - -0.044794, - 0.061746, - -0.02081, - 0.092279, - 0.0084158, - -0.038794, - 0.016669, - 0.0046237, - -0.070068, - 0.02711, - 0.033374, - -0.071451, - -0.0075999, - -0.13318, - -0.059157, - 0.05313, - -0.0023867, - -0.01499, - -0.054643, - 0.073014, - 0.025792, - 0.089134, - 0.018209, - 0.10837, - -0.071755, - -0.02715, - 0.079016, - -0.042752, - -0.073805, - -0.025667, - 0.0061855, - -0.044111, - 0.091675, - 0.14396, - -0.039488, - -0.013607, - 0.054656, - 0.098379, - -0.067737, - -0.000034951, - 0.010186, - 0.021349, - -0.012674, - -0.0014969, - -0.021217, - -0.003555, - -0.14917, - -0.023259, - 0.041842, - -0.010135, - -0.0039152, - 0.1125, - 0.06197, - 0.0030046, - -0.034491, - 0.02255, - 0.077127, - 0.071897, - 0.067, - -0.045688, - 0.014884, - -0.04525, - -0.070087, - -0.0043925, - -0.13523, - -0.032628, - -0.11795, - 0.0098662, - 0.0022139, - 0.096222, - 0.085951, - -0.10383, - 0.058612, - 0.11615, - -0.086067, - 0.044906, - 0.043588, - 0.0056881, - -0.13947, - 0.037163, - 0.10701, - 0.037709, - 0.055018, - 0.052484, - 0.024497, - 0.09664, - -0.042607, - -0.044768, - 0.019571, - -0.029627, - 0.0035303, - 0.086031, - -0.066428, - -0.083464, - -0.062554, - 0.070018, - 0.041373, - 0.009596, - -0.063695, - -0.043382, - 0.044118, - -0.017754, - -0.0043185, - -0.029479, - -0.026599, - 0.027856, - 0.0069685, - 0.0068645, - -0.025772, - -0.047386, - 0.03445, - 0.019049, - -0.0036693, - 0.07163, - 0.0041945, - 0.030329, - -0.022526, - 0.077778, - -0.13266, - -0.085322, - 0.12743, - -0.0034355, - -0.017553, - 0.061852, - 0.028215, - -0.057297, - 0.077933, - -0.01171, - 0.035045, - -0.12551, - 0.044888, - 0.046524, - -0.089335, - 0.013923, - 0.058587, - 0.050628, - 0.0093601, - 0.085718, - -0.095153, - -0.059547, - -0.017738, - 0.029369, - -0.033346, - 0.042979, - -0.14623, - 0.063748 - ], - "groceries": [ - -0.051378, - -0.024313, - -0.044594, - -0.034967, - 0.073262, - -0.054062, - 0.033309, - -0.061507, - 0.053743, - 0.049815, - -0.010962, - -0.02992, - -0.024298, - -0.028057, - -0.055502, - -0.044127, - 0.060527, - 0.018255, - -0.00023065, - 0.061726, - 0.0054968, - 0.01063, - -0.041005, - 0.040854, - 0.019231, - -0.0093118, - 0.024785, - 0.0051732, - 0.053559, - 0.055637, - 0.031468, - 0.0076266, - 0.027831, - -0.0033426, - 0.039834, - 0.0045868, - 0.051568, - 0.046883, - -0.02228, - -0.019485, - 0.023065, - -0.07872, - -0.0042653, - -0.027948, - 0.088645, - -0.031323, - -0.062802, - -0.013265, - -0.020592, - 0.023258, - 0.0070736, - -0.054751, - 0.0041639, - -0.012132, - -0.11414, - 0.040442, - -0.016903, - 0.05274, - -0.056126, - -0.095492, - -0.1063, - 0.0072876, - 0.11237, - 0.11268, - 0.051051, - 0.0086735, - 0.066997, - -0.050023, - -0.10751, - -0.062046, - 0.026468, - -0.035097, - 0.09825, - -0.084873, - -0.0012645, - 0.0071749, - -0.016977, - -0.052105, - -0.022153, - 0.074069, - -0.0051026, - -0.1029, - -0.028442, - 0.067301, - -0.054121, - -0.01775, - 0.016766, - -0.034058, - 0.070653, - -0.044666, - 0.013055, - -0.020115, - -0.089617, - -0.010359, - -0.05936, - 0.083873, - -0.018841, - 0.052466, - -0.013255, - -0.032482, - 0.024755, - 0.024848, - -0.046899, - -0.022928, - 0.026947, - -0.04234, - -0.024265, - 0.10557, - 0.049852, - -0.011475, - 0.046393, - 0.056494, - 0.0619, - 0.047522, - 0.0023574, - -0.028843, - -0.054871, - -0.025381, - -0.028117, - 0.0075308, - -0.069998, - 0.0016586, - 0.0027231, - -0.092286, - 0.045224, - -0.063548, - -0.06363, - -0.031281, - 0.075161, - 0.075566, - 0.007649, - 0.018498, - 0.049101, - 0.045475, - 0.068423, - 0.016889, - 0.028046, - 0.032056, - 0.0077767, - -0.02197, - 0.049893, - -0.0061542, - -0.036348, - 0.059888, - -0.027646, - 0.031616, - 0.038001, - 0.082908, - 0.02728, - -0.040358, - 0.016007, - 0.052583, - -0.023661, - -0.010185, - 0.081618, - -0.032984, - -0.032477, - -0.043065, - -0.019856, - 0.015708, - 0.039134, - 0.034608, - -0.0081909, - 0.031274, - -0.060984, - 0.0013997, - 0.0057251, - -0.062218, - 0.011054, - 0.019029, - 0.047425, - -0.040545, - 0.0028572, - 0.054634, - 0.0039576, - 0.039679, - -0.045643, - 0.044899, - 0.014399, - -0.045563, - 0.041839, - -0.064417, - 0.013787, - -0.11585, - -0.017235, - -0.025375, - -0.014353, - 0.12657, - -0.039539, - -0.080414, - 0.023402, - 0.046054, - -0.018369, - -0.041674, - 0.085614, - 0.037615, - -0.026632, - -0.029234, - 0.010302, - -0.022008, - -0.094908, - 0.034395, - 0.021678, - -0.035758, - 0.025486, - -0.00023468, - -0.0058687, - -0.029341, - 0.026225, - -0.033945, - 0.064037, - -0.0075804, - 0.046372, - -0.037078, - 0.0076414, - 0.025924, - -0.049454, - -0.049671, - -0.020712, - -0.0039742, - 0.10145, - 0.044717, - -0.0040439, - 0.072802, - 0.075183, - 0.019401, - 0.042633, - 0.019881, - 0.0056505, - -0.025522, - 0.034801, - 0.024855, - -0.04168, - -0.038194, - -0.0095941, - 0.03862, - 0.00665, - -0.02382, - 0.045504, - -0.11446, - 0.033137, - 0.0097915, - 0.038251, - -0.063227, - -0.0064191, - 0.0049516, - 0.027091, - -0.028532, - 0.010861, - 0.047635, - -0.043353, - -0.028096, - -0.012798, - 0.064001, - -0.0068379, - -0.014949, - -0.017776, - -0.010859, - -0.011052, - 0.0042861, - 0.014637, - 0.01059, - -0.04927, - -0.059507, - -0.022549, - 0.069171, - 0.033057, - -0.035946, - -0.011406, - 0.034373, - -0.071739, - 0.08451, - -0.086453, - -0.019812, - -0.042129, - 0.0056399, - -0.023462, - 0.0054846, - -0.0075739, - 0.026085, - 0.046815, - 0.076262, - 0.004004, - -0.001616, - -0.033558, - 0.043, - -0.022952, - 0.06511, - -0.015627, - -0.023314, - 0.068098, - 0.075933, - -0.049875, - 0.02327, - -0.068771, - -0.0011625, - 0.014249, - 0.0030055, - -0.054826, - 0.033868 - ], - "computation": [ - -0.030885, - -0.034566, - -0.026643, - -0.017927, - 0.015704, - -0.0064644, - 0.013362, - -0.070295, - -0.020398, - -0.062998, - 0.04294, - -0.029716, - -0.017793, - 0.058094, - -0.048757, - 0.011356, - 0.067904, - 0.013073, - 0.014444, - 0.033085, - -0.02958, - 0.022005, - -0.01089, - 0.058312, - 0.030819, - -0.023944, - -0.031767, - -0.010406, - -0.011112, - -0.019276, - -0.0058714, - 0.016038, - 0.012999, - -0.076755, - 0.01081, - 0.0074323, - -0.00021856, - -0.046193, - 0.026377, - 0.0089604, - -0.051315, - -0.10098, - -0.040016, - -0.020192, - -0.055555, - -0.047125, - 0.030049, - -0.039918, - -0.02288, - -0.0076668, - -0.04537, - 0.023444, - -0.022243, - 0.021191, - -0.046278, - 0.015927, - -0.0098976, - 0.042978, - 0.024566, - -0.069296, - 0.0073726, - 0.031304, - 0.079357, - 0.025604, - -0.0013746, - 0.0020061, - 0.070169, - 0.024763, - -0.0071415, - 0.00071785, - -0.010792, - -0.014576, - -0.016681, - -0.013038, - 0.034975, - -0.0078345, - 0.028072, - -0.0062605, - 0.042579, - -0.020038, - -0.057893, - -0.024157, - -0.020471, - -0.0087906, - 0.010432, - 0.010234, - 0.022573, - -0.0055837, - 0.02163, - 0.040461, - -0.0071499, - 0.029835, - -0.051113, - -0.01372, - -0.026188, - 0.035223, - -0.024219, - -0.0053199, - -0.028786, - 0.037168, - 0.028601, - -0.049674, - -0.040617, - 0.012119, - -0.0053918, - -0.044957, - -0.01045, - 0.040768, - -0.0092059, - -0.057974, - 0.00094766, - 0.018192, - 0.024441, - -0.026118, - 0.0058352, - 0.0068819, - -0.0059549, - 0.047759, - -0.050763, - -0.02297, - -0.014143, - 0.014008, - -0.043428, - 0.026094, - 0.046372, - -0.018133, - -0.031034, - -0.078095, - 0.014122, - 0.071296, - 0.0018262, - -0.041058, - -0.0042869, - 0.012696, - 0.050518, - 0.014385, - 0.053616, - -0.0011744, - 0.016165, - 0.0083866, - 0.04336, - 0.03135, - 0.05635, - 0.013899, - 0.0043213, - -0.012083, - -0.026947, - -0.057332, - 0.0075294, - 0.0084658, - 0.031531, - 0.019317, - 0.012627, - -0.078716, - 0.051986, - 0.049768, - 0.017229, - 0.022268, - -0.022181, - 0.0070178, - 0.021434, - -0.0039303, - -0.070294, - -0.045913, - 0.0053773, - 0.0039105, - -0.038841, - 0.019811, - 0.027118, - 0.014196, - 0.032791, - -0.037834, - 0.032639, - 0.042755, - 0.049265, - 0.048845, - 0.0059415, - 0.032406, - -0.039453, - -0.014575, - 0.0088154, - -0.022349, - -0.029489, - 0.0060759, - 0.020458, - -0.050663, - -0.072871, - 0.065081, - 0.037249, - 0.0022872, - 0.063993, - 0.046429, - -0.015377, - 0.0030992, - 0.025493, - -0.018924, - -0.051733, - 0.025546, - -0.032511, - 0.0070579, - -0.10058, - 0.00086809, - 0.053488, - 0.03959, - 0.0011423, - 0.0048393, - 0.0090718, - -0.077928, - 0.018598, - 0.007614, - 0.048494, - 0.010247, - -0.00075937, - -0.016675, - 0.040292, - 0.034702, - 0.013117, - 0.022474, - -0.054719, - -0.024519, - -0.0225, - 0.027671, - 0.003244, - 0.071787, - 0.017145, - -0.024847, - 0.01178, - 0.052895, - 0.0014251, - -0.01626, - -0.026159, - -0.038389, - -0.028344, - -0.012382, - 0.020452, - -0.068344, - 0.0071792, - 0.017287, - -0.044363, - -0.016064, - 0.040144, - -0.024683, - 0.012525, - 0.014323, - -0.034326, - 0.035461, - -0.01715, - -0.052476, - 0.016795, - -0.0137, - 0.04016, - 0.0021004, - 0.046131, - -0.0092077, - 0.027559, - -0.0074816, - 0.011612, - 0.045475, - -0.004951, - 0.020683, - 0.0076323, - 0.055551, - -0.028544, - -0.033384, - -0.0048957, - -0.034607, - 0.021675, - 0.012882, - 0.01631, - 0.033752, - 0.0082823, - 0.051385, - -0.08193, - -0.028469, - -0.0010548, - -0.03929, - 0.043601, - 0.018706, - 0.0059949, - -0.037171, - 0.065288, - 0.010097, - -0.056169, - -0.019283, - 0.0039174, - 0.0060867, - -0.015799, - 0.028297, - -0.047706, - 0.010413, - -0.053652, - 0.016703, - -0.029436, - -0.035662, - 0.076307, - 0.030777, - -0.022111, - -0.020295, - 0.010342, - 0.056182 - ], - "welfare": [ - -0.030946, - -0.089315, - -0.011652, - -0.045718, - -0.024981, - -0.0044763, - -0.021263, - -0.09784, - 0.10603, - 0.038744, - 0.012345, - -0.025601, - -0.01221, - 0.0097496, - 0.0015263, - -0.012908, - 0.081626, - 0.0009975, - 0.04918, - 0.068246, - 0.028644, - 0.031557, - -0.0010822, - 0.020093, - 0.054386, - 0.047737, - 0.00063505, - 0.014034, - 0.048168, - 0.0011319, - 0.019423, - -0.053233, - -0.092949, - -0.033406, - 0.031065, - 0.068204, - -0.0043349, - -0.042049, - 0.087763, - -0.03435, - 0.037066, - -0.12393, - -0.0042599, - 0.080843, - -0.007658, - -0.022448, - -0.02492, - -0.073467, - -0.039128, - -0.012305, - -0.0016409, - 0.076877, - 0.086142, - -0.062235, - -0.060655, - -0.054468, - -0.10429, - -0.038992, - -0.020248, - -0.034762, - 0.0275, - -0.036972, - 0.078869, - 0.038271, - 0.043604, - 0.06001, - -0.042431, - -0.081968, - 0.031748, - 0.030386, - -0.0025571, - -0.0079955, - 0.030101, - -0.068373, - 0.0010625, - 0.036555, - -0.040089, - -0.0064266, - 0.012282, - -0.012983, - 0.020569, - 0.023612, - -0.020615, - 0.075628, - -0.031781, - 0.053636, - -0.011381, - -0.070059, - -0.015196, - 0.014702, - 0.015776, - 0.052335, - -0.079472, - 0.03951, - -0.046599, - 0.058754, - 0.0028448, - 0.00872, - 0.040362, - 0.020553, - 0.027186, - -0.10516, - -0.026169, - -0.035606, - 0.018492, - -0.099055, - 0.051765, - 0.023678, - 0.037996, - -0.0078448, - -0.032612, - 0.094212, - 0.063558, - -0.006848, - 0.012285, - 0.032351, - -0.0045917, - -0.045109, - -0.06742, - -0.0315, - -0.058795, - 0.037431, - 0.0096073, - -0.044047, - 0.054487, - -0.015024, - -0.0082107, - -0.13868, - 0.042304, - 0.12185, - 0.07202, - -0.022093, - 0.061037, - 0.086946, - -0.0097058, - 0.038145, - -0.0046312, - 0.013127, - -0.032925, - 0.013419, - -0.0020736, - 0.018669, - 0.052878, - 0.039494, - -0.012996, - 0.034261, - -0.0058519, - 0.08799, - 0.028328, - 0.013971, - 0.068061, - 0.093602, - -0.056571, - -0.099205, - 0.036908, - -0.03854, - -0.018606, - 0.0014976, - 0.0051268, - -0.1285, - 0.095206, - -0.040219, - -0.10557, - -0.018798, - -0.020014, - -0.0052598, - 0.071582, - 0.041986, - -0.064, - -0.012071, - -0.010824, - -0.0080908, - -0.021593, - 0.036289, - -0.071498, - 0.056139, - 0.0049646, - 0.026137, - -0.003631, - -0.030956, - -0.014207, - -0.029222, - -0.019826, - -0.021355, - 0.0021806, - -0.049005, - 0.028255, - 0.11646, - 0.053053, - -0.010729, - 0.056889, - 0.017884, - 0.0046166, - -0.062093, - 0.069201, - -0.099169, - -0.05952, - 0.0027641, - 0.0016028, - -0.051818, - -0.15564, - 0.029039, - 0.034442, - -0.075427, - -0.044392, - 0.0020221, - -0.0038036, - -0.1163, - 0.036163, - 0.010121, - 0.1007, - -0.027441, - -0.01257, - 0.0027752, - -0.010145, - 0.01458, - 0.040088, - 0.021094, - 0.0077717, - 0.0024849, - -0.04719, - -0.10841, - -0.05281, - 0.092361, - -0.0039695, - -0.0084313, - -0.0514, - 0.075622, - 0.066952, - -0.051398, - -0.017957, - 0.0096866, - -0.064513, - -0.10362, - 0.0728, - 0.021426, - -0.025459, - -0.001631, - -0.031329, - -0.013085, - 0.036918, - 0.041432, - -0.081332, - -0.0092179, - -0.041495, - 0.030685, - 0.038148, - -0.056586, - 0.0035005, - 0.016967, - 0.08145, - 0.021756, - 0.040383, - -0.023588, - 0.045146, - -0.0093826, - -0.054811, - 0.061936, - 0.014999, - -0.039561, - -0.034324, - -0.014517, - 0.069118, - 0.014892, - 0.10228, - 0.04473, - 0.010606, - 0.055123, - 0.035971, - 0.041584, - -0.065589, - 0.08951, - -0.11027, - -0.029269, - -0.01162, - -0.031788, - 0.01753, - 0.038043, - -0.012299, - 0.027106, - 0.12394, - -0.0064024, - -0.044838, - -0.019112, - 0.074751, - 0.13826, - 0.0239, - 0.0097017, - -0.0084288, - -0.0082403, - -0.0662, - 0.010723, - -0.058274, - -0.018015, - -0.07473, - 0.050103, - -0.063846, - 0.07323, - -0.053877, - 0.022768 - ], - "winds": [ - -0.089327, - -0.0055636, - -0.045675, - 0.027889, - 0.031221, - -0.11009, - -0.011379, - -0.097003, - 0.013404, - -0.0018873, - 0.0054061, - -0.05249, - -0.015947, - 0.024542, - -0.023627, - 0.018091, - 0.095741, - 0.01168, - 0.082888, - 0.08134, - 0.060633, - -0.020885, - -0.11885, - 0.076634, - 0.094126, - -0.06964, - -0.014561, - 0.047352, - 0.11849, - -0.019932, - -0.061815, - 0.05073, - 0.013363, - -0.0046667, - 0.0054106, - 0.065362, - 0.0599, - -0.10616, - 0.052448, - -0.04345, - -0.069796, - -0.11667, - 0.011353, - 0.011841, - -0.087306, - 0.034257, - 0.038599, - 0.055519, - -0.041359, - -0.074062, - 0.087428, - -0.02769, - -0.036277, - 0.1134, - -0.10864, - -0.002324, - 0.17346, - -0.024816, - -0.046462, - 0.09564, - -0.040568, - 0.031941, - 0.12384, - -0.10173, - -0.034287, - -0.005063, - -0.04886, - -0.064375, - 0.087511, - 0.022755, - 0.12254, - 0.04097, - 0.076216, - 0.016579, - -0.035256, - -0.10909, - -0.0099284, - -0.042489, - -0.091456, - 0.0026956, - -0.087653, - -0.042715, - -0.0014401, - 0.073654, - 0.15923, - -0.031003, - 0.055784, - 0.013635, - -0.023919, - -0.055983, - 0.022607, - -0.075563, - -0.10873, - 0.047715, - -0.050199, - 0.075541, - -0.022815, - 0.054087, - -0.01717, - -0.031618, - 0.073995, - 0.0038475, - 0.03254, - 0.00031562, - 0.14762, - -0.090551, - 0.0034775, - -0.070387, - 0.067154, - 0.072119, - 0.018894, - 0.032434, - 0.072961, - 0.036122, - -0.040233, - -0.052487, - 0.0047185, - 0.10397, - -0.021021, - -0.036103, - 0.059394, - -0.061777, - 0.030628, - 0.0041892, - 0.14855, - -0.016269, - -0.015895, - -0.04262, - -0.099843, - 0.12315, - 0.006619, - -0.010042, - 0.065829, - 0.086705, - 0.029948, - 0.015275, - 0.067142, - 0.13289, - -0.12818, - -0.028593, - 0.0049353, - -0.03101, - 0.02148, - -0.08879, - 0.056979, - -0.032786, - -0.0010942, - -0.00061478, - -0.11124, - -0.015147, - 0.0026481, - 0.12727, - -0.033309, - -0.026714, - 0.17412, - 0.04033, - 0.027727, - -0.094553, - -0.10027, - 0.044395, - 0.049073, - -0.079867, - -0.08373, - 0.037122, - -0.027285, - -0.066297, - 0.039791, - 0.016566, - -0.0090059, - 0.096137, - -0.093122, - -0.028159, - 0.028266, - 0.0015176, - 0.018553, - 0.060329, - 0.055669, - 0.040293, - -0.077005, - -0.003601, - -0.037718, - 0.061109, - -0.025909, - -0.093764, - -0.020462, - -0.047094, - 0.0061917, - 0.13986, - 0.084331, - -0.029619, - -0.018719, - -0.068586, - -0.11931, - -0.00092747, - -0.086738, - 0.038914, - 0.024517, - 0.13119, - 0.048622, - -0.033981, - -0.21417, - -0.050527, - 0.074579, - -0.022224, - 0.12972, - 0.022574, - 0.12911, - 0.042581, - 0.10703, - -0.072553, - 0.078488, - -0.0296, - 0.062174, - -0.044786, - 0.045206, - -0.0083672, - 0.01318, - -0.022151, - -0.038482, - -0.11149, - 0.028786, - -0.011251, - 0.034898, - 0.085, - 0.061853, - 0.043834, - -0.10224, - 0.060992, - -0.029848, - 0.016504, - 0.028558, - -0.062624, - -0.076701, - -0.043253, - 0.031155, - 0.067962, - -0.00078746, - -0.016883, - 0.12829, - 0.013517, - -0.023911, - 0.035343, - 0.02181, - -0.055391, - -0.060918, - 0.027562, - -0.048165, - -0.057241, - 0.066246, - -0.060699, - 0.10548, - -0.032698, - -0.019892, - -0.0082417, - -0.056047, - 0.026188, - 0.0088243, - -0.021772, - -0.055431, - -0.0097602, - 0.079065, - 0.03373, - 0.040024, - -0.041397, - -0.07764, - -0.056003, - 0.016312, - -0.0084109, - 0.051797, - -0.029957, - -0.049863, - 0.093333, - -0.1496, - -0.049549, - 0.034467, - -0.097201, - -0.040853, - -0.075448, - -0.001639, - 0.01303, - 0.023941, - -0.0035949, - 0.057091, - -0.038684, - 0.070429, - -0.0042168, - 0.056172, - 0.058762, - -0.031046, - -0.015323, - 0.082377, - 0.030118, - -0.058661, - -0.037349, - 0.0027614, - 0.0065838, - -0.062872, - 0.019974, - 0.046846, - -0.075704 - ], - "grandparent": [ - 0.046497, - -0.037967, - 0.02377, - 0.0064306, - -0.037923, - 0.075139, - 0.047461, - -0.070432, - 0.023362, - -0.041867, - -0.067578, - 0.038211, - 0.023962, - -0.026767, - -0.049238, - 0.041216, - 0.033471, - -0.037071, - 0.0090139, - -0.031823, - -0.0096741, - -0.00028149, - -0.019708, - 0.027959, - 0.043695, - 0.0069274, - -0.0085115, - 0.017387, - -0.026669, - -0.026931, - 0.046305, - -0.059604, - 0.04332, - 0.00014196, - -0.0315, - 0.02774, - -0.054863, - -0.069793, - 0.049974, - -0.0023298, - -0.035087, - -0.096357, - 0.0045697, - -0.084325, - 0.023686, - 0.046965, - -0.054252, - 0.029203, - -0.01404, - -0.00014508, - 0.021716, - 0.048254, - -0.012551, - 0.016935, - 0.031204, - -0.077629, - 0.037756, - -0.024965, - -0.054499, - -0.042316, - -0.037716, - 0.0072421, - 0.061408, - -0.027024, - 0.021386, - -0.044481, - -0.013132, - -0.016412, - -0.040519, - -0.032075, - 0.0098043, - -0.046157, - 0.054636, - 0.031119, - 0.022191, - -0.0015776, - 0.00060004, - 0.0012049, - 0.022257, - -0.004609, - 0.0088504, - 0.020558, - 0.028568, - 0.065473, - -0.040358, - -0.060561, - 0.014538, - 0.0024064, - 0.017349, - -0.0308, - -0.025391, - 0.032757, - -0.079377, - -0.030946, - -0.03622, - 0.092577, - -0.0056885, - 0.057775, - -0.010223, - -0.016305, - 0.08789, - -0.051233, - -0.041831, - -0.060161, - -0.047315, - -0.094403, - 0.0048155, - -0.01977, - 0.016732, - -0.0079481, - -0.022556, - 0.04778, - 0.017164, - -0.076213, - -0.029676, - -0.059219, - -0.03884, - -0.032555, - -0.020837, - 0.013998, - -0.041342, - -0.0011319, - 0.046499, - 0.0074803, - 0.040677, - -0.042207, - -0.0061877, - -0.051046, - 0.02629, - 0.051209, - -0.053296, - -0.00026541, - -0.051272, - -0.018028, - -0.022147, - 0.038184, - -0.0029011, - 0.031097, - 0.032665, - -0.027888, - 0.032532, - -0.00044967, - -0.0068926, - 0.0038895, - 0.012752, - 0.02229, - -0.031698, - 0.046195, - -0.078817, - 0.0012675, - 0.025396, - 0.050988, - -0.024177, - -0.040051, - 0.021354, - -0.015103, - 0.055097, - 0.0031095, - 0.047339, - -0.046096, - 0.0068457, - 0.034158, - -0.026369, - 0.026171, - 0.029194, - 0.043239, - 0.061778, - -0.0065119, - 0.0086342, - -0.04197, - -0.0063264, - -0.0062983, - -0.080017, - 0.047852, - -0.026339, - 0.03046, - 0.064433, - 0.012275, - 0.023019, - -0.0522, - 0.011474, - -0.085108, - 0.0030997, - 0.001665, - 0.028772, - -0.056766, - -0.021754, - 0.083555, - 0.058223, - -0.041269, - -0.007941, - 0.045919, - -0.005449, - 0.00041802, - 0.0067893, - 0.02894, - 0.064444, - -0.01315, - -0.00099862, - -0.0028897, - -0.091129, - 0.021076, - -0.012947, - -0.061311, - -0.0060613, - 0.045435, - 0.0013402, - -0.044424, - -0.029898, - -0.02076, - 0.093909, - 0.0031518, - -0.024881, - 0.025858, - -0.065184, - 0.032913, - -0.051944, - -0.015107, - 0.037755, - 0.0028403, - 0.066699, - 0.052839, - 0.052466, - 0.070655, - 0.017639, - -0.050686, - 0.011167, - 0.026405, - -0.020125, - -0.071563, - 0.015874, - -0.023419, - -0.032998, - 0.0029122, - -0.0096597, - 0.050529, - -0.010356, - 0.068573, - -0.0091926, - -0.0019705, - 0.097808, - -0.02043, - 0.030444, - -0.025797, - 0.003193, - 0.0023159, - 0.022567, - -0.020764, - -0.0088811, - 0.00017463, - 0.0037578, - -0.021756, - 0.015226, - 0.008562, - 0.062555, - -0.060087, - -0.021325, - 0.022244, - 0.02394, - -0.00078919, - 0.025396, - -0.043349, - 0.0041556, - 0.012638, - 0.019002, - -0.033631, - 0.0095083, - 0.0017936, - 0.083317, - -0.000126, - -0.021661, - 0.064973, - -0.087521, - -0.022172, - 0.026211, - 0.0088303, - 0.014032, - 0.019384, - 0.006628, - 0.021095, - 0.052781, - -0.021469, - 0.04595, - -0.022073, - -0.0015492, - 0.045563, - -0.039367, - -0.078262, - -0.0078399, - -0.0044955, - 0.041818, - -0.0069969, - -0.039559, - -0.031222, - 0.039618, - 0.073454, - 0.038654, - 0.029737, - 0.028957, - 0.0052374 - ], - "homeschooling": [ - 0.003229, - 0.017937, - 0.0017506, - 0.023156, - -0.044777, - -0.021919, - -0.0085144, - -0.072637, - 0.020625, - -0.026403, - 0.0069746, - -0.037299, - -0.015593, - 0.056519, - 0.0079326, - 0.029072, - 0.052278, - 0.0045062, - 0.015869, - -0.010114, - -0.020101, - -0.0070314, - 0.013998, - 0.017475, - -0.0015846, - 0.058496, - 0.029795, - 0.033934, - 0.044747, - 0.031612, - 0.015674, - -0.030489, - -0.061033, - -0.028232, - 0.031615, - 0.036718, - 0.019917, - -0.076242, - 0.050093, - -0.003251, - -0.015018, - -0.058272, - 0.0044217, - 0.01168, - 0.037123, - -0.0033155, - -0.037061, - 0.053456, - -0.0093315, - 0.029787, - -0.0034965, - 0.037482, - 0.030494, - -0.011601, - -0.030961, - -0.020045, - 0.0018854, - -0.047552, - -0.024371, - 0.013051, - 0.028754, - -0.0005425, - 0.015214, - 0.077711, - 0.028165, - -0.02622, - -0.029539, - -0.036715, - 0.011378, - -0.042125, - 0.005891, - -0.013294, - 0.0038927, - -0.029382, - 0.018166, - -0.047644, - 0.0012373, - -0.011763, - 0.061808, - -0.004704, - 0.0041708, - 0.022261, - 0.0034112, - 0.0098461, - -0.014447, - 0.020838, - -0.030114, - 0.0023357, - -0.029115, - 0.060572, - 0.030703, - 0.0055702, - -0.042707, - 0.072584, - -0.013876, - 0.058112, - -0.041595, - 0.0052297, - 0.0021176, - -0.02379, - -0.016035, - -0.0030003, - 0.022788, - -0.064022, - -0.040978, - -0.03503, - 0.062199, - 0.020198, - 0.015622, - 0.0080149, - 0.0035438, - 0.062246, - 0.029797, - 0.051111, - -0.022476, - -0.036656, - 0.013881, - -0.042174, - -0.027, - -0.030816, - -0.079252, - 0.038821, - 0.029598, - 0.012442, - 0.016607, - -0.048831, - -0.039178, - -0.028872, - -0.027747, - 0.070048, - -0.016195, - -0.0111, - 0.055502, - 0.0089446, - -0.06861, - -0.018514, - 0.039868, - 0.013227, - 0.037255, - -0.023799, - 0.0042119, - -0.012998, - -0.0027142, - 0.0099105, - 0.011079, - 0.030654, - -0.016849, - -0.022939, - -0.010491, - -0.04855, - 0.029243, - 0.032082, - -0.0774, - -0.084403, - 0.038516, - 0.061409, - 0.056319, - -0.0025674, - 0.069958, - -0.038838, - 0.036086, - 0.019046, - -0.026466, - -0.052587, - 0.027218, - 0.032095, - 0.04751, - 0.022385, - 0.015865, - -0.068911, - -0.011459, - 0.026837, - -0.0062396, - -0.05426, - -0.018789, - 0.015523, - 0.0071214, - 0.042687, - -0.018477, - -0.049073, - 0.020402, - -0.077908, - -0.053047, - 0.023835, - 0.098374, - -0.02417, - 0.02255, - 0.058102, - -0.0089837, - -0.065238, - 0.034665, - 0.046986, - -0.068089, - -0.016762, - 0.024329, - -0.038314, - 0.08805, - 0.046967, - 0.064655, - -0.014247, - -0.11494, - 0.058434, - 0.013876, - -0.0047811, - -0.011195, - 0.0095966, - 0.015329, - -0.027494, - -0.0010051, - -0.0028163, - 0.072234, - 0.011782, - 0.028368, - -0.0020686, - -0.039864, - 0.069275, - 0.02695, - -0.031108, - 0.034087, - -0.046677, - 0.024591, - -0.034707, - -0.02682, - 0.0564, - -0.017288, - -0.076957, - -0.00018778, - 0.053206, - 0.010018, - -0.027592, - 0.048655, - -0.006096, - -0.02573, - 0.016377, - 0.04877, - 0.039876, - 0.093396, - 0.051717, - -0.058341, - -0.039778, - 0.0094917, - -0.081125, - 0.10447, - -0.039197, - -0.0095986, - 0.0078275, - 0.029233, - -0.045988, - 0.033171, - -0.0092757, - 0.035054, - -0.06571, - -0.02801, - -0.046065, - -0.01339, - -0.024071, - -0.028444, - -0.00029621, - -0.042106, - -0.013452, - 0.073563, - 0.025521, - 0.024012, - 0.041687, - 0.031306, - -0.014132, - -0.021527, - 0.0060309, - 0.053436, - 0.060293, - -0.00033703, - 0.028414, - -0.049597, - 0.0234, - -0.020438, - -0.0047306, - -0.029623, - -0.00072116, - -0.0089875, - 0.043293, - 0.058376, - -0.0054989, - 0.069217, - 0.016247, - 0.01045, - 0.0064877, - 0.043137, - -0.0049654, - -0.044186, - 0.013524, - -0.034986, - 0.0072593, - -0.011423, - -0.0048069, - -0.027318, - 0.044402, - 0.017115, - 0.039172, - 0.048117, - -0.016178 - ], - "folkloric": [ - 0.0029026, - -0.053629, - 0.015997, - 0.011791, - -0.033187, - -0.060812, - 0.0068417, - -0.078446, - 0.0061606, - -0.076953, - 0.047516, - -0.058257, - 0.0035254, - -0.05669, - 0.054484, - 0.0058111, - 0.071256, - -0.056026, - 0.016331, - 0.1272, - -0.016435, - -0.034219, - 0.011398, - 0.085151, - 0.041557, - 0.0083464, - -0.021639, - 0.081163, - 0.10106, - -0.0031274, - -0.011919, - -0.063436, - 0.059184, - -0.084396, - 0.086478, - 0.043492, - 0.014288, - 0.047699, - 0.025915, - 0.041084, - 0.07714, - -0.097101, - 0.037157, - 0.049445, - 0.088164, - -0.013381, - -0.026886, - 0.032694, - -0.019001, - -0.047491, - -0.018683, - 0.067509, - -0.078769, - 0.025669, - 0.048507, - 0.093407, - 0.013351, - 0.027218, - -0.013669, - -0.007527, - -0.046905, - -0.082274, - 0.094749, - -0.034272, - 0.050909, - 0.038437, - -0.034992, - 0.023623, - 0.0037435, - 0.01348, - -0.013416, - -0.0045155, - 0.006828, - -0.037188, - 0.037896, - 0.032818, - 0.0032524, - -0.058322, - 0.026026, - -0.063676, - 0.014386, - 0.018734, - -0.0045028, - 0.0057969, - -0.021991, - -0.035096, - -0.027963, - 0.01321, - 0.02047, - -0.0087623, - -0.10144, - 0.033447, - -0.073369, - 0.016415, - 0.028493, - 0.051732, - -0.00576, - 0.0094656, - 0.06771, - 0.037441, - 0.033882, - 0.047423, - -0.063571, - -0.022079, - -0.046136, - -0.072258, - -0.011711, - -0.037261, - -0.032945, - 0.030505, - 0.0011341, - 0.049888, - 0.010297, - -0.034965, - -0.036113, - 0.036241, - -0.02269, - 0.028115, - -0.040115, - 0.0053877, - -0.052457, - -0.0073017, - -0.093797, - -0.096256, - 0.094953, - 0.03506, - 0.024292, - 0.066493, - -0.02167, - 0.1078, - -0.02685, - 0.015231, - -0.078652, - 0.012246, - -0.015068, - 0.013106, - 0.0083653, - 0.060844, - 0.040693, - -0.021617, - 0.013836, - -0.027248, - 0.031361, - 0.025458, - -0.01732, - -0.062713, - 0.043143, - 0.055745, - -0.04946, - -0.048949, - 0.0045569, - 0.13907, - 0.0021538, - 0.022926, - -0.0058963, - 0.037309, - -0.039458, - -0.0028459, - 0.012952, - 0.078917, - 0.0093966, - 0.079749, - -0.090663, - -0.023528, - -0.0022334, - -0.0064134, - 0.04759, - 0.046774, - 0.048261, - 0.014074, - 0.017706, - -0.023224, - 0.033147, - -0.0086293, - 0.033741, - 0.041108, - 0.03056, - 0.045098, - -0.049304, - -0.047784, - -0.029785, - 0.056433, - -0.0031251, - -0.023325, - -0.049807, - -0.026747, - -0.047536, - 0.12285, - -0.0055982, - -0.05811, - 0.070662, - 0.055926, - 0.089958, - -0.050169, - -0.019274, - 0.091237, - 0.038465, - -0.0022781, - 0.0067658, - -0.038608, - -0.12241, - -0.0099938, - -0.064781, - -0.036302, - 0.0736, - 0.057367, - -0.020836, - 0.034825, - -0.0024955, - -0.0085337, - 0.12526, - 0.0020733, - -0.025386, - -0.057671, - 0.023468, - 0.041921, - -0.027786, - -0.023586, - -0.067019, - 0.048093, - 0.03297, - -0.037888, - -0.032309, - 0.065563, - -0.013375, - -0.013362, - 0.10189, - 0.075799, - -0.021083, - -0.038965, - -0.0079217, - -0.070119, - -0.036426, - 0.0037133, - -0.01652, - 0.013792, - -0.030564, - 0.030837, - 0.096556, - 0.0066007, - 0.022358, - 0.025942, - -0.019693, - -0.020513, - -0.12128, - 0.0019932, - -0.12408, - -0.020346, - -0.006842, - -0.012051, - 0.029451, - -0.076645, - -0.0028564, - -0.001517, - -0.038918, - 0.031727, - -0.036836, - 0.019473, - 0.067326, - 0.029988, - 0.098973, - -0.067694, - -0.018268, - 0.039385, - 0.0004138, - -0.031909, - 0.043407, - -0.016826, - 0.06207, - -0.01798, - -0.0066208, - 0.0469, - -0.067394, - -0.031525, - 0.068427, - -0.09638, - 0.005092, - -0.050916, - -0.081117, - -0.047112, - 0.1635, - -0.03222, - -0.0039836, - 0.00020959, - 0.033828, - 0.053413, - 0.041756, - -0.0012019, - -0.028504, - -0.018397, - 0.052578, - 0.021866, - 0.014251, - -0.038817, - 0.002217, - 0.025978, - 0.044517, - 0.035563, - 0.0059436, - -0.022069 - ], - "children": [ - -0.029338, - 0.00025946, - 0.0064369, - -0.0055765, - -0.0070943, - 0.029537, - -0.031698, - -0.066126, - 0.033185, - -0.01137, - 0.040353, - -0.026243, - 0.023222, - -0.018231, - -0.012856, - -0.023735, - 0.051947, - -0.0045865, - 0.035405, - 0.023212, - -0.0065391, - -0.021314, - -0.0031811, - 0.046288, - -0.045352, - 0.026553, - -0.021865, - -0.0056492, - 0.085872, - -0.0070813, - -0.014399, - -0.032297, - 0.002627, - 0.0072508, - -0.0065207, - 0.0041789, - -0.013557, - -0.084086, - 0.030098, - -0.065433, - -0.024114, - -0.045937, - 0.0005538, - -0.025729, - 0.016278, - -0.030252, - 0.0095786, - 0.075856, - -0.024146, - 0.012895, - 0.0079037, - 0.065894, - -0.028332, - -0.026112, - -0.055827, - 0.018462, - -0.0087769, - -0.08663, - -0.027549, - -0.04191, - -0.034246, - -0.044734, - 0.11166, - 0.036329, - 0.039231, - 0.035143, - 0.037548, - -0.07693, - 0.0011505, - -0.016141, - -0.039071, - -0.045344, - 0.11154, - 0.024791, - -0.0034881, - 0.0056193, - 0.043845, - -0.004674, - 0.035912, - -0.015702, - 0.020558, - 0.02327, - 0.0046227, - 0.048941, - -0.0083491, - 0.023358, - 0.003021, - 0.019359, - -0.053457, - -0.00669, - -0.0181, - 0.025805, - -0.1148, - 0.0070468, - 0.0015709, - 0.031458, - 0.0003142, - 0.087418, - 0.059848, - 0.0015532, - 0.06678, - -0.023819, - 0.017707, - -0.06822, - 0.047849, - -0.065351, - 0.0097296, - 0.020413, - -0.018778, - -0.024151, - -0.0058313, - 0.11404, - 0.080595, - 0.048224, - -0.031202, - -0.036341, - -0.012016, - 0.0085982, - -0.0118, - 0.0028726, - -0.036851, - 0.0059679, - 0.01666, - -0.076158, - 0.059916, - -0.033619, - 0.048272, - -0.141, - 0.013137, - 0.0099306, - -0.024196, - 0.10278, - 0.0094304, - -0.0042939, - -0.040322, - 0.025788, - 0.010364, - 0.047008, - -0.0068922, - 0.0017156, - 0.0085457, - 0.003264, - -0.021557, - -0.0042025, - 0.063889, - -0.00016234, - -0.029974, - 0.031671, - -0.033081, - -0.024719, - 0.061009, - 0.083632, - -0.014078, - -0.017088, - 0.007338, - -0.032826, - 0.026542, - 0.071707, - 0.060042, - -0.039551, - 0.042967, - -0.0078697, - 0.050815, - 0.011763, - -0.0026895, - 0.037795, - 0.065943, - -0.0039867, - -0.015692, - -0.057028, - -0.034119, - -0.041922, - 0.020193, - -0.011585, - -0.0010906, - 0.021987, - 0.014469, - 0.036337, - -0.048814, - -0.028097, - 0.061973, - -0.051502, - -0.0080195, - 0.0089672, - -0.029041, - -0.098514, - 0.044589, - 0.065323, - 0.026069, - -0.035289, - -0.027389, - 0.06166, - -0.11246, - -0.038747, - 0.020034, - -0.030082, - 0.017622, - 0.046551, - 0.018855, - -0.022667, - -0.083885, - 0.10298, - -0.016955, - -0.062429, - 0.016132, - 0.033066, - 0.0096908, - -0.054096, - 0.0037628, - -0.056832, - 0.045667, - -0.02755, - 0.073238, - 0.052804, - -0.041243, - 0.010921, - -0.0074232, - -0.021102, - -0.0037699, - -0.0064599, - 0.011773, - -0.024078, - -0.017862, - 0.10952, - 0.043158, - -0.020313, - 0.026444, - 0.020907, - -0.047749, - -0.06951, - 0.048772, - 0.005805, - -0.11412, - -0.047194, - 0.035712, - 0.076962, - 0.011402, - 0.017103, - -0.036112, - -0.056657, - -0.025352, - -0.037777, - 0.020564, - -0.030006, - 0.007564, - 0.036461, - -0.0081557, - -0.060113, - 0.0054796, - -0.021787, - 0.027738, - 0.027711, - 0.016542, - -0.00079098, - 0.026026, - 0.0075988, - -0.029568, - 0.023811, - 0.0069924, - -0.039911, - -0.021538, - -0.021346, - 0.0008833, - -0.044817, - 0.020532, - 0.037377, - -0.0083269, - 0.042975, - 0.062664, - 0.012424, - 0.00090096, - 0.068458, - -0.13513, - -0.038996, - 0.012496, - -0.013771, - 0.020672, - 0.016476, - 0.020237, - -0.004337, - -0.0041717, - -0.013679, - 0.035662, - -0.018003, - 0.0098657, - 0.098002, - 0.010204, - -0.061255, - 0.016333, - 0.015848, - -0.015031, - 0.022779, - -0.12726, - -0.004913, - -0.00212, - 0.0083397, - 0.073584, - 0.0030183, - 0.01241, - 0.0088903 - ], - "secret": [ - 0.044314, - -0.039356, - -0.023166, - -0.046429, - -0.049418, - -0.02593, - 0.018546, - -0.1146, - 0.029534, - 0.038399, - -0.016833, - -0.09048, - -0.0079617, - -0.00062665, - -0.087868, - -0.014227, - 0.10253, - -0.056586, - 0.063696, - 0.03148, - -0.013962, - 0.10144, - 0.03458, - 0.051381, - -0.027711, - -0.022528, - 0.040733, - 0.029101, - 0.03659, - -0.049992, - -0.00069386, - 0.012156, - -0.06074, - -0.085052, - 0.034128, - -0.025356, - -0.034646, - 0.016564, - -0.045939, - 0.014265, - 0.045872, - -0.085484, - -0.049467, - -0.050088, - 0.03064, - -0.03724, - 0.026198, - 0.0071857, - -0.0026635, - 0.038874, - 0.0025558, - 0.01052, - 0.032894, - -0.061782, - -0.05427, - 0.078839, - -0.039794, - -0.027755, - -0.066858, - -0.0033706, - -0.02629, - -0.011689, - 0.12889, - -0.11441, - -0.036499, - -0.020976, - 0.02419, - -0.00026136, - 0.052402, - 0.024746, - 0.016839, - 0.032916, - -0.0097968, - 0.0090987, - -0.0010401, - 0.080581, - 0.062131, - -0.038215, - -0.020744, - -0.052937, - -0.012829, - -0.02125, - -0.0023838, - 0.06989, - -0.059503, - -0.020683, - 0.0049535, - -0.0039999, - 0.049079, - 0.075326, - 0.00027269, - 0.0030221, - -0.086687, - -0.02998, - -0.0017698, - 0.057735, - 0.0013287, - -0.018002, - 0.025312, - 0.050068, - -0.033783, - 0.029217, - 0.019566, - 0.029594, - 0.0021513, - -0.11165, - 0.074951, - 0.021369, - -0.0020104, - 0.082826, - -0.028919, - 0.065517, - 0.059193, - 0.050455, - -0.0094089, - -0.034534, - 0.063502, - 0.039718, - -0.055934, - -0.013532, - 0.046926, - 0.0079989, - -0.053018, - 0.02491, - 0.067423, - 0.0023134, - 0.017343, - -0.058288, - -0.036006, - 0.063436, - -0.012408, - -0.0035095, - 0.073692, - -0.025496, - 0.083384, - -0.15668, - -0.03656, - 0.059552, - 0.03975, - 0.061095, - 0.069375, - 0.028213, - -0.018965, - -0.04947, - 0.00085316, - 0.018223, - -0.1016, - -0.027068, - 0.016276, - -0.028039, - 0.0015352, - 0.045168, - 0.024879, - -0.082827, - 0.077579, - 0.016097, - 0.012527, - -0.011088, - 0.0022929, - 0.022799, - 0.033777, - 0.009533, - -0.064335, - 0.046445, - -0.0055579, - -0.038851, - 0.0085547, - 0.071284, - 0.031474, - -0.050438, - 0.049826, - -0.020646, - -0.13555, - -0.0014647, - -0.015167, - 0.054914, - 0.070857, - 0.056256, - -0.041629, - 0.0016232, - 0.026147, - -0.025589, - -0.001716, - -0.046292, - 0.012305, - 0.0069571, - -0.020577, - 0.078457, - 0.074857, - 0.017142, - -0.014916, - 0.051723, - 0.051887, - 0.053363, - 0.0051721, - 0.081391, - -0.067862, - 0.033191, - -0.017457, - 0.075207, - -0.17025, - 0.097036, - -0.10758, - 0.060376, - 0.0011773, - -0.032464, - -0.010161, - -0.0010187, - 0.048922, - 0.00018257, - 0.10871, - 0.029838, - 0.019521, - 0.12298, - 0.041056, - -0.081517, - -0.062216, - -0.033289, - -0.012691, - -0.030243, - 0.05082, - -0.081113, - 0.0060766, - 0.098873, - 0.04137, - 0.060816, - 0.023129, - 0.073067, - -0.01163, - -0.053688, - 0.012087, - -0.068956, - -0.078286, - -0.033848, - 0.0091896, - -0.02466, - -0.079325, - 0.030169, - 0.0048204, - 0.079373, - 0.10599, - -0.064235, - 0.064346, - 0.030368, - -0.13847, - 0.0078918, - -0.056269, - 0.010181, - 0.03055, - 0.012849, - 0.017614, - -0.06712, - -0.030603, - -0.029111, - -0.016458, - 0.00062379, - -0.038152, - 0.0048343, - -0.059874, - 0.0097981, - -0.0013803, - 0.061995, - -0.070341, - -0.031463, - 0.00043065, - -0.049066, - -0.033204, - -0.016154, - 0.033258, - -0.0474, - -0.020501, - 0.095888, - -0.11864, - -0.030266, - 0.10045, - -0.07918, - 0.04146, - -0.0091655, - 0.02282, - -0.023179, - 0.13467, - -0.033422, - 0.096973, - -0.03527, - -0.0068175, - -0.010152, - -0.013139, - 0.0066598, - -0.081067, - 0.081094, - -0.0080885, - 0.046496, - 0.0031249, - -0.023164, - -0.0027562, - -0.0078109, - 0.038307, - 0.014409, - -0.10902, - 0.052642 - ], - "relationships": [ - -0.0054588, - 0.00044509, - -0.0067268, - 0.011664, - -0.049866, - 0.034438, - -0.010606, - -0.05355, - 0.032707, - 0.032941, - 0.040542, - -0.024378, - 0.014106, - -0.0014576, - -0.025433, - 0.010159, - 0.065391, - 0.013519, - 0.021407, - 0.011208, - -0.017554, - 0.024542, - 0.02809, - 0.038812, - -0.010829, - -0.013694, - -0.025994, - -0.0048611, - 0.03807, - -0.028098, - -0.016058, - 0.04839, - 0.0056318, - -0.051877, - 0.030531, - 0.018964, - -0.015149, - -0.0082902, - -0.015499, - 0.016907, - 0.014929, - -0.088192, - -0.0047118, - -0.0065649, - -0.029201, - -0.048146, - 0.026458, - -0.031296, - 0.0012952, - -0.034617, - -0.02944, - -0.036445, - 0.038164, - 0.030751, - -0.044396, - -0.012306, - -0.020452, - 0.014528, - -0.027802, - -0.014244, - -0.013963, - -0.019601, - 0.10245, - -0.065448, - 0.039043, - -0.073539, - 0.017258, - -0.02409, - -0.003698, - -0.009546, - 0.031886, - 0.010436, - 0.0033661, - -0.024546, - 0.029267, - -0.033234, - 0.0029627, - -0.015888, - 0.0032478, - -0.034896, - 0.019453, - 0.0024173, - -0.030106, - 0.032126, - 0.0036321, - -0.043795, - 0.022037, - 0.0034066, - 0.0217, - -0.019372, - 0.031495, - 0.028495, - -0.057482, - 0.042502, - 0.01057, - 0.020825, - 0.029095, - 0.038086, - 0.041971, - 0.0057182, - 0.036969, - 0.028083, - -0.046134, - -0.03016, - 0.032259, - -0.0060342, - 0.0082252, - -0.014834, - 0.020866, - -0.025138, - 0.011574, - 0.02854, - 0.049075, - -0.0043223, - -0.018037, - -0.012483, - -0.012926, - 0.024112, - -0.035474, - 0.025577, - 0.000012694, - -0.015749, - 0.062294, - -0.0018373, - 0.077443, - 0.0049989, - 0.0064818, - -0.045481, - 0.012053, - 0.082644, - 0.022068, - 0.0044194, - -0.013014, - -0.018942, - -0.0065753, - 0.015937, - -0.023571, - 0.038727, - 0.0072264, - 0.052293, - 0.033336, - -0.03833, - -0.01943, - 0.038604, - 0.047146, - 0.00037981, - 0.0081152, - -0.042758, - 0.023236, - -0.010434, - 0.031244, - 0.050131, - 0.032326, - -0.038994, - -0.024097, - 0.016473, - -0.00088582, - 0.023002, - 0.013851, - -0.0043783, - 0.020007, - 0.03408, - -0.019161, - -0.0016614, - 0.0046309, - 0.0047297, - 0.0055009, - 0.069112, - 0.0080668, - -0.025122, - 0.014124, - -0.024293, - -0.01633, - -0.0083437, - -0.03172, - 0.033603, - 0.00063805, - 0.060415, - -0.0059713, - -0.019183, - 0.023258, - 0.016207, - 0.021734, - 0.012608, - 0.015895, - -0.04867, - 0.0085928, - 0.048018, - 0.038311, - 0.033389, - -0.035015, - 0.051327, - -0.0704, - -0.006228, - -0.026363, - -0.0229, - -0.022181, - 0.0084155, - -0.0048341, - 0.0079331, - -0.10634, - 0.049766, - -0.018418, - -0.053971, - -0.011766, - 0.02323, - -0.005027, - -0.048066, - 0.021591, - -0.011076, - 0.059957, - 0.020125, - 0.047253, - -0.03004, - 0.03169, - 0.027841, - -0.0052354, - -0.0026242, - -0.031297, - -0.022681, - 0.0063218, - -0.030007, - 0.010546, - 0.064238, - 0.029201, - -0.020711, - 0.029411, - 0.051392, - -0.013008, - -0.019091, - 0.021633, - -0.011089, - -0.076304, - 0.0024581, - 0.035211, - 0.042642, - 0.03277, - -0.00025573, - -0.020419, - 0.046552, - -0.02279, - -0.0043703, - -0.0061071, - 0.012251, - -0.020962, - 0.035367, - -0.048721, - -0.046027, - -0.0021908, - -0.029513, - 0.0039294, - -0.012782, - -0.0077795, - -0.0079345, - -0.00069965, - 0.0020191, - -0.00032149, - 0.044253, - 0.01963, - -0.01548, - -0.010951, - 0.0067247, - 0.015002, - -0.035613, - -0.0025369, - -0.0093316, - 0.0041097, - 0.009906, - -0.0033145, - -0.013817, - 0.0096947, - 0.041302, - -0.063795, - -0.053253, - 0.020922, - 0.0086081, - -0.017568, - 0.013067, - -0.0083042, - 0.048856, - 0.032935, - -0.029862, - -0.0077557, - 0.0042701, - 0.019059, - 0.0065735, - -0.045337, - 0.033312, - -0.053878, - -0.022214, - 0.009756, - 0.038308, - -0.043002, - -0.020833, - -0.01159, - 0.004268, - 0.024951, - 0.021483, - -0.011999, - -0.010515 - ], - "apartment": [ - 0.071667, - 0.01723, - 0.041597, - 0.045497, - 0.039701, - -0.0019127, - 0.067787, - -0.073614, - -0.0010102, - 0.017477, - -0.0031165, - -0.077001, - 0.0084175, - -0.052685, - -0.031091, - -0.010292, - 0.10537, - 0.056526, - 0.020827, - -0.016036, - 0.020566, - -0.011819, - -0.038734, - 0.048674, - 0.023012, - 0.00025933, - -0.0061885, - 0.027749, - -0.050082, - 0.039175, - -0.071113, - 0.010991, - -0.022151, - -0.027175, - -0.0033496, - 0.0371, - 0.0029722, - 0.042309, - 0.011652, - -0.02699, - -0.0095256, - -0.072546, - 0.048778, - -0.0023428, - 0.015181, - -0.02908, - 0.028939, - -0.010509, - -0.065098, - 0.029204, - 0.048495, - -0.041356, - -0.058639, - 0.046679, - -0.058769, - -0.0084449, - 0.0088353, - -0.022331, - -0.051283, - -0.060115, - 0.038668, - 0.018894, - 0.088143, - -0.010137, - 0.065892, - -0.0038229, - 0.038488, - -0.05161, - -0.09549, - -0.027601, - 0.046026, - 0.039978, - 0.03026, - -0.046321, - 0.014692, - -0.017041, - 0.015672, - -0.042328, - -0.021448, - 0.060778, - 0.011156, - -0.023419, - 0.043871, - 0.026742, - -0.062618, - -0.027148, - 0.02735, - -0.056278, - -0.0018062, - 0.048502, - -0.035204, - 0.037485, - -0.063043, - 0.052023, - -0.0022468, - 0.10243, - 0.003738, - -0.0020485, - 0.03879, - 0.014278, - 0.055272, - 0.08592, - 0.0081075, - 0.0175, - 0.02188, - -0.098145, - -0.037918, - 0.027498, - 0.063776, - -0.010333, - -0.039716, - 0.13832, - 0.025083, - 0.052613, - 0.039077, - -0.060516, - 0.0062541, - -0.068795, - 0.0012918, - 0.032607, - 0.0054676, - 0.066587, - 0.034982, - -0.0043888, - 0.0048012, - -0.045757, - 0.039361, - -0.043612, - 0.0080264, - 0.022947, - 0.064873, - 0.014545, - 0.053024, - -0.039424, - 0.0026288, - -0.000099453, - -0.041042, - 0.013329, - -0.043489, - -0.023446, - 0.042221, - 0.050108, - 0.020837, - 0.014058, - -0.02147, - -0.013571, - -0.015441, - 0.037597, - 0.053761, - -0.042934, - 0.000041991, - 0.045058, - 0.028693, - 0.013916, - -0.000054576, - -0.013163, - 0.020468, - -0.018415, - 0.0080326, - 0.01539, - 0.025084, - -0.022695, - 0.0037285, - -0.023984, - 0.01096, - -0.021818, - -0.03483, - -0.04905, - -0.010701, - 0.065193, - 0.021287, - 0.0030448, - 0.011098, - 0.069854, - -0.034802, - 0.0184, - -0.01061, - 0.0054585, - -0.020524, - -0.00045684, - 0.018329, - 0.0066726, - -0.0092551, - -0.033697, - -0.041629, - 0.048455, - -0.021578, - 0.11643, - 0.035046, - -0.016236, - -0.011837, - 0.04124, - 0.029431, - 0.042285, - 0.060063, - 0.011807, - 0.035846, - 0.045716, - 0.023854, - 0.041946, - -0.10357, - 0.075225, - -0.065446, - -0.026653, - -0.0026558, - -0.056546, - -0.00038065, - -0.044359, - -0.08245, - -0.036548, - 0.069186, - -0.024772, - 0.0038873, - -0.0063048, - -0.032567, - -0.0082166, - 0.012724, - -0.0088647, - 0.036588, - -0.012017, - 0.013166, - 0.017059, - -0.0018898, - 0.062061, - -0.038069, - 0.0075991, - -0.034171, - 0.022392, - -0.021247, - -0.041858, - -0.013997, - -0.039757, - -0.0065067, - 0.0031648, - 0.020801, - -0.054673, - 0.012208, - -0.044388, - -0.002957, - -0.002921, - 0.025181, - -0.043279, - 0.042487, - 0.024807, - 0.015436, - 0.049635, - -0.068078, - -0.00024604, - 0.0089814, - 0.039806, - -0.052475, - -0.020054, - -0.051353, - -0.031808, - -0.000006475, - -0.031535, - -0.043025, - 0.025111, - -0.02003, - 0.015089, - 0.031683, - -0.025019, - -0.034788, - -0.02305, - 0.01947, - -0.021772, - 0.0021334, - -0.01887, - 0.010584, - -0.013377, - -0.12024, - 0.044846, - -0.10051, - -0.017011, - 0.081013, - -0.056976, - 0.011417, - 0.0017883, - 0.095252, - 0.0028637, - 0.03098, - 0.020485, - 0.0012852, - -0.044382, - -0.011048, - 0.090407, - -0.058487, - -0.0064285, - -0.049717, - -0.0062992, - 0.0037105, - 0.0056371, - 0.022601, - -0.013385, - -0.042122, - 0.037738, - 0.0522, - 0.054722, - 0.0065123, - 0.00265 - ], - "spirituality": [ - 0.025791, - -0.064218, - 0.04109, - -0.036759, - -0.016972, - 0.00391, - -0.050626, - -0.044692, - 0.040602, - -0.011889, - -0.012271, - -0.03346, - 0.013838, - -0.057836, - -0.010307, - -0.043446, - 0.08409, - 0.029527, - -0.00020097, - -0.0017949, - -0.063079, - 0.017431, - 0.037829, - 0.03474, - 0.0013611, - -0.02409, - 0.011781, - 0.050891, - 0.024056, - 0.038605, - 0.0084664, - 0.0011499, - -0.030855, - -0.036126, - 0.0061364, - 0.040178, - 0.035688, - -0.013127, - 0.010082, - 0.028251, - -0.010212, - -0.081109, - -0.014859, - 0.012873, - -0.0018718, - -0.046123, - 0.0056538, - -0.012805, - -0.021237, - -0.034079, - -0.012651, - -0.020174, - -0.016939, - 0.049659, - -0.026265, - 0.036711, - -0.022368, - -0.020606, - -0.0068061, - 0.022428, - 0.0068043, - -0.056806, - 0.021598, - -0.024268, - 0.022874, - -0.020525, - 0.023626, - -0.010448, - 0.01146, - -0.037467, - 0.036281, - 0.014083, - -0.023497, - -0.036292, - -0.018649, - 0.028231, - -0.013741, - 0.00070995, - 0.047605, - 0.042197, - -0.01298, - -0.010273, - -0.02589, - 0.029273, - -0.041264, - -0.016272, - 0.027135, - -0.012343, - 0.034442, - -0.012915, - -0.010735, - 0.000079534, - -0.06842, - 0.020233, - 0.028995, - 0.036487, - 0.027838, - -0.0072632, - -0.023529, - -0.013034, - -0.0010003, - 0.050379, - 0.052833, - -0.054875, - -0.023662, - -0.035126, - 0.014505, - 0.045773, - -0.002241, - -0.0031893, - 0.0023682, - 0.074479, - 0.02705, - -0.062943, - -0.027005, - 0.040288, - 0.015865, - 0.018711, - -0.04559, - -0.0094216, - -0.008305, - -0.0095121, - -0.012841, - -0.081264, - 0.057142, - 0.0096687, - -0.042631, - -0.055998, - 0.071549, - 0.083032, - -0.0043283, - -0.067871, - -0.0010321, - -0.024783, - -0.015834, - 0.019853, - 0.014711, - 0.0085174, - 0.013693, - -0.0045278, - 0.035245, - -0.03594, - -0.0085031, - 0.058717, - -0.0086691, - -0.021742, - -0.036514, - -0.0029501, - -0.021645, - 0.020773, - 0.052259, - 0.051403, - -0.0067077, - -0.026665, - -0.0047032, - 0.040432, - -0.047284, - 0.0018528, - 0.04947, - -0.000511, - 0.030628, - 0.04888, - -0.10218, - 0.011605, - 0.0042916, - 0.026492, - 0.0022483, - 0.040725, - -0.0019975, - 0.029005, - 0.018999, - -0.033592, - 0.0034754, - 0.0047479, - 0.05122, - 0.055061, - 0.031907, - 0.053518, - -0.011425, - -0.023551, - -0.0023241, - 0.0035195, - 0.020027, - -0.013954, - 0.016311, - -0.053566, - 0.032354, - 0.085767, - -0.035116, - -0.051396, - 0.015326, - 0.070426, - -0.016748, - 0.030852, - 0.020097, - -0.018377, - -0.0208, - 0.0015561, - 0.012298, - -0.011379, - -0.1137, - -0.018391, - 0.0018561, - -0.03076, - 0.028168, - 0.028655, - 0.0458, - -0.01292, - 0.05714, - 0.005983, - 0.063532, - -0.0012061, - 0.0078259, - -0.0053305, - 0.041493, - 0.068075, - 0.034806, - 0.0017332, - -0.033663, - -0.004443, - -0.075794, - -0.0072726, - -0.068725, - 0.059512, - 0.02803, - -0.0089818, - 0.011643, - 0.048641, - -0.015515, - -0.033726, - 0.032568, - -0.015551, - -0.074497, - -0.03818, - 0.031045, - 0.054298, - -0.01082, - 0.022494, - 0.030794, - -0.021025, - 0.015563, - -0.0039111, - 0.0024719, - -0.027573, - -0.0043086, - 0.019594, - -0.0017455, - -0.060084, - 0.033139, - -0.024033, - 0.064571, - -0.063118, - -0.063657, - -0.054819, - 0.038929, - -0.028335, - -0.03194, - 0.026554, - 0.035215, - -0.023771, - 0.018013, - -0.014989, - 0.017499, - 0.0037528, - 0.022545, - -0.013719, - 0.052246, - 0.0092541, - 0.042744, - 0.011604, - 0.034216, - 0.037862, - -0.058953, - -0.031279, - 0.010227, - -0.027572, - 0.032022, - -0.0066127, - -0.0403, - 0.045488, - 0.073723, - -0.016481, - -0.0089169, - -0.025843, - -0.00053729, - -0.032245, - 0.013467, - 0.045764, - -0.074155, - 0.0036658, - 0.048207, - -0.002486, - 0.0023935, - -0.0158, - -0.015965, - 0.069143, - 0.080864, - 0.026493, - 0.00034716, - 0.050103 - ], - "guesthouse": [ - 0.014014, - -0.075601, - 0.006385, - -0.031481, - -0.01385, - -0.0099648, - -0.010132, - -0.08833, - -0.04077, - 0.040427, - 0.047421, - -0.06878, - 0.016945, - -0.036296, - -0.047094, - 0.0033761, - 0.083128, - -0.033945, - 0.027398, - 0.0037058, - 0.049038, - 0.011899, - 0.029746, - 0.028062, - 0.0359, - 0.052118, - 0.0096656, - 0.06489, - -0.047394, - 0.016604, - -0.019994, - -0.0072651, - 0.0010897, - 0.017051, - 0.028108, - 0.016386, - 0.017815, - 0.03953, - 0.009603, - -0.028444, - 0.024274, - -0.0512, - -0.057362, - 0.056185, - 0.037786, - 0.0039912, - -0.014349, - -0.0046162, - -0.050704, - 0.014028, - 0.063077, - 0.011231, - -0.042427, - 0.021097, - -0.068215, - -0.017515, - 0.024344, - -0.036429, - -0.072387, - -0.04963, - 0.046248, - 0.027977, - 0.084974, - -0.0028463, - 0.048003, - 0.061615, - 0.040368, - -0.037902, - -0.079117, - 0.033464, - 0.063517, - -0.011375, - 0.043679, - -0.022428, - 0.017959, - -0.02964, - 0.0090824, - -0.050835, - -0.0017938, - 0.014068, - 0.026538, - 0.0049982, - 0.092077, - -0.02056, - -0.0551, - -0.031769, - 0.00053991, - -0.034082, - 0.021111, - -0.0085856, - -0.052781, - 0.046964, - -0.083421, - -0.014167, - 0.030734, - 0.092569, - 0.030729, - 0.048059, - 0.018518, - -0.0096098, - 0.053572, - 0.094436, - 0.029373, - -0.050139, - 0.024074, - -0.089368, - 0.033632, - 0.010361, - -0.054712, - -0.062967, - -0.036866, - 0.10922, - 0.058802, - 0.050676, - -0.0062459, - -0.022768, - 0.034594, - 0.010016, - 0.0046983, - 0.054189, - 0.011229, - 0.0061257, - 0.035316, - -0.00083811, - 0.041704, - 0.014123, - 0.040955, - -0.062808, - 0.029212, - 0.030875, - 0.028385, - 0.01386, - -0.01718, - -0.068254, - -0.091164, - -0.0032358, - -0.03143, - 0.047446, - -0.00293, - -0.041499, - -0.0061741, - 0.0098685, - 0.039439, - -0.0090042, - 0.049114, - -0.038517, - 0.00099629, - 0.035825, - -0.01047, - -0.0036904, - -0.0080826, - 0.055424, - 0.028673, - -0.04711, - 0.014798, - 0.0099494, - -0.013242, - 0.0033324, - 0.03467, - 0.033456, - 0.03581, - 0.014316, - -0.015318, - 0.033638, - 0.015046, - 0.017853, - 0.028783, - -0.031219, - 0.021402, - 0.11135, - 0.0056861, - -0.0057262, - -0.0056205, - 0.0094232, - -0.0050617, - -0.0033233, - -0.04547, - 0.020749, - -0.070677, - 0.046396, - 0.0079949, - 0.076693, - 0.020662, - -0.013081, - -0.038019, - 0.015307, - 0.03289, - 0.079696, - 0.0059879, - -0.062758, - 0.021721, - 0.034531, - 0.0066671, - 0.076453, - -0.000085909, - 0.034228, - 0.046164, - 0.045309, - 0.038807, - 0.023011, - -0.11805, - 0.072534, - -0.088432, - -0.049659, - 0.014252, - -0.031278, - -0.06005, - 0.027438, - -0.030799, - -0.05694, - 0.087339, - -0.012348, - 0.021831, - -0.011212, - -0.048959, - 0.019148, - -0.078078, - 0.11271, - 0.07792, - -0.013388, - 0.019639, - -0.022282, - 0.022104, - 0.084824, - -0.006265, - 0.0175, - -0.012612, - 0.020749, - -0.011272, - -0.022903, - 0.032397, - -0.03981, - -0.0027453, - 0.0077946, - -0.025934, - -0.039847, - -0.0061443, - 0.0042493, - 0.030681, - 0.020838, - 0.094847, - -0.0036744, - 0.09152, - -0.011099, - 0.036359, - 0.05683, - 0.03373, - 0.0078518, - 0.031505, - 0.022232, - -0.024742, - -0.0092422, - -0.050947, - -0.040782, - -0.0034307, - -0.036754, - -0.060856, - 0.027774, - -0.053665, - 0.12407, - 0.0050231, - -0.075255, - 0.042095, - -0.012232, - 0.071832, - -0.05893, - -0.036887, - -0.029479, - -0.013704, - 0.021919, - -0.085836, - 0.064116, - -0.085884, - -0.017645, - 0.0058394, - -0.024435, - 0.073382, - 0.01436, - 0.037271, - -0.019689, - 0.01264, - 0.0010282, - -0.0066924, - 0.043494, - -0.0011899, - 0.026524, - 0.046875, - -0.044619, - -0.01028, - 0.030919, - -0.048487, - 0.070027, - 0.045077, - 0.04203, - -0.027149, - 0.056848, - 0.056607, - 0.079406, - 0.0013782, - -0.032825 - ], - "animal": [ - -0.075608, - -0.026717, - 0.035956, - 0.0020669, - -0.031829, - -0.031369, - -0.022977, - -0.10501, - 0.13166, - -0.013292, - 0.01679, - -0.045314, - 0.059959, - -0.038361, - 0.021389, - -0.048135, - 0.090877, - -0.011174, - 0.038259, - 0.027077, - 0.11435, - -0.080581, - 0.070451, - 0.082887, - 0.03168, - -0.015437, - -0.036029, - 0.10195, - 0.06981, - 0.057633, - -0.018264, - -0.037826, - 0.044218, - -0.02523, - 0.03851, - 0.025725, - 0.057265, - -0.067587, - 0.072228, - 0.054144, - 0.055716, - -0.11086, - -0.012679, - 0.042762, - 0.028618, - -0.03151, - 0.02844, - -0.038638, - 0.0020204, - -0.072867, - 0.030227, - 0.10463, - 0.03941, - -0.052402, - 0.000073114, - -0.029167, - 0.023764, - 0.0093134, - -0.047527, - 0.018498, - -0.0048715, - -0.079424, - 0.15689, - 0.0071876, - 0.088756, - 0.024046, - 0.024999, - -0.0042028, - -0.0045754, - -0.055306, - -0.010199, - 0.014169, - 0.072234, - -0.034461, - -0.052167, - 0.056455, - -0.098438, - -0.0087505, - -0.01675, - -0.047509, - 0.015406, - 0.036233, - -0.0011384, - 0.027533, - 0.034918, - -0.070753, - -0.058118, - 0.0080125, - 0.054473, - 0.0065806, - -0.035414, - 0.082546, - -0.1036, - 0.0013127, - 0.0057473, - 0.069959, - 0.10937, - 0.077733, - 0.092571, - 0.0071679, - -0.073532, - -0.0060016, - 0.0060543, - 0.060398, - 0.007802, - -0.15266, - -0.072598, - -0.01836, - 0.021539, - 0.017612, - -0.03551, - 0.12594, - 0.061597, - -0.017062, - 0.037429, - 0.03386, - -0.021185, - -0.0051649, - -0.066565, - -0.013706, - 0.007191, - 0.11524, - -0.023774, - -0.023474, - 0.086635, - 0.09403, - -0.0013984, - -0.096285, - 0.012204, - 0.081663, - 0.018794, - 0.0014888, - -0.005627, - 0.032821, - 0.03996, - -0.0062244, - -0.036077, - 0.046674, - 0.05389, - 0.042167, - -0.11708, - 0.0019975, - 0.051349, - 0.031724, - 0.022128, - -0.016389, - 0.011319, - 0.036087, - -0.022823, - -0.093912, - 0.08964, - 0.13906, - -0.030295, - -0.094945, - 0.025383, - -0.039416, - -0.058439, - -0.053712, - -0.0086167, - -0.036652, - -0.0046647, - -0.048652, - -0.074872, - 0.039107, - 0.089556, - -0.020675, - -0.031499, - 0.036934, - -0.050688, - -0.0036668, - -0.0014436, - -0.045205, - 0.0085646, - 0.033497, - -0.022402, - 0.072955, - 0.0091132, - 0.0089175, - -0.0091794, - -0.05045, - -0.01354, - 0.00038121, - -0.012098, - 0.0052319, - -0.035783, - -0.099663, - 0.086624, - 0.087226, - -0.038869, - -0.025277, - 0.056852, - 0.044778, - 0.074398, - -0.068334, - -0.04345, - 0.029832, - -0.046199, - 0.06013, - 0.015976, - 0.04494, - -0.16483, - 0.079951, - 0.010575, - -0.070614, - 0.020318, - 0.021356, - -0.073771, - -0.069145, - 0.028423, - -0.0074867, - 0.1525, - -0.00078069, - -0.036483, - 0.017415, - 0.0319, - 0.0093391, - 0.099679, - -0.0022834, - 0.041798, - 0.024033, - -0.078113, - 0.012812, - -0.013199, - 0.097061, - -0.025498, - -0.019104, - 0.013837, - 0.07469, - 0.025906, - -0.012304, - -0.067792, - -0.060565, - -0.12597, - -0.072822, - 0.022533, - -0.010252, - 0.027048, - 0.012173, - -0.058493, - -0.063822, - 0.010452, - 0.073072, - -0.059985, - 0.05578, - -0.065102, - 0.063342, - 0.0081306, - -0.019404, - -0.0054102, - 0.035606, - -0.036809, - -0.032662, - 0.029699, - -0.05927, - -0.010635, - -0.013478, - 0.0565, - 0.015093, - -0.0071817, - -0.0056828, - -0.022557, - -0.039979, - 0.0076243, - -0.039511, - 0.048623, - -0.0085422, - 0.045859, - 0.037459, - 0.046433, - 0.024244, - -0.060437, - 0.098702, - -0.089879, - -0.05538, - 0.018685, - -0.094569, - -0.06924, - 0.030022, - -0.018759, - -0.064208, - 0.13716, - 0.043793, - 0.018159, - -0.032785, - 0.0083391, - 0.00027778, - -0.030374, - -0.043006, - 0.0016123, - 0.010286, - -0.013229, - 0.061485, - -0.095299, - -0.091636, - -0.078619, - 0.04618, - -0.032761, - 0.063682, - -0.035979, - 0.014092 - ], - "father": [ - -0.067306, - -0.0088365, - 0.0703, - -0.023661, - 0.039561, - -0.040648, - 0.01194, - -0.11445, - 0.035908, - 0.023931, - -0.017277, - 0.075153, - -0.0066831, - 0.0451, - -0.044502, - 0.01515, - 0.072179, - -0.042092, - -0.00047873, - 0.078848, - 0.001866, - 0.042808, - -0.0035054, - 0.042576, - 0.00076451, - 0.017508, - 0.010232, - 0.022423, - 0.048238, - 0.010644, - 0.019671, - -0.029518, - 0.015371, - -0.0015602, - -0.064146, - 0.020099, - -0.09351, - -0.055693, - 0.037929, - -0.026462, - -0.033925, - -0.052153, - 0.04234, - -0.040071, - -0.033422, - 0.075962, - -0.0015508, - -0.0091185, - -0.0039775, - 0.033789, - 0.044114, - -0.00028647, - -0.008783, - 0.033726, - 0.024214, - -0.06926, - 0.0023719, - -0.058906, - -0.1018, - 0.00024575, - -0.03088, - 0.015643, - 0.086989, - 0.020453, - -0.025697, - 0.0095403, - 0.014377, - -0.060183, - -0.010469, - -0.080925, - 0.0064573, - -0.042913, - 0.093307, - -0.030173, - 0.00039108, - 0.025515, - 0.012881, - 0.004944, - 0.051615, - -0.023413, - 0.042791, - 0.054349, - -0.024584, - 0.006979, - -0.042737, - -0.058315, - 0.029054, - 0.053181, - -0.048516, - 0.01732, - -0.0024732, - -0.021202, - -0.14586, - -0.051846, - 0.01926, - 0.13283, - 0.0012109, - -0.014112, - 0.0015565, - -0.018503, - 0.054801, - -0.067076, - 0.012668, - -0.063371, - -0.10191, - -0.11943, - 0.0041177, - 0.03334, - -0.016079, - 0.044177, - -0.040614, - 0.070419, - 0.043835, - -0.022622, - 0.016397, - 0.04026, - -0.028061, - 0.024987, - 0.036169, - -0.0039692, - -0.016419, - 0.007741, - 0.037071, - -0.052982, - 0.074901, - -0.029812, - 0.016414, - -0.094425, - 0.028675, - 0.085933, - -0.028143, - 0.015672, - -0.041892, - 0.014234, - -0.047203, - 0.011887, - 0.017901, - 0.083743, - 0.070772, - -0.0076486, - 0.01431, - -0.007082, - -0.021161, - 0.029028, - -0.0094931, - 0.014395, - 0.009288, - 0.042243, - -0.026933, - -0.057882, - 0.00551, - 0.01646, - -0.0065835, - -0.093464, - 0.01065, - -0.036244, - 0.052467, - 0.0068492, - 0.10139, - -0.045987, - 0.024703, - -0.0047564, - -0.023131, - -0.018655, - -0.025436, - -0.02379, - -0.021031, - 0.044228, - 0.010621, - 0.031192, - -0.0081878, - -0.019944, - -0.066821, - 0.006073, - 0.050076, - 0.0050567, - 0.073913, - 0.031639, - -0.028083, - -0.031129, - 0.050093, - -0.10472, - 0.017313, - -0.016511, - 0.0094357, - -0.10406, - -0.044899, - 0.099177, - 0.046311, - -0.020347, - -0.022258, - 0.13028, - -0.085743, - 0.011859, - -0.012618, - -0.021312, - 0.043046, - 0.073833, - 0.015782, - 0.023154, - -0.11918, - 0.060076, - -0.024611, - -0.092596, - 0.021414, - 0.033199, - -0.0027911, - -0.028057, - -0.023246, - -0.076231, - 0.12551, - 0.019706, - 0.058938, - -0.020161, - -0.087389, - 0.041272, - -0.038606, - -0.063692, - -0.0090348, - -0.0092359, - 0.085968, - -0.0039611, - 0.028334, - 0.12804, - 0.078032, - -0.009566, - -0.0067428, - 0.085915, - -0.040667, - -0.07411, - 0.017901, - -0.034763, - -0.069043, - -0.0039992, - 0.015402, - 0.087576, - 0.00013396, - 0.014073, - -0.0087487, - -0.0064683, - 0.068768, - -0.028878, - 0.019528, - 0.034853, - -0.00977, - -0.026582, - -0.030859, - -0.098433, - 0.0098912, - 0.043341, - 0.044577, - -0.052097, - 0.023852, - 0.065226, - 0.10984, - -0.041019, - -0.01882, - 0.014413, - -0.0040775, - -0.021101, - -0.06944, - -0.030899, - 0.0032078, - 0.039989, - 0.043791, - 0.0070276, - -0.046897, - 0.040805, - 0.045577, - -0.054375, - -0.0030979, - 0.08124, - -0.097189, - -0.032071, - 0.049059, - -0.016338, - 0.008866, - -0.012689, - 0.041666, - 0.049447, - 0.083249, - 0.0013672, - 0.014288, - -0.068469, - 0.013097, - 0.09843, - -0.033283, - -0.1058, - 0.0015645, - 0.033637, - 0.020985, - 0.026803, - -0.026936, - -0.01227, - -0.048002, - -0.01717, - 0.072319, - 0.0093331, - -0.010556, - -0.034686 - ], - "fairy-tale": [ - -0.031727, - 0.0040529, - 0.025129, - 0.011297, - -0.059013, - -0.075294, - -0.031693, - -0.065725, - 0.0083423, - 0.011404, - 0.039373, - -0.024916, - 0.0055339, - -0.015544, - 0.0082937, - -0.01918, - 0.08687, - -0.037153, - 0.056137, - 0.015583, - -0.065003, - -0.037966, - -0.025912, - 0.056876, - 0.037178, - 0.0071201, - 0.045389, - 0.031246, - 0.074006, - -0.014753, - -0.042192, - -0.046549, - -0.019393, - -0.08364, - 0.021256, - 0.008635, - -0.0065409, - -0.0057619, - 0.0048436, - -0.054432, - 0.046172, - -0.13206, - 0.0040123, - 0.016888, - 0.033265, - 0.0023232, - -0.033366, - 0.057717, - -0.020416, - -0.048568, - -0.0067332, - 0.036615, - -0.062665, - 0.0015841, - 0.015718, - -0.027684, - 0.030386, - -0.059899, - -0.023299, - -0.025109, - -0.018103, - -0.030328, - 0.087465, - 0.0043973, - 0.10066, - 0.056074, - -0.040714, - 0.039925, - 0.000077751, - 0.008534, - -0.020878, - -0.011198, - 0.028865, - -0.0079203, - -0.0049893, - 0.048563, - -0.013547, - -0.04231, - -0.037067, - 0.013264, - 0.0098202, - 0.021574, - 0.056711, - 0.072489, - -0.040257, - 0.016942, - 0.0086867, - 0.0028049, - -0.021591, - -0.025567, - -0.035581, - -0.041982, - -0.12128, - -0.014027, - 0.035066, - 0.074585, - 0.011899, - 0.0078838, - -0.017641, - 0.10246, - 0.015212, - 0.046142, - -0.10062, - -0.0018763, - -0.056638, - -0.087892, - 0.028472, - 0.010646, - -0.021164, - 0.0017676, - -0.001882, - 0.053018, - -0.00054862, - -0.0096785, - -0.035564, - 0.036032, - -0.024426, - 0.0036647, - -0.023701, - -0.036999, - -0.019113, - -0.014553, - -0.046661, - -0.043056, - 0.091821, - 0.040222, - 0.063647, - -0.0043574, - -0.067354, - 0.074836, - -0.042303, - -0.015442, - -0.040028, - -0.014349, - -0.050387, - 0.018617, - 0.026901, - 0.043662, - -0.011652, - -0.019592, - -0.0088968, - -0.061357, - 0.055447, - 0.024998, - 0.013228, - -0.016601, - 0.01743, - -0.013034, - -0.034039, - -0.085824, - 0.055479, - 0.096298, - -0.032096, - 0.035896, - -0.034981, - -0.008125, - -0.0014404, - 0.0028412, - 0.013361, - -0.011485, - 0.033367, - 0.025194, - -0.058124, - 0.011077, - 0.0082493, - -0.00022729, - 0.0054673, - 0.063205, - 0.040796, - -0.035104, - -0.029047, - 0.0071669, - -0.051832, - -0.030853, - 0.051795, - 0.043771, - 0.013505, - 0.031905, - 0.005273, - 0.016021, - 0.025366, - 0.045321, - -0.025693, - -0.068547, - -0.02908, - 0.010826, - 0.017912, - 0.10403, - 0.001278, - 0.030695, - 0.070857, - 0.098587, - 0.068757, - -0.040522, - -0.025671, - 0.046979, - 0.0099579, - 0.01175, - 0.025698, - 0.015447, - -0.12763, - 0.049306, - -0.017868, - -0.063592, - 0.044882, - 0.058973, - -0.0018411, - 0.018456, - -0.0017672, - -0.014374, - 0.12702, - -0.010879, - -0.014593, - 0.02822, - 0.045808, - -0.01231, - 0.03315, - 0.014592, - -0.025018, - -0.047375, - 0.029072, - -0.012058, - 0.024572, - 0.065861, - 0.020493, - -0.071345, - 0.076405, - 0.064926, - 0.040651, - 0.0083152, - 0.01829, - -0.088516, - -0.052201, - 0.031351, - 0.06745, - 0.0044698, - -0.031746, - -0.076513, - 0.034132, - 0.012505, - 0.076274, - 0.021878, - 0.0039149, - 0.0081411, - -0.09093, - 0.055151, - -0.032257, - -0.013802, - 0.0056293, - 0.081192, - 0.012683, - -0.058016, - 0.0098947, - 0.018886, - -0.036092, - 0.13047, - -0.02194, - -0.010701, - 0.014843, - 0.0025861, - 0.083135, - -0.013537, - 0.0099799, - -0.067658, - -0.021574, - -0.017452, - -0.0045145, - 0.018364, - 0.083513, - -0.0084528, - -0.015233, - 0.062919, - -0.072934, - -0.010175, - 0.031848, - -0.083133, - -0.0036315, - -0.022755, - -0.0045695, - 0.011513, - 0.14347, - -0.10382, - 0.03863, - -0.014658, - -0.0074265, - 0.037583, - 0.070135, - 0.0017267, - -0.048706, - -0.022273, - -0.036077, - 0.020757, - 0.05187, - -0.0171, - -0.023839, - -0.0057349, - 0.1148, - 0.075098, - 0.028381, - -0.01811 - ], - "environment": [ - -0.025207, - -0.013987, - 0.011425, - -0.0017908, - 0.021997, - 0.00027235, - 0.018224, - -0.070022, - 0.035383, - -0.0017331, - -0.0071563, - -0.0427, - -0.035608, - 0.037725, - 0.02173, - -0.0021224, - 0.05978, - 0.064914, - 0.048686, - 0.028341, - -0.019528, - -0.012761, - 0.039798, - 0.037439, - -0.022319, - -0.0015422, - -0.015544, - 0.032711, - -0.012872, - 0.019226, - 0.0027081, - 0.026522, - 0.0027084, - -0.051588, - 0.032634, - 0.030337, - 0.021643, - -0.044692, - 0.0075645, - -0.024363, - 0.0052489, - -0.089837, - -0.0080141, - 0.0041488, - -0.024258, - -0.021174, - -0.022212, - 0.0065703, - -0.012279, - 0.0017249, - -0.03361, - 0.024658, - 0.041097, - -0.0015287, - -0.041391, - 0.018547, - -0.0031882, - 0.015911, - -0.0044218, - 0.012696, - 0.022916, - -0.016, - 0.067667, - -0.015784, - 0.060245, - 0.019687, - 0.038903, - -0.020553, - 0.03454, - 0.026118, - 0.069523, - 0.0092049, - 0.00032158, - 0.031864, - 0.0062776, - 0.0036074, - 0.015026, - 0.0028181, - -0.023451, - -0.032311, - 0.037292, - 0.02653, - 0.0053542, - 0.056121, - 0.02167, - -0.0043607, - -0.024551, - -0.024388, - 0.012955, - -0.0020328, - 0.03056, - 0.021973, - -0.062525, - 0.018582, - -0.0074076, - 0.047817, - 0.039996, - -0.0092577, - 0.076152, - -0.0086229, - 0.0039896, - -0.022717, - 0.029509, - 0.011088, - -0.0013136, - -0.04677, - -0.0036074, - -0.012553, - 0.0083537, - -0.015801, - -0.051818, - 0.10038, - 0.051034, - 0.010455, - 0.0033065, - -0.010768, - -0.019557, - 0.0089639, - -0.04816, - -0.018257, - -0.016209, - -0.023849, - 0.0057142, - -0.0081576, - 0.045506, - 0.0048329, - -0.0072832, - -0.067273, - 0.029293, - 0.048789, - 0.025692, - -0.021817, - 0.030514, - 0.0016538, - -0.035489, - 0.00057908, - 0.026624, - 0.011439, - -0.0051828, - 0.037183, - -0.029872, - 0.00056689, - 0.01559, - -0.011281, - -0.017582, - 0.035932, - 0.014527, - 0.0011252, - 0.011066, - 0.002794, - 0.04342, - 0.031616, - 0.018868, - -0.024499, - 0.013598, - 0.032024, - -0.003515, - 0.045011, - 0.035631, - -0.059172, - 0.040073, - -0.013998, - -0.080557, - -0.0032755, - 0.030438, - 0.009965, - 0.0093998, - -0.011559, - 0.016069, - 0.032333, - -0.040597, - 0.001769, - -0.017918, - -0.023546, - -0.039771, - 0.022564, - -0.022856, - 0.063694, - -0.03229, - -0.00072814, - -0.02176, - 0.050033, - -0.010801, - -0.0041119, - 0.0037914, - -0.026858, - -0.0056946, - 0.058636, - -0.017065, - 0.0086453, - -0.015867, - 0.058982, - 0.0042664, - -0.0017107, - -0.012823, - -0.035871, - 0.013625, - 0.0092228, - -0.012975, - -0.020588, - -0.12223, - -0.0002843, - 0.031513, - -0.055457, - -0.015946, - 0.025778, - -0.016642, - 0.0051297, - 0.015171, - 0.016467, - 0.052217, - -0.01758, - 0.023389, - -0.022879, - 0.017335, - 0.025097, - 0.0099181, - -0.014021, - -0.009383, - -0.03882, - 0.011575, - 0.016721, - -0.015903, - 0.068391, - -0.030986, - 0.016051, - -0.015438, - 0.042963, - -0.02548, - 0.012453, - -0.035894, - -0.027438, - -0.05623, - -0.02884, - 0.051985, - 0.01564, - 0.028415, - 0.032327, - 0.018789, - -0.053593, - 0.014813, - 0.042163, - 0.032889, - 0.036079, - 0.0058926, - 0.051265, - -0.015944, - -0.042638, - 0.028105, - 0.0031474, - 0.044856, - -0.019157, - -0.022787, - -0.032435, - -0.019098, - 0.021482, - -0.0039877, - 0.042574, - 0.00018015, - -0.013517, - -0.015804, - -0.0055857, - -0.026762, - -0.045646, - -0.004073, - -0.012527, - 0.017965, - 0.0047239, - 0.0095758, - 0.00050747, - -0.059846, - 0.047737, - -0.07878, - -0.036807, - 0.033144, - -0.031796, - 0.0022085, - 0.052974, - -0.0081824, - -0.0016318, - 0.052208, - 0.0013973, - -0.0062965, - 0.0053249, - -0.021432, - 0.0060597, - -0.0029993, - -0.0080159, - 0.024001, - 0.0036279, - -0.012656, - 0.068019, - -0.010678, - -0.00299, - 0.011783, - 0.0058011, - 0.015092, - 0.050121, - -0.016419, - -0.004879 - ], - "nonmilitary": [ - -0.00083167, - -0.019227, - 0.031588, - -0.0041786, - -0.02469, - -0.0027779, - -0.0052355, - -0.072301, - 0.0040066, - 0.093385, - -0.028937, - -0.025353, - -0.017463, - 0.04472, - -0.01862, - 0.049404, - 0.068915, - -0.0045238, - 0.027591, - 0.0010132, - 0.024177, - -0.044164, - 0.003483, - 0.024418, - 0.00061709, - 0.025346, - 0.0048588, - 0.0048784, - -0.0035927, - -0.016602, - 0.0078875, - -0.073624, - 0.017623, - -0.027184, - 0.090748, - 0.045599, - -0.0093772, - 0.044952, - 0.059795, - 0.051347, - -0.04842, - -0.079434, - 0.028816, - -0.0044686, - -0.0046341, - -0.045113, - -0.020938, - -0.0071487, - -0.022027, - -0.022568, - -0.042283, - 0.048098, - 0.0031283, - -0.039341, - 0.0158, - -0.0047072, - -0.03543, - 0.020965, - 0.026303, - 0.022044, - -0.026728, - -0.014776, - 0.1021, - -0.019899, - 0.021295, - -0.072676, - 0.042257, - -0.085242, - 0.010307, - 0.031713, - 0.042146, - -0.0038986, - 0.081252, - -0.033692, - 0.0059951, - -0.049878, - 0.0028787, - -0.011777, - 0.043527, - -0.0022794, - 0.025255, - 0.013119, - -0.017203, - 0.0064453, - -0.051489, - 0.011227, - -0.0052821, - 0.0010512, - -0.005424, - 0.044878, - -0.021832, - 0.00041324, - -0.073764, - 0.010925, - -0.02971, - 0.036041, - -0.073674, - -0.062124, - 0.0072519, - 0.041194, - 0.0595, - -0.017707, - 0.030279, - -0.070728, - 0.018387, - -0.077424, - 0.027525, - 0.057796, - -0.045189, - -0.063288, - -0.039703, - 0.062267, - 0.0059315, - 0.023409, - 0.0047526, - -0.017278, - 0.036326, - 0.022046, - -0.056893, - 0.052974, - -0.062658, - 0.0044573, - -0.065473, - -0.047974, - 0.072288, - 0.056025, - 0.0069196, - -0.044084, - 0.0088423, - 0.0087865, - -0.045841, - 0.045527, - -0.0084365, - 0.07203, - 0.010244, - 0.0044047, - 0.014822, - 0.020679, - 0.0082156, - 0.037228, - 0.0057073, - -0.053742, - -0.023043, - 0.018323, - -0.024402, - 0.030157, - -0.011465, - 0.021971, - 0.060697, - 0.0079921, - 0.039085, - 0.11428, - -0.029755, - -0.062914, - -0.005894, - 0.02829, - -0.067069, - -0.0106, - 0.024605, - 0.0077586, - 0.044526, - 0.021929, - 0.0065829, - 0.0073033, - -0.033898, - 0.016542, - 0.0026276, - -0.0044487, - 0.015986, - -0.056711, - 0.061008, - -0.012701, - 0.0039058, - 0.017357, - -0.037179, - 0.033271, - -0.017298, - 0.035688, - -0.045327, - 0.014835, - -0.0017189, - 0.022192, - -0.029392, - -0.007279, - 0.013155, - -0.079357, - 0.0025199, - 0.099186, - 0.014036, - -0.013897, - 0.013672, - 0.027219, - 0.077471, - -0.026496, - -0.01294, - 0.029302, - -0.031838, - 0.019849, - -0.03772, - -0.013952, - -0.1077, - 0.046173, - -0.045649, - 0.042084, - -0.021192, - 0.0070485, - -0.0001511, - 0.04381, - 0.057941, - -0.0046123, - 0.106, - -0.017333, - 0.0023754, - 0.054749, - -0.0013914, - 0.060418, - -0.0079982, - -0.026524, - -0.020666, - -0.025545, - 0.0038299, - -0.0016171, - -0.032085, - 0.053147, - -0.007189, - 0.028746, - 0.01528, - 0.032065, - 0.01286, - -0.039827, - 0.026251, - -0.020653, - -0.054335, - -0.04034, - 0.034112, - 0.0018918, - -0.028401, - -0.0017366, - -0.0034408, - -0.020732, - -0.0053721, - 0.022655, - 0.033001, - -0.010379, - -0.12041, - 0.02015, - -0.0023782, - -0.0091189, - 0.014086, - -0.009509, - -0.031636, - 0.072368, - 0.048962, - -0.022879, - -0.031599, - 0.00023328, - 0.025747, - 0.052395, - -0.0049577, - -0.051662, - 0.010347, - -0.064801, - -0.026556, - 0.018764, - 0.0011272, - 0.021454, - -0.029881, - 0.012915, - -0.0058557, - 0.052104, - 0.015465, - 0.058545, - -0.087424, - -0.029779, - -0.0020091, - -0.08113, - -0.017941, - -0.041249, - 0.024099, - -0.039416, - 0.10516, - -0.010723, - 0.0056287, - 0.042544, - 0.0213, - -0.015229, - -0.038152, - -0.010176, - -0.043664, - -0.01637, - -0.031469, - 0.026755, - -0.0053212, - 0.0051401, - 0.0021188, - 0.0076577, - 0.017747, - -0.052696, - -0.0036521, - -0.010967 - ], - "lore": [ - -0.074152, - -0.1324, - 0.061836, - 0.063631, - -0.12208, - -0.093047, - -0.051954, - -0.070234, - 0.060312, - -0.025235, - -0.045346, - -0.15223, - -0.0051096, - 0.037858, - -0.0048174, - 0.027508, - 0.16967, - -0.060319, - 0.014738, - 0.10512, - -0.030413, - 0.035361, - 0.03843, - 0.1265, - 0.059381, - -0.1965, - -0.032544, - 0.013006, - -0.050636, - 0.028136, - 0.014049, - -0.054633, - 0.053651, - -0.0017555, - 0.15068, - 0.029317, - 0.0047927, - 0.023063, - 0.017287, - -0.094041, - 0.015706, - -0.15367, - 0.065053, - 0.074789, - 0.034427, - 0.029847, - 0.08589, - 0.021651, - -0.01876, - -0.069235, - -0.059854, - 0.13105, - -0.032476, - -0.038767, - 0.020896, - 0.14236, - -0.016441, - -0.049689, - -0.0083834, - -0.041088, - -0.0033504, - -0.089449, - 0.087755, - -0.038627, - 0.031763, - -0.016901, - -0.071793, - 0.19495, - 0.062167, - -0.066557, - 0.043242, - -0.04531, - 0.055995, - 0.031104, - 0.041867, - 0.057937, - -0.007945, - 0.030791, - -0.006327, - -0.1385, - -0.075963, - 0.074993, - 0.021019, - 0.01636, - -0.10686, - -0.066525, - -0.00070044, - -0.019669, - -0.003297, - 0.025066, - 0.0061754, - 0.022709, - -0.096729, - -0.056864, - 0.042289, - 0.1001, - 0.020481, - 0.04015, - 0.0078014, - 0.043028, - -0.0371, - -0.01398, - 0.019522, - 0.0078547, - -0.016147, - -0.21202, - -0.020718, - -0.029437, - 0.01904, - 0.089357, - -0.11329, - 0.087555, - 0.06641, - -0.10993, - -0.017462, - 0.094737, - -0.068504, - 0.084585, - -0.075917, - -0.03375, - 0.017635, - 0.03882, - -0.053678, - -0.077059, - 0.1128, - 0.10688, - -0.07123, - 0.021238, - 0.039239, - 0.18439, - 0.062643, - 0.0051605, - -0.067723, - 0.0054393, - 0.088664, - -0.070623, - 0.042671, - 0.068203, - 0.036926, - -0.10441, - 0.040292, - -0.057314, - -0.013435, - 0.072583, - -0.01308, - -0.060296, - 0.014656, - 0.038283, - -0.046122, - -0.10104, - 0.059584, - -0.0041151, - -0.032081, - 0.068016, - 0.09022, - 0.035998, - 0.0070681, - 0.040523, - 0.020035, - 0.062654, - 0.021953, - 0.09803, - -0.10277, - 0.069951, - 0.015519, - -0.10077, - 0.12567, - -0.092099, - 0.012547, - -0.020841, - -0.0043975, - -0.036684, - -0.10491, - -0.0063371, - 0.098634, - 0.07025, - 0.13767, - 0.079032, - -0.061597, - -0.022781, - -0.099231, - 0.056042, - -0.052784, - -0.095439, - -0.037868, - 0.033775, - 0.061344, - 0.16768, - 0.12158, - 0.028082, - -0.019494, - 0.14116, - 0.049108, - 0.059712, - -0.045097, - 0.067714, - -0.016844, - 0.071045, - -0.022309, - 0.034733, - -0.17036, - -0.04986, - -0.12597, - -0.065606, - 0.054199, - 0.070213, - 0.0073996, - 0.0081783, - 0.049253, - 0.03867, - 0.13157, - 0.047798, - -0.12527, - -0.019248, - 0.047562, - -0.021996, - -0.067006, - -0.022388, - -0.037269, - 0.022368, - 0.075599, - -0.12622, - 0.070327, - 0.079432, - 0.052814, - -0.049189, - 0.10367, - 0.031723, - -0.089456, - -0.0088495, - -0.081471, - -0.045011, - -0.1409, - 0.116, - -0.11086, - 0.0042202, - -0.085632, - 0.14026, - 0.013966, - -0.00026708, - 0.071015, - 0.0067907, - -0.014407, - -0.061134, - 0.03751, - 0.043063, - -0.098059, - 0.02481, - -0.058483, - -0.030955, - 0.11858, - -0.029159, - -0.07143, - 0.063897, - -0.032153, - 0.065681, - -0.090505, - 0.088117, - 0.1247, - 0.085281, - 0.13509, - 0.0033966, - -0.028337, - -0.030215, - 0.057367, - -0.0097823, - 0.041241, - 0.08647, - -0.029464, - -0.030597, - 0.056977, - 0.091884, - -0.13281, - -0.039628, - -0.010774, - -0.095575, - -0.085565, - -0.096231, - -0.048637, - -0.065398, - 0.072351, - 0.01615, - 0.025505, - -0.078865, - -0.019877, - -0.028418, - -0.025291, - 0.043409, - -0.1136, - -0.0087583, - 0.10919, - 0.058885, - 0.062955, - -0.066552, - 0.04729, - -0.033538, - 0.11293, - 0.039681, - 0.015879, - -0.021641 - ], - "teaching": [ - 0.018196, - -0.069258, - -0.0055455, - -0.04103, - 0.028228, - -0.032294, - -0.0073698, - -0.10187, - 0.0070682, - -0.047742, - -0.0078529, - -0.070012, - 0.027885, - -0.018697, - -0.014698, - 0.010009, - 0.03877, - 0.03625, - 0.03433, - 0.0074886, - -0.032378, - 0.054422, - -0.0082282, - 0.010332, - -0.022925, - 0.020419, - -0.0027122, - 0.019481, - 0.039523, - -0.0030494, - 0.0074776, - 0.029428, - -0.013577, - -0.061602, - 0.034938, - 0.028263, - 0.0036744, - -0.070012, - 0.012532, - 0.018788, - 0.017054, - -0.093408, - 0.053089, - 0.0043648, - 0.032706, - -0.04848, - 0.016782, - -0.058819, - -0.013406, - 0.027515, - -0.034318, - 0.037418, - 0.023117, - 0.06443, - -0.069106, - 0.054405, - -0.036757, - -0.0016355, - -0.016871, - -0.0039879, - -0.0011996, - 0.022388, - 0.10957, - 0.090131, - -0.014686, - -0.0034947, - -0.0052655, - 0.0017213, - 0.012326, - -0.053657, - 0.010011, - -0.033481, - 0.078126, - 0.027526, - 0.039779, - -0.050757, - 0.054976, - -0.010244, - 0.029617, - 0.0061668, - -0.021152, - -0.018781, - -0.02234, - 0.031541, - -0.026931, - 0.048415, - 0.0261, - -0.0038238, - -0.016027, - 0.01684, - -0.0061513, - 0.037405, - -0.090196, - 0.0037352, - 0.037102, - 0.016056, - 0.059302, - 0.024288, - 0.017962, - 0.0078711, - 0.027452, - 0.035727, - 0.052454, - 0.0045481, - 0.011205, - -0.093754, - 0.047994, - 0.017908, - -0.050633, - -0.010293, - -0.028053, - 0.052228, - 0.038807, - 0.074762, - -0.027184, - -0.0060884, - -0.047622, - 0.011247, - -0.033291, - -0.034813, - -0.021744, - -0.041363, - -0.020288, - -0.014536, - 0.045484, - 0.013772, - -0.041601, - -0.11937, - -0.031672, - 0.12774, - 0.011932, - 0.0019579, - -0.036613, - 0.0016192, - -0.030358, - -0.027292, - -0.0027053, - 0.010502, - 0.039931, - -0.060513, - -0.030654, - -0.0025125, - 0.016654, - 0.033197, - -0.039751, - -0.066076, - -0.018456, - 0.012886, - -0.010465, - -0.0087759, - 0.049616, - 0.037494, - -0.013229, - -0.12244, - -0.0024194, - 0.024761, - 0.0108, - 0.052108, - -0.015494, - -0.018202, - 0.069323, - 0.067088, - -0.05911, - -0.022445, - 0.0058209, - -0.02959, - 0.060119, - -0.025652, - 0.009854, - -0.026092, - 0.05838, - -0.043715, - -0.0023774, - -0.0057349, - 0.017635, - 0.056978, - 0.0027427, - 0.0051376, - -0.053764, - -0.025722, - -0.0021904, - 0.0016241, - 0.024269, - 0.030612, - -0.0033845, - -0.06966, - 0.05, - 0.064398, - -0.029021, - -0.0090486, - -0.013717, - 0.077821, - 0.00040211, - -0.046591, - -0.00054143, - 0.023499, - 0.043047, - 0.038222, - 0.040933, - -0.020717, - -0.15317, - 0.080958, - 0.017853, - 0.014767, - -0.04469, - 0.030094, - 0.0047406, - -0.012131, - 0.023696, - -0.0019394, - 0.086413, - -0.023375, - -0.020409, - 0.038772, - -0.044203, - 0.017302, - 0.027114, - -0.072239, - -0.014222, - -0.0097338, - -0.037351, - 0.0014395, - 0.060311, - 0.095218, - -0.029722, - -0.0040611, - 0.0013362, - 0.09393, - 0.0088748, - -0.04454, - 0.051195, - -0.030856, - -0.058269, - -0.026846, - 0.045922, - 0.050974, - 0.011178, - 0.0072761, - -0.082442, - -0.0019194, - 0.062055, - -0.012861, - 0.057842, - 0.014007, - -0.088376, - 0.066433, - -0.018527, - -0.052349, - 0.0051913, - 0.049082, - 0.050249, - 0.023343, - -0.012112, - -0.052634, - 0.025928, - -0.030168, - 0.02326, - 0.055851, - 0.010243, - 0.010204, - 0.022318, - -0.023304, - 0.066966, - 0.065165, - 0.009901, - 0.041322, - 0.072429, - 0.022094, - 0.0056809, - 0.0030624, - 0.048364, - 0.038205, - -0.10335, - -0.025727, - -0.032114, - -0.019753, - -0.01152, - 0.0076813, - 0.012957, - 0.0062359, - 0.058234, - 0.010982, - -0.012898, - -0.063847, - 0.073609, - -0.03186, - 0.017419, - -0.010183, - -0.030571, - 0.047867, - -0.024644, - 0.011398, - -0.0015759, - -0.045425, - 0.018541, - 0.074263, - 0.01997, - 0.023478, - 0.05404, - 0.011045 - ], - "Beaux-Arts": [ - 0.08116, - 0.023311, - 0.050932, - 0.0095866, - 0.035508, - -0.057698, - -0.058629, - -0.085039, - 0.0038307, - -0.02938, - 0.060135, - -0.060317, - 0.0076254, - 0.10082, - -0.059898, - 0.01627, - 0.026295, - 0.028835, - 0.0073692, - -0.015432, - -0.037192, - 0.0211, - -0.014923, - 0.067459, - -0.030451, - 0.015443, - -0.0038185, - 0.0089322, - 0.097976, - 0.061944, - -0.084874, - -0.043445, - 0.0013428, - 0.0056685, - 0.051861, - 0.082883, - 0.04025, - 0.04589, - 0.001474, - 0.0054405, - -0.028079, - -0.049771, - -0.012109, - 0.015257, - -0.10134, - 0.018131, - 0.026775, - 0.0074836, - -0.081715, - -0.037629, - -0.048198, - 0.0057158, - -0.047052, - 0.030037, - -0.025928, - -0.089782, - 0.01702, - 0.027801, - -0.023177, - 0.020483, - 0.044644, - 0.018979, - 0.0203, - 0.0027944, - 0.046445, - 0.016489, - -0.10406, - 0.0071625, - -0.0050941, - 0.098544, - 0.010931, - 0.056344, - 0.04763, - 0.024867, - 0.061597, - -0.0026503, - -0.046171, - -0.060026, - -0.057106, - 0.075678, - -0.040487, - -0.021741, - 0.026175, - -0.028485, - -0.003812, - -0.038162, - -0.03952, - -0.067222, - 0.014705, - 0.082659, - 0.0022382, - -0.084946, - -0.08462, - 0.0097722, - 0.028924, - 0.17178, - -0.036843, - -0.026127, - 0.035825, - 0.081965, - 0.069341, - 0.058009, - -0.011289, - 0.03165, - -0.0051845, - -0.085979, - -0.0044071, - 0.023597, - -0.026043, - 0.06463, - 0.021111, - 0.084093, - 0.012527, - 0.0036723, - -0.042514, - -0.074033, - -0.032348, - 0.02771, - 0.0054873, - 0.0096013, - 0.0041134, - -0.067444, - -0.034488, - 0.043732, - 0.047248, - 0.025216, - -0.010622, - -0.0040201, - -0.012486, - 0.095593, - -0.063964, - 0.055197, - -0.0081921, - 0.08991, - 0.0027015, - 0.029102, - -0.073697, - 0.0072507, - 0.025949, - -0.14659, - 0.092485, - 0.014065, - 0.0029223, - 0.083638, - 0.0011037, - -0.00086194, - -0.010741, - 0.029835, - 0.036466, - -0.079187, - -0.032126, - 0.026322, - -0.03051, - 0.056316, - 0.010037, - 0.083038, - 0.07821, - 0.020934, - -0.039559, - -0.039712, - -0.0043934, - -0.017808, - -0.065703, - -0.020269, - 0.013983, - 0.024299, - -0.018561, - -0.051951, - -0.05901, - 0.042697, - 0.075017, - -0.016524, - 0.007788, - -0.0046544, - 0.045221, - 0.0037122, - -0.029621, - -0.036669, - -0.052722, - -0.036221, - -0.010117, - -0.047493, - 0.060381, - 0.013813, - 0.036178, - 0.05412, - -0.0002564, - 0.089614, - -0.027348, - 0.0039586, - 0.036014, - 0.095968, - -0.007845, - -0.028408, - -0.0031771, - -0.018375, - 0.095766, - 0.052697, - 0.078116, - -0.05828, - -0.063502, - 0.0046929, - 0.020477, - 0.030952, - 0.014611, - 0.0088854, - 0.027292, - -0.078801, - -0.11046, - -0.025791, - 0.14119, - 0.002245, - -0.0083834, - 0.04382, - 0.083867, - 0.06049, - 0.069002, - 0.042682, - -0.039191, - -0.023342, - -0.038318, - -0.036748, - 0.021713, - 0.075204, - 0.0047683, - 0.10584, - 0.050399, - 0.090756, - 0.010527, - -0.049431, - -0.01721, - -0.030814, - -0.014866, - 0.019457, - -0.035368, - -0.025925, - -0.022278, - -0.0038373, - 0.014042, - 0.091829, - -0.055794, - 0.053011, - 0.020102, - -0.00098848, - 0.064549, - 0.038896, - -0.01389, - 0.012549, - 0.020167, - 0.0022659, - -0.063922, - 0.018066, - -0.018919, - -0.028872, - -0.0065223, - 0.048193, - -0.11056, - -0.029392, - -0.022244, - 0.035179, - -0.021478, - -0.0098101, - 0.032539, - -0.03363, - 0.022458, - 0.028793, - 0.05304, - -0.042419, - -0.0511, - 0.015643, - -0.012859, - 0.09313, - -0.014022, - 0.057988, - 0.012863, - -0.022106, - 0.040854, - 0.0063207, - 0.036661, - -0.012996, - 0.085634, - 0.0075799, - -0.033063, - -0.037062, - 0.0028067, - -0.012863, - 0.0038102, - 0.012375, - -0.028884, - 0.017406, - -0.025061, - -0.0053598, - 0.024979, - 0.030377, - 0.001956, - 0.016885, - -0.0095412, - 0.052536, - -0.041619, - -0.026496 - ], - "ride": [ - -0.10461, - 0.03894, - 0.046849, - 0.20763, - -0.071735, - -0.044462, - -0.04835, - -0.11957, - 0.031973, - 0.030024, - -0.021667, - -0.053399, - 0.012394, - 0.022907, - -0.10815, - -0.084185, - 0.14181, - 0.074051, - 0.066034, - -0.024643, - 0.061104, - -0.083828, - -0.07215, - 0.031602, - 0.095409, - 0.11586, - 0.033384, - -0.047983, - -0.12565, - 0.0304, - -0.11976, - 0.13772, - -0.064836, - 0.022075, - -0.047278, - -0.068974, - 0.034551, - -0.023413, - 0.038561, - -0.10719, - 0.031094, - -0.1074, - -0.028761, - 0.069562, - 0.062817, - 0.049524, - 0.028981, - 0.041961, - -0.060631, - 0.013583, - 0.098703, - 0.082831, - -0.053059, - 0.029852, - -0.22269, - -0.12042, - 0.067077, - -0.061971, - -0.11027, - 0.0098348, - 0.033319, - 0.028609, - 0.21547, - 0.14051, - 0.0017606, - 0.051599, - -0.0029713, - -0.078137, - -0.017397, - 0.01686, - 0.029929, - -0.0753, - 0.081939, - 0.024176, - -0.030782, - 0.061286, - -0.054086, - -0.023053, - -0.13854, - 0.0029652, - -0.019901, - -0.087652, - 0.056516, - 0.085629, - 0.022152, - -0.091343, - 0.036602, - -0.088234, - -0.028787, - -0.062811, - 0.079801, - 0.0043131, - -0.15718, - -0.020094, - 0.03582, - 0.01681, - 0.074961, - -0.0092179, - 0.040206, - -0.023908, - 0.059063, - -0.0018778, - 0.046826, - -0.079874, - -0.034405, - -0.15285, - -0.039048, - -0.11671, - 0.02823, - 0.11175, - 0.034608, - 0.057411, - 0.1266, - 0.0981, - 0.025171, - 0.021026, - -0.078769, - 0.093898, - -0.046905, - 0.12148, - 0.14056, - 0.13, - -0.088647, - 0.018263, - 0.051995, - 0.051167, - 0.078129, - -0.16051, - 0.02339, - 0.063055, - -0.051238, - 0.012059, - 0.065494, - 0.0027767, - -0.0027998, - -0.029831, - 0.007451, - 0.074977, - -0.038643, - 0.032902, - -0.087569, - -0.091986, - -0.049106, - -0.04515, - 0.015135, - 0.011027, - -0.00025098, - -0.015357, - -0.0035253, - -0.045022, - -0.018832, - 0.058817, - -0.096866, - -0.036362, - 0.10142, - -0.017451, - 0.0093738, - 0.030497, - -0.083394, - -0.098911, - 0.061597, - 0.027627, - -0.059864, - -0.028635, - -0.061002, - -0.024589, - 0.060629, - -0.031265, - -0.022594, - -0.011087, - 0.016681, - -0.036508, - 0.041063, - -0.031611, - 0.085078, - 0.050904, - 0.0038453, - -0.01672, - -0.036563, - -0.016004, - -0.019815, - -0.018997, - -0.03824, - -0.088324, - -0.0027133, - -0.10182, - -0.034583, - 0.11121, - 0.06522, - -0.020042, - 0.065623, - -0.02306, - -0.0428, - 0.059023, - -0.010641, - -0.0049138, - -0.026824, - -0.091697, - 0.068909, - -0.054465, - -0.19878, - 0.16238, - 0.10062, - -0.05543, - 0.10786, - -0.061206, - -0.11937, - -0.026367, - 0.12355, - -0.0598, - 0.14949, - -0.031805, - 0.079466, - -0.023548, - 0.070635, - 0.008379, - -0.027743, - -0.016968, - 0.022461, - -0.061279, - 0.058048, - -0.12226, - 0.037918, - 0.14217, - 0.049518, - -0.019698, - -0.028907, - 0.1013, - -0.041785, - 0.013257, - -0.012161, - -0.13933, - -0.072701, - 0.050971, - -0.021216, - 0.063159, - -0.013048, - 0.036924, - 0.0067801, - 0.0414, - 0.16479, - 0.14862, - -0.049294, - -0.10733, - -0.10367, - 0.004275, - 0.10397, - -0.040439, - 0.013456, - 0.06857, - 0.1138, - 0.089583, - 0.0044763, - -0.0018991, - 0.005311, - 0.045362, - 0.020842, - 0.04881, - 0.043625, - 0.070842, - 0.10431, - 0.10208, - -0.054469, - -0.092056, - -0.06929, - -0.012375, - -0.0043392, - 0.015739, - 0.05886, - 0.067832, - -0.058479, - 0.1212, - -0.16117, - -0.094919, - -0.048485, - -0.028375, - 0.06037, - -0.0024077, - 0.046188, - -0.1104, - 0.05451, - -0.036502, - 0.044683, - -0.00085324, - -0.0044505, - -0.031757, - -0.0082831, - -0.0077327, - -0.0028704, - 0.049474, - 0.022511, - 0.0025599, - -0.027387, - -0.02258, - -0.056296, - -0.023581, - 0.084, - 0.10493, - -0.078924, - -0.12985 - ], - "resources": [ - 0.046216, - -0.076931, - -0.0080199, - 0.037711, - 0.025957, - 0.010807, - 0.0068193, - -0.059975, - 0.044346, - 0.013412, - 0.014125, - -0.019522, - -0.0076607, - 0.017598, - 0.017303, - -0.0060826, - 0.050297, - 0.015971, - 0.074941, - -0.020335, - -0.046821, - 0.025727, - -0.012984, - 0.07617, - -0.03744, - -0.0072845, - -0.049922, - -0.03281, - 0.051542, - 0.015771, - 0.017894, - -0.0067598, - -0.038966, - -0.029951, - 0.031712, - 0.010723, - -0.0058578, - -0.011963, - 0.022126, - -0.021606, - 0.011768, - -0.098459, - 0.036415, - 0.045589, - 0.0010732, - -0.084025, - 0.021688, - -0.0084222, - 0.0045601, - -0.055355, - -0.050304, - 0.0041775, - 0.022571, - 0.043752, - -0.078346, - 0.037095, - -0.017595, - 0.018043, - 0.0067314, - 0.024319, - 0.0088102, - -0.029999, - 0.14771, - 0.0076131, - 0.021835, - -0.047276, - -0.0096895, - -0.044147, - 0.0016548, - -0.028179, - 0.070163, - 0.0030192, - 0.039288, - 0.0016238, - 0.020216, - -0.015595, - 0.025921, - -0.037127, - 0.035457, - 0.0053268, - -0.075699, - -0.012976, - -0.0015435, - 0.066095, - 0.039149, - 0.039905, - -0.0026502, - -0.050061, - -0.02129, - -0.0035392, - -0.015874, - -0.015397, - -0.06501, - 0.033347, - -0.016961, - 0.05039, - 0.024342, - 0.014619, - 0.02889, - -0.0028022, - -0.042621, - -0.012169, - 0.0037717, - -0.022018, - 0.04808, - -0.039605, - 0.0041827, - -0.011276, - 0.001543, - -0.088203, - -0.021206, - 0.065485, - 0.051374, - -0.035217, - 0.0096828, - -0.0054422, - -0.04613, - -0.030787, - -0.046115, - 0.014982, - -0.012435, - -0.062392, - 0.0095327, - -0.057968, - 0.099087, - 0.0079322, - -0.089123, - -0.064505, - 0.015366, - 0.086115, - 0.0031733, - 0.021921, - 0.0014425, - 0.0099998, - 0.018534, - -0.04225, - -0.0093303, - 0.036299, - -0.0051875, - 0.069386, - -0.014826, - -0.040092, - 0.005354, - 0.012139, - -0.022777, - 0.026768, - 0.020977, - 0.0057179, - -0.011154, - -0.029431, - 0.027809, - 0.076652, - 0.0076204, - -0.096375, - 0.06859, - -0.018909, - 0.02144, - -0.004986, - 0.021947, - -0.017243, - 0.05339, - 0.019344, - 0.0033888, - 0.013731, - 0.0038381, - 0.059675, - 0.028405, - -0.023772, - -0.022022, - 0.0038313, - 0.035723, - -0.025519, - 0.018552, - -0.030409, - -0.060552, - 0.045903, - -0.067577, - 0.0048281, - -0.03503, - 0.055534, - 0.0044166, - 0.013948, - -0.022583, - -0.021344, - 0.015182, - -0.070665, - -0.0084794, - 0.089591, - -0.051909, - 0.022645, - 0.0074197, - 0.085016, - -0.013795, - 0.017455, - 0.0012795, - -0.023435, - 0.037032, - 0.029421, - -0.025656, - 0.026, - -0.11424, - -0.017209, - -0.013679, - 0.02703, - -0.02602, - 0.032192, - -0.052037, - -0.010311, - -0.020499, - -0.035405, - 0.067838, - 0.013164, - -0.00050908, - 0.0031294, - -0.00039848, - -0.0047141, - 0.040749, - 0.047476, - -0.032751, - 0.00941, - 0.0028617, - 0.0054752, - -0.02326, - 0.068051, - 0.13386, - -0.026514, - 0.0027462, - 0.059832, - -0.022901, - -0.012149, - -0.027621, - -0.0047164, - -0.10143, - 0.0037996, - 0.011937, - 0.0085133, - -0.027236, - 0.037506, - -0.054734, - -0.041898, - 0.0067643, - 0.034274, - 0.034165, - -0.032049, - -0.0080454, - -0.0010849, - -0.04122, - -0.026764, - 0.024053, - 0.0097846, - 0.0029047, - -0.0037543, - 0.025103, - -0.035449, - -0.012613, - 0.032632, - -0.025712, - 0.023475, - 0.028763, - 0.082056, - -0.052159, - -0.034435, - -0.018759, - -0.030274, - 0.040512, - -0.022656, - 0.0021326, - 0.0035955, - 0.024267, - 0.055108, - 0.017249, - 0.062844, - -0.098059, - -0.06688, - -0.012585, - 0.0092878, - -0.026919, - 0.022587, - -0.03738, - -0.016909, - 0.042084, - -0.016586, - 0.0148, - 0.0037376, - 0.0024363, - 0.023658, - -0.047473, - 0.052164, - -0.0156, - -0.013456, - -0.016808, - 0.038047, - -0.056049, - 0.011287, - 0.026604, - 0.045379, - 0.0035911, - -0.011432, - -0.015526, - 0.021213 - ], - "retro": [ - 0.027263, - 0.056838, - 0.023254, - 0.047844, - -0.027491, - -0.038728, - -0.0085572, - -0.071131, - 0.033988, - -0.052897, - -0.031747, - -0.089556, - -0.11742, - 0.056373, - -0.13352, - 0.0052594, - 0.1464, - 0.077019, - 0.072191, - 0.0019574, - 0.083939, - 0.015665, - -0.073392, - 0.1112, - 0.094062, - -0.049581, - 0.036006, - -0.0044597, - -0.070059, - 0.0018241, - 0.033686, - -0.08823, - 0.073168, - -0.027395, - 0.068074, - -0.011662, - 0.10797, - -0.032431, - 0.0098379, - -0.037451, - 0.025289, - -0.12267, - -0.063703, - -0.06184, - -0.0024513, - -0.024853, - 0.080442, - -0.047523, - 0.01332, - -0.13976, - -0.032555, - 0.041151, - -0.044362, - 0.031502, - -0.034994, - 0.069416, - 0.050967, - -0.063403, - -0.081534, - 0.10964, - 0.091353, - -0.024053, - 0.14824, - -0.050595, - 0.13881, - 0.0092736, - -0.0033293, - -0.0077904, - -0.018732, - 0.043268, - 0.026197, - 0.0017267, - 0.0090539, - -0.028695, - 0.097129, - 0.069133, - -0.024409, - -0.062507, - -0.01798, - -0.03305, - -0.011357, - -0.070802, - 0.05585, - 0.066481, - -0.099383, - 0.0036437, - -0.053683, - 0.037836, - 0.0039572, - -0.029953, - 0.10137, - -0.043782, - -0.10454, - -0.05408, - 0.15657, - 0.10041, - -0.0027205, - -0.0081156, - -0.057417, - 0.087759, - 0.078431, - 0.009005, - -0.090361, - -0.09934, - -0.019986, - -0.15856, - 0.0054013, - 0.021846, - -0.029595, - 0.07014, - 0.0096194, - 0.026805, - 0.040515, - 0.062935, - -0.017734, - -0.047, - -0.055759, - -0.0039077, - -0.058352, - 0.049092, - 0.014, - 0.066865, - 0.0083731, - -0.064738, - 0.1043, - 0.022802, - 0.057537, - 0.02097, - 0.10223, - 0.044767, - -0.05447, - 0.064915, - -0.010624, - -0.0041967, - -0.0064343, - -0.08425, - 0.028942, - -0.0073703, - -0.018749, - -0.16732, - 0.055574, - 0.020694, - 0.056798, - 0.084832, - -0.039055, - -0.028946, - 0.030695, - 0.025377, - -0.01128, - 0.07621, - 0.027533, - 0.048085, - 0.04876, - 0.0045674, - -0.03589, - 0.051155, - -0.021179, - 0.051245, - -0.039472, - -0.041992, - 0.029569, - 0.013773, - -0.090431, - -0.03697, - -0.071556, - 0.093781, - -0.0051895, - -0.084416, - 0.06719, - 0.026511, - 0.077191, - 0.0020555, - 0.050386, - -0.095012, - 0.065989, - 0.10653, - 0.01884, - -0.02573, - -0.060728, - -0.024777, - 0.017113, - -0.098649, - -0.0024723, - -0.15463, - 0.02188, - -0.052089, - 0.0014647, - 0.18935, - -0.033042, - -0.065535, - 0.054398, - 0.014774, - 0.011196, - 0.066227, - 0.042977, - -0.057028, - -0.0053944, - -0.025395, - 0.051025, - 0.078188, - -0.20951, - 0.1305, - -0.045628, - 0.00025191, - -0.071215, - -0.0018544, - -0.0055104, - -0.047648, - -0.035105, - -0.046961, - 0.12841, - -0.035118, - -0.012722, - 0.053597, - 0.15509, - 0.021734, - -0.10973, - 0.072498, - -0.13522, - -0.041027, - -0.039982, - 0.0042821, - 0.065391, - 0.11981, - -0.083272, - 0.054056, - 0.056556, - 0.080761, - -0.0054411, - 0.038203, - -0.065204, - 0.0038423, - -0.026522, - -0.034304, - 0.074611, - -0.11856, - -0.039681, - -0.0087766, - 0.11781, - -0.048211, - 0.13767, - 0.042035, - -0.01946, - -0.021258, - -0.070108, - 0.0035531, - -0.012108, - 0.00034608, - -0.048356, - -0.079634, - 0.096676, - -0.052788, - -0.040588, - 0.023785, - 0.069634, - -0.00016829, - -0.053836, - -0.016353, - 0.028256, - -0.022068, - 0.19418, - -0.02241, - 0.081331, - 0.01185, - 0.10904, - -0.001923, - 0.015036, - -0.071991, - 0.019331, - 0.072408, - 0.020677, - 0.10887, - -0.15153, - -0.012944, - -0.035038, - -0.04317, - 0.028957, - 0.12007, - -0.044973, - 0.033126, - 0.20981, - 0.11423, - 0.044517, - -0.014696, - -0.091433, - -0.03166, - -0.018247, - 0.010267, - 0.049717, - 0.0088549, - 0.027883, - -0.046428, - 0.032248, - 0.0046584, - 0.065911, - -0.080815, - 0.060022, - 0.082537, - 0.07091, - -0.079697 - ], - "activities": [ - 0.04397, - -0.033496, - 0.014115, - -0.0097129, - -0.003181, - -0.051656, - 0.01276, - -0.065687, - -0.0013954, - 0.0056208, - -0.0055533, - -0.061421, - 0.013469, - -0.020287, - 0.019441, - 0.03485, - 0.066368, - 0.013486, - 0.048173, - -0.018293, - -0.030408, - 0.0058209, - 0.022233, - 0.059315, - -0.034206, - 0.037099, - -0.046705, - -0.00094341, - 0.064362, - -0.036882, - 0.033296, - -0.061463, - 0.022024, - -0.057774, - 0.02976, - 0.039255, - 0.011372, - 0.010415, - 0.02637, - -0.026777, - 0.023003, - -0.073165, - -0.0017607, - -0.0049179, - 0.03177, - -0.005443, - 0.014066, - -0.0063281, - -0.02152, - -0.031927, - -0.040953, - 0.021089, - 0.0020124, - -0.0017613, - -0.068485, - 0.014316, - -0.050448, - -0.012736, - -0.031282, - 0.012723, - -0.026829, - 0.011769, - 0.13232, - -0.00090663, - 0.013903, - -0.062178, - 0.051231, - -0.0072159, - 0.0038192, - 0.002164, - 0.044416, - -0.030429, - 0.00035887, - 0.059313, - 0.067872, - -0.017491, - 0.039811, - -0.017797, - -0.013581, - -0.015632, - -0.00036638, - 0.0029664, - -0.062001, - 0.030556, - 0.030062, - -0.00066611, - -0.0023315, - 0.0043059, - 0.019477, - -0.0079345, - -0.018227, - 0.036624, - -0.066976, - 0.054714, - 0.009401, - 0.008238, - -0.0021855, - 0.010187, - 0.0085014, - 0.018677, - 0.01228, - -0.0056724, - -0.011415, - -0.0075844, - 0.043876, - -0.020544, - 0.0034327, - 0.0076623, - 0.00018555, - -0.02414, - -0.025617, - 0.014486, - 0.050932, - 0.019032, - 0.014278, - -0.040102, - -0.01519, - -0.032121, - -0.043452, - -0.007795, - -0.0045697, - 0.01501, - -0.0067167, - 0.011161, - 0.12239, - 0.0050591, - 0.0026943, - -0.035023, - 0.0010326, - 0.10681, - 0.032105, - 0.042992, - 0.021402, - 0.028198, - -0.018299, - -0.029813, - 0.0089488, - 0.021313, - 0.024469, - 0.021594, - -0.0026844, - 0.015961, - 0.004577, - 0.03822, - 0.035338, - 0.033328, - -0.0056864, - -0.024264, - 0.018105, - 0.031904, - 0.036119, - 0.059473, - -0.021983, - -0.10139, - 0.019736, - 0.016433, - -0.030484, - 0.044837, - 0.016149, - -0.0052295, - 0.053445, - 0.040203, - -0.013633, - 0.020708, - 0.025075, - 0.016777, - 0.00029922, - -0.041397, - -0.0041077, - -0.010524, - 0.073167, - 0.022266, - 0.021324, - 0.011055, - -0.027031, - 0.032105, - -0.037581, - 0.021342, - -0.037142, - 0.0018698, - 0.010711, - 0.012693, - 0.034822, - 0.032928, - -0.045878, - -0.051169, - 0.026018, - 0.072603, - 0.037831, - -0.033669, - 0.0074897, - 0.049293, - -0.058411, - -0.0011203, - 0.06039, - -0.013906, - 0.00016592, - 0.017987, - -0.015632, - -0.0032497, - -0.10769, - 0.060634, - -0.0042018, - -0.032525, - 0.0079631, - 0.043206, - -0.044569, - 0.018391, - 0.019348, - -0.030479, - 0.078425, - 0.033201, - 0.038784, - 0.0063795, - 0.038938, - -0.01316, - -0.021403, - 0.036368, - -0.060482, - -0.012046, - -0.039179, - -0.025861, - -0.012888, - 0.077521, - 0.015144, - 0.014025, - 0.023422, - 0.055406, - 0.00075188, - 0.0017232, - 0.014879, - -0.033536, - -0.040528, - -0.0045518, - 0.067563, - 0.029429, - 0.032663, - 0.0040691, - -0.026222, - 0.0042507, - -0.050257, - 0.0066173, - 0.023643, - -0.039788, - 0.010973, - 0.039642, - -0.057932, - -0.078611, - 0.013944, - 0.016811, - 0.028871, - -0.00015323, - 0.0095251, - 0.0073676, - -0.032541, - 0.0034048, - -0.0029012, - 0.027403, - -0.0068143, - 0.024612, - 0.027175, - 0.013221, - -0.04274, - -0.02614, - 0.0048979, - 0.0031345, - -0.010361, - -0.008251, - 0.018458, - 0.014857, - 0.025521, - 0.072204, - -0.093373, - -0.049781, - 0.032146, - -0.017522, - 0.030816, - -0.0078319, - -0.033632, - 0.0038695, - 0.03816, - -0.021528, - 0.040466, - 0.0016069, - 0.023902, - 0.014537, - -0.029032, - 0.010439, - -0.0093925, - 0.0014489, - 0.028696, - 0.06285, - -0.037662, - -0.018784, - -0.0064211, - 0.039494, - -0.034576, - 0.03133, - -0.043063, - 0.00043288 - ], - "smartphone": [ - -0.099621, - -0.0068955, - -0.023935, - 0.019442, - -0.0089213, - 0.03468, - -0.0099889, - -0.050686, - 0.048009, - 0.055774, - -0.0094924, - -0.021602, - -0.065625, - 0.010813, - -0.001097, - -0.0094184, - 0.083501, - -0.018507, - 0.052846, - -0.043324, - 0.024195, - -0.028415, - 0.0018103, - 0.038968, - 0.026951, - 0.011802, - -0.0021068, - 0.00013315, - 0.0069413, - -0.011229, - 0.01485, - -0.012828, - 0.073104, - -0.031075, - 0.023681, - 0.012297, - 0.0076703, - 0.012874, - -0.037975, - -0.0014819, - -0.00053473, - -0.090718, - -0.045825, - 0.024493, - 0.060305, - -0.00083445, - -0.055579, - -0.04299, - 0.019754, - -0.053103, - 0.049996, - -0.015794, - -0.027015, - -0.00592, - -0.03445, - 0.019208, - 0.012392, - 0.034192, - -0.019721, - 0.034301, - 0.029307, - -0.0038306, - 0.079778, - 0.067785, - 0.0055023, - -0.027671, - 0.07007, - 0.058401, - -0.072466, - 0.019691, - -0.054703, - -0.025828, - 0.012987, - -0.0027792, - -0.094882, - 0.033757, - 0.036158, - -0.0031819, - -0.021438, - -0.061285, - -0.0021277, - -0.013822, - -0.073632, - 0.06803, - -0.0013713, - -0.067155, - -0.0072724, - 0.0032219, - -0.022254, - 0.011116, - 0.042373, - 0.037516, - -0.071652, - 0.011955, - -0.011088, - 0.058453, - -0.0063257, - -0.10154, - 0.036896, - 0.032317, - 0.074565, - 0.040762, - 0.018023, - -0.024937, - -0.019648, - -0.064526, - -0.0080383, - 0.076319, - 0.024961, - -0.017654, - 0.010009, - 0.044622, - 0.070196, - 0.036258, - -0.033126, - -0.012198, - -0.027405, - 0.0033262, - -0.059533, - -0.028579, - -0.0074514, - 0.036178, - 0.01516, - -0.01641, - 0.034378, - 0.049465, - 0.035254, - -0.074817, - 0.027029, - 0.01853, - -0.015616, - -0.0065839, - -0.020126, - -0.079348, - 0.038301, - -0.022471, - 0.037863, - 0.010976, - -0.060071, - 0.011694, - 0.079611, - -0.0082686, - 0.028291, - -0.0038554, - -0.039738, - 0.0063781, - -0.028645, - 0.0070652, - 0.094907, - -0.014209, - 0.023094, - 0.060311, - 0.041921, - -0.042438, - -0.012631, - 0.030193, - -0.066935, - 0.026341, - -0.010487, - -0.024116, - 0.038719, - -0.0099003, - -0.019552, - 0.012161, - 0.024405, - -0.0097494, - 0.00057242, - -0.02938, - -0.0094051, - 0.044034, - -0.060148, - 0.10846, - -0.013778, - 0.056131, - -0.03419, - 0.035682, - -0.032802, - -0.049779, - -0.034009, - -0.014269, - 0.015956, - -0.063608, - 0.012887, - -0.03029, - -0.049376, - -0.017916, - -0.019231, - 0.055589, - -0.0077575, - 0.031447, - -0.015532, - 0.031083, - 0.014823, - -0.01755, - -0.0060879, - -0.023864, - -0.017671, - -0.0063494, - 0.044165, - 0.036904, - -0.1131, - 0.074041, - -0.044402, - 0.0099313, - -0.044849, - 0.070004, - 0.011574, - -0.029497, - -0.054991, - -0.025886, - 0.1035, - -0.018682, - -0.016503, - 0.015438, - -0.013648, - 0.010492, - -0.019996, - 0.037434, - 0.024446, - 0.01739, - 0.072125, - -0.0090476, - -0.025674, - 0.086877, - -0.025081, - -0.05417, - 0.011088, - 0.042604, - -0.0058621, - -0.046933, - 0.021716, - -0.053523, - -0.040268, - 0.0029051, - 0.041629, - 0.059359, - 0.011971, - -0.03765, - 0.032461, - -0.047956, - 0.025086, - 0.034606, - 0.0016387, - -0.01493, - -0.01258, - -0.04296, - -0.0029366, - 0.0072369, - -0.038212, - -0.030783, - -0.0023176, - -0.011426, - -0.12567, - -0.022793, - 0.034848, - -0.032554, - -0.036803, - -0.0071877, - -0.0066655, - 0.016149, - -0.0096693, - 0.077991, - -0.057294, - -0.0035161, - 0.025429, - -0.02508, - 0.0084014, - 0.041562, - 0.070089, - 0.069647, - -0.0082575, - 0.069664, - -0.10234, - -0.0079082, - -0.01897, - -0.01948, - 0.018339, - 0.016118, - 0.0078646, - -0.0065852, - 0.067536, - -0.015967, - -0.018109, - 0.031322, - -0.019365, - -0.08088, - -0.12468, - -0.027894, - 0.062734, - -0.039305, - -0.0068663, - -0.015507, - -0.082893, - -0.0078471, - 0.040959, - 0.025107, - -0.00014259, - 0.04056, - 0.010156, - 0.017139 - ], - "kennels": [ - 0.02774, - -0.067672, - 0.03954, - -0.15152, - -0.039744, - 0.019014, - -0.010146, - -0.03749, - -0.023129, - 0.029268, - -0.0025578, - -0.086029, - 0.01883, - -0.081788, - 0.029333, - -0.013326, - 0.077249, - 0.0032776, - 0.052708, - -0.010191, - 0.03992, - -0.10643, - 0.12566, - 0.0071107, - 0.10275, - 0.037329, - 0.045681, - 0.015769, - 0.066992, - -0.010252, - -0.061682, - 0.0021366, - -0.01738, - 0.033881, - -0.0069558, - -0.036985, - 0.0043483, - -0.055177, - 0.045511, - -0.045733, - 0.021587, - -0.045539, - 0.034639, - 0.092468, - 0.030945, - -0.07903, - 0.043074, - 0.02629, - -0.0085622, - 0.0082556, - -0.022696, - 0.054084, - 0.034633, - -0.1105, - -0.10586, - -0.021035, - -0.0627, - 0.074683, - -0.084031, - -0.015858, - 0.06609, - -0.086877, - 0.128, - 0.0086703, - 0.08938, - 0.069166, - -0.13429, - -0.11501, - -0.022259, - 0.0054282, - 0.043674, - -0.11139, - 0.045243, - -0.043228, - -0.0231, - 0.074053, - -0.10575, - -0.061477, - -0.086769, - -0.026705, - 0.016655, - -0.053597, - -0.014018, - 0.082862, - -0.0091967, - -0.053903, - -0.0045533, - -0.019223, - 0.0011054, - -0.010188, - -0.066686, - -0.0067279, - -0.074861, - 0.060723, - 0.056671, - 0.16406, - 0.0079449, - 0.12836, - 0.054982, - 0.060805, - -0.00071914, - 0.038333, - 0.046419, - 0.017244, - 0.13094, - -0.056218, - -0.00085822, - -0.042845, - 0.044232, - -0.012668, - -0.051716, - 0.053574, - 0.079318, - 0.053037, - -0.0070374, - -0.070047, - 0.019156, - -0.059063, - -0.00056195, - 0.013467, - -0.054816, - 0.072491, - 0.071337, - 0.003156, - 0.030706, - 0.05602, - -0.032289, - -0.017345, - -0.012398, - 0.082051, - 0.13387, - 0.098, - -0.01962, - 0.028907, - -0.022784, - -0.078683, - -0.087753, - -0.010927, - 0.0081492, - -0.024081, - -0.087857, - -0.0074307, - -0.054345, - -0.069773, - 0.043222, - 0.011424, - 0.095923, - -0.051002, - 0.0037207, - -0.1091, - -0.012768, - 0.080584, - -0.018311, - -0.00029681, - 0.013276, - 0.037848, - -0.045864, - -0.0036835, - 0.048015, - 0.014599, - 0.02043, - -0.086346, - 0.015437, - 0.027477, - 0.039077, - -0.050378, - -0.0087535, - 0.056761, - -0.089191, - -0.010328, - 0.025709, - 0.012319, - 0.040187, - 0.00035939, - 0.020552, - 0.011795, - -0.024877, - 0.042328, - -0.015813, - -0.006789, - 0.038429, - -0.089298, - -0.022109, - -0.018484, - -0.022308, - 0.062444, - 0.040784, - 0.15223, - -0.043619, - -0.033395, - 0.023128, - 0.080324, - -0.10353, - -0.060251, - -0.013073, - 0.056246, - -0.0046321, - 0.09957, - 0.051792, - 0.039932, - -0.11758, - 0.069061, - -0.00081637, - 0.0028012, - 0.039574, - -0.14831, - -0.038864, - -0.068975, - -0.058926, - -0.06487, - 0.085645, - -0.0040045, - -0.0021498, - 0.040591, - 0.022554, - -0.029395, - -0.035726, - 0.00034981, - 0.037338, - -0.060493, - 0.087483, - -0.019809, - 0.081557, - 0.038521, - 0.0018302, - -0.00084432, - -0.062104, - 0.033649, - -0.015458, - 0.011173, - -0.027861, - 0.0010265, - -0.0095806, - -0.080142, - -0.038449, - 0.0034338, - 0.12749, - 0.013, - -0.041975, - 0.039856, - -0.03326, - -0.0083193, - 0.11685, - -0.0082575, - 0.081246, - 0.10879, - 0.091334, - -0.03032, - 0.00611, - 0.068156, - -0.098562, - 0.018496, - -0.00082017, - 0.047238, - -0.072649, - 0.019404, - 0.065884, - -0.0085497, - -0.037677, - 0.02402, - -0.058149, - -0.074051, - 0.027168, - -0.059789, - 0.018085, - -0.031183, - 0.023792, - -0.014419, - -0.026196, - 0.0172, - -0.078218, - 0.038234, - -0.062766, - -0.014218, - 0.013676, - -0.0088325, - -0.0040118, - 0.032612, - -0.010621, - -0.0098477, - 0.043866, - 0.057895, - 0.10899, - 0.04955, - 0.000046325, - 0.048426, - -0.033578, - -0.0367, - -0.017215, - 0.063357, - 0.04391, - -0.038952, - -0.018728, - -0.070998, - -0.092296, - -0.023905, - -0.0010183, - 0.076817, - -0.066654, - 0.089493 - ], - "homes": [ - 0.065064, - -0.032069, - 0.030799, - -0.036048, - 0.0099368, - 0.011564, - -0.0015272, - -0.1053, - 0.025178, - 0.013358, - -0.055927, - -0.1258, - -0.055719, - 0.0016806, - -0.01221, - -0.0036786, - 0.14831, - 0.0074489, - 0.061368, - -0.025033, - 0.015391, - -0.033583, - 0.015322, - 0.06374, - 0.053534, - -0.054018, - 0.0013752, - 0.063614, - 0.089472, - 0.043102, - -0.10526, - -0.076115, - -0.028642, - 0.021397, - 0.083009, - 0.088642, - 0.053459, - 0.0086436, - -0.0048162, - 0.0095035, - -0.058448, - -0.086515, - -0.0048329, - -0.012179, - 0.005477, - -0.11704, - -0.048781, - 0.037167, - 0.016707, - 0.010099, - 0.0087825, - 0.025121, - -0.11223, - -0.0017003, - -0.14397, - -0.021077, - 0.0098382, - -0.023601, - -0.084977, - -0.1008, - 0.0012116, - -0.030573, - 0.19457, - -0.03611, - 0.13202, - 0.0017267, - -0.077081, - -0.11146, - -0.020315, - -0.053919, - 0.011387, - 0.042365, - 0.10368, - -0.067669, - -0.011441, - -0.045359, - 0.01528, - 0.007643, - -0.024107, - 0.065478, - 0.067097, - -0.04762, - 0.054414, - 0.069722, - 0.0074755, - 0.018865, - 0.026188, - -0.012685, - 0.035704, - -0.021, - -0.098607, - -0.075827, - -0.1284, - 0.087575, - -0.021184, - 0.1505, - -0.0078889, - 0.044462, - 0.057086, - -0.035851, - 0.065255, - 0.02244, - 0.01155, - -0.06965, - 0.1283, - -0.10946, - 0.021636, - 0.061222, - 0.084112, - 0.0024546, - 0.018902, - 0.15269, - 0.090865, - 0.10878, - -0.018607, - -0.056769, - 0.0074509, - -0.046664, - -0.043067, - -0.089299, - -0.1088, - -0.0024428, - 0.10142, - -0.12408, - 0.072343, - -0.038885, - -0.011816, - -0.037731, - 0.031017, - 0.035346, - 0.034173, - 0.092389, - 0.080753, - -0.032088, - 0.07636, - 0.037563, - 0.0193, - 0.02585, - -0.067898, - 0.00079984, - 0.013086, - -0.014572, - 0.060502, - 0.039013, - 0.094044, - -0.0046879, - 0.066468, - 0.0089884, - 0.0040988, - 0.000012798, - 0.044781, - 0.069954, - 0.011222, - 0.007537, - 0.04942, - -0.059755, - 0.04684, - 0.053928, - 0.034611, - -0.065414, - 0.048748, - -0.048142, - 0.10393, - 0.051158, - 0.027967, - 0.0052023, - 0.088642, - 0.0033514, - 0.046218, - -0.047993, - 0.057634, - -0.032509, - 0.067315, - 0.052558, - -0.036622, - 0.072604, - 0.040136, - 0.080114, - -0.067962, - 0.034516, - 0.10252, - -0.030443, - -0.028021, - -0.024452, - -0.066385, - 0.065576, - 0.024351, - 0.15099, - -0.000097045, - -0.12076, - 0.0023266, - 0.097477, - -0.042506, - 0.045661, - 0.013012, - 0.041857, - 0.063392, - 0.056992, - 0.038448, - 0.0034282, - -0.18219, - 0.15859, - -0.040185, - -0.013546, - 0.093256, - -0.096287, - 0.070452, - -0.049066, - -0.08454, - -0.030529, - 0.10146, - -0.033418, - 0.029917, - 0.0053065, - -0.11524, - -0.0075148, - -0.025843, - 0.020377, - 0.028169, - -0.028578, - 0.010336, - -0.054553, - 0.045477, - 0.090041, - -0.025245, - -0.086426, - -0.061109, - 0.070714, - -0.061179, - -0.034151, - -0.00019975, - 0.012804, - -0.10705, - -0.0049628, - 0.024678, - 0.093682, - 0.010217, - 0.051856, - 0.015692, - 0.043726, - -0.016135, - -0.079604, - 0.095007, - -0.060425, - -0.033563, - 0.084902, - -0.015498, - -0.028281, - 0.0064509, - -0.02479, - -0.015108, - -0.071464, - 0.01677, - -0.040778, - -0.044707, - 0.0025582, - -0.033697, - -0.0063054, - -0.038478, - -0.084726, - -0.02447, - -0.03586, - -0.068231, - -0.01043, - 0.059005, - 0.0083574, - 0.075042, - 0.0096625, - 0.026525, - -0.049018, - -0.095197, - 0.077736, - -0.14673, - -0.040907, - -0.017507, - -0.011821, - 0.081809, - 0.021795, - 0.050174, - 0.078942, - -0.0043191, - 0.017553, - -0.037741, - 0.039539, - 0.028929, - 0.086774, - -0.018812, - -0.045288, - -0.0040157, - 0.013544, - 0.04389, - 0.00040974, - -0.028012, - 0.050475, - 0.027329, - 0.040916, - 0.005994, - 0.040759, - 0.026483, - 0.063761 - ], - "automotive": [ - 0.0036984, - -0.066387, - 0.036423, - 0.047495, - -0.049294, - -0.0336, - -0.039177, - -0.076849, - 0.087602, - 0.0032486, - 0.021778, - -0.028711, - 0.0067634, - 0.07522, - 0.0052983, - 0.043126, - 0.049339, - 0.045727, - 0.040453, - 0.0030111, - 0.065607, - 0.028673, - 0.028744, - 0.079368, - 0.020566, - 0.0054085, - -0.0063552, - -0.019266, - 0.0081922, - 0.0052259, - 0.0085343, - -0.0014074, - 0.080269, - -0.055528, - 0.050955, - 0.023874, - -0.0078114, - 0.082895, - -0.0063296, - 0.040532, - -0.01008, - -0.11326, - 0.048328, - 0.012389, - -0.016174, - -0.0044905, - -0.084842, - -0.0023532, - -0.0082163, - -0.018272, - 0.000073289, - 0.0050581, - -0.029278, - 0.028849, - -0.0096562, - -0.094397, - -0.03966, - -0.004905, - -0.030994, - 0.0044656, - 0.0058015, - -0.0047069, - 0.10027, - 0.068272, - 0.078915, - 0.014046, - -0.032563, - -0.020603, - 0.050134, - 0.00048109, - 0.038284, - -0.014272, - 0.060327, - -0.0023198, - 0.0124, - -0.00039811, - -0.065763, - -0.0053459, - 0.039038, - -0.063334, - -0.025818, - 0.0074896, - -0.067383, - 0.013967, - -0.013559, - -0.03116, - -0.028262, - -0.0018739, - 0.013343, - -0.054657, - 0.014885, - 0.040652, - -0.10586, - -0.022903, - -0.015479, - 0.044291, - -0.012444, - 0.0063492, - -0.048413, - -0.013705, - 0.0014578, - 0.019841, - 0.0016195, - -0.0065498, - 0.049433, - -0.08587, - 0.025931, - 0.0015974, - 0.056022, - -0.018791, - 0.025254, - 0.11717, - 0.030569, - 0.030937, - 0.013957, - -0.079103, - -0.066668, - -0.024776, - -0.028972, - -0.033976, - -0.030888, - 0.038521, - -0.048985, - -0.033371, - 0.057194, - 0.0036758, - -0.066921, - -0.063721, - 0.031564, - 0.054685, - 0.024556, - 0.025024, - -0.0010508, - -0.06118, - 0.049198, - 0.025667, - 0.019258, - -0.00089947, - -0.013694, - 0.012617, - -0.014136, - 0.02648, - 0.015694, - 0.071349, - -0.033157, - -0.0054324, - -0.00086079, - -0.028735, - 0.031025, - -0.0267, - 0.090527, - 0.10811, - 0.029799, - -0.02458, - 0.00030561, - -0.0043175, - -0.033955, - 0.024041, - 0.019517, - 0.018611, - 0.0174, - -0.0252, - -0.046737, - -0.036338, - 0.050912, - -0.043716, - -0.032055, - -0.023223, - 0.032935, - -0.020844, - 0.041458, - -0.0075582, - -0.046804, - 0.099588, - 0.0087995, - 0.050058, - -0.011215, - 0.0053926, - -0.031284, - 0.024042, - 0.022284, - -0.032624, - -0.059617, - -0.035734, - 0.029442, - -0.019199, - -0.011108, - 0.11079, - -0.028089, - 0.01658, - -0.081228, - 0.046315, - 0.040496, - -0.0005642, - 0.029982, - 0.021702, - -0.026885, - -0.054133, - 0.008834, - -0.015712, - -0.13616, - -0.0086, - -0.020601, - -0.063048, - 0.024209, - 0.018005, - -0.020104, - 0.0051814, - 0.0026529, - 0.015521, - 0.12794, - 0.025396, - -0.0088502, - -0.0044093, - -0.021558, - 0.030269, - -0.02791, - -0.064387, - -0.017446, - -0.011497, - -0.035703, - -0.074031, - 0.015565, - 0.091685, - -0.050815, - -0.003092, - 0.00085665, - 0.081848, - -0.002201, - -0.0162, - 0.012727, - -0.029458, - -0.021388, - -0.0015924, - 0.043519, - -0.05793, - 0.0064665, - -0.0055826, - -0.013856, - -0.066943, - 0.030297, - -0.0032725, - -0.010846, - -0.00093578, - -0.074893, - -0.040313, - 0.042817, - -0.039547, - 0.06186, - -0.0069912, - 0.01677, - 0.04117, - -0.037104, - 0.017996, - -0.036615, - -0.0085605, - 0.029103, - 0.014446, - 0.020075, - -0.025907, - 0.035356, - -0.00079344, - -0.067941, - 0.016285, - 0.026186, - -0.0036867, - 0.046173, - 0.019573, - 0.046915, - -0.033891, - -0.0087438, - 0.05262, - -0.080805, - -0.025766, - 0.0055185, - -0.057623, - -0.0086958, - 0.10515, - -0.04345, - 0.037585, - 0.12498, - 0.044031, - -0.026455, - 0.001238, - -0.036227, - -0.058671, - -0.060319, - -0.023601, - 0.010456, - 0.062676, - 0.017399, - 0.0020701, - -0.030149, - 0.010883, - -0.0012025, - -0.033184, - 0.046985, - 0.011813, - 0.048322, - -0.043498 - ], - "educative": [ - -0.0069953, - -0.074602, - 0.044219, - 0.026823, - -0.027431, - -0.022789, - -0.031101, - -0.08412, - -0.040744, - -0.00044102, - 0.025266, - -0.051283, - 0.01853, - -0.044658, - 0.022323, - -0.025775, - 0.057967, - 0.046459, - 0.024295, - -0.0038104, - -0.04699, - 0.028646, - 0.031744, - 0.058357, - -0.063228, - 0.023333, - 0.0080733, - 0.01943, - 0.01185, - 0.00089419, - 0.013575, - -0.067271, - -0.033963, - -0.11116, - 0.045804, - 0.039935, - 0.030734, - -0.055072, - 0.0011853, - 0.023966, - 0.014012, - -0.095366, - -0.01323, - -0.010977, - 0.061072, - -0.071433, - 0.017635, - -0.034482, - -0.050105, - -0.0018256, - -0.055596, - -0.010477, - 0.0066952, - -0.053779, - 0.0054437, - -0.0044226, - -0.026928, - -0.019027, - -0.013303, - -0.011996, - -0.024536, - 0.0045403, - 0.15232, - 0.043489, - 0.010275, - 0.0064997, - -0.010172, - 0.019241, - 0.063843, - 0.004525, - 0.025786, - -0.05174, - 0.0083568, - 0.050383, - 0.021499, - -0.063187, - -0.029739, - -0.0084037, - 0.01813, - 0.023627, - -0.011041, - -0.0032318, - 0.0094771, - 0.013801, - 0.017149, - 0.023774, - -0.013675, - 0.020777, - -0.044692, - -0.031427, - 0.0033943, - 0.025839, - -0.075447, - 0.0027808, - -0.037075, - 0.024968, - 0.049286, - -0.0092157, - 0.035256, - -0.0022698, - 0.059443, - 0.017429, - -0.026084, - -0.04836, - -0.03448, - -0.072132, - 0.054501, - -0.018423, - -0.014678, - 0.06537, - -0.0059982, - 0.10547, - 0.029116, - 0.01912, - -0.036331, - 0.00080791, - -0.022213, - 0.022942, - -0.040844, - 0.029088, - -0.025961, - -0.055832, - -0.0027004, - 0.013504, - 0.10598, - 0.022602, - -0.009112, - -0.017626, - 0.039577, - 0.033611, - 0.0039228, - 0.027312, - -0.0018385, - -0.0077322, - -0.054951, - -0.025728, - -0.058635, - 0.063554, - 0.073944, - -0.020374, - -0.00060365, - -0.021113, - 0.038996, - 0.0066075, - -0.037033, - 0.0033519, - -0.085381, - 0.023017, - -0.036567, - 0.070474, - 0.025947, - 0.085098, - -0.038503, - -0.090962, - 0.018657, - 0.02284, - -0.006141, - 0.066659, - 0.022644, - 0.0091125, - 0.023648, - 0.0020726, - -0.041662, - 0.02202, - -0.015831, - 0.059863, - 0.1132, - 0.031731, - -0.026649, - -0.020851, - 0.077988, - 0.018189, - 0.021554, - -0.0047739, - -0.042756, - 0.033049, - 0.0041883, - 0.06447, - -0.044833, - -0.014163, - -0.070903, - -0.008259, - -0.076481, - 0.0050958, - -0.035147, - -0.052235, - 0.024617, - 0.094009, - 0.029098, - -0.03109, - 0.022964, - 0.077238, - 0.079298, - -0.042752, - 0.021212, - -0.03377, - 0.033569, - 0.055056, - -0.0039942, - 0.011078, - -0.10455, - 0.074485, - 0.053231, - -0.011536, - -0.020244, - 0.02843, - -0.0032384, - 0.047491, - 0.0038151, - -0.022905, - 0.06625, - 0.0027629, - -0.026953, - 0.0025158, - -0.01383, - 0.0087336, - 0.0022085, - -0.048928, - -0.12167, - 0.0022079, - -0.0081234, - 0.0015349, - -0.010717, - 0.088137, - 0.034379, - -0.061187, - 0.053937, - 0.093211, - -0.0037365, - 0.013588, - 0.064228, - -0.041665, - -0.01115, - 0.033377, - 0.0367, - 0.053285, - -0.0020597, - -0.0015168, - -0.068934, - -0.050458, - 0.047268, - -0.013437, - 0.019126, - 0.014298, - -0.11465, - 0.066369, - -0.029589, - -0.057967, - -0.059747, - -0.020544, - 0.035271, - -0.0098755, - 0.02152, - -0.056686, - -0.072877, - -0.032325, - -0.042172, - 0.029503, - 0.0056277, - -0.032852, - 0.017965, - 0.0016678, - 0.0068625, - -0.001373, - 0.016951, - 0.021896, - 0.03703, - -0.0015467, - 0.042983, - 0.040636, - 0.031704, - 0.057213, - -0.067724, - -0.023192, - 0.032925, - -0.10931, - 0.020971, - 0.071215, - -0.027331, - 0.010133, - 0.11694, - 0.008414, - -0.010465, - -0.087594, - -0.000045894, - 0.033114, - -0.0050123, - -0.0019954, - 0.014134, - 0.052093, - -0.033371, - 0.071521, - 0.040916, - 0.030534, - 0.0014526, - 0.040624, - 0.0039695, - 0.000072672, - 0.031443, - -0.017744 - ], - "automobiles": [ - 0.0012026, - 0.0032294, - 0.045294, - 0.017938, - 0.0066284, - 0.0079921, - -0.044913, - -0.073515, - 0.075343, - 0.041739, - 0.014795, - -0.0096309, - 0.022523, - 0.012904, - -0.020791, - 0.044007, - 0.022028, - 0.015972, - 0.027175, - 0.0021861, - 0.045661, - -0.042322, - 0.03343, - 0.022805, - 0.019982, - -0.011581, - 0.0027729, - 0.0029143, - 0.10529, - 0.022942, - -0.047303, - 0.013055, - 0.095051, - 0.018676, - 0.048605, - 0.0012141, - -0.030063, - 0.021352, - 0.022452, - -0.0043718, - -0.040544, - -0.071268, - 0.026519, - -0.0032752, - 0.011944, - -0.010779, - -0.024632, - -0.026249, - -0.021684, - -0.018441, - -0.0055596, - 0.0087079, - -0.054272, - 0.05595, - -0.072502, - -0.056597, - 0.0072616, - 0.036769, - -0.03612, - -0.028297, - 0.032556, - -0.022707, - 0.081613, - 0.033734, - 0.061821, - 0.0084689, - -0.015803, - -0.055021, - 0.028508, - 0.045729, - 0.051476, - -0.0086731, - 0.051365, - -0.044107, - -0.012627, - 0.00060996, - -0.046037, - -0.034895, - -0.0026205, - 0.024029, - 0.013328, - -0.043121, - -0.028637, - 0.00030304, - 0.020824, - -0.0578, - -0.013937, - -0.0048885, - 0.01722, - -0.022385, - 0.015934, - -0.0059004, - -0.058134, - 0.022838, - -0.000779, - 0.073506, - -0.034597, - -0.016217, - -0.018279, - -0.004353, - -0.0018154, - 0.0009049, - -0.012413, - -0.025211, - 0.039072, - -0.034527, - 0.013901, - 0.0062235, - 0.060261, - -0.037496, - 0.068004, - 0.081526, - 0.04611, - 0.073796, - -0.013967, - -0.03448, - -0.0082235, - -0.0040802, - -0.042592, - -0.000078981, - -0.037691, - 0.046208, - -0.012161, - -0.046777, - 0.034016, - 0.0025335, - -0.026256, - -0.011253, - 0.01522, - 0.046162, - 0.0027759, - 0.035361, - 0.03721, - 0.0039749, - 0.083478, - -0.0081511, - 0.023469, - 0.0040934, - -0.017423, - 0.019052, - 0.026612, - 0.035606, - 0.033972, - 0.065112, - 0.043443, - -0.00025073, - 0.017514, - -0.012686, - 0.021973, - -0.01919, - 0.024146, - 0.04985, - 0.018156, - -0.0064159, - 0.0068994, - 0.035186, - -0.0082402, - 0.027593, - -0.001606, - -0.016954, - 0.017579, - -0.020586, - 0.0088155, - -0.0013328, - 0.074548, - -0.044209, - 0.036398, - -0.02237, - 0.07871, - -0.019154, - 0.048527, - -0.040414, - 0.02122, - 0.079179, - 0.0072505, - 0.023613, - -0.021779, - 0.07767, - -0.028774, - 0.030323, - 0.065954, - -0.0075919, - -0.018241, - -0.056983, - 0.011284, - 0.011171, - -0.020668, - 0.070135, - -0.0025028, - -0.040908, - -0.037408, - 0.04266, - -0.071452, - 0.022669, - 0.056356, - 0.010352, - -0.032248, - -0.024478, - -0.0077223, - -0.0086589, - -0.082458, - 0.068655, - -0.013968, - -0.061632, - 0.069166, - 0.029991, - 0.0035592, - 0.015207, - 0.0072495, - -0.047459, - 0.079711, - -0.0021, - 0.034163, - 0.0061121, - 0.0047275, - 0.036357, - -0.034571, - -0.058195, - -0.024837, - -0.026843, - -0.039648, - -0.045196, - 0.0087286, - 0.054018, - 0.0074631, - 0.022735, - 0.024553, - 0.059162, - -0.02623, - -0.020153, - -0.016478, - -0.0058755, - -0.059012, - -0.013752, - 0.023566, - -0.043538, - -0.015184, - 0.027073, - 0.01669, - -0.062427, - -0.022733, - 0.03248, - 0.021856, - -0.015926, - 0.02628, - -0.04905, - 0.056882, - -0.032987, - 0.041243, - 0.00071046, - -0.0033191, - 0.035706, - -0.049974, - -0.015538, - -0.052459, - -0.0098372, - -0.0099671, - -0.04662, - 0.041551, - -0.014876, - 0.014876, - 0.012265, - -0.065068, - -0.0097887, - 0.034568, - 0.043002, - 0.016499, - -0.0061769, - 0.055044, - 0.013331, - -0.023062, - 0.062899, - -0.050071, - -0.011477, - -0.047143, - -0.038134, - -0.014214, - 0.058779, - -0.00082002, - -0.026714, - 0.017969, - 0.019347, - -0.041229, - -0.047905, - -0.023491, - -0.0082491, - -0.046125, - 0.0066544, - 0.011484, - 0.080104, - 0.015758, - -0.013762, - -0.04917, - -0.00042695, - -0.013489, - 0.0032466, - 0.019895, - -0.019945, - 0.045639, - -0.039326 - ], - "bunnies": [ - 0.062414, - 0.023507, - 0.024862, - -0.061298, - -0.057359, - -0.05232, - 0.009668, - -0.070476, - 0.033592, - -0.0027894, - -0.0281, - -0.019136, - 0.010853, - 0.0063583, - -0.079868, - 0.024859, - 0.0064182, - -0.021041, - 0.041919, - -0.063736, - 0.050842, - 0.014889, - -0.0035205, - 0.038085, - 0.070981, - 0.017039, - 0.056024, - -0.0010924, - 0.086419, - 0.068904, - -0.011569, - -0.10727, - 0.046798, - 0.041858, - 0.023441, - -0.032395, - -0.00049732, - -0.18048, - -0.0020285, - -0.074333, - -0.0139, - -0.11769, - -0.081262, - 0.044483, - 0.069755, - -0.021513, - 0.072628, - -0.034697, - -0.023315, - -0.012442, - 0.033085, - 0.04406, - -0.043377, - -0.0029984, - -0.066159, - -0.0056586, - 0.0086975, - -0.075025, - -0.053715, - -0.060997, - 0.039241, - -0.081392, - 0.082782, - 0.027205, - 0.032091, - 0.060352, - 0.084517, - -0.039841, - -0.042148, - 0.0018942, - -0.023573, - -0.003392, - 0.10699, - 0.011326, - -0.038864, - 0.078665, - 0.033182, - -0.069172, - -0.1018, - 0.0112, - 0.0087284, - -0.064015, - 0.091378, - 0.088938, - 0.0026945, - 0.025284, - -0.052908, - -0.017579, - 0.081643, - -0.012247, - -0.06823, - -0.054487, - -0.077271, - 0.045794, - 0.091796, - 0.059332, - -0.00044068, - 0.053222, - 0.025805, - 0.019723, - -0.021383, - 0.12485, - -0.0079988, - 0.034945, - 0.047208, - -0.081976, - 0.019802, - -0.059059, - -0.017416, - -0.058034, - -0.10061, - 0.057348, - 0.030931, - -0.023387, - 0.040857, - 0.0040144, - -0.056736, - 0.033168, - -0.060035, - 0.0051393, - -0.073743, - 0.12163, - -0.002453, - -0.11931, - 0.14434, - 0.07104, - 0.048307, - -0.050165, - -0.028475, - 0.1037, - 0.013106, - 0.087827, - -0.12083, - 0.011145, - 0.060102, - -0.070691, - -0.012364, - 0.04846, - -0.011832, - -0.01144, - 0.022404, - 0.028696, - 0.076473, - 0.027705, - 0.062002, - 0.024539, - 0.044433, - -0.077832, - -0.11237, - -0.10714, - 0.0075869, - 0.0881, - -0.072817, - 0.020699, - -0.04881, - -0.017945, - -0.030754, - -0.059238, - 0.032739, - -0.064153, - 0.069345, - 0.0024718, - 0.042547, - -0.06901, - 0.031699, - -0.029762, - 0.018305, - 0.093695, - 0.0072877, - 0.025278, - -0.040173, - -0.050299, - -0.042153, - -0.059193, - 0.0087014, - 0.064588, - 0.0065306, - 0.10891, - 0.026833, - 0.014649, - 0.033167, - 0.039268, - -0.049052, - -0.11517, - -0.026184, - -0.068057, - 0.080151, - 0.1126, - 0.011226, - -0.035389, - -0.054465, - 0.034817, - -0.10779, - -0.053141, - 0.074674, - -0.073285, - 0.036125, - 0.013935, - -0.010911, - -0.026074, - -0.12832, - 0.039801, - -0.0094759, - -0.030406, - 0.020369, - -0.014103, - -0.015097, - -0.018541, - 0.060325, - -0.094729, - 0.090557, - -0.0068329, - 0.10297, - 0.019785, - 0.005105, - -0.031204, - 0.0058534, - 0.012004, - 0.032141, - -0.042676, - 0.012485, - -0.076241, - 0.0079074, - 0.061609, - 0.051687, - -0.031238, - 0.055754, - 0.059872, - 0.0038633, - 0.038432, - 0.008615, - -0.046924, - -0.085062, - 0.030287, - 0.032981, - 0.027571, - 0.040962, - -0.035494, - -0.031126, - -0.011526, - -0.0045404, - -0.0025271, - -0.034099, - -0.021011, - 0.010834, - 0.1834, - -0.010883, - 0.070715, - -0.018399, - -0.014165, - -0.047127, - -0.025813, - 0.040462, - -0.00074145, - -0.031292, - 0.014598, - 0.041669, - -0.056412, - 0.090039, - 0.0036901, - 0.057227, - 0.03221, - 0.043189, - -0.062758, - 0.037353, - 0.027862, - -0.030095, - 0.03969, - 0.040901, - -0.0098937, - 0.018189, - 0.049781, - -0.10721, - -0.023946, - 0.03811, - -0.052141, - 0.03982, - -0.002084, - -0.073006, - -0.048282, - -0.015977, - 0.096176, - 0.070583, - -0.011901, - -0.010238, - -0.039891, - 0.0089046, - -0.021129, - -0.064288, - -0.013228, - -0.0058239, - -0.050574, - -0.14351, - -0.054744, - -0.060436, - -0.06765, - 0.058801, - 0.066767, - -0.047656, - 0.12965 - ], - "cellular": [ - -0.023076, - -0.020805, - 0.02104, - -0.055624, - 0.0067314, - -0.070836, - 0.040699, - -0.072243, - 0.10782, - -0.013796, - 0.058039, - -0.041113, - -0.043479, - -0.027551, - -0.022314, - -0.039939, - 0.083965, - 0.040848, - 0.05194, - 0.002333, - 0.04143, - -0.070779, - 0.1028, - 0.092017, - 0.019059, - -0.08751, - 0.0024154, - 0.025767, - 0.020242, - 0.055389, - -0.030028, - 0.044989, - 0.040847, - -0.029926, - 0.052649, - 0.021518, - 0.019392, - 0.026142, - 0.073384, - -0.014211, - -0.018294, - -0.15835, - -0.033555, - 0.004799, - 0.027818, - -0.063279, - -0.01095, - -0.10368, - -0.042877, - -0.030177, - -0.0093724, - 0.027795, - 0.036981, - -0.0068106, - 0.0035619, - 0.0093922, - -0.023092, - 0.0091986, - 0.017394, - 0.087746, - 0.00217, - 0.067444, - 0.12358, - 0.034262, - 0.079509, - -0.019133, - 0.048299, - 0.011606, - -0.081736, - -0.024083, - -0.033748, - -0.053441, - 0.027068, - 0.0022094, - -0.074371, - -0.054582, - -0.048653, - -0.065801, - -0.040611, - -0.030424, - -0.041417, - -0.056907, - -0.015055, - 0.0089196, - 0.022945, - -0.039804, - 0.029779, - -0.017603, - -0.029859, - 0.062983, - -0.061368, - -0.015875, - -0.085288, - 0.01719, - -0.047644, - 0.062766, - 0.027051, - -0.030431, - 0.010751, - 0.030943, - 0.013076, - 0.0082829, - 0.010833, - 0.030773, - 0.015166, - -0.086637, - -0.048962, - -0.036466, - 0.070473, - -0.052874, - 0.04086, - 0.078802, - 0.0211, - 0.00064749, - -0.049257, - -0.033837, - 0.0029398, - 0.040456, - -0.032068, - -0.017244, - -0.06028, - 0.039169, - -0.0026338, - 0.047505, - 0.056948, - 0.010264, - 0.038776, - -0.077676, - 0.11079, - 0.065432, - 0.034432, - -0.018961, - -0.021262, - -0.0023515, - 0.01656, - 0.017786, - 0.046184, - 0.018581, - -0.030982, - 0.019163, - 0.078637, - 0.051043, - -0.00039972, - 0.019232, - -0.0025687, - -0.064153, - 0.036894, - 0.017129, - 0.010804, - -0.022631, - 0.021617, - 0.16574, - 0.021185, - 0.0052294, - 0.014641, - 0.042514, - -0.031561, - -0.024919, - 0.027562, - 0.012667, - 0.009337, - -0.0019906, - -0.081073, - -0.031668, - -0.0015956, - -0.011075, - -0.046817, - 0.0078978, - 0.037785, - -0.0077885, - 0.033571, - 0.13677, - 0.072174, - 0.029677, - -0.019141, - 0.059661, - 0.037096, - 0.0096906, - -0.0018913, - -0.060563, - 0.027276, - 0.041162, - 0.0030419, - 0.051063, - -0.017295, - -0.0796, - 0.0031493, - 0.12452, - 0.078764, - 0.074723, - 0.016612, - -0.012355, - 0.085213, - 0.01441, - 0.025586, - 0.0038948, - -0.020066, - 0.078684, - 0.039327, - 0.033333, - -0.13785, - 0.012367, - -0.000043411, - 0.023178, - -0.017854, - 0.064891, - -0.0023494, - -0.016792, - -0.072433, - 0.023298, - 0.15136, - 0.0056968, - 0.024725, - 0.043655, - 0.033973, - 0.010343, - -0.04024, - 0.028169, - -0.018597, - -0.020639, - -0.063402, - -0.038763, - 0.0092059, - 0.094114, - -0.014192, - 0.017026, - 0.069705, - 0.08181, - -0.046213, - -0.057526, - -0.057514, - -0.038441, - -0.060069, - 0.0027012, - 0.017646, - 0.0032438, - -0.021367, - 0.045968, - 0.029145, - -0.025667, - -0.0032683, - -0.069847, - 0.034353, - 0.079586, - -0.14206, - -0.1042, - -0.0035352, - 0.046742, - 0.021901, - 0.012503, - -0.027456, - 0.011367, - -0.063522, - -0.035521, - 0.029854, - 0.061987, - 0.010475, - -0.016289, - 0.027229, - 0.019143, - -0.010868, - 0.06498, - 0.035103, - -0.0083966, - 0.040565, - -0.024796, - -0.059061, - 0.031596, - 0.09849, - 0.10177, - -0.078422, - 0.057111, - -0.08042, - -0.020652, - 0.025596, - -0.067006, - 0.024249, - 0.0046814, - 0.02494, - 0.0042529, - 0.19227, - -0.035033, - -0.044366, - 0.038817, - -0.01763, - -0.07025, - -0.15543, - -0.031683, - 0.000056719, - -0.019545, - 0.081665, - 0.0148, - -0.068552, - -0.013041, - -0.021581, - -0.047942, - -0.010756, - 0.0075736, - 0.027416, - 0.0069787 - ], - "artwork": [ - -0.018427, - -0.0073188, - 0.04278, - -0.010906, - 0.050443, - -0.02891, - -0.0023219, - -0.097241, - 0.016834, - 0.0016323, - 0.013031, - -0.063376, - -0.050744, - 0.016357, - -0.041313, - -0.0096449, - 0.037722, - 0.077845, - 0.020237, - -0.11873, - -0.012096, - 0.00020081, - 0.030234, - 0.079924, - 0.0097753, - 0.028905, - -0.016665, - 0.022183, - 0.09143, - 0.062177, - -0.07774, - -0.0014841, - 0.015746, - -0.072004, - 0.044954, - 0.015736, - 0.022948, - -0.039917, - -0.026148, - 0.0075837, - 0.0043326, - -0.11986, - -0.012974, - 0.017934, - -0.0028761, - 0.014723, - 0.083127, - 0.019991, - -0.011417, - -0.0083494, - -0.05643, - -0.046779, - -0.045068, - 0.028594, - -0.068753, - 0.032853, - 0.018235, - -0.1091, - -0.04929, - -0.0022761, - -0.0089773, - -0.09379, - 0.17608, - 0.020315, - 0.094092, - 0.012153, - -0.035469, - 0.018311, - 0.031302, - 0.075152, - 0.05912, - 0.053961, - -0.031765, - 0.019619, - -0.032529, - 0.064224, - -0.018996, - -0.032393, - 0.063499, - -0.0064947, - -0.0030166, - -0.028731, - 0.014269, - 0.028175, - -0.061573, - -0.054417, - 0.0054168, - 0.0046221, - 0.0059508, - 0.028475, - -0.039628, - 0.028264, - -0.074901, - 0.022306, - -0.00045723, - 0.044207, - 0.056972, - 0.06314, - 0.11218, - 0.00049483, - 0.060584, - 0.038157, - 0.055335, - 0.041661, - -0.020196, - -0.047554, - -0.1229, - 0.075845, - -0.051157, - 0.043754, - -0.0014039, - 0.090486, - 0.082618, - 0.021232, - -0.0087559, - -0.02825, - -0.02558, - -0.080924, - -0.028822, - 0.0079022, - -0.025648, - 0.0081972, - -0.050469, - -0.040575, - 0.07119, - -0.032555, - 0.036153, - -0.028968, - 0.042965, - 0.095395, - -0.044737, - -0.031061, - 0.0082397, - 0.011784, - 0.041154, - 0.036547, - -0.0089143, - 0.062942, - 0.025852, - -0.045992, - -0.0044699, - 0.033392, - 0.026909, - 0.001523, - -0.0060027, - -0.05603, - -0.092343, - 0.01015, - 0.014655, - -0.07067, - 0.023412, - 0.058103, - -0.009904, - -0.10403, - -0.038597, - 0.03568, - 0.035825, - 0.032127, - -0.010932, - -0.0033221, - -0.0013973, - -0.029456, - -0.060613, - 0.009267, - -0.0068739, - -0.01221, - 0.057124, - -0.001509, - 0.049082, - 0.048426, - 0.072413, - 0.031882, - 0.051766, - -0.133, - -0.000095905, - 0.044819, - 0.0086874, - 0.039692, - -0.078535, - 0.0099227, - 0.024836, - -0.0049945, - -0.014677, - -0.049031, - -0.068281, - -0.031228, - 0.026146, - 0.096605, - 0.060657, - -0.052267, - 0.016831, - 0.068489, - -0.056505, - -0.026472, - -0.086038, - -0.032083, - 0.030325, - -0.096304, - -0.0043196, - 0.022344, - -0.14647, - 0.063138, - 0.020988, - -0.095064, - 0.0024214, - -0.01998, - -0.016065, - -0.0067138, - 0.023588, - -0.064354, - 0.12314, - 0.032231, - 0.023028, - -0.016582, - 0.033715, - -0.051729, - 0.05178, - 0.088003, - -0.059124, - 0.00032745, - 0.034768, - -0.040448, - 0.017866, - 0.11202, - 0.044981, - 0.092817, - 0.041035, - 0.050457, - 0.046388, - -0.0074269, - -0.041096, - -0.043141, - -0.079437, - -0.046879, - 0.03029, - 0.033464, - 0.01663, - 0.0038122, - -0.015215, - -0.088493, - 0.012385, - 0.01176, - -0.073483, - -0.082391, - -0.01251, - 0.027909, - -0.07281, - -0.056403, - -0.027534, - 0.041216, - 0.063702, - -0.070094, - 0.012631, - 0.008028, - -0.0067183, - -0.010405, - -0.05973, - -0.020177, - 0.0055907, - -0.032796, - 0.059706, - -0.052331, - 0.0031136, - -0.060257, - 0.072131, - -0.060352, - 0.070095, - -0.039156, - 0.001605, - -0.063166, - 0.04473, - 0.085634, - -0.09926, - -0.048541, - -0.021327, - -0.003982, - 0.0075947, - 0.071929, - -0.048869, - 0.036832, - 0.091787, - 0.045806, - 0.038921, - -0.031857, - -0.027475, - -0.053511, - -0.073627, - 0.052424, - -0.075081, - -0.010667, - -0.062613, - 0.014372, - -0.0021965, - 0.0072743, - 0.00043219, - 0.01789, - -0.016914, - 0.001566, - 0.008887, - 0.0014055 - ], - "unencrypted": [ - -0.007126, - 0.020395, - -0.076549, - 0.048397, - 0.0097658, - 0.019152, - -0.015876, - -0.089904, - -0.025484, - 0.0061401, - -0.06156, - -0.06946, - -0.10111, - -0.015329, - -0.086302, - -0.014171, - 0.039998, - 0.024608, - 0.040414, - -0.015465, - 0.0001839, - 0.0096115, - 0.025696, - 0.042934, - -0.052294, - 0.054151, - 0.04719, - 0.0099425, - 0.1272, - -0.0069769, - 0.01167, - -0.017934, - -0.049701, - 0.0053622, - 0.070423, - -0.043183, - -0.02338, - 0.061225, - 0.047632, - -0.027271, - -0.039363, - -0.0763, - 0.030012, - 0.0114, - -0.018, - -0.003829, - -0.0071609, - -0.061239, - 0.025233, - 0.037542, - 0.00029072, - -0.081719, - 0.051041, - -0.020166, - -0.077116, - 0.0045524, - -0.026589, - 0.047209, - -0.0061099, - -0.014993, - -0.0047, - -0.054762, - 0.12209, - -0.012605, - -0.031167, - 0.043357, - 0.017128, - 0.033276, - -0.013152, - 0.029822, - -0.040034, - 0.050135, - 0.040252, - 0.078844, - -0.052418, - -0.021788, - 0.03135, - 0.028424, - 0.023861, - -0.071873, - -0.020309, - -0.053914, - 0.023776, - 0.016031, - 0.007328, - 0.026348, - -0.0048597, - -0.014893, - 0.035239, - -0.005405, - 0.040389, - -0.008981, - -0.033197, - 0.00095007, - -0.012507, - 0.053283, - 0.032835, - -0.015419, - -0.0043031, - 0.064462, - -0.0039696, - 0.025574, - 0.021538, - -0.017715, - 0.047593, - -0.058189, - 0.0066936, - 0.040358, - 0.031945, - -0.02501, - 0.051161, - 0.12672, - 0.059693, - 0.029454, - -0.011008, - -0.048262, - 0.085883, - 0.068251, - -0.053332, - 0.066318, - 0.11354, - 0.00089636, - -0.015028, - -0.053963, - 0.051768, - -0.051737, - 0.023553, - 0.027208, - -0.020667, - -0.021574, - -0.082517, - -0.020789, - 0.030212, - 0.014891, - 0.031746, - -0.067288, - 0.019869, - 0.032073, - -0.040531, - 0.021913, - -0.0013721, - 0.053185, - -0.02846, - -0.035642, - -0.029714, - -0.00099058, - -0.069601, - -0.025234, - 0.017332, - -0.032273, - 0.0078022, - 0.016161, - 0.03152, - 0.0055912, - 0.033856, - -0.010189, - -0.059563, - 0.00080362, - 0.04575, - 0.018673, - 0.023698, - -0.070914, - -0.017228, - 0.057965, - 0.042291, - -0.080193, - 0.045231, - 0.068542, - 0.030143, - -0.0070442, - -0.023301, - 0.031384, - 0.0031591, - 0.044159, - -0.04732, - 0.039294, - 0.042561, - -0.0088063, - -0.025836, - -0.029656, - 0.036269, - -0.021624, - 0.013118, - 0.0093651, - -0.037796, - 0.040884, - -0.024896, - 0.10144, - 0.02011, - 0.017905, - 0.018657, - 0.021726, - 0.012412, - -0.00015225, - 0.0035044, - 0.025585, - -0.015241, - -0.017245, - -0.058463, - 0.0070053, - -0.11834, - 0.067069, - -0.039607, - 0.049822, - -0.0096441, - 0.00082802, - 0.055743, - 0.038765, - -0.032974, - -0.032788, - 0.054654, - -0.0016057, - 0.015821, - 0.048706, - 0.074945, - 0.023613, - -0.078757, - 0.022679, - 0.00015863, - -0.0026998, - 0.065397, - 0.0060937, - -0.034044, - 0.080714, - 0.017502, - -0.038557, - 0.0026309, - 0.017104, - -0.0035018, - -0.021404, - 0.00012769, - -0.017684, - -0.02723, - -0.1474, - 0.021374, - -0.056865, - 0.031023, - 0.075244, - 0.022686, - 0.019465, - 0.058357, - -0.070855, - 0.059268, - -0.040998, - -0.099333, - 0.00069962, - 0.015896, - -0.03235, - -0.05477, - 0.041638, - 0.019378, - -0.03874, - -0.0098767, - 0.00055512, - 0.00013988, - 0.0094789, - 0.0072046, - -0.037191, - -0.049828, - -0.028367, - -0.014202, - 0.029131, - -0.011619, - 0.0018877, - 0.045045, - -0.016841, - 0.035629, - -0.033343, - 0.065551, - 0.0043168, - 0.020131, - 0.057014, - -0.081403, - -0.05222, - 0.018528, - -0.049972, - 0.02525, - -0.022981, - 0.052668, - 0.0051963, - 0.043676, - -0.049164, - -0.022168, - 0.011023, - -0.059276, - -0.018102, - -0.067734, - 0.0022684, - -0.023403, - 0.0036296, - -0.010426, - -0.019212, - -0.040918, - 0.025895, - 0.036674, - -0.015127, - -0.072336, - -0.096462, - -0.035482, - 0.042701 - ], - "Military": [ - 0.034331, - -0.037562, - 0.045209, - -0.036188, - -0.0054342, - 0.0082883, - 0.016832, - -0.045154, - 0.088863, - 0.069233, - 0.0085738, - -0.05884, - -0.013944, - 0.027161, - 0.021483, - 0.043199, - 0.040703, - 0.0068292, - 0.06787, - 0.022772, - 0.065696, - 0.029325, - -0.032361, - 0.041469, - -0.027503, - -0.0015438, - 0.00081689, - -0.022958, - 0.0013396, - -0.021482, - 0.042925, - -0.056006, - -0.011437, - 0.016404, - 0.099823, - 0.040449, - 0.028596, - 0.034684, - 0.0914, - 0.025488, - -0.0036153, - 0.035519, - 0.057556, - -0.026169, - -0.0078237, - 0.023066, - 0.00056266, - -0.050084, - -0.033825, - -0.019108, - -0.0039632, - 0.0097238, - -0.014926, - -0.038798, - 0.011787, - 0.050198, - -0.037977, - -0.020677, - -0.11313, - 0.0068318, - -0.021938, - -0.013736, - -0.0577, - 0.019588, - 0.022538, - -0.0039581, - -0.023054, - -0.01698, - 0.013225, - 0.050061, - 0.019022, - -0.017669, - -0.018244, - -0.020769, - 0.028159, - -0.017953, - 0.039097, - -0.069959, - 0.009793, - 0.0082209, - -0.023134, - 0.086341, - -0.061162, - -0.0057444, - -0.058005, - -0.016034, - 0.014787, - -0.11545, - -0.014188, - -0.015886, - -0.0022041, - 0.0098241, - -0.051584, - -0.055895, - -0.024415, - 0.10615, - -0.095008, - -0.048826, - 0.047453, - 0.00024819, - 0.072101, - 0.042898, - 0.034338, - -0.078256, - -0.0028564, - -0.16004, - 0.080371, - 0.0022605, - 0.010238, - 0.021706, - -0.019557, - 0.041138, - 0.063883, - 0.033119, - -0.0051734, - 0.0013937, - 0.0059849, - 0.042891, - 0.056265, - -0.01108, - 0.0043791, - 0.0007862, - -0.019313, - -0.025188, - 0.047606, - 0.11167, - -0.040924, - -0.076556, - 0.008189, - 0.20975, - -0.076331, - 0.093398, - 0.081957, - 0.0054835, - 0.056348, - -0.0087051, - -0.023353, - 0.039674, - 0.023089, - 0.015937, - -0.047504, - -0.084286, - -0.058121, - -0.034632, - -0.033015, - 0.061622, - -0.029563, - 0.010617, - 0.05529, - -0.034907, - 0.090784, - 0.13416, - -0.004361, - 0.023173, - -0.037861, - 0.087584, - -0.030216, - -0.019894, - 0.033346, - 0.012575, - -0.011672, - -0.019147, - -0.089374, - 0.010801, - -0.059028, - 0.031271, - 0.00035086, - -0.012516, - 0.041881, - -0.080439, - 0.078406, - -0.025729, - 0.025085, - -0.027382, - -0.028345, - 0.027896, - 0.03374, - -0.020468, - -0.00054167, - -0.024021, - -0.044533, - 0.0014628, - -0.0038214, - 0.03562, - 0.020914, - 0.16327, - -0.0048319, - 0.12661, - 0.036398, - -0.0327, - 0.012868, - 0.083959, - 0.0087252, - -0.042565, - -0.029256, - 0.034222, - -0.038399, - -0.006367, - -0.018041, - 0.029906, - -0.01943, - 0.069596, - 0.0043897, - 0.040522, - -0.0026838, - -0.039109, - -0.0099131, - 0.045757, - 0.027343, - 0.074236, - 0.17114, - 0.025723, - -0.036238, - 0.058518, - 0.016554, - 0.070515, - -0.030112, - -0.023073, - -0.0030259, - -0.024844, - 0.025517, - -0.054853, - -0.00032308, - 0.10785, - 0.0029682, - 0.05235, - 0.00098815, - 0.026217, - -0.013288, - -0.043569, - 0.0166, - -0.072661, - -0.016025, - -0.017025, - 0.013667, - 0.016646, - -0.020006, - 0.025097, - -0.034708, - 0.0044733, - 0.040368, - 0.016341, - 0.036069, - -0.0084139, - 0.060415, - 0.027736, - -0.037419, - -0.067196, - 0.0032986, - -0.080717, - -0.031265, - 0.03868, - 0.02813, - -0.0061876, - -0.0086503, - -0.024352, - 0.08176, - 0.0058067, - 0.014956, - -0.01723, - -0.080202, - -0.050388, - 0.019247, - -0.015535, - 0.016039, - 0.00024987, - -0.0089284, - -0.018383, - 0.043893, - -0.050902, - 0.0090792, - 0.098806, - -0.00057731, - 0.035752, - 0.028331, - -0.10188, - 0.00024462, - -0.012932, - -0.036037, - -0.0121, - 0.074164, - -0.0082171, - 0.010167, - 0.013778, - 0.091811, - -0.01032, - -0.01522, - -0.026564, - -0.024342, - -0.036208, - -0.051675, - 0.0052413, - 0.030156, - 0.032837, - 0.0079719, - -0.040915, - -0.027282, - -0.039371, - -0.014583, - -0.066856 - ], - "drinking": [ - -0.045078, - -0.014905, - -0.026858, - 0.013133, - 0.046813, - 0.0082622, - -0.0019379, - -0.082727, - 0.025142, - 0.066254, - 0.0011039, - -0.033009, - 0.068856, - 0.012938, - 0.043329, - -0.046444, - 0.020267, - -0.034928, - 0.021829, - -0.038031, - 0.020866, - 0.04558, - -0.027614, - 0.012824, - -0.029434, - -0.075397, - 0.00048906, - 0.033783, - 0.0085686, - -0.019357, - -0.070267, - 0.036262, - 0.0082724, - -0.024516, - 0.04196, - -0.050647, - -0.03289, - 0.013658, - 0.0082099, - 0.023055, - 0.035736, - -0.084878, - 0.024249, - 0.042616, - -0.022291, - -0.04996, - 0.049141, - -0.011431, - -0.016729, - 0.043412, - -0.0024977, - 0.027183, - 0.11614, - -0.064197, - -0.079433, - 0.016604, - 0.013644, - -0.042411, - -0.032215, - -0.011054, - 0.015253, - -0.049951, - 0.059192, - 0.023718, - -0.072469, - 0.041804, - -0.018807, - -0.0065149, - 0.034258, - 0.010937, - 0.13027, - 0.054979, - 0.10477, - 0.0047011, - -0.0041919, - -0.035073, - 0.022789, - -0.016853, - -0.060238, - 0.022425, - -0.035093, - -0.073372, - -0.0035124, - 0.048593, - -0.023397, - -0.019343, - 0.017559, - 0.0055359, - -0.060879, - -0.011486, - 0.039818, - 0.034194, - -0.083892, - 0.02172, - 0.043209, - 0.034327, - -0.0097611, - 0.028746, - 0.070315, - 0.037831, - -0.030709, - -0.033289, - -0.029466, - -0.037688, - 0.046043, - -0.07711, - -0.054655, - 0.021914, - -0.0080582, - 0.050609, - 0.059118, - 0.025981, - 0.048201, - -0.0091092, - 0.069016, - -0.058166, - 0.010468, - -0.049924, - -0.04756, - -0.035584, - -0.017136, - 0.028352, - 0.0023348, - -0.052911, - 0.078179, - -0.015521, - -0.011805, - -0.099633, - -0.055778, - 0.073635, - 0.0689, - -0.014659, - -0.01214, - -0.038367, - -0.042941, - -0.028256, - -0.025981, - 0.018263, - 0.031787, - 0.015389, - 0.1385, - -0.054784, - -0.0060487, - 0.017163, - 0.080156, - -0.064718, - 0.077049, - 0.069298, - 0.027089, - -0.030265, - 0.039796, - 0.016459, - 0.041557, - -0.059588, - -0.024858, - 0.014924, - -0.0753, - 0.065153, - 0.03366, - -0.035749, - 0.033684, - 0.026534, - -0.10551, - 0.050029, - 0.01286, - 0.014536, - -0.032936, - 0.018376, - 0.065498, - 0.024609, - 0.050013, - -0.013261, - 0.016939, - 0.054463, - 0.063727, - 0.070504, - -0.018115, - 0.0097756, - -0.012544, - -0.072637, - -0.0015619, - 0.031957, - 0.016444, - -0.056503, - -0.0041049, - -0.087297, - -0.0047041, - 0.11102, - 0.094248, - 0.00070103, - 0.019393, - 0.0058085, - -0.018897, - 0.051008, - 0.1258, - 0.019753, - 0.053107, - -0.013023, - -0.022847, - -0.026601, - -0.16273, - 0.061231, - 0.0078225, - -0.0016665, - -0.028714, - 0.083244, - -0.007482, - 0.069809, - 0.0042156, - -0.041276, - 0.070708, - 0.035262, - 0.049741, - 0.010364, - 0.02006, - -0.016886, - -0.036466, - -0.039475, - 0.018462, - -0.089764, - -0.020379, - -0.06505, - -0.017997, - 0.075961, - -0.0064471, - 0.040941, - -0.038558, - 0.073089, - -0.041848, - 0.0064856, - 0.026629, - 0.0069309, - -0.059815, - -0.022487, - -0.0021523, - 0.063018, - 0.027738, - 0.034304, - 0.08079, - -0.066203, - 0.067019, - -0.02835, - -0.00005976, - -0.087895, - -0.06105, - 0.10828, - -0.084038, - -0.041074, - -0.073363, - -0.009275, - -0.010332, - 0.020382, - -0.034955, - -0.021746, - 0.031749, - -0.022896, - -0.018285, - -0.026654, - 0.029838, - 0.028701, - -0.016943, - -0.018242, - -0.025927, - 0.085579, - 0.0089997, - -0.026995, - 0.0091389, - -0.028025, - 0.044921, - 0.065726, - -0.010789, - 0.08324, - -0.095898, - -0.047418, - -0.037435, - -0.043166, - -0.048917, - 0.0446, - -0.0044681, - 0.012494, - 0.090516, - 0.010162, - -0.025608, - 0.014758, - 0.0015938, - 0.040123, - -0.0091887, - -0.012655, - 0.10741, - -0.045464, - 0.089916, - 0.036993, - -0.065707, - -0.030153, - -0.020252, - 0.056386, - 0.027086, - -0.013005, - -0.049293, - 0.0032797 - ], - "football-related": [ - 0.0070081, - -0.013152, - 0.024823, - -0.020895, - 0.0075125, - -0.03357, - -0.0066928, - -0.050802, - 0.026875, - 0.020789, - -0.010436, - -0.041478, - -0.021009, - 0.0018984, - 0.060489, - 0.039817, - 0.039032, - -0.006756, - -0.0019775, - 0.01208, - 0.019477, - -0.043361, - -0.010083, - 0.052348, - 0.0087616, - 0.00048094, - 0.010372, - -0.010621, - 0.049173, - 0.0098217, - 0.013339, - -0.01404, - 0.041478, - -0.047959, - 0.04625, - -0.0087834, - 0.0096596, - 0.048541, - 0.04381, - 0.013566, - 0.013298, - -0.045208, - 0.01356, - 0.034843, - 0.037533, - 0.00208, - 0.020523, - -0.018945, - 0.028803, - 0.032651, - 0.0308, - 0.007047, - 0.053528, - 0.00070354, - -0.02012, - -0.010524, - -0.0095558, - -0.019576, - -0.030752, - 0.000099166, - -0.0059183, - -0.0062955, - 0.088278, - 0.047629, - 0.012956, - -0.0090889, - 0.028551, - 0.0075362, - 0.037215, - 0.0099254, - -0.004341, - 0.00042632, - 0.027067, - 0.012168, - 0.044138, - 0.0058645, - -0.0030939, - -0.0093035, - -0.014435, - -0.039298, - -0.0017142, - 0.015271, - -0.034365, - 0.018721, - -0.011101, - -0.03011, - 0.0055502, - 0.015589, - 0.012699, - -0.021278, - -0.024374, - 0.029547, - -0.064373, - 0.057216, - -0.014254, - 0.030051, - -0.057481, - -0.0029834, - 0.05363, - 0.0080225, - -0.0010995, - 0.039756, - -0.050806, - -0.035184, - 0.027206, - -0.022504, - -0.061095, - 0.042055, - -0.012166, - 0.013226, - -0.048863, - 0.052188, - 0.034036, - 0.0013247, - 0.056203, - 0.001551, - 0.01777, - -0.0071686, - -0.051153, - -0.028239, - -0.0096449, - -0.005009, - 0.014757, - -0.03275, - 0.12131, - -0.026186, - -0.03208, - -0.017307, - -0.020946, - 0.047741, - -0.022279, - 0.0027932, - 0.0011487, - -0.013632, - 0.012982, - 0.036932, - 0.030344, - 0.041367, - 0.039461, - -0.01503, - 0.050082, - 0.0011955, - 0.015011, - 0.020733, - -0.038187, - 0.017069, - -0.0070026, - -0.045446, - 0.0014441, - 0.030197, - 0.035221, - 0.070824, - -0.036497, - -0.067453, - -0.03358, - -0.015489, - 0.013194, - 0.04382, - 0.0084806, - 0.027623, - -0.0084713, - -0.00011302, - -0.040481, - 0.047405, - 0.006784, - -0.035822, - 0.051551, - 0.033599, - -0.014534, - -0.042458, - 0.037558, - 0.011593, - 0.028523, - 0.043001, - 0.029604, - 0.021023, - -0.026497, - -0.0059639, - -0.0051839, - -0.064705, - 0.031294, - 0.0033391, - 0.024042, - -0.00084552, - 0.040591, - 0.016538, - -0.0042501, - 0.037125, - 0.028447, - -0.0081554, - 0.00095882, - 0.033594, - 0.027566, - -0.012207, - 0.0088006, - -0.0046273, - -0.01749, - -0.0168, - 0.019806, - -0.040671, - -0.098695, - 0.030602, - -0.022386, - -0.050309, - -0.054382, - -0.0012468, - 0.00010895, - 0.016096, - 0.0020405, - 0.0076952, - 0.089395, - 0.023306, - -0.0026901, - -0.002702, - 0.019663, - -0.044932, - -0.0065943, - -0.0029823, - 0.0084015, - -0.012373, - -0.024443, - 0.012392, - 0.0019043, - 0.042844, - -0.034484, - -0.035917, - -0.0044079, - 0.076731, - 0.019908, - -0.033675, - 0.0019591, - -0.045463, - -0.029399, - 0.015929, - 0.025873, - -0.0030151, - -0.051251, - 0.012317, - -0.012498, - -0.011735, - 0.010849, - -0.00077595, - 0.011476, - -0.034065, - -0.094732, - -0.06089, - -0.021604, - -0.005495, - -0.058533, - 0.01335, - -0.020665, - 0.024706, - 0.012595, - -0.0013392, - -0.020341, - -0.03764, - -0.046803, - -0.046311, - 0.038806, - 0.0051404, - 0.013223, - -0.053012, - 0.017024, - -0.022763, - 0.0086116, - -0.01158, - -0.043842, - 0.0086344, - 0.018304, - -0.019082, - 0.0077055, - 0.038744, - -0.063606, - -0.0048535, - -0.034114, - -0.068464, - 0.012264, - -0.0099024, - -0.017782, - -0.0087435, - 0.086146, - 0.02252, - 0.0023045, - -0.049524, - -0.01306, - -0.056855, - 0.024127, - -0.0052026, - -0.017426, - 0.013882, - 0.073624, - -0.00894, - -0.02048, - 0.021678, - 0.026621, - 0.0067663, - -0.032228, - 0.012109, - 0.024779, - -0.0043064 - ], - "airforce": [ - 0.011899, - -0.10149, - 0.042451, - -0.073127, - 0.058861, - -0.0068545, - 0.073051, - -0.072007, - 0.022577, - 0.029089, - 0.071942, - 0.0068292, - -0.0084446, - 0.021918, - 0.022662, - 0.069466, - 0.1028, - -0.11036, - 0.088588, - 0.010083, - 0.051983, - 0.039934, - -0.0096641, - 0.051653, - -0.034605, - -0.057835, - 0.054952, - -0.090821, - -0.03043, - -0.024763, - 0.068727, - -0.010847, - 0.0061364, - -0.012262, - 0.026171, - 0.043905, - -0.059048, - -0.029862, - 0.093765, - -0.072228, - -0.06679, - -0.080278, - 0.070764, - -0.072125, - 0.0055975, - 0.062473, - 0.051516, - -0.045637, - -0.10212, - 0.0047461, - 0.026695, - -0.033178, - 0.025145, - 0.048516, - -0.042752, - -0.012969, - -0.0020673, - -0.054372, - -0.042603, - 0.04937, - -0.033681, - -0.093523, - 0.069958, - -0.002511, - -0.029086, - 0.058169, - -0.077733, - -0.058481, - -0.0082279, - -0.018527, - 0.050632, - -0.058317, - 0.039451, - -0.049916, - -0.020436, - -0.070694, - 0.014385, - -0.025053, - -0.0084689, - -0.0027757, - 0.016595, - 0.034419, - -0.02088, - 0.12394, - -0.078007, - 0.0019539, - -0.018464, - -0.018616, - -0.056612, - 0.039053, - 0.0065423, - 0.078599, - -0.077504, - -0.013896, - 0.085278, - 0.089468, - -0.047691, - -0.043799, - 0.03002, - -0.0032591, - 0.088084, - 0.0054055, - 0.054029, - -0.028926, - -0.017123, - -0.13716, - -0.0090956, - -0.025214, - 0.042173, - 0.083331, - 0.010112, - 0.14272, - 0.065064, - 0.10501, - 0.074163, - -0.046539, - -0.066633, - 0.055335, - -0.019946, - -0.062504, - 0.023495, - -0.030811, - -0.075534, - -0.047437, - 0.12388, - 0.049601, - 0.039416, - -0.056639, - -0.031688, - 0.062373, - -0.084922, - 0.027668, - 0.074435, - -0.019286, - 0.065479, - -0.034124, - 0.057248, - 0.070976, - -0.053379, - 0.070985, - -0.12663, - -0.0099744, - -0.027831, - -0.0016306, - -0.040445, - 0.029027, - 0.016868, - -0.0047776, - -0.056728, - 0.027216, - 0.064337, - 0.093055, - -0.015736, - -0.014444, - -0.0058953, - 0.041249, - -0.017613, - -0.019553, - 0.012688, - 0.0049823, - 0.050303, - -0.041798, - -0.051654, - 0.0016049, - -0.084209, - 0.074958, - 0.06804, - 0.042758, - 0.064849, - 0.035826, - 0.042051, - -0.059014, - -0.053564, - -0.024167, - -0.030865, - 0.055547, - 0.012259, - -0.011364, - 0.0068441, - 0.097202, - 0.0037289, - 0.022351, - -0.058785, - -0.045013, - 0.071324, - -0.083389, - 0.0020318, - 0.12245, - 0.01837, - -0.052721, - 0.02738, - 0.046876, - -0.013759, - -0.021418, - 0.0081685, - 0.022273, - -0.064857, - 0.041791, - -0.052333, - 0.037759, - -0.13418, - -0.022337, - -0.11481, - 0.096144, - 0.019862, - -0.013981, - -0.0019927, - 0.021788, - -0.066716, - -0.040693, - 0.10063, - 0.0045763, - 0.025526, - 0.003077, - -0.072832, - 0.028966, - 0.030806, - 0.041593, - 0.027676, - 0.039047, - 0.018351, - -0.021957, - -0.019197, - 0.11393, - -0.015167, - 0.096875, - 0.0020724, - 0.049078, - 0.025493, - -0.023138, - 0.022628, - -0.016481, - -0.075023, - 0.00021969, - 0.054315, - -0.060042, - -0.033352, - 0.042291, - 0.0096159, - -0.065751, - 0.070699, - -0.059705, - 0.11524, - -0.015439, - 0.019539, - 0.067092, - -0.026119, - -0.036935, - -0.01071, - -0.020356, - 0.010117, - 0.022685, - 0.038874, - -0.022417, - 0.031843, - -0.01355, - 0.10343, - 0.040294, - 0.059866, - 0.0023702, - -0.069851, - -0.026963, - 0.0034388, - -0.036738, - -0.056249, - -0.032738, - -0.065188, - -0.021583, - 0.02755, - -0.014195, - 0.010278, - 0.085327, - -0.053261, - -0.014651, - -0.044384, - 0.0096727, - -0.017205, - 0.0040063, - 0.035831, - -0.045194, - 0.091837, - -0.0061468, - 0.034145, - 0.034518, - 0.0016294, - 0.02862, - 0.045831, - -0.082906, - -0.026775, - -0.032253, - -0.025651, - 0.02008, - 0.020796, - 0.037889, - -0.020278, - -0.032975, - 0.0071168, - -0.042386, - 0.039297, - -0.043029 - ], - "school": [ - 0.0081105, - -0.087196, - 0.063132, - 0.010836, - 0.032565, - -0.12063, - -0.017487, - -0.10478, - 0.095855, - -0.024057, - -0.007533, - -0.10544, - 0.049656, - 0.044633, - 0.0075828, - -0.0071035, - 0.17435, - 0.05724, - 0.058765, - 0.066199, - -0.0017165, - 0.022873, - -0.022047, - 0.099718, - -0.054152, - 0.074878, - 0.0084207, - -0.018929, - -0.042004, - 0.041391, - 0.042852, - 0.028014, - -0.015165, - -0.053359, - -0.0089854, - 0.058264, - 0.063265, - 0.0058539, - 0.02907, - -0.059925, - 0.034072, - -0.15389, - 0.029259, - 0.01383, - 0.037708, - -0.012624, - -0.0030196, - 0.022512, - -0.06116, - 0.038283, - 0.038195, - 0.029584, - 0.0032377, - 0.02371, - -0.065593, - 0.0027554, - -0.05736, - -0.048341, - -0.02098, - 0.000049844, - 0.041002, - -0.038961, - 0.12429, - 0.083312, - 0.032069, - -0.046269, - 0.0079693, - -0.058255, - 0.018689, - 0.0031435, - -0.013764, - -0.064963, - 0.017878, - 0.0093676, - 0.0012579, - -0.042823, - 0.047804, - 0.0019371, - 0.039255, - 0.025684, - 0.00053507, - 0.020885, - -0.0143, - 0.013353, - -0.085674, - 0.033001, - -0.13718, - -0.052974, - -0.054295, - 0.014365, - 0.021191, - 0.036884, - -0.094275, - 0.016146, - 0.028649, - 0.10359, - -0.02657, - 0.052577, - 0.049705, - 0.039924, - 0.13647, - 0.0030257, - 0.074785, - 0.0076061, - 0.04054, - -0.10211, - 0.038772, - 0.031185, - 0.0068426, - 0.093408, - 0.0064122, - 0.10525, - 0.056226, - 0.10341, - -0.010062, - -0.020412, - -0.058575, - -0.02131, - -0.016211, - -0.020562, - -0.029842, - -0.031664, - 0.00015794, - 0.043245, - 0.002959, - -0.019718, - -0.049961, - -0.11621, - -0.06397, - 0.086489, - -0.006509, - 0.042285, - 0.034862, - 0.011021, - -0.026845, - -0.0024918, - 0.03148, - 0.031761, - 0.034578, - -0.030433, - 0.018666, - -0.0041255, - -0.0076729, - -0.0038726, - -0.029195, - -0.063494, - 0.015084, - -0.012601, - -0.023653, - 0.0005414, - 0.018189, - 0.073774, - -0.011847, - -0.051641, - 0.042432, - 0.044203, - 0.067673, - 0.062567, - -0.012384, - -0.0080466, - 0.027824, - -0.031087, - -0.0094149, - -0.026223, - 0.019987, - -0.03911, - 0.0728, - 0.008393, - 0.0096517, - -0.035574, - -0.0031539, - -0.010404, - 0.0060132, - -0.00068696, - 0.055311, - 0.057145, - -0.0083632, - 0.030729, - -0.025574, - -0.053767, - -0.0051018, - -0.074823, - -0.034266, - -0.0058894, - 0.025015, - -0.025831, - -0.014415, - 0.12174, - 0.037761, - -0.041896, - -0.041299, - 0.061729, - -0.004418, - 0.0093218, - 0.042887, - -0.035593, - 0.097068, - 0.035613, - 0.082919, - -0.012313, - -0.17948, - 0.061551, - -0.01156, - 0.023411, - -0.02254, - 0.036961, - -0.02882, - -0.080452, - 0.0040291, - -0.024376, - 0.11482, - -0.016306, - -0.010688, - 0.062029, - -0.08456, - 0.0031273, - 0.010058, - -0.010125, - 0.072042, - -0.068674, - 0.039385, - -0.013463, - -0.064998, - 0.11487, - -0.035513, - -0.03804, - 0.0066034, - 0.083808, - 0.011105, - -0.026086, - 0.046586, - -0.066706, - -0.046643, - 0.024142, - -0.012293, - 0.076578, - 0.04123, - 0.0015948, - -0.053308, - 0.01845, - 0.078532, - -0.064173, - 0.10801, - -0.016424, - 0.0085608, - 0.10181, - -0.010549, - -0.010728, - -0.072526, - 0.03464, - -0.011252, - -0.00083633, - -0.011205, - -0.070122, - 0.0066789, - -0.028675, - -0.052267, - 0.039257, - -0.039624, - 0.020723, - -0.0003586, - -0.026748, - 0.034495, - -0.041094, - 0.017603, - 0.039289, - -0.034114, - 0.038497, - 0.019541, - 0.09226, - 0.011428, - 0.0854, - -0.11936, - -0.023542, - 0.021076, - -0.014971, - -0.017192, - -0.039334, - -0.0056618, - 0.011342, - 0.07031, - -0.025764, - 0.016309, - -0.020494, - 0.024249, - 0.012838, - 0.0075995, - -0.077302, - -0.035523, - 0.017358, - -0.0050189, - 0.029695, - 0.0019721, - 0.031461, - -0.051358, - 0.058421, - 0.058956, - 0.030136, - -0.0038936, - -0.021629 - ], - "thunderstorms": [ - -0.0044488, - -0.008426, - -0.0082053, - -0.077553, - -0.0082524, - -0.014465, - 0.011581, - -0.064359, - 0.014117, - 0.039404, - -0.010961, - 0.0044789, - -0.012262, - -0.0065459, - -0.010867, - 0.034951, - 0.011346, - 0.048269, - 0.012399, - -0.010158, - 0.030884, - -0.011003, - -0.021537, - 0.026689, - 0.050903, - -0.030923, - 0.00069057, - -0.023523, - 0.097677, - -0.0052702, - -0.0056774, - 0.047828, - 0.032947, - -0.021214, - 0.011446, - 0.025157, - -0.019441, - -0.019837, - -0.0062311, - -0.026688, - -0.023033, - -0.060095, - 0.057464, - -0.02429, - -0.0584, - 0.029049, - 0.067362, - -0.0084529, - -0.036358, - -0.012333, - 0.03036, - 0.0020767, - -0.031779, - -0.022158, - -0.036343, - 0.023088, - 0.074528, - -0.047579, - -0.031525, - 0.031013, - -0.0058855, - -0.027682, - 0.039283, - 0.0082973, - -0.029619, - 0.01178, - -0.0078227, - 0.027235, - 0.011011, - 0.017992, - 0.068133, - 0.036155, - 0.0085687, - 0.022592, - -0.054173, - -0.047423, - 0.00052563, - -0.044105, - -0.030413, - 0.044744, - -0.034783, - 0.0016562, - -0.064607, - 0.03913, - 0.058305, - -0.021864, - 0.035322, - -0.015207, - 0.054334, - 0.0017442, - -0.010221, - -0.037428, - -0.052058, - -0.022104, - 0.0071215, - 0.032902, - 0.019936, - 0.03789, - 0.005273, - -0.022385, - 0.014524, - -0.009457, - 0.027286, - -0.039628, - 0.0515, - 0.019404, - 0.00047507, - -0.015348, - 0.036678, - -0.0036935, - 0.015698, - -0.017483, - 0.016303, - 0.033332, - -0.01438, - -0.0355, - -0.003298, - 0.0311, - -0.031237, - 0.021566, - -0.013595, - 0.0090701, - 0.034232, - -0.048605, - 0.063779, - 0.0096599, - 0.021841, - -0.0087284, - -0.099938, - 0.065744, - 0.038179, - 0.040694, - -0.054594, - 0.038388, - 0.029986, - 0.0042755, - 0.04794, - 0.01981, - -0.00013915, - 0.052988, - 0.037259, - 0.0043936, - -0.025617, - -0.022248, - -0.021552, - -0.0054201, - -0.0012846, - 0.0048459, - -0.094001, - 0.023353, - 0.007102, - 0.058004, - -0.027941, - 0.00017452, - 0.053063, - -0.0087238, - 0.0085556, - 0.01928, - 0.0089712, - -0.0087757, - 0.061427, - 0.0070405, - -0.016684, - -0.023189, - -0.0099322, - -0.025895, - 0.019, - 0.027306, - 0.011383, - 0.035516, - -0.012107, - -0.017775, - 0.082467, - -0.019831, - 0.033701, - 0.037773, - 0.043436, - -0.0009006, - -0.023432, - -0.0233, - 0.0045068, - 0.023251, - -0.026584, - -0.026314, - -0.029504, - -0.012474, - -0.0436, - 0.098742, - 0.033897, - -0.047875, - 0.062711, - 0.012948, - -0.089006, - -0.028375, - -0.042528, - -0.044509, - 0.01334, - 0.0611, - 0.02915, - -0.042164, - -0.091314, - 0.039794, - -0.086041, - 0.036926, - 0.10137, - 0.022821, - -0.0004233, - 0.0091657, - -0.0012439, - -0.05546, - 0.037624, - 0.010054, - 0.074776, - -0.048847, - 0.076606, - 0.0053217, - 0.0098503, - -0.0050058, - -0.0089937, - -0.086021, - -0.03366, - -0.0096747, - -0.019807, - 0.059466, - 0.030019, - 0.0060014, - -0.054678, - 0.068728, - 0.035523, - 0.026974, - 0.035492, - -0.028141, - -0.043704, - 0.056565, - 0.067735, - 0.098492, - 0.014733, - 0.037531, - -0.0074743, - -0.035502, - -0.0017252, - 0.015281, - 0.0073435, - -0.011361, - -0.0066054, - -0.033271, - 0.012903, - -0.020454, - 0.027804, - -0.019506, - 0.043649, - -0.013722, - 0.021806, - 0.02684, - -0.058689, - 0.062813, - 0.0076547, - -0.0075033, - 0.028312, - -0.010362, - 0.047599, - 0.042353, - -0.017832, - -0.03045, - -0.0067884, - -0.051856, - -0.016146, - 0.013986, - 0.012147, - -0.058342, - -0.046301, - 0.053351, - -0.07914, - -0.010703, - -0.019045, - -0.063976, - -0.0074248, - -0.074976, - -0.036705, - -0.012009, - 0.032614, - -0.041848, - 0.0047136, - -0.035484, - -0.039945, - -0.032552, - 0.046592, - 0.004547, - -0.030437, - -0.00073822, - 0.021256, - -0.0085118, - -0.035736, - -0.013246, - 0.021097, - -0.00087066, - -0.052172, - 0.029032, - 0.042673, - -0.017074 - ], - "magnate": [ - -0.030423, - -0.037102, - 0.00064333, - -0.0087958, - -0.065908, - -0.016534, - -0.018045, - -0.11748, - 0.16859, - 0.036116, - 0.055438, - 0.093862, - 0.002688, - 0.081874, - -0.031542, - 0.014223, - 0.040177, - -0.041789, - 0.013371, - 0.018646, - 0.011628, - -0.051011, - 0.0021075, - 0.028021, - 0.038163, - -0.018027, - -0.015871, - 0.032075, - -0.055796, - 0.02313, - -0.0010556, - 0.0048794, - -0.024322, - 0.023416, - 0.077303, - 0.032339, - -0.065208, - 0.0015768, - -0.021228, - 0.10963, - 0.039792, - -0.19011, - 0.034255, - 0.036416, - 0.01046, - 0.088975, - -0.033765, - 0.024048, - 0.081886, - -0.040439, - 0.034225, - -0.049211, - -0.017737, - -0.01798, - 0.020788, - -0.047886, - 0.0060427, - -0.021354, - -0.03351, - 0.039854, - -0.022104, - -0.014577, - 0.081347, - 0.084723, - 0.12509, - 0.016823, - 0.071858, - 0.0034572, - 0.068729, - -0.078756, - 0.053895, - -0.019878, - 0.084399, - -0.024815, - 0.0197, - -0.01192, - -0.11905, - 0.023204, - 0.0017012, - 0.076065, - -0.022729, - -0.094115, - -0.099295, - 0.023381, - -0.058976, - -0.12669, - -0.0062207, - 0.01748, - 0.035767, - -0.092974, - -0.010687, - 0.05058, - -0.10032, - -0.18913, - -0.015851, - 0.12088, - -0.090386, - 0.028848, - -0.028988, - 0.025393, - -0.040544, - 0.043489, - 0.063347, - -0.074281, - 0.0042844, - -0.22192, - 0.036373, - -0.033531, - 0.057774, - 0.010393, - -0.095032, - 0.090356, - 0.094462, - 0.052361, - 0.019152, - -0.017142, - 0.040586, - -0.03829, - -0.022569, - -0.040219, - -0.023662, - -0.0048381, - 0.038444, - -0.048928, - 0.10732, - -0.012955, - -0.037606, - -0.088539, - -0.10248, - 0.087527, - 0.089495, - 0.016446, - -0.054021, - -0.024779, - 0.00055776, - 0.032582, - -0.013883, - 0.1568, - -0.025219, - -0.0040762, - 0.088977, - -0.01808, - -0.0092642, - 0.091075, - -0.016594, - -0.015347, - 0.056082, - -0.10578, - -0.079097, - -0.051313, - 0.019793, - 0.023206, - 0.040055, - -0.11569, - -0.0037053, - -0.081589, - 0.062549, - 0.051642, - 0.016202, - 0.011645, - 0.027219, - -0.0031046, - -0.0971, - 0.015767, - -0.12406, - -0.041096, - -0.0063698, - -0.081677, - -0.007641, - 0.02922, - 0.030232, - -0.046902, - -0.14766, - 0.039097, - -0.00046312, - 0.044936, - -0.067714, - 0.087708, - -0.03047, - 0.12194, - -0.039184, - -0.053688, - 0.053306, - -0.05819, - -0.046343, - -0.01726, - -0.012616, - 0.13323, - 0.058038, - -0.017467, - 0.01022, - 0.059016, - 0.00034321, - 0.11852, - 0.019284, - 0.025172, - -0.070708, - 0.04394, - -0.038176, - 0.01934, - -0.20831, - -0.018777, - 0.021226, - -0.059004, - -0.0072202, - 0.02287, - -0.013083, - -0.060785, - -0.03575, - -0.0030764, - 0.11113, - 0.030429, - -0.064692, - -0.03621, - -0.066679, - 0.095616, - -0.056141, - -0.035818, - 0.1193, - 0.093832, - 0.078909, - -0.077018, - 0.011302, - 0.107, - 0.07637, - 0.049217, - 0.12966, - 0.014063, - -0.1008, - 0.0048017, - -0.057154, - 0.030588, - -0.0015406, - -0.045524, - -0.068234, - 0.058122, - -0.045043, - -0.03887, - 0.039881, - -0.10872, - 0.048334, - -0.052843, - 0.027064, - 0.032927, - -0.013603, - -0.049595, - 0.0072004, - 0.076761, - -0.054591, - 0.062973, - -0.024556, - -0.089963, - -0.049345, - 0.086017, - 0.0064879, - 0.080184, - -0.064275, - 0.026212, - 0.033981, - -0.0041425, - 0.02815, - -0.050818, - 0.042917, - 0.045814, - -0.030276, - 0.033567, - -0.12858, - 0.0094225, - -0.043143, - -0.0023383, - -0.035572, - 0.10089, - -0.073321, - 0.018401, - 0.030148, - -0.049068, - -0.018504, - -0.010603, - -0.037576, - 0.047369, - 0.034841, - 0.043398, - 0.029769, - -0.055349, - -0.066419, - 0.0011541, - -0.075796, - -0.02587, - 0.030826, - 0.039969, - -0.058332, - 0.03033, - 0.022022, - 0.036207, - -0.064869, - -0.13927, - -0.093983, - 0.030261, - -0.063496, - -0.069364 - ], - "cashflow": [ - 0.059759, - 0.0033977, - -0.060609, - -0.047768, - -0.027907, - 0.0093074, - -0.035089, - -0.063217, - 0.032947, - -0.017448, - 0.08912, - -0.013807, - -0.021917, - -0.041525, - -0.063496, - 0.011481, - 0.051952, - 0.017846, - 0.079025, - 0.00063711, - 0.016095, - 0.029441, - -0.064733, - 0.061879, - 0.047406, - 0.014601, - 0.022436, - -0.03322, - 0.046711, - 0.024754, - 0.034464, - 0.022376, - -0.053304, - -0.075358, - 0.017618, - 0.041322, - -0.030093, - -0.029859, - -0.0064478, - -0.0046133, - 0.029221, - -0.09909, - 0.048959, - 0.022214, - -0.069493, - -0.049216, - 0.030615, - -0.0049275, - -0.012996, - -0.029766, - 0.028207, - -0.085336, - 0.025334, - -0.023782, - -0.068007, - -0.0081974, - -0.03318, - -0.033206, - -0.026092, - 0.042786, - 0.03096, - -0.035835, - 0.093787, - 0.096557, - 0.060078, - -0.050109, - 0.090853, - -0.026086, - -0.029952, - -0.063789, - 0.027405, - -0.0046403, - 0.0087748, - -0.00017088, - 0.053074, - -0.0064779, - 0.073721, - -0.0511, - -0.024429, - -0.063902, - 0.0068699, - 0.0040966, - -0.017581, - 0.12172, - 0.020907, - -0.020387, - -0.027761, - -0.017308, - -0.00014262, - -0.08886, - 0.03138, - -0.030824, - -0.075055, - -0.0038839, - -0.04601, - 0.041647, - -0.055379, - -0.083401, - 0.017263, - -0.020166, - -0.0094185, - -0.053633, - -0.073072, - 0.025548, - 0.0062781, - -0.047523, - -0.06713, - -0.0084127, - -0.048512, - -0.034162, - -0.033507, - 0.029343, - 0.072951, - -0.031179, - -0.011807, - -0.043653, - -0.011071, - 0.0082407, - -0.042672, - -0.027142, - -0.043118, - -0.053316, - -0.0062625, - 0.040839, - 0.097594, - 0.060309, - -0.05135, - -0.066186, - 0.03675, - 0.081363, - 0.03201, - -0.046654, - -0.042702, - -0.043549, - -0.058907, - 0.05611, - 0.083003, - 0.060201, - -0.033171, - 0.13199, - 0.0025576, - -0.0020561, - -0.024704, - 0.01535, - -0.0082588, - -0.070361, - 0.014068, - -0.076256, - -0.05144, - 0.023418, - 0.042617, - 0.077385, - 0.095309, - -0.084414, - 0.0033252, - -0.014457, - 0.11046, - 0.0032368, - 0.00043525, - 0.019024, - 0.11346, - 0.074319, - -0.099247, - 0.059239, - 0.056659, - 0.031064, - -0.020662, - -0.0056033, - 0.041374, - 0.16028, - -0.079446, - -0.028057, - 0.0096653, - -0.030514, - -0.0034302, - 0.036528, - -0.060933, - -0.0084015, - -0.015252, - 0.0045957, - 0.0085564, - -0.042004, - -0.023655, - -0.041191, - 0.0066352, - -0.0712, - 0.0030604, - 0.10419, - 0.0019796, - -0.006802, - -0.011104, - 0.017014, - 0.037657, - -0.02538, - -0.0416, - -0.092378, - -0.09679, - -0.029596, - -0.0095399, - -0.042381, - -0.15706, - 0.0056809, - 0.016617, - -0.032273, - 0.11194, - 0.033272, - -0.024208, - -0.018845, - -0.071645, - -0.034254, - 0.080789, - -0.012978, - -0.017444, - -0.025419, - 0.069869, - 0.042778, - -0.017438, - 0.073227, - -0.037612, - -0.018049, - 0.088722, - 0.005259, - 0.079267, - 0.082645, - 0.083949, - 0.008142, - -0.055338, - 0.09165, - 0.11296, - -0.045034, - 0.057403, - -0.065394, - -0.076067, - -0.0090449, - 0.050254, - -0.0078354, - -0.0032742, - -0.030301, - 0.022032, - -0.048601, - 0.072699, - 0.05251, - 0.046088, - 0.054176, - -0.084146, - -0.0016946, - -0.077974, - -0.068085, - -0.0095237, - -0.039674, - 0.040839, - -0.012018, - 0.078162, - 0.082505, - -0.018726, - -0.067521, - 0.0024538, - 0.036852, - 0.0085856, - 0.059085, - 0.025809, - -0.022564, - -0.086454, - -0.024813, - -0.0070278, - 0.0069943, - -0.021359, - 0.016894, - 0.02822, - 0.096126, - 0.036421, - 0.05078, - -0.11844, - -0.037251, - 0.017427, - -0.051935, - 0.10191, - -0.0096799, - -0.018836, - 0.031378, - 0.1182, - 0.044753, - -0.0097669, - 0.025356, - 0.00912, - -0.004878, - 0.0087052, - 0.053129, - -0.078332, - 0.048957, - 0.037189, - 0.066985, - -0.08312, - 0.053203, - -0.031005, - -0.11117, - -0.074595, - 0.0012224, - -0.036772, - 0.010245 - ], - "non-food": [ - -0.048355, - -0.039963, - -0.091563, - -0.024623, - -0.026079, - -0.00092384, - -0.056235, - -0.049674, - 0.0096432, - -0.02209, - -0.048959, - 0.019117, - -0.03637, - -0.020389, - 0.038304, - -0.063589, - 0.072623, - 0.08618, - 0.012831, - -0.0027903, - 0.072514, - 0.0070319, - 0.061464, - 0.048906, - -0.0055891, - -0.058684, - -0.027286, - 0.042806, - 0.096148, - 0.0041818, - 0.071135, - -0.042657, - 0.053773, - -0.039155, - 0.11401, - -0.035144, - 0.0051012, - 0.030935, - -0.024384, - 0.041781, - -0.035246, - -0.13736, - 0.079967, - -0.017783, - 0.07111, - -0.06357, - -0.022761, - -0.0064248, - -0.00072001, - -0.06871, - -0.0056462, - 0.011307, - 0.03885, - -0.038126, - 0.02591, - 0.057783, - -0.057568, - -0.084714, - 0.013749, - -0.049354, - -0.069357, - -0.058626, - 0.1017, - 0.040076, - 0.0030063, - -0.036811, - 0.11687, - -0.052198, - -0.030226, - -0.069279, - 0.048491, - -0.043822, - 0.060019, - -0.040795, - -0.025971, - 0.033846, - -0.016836, - -0.004336, - 0.070262, - 0.0030557, - -0.020656, - -0.039423, - -0.048701, - 0.067608, - 0.019365, - 0.053258, - -0.022527, - 0.016917, - 0.021293, - -0.049373, - -0.036915, - -0.0077168, - -0.081086, - 0.01409, - -0.10545, - 0.020543, - 0.016296, - 0.067402, - -0.0039288, - -0.039261, - -0.052141, - 0.016519, - -0.071615, - 0.0052892, - -0.024533, - -0.10067, - -0.14679, - 0.037498, - 0.022893, - 0.024776, - 0.016284, - 0.11665, - 0.0046899, - 0.032552, - 0.016629, - -0.069839, - -0.038425, - -0.027613, - -0.0071751, - -0.057605, - -0.12532, - 0.073035, - -0.029502, - -0.070787, - 0.15106, - -0.042276, - -0.089865, - -0.053265, - 0.10512, - 0.082565, - -0.0087838, - 0.076633, - 0.084176, - -0.019919, - -0.043549, - 0.045226, - -0.020319, - 0.054232, - 0.061979, - 0.024177, - -0.047742, - 0.02841, - -0.0083092, - -0.031674, - -0.0044553, - 0.04219, - 0.044805, - 0.0097229, - 0.018046, - 0.016737, - 0.034304, - 0.13061, - -0.038538, - -0.096852, - 0.026984, - 0.0024822, - -0.038648, - 0.0099558, - -0.022707, - 0.13634, - 0.036745, - -0.067368, - -0.032761, - 0.04709, - -0.0097166, - 0.065686, - -0.033858, - -0.084412, - 0.054878, - 0.00099588, - 0.012076, - -0.029696, - -0.0058248, - -0.023949, - -0.057478, - 0.035226, - -0.048933, - 0.0092584, - -0.055697, - -0.0044104, - 0.029486, - -0.017274, - 0.01713, - -0.071596, - -0.014654, - -0.10149, - 0.025162, - 0.14454, - -0.025687, - -0.084757, - 0.033257, - 0.080356, - 0.071549, - -0.07054, - 0.018799, - -0.011248, - -0.09257, - -0.083586, - -0.0050585, - -0.0083048, - -0.15397, - 0.018747, - -0.041269, - -0.052563, - -0.069406, - 0.10771, - -0.0029454, - -0.04783, - 0.11349, - -0.0078345, - 0.11663, - -0.011865, - 0.023995, - -0.030382, - 0.046215, - 0.067289, - 0.023932, - -0.012355, - 0.027418, - 0.00080655, - 0.029937, - 0.0090229, - -0.016391, - 0.097915, - -0.00022097, - -0.04701, - 0.016882, - 0.05201, - 0.042277, - -0.026807, - -0.017477, - 0.00084532, - -0.042983, - -0.1081, - -0.014066, - 0.027118, - -0.029139, - -0.086381, - 0.01029, - -0.10686, - -0.0415, - 0.00051551, - 0.023814, - -0.02912, - -0.11436, - 0.095397, - -0.0091981, - 0.034368, - -0.041565, - 0.032388, - -0.02875, - 0.01353, - -0.0096234, - 0.0057598, - -0.060437, - 0.023776, - 0.040427, - -0.0023029, - 0.06655, - -0.029241, - 0.071211, - -0.045087, - 0.04864, - -0.024683, - 0.0044773, - 0.042039, - 0.018838, - -0.027689, - 0.013847, - 0.032275, - 0.00029912, - 0.056774, - -0.094845, - -0.037107, - -0.013752, - -0.094103, - 0.048407, - -0.025119, - -0.095566, - -0.009435, - 0.15218, - -0.0079871, - -0.045628, - 0.015312, - -0.014127, - 0.035913, - -0.03602, - -0.019552, - 0.0058366, - -0.059656, - 0.0093223, - 0.11076, - -0.02099, - -0.011132, - -0.058983, - -0.022634, - -0.060137, - 0.0078041, - 0.015889, - 0.016071 - ], - "mothers": [ - -0.030003, - -0.047748, - 0.026401, - -0.094794, - -0.026678, - 0.0071587, - 0.0040323, - -0.081506, - 0.045444, - -0.0022279, - 0.016811, - 0.009656, - -0.041672, - -0.014238, - -0.031025, - -0.013796, - 0.0302, - 0.0055214, - 0.051274, - 0.033434, - 0.0065267, - 0.05211, - -0.019094, - 0.039848, - -0.01933, - 0.0099537, - 0.010893, - 0.040805, - 0.07383, - -0.012428, - 0.015573, - -0.063002, - -0.039456, - 0.059814, - -0.044527, - 0.059589, - -0.028717, - -0.10875, - -0.027585, - -0.0155, - -0.063974, - -0.066229, - 0.0031706, - -0.073558, - 0.046022, - -0.004956, - 0.01929, - 0.06359, - -0.0086429, - -0.047716, - 0.034533, - -0.0059976, - 0.018949, - 0.015143, - -0.046762, - -0.012735, - 0.007343, - -0.12038, - -0.04797, - -0.012457, - -0.049544, - -0.045855, - 0.11048, - 0.0058916, - 0.034065, - -0.015499, - 0.017763, - -0.032076, - -0.044112, - -0.045611, - -0.027805, - 0.021737, - 0.12801, - -0.041096, - 0.03917, - 0.0056528, - 0.015979, - -0.032184, - -0.012978, - -0.0087615, - 0.0099823, - 0.031344, - 0.060554, - 0.050256, - -0.042291, - 0.034623, - 0.021432, - -0.031451, - -0.072886, - 0.032608, - -0.037298, - -0.024226, - -0.094058, - -0.020135, - 0.05891, - 0.09516, - -0.037569, - 0.018606, - 0.074, - -0.084699, - 0.015004, - -0.12255, - -0.032747, - -0.040055, - 0.0035538, - -0.068724, - 0.055228, - 0.0062908, - 0.016859, - 0.053144, - 0.0044218, - 0.098406, - 0.042038, - 0.034847, - 0.018233, - 0.019091, - -0.020509, - 0.0428, - -0.046703, - -0.023447, - -0.028593, - 0.054132, - 0.061224, - -0.10016, - 0.096974, - 0.0080335, - 0.0095601, - -0.087465, - 0.10072, - 0.041397, - -0.0097544, - 0.13049, - 0.017872, - 0.021173, - -0.0089951, - -0.0055154, - -0.0333, - 0.054079, - -0.017928, - -0.013335, - 0.04103, - -0.02352, - 0.018061, - 0.024427, - 0.059503, - -0.0011909, - -0.010072, - 0.077256, - -0.037267, - -0.015566, - 0.04405, - 0.064225, - 0.0071519, - -0.021139, - 0.04986, - -0.060068, - 0.024377, - 0.070814, - 0.068075, - -0.022442, - 0.05614, - -0.002064, - 0.035877, - 0.0088932, - 0.011569, - 0.030352, - 0.021566, - 0.05075, - 0.013715, - -0.028536, - -0.03955, - 0.013481, - -0.02479, - 0.018564, - 0.023859, - 0.046156, - 0.0349, - 0.056239, - -0.00004349, - 0.02275, - 0.075124, - -0.062529, - -0.053479, - -0.003676, - -0.028327, - -0.09644, - 0.006559, - 0.12646, - 0.041182, - -0.021319, - 0.0033621, - 0.082787, - -0.13427, - -0.053082, - 0.035695, - 0.0054973, - 0.012884, - 0.06706, - -0.0076617, - -0.074498, - -0.10151, - 0.11761, - -0.019343, - -0.027635, - 0.014875, - 0.021375, - -0.054758, - -0.045593, - 0.012334, - -0.078209, - 0.062248, - -0.0089079, - 0.087707, - 0.048743, - -0.095083, - 0.043424, - -0.046412, - -0.018631, - -0.028849, - -0.049454, - 0.052443, - -0.040998, - 0.0046628, - 0.11398, - 0.053587, - 0.0021316, - 0.01434, - 0.033203, - 0.06626, - -0.037666, - 0.049537, - 0.022976, - -0.07836, - -0.0033946, - 0.063234, - 0.095395, - 0.023826, - 0.039676, - 0.018974, - -0.038196, - 0.0071507, - -0.027976, - -0.02108, - -0.069446, - 0.063407, - -0.006662, - -0.073733, - -0.084648, - 0.020632, - -0.029041, - 0.055536, - 0.017849, - 0.054324, - 0.044552, - 0.068107, - -0.0041048, - -0.033852, - 0.015633, - 0.072855, - -0.069697, - -0.069217, - -0.013946, - 0.045, - 0.014387, - 0.10703, - 0.068103, - -0.015586, - 0.043727, - 0.0075594, - 0.022367, - -0.028957, - 0.076283, - -0.10527, - -0.010075, - 0.033032, - 0.047701, - -0.028874, - 0.00702, - 0.029696, - 0.028504, - 0.021161, - 0.049184, - 0.057093, - -0.0081792, - -0.010236, - 0.12874, - -0.035798, - -0.10415, - 0.032034, - 0.007721, - 0.02177, - 0.036136, - -0.11343, - -0.0051516, - 0.015825, - -0.017133, - 0.11547, - 0.040029, - 0.0031149, - 0.089189 - ], - "skills": [ - -0.029385, - -0.044235, - -0.016333, - -0.048326, - -0.073246, - 0.03271, - -0.011543, - -0.079401, - 0.024084, - -0.026947, - 0.042037, - -0.022515, - -0.050803, - -0.0089486, - 0.0089553, - 0.045117, - 0.1322, - 0.088367, - 0.096338, - -0.0015748, - -0.055116, - 0.012999, - 0.051116, - 0.098486, - -0.14882, - -0.052809, - -0.045016, - -0.02963, - 0.076233, - 0.015842, - -0.014692, - -0.04256, - 0.019127, - -0.035625, - 0.037926, - 0.008485, - 0.024411, - -0.011577, - -0.0175, - -0.02016, - 0.0014015, - -0.15162, - 0.048668, - 0.011936, - 0.069749, - -0.1567, - -0.011269, - -0.036286, - -0.0020211, - -0.019152, - -0.065698, - 0.030318, - 0.00026384, - 0.0531, - -0.092688, - 0.030191, - 0.063007, - -0.04497, - 0.030443, - -0.0024827, - 0.008233, - -0.088897, - 0.2149, - 0.055351, - -0.0076491, - -0.063855, - -0.016407, - -0.012163, - 0.02641, - -0.056355, - 0.058863, - 0.0044274, - 0.050671, - 0.025463, - 0.036024, - 0.0031822, - 0.0050065, - -0.035544, - -0.070251, - -0.013524, - -0.083321, - -0.042416, - 0.0012397, - 0.11613, - 0.02395, - -0.085614, - 0.009056, - -0.010401, - -0.0079238, - 0.020568, - 0.046391, - -0.055185, - -0.086216, - 0.0051034, - -0.02018, - 0.080086, - 0.022212, - 0.045697, - 0.026852, - -0.020322, - 0.08968, - 0.0054185, - 0.058925, - 0.0085274, - 0.027294, - -0.053439, - 0.05656, - 0.031456, - 0.011946, - -0.0082217, - -0.068487, - 0.048068, - 0.065538, - 0.0011877, - 0.017747, - -0.055456, - -0.070144, - -0.043082, - -0.072886, - -0.041846, - 0.019509, - -0.040312, - -0.0028416, - -0.099578, - 0.18611, - -0.0055527, - -0.053406, - -0.051768, - -0.034599, - 0.1311, - 0.070685, - -0.028647, - -0.057561, - -0.037637, - 0.0033088, - -0.054157, - 0.06345, - 0.069909, - -0.017673, - 0.034136, - -0.045557, - -0.026193, - -0.026832, - 0.039461, - -0.050639, - -0.05322, - -0.013981, - -0.043633, - 0.045682, - 0.03865, - 0.070117, - 0.096351, - 0.00061314, - -0.10802, - -0.03552, - 0.016936, - 0.028506, - 0.0079865, - 0.048948, - 0.031321, - 0.083172, - 0.05641, - -0.055003, - 0.06561, - -0.040058, - -0.06663, - -0.015257, - -0.10885, - -0.019803, - 0.054819, - 0.07429, - 0.027435, - 0.017722, - 0.018749, - 0.022183, - 0.083008, - 0.034169, - 0.080565, - -0.055585, - 0.053413, - 0.065849, - -0.092874, - -0.093131, - -0.04271, - 0.050621, - -0.11727, - 0.012803, - 0.1496, - 0.020917, - 0.061388, - -0.028028, - 0.1286, - -0.0034461, - -0.094656, - -0.010403, - 0.05139, - 0.031744, - 0.028807, - 0.033345, - -0.018481, - -0.1614, - -0.012878, - -0.032642, - 0.049235, - -0.064427, - 0.03201, - -0.0032615, - 0.0068178, - 0.028641, - -0.029584, - 0.067496, - 0.040387, - 0.035924, - -0.020359, - 0.015426, - 0.066151, - -0.0072039, - 0.060076, - -0.16108, - 0.099694, - -0.011898, - -0.017684, - 0.0092654, - 0.10643, - 0.21122, - -0.065646, - -0.011011, - 0.11375, - -0.0096602, - 0.0086614, - 0.048886, - -0.029961, - -0.20122, - -0.045748, - 0.013868, - 0.040014, - 0.020839, - 0.0029484, - -0.055063, - 0.063522, - -0.014498, - 0.098154, - 0.030016, - 0.021528, - -0.021092, - 0.039077, - -0.051296, - -0.08036, - -0.0069306, - 0.077094, - 0.073623, - 0.085758, - -0.04099, - 0.0017008, - 0.024134, - 0.060772, - -0.027953, - 0.016986, - 0.063632, - 0.080903, - -0.068756, - 0.037868, - 0.018227, - -0.026718, - -0.040872, - 0.048499, - 0.055668, - 0.049699, - -0.012329, - -0.069135, - -0.00053066, - 0.062066, - -0.12993, - -0.098031, - 0.080036, - 0.0010551, - 0.01889, - 0.018065, - 0.016353, - -0.0026031, - 0.066973, - 0.061565, - 0.0085252, - -0.018208, - 0.040904, - 0.04194, - -0.010445, - 0.071275, - -0.017865, - -0.049919, - 0.021502, - 0.018288, - -0.069387, - 0.0075501, - -0.015229, - 0.072027, - -0.030142, - -0.02437, - -0.06614, - -0.088303 - ], - "companies": [ - 0.010604, - -0.052947, - -0.0018005, - 0.010663, - -0.074359, - -0.0015445, - 0.023132, - -0.090441, - 0.059365, - 0.015919, - 0.00039594, - -0.049643, - -0.017738, - -0.022987, - 0.01997, - 0.061072, - 0.065302, - 0.0020301, - 0.083936, - -0.012104, - 0.0028518, - -0.011264, - -0.0066953, - 0.054447, - -0.034828, - -0.0049603, - 0.05288, - 0.00426, - 0.051323, - -0.0016936, - -0.043871, - -0.021914, - -0.067527, - 0.01819, - 0.024735, - 0.035572, - -0.020143, - -0.022527, - 0.060991, - 0.049381, - -0.051477, - -0.077749, - -0.03933, - -0.010677, - 0.030007, - -0.0023269, - 0.018819, - 0.018526, - 0.014371, - -0.028197, - 0.0096555, - -0.019362, - 0.01431, - 0.01456, - -0.058564, - 0.045108, - 0.00081499, - 0.061533, - -0.0012563, - -0.015904, - -0.0026087, - -0.0027173, - 0.078457, - 0.0038496, - 0.08281, - -0.027933, - -0.020596, - -0.038948, - 0.060468, - -0.0032443, - -0.018486, - -0.02949, - 0.093926, - 0.06149, - 0.012141, - -0.0034531, - 0.047968, - -0.034087, - -0.015731, - -0.053721, - -0.033589, - 0.0077762, - -0.039471, - 0.071776, - -0.029744, - -0.013367, - -0.011218, - -0.025894, - -0.015302, - -0.027111, - -0.012359, - 0.011295, - -0.067587, - -0.020759, - 0.00088235, - 0.048843, - -0.015963, - -0.0097702, - 0.023027, - -0.0011378, - -0.010908, - -0.016347, - -0.0048727, - -0.010039, - 0.061387, - -0.06847, - -0.0077196, - 0.00059516, - 0.048717, - 0.032718, - 0.023141, - 0.097213, - 0.052341, - 0.031218, - 0.018731, - -0.0091418, - -0.017469, - -0.013685, - -0.04152, - -0.0091145, - -0.052472, - -0.020341, - 0.043487, - -0.045717, - 0.099758, - 0.02574, - -0.043435, - -0.066855, - 0.032445, - 0.076614, - -0.021736, - 0.17078, - -0.029768, - -0.040242, - 0.04954, - 0.029297, - 0.037821, - 0.029395, - -0.038737, - 0.075525, - -0.0046811, - -0.010332, - -0.018345, - 0.041408, - 0.012052, - 0.0014529, - 0.0042564, - -0.0272, - 0.029684, - -0.040612, - 0.04841, - 0.08761, - 0.045945, - -0.036879, - 0.024639, - -0.0083088, - -0.0031985, - -0.012145, - 0.0083824, - -0.011804, - 0.024445, - -0.011829, - 0.070204, - 0.030092, - 0.066164, - 0.040068, - -0.013543, - -0.021143, - -0.0020046, - 0.0048152, - 0.041645, - 0.034268, - 0.007752, - 0.052986, - -0.034996, - 0.031181, - -0.086034, - 0.029832, - -0.039413, - 0.0033576, - 0.025776, - -0.026333, - 0.0042709, - 0.029961, - -0.0074713, - -0.060343, - -0.044657, - 0.082801, - -0.0024885, - 0.018171, - -0.064345, - 0.065052, - -0.10783, - 0.0064002, - 0.036635, - 0.021304, - -0.010996, - -0.071425, - 0.021655, - -0.029589, - -0.13186, - 0.041655, - -0.0038398, - 0.0097707, - 0.072192, - -0.014979, - -0.019835, - 0.011717, - -0.0013802, - -0.056564, - 0.047804, - 0.020452, - 0.055142, - -0.006492, - -0.051738, - -0.0071626, - 0.012536, - -0.033806, - 0.019333, - 0.0010759, - 0.024348, - -0.015662, - 0.0062236, - 0.087411, - 0.035803, - -0.020535, - -0.017738, - 0.011642, - 0.0035143, - 0.0043465, - 0.001789, - 0.013108, - -0.081324, - 0.028565, - 0.020999, - -0.010311, - 0.011062, - -0.028638, - 0.060078, - -0.0038651, - 0.0067873, - 0.0074303, - 0.036477, - 0.02736, - 0.045713, - -0.042729, - -0.014526, - 0.0086554, - 0.0087179, - -0.023123, - 0.013655, - -0.0090982, - -0.0034719, - -0.021561, - -0.045657, - 0.061136, - -0.021882, - 0.037348, - 0.015453, - 0.025123, - 0.028543, - 0.048989, - -0.0042647, - -0.033754, - -0.00607, - 0.025664, - -0.010544, - 0.010774, - -0.055552, - 0.034174, - -0.012102, - 0.060748, - -0.10804, - -0.017248, - 0.020829, - 0.00030909, - 0.036651, - 0.015964, - -0.047159, - -0.0002828, - -0.024051, - 0.0072475, - 0.0043559, - 0.031228, - 0.0042514, - -0.017721, - -0.041207, - -0.079452, - 0.0079694, - 0.01631, - -0.0086474, - 0.017575, - -0.038357, - 0.0015037, - -0.016785, - -0.041144, - -0.010473, - -0.014893, - -0.036454, - -0.036763 - ], - "puppy": [ - 0.041938, - 0.015025, - 0.0041082, - -0.091622, - -0.11666, - 0.055224, - 0.057442, - -0.12267, - -0.018983, - 0.011098, - -0.018689, - 0.014192, - 0.061512, - 0.0079706, - -0.14526, - -0.060458, - 0.087817, - 0.021929, - 0.024016, - -0.017472, - 0.019529, - -0.072257, - -0.023875, - 0.065121, - 0.11848, - 0.077045, - 0.007205, - 0.075935, - 0.031299, - -0.056875, - -0.071291, - -0.029497, - -0.0072966, - 0.04647, - -0.046265, - -0.091813, - 0.084298, - -0.14091, - 0.00056661, - -0.016694, - -0.025492, - -0.089726, - 0.047025, - 0.01564, - 0.080763, - 0.025401, - -0.014266, - 0.064547, - -0.03198, - 0.053977, - 0.11268, - 0.042171, - 0.045967, - -0.097145, - -0.0082366, - -0.10708, - 0.056561, - -0.027362, - -0.070204, - 0.034252, - -0.037891, - -0.12064, - 0.094257, - 0.049694, - -0.030963, - 0.038567, - 0.010851, - -0.060137, - -0.069782, - -0.12474, - -0.040987, - -0.062278, - 0.056666, - -0.0073339, - -0.0084632, - 0.10713, - -0.10739, - -0.009181, - -0.034802, - -0.078805, - -0.017038, - -0.067868, - 0.072627, - 0.026896, - 0.0091973, - -0.052793, - -0.088697, - -0.0059368, - 0.1638, - -0.032706, - -0.00087466, - 0.066427, - -0.14569, - -0.028588, - 0.095218, - 0.11695, - 0.056505, - 0.10989, - 0.031405, - 0.10783, - 0.01617, - 0.028873, - -0.025754, - -0.021768, - -0.073525, - -0.19205, - -0.045243, - -0.062648, - -0.018017, - -0.026944, - -0.078646, - 0.046728, - 0.036722, - 0.0096443, - 0.046795, - -0.0014126, - -0.01445, - 0.0021486, - -0.037072, - -0.002511, - -0.11965, - 0.04833, - 0.089861, - -0.1259, - 0.086153, - 0.12678, - 0.013412, - -0.123, - -0.046382, - 0.0237, - 0.024045, - -0.0058931, - 0.021471, - 0.0072648, - 0.028769, - -0.10588, - -0.027062, - 0.10984, - 0.087807, - -0.023256, - -0.066743, - 0.029927, - -0.038162, - -0.08542, - 0.043649, - 0.027236, - 0.054308, - -0.098374, - -0.049897, - -0.13365, - 0.0078571, - 0.066752, - 0.0025346, - -0.010601, - -0.091744, - -0.079828, - -0.0060204, - -0.027472, - 0.046463, - -0.081599, - 0.047941, - -0.037471, - -0.017862, - -0.024776, - 0.042188, - -0.083189, - -0.02222, - 0.059479, - -0.12383, - 0.074403, - -0.059963, - 0.13384, - -0.068587, - -0.0013322, - 0.026125, - 0.063026, - -0.012742, - -0.014312, - 0.0056729, - -0.072955, - -0.0032601, - -0.12469, - -0.049878, - -0.023333, - 0.047368, - -0.10239, - 0.066348, - 0.17444, - -0.000069123, - -0.084764, - -0.016775, - 0.034122, - 0.0093801, - -0.12708, - 0.029545, - 0.047639, - 0.069362, - 0.071257, - 0.016686, - 0.027529, - -0.1724, - 0.13382, - 0.042778, - -0.075463, - 0.027579, - -0.059389, - -0.058604, - -0.051004, - -0.03587, - -0.060798, - 0.13316, - -0.0054954, - 0.032424, - -0.018972, - -0.049781, - -0.033937, - 0.023901, - -0.015325, - 0.044652, - -0.053763, - 0.018032, - -0.025225, - 0.079806, - 0.07066, - 0.054029, - -0.061545, - -0.049206, - 0.089002, - -0.031177, - -0.0085022, - -0.047529, - -0.11311, - -0.045217, - -0.0044162, - 0.03082, - 0.046453, - 0.078165, - -0.083655, - -0.048147, - -0.082596, - 0.02695, - 0.036827, - 0.091932, - -0.12588, - 0.014415, - 0.094676, - 0.019183, - 0.021155, - -0.042768, - 0.017496, - 0.014201, - -0.039174, - -0.020488, - 0.10354, - 0.064385, - -0.057361, - 0.10205, - -0.062608, - 0.020063, - 0.016622, - -0.067209, - -0.052656, - 0.079644, - -0.039113, - 0.051485, - -0.020212, - -0.03054, - 0.015151, - 0.083048, - 0.017538, - -0.055032, - 0.10834, - -0.11509, - -0.05728, - 0.047591, - -0.066698, - -0.066514, - 0.076886, - -0.031229, - -0.04785, - 0.12187, - 0.076204, - 0.1415, - -0.0063162, - -0.021981, - 0.022408, - -0.031441, - -0.021111, - 0.040698, - -0.011145, - -0.010096, - -0.060448, - -0.13353, - -0.10497, - -0.055549, - -0.0068037, - 0.081166, - 0.033118, - -0.062569, - 0.077011 - ], - "cloudy": [ - 0.011007, - -0.0094837, - 0.033053, - -0.10703, - -0.015329, - -0.095461, - 0.084435, - -0.1103, - -0.0046615, - -0.036982, - -0.044857, - -0.12656, - 0.04875, - -0.0027653, - -0.019888, - 0.0092134, - 0.095741, - 0.043811, - 0.052148, - 0.00543, - 0.098382, - 0.0096765, - -0.070436, - 0.094399, - 0.019799, - -0.015296, - 0.01107, - -0.0037441, - 0.081043, - 0.0092145, - 0.019387, - 0.061937, - -0.021341, - -0.066859, - 0.062161, - 0.10266, - -0.0735, - -0.034018, - 0.050015, - 0.0012915, - -0.00056626, - -0.12113, - -0.051178, - -0.029368, - 0.021233, - 0.006426, - -0.00068633, - -0.04944, - -0.016646, - 0.13125, - -0.063794, - 0.019261, - -0.0046258, - -0.021582, - -0.040899, - -0.021877, - 0.0050395, - -0.076861, - -0.042811, - 0.023347, - 0.063321, - 0.05516, - 0.16785, - -0.11197, - 0.019262, - -0.065562, - -0.0027429, - -0.013162, - 0.0062016, - 0.084362, - 0.11613, - 0.044178, - -0.032592, - 0.12623, - -0.045623, - -0.06524, - -0.030428, - -0.021705, - -0.018016, - 0.0087239, - -0.047631, - -0.077667, - 0.070492, - 0.030985, - -0.0079168, - -0.012338, - 0.095616, - 0.0079767, - -0.0098361, - -0.02218, - 0.082381, - -0.024257, - -0.088955, - -0.061024, - 0.023105, - 0.067003, - -0.0098772, - -0.036579, - -0.051144, - -0.010058, - -0.0067467, - -0.015785, - 0.08858, - 0.080248, - -0.022486, - -0.13846, - -0.027411, - 0.023114, - 0.012631, - 0.079302, - -0.089646, - 0.12447, - 0.020681, - 0.04166, - -0.0076015, - -0.05961, - 0.0013746, - -0.02344, - -0.040224, - 0.040011, - -0.04659, - -0.06809, - 0.086831, - -0.052365, - 0.054412, - 0.0036061, - 0.035131, - -0.010153, - -0.090132, - -0.0051707, - -0.047257, - 0.061912, - -0.0067943, - 0.093296, - -0.084515, - 0.019595, - 0.065658, - 0.10016, - 0.028696, - 0.11419, - 0.18563, - -0.047317, - -0.084065, - -0.046858, - 0.067412, - -0.066139, - -0.06205, - 0.032582, - -0.10162, - -0.025383, - 0.012392, - 0.0045042, - 0.10691, - 0.057192, - -0.013693, - 0.055311, - -0.067422, - -0.0652, - -0.048106, - 0.028041, - 0.052426, - -0.0092946, - -0.00082703, - 0.041207, - -0.0088639, - 0.033335, - -0.035369, - -0.0053145, - -0.0026123, - 0.106, - -0.25244, - -0.011297, - 0.0080572, - 0.077381, - 0.17875, - 0.072434, - 0.11945, - 0.026608, - -0.079327, - 0.027854, - 0.01732, - -0.0036519, - -0.018922, - -0.1371, - -0.0028836, - 0.054925, - -0.013819, - 0.14256, - 0.044852, - 0.030298, - 0.14055, - -0.027345, - -0.024019, - -0.019001, - -0.019727, - -0.092679, - 0.032825, - 0.067342, - 0.063078, - 0.0010972, - -0.1436, - 0.015909, - -0.041612, - -0.039944, - 0.062822, - 0.10426, - 0.0090617, - 0.034858, - -0.021078, - -0.05556, - 0.08437, - -0.05679, - -0.0054305, - -0.0037417, - 0.1523, - -0.042234, - 0.010949, - -0.0034685, - -0.1214, - -0.094747, - 0.0040511, - 0.070335, - -0.042033, - 0.065164, - 0.0056484, - 0.075934, - 0.017023, - 0.048691, - 0.038131, - 0.013677, - 0.046557, - -0.065685, - -0.058652, - 0.075216, - 0.021191, - 0.088661, - 0.016471, - -0.015008, - 0.10174, - -0.087724, - 0.14547, - -0.02188, - -0.018659, - -0.098202, - -0.14216, - -0.047471, - -0.04227, - -0.07235, - -0.0042763, - -0.073516, - 0.013625, - -0.073598, - -0.0041967, - 0.11286, - 0.010101, - 0.06175, - -0.02175, - 0.0047453, - 0.035066, - -0.010483, - 0.038777, - 0.040857, - -0.1018, - 0.010886, - -0.01828, - -0.096447, - 0.019259, - -0.023337, - 0.0025119, - -0.027017, - -0.056284, - 0.11011, - -0.12866, - -0.024721, - 0.10453, - -0.14661, - -0.052301, - -0.0017198, - -0.028325, - -0.063354, - 0.057908, - -0.031709, - -0.039117, - 0.032534, - -0.071822, - -0.026872, - 0.031473, - 0.011631, - 0.032019, - -0.05126, - -0.0055249, - -0.079072, - 0.00696, - 0.032095, - -0.019462, - -0.057333, - -0.05361, - 0.0073896, - 0.036249, - -0.012183 - ], - "humidity": [ - -0.0727, - 0.064374, - -0.0071982, - -0.014461, - 0.10634, - -0.054984, - 0.027408, - -0.032586, - 0.10935, - -0.051686, - -0.017989, - -0.018153, - -0.032787, - 0.017573, - 0.047182, - 0.019469, - 0.037209, - 0.068485, - -0.010089, - 0.04224, - 0.0026099, - -0.0045361, - -0.038055, - 0.061247, - 0.041915, - -0.015561, - -0.0036023, - 0.031973, - 0.069958, - 0.058444, - 0.068488, - 0.056374, - 0.10054, - -0.038776, - -0.023871, - 0.071162, - 0.035705, - -0.049289, - -0.033334, - 0.071491, - 0.075156, - -0.10852, - -0.036156, - 0.013753, - 0.0016524, - 0.010097, - 0.051904, - -0.025788, - -0.037307, - 0.057886, - -0.010342, - -0.0018987, - 0.024919, - 0.026349, - -0.04032, - 0.02515, - 0.017091, - -0.049589, - 0.021992, - 0.040092, - 0.073816, - 0.025271, - 0.023423, - -0.10268, - 0.009984, - -0.024934, - -0.03348, - -0.054794, - 0.027378, - 0.085315, - 0.065697, - 0.12424, - 0.047018, - -0.019334, - -0.11002, - -0.041511, - -0.059032, - -0.0055319, - -0.098398, - 0.022425, - -0.10084, - -0.017566, - -0.022106, - 0.033332, - 0.073063, - -0.11051, - 0.022461, - -0.023893, - -0.0097128, - -0.039155, - -0.05432, - -0.080221, - -0.0866, - -0.020609, - -0.067378, - 0.053593, - -0.035273, - 0.10923, - 0.0051453, - -0.079676, - 0.067783, - 0.018444, - -0.013753, - -0.0081205, - 0.044518, - 0.009033, - -0.062932, - -0.03569, - -0.00058394, - 0.077667, - -0.0010053, - 0.084849, - 0.047484, - -0.0041423, - -0.0094596, - -0.069925, - -0.0097099, - -0.022884, - 0.00992, - 0.037496, - 0.049115, - 0.018843, - 0.015254, - -0.088924, - 0.051115, - 0.010928, - 0.0090542, - -0.083132, - 0.00050636, - 0.092337, - 0.023234, - -0.087934, - 0.028354, - -0.02616, - -0.02434, - 0.012153, - 0.077129, - 0.064133, - 0.0238, - 0.051652, - 0.085558, - 0.014657, - 0.0041229, - -0.065647, - -0.023793, - -0.0042753, - -0.072363, - -0.013112, - -0.065225, - -0.039478, - 0.0060253, - 0.039277, - 0.012343, - -0.0046373, - 0.050983, - 0.086622, - -0.05264, - 0.0084958, - 0.05655, - 0.032655, - 0.03522, - -0.080653, - -0.11973, - -0.023661, - 0.014396, - -0.027191, - -0.03661, - -0.070432, - 0.10154, - 0.025346, - -0.093153, - 0.07923, - -0.044907, - -0.036443, - 0.068637, - 0.070111, - 0.047375, - 0.0053817, - -0.054917, - 0.046303, - -0.018891, - 0.061595, - -0.059524, - -0.084535, - -0.024991, - -0.10557, - 0.017687, - 0.1202, - -0.064975, - -0.039563, - -0.0096853, - 0.00084788, - -0.02264, - -0.019988, - -0.03843, - 0.017703, - 0.08805, - 0.036861, - 0.050285, - -0.013778, - -0.12452, - -0.084172, - -0.048342, - -0.02967, - 0.05755, - -0.046069, - 0.032355, - 0.02007, - -0.063648, - 0.0039333, - 0.079472, - -0.11948, - 0.0030494, - 0.0096603, - 0.078645, - 0.10051, - 0.0054486, - 0.052066, - -0.044553, - -0.1153, - 0.079908, - 0.044011, - 0.069302, - 0.071076, - 0.076459, - 0.0013318, - 0.02338, - 0.033931, - -0.025304, - -0.075973, - -0.042989, - -0.013824, - -0.071026, - 0.041534, - 0.063519, - 0.064416, - -0.045205, - 0.062532, - 0.089959, - -0.036911, - 0.054591, - -0.044024, - 0.07806, - 0.014026, - -0.054856, - 0.14778, - 0.022591, - -0.090588, - 0.017019, - -0.095923, - 0.084312, - -0.054718, - -0.05254, - 0.0018317, - 0.050657, - 0.018957, - 0.042565, - 0.027011, - 0.054795, - -0.083329, - 0.072309, - -0.031718, - -0.052782, - -0.030043, - -0.019672, - -0.06395, - -0.045763, - 0.0022539, - -0.049207, - -0.011266, - -0.13036, - 0.057002, - -0.12162, - -0.033675, - 0.023068, - -0.039005, - -0.023085, - 0.050268, - 0.0043955, - -0.07843, - 0.074349, - 0.01367, - 0.069709, - 0.0012959, - 0.032806, - 0.055277, - 0.044126, - 0.09823, - -0.037483, - 0.089986, - -0.029183, - 0.048824, - 0.018668, - 0.029251, - 0.02497, - -0.099049, - -0.024199, - 0.023375, - 0.090863, - 0.0070413 - ], - "big-money": [ - 0.070454, - 0.0059874, - -0.022455, - 0.0092209, - -0.071325, - 0.0053073, - -0.045928, - -0.082656, - -0.0081016, - 0.06436, - -0.029387, - 0.00161, - -0.035733, - 0.019794, - -0.086342, - 0.044635, - 0.072904, - -0.0028254, - 0.086018, - 0.0091725, - 0.0391, - -0.034589, - -0.029855, - 0.06757, - 0.056444, - -0.082851, - 0.085503, - 0.011293, - 0.094978, - -0.0068978, - -0.070819, - -0.011811, - -0.065153, - -0.048569, - 0.050785, - 0.045163, - 0.028429, - 0.0075748, - 0.019998, - 0.039189, - -0.028897, - -0.14377, - -0.024261, - 0.068457, - 0.0097221, - 0.039799, - -0.0054469, - 0.071455, - 0.016971, - -0.04309, - -0.058748, - 0.011012, - 0.035176, - 0.021478, - -0.02067, - 0.022763, - 0.02867, - 0.061174, - 0.024307, - -0.017631, - 0.047992, - 0.0093028, - 0.069041, - 0.040997, - 0.00034219, - -0.0014306, - -0.001066, - -0.0031811, - 0.020372, - -0.00068737, - 0.0012136, - 0.050366, - 0.019865, - 0.028122, - 0.02845, - 0.0035499, - -0.0032895, - -0.028773, - -0.047075, - 0.0044461, - -0.0024541, - 0.040729, - -0.0092031, - 0.091168, - -0.04469, - -0.065334, - -0.0053998, - 0.0074322, - 0.056339, - -0.013845, - -0.0017209, - 0.017515, - -0.093057, - 0.0030383, - 0.040037, - 0.03298, - -0.076631, - -0.056035, - -0.061275, - 0.012429, - -0.042414, - -0.021974, - -0.0077919, - -0.019145, - 0.042077, - -0.043759, - -0.025261, - -0.055075, - -0.010406, - 0.066525, - -0.012405, - 0.060818, - -0.019673, - 0.014538, - 0.034981, - 0.014651, - 0.009138, - -0.0046474, - -0.044614, - -0.01374, - 0.042315, - -0.060887, - -0.0038477, - -0.022374, - 0.089012, - -0.039982, - -0.074211, - -0.0065857, - -0.036199, - 0.079237, - 0.025562, - 0.071505, - 0.0015023, - -0.0038895, - -0.033548, - -0.025656, - 0.016304, - 0.045221, - -0.066767, - -0.038282, - 0.043834, - 0.0063509, - 0.028336, - 0.0084564, - 0.009271, - -0.044983, - 0.037089, - -0.041623, - -0.03586, - -0.080161, - 0.091414, - 0.16028, - -0.047045, - -0.019565, - -0.019985, - -0.095053, - 0.077422, - 0.015943, - 0.05758, - 0.028702, - 0.056238, - 0.011875, - 0.011349, - 0.0061167, - -0.051263, - 0.079882, - -0.011046, - -0.010475, - -0.0066512, - 0.038618, - -0.026418, - -0.011055, - -0.010784, - 0.034793, - -0.024751, - 0.049164, - -0.095621, - 0.015403, - 0.026732, - -0.023016, - 0.019959, - -0.0062226, - 0.053561, - -0.017401, - 0.018827, - -0.12231, - 0.025025, - 0.13924, - 0.030484, - 0.060238, - -0.058769, - 0.071661, - 0.051303, - 0.026781, - -0.017557, - 0.044335, - 0.031759, - 0.062486, - 0.024445, - -0.05159, - -0.11196, - 0.15033, - 0.016954, - -0.053606, - -0.024536, - -0.060948, - 0.012269, - -0.018984, - 0.042839, - -0.0092476, - 0.14593, - 0.043761, - -0.02224, - -0.015634, - 0.02538, - -0.022399, - -0.073888, - 0.032224, - -0.00059025, - -0.067343, - 0.0088164, - -0.019572, - -0.034998, - 0.083174, - 0.016356, - -0.019568, - 0.013172, - 0.05483, - -0.033411, - -0.10664, - -0.059571, - -0.049029, - -0.056928, - -0.070036, - 0.038569, - 0.0055895, - -0.064659, - -0.056564, - -0.061007, - 0.02929, - -0.0085771, - -0.040319, - 0.016886, - 0.046073, - -0.12527, - 0.016557, - -0.015037, - 0.0034838, - 0.016844, - 0.032825, - -0.0045755, - 0.040522, - -0.031663, - -0.023305, - -0.052312, - 0.11976, - -0.041815, - -0.035879, - -0.0021112, - 0.048396, - 0.012212, - 0.01423, - -0.025005, - -0.037369, - 0.014976, - 0.080309, - -0.023186, - 0.001483, - 0.01661, - -0.00043948, - 0.073667, - 0.071892, - -0.083269, - -0.075369, - 0.00028175, - -0.083249, - -0.028674, - 0.019569, - 0.041372, - -0.0068444, - 0.17073, - -0.0065784, - -0.0097688, - -0.02506, - -0.052961, - -0.062153, - 0.082389, - 0.011667, - -0.05467, - 0.026164, - 0.026954, - -0.053142, - -0.017691, - 0.03253, - -0.014623, - -0.042975, - -0.076517, - 0.0007217, - -0.022866, - -0.0026977 - ], - "specialties": [ - -0.0003987, - -0.050591, - 0.027698, - -0.068252, - -0.0021628, - -0.071446, - 0.027494, - -0.08412, - 0.0012921, - -0.013962, - -0.052002, - -0.071797, - -0.025499, - -0.014084, - -0.018941, - 0.025529, - 0.029715, - 0.045559, - 0.053513, - 0.020681, - 0.031906, - -0.0088127, - 0.045135, - 0.047569, - 0.00085928, - -0.059344, - -0.012713, - 0.013671, - 0.072296, - -0.019459, - -0.020713, - -0.036808, - -0.024067, - -0.050569, - 0.025779, - -0.014571, - 0.010713, - 0.063882, - 0.061432, - -0.0081719, - -0.059583, - -0.052253, - 0.0431, - -0.048132, - 0.03993, - -0.045342, - -0.0080443, - -0.051115, - 0.012262, - 0.013669, - -0.028585, - 0.025933, - -0.018102, - 0.0048173, - -0.032429, - 0.032051, - -0.0051856, - 0.098142, - 0.0058446, - -0.030753, - -0.0019938, - -0.019451, - 0.11532, - 0.019954, - 0.042079, - 0.037534, - -0.074075, - 0.017706, - -0.031054, - -0.051198, - 0.015688, - -0.048374, - 0.046496, - 0.0019912, - 0.04936, - -0.046203, - -0.0054916, - -0.029391, - 0.029967, - -0.021641, - -0.023836, - 0.016319, - -0.0054835, - 0.0078616, - -0.052832, - -0.047535, - 0.053458, - 0.0053664, - -0.00090819, - 0.0095524, - 0.049246, - -0.0036355, - -0.064659, - 0.019465, - -0.012022, - 0.033878, - -0.026117, - 0.043999, - -0.038245, - 0.015802, - 0.0012505, - 0.0036692, - -0.033151, - -0.015838, - 0.048375, - -0.043073, - -0.0078967, - 0.034399, - -0.027894, - -0.0036418, - 0.0096214, - 0.03239, - 0.036428, - 0.080323, - 0.039059, - 0.014451, - -0.062963, - -0.0342, - -0.035771, - 0.03003, - -0.0012007, - 0.013082, - -0.004384, - -0.075477, - 0.076702, - 0.035308, - -0.0015688, - -0.058312, - 0.037523, - 0.091106, - -0.017551, - 0.065742, - -0.028879, - -0.012972, - 0.0025068, - -0.020317, - 0.0061281, - 0.055152, - 0.016027, - 0.042218, - -0.010377, - -0.048239, - -0.081288, - 0.024623, - -0.019801, - -0.039984, - -0.0021457, - -0.026863, - -0.012452, - 0.023327, - 0.047865, - 0.055772, - 0.0095189, - -0.044729, - 0.072779, - 0.021265, - -0.014231, - 0.021172, - 0.023757, - 0.059618, - 0.03432, - 0.014032, - 0.013259, - -0.02261, - 0.0082347, - -0.00178, - -0.057038, - -0.03569, - -0.011878, - -0.026891, - 0.022978, - 0.012539, - 0.010956, - 0.0026798, - -0.012623, - 0.021455, - -0.012914, - -0.0026593, - -0.076901, - -0.023585, - 0.0046538, - 0.0091237, - -0.0022024, - -0.023369, - 0.027806, - -0.012597, - 0.052949, - 0.05325, - -0.03066, - 0.021915, - -0.023071, - 0.079982, - -0.060193, - -0.039247, - -0.0031207, - 0.024266, - 0.017613, - -0.021023, - 0.004938, - -0.03964, - -0.084221, - -0.020355, - -0.029995, - 0.021567, - 0.018345, - -0.047401, - -0.0047219, - 0.0062404, - 0.020491, - -0.01258, - 0.069675, - 0.023245, - 0.007441, - 0.0072047, - 0.0041236, - -0.0033226, - 0.015384, - -0.0028542, - -0.073713, - -0.014073, - 0.0077037, - 0.0012001, - -0.055972, - 0.080816, - 0.019969, - 0.0078788, - 0.058616, - 0.057946, - 0.0139, - -0.0058603, - -0.0090067, - 0.0098126, - -0.093107, - -0.001803, - 0.021518, - 0.0082525, - -0.0085134, - 0.023305, - -0.017021, - 0.042867, - 0.0096646, - 0.012455, - -0.0080427, - -0.023019, - 0.0071315, - -0.007051, - -0.063175, - -0.048072, - 0.0014863, - -0.0053869, - 0.0029156, - 0.0022384, - 0.0065312, - -0.029379, - -0.049126, - 0.034663, - 0.026209, - 0.022117, - 0.045392, - 0.036724, - 0.018943, - 0.001373, - 0.011921, - -0.039256, - -0.054326, - 0.032938, - 0.004264, - 0.00011038, - 0.0024355, - -0.017116, - 0.018049, - 0.050406, - -0.079965, - -0.027782, - 0.034859, - -0.041197, - -0.040444, - 0.035029, - 0.013796, - 0.0091722, - 0.028771, - 0.072646, - 0.01546, - 0.034203, - 0.025938, - 0.016655, - -0.042368, - -0.015438, - -0.043091, - -0.0079137, - -0.031748, - -0.015986, - -0.0041581, - -0.03241, - 0.0083043, - -0.005657, - 0.037041, - 0.030038, - 0.0053164, - -0.030067 - ], - "trek": [ - -0.12309, - 0.016359, - -0.054192, - 0.09806, - -0.06314, - -0.050321, - 0.034065, - -0.1203, - -0.047158, - 0.040913, - -0.03082, - -0.176, - -0.056634, - -0.030798, - -0.015901, - -0.047346, - 0.19179, - -0.083797, - 0.051005, - -0.025423, - -0.0029978, - -0.010273, - -0.069646, - 0.0766, - 0.037738, - 0.057747, - 0.046025, - 0.098557, - -0.14715, - 0.049223, - -0.011391, - 0.098132, - 0.025431, - -0.099505, - -0.046047, - 0.087966, - 0.13582, - -0.071852, - -0.0039096, - 0.012674, - 0.030834, - -0.099827, - -0.0025785, - -0.011103, - 0.081987, - 0.12361, - -0.021796, - -0.0068158, - -0.019243, - -0.011775, - 0.023259, - 0.11503, - -0.16407, - -0.07447, - -0.17504, - 0.084732, - 0.022706, - -0.096097, - -0.022139, - -0.071178, - -0.029083, - -0.012165, - 0.14471, - 0.029027, - 0.0031243, - -0.063104, - 0.060861, - -0.088093, - -0.082874, - 0.03626, - 0.023306, - 0.013117, - 0.00012273, - -0.088862, - 0.056659, - 0.035977, - -0.031119, - 0.019516, - -0.043426, - 0.010418, - -0.059141, - -0.058251, - -0.038851, - -0.0070247, - -0.075329, - -0.014169, - 0.03204, - -0.021257, - -0.057434, - -0.081237, - 0.14313, - 0.076768, - -0.13351, - -0.020264, - 0.090521, - 0.0039947, - -0.033772, - 0.12331, - 0.019853, - -0.092131, - -0.012165, - -0.042804, - 0.10909, - -0.020097, - 0.029281, - -0.15133, - -0.023497, - -0.087109, - -0.0038919, - 0.029708, - 0.13498, - -0.084859, - 0.10803, - 0.029538, - -0.014404, - 0.065935, - 0.029298, - 0.057453, - -0.063543, - -0.049566, - 0.10512, - 0.011548, - 0.049697, - 0.084048, - 0.090406, - -0.037427, - -0.0026074, - -0.055172, - 0.047712, - 0.10074, - 0.055815, - 0.037018, - -0.20189, - -0.050435, - 0.030273, - -0.040673, - 0.017449, - 0.041709, - -0.049618, - -0.041839, - -0.047866, - -0.17706, - 0.0094864, - -0.03243, - -0.062101, - 0.028535, - -0.076797, - 0.062124, - -0.094113, - -0.1276, - 0.031652, - 0.019308, - -0.20309, - -0.069187, - 0.15404, - 0.065801, - -0.09094, - 0.14119, - 0.021569, - -0.046287, - 0.063147, - -0.03018, - 0.027489, - 0.10756, - -0.072729, - 0.10491, - 0.015579, - -0.067885, - -0.02471, - 0.12378, - 0.050563, - -0.1019, - -0.10257, - 0.01552, - 0.059537, - 0.042951, - 0.095587, - 0.036637, - -0.038481, - 0.03936, - 0.067434, - -0.025839, - -0.16778, - -0.040099, - 0.011081, - -0.10792, - 0.05298, - 0.18229, - -0.038848, - -0.10101, - 0.080141, - -0.0098083, - 0.02383, - 0.08623, - 0.00022366, - 0.10728, - -0.036631, - -0.064104, - 0.020564, - -0.036265, - -0.14393, - 0.11634, - 0.022796, - -0.033673, - 0.045228, - -0.054759, - -0.025197, - 0.11015, - 0.10578, - -0.035979, - 0.11857, - -0.083113, - -0.0098921, - -0.046736, - 0.1129, - -0.049162, - 0.067605, - 0.063117, - 0.030661, - 0.0043383, - -0.036498, - 0.091319, - -0.11837, - 0.15937, - -0.025131, - 0.0027242, - -0.013298, - 0.14876, - -0.13581, - 0.01735, - -0.030511, - -0.15897, - -0.022921, - 0.19785, - 0.055064, - -0.058614, - 0.055949, - 0.063707, - 0.013042, - 0.10032, - 0.154, - 0.048373, - 0.099097, - -0.17638, - -0.047706, - -0.029535, - 0.049758, - -0.077554, - -0.070081, - 0.10281, - 0.093869, - -0.0054578, - -0.0091168, - 0.054247, - 0.033343, - 0.063121, - -0.036925, - -0.0070057, - 0.10259, - 0.087315, - 0.01159, - 0.072397, - -0.069591, - -0.054388, - 0.077524, - -0.0059499, - -0.0166, - 0.057362, - 0.030237, - -0.038494, - 0.009745, - 0.11202, - -0.1509, - -0.021252, - -0.058558, - -0.10114, - -0.033596, - -0.10653, - -0.01664, - 0.076742, - 0.089429, - 0.03257, - -0.10072, - -0.035612, - -0.086306, - -0.075422, - -0.00027741, - -0.051367, - -0.043906, - -0.02009, - 0.065735, - 0.070354, - -0.10847, - -0.009225, - 0.021141, - -0.052524, - 0.08113, - 0.0049865, - -0.027811, - -0.065689 - ], - "science": [ - -0.069073, - -0.074553, - -0.032103, - -0.010513, - -0.012203, - -0.11536, - 0.0248, - -0.10225, - 0.073219, - 0.04156, - -0.023216, - -0.040016, - 0.023592, - 0.0013442, - 0.023929, - -0.036446, - 0.13639, - 0.062028, - 0.021559, - 0.021691, - -0.032161, - 0.070402, - 0.054904, - 0.061741, - -0.039378, - -0.027286, - -0.0084815, - 0.035802, - -0.0020271, - 0.0026692, - 0.034915, - -0.0051235, - 0.070878, - -0.057234, - 0.05164, - 0.042709, - 0.024949, - -0.046724, - 0.01429, - -0.0070926, - -0.074797, - -0.14801, - -0.041377, - 0.028799, - 0.0060186, - -0.064023, - -0.04223, - 0.025724, - -0.023441, - 0.0047535, - -0.011614, - 0.063131, - 0.022607, - -0.015317, - -0.04098, - 0.068953, - 0.024842, - 0.01347, - 0.033374, - 0.062437, - 0.028112, - 0.046053, - 0.098864, - -0.014602, - 0.054382, - -0.023979, - -0.015144, - 0.026122, - 0.032793, - 0.023633, - 0.062905, - -0.024606, - 0.011095, - 0.028008, - 0.044516, - 0.058838, - 0.0054498, - 0.01039, - 0.058185, - 0.0030544, - -0.043268, - 0.025747, - -0.049866, - 0.042296, - -0.058601, - 0.048311, - -0.001692, - -0.0047925, - 0.0204, - 0.04101, - 0.055167, - 0.057759, - -0.09427, - 0.01267, - 0.047532, - 0.065215, - 0.083449, - 0.011154, - -0.029322, - 0.052972, - -0.029053, - -0.0094899, - 0.024114, - -0.023886, - -0.015287, - -0.091658, - 0.050603, - 0.068432, - 0.073576, - -0.014737, - -0.063902, - 0.097843, - 0.030529, - 0.02357, - 0.013335, - 0.0066303, - 0.026199, - -0.018725, - -0.048733, - 0.020102, - -0.022805, - -0.019101, - -0.077058, - -0.020981, - 0.055917, - 0.022116, - -0.11737, - -0.069863, - -0.022582, - 0.14365, - -0.0081698, - 0.0046998, - 0.015359, - 0.036403, - 0.025184, - -0.037671, - 0.049762, - -0.011077, - 0.00093693, - -0.0079722, - 0.047425, - -0.062404, - -0.0053189, - 0.016145, - -0.025593, - -0.043044, - -0.067169, - 0.006876, - -0.013254, - -0.040826, - 0.077893, - 0.054144, - -0.00043314, - -0.096241, - 0.0085484, - 0.056749, - 0.049302, - 0.043988, - -0.012135, - -0.014416, - 0.038252, - 0.030426, - -0.11165, - -0.015581, - 0.026033, - 0.010829, - -0.065245, - 0.04556, - 0.0051979, - -0.014424, - 0.037372, - -0.022999, - -0.015348, - -0.013824, - 0.089055, - 0.066692, - -0.0085456, - 0.085921, - -0.027204, - 0.028902, - 0.0010694, - 0.032926, - 0.0031508, - -0.033092, - 0.0059653, - -0.048695, - 0.050418, - 0.1202, - 0.023452, - -0.00014764, - 0.014711, - 0.10142, - -0.020971, - -0.054797, - 0.01372, - -0.0038359, - -0.10322, - -0.0076514, - -0.014234, - -0.0091992, - -0.15347, - -0.0013753, - 0.020051, - -0.040703, - 0.02537, - 0.019647, - 0.0028917, - -0.04097, - 0.025757, - 0.0017262, - 0.11678, - 0.010179, - -0.035253, - 0.012279, - 0.016158, - 0.070061, - 0.015716, - -0.039646, - -0.050239, - -0.031335, - -0.019751, - 0.076329, - -0.086218, - 0.10176, - -0.0071299, - 0.0078651, - 0.067287, - 0.11045, - 0.02545, - -0.017577, - 0.00061212, - -0.037037, - -0.047339, - 0.0044805, - 0.0016134, - 0.039769, - -0.0095862, - -0.016072, - -0.0028449, - -0.021557, - 0.030397, - -0.056952, - 0.030003, - 0.021147, - -0.0014242, - 0.069853, - -0.026071, - -0.019629, - -0.012191, - 0.023607, - 0.076614, - 0.042529, - 0.027501, - -0.043311, - 0.0080897, - 0.031278, - -0.015825, - 0.035226, - 0.041708, - 0.017541, - -0.014951, - 0.041786, - 0.022373, - 0.01318, - -0.0072954, - -0.0095642, - 0.042616, - 0.046277, - 0.089701, - 0.01281, - 0.056793, - 0.080665, - -0.11275, - -0.021848, - -0.014784, - -0.018924, - 0.00034948, - 0.001088, - 0.014774, - -0.059063, - 0.11139, - -0.04907, - 0.0062303, - -0.042972, - -0.035644, - -0.0043602, - -0.032062, - -0.0051076, - 0.010696, - -0.0075066, - -0.071917, - 0.028619, - -0.026245, - -0.0020893, - -0.044579, - 0.014175, - -0.032731, - 0.014142, - 0.035181, - 0.01481 - ], - "well-being": [ - -0.011798, - -0.077679, - -0.039948, - -0.0023503, - -0.043307, - 0.00020748, - -0.039226, - -0.041226, - 0.065708, - 0.028592, - -0.019507, - -0.013049, - 0.023696, - -0.021822, - -0.005005, - -0.02174, - 0.050816, - 0.024972, - 0.017422, - 0.021779, - -0.043256, - 0.010771, - 0.04775, - 0.064968, - -0.0049227, - 0.034269, - -0.024782, - 0.034982, - 0.01672, - 0.006775, - 0.036103, - -0.020332, - -0.033805, - -0.056983, - -0.064762, - 0.0085225, - -0.022909, - -0.011238, - 0.047892, - -0.031208, - 0.054082, - -0.046511, - -0.03388, - 0.017782, - -0.0083546, - -0.069863, - -0.0013689, - 0.0042284, - -0.020681, - -0.00060477, - -0.0019406, - 0.036583, - -0.010906, - 0.013998, - -0.043131, - -0.025608, - -0.066584, - -0.026449, - 0.021739, - -0.00701, - -0.020679, - -0.047614, - 0.011954, - 0.020831, - 0.099139, - 0.048507, - 0.0081768, - -0.027141, - 0.016815, - -0.0012015, - 0.054114, - 0.03826, - 0.022792, - -0.053813, - -0.030884, - 0.016222, - 0.013095, - -0.040404, - -0.0063447, - -0.0036792, - 0.024437, - 0.020629, - -0.0021949, - 0.034642, - -0.00949, - 0.0060185, - 0.030428, - -0.013106, - -0.023796, - -0.034245, - -0.004275, - 0.031311, - -0.058455, - 0.01419, - -0.046235, - 0.051391, - 0.0095036, - 0.018183, - 0.073482, - 0.018742, - -0.01195, - -0.0016548, - -0.014633, - -0.055402, - -0.001314, - -0.047551, - -0.0073378, - 0.012813, - 0.013781, - -0.065198, - -0.018222, - 0.10135, - 0.056888, - -0.031692, - 0.014604, - 0.027436, - -0.026044, - 0.012021, - -0.033139, - -0.011311, - -0.033904, - 0.0027351, - 0.025725, - -0.027122, - 0.075557, - 0.027295, - 0.010401, - -0.19253, - -0.00013694, - 0.090096, - 0.081073, - -0.054928, - 0.024418, - 0.02443, - -0.023003, - -0.010274, - 0.025737, - 0.017892, - -0.012573, - 0.050708, - 0.038625, - 0.0023653, - 0.012712, - 0.0051396, - 0.00614, - 0.041445, - 0.023458, - -0.013703, - 0.027241, - 0.085085, - 0.10563, - 0.026837, - -0.015089, - -0.037003, - 0.030213, - -0.015139, - -0.016742, - 0.042816, - 0.028807, - -0.10149, - 0.066256, - -0.026291, - -0.084325, - 0.020564, - -0.027036, - 0.035726, - -0.012972, - 0.0241, - 0.0067854, - -0.0038399, - 0.0017402, - 0.010996, - -0.012888, - 0.02408, - -0.053779, - 0.0334, - 0.044167, - 0.012393, - -0.0090156, - -0.001857, - -0.0026836, - 0.014685, - 0.037213, - -0.07006, - -0.010384, - -0.058321, - -0.026506, - 0.11, - 0.0044568, - 0.025864, - 0.055634, - 0.03053, - -0.025993, - -0.049705, - 0.063805, - -0.033833, - -0.012101, - -0.0026279, - -0.0042906, - -0.031846, - -0.11813, - 0.0083053, - -0.0041954, - -0.10165, - 0.0048108, - -0.021155, - 0.033744, - -0.011589, - 0.03752, - 0.047034, - 0.024379, - -0.04107, - 0.0046278, - 0.021127, - 0.044161, - 0.00025721, - 0.032794, - 0.024736, - -0.0332, - 0.056984, - -0.045215, - -0.02218, - -0.016869, - 0.075918, - 0.026091, - -0.0057668, - -0.03749, - 0.11027, - 0.058401, - -0.051955, - -0.0059641, - -0.0080323, - -0.079671, - -0.026191, - 0.091173, - 0.067163, - -0.030297, - 0.014635, - -0.00071556, - -0.0097396, - 0.027532, - 0.044965, - -0.0010836, - -0.0036965, - -0.012796, - 0.051415, - 0.0020275, - -0.12168, - 0.012986, - -0.030025, - 0.063242, - -0.0052238, - 0.019172, - -0.065896, - 0.06396, - -0.046363, - -0.019778, - 0.045052, - 0.025169, - -0.070248, - -0.043415, - -0.046557, - -0.0078754, - -0.020416, - 0.056, - 0.042974, - 0.025708, - 0.010756, - 0.036576, - 0.043053, - -0.023701, - 0.036401, - -0.086714, - -0.042285, - 0.039488, - -0.020469, - 0.00095673, - -0.0068823, - -0.012377, - -0.00035587, - 0.047084, - -0.02052, - -0.036042, - -0.02558, - 0.078947, - 0.053017, - -0.033267, - 0.038276, - -0.046242, - 0.014885, - 0.028662, - 0.0043576, - -0.054079, - -0.026893, - -0.045734, - 0.035668, - 0.03885, - 0.033065, - -0.048944, - 0.042732 - ], - "airfare": [ - -0.015954, - 0.0091555, - 0.014809, - 0.013805, - 0.10584, - 0.037563, - 0.047704, - -0.042505, - -0.0054194, - 0.014802, - 0.10931, - -0.05194, - -0.12619, - -0.079016, - 0.017726, - 0.046221, - 0.0022773, - -0.15554, - -0.0094258, - 0.05488, - 0.022057, - 0.1019, - -0.044803, - 0.033951, - 0.070034, - -0.0030309, - -0.05183, - 0.078457, - 0.027628, - 0.014187, - 0.035542, - 0.08776, - -0.054462, - -0.037458, - -0.0039038, - 0.12048, - 0.0085696, - 0.092233, - 0.064231, - 0.053954, - -0.1225, - -0.084292, - 0.0056048, - 0.039425, - 0.0084773, - -0.020706, - 0.056855, - -0.056025, - -0.027725, - 0.055052, - -0.0306, - 0.044301, - -0.021715, - -0.031223, - -0.10684, - 0.050447, - -0.033838, - 0.015067, - 0.00044584, - -0.01694, - 0.039475, - 0.0054748, - 0.099764, - 0.095473, - 0.037497, - 0.0076059, - 0.019705, - -0.050682, - -0.022976, - 0.0039606, - -0.095742, - 0.090221, - 0.067045, - -0.046019, - 0.037727, - 0.020499, - 0.015592, - -0.0099734, - -0.06212, - -0.060833, - -0.10379, - -0.016771, - 0.029153, - 0.028338, - -0.1013, - -0.12503, - 0.022712, - -0.053686, - -0.041241, - 0.0096566, - -0.097689, - 0.055645, - -0.084554, - 0.01742, - -0.11329, - 0.067368, - 0.027003, - -0.019592, - -0.034549, - -0.16583, - 0.10452, - 0.12843, - -0.024808, - -0.021789, - 0.08151, - -0.10581, - -0.026819, - -0.016195, - 0.023516, - 0.030005, - 0.04326, - 0.12882, - 0.070154, - 0.016607, - 0.067992, - -0.056808, - -0.035301, - -0.13883, - -0.020234, - 0.049869, - 0.15209, - 0.049685, - -0.025522, - -0.0044692, - 0.038147, - -0.083178, - 0.0060506, - -0.08836, - -0.031019, - 0.096798, - 0.042829, - -0.022787, - -0.058896, - 0.01208, - 0.028384, - 0.058691, - 0.034943, - 0.026545, - -0.10764, - 0.007818, - -0.023306, - 0.024382, - 0.042135, - -0.058933, - -0.11163, - 0.029877, - -0.086916, - -0.070045, - 0.036502, - -0.019344, - 0.03378, - 0.034261, - -0.092797, - -0.053876, - 0.0038887, - 0.010935, - -0.016936, - -0.039207, - -0.084303, - -0.062677, - 0.17356, - -0.034514, - -0.043859, - -0.14638, - -0.024433, - 0.052585, - 0.081044, - -0.07124, - 0.032198, - 0.033275, - -0.027749, - -0.05011, - -0.082087, - -0.050039, - -0.051467, - 0.052447, - -0.12596, - 0.057348, - -0.039927, - 0.054815, - 0.03107, - 0.019212, - 0.013254, - -0.094058, - 0.03006, - -0.13737, - 0.0050715, - 0.16791, - -0.056375, - -0.036399, - 0.065041, - -0.0047313, - -0.00096065, - -0.058023, - 0.022566, - 0.019153, - 0.036175, - 0.040719, - -0.000098754, - -0.053372, - -0.15876, - 0.032009, - 0.0061696, - -0.034978, - 0.012471, - -0.072334, - -0.16102, - -0.076806, - 0.061995, - 0.011122, - 0.089375, - -0.026688, - -0.0051376, - -0.077439, - 0.079017, - 0.020661, - 0.045652, - -0.013361, - -0.025181, - -0.041598, - 0.04184, - 0.051176, - -0.0051439, - 0.07206, - 0.041005, - 0.051522, - -0.012269, - 0.034809, - -0.11266, - 0.0012621, - 0.11278, - -0.026913, - -0.052325, - -0.037142, - 0.053999, - -0.089767, - -0.026681, - -0.012239, - -0.0045638, - 0.030561, - 0.0011869, - -0.063564, - 0.10419, - -0.15856, - -0.031305, - 0.10836, - 0.15961, - -0.051633, - 0.029447, - 0.026219, - 0.015135, - 0.023171, - -0.089826, - -0.04307, - 0.053364, - -0.0065099, - -0.010851, - 0.022807, - 0.010295, - 0.067767, - 0.021934, - 0.01887, - -0.10022, - -0.056594, - 0.076454, - 0.13263, - -0.1008, - -0.02773, - -0.025455, - 0.12404, - -0.030639, - 0.032703, - -0.11437, - -0.01482, - -0.079533, - -0.016533, - -0.062045, - 0.050509, - 0.012998, - 0.024761, - 0.12095, - 0.0036529, - 0.037865, - -0.015985, - -0.016527, - -0.038536, - -0.063401, - 0.07108, - -0.12679, - -0.06553, - 0.093762, - -0.041948, - 0.012627, - -0.051096, - -0.00079346, - 0.016325, - 0.057885, - 0.094382, - -0.0034214, - -0.019399 - ], - "anti-science": [ - -0.043083, - 0.0042702, - -0.033916, - 0.001395, - -0.065421, - -0.053289, - 0.0033467, - -0.048879, - -0.0023655, - 0.03173, - -0.018687, - -0.0069768, - 0.043091, - 0.0020013, - -0.018012, - -0.050183, - 0.055551, - 0.066735, - 0.016872, - -0.027539, - -0.019918, - 0.076951, - 0.014673, - 0.014392, - -0.049258, - -0.036462, - 0.05002, - 0.049233, - 0.037774, - 0.024776, - 0.025229, - -0.037311, - 0.05001, - -0.025684, - 0.058727, - 0.030735, - 0.014765, - -0.07233, - 0.038574, - 0.0089165, - -0.027552, - -0.094879, - 0.0010157, - 0.026066, - 0.047667, - -0.0035651, - -0.063961, - 0.063528, - 0.017063, - -0.015115, - 0.0064461, - 0.04971, - 0.030235, - 0.019671, - 0.016088, - 0.061023, - 0.025617, - 0.019519, - -0.03468, - 0.073728, - 0.015571, - 0.021712, - 0.05283, - -0.029246, - -0.016806, - -0.014337, - -0.02458, - 0.043996, - 0.035347, - 0.058307, - -0.0024755, - 0.0001918, - 0.015922, - 0.014097, - -0.029644, - 0.047212, - 0.021289, - 0.0012063, - 0.0042481, - 0.031286, - -0.039777, - 0.0013071, - -0.046406, - 0.0683, - -0.012554, - 0.014489, - -0.0032406, - 0.06616, - 0.033622, - 0.011166, - -0.0087232, - 0.065939, - -0.057399, - -0.00030585, - 0.036436, - 0.039904, - 0.052415, - -0.0043724, - -0.026399, - 0.025642, - -0.069179, - -0.011889, - 0.035497, - -0.0053089, - -0.039433, - -0.063264, - 0.066738, - 0.0047943, - 0.045919, - 0.00046759, - -0.03695, - 0.063401, - 0.032512, - 0.002496, - -0.0094613, - 0.029342, - -0.0017561, - 0.010722, - -0.020503, - -0.065273, - -0.012813, - 0.0081131, - -0.041149, - -0.079745, - 0.12505, - -0.024916, - -0.051682, - 0.053029, - -0.024955, - 0.072902, - -0.0018927, - 0.035003, - 0.016417, - 0.015486, - 0.020967, - -0.0081115, - -0.027011, - 0.076661, - -0.055579, - -0.045079, - -0.010836, - -0.037364, - 0.0031824, - 0.021702, - -0.035836, - -0.012713, - 0.024179, - 0.0093023, - -0.024977, - -0.034604, - 0.066608, - 0.093653, - -0.060284, - -0.010461, - 0.028355, - 0.021789, - 0.031022, - 0.0063416, - -0.024119, - -0.03416, - 0.029194, - 0.039843, - -0.11682, - -0.067286, - 0.0061058, - -0.0049633, - -0.034541, - 0.0073752, - 0.010672, - -0.0422, - -0.051118, - 0.016665, - 0.0026019, - -0.029042, - 0.049971, - 0.039392, - -0.018097, - -0.0079431, - 0.01134, - -0.061764, - -0.059623, - 0.047982, - 0.042385, - 0.047999, - 0.030981, - -0.0059417, - 0.030552, - 0.095905, - -0.057463, - -0.010141, - 0.044637, - 0.054952, - -0.0085905, - -0.0031989, - 0.048169, - -0.039898, - -0.027641, - 0.0016092, - -0.047742, - -0.011892, - -0.074536, - -0.026094, - 0.019498, - 0.023414, - 0.051621, - 0.012155, - 0.0076991, - -0.01685, - 0.017185, - -0.010025, - 0.069115, - -0.000020603, - 0.015019, - 0.0026352, - 0.025103, - 0.057445, - -0.00055176, - 0.027448, - 0.003924, - -0.050007, - -0.033247, - 0.063953, - 0.005239, - 0.04004, - -0.016425, - 0.026738, - 0.017786, - 0.051914, - 0.040562, - 0.0058949, - 0.0059503, - -0.013146, - -0.023354, - -0.020557, - 0.041234, - -0.0031897, - 0.006043, - -0.034494, - 0.04622, - -0.028344, - 0.041982, - -0.036791, - 0.059986, - 0.074051, - -0.049776, - 0.049722, - -0.0021186, - -0.063629, - -0.022676, - 0.0021686, - 0.023445, - 0.0059697, - -0.028409, - -0.070312, - -0.0062887, - -0.0013449, - 0.014307, - -0.030453, - 0.043954, - -0.0031975, - 0.064378, - 0.046419, - -0.018768, - 0.02939, - -0.0053799, - 0.0074543, - 0.022361, - 0.05644, - 0.053947, - 0.028176, - -0.013572, - 0.04472, - -0.057616, - -0.0085284, - 0.06935, - -0.088533, - -0.014711, - 0.04085, - -0.051199, - -0.022758, - 0.090012, - -0.060729, - -0.013359, - -0.036308, - -0.021004, - 0.0013135, - 0.0078609, - -0.052772, - 0.041531, - -0.0091802, - -0.029923, - 0.0017448, - -0.0053394, - 0.077728, - -0.06321, - -0.012384, - -0.032788, - 0.05544, - 0.018695, - -0.011046 - ], - "religionists": [ - -0.014113, - -0.046611, - 0.029457, - -0.067796, - -0.059597, - -0.036352, - 0.0048233, - -0.064476, - 0.044983, - 0.029782, - 0.039368, - -0.0052122, - 0.0096886, - -0.028548, - 0.014758, - -0.050918, - 0.086546, - -0.039492, - 0.0428, - -0.02864, - -0.03398, - 0.022468, - -0.0072746, - 0.031179, - -0.053804, - -0.000025907, - 0.015457, - 0.021827, - 0.08045, - 0.024526, - 0.0068538, - -0.0089225, - 0.01224, - 0.045202, - -0.010491, - 0.068117, - 0.0023325, - -0.025192, - 0.025928, - 0.033157, - -0.037501, - -0.044141, - -0.015282, - 0.032701, - -0.015105, - -0.00066682, - -0.057132, - 0.024498, - 0.0068162, - -0.04381, - -0.027551, - 0.022792, - -0.00029212, - -0.00024892, - 0.0052184, - 0.061906, - -0.0014356, - -0.0033263, - -0.0085675, - -0.014105, - 0.051642, - 0.015128, - 0.071273, - -0.025818, - 0.0027691, - -0.012504, - 0.0073024, - -0.018645, - 0.043784, - -0.009892, - -0.0024596, - -0.0098707, - 0.10779, - -0.019326, - -0.055627, - 0.0124, - 0.029337, - -0.033756, - 0.048164, - 0.046664, - -0.038745, - 0.045716, - -0.016811, - 0.075879, - 0.0070282, - -0.020879, - 0.01232, - 0.043353, - 0.0063796, - 0.024634, - -0.0037245, - 0.012391, - -0.057099, - 0.004345, - 0.039138, - 0.042918, - -0.000087406, - -0.038096, - 0.022984, - -0.038677, - 0.0063824, - -0.012451, - 0.0077073, - -0.019895, - -0.0093795, - -0.028118, - 0.052736, - 0.025527, - -0.0034741, - -0.016104, - -0.016236, - 0.10035, - 0.041441, - 0.019161, - -0.024983, - 0.035645, - 0.066691, - 0.030955, - -0.014029, - 0.0017138, - -0.014519, - 0.018973, - -0.051898, - -0.066655, - 0.084961, - 0.014075, - -0.050092, - 0.025142, - -0.033383, - 0.082599, - 0.0093318, - 0.098474, - -0.00097512, - 0.044531, - -0.0033038, - -0.0063766, - -0.01358, - 0.068204, - -0.037404, - -0.04522, - -0.00010327, - -0.062342, - 0.0059561, - 0.020381, - -0.03193, - -0.031576, - 0.0071537, - -0.000944, - -0.037235, - -0.0088444, - 0.0301, - 0.093187, - -0.043033, - 0.0095829, - 0.031111, - -0.00018919, - 0.0079391, - -0.055821, - -0.017328, - -0.036329, - 0.046717, - 0.03024, - -0.00054503, - -0.030146, - 0.017658, - 0.01312, - 0.029325, - 0.086362, - -0.029092, - -0.033832, - -0.051768, - -0.0221, - 0.01432, - 0.00051583, - 0.016529, - 0.0468, - -0.0010277, - 0.0058785, - 0.0023843, - -0.048718, - -0.018578, - 0.022874, - 0.0075484, - 0.026977, - 0.056336, - -0.082821, - 0.052001, - 0.074715, - -0.082307, - -0.077047, - 0.031086, - 0.07282, - -0.080085, - 0.014274, - 0.01716, - -0.0049825, - -0.017709, - -0.0042682, - -0.051072, - -0.01494, - -0.071196, - 0.0085933, - -0.022721, - -0.014399, - 0.047383, - 0.015556, - 0.010523, - 0.009781, - 0.039131, - -0.040237, - 0.029503, - -0.013984, - 0.033723, - 0.047154, - -0.054973, - 0.045157, - -0.0049406, - -0.018811, - -0.032815, - -0.04071, - -0.049755, - 0.041002, - -0.0288, - 0.060509, - 0.01145, - -0.015769, - 0.041764, - 0.056287, - 0.015908, - -0.065362, - 0.0060518, - 0.0039633, - -0.026671, - -0.014222, - 0.031549, - -0.014143, - 0.010734, - -0.009987, - 0.037455, - 0.0023951, - -0.0022163, - -0.080407, - 0.0011548, - 0.018327, - 0.021223, - -0.0064915, - 0.0014375, - -0.0054094, - -0.065861, - -0.017443, - 0.00092769, - -0.022931, - -0.056805, - -0.032569, - -0.022276, - 0.0056655, - 0.022969, - 0.003275, - 0.037017, - -0.0086033, - 0.05777, - 0.021344, - 0.01663, - 0.044551, - 0.00096076, - 0.015255, - 0.011827, - 0.043131, - -0.010037, - 0.055928, - -0.013291, - 0.070155, - -0.049495, - -0.02043, - 0.058443, - -0.026829, - 0.0050413, - -0.026989, - -0.070751, - -0.041399, - -0.0044878, - -0.024263, - -0.019375, - -0.014242, - 0.00031564, - -0.00078589, - 0.012586, - -0.099165, - -0.010047, - 0.052133, - -0.00073626, - -0.0054081, - -0.026663, - 0.032647, - -0.002377, - 0.0028377, - 0.04396, - 0.037104, - -0.034904, - 0.030143 - ], - "loves": [ - 0.036177, - 0.017426, - 0.068394, - -0.014689, - -0.06336, - -0.0096309, - -0.0041185, - -0.12082, - 0.039011, - 0.033858, - 0.025557, - 0.030931, - 0.025555, - -0.046128, - -0.069116, - -0.066283, - 0.13105, - -0.025426, - 0.14494, - -0.06768, - -0.0065464, - 0.054085, - -0.00061458, - 0.067541, - 0.094476, - -0.006804, - 0.054228, - -0.020848, - 0.13062, - -0.087017, - 0.012203, - -0.066121, - -0.012445, - 0.047006, - -0.01157, - -0.027961, - 0.032171, - -0.017565, - -0.044994, - -0.048147, - 0.00073038, - -0.14326, - -0.031147, - -0.020049, - -0.017454, - -0.052236, - 0.0015123, - -0.071674, - 0.028805, - 0.059553, - 0.036579, - 0.017668, - 0.094878, - 0.028447, - -0.015951, - -0.056429, - -0.062651, - 0.027374, - -0.066048, - 0.019794, - -0.084944, - -0.030035, - 0.095474, - -0.055136, - -0.092529, - 0.0036446, - -0.056141, - 0.0408, - -0.0056583, - -0.094368, - 0.088099, - -0.041174, - 0.11719, - -0.020675, - -0.031704, - 0.048506, - 0.075561, - -0.073001, - -0.077949, - -0.0097633, - -0.11292, - 0.02468, - -0.07454, - 0.1214, - -0.02305, - -0.070508, - 0.034922, - 0.025688, - 0.043115, - -0.010918, - 0.059437, - -0.090928, - -0.12029, - 0.04197, - 0.075072, - 0.084108, - 0.022423, - 0.047099, - 0.074017, - 0.033207, - 0.059155, - 0.038126, - -0.056627, - -0.058885, - 0.054835, - -0.18474, - -0.046053, - 0.035489, - -0.052084, - 0.02787, - -0.019539, - -0.060141, - 0.064207, - 0.040654, - -0.071775, - 0.010189, - -0.08297, - 0.022677, - 0.046677, - 0.044099, - -0.037153, - 0.01516, - -0.017423, - -0.13291, - 0.22223, - -0.020142, - 0.048424, - -0.021731, - -0.064498, - 0.19162, - 0.021139, - 0.022686, - 0.037298, - -0.017552, - 0.049674, - -0.11867, - 0.079127, - 0.00098631, - 0.0076427, - -0.01336, - 0.035752, - -0.054318, - 0.054291, - 0.046199, - -0.021673, - 0.068158, - -0.042318, - -0.054904, - -0.046719, - -0.060315, - 0.11654, - 0.088998, - -0.037182, - -0.10931, - -0.080517, - -0.02644, - -0.03179, - 0.051481, - 0.037463, - -0.10772, - 0.058535, - -0.0091508, - 0.035639, - -0.063968, - -0.0056573, - -0.085772, - -0.056507, - 0.027982, - -0.025508, - 0.082444, - -0.017421, - -0.043116, - 0.083467, - -0.022014, - 0.0053345, - 0.091323, - 0.04786, - 0.049688, - 0.044443, - -0.080699, - 0.048336, - -0.051294, - -0.043408, - -0.077099, - 0.043066, - -0.089246, - 0.10255, - 0.19151, - 0.035973, - -0.010393, - 0.0085692, - 0.052597, - -0.090594, - 0.00066979, - -0.040949, - 0.027679, - -0.045597, - -0.0031764, - 0.013366, - 0.038349, - -0.15897, - 0.046305, - 0.040629, - -0.19641, - -0.031542, - 0.0044167, - -0.013805, - -0.039114, - 0.076763, - -0.057598, - 0.085329, - 0.042981, - -0.044153, - 0.063879, - -0.0040745, - -0.047977, - 0.036891, - -0.085309, - 0.02762, - -0.0087174, - 0.054389, - -0.040112, - -0.001039, - 0.10201, - 0.081705, - -0.0028579, - 0.074646, - 0.18219, - -0.023538, - 0.017658, - -0.025106, - -0.069087, - -0.22227, - -0.082537, - 0.076121, - 0.020382, - -0.047245, - -0.044366, - -0.0044967, - -0.011481, - 0.044218, - 0.011547, - 0.094433, - 0.0014673, - -0.012327, - 0.080556, - -0.045146, - -0.068421, - 0.033565, - -0.026329, - 0.05472, - 0.00065929, - -0.063177, - -0.024961, - 0.026157, - 0.032148, - -0.073703, - 0.0024116, - 0.01049, - 0.038815, - 0.024134, - 0.080421, - 0.033514, - 0.014738, - 0.029258, - 0.0078519, - -0.067098, - -0.0085067, - 0.056151, - -0.02408, - 0.079145, - 0.096091, - -0.11856, - -0.038939, - 0.044495, - -0.068866, - -0.0011991, - -0.044345, - -0.032832, - 0.062916, - -0.031458, - 0.037131, - 0.084546, - -0.094064, - -0.072219, - 0.0054158, - -0.0082943, - -0.030961, - 0.0076796, - -0.0059229, - -0.059542, - -0.0096889, - -0.040931, - -0.067065, - -0.012487, - -0.04747, - 0.06062, - 0.062319, - 0.083268, - 0.017336 - ], - "knitwear": [ - -0.059307, - -0.034391, - 0.037938, - -0.070531, - -0.04841, - -0.07619, - 0.00034868, - -0.085508, - 0.018666, - -0.091053, - -0.045138, - -0.042445, - -0.14311, - -0.090741, - -0.024385, - 0.076761, - 0.04587, - 0.058278, - 0.037977, - -0.00044287, - 0.018638, - -0.050989, - -0.080053, - 0.045189, - 0.11926, - 0.033649, - 0.014123, - 0.080928, - -0.096711, - -0.002779, - 0.019929, - -0.063344, - 0.063465, - 0.002537, - 0.056521, - -0.056122, - 0.014934, - 0.07643, - 0.044269, - 0.041241, - -0.017283, - -0.16699, - -0.024085, - -0.058848, - 0.0041335, - -0.038847, - -0.034105, - -0.019197, - 0.018648, - -0.0053163, - -0.020588, - 0.01314, - -0.047405, - 0.14133, - -0.10478, - -0.0021974, - -0.006972, - -0.025655, - -0.055153, - 0.020716, - -0.13987, - -0.045434, - 0.15506, - 0.0064559, - 0.099719, - 0.051381, - -0.025397, - -0.02327, - -0.043251, - -0.053022, - 0.030939, - -0.1009, - 0.057327, - -0.019652, - -0.017368, - -0.0269, - 0.035628, - -0.00061232, - 0.013524, - -0.017246, - -0.028821, - -0.03856, - 0.059754, - 0.073705, - -0.0057575, - 0.055231, - -0.079274, - -0.017463, - -0.019882, - -0.058452, - 0.022612, - 0.047654, - -0.1182, - -0.070532, - 0.061267, - 0.097727, - -0.078047, - 0.034369, - 0.025356, - -0.0052415, - -0.038109, - 0.018542, - -0.062306, - 0.11139, - 0.032032, - -0.09479, - 0.0028613, - 0.050091, - -0.038673, - -0.056746, - 0.0092128, - 0.053257, - 0.028155, - 0.073818, - -0.089388, - 0.069992, - -0.024749, - 0.060039, - -0.044348, - 0.036761, - 0.021685, - 0.014434, - -0.041945, - 0.0087027, - 0.12938, - 0.03519, - -0.025543, - -0.0064972, - -0.014744, - 0.11571, - 0.079471, - 0.020076, - 0.016088, - -0.045206, - 0.031073, - 0.05123, - 0.039622, - 0.10546, - -0.034194, - -0.031321, - 0.081633, - 0.076674, - 0.021484, - 0.035507, - 0.015975, - 0.0051917, - -0.028724, - -0.02917, - -0.029518, - -0.044637, - -0.020135, - -0.018125, - 0.048144, - -0.046888, - 0.023803, - 0.01337, - 0.098352, - -0.0039072, - 0.0024096, - 0.039763, - 0.052037, - -0.097614, - -0.10928, - 0.13884, - -0.061732, - 0.094977, - 0.0058058, - -0.011334, - -0.0023655, - -0.0022434, - 0.052187, - 0.021893, - -0.06071, - -0.11175, - 0.0051433, - 0.030025, - -0.013507, - 0.081593, - -0.0051415, - 0.0158, - 0.02185, - -0.039089, - -0.016207, - -0.079839, - 0.0023205, - -0.11095, - -0.018719, - 0.09672, - -0.10432, - -0.019064, - -0.0057919, - 0.053939, - -0.084973, - -0.065784, - 0.021416, - -0.0075903, - 0.091523, - 0.018616, - 0.040114, - -0.022336, - -0.19131, - 0.093287, - -0.051548, - -0.062221, - -0.065709, - 0.11405, - -0.066264, - -0.025098, - 0.01643, - -0.020817, - 0.13663, - 0.022305, - -0.0074715, - -0.016652, - -0.0043272, - -0.004035, - -0.050967, - -0.0027954, - -0.025254, - 0.003981, - -0.04958, - -0.032428, - 0.080165, - 0.11639, - -0.015724, - 0.0053646, - 0.039308, - 0.080867, - 0.075861, - 0.035057, - 0.066086, - 0.0099487, - -0.11541, - -0.020612, - 0.02908, - -0.037167, - 0.022757, - -0.072528, - 0.067619, - -0.027533, - 0.10346, - -0.031853, - 0.0017507, - -0.024914, - -0.019451, - -0.029951, - -0.061065, - 0.013133, - 0.00025712, - -0.021332, - 0.011953, - -0.049753, - 0.025774, - 0.01992, - -0.024057, - 0.029844, - -0.026161, - -0.045384, - 0.06726, - 0.017201, - 0.028207, - 0.013065, - 0.038994, - -0.017291, - -0.042723, - 0.001218, - -0.026849, - -0.026075, - 0.0071223, - -0.049164, - 0.0068024, - 0.070324, - -0.10148, - -0.035671, - -0.06443, - 0.013309, - 0.030338, - -0.057393, - -0.14628, - 0.048208, - 0.0676, - 0.032498, - -0.0045854, - 0.067613, - -0.090264, - 0.030189, - -0.030049, - 0.012168, - -0.0098537, - 0.050328, - -0.079723, - 0.084874, - 0.0050781, - -0.0060494, - -0.085377, - -0.11353, - 0.040492, - 0.003515, - 0.093498, - -0.025662 - ], - "work": [ - -0.015385, - -0.027912, - 0.033352, - -0.040258, - 0.019266, - -0.04128, - -0.011363, - -0.15531, - 0.0097322, - -0.044111, - -0.088069, - -0.056179, - -0.01853, - -0.06472, - -0.012753, - -0.013311, - 0.17249, - 0.094356, - 0.066992, - 0.016893, - -0.030689, - 0.10354, - -0.037671, - 0.040575, - 0.018739, - 0.045882, - -0.02173, - 0.036516, - -0.024046, - 0.024025, - -0.034322, - 0.045598, - -0.0063701, - -0.037287, - 0.0070814, - -0.042463, - 0.0080522, - -0.035437, - 0.002115, - -0.052203, - 0.015092, - -0.12012, - -0.027695, - 0.0024393, - -0.033467, - -0.036085, - 0.011274, - -0.0046142, - -0.0004965, - 0.035576, - -0.015907, - 0.028688, - -0.020588, - 0.025222, - -0.17994, - 0.042042, - -0.0741, - -0.0027172, - -0.10747, - 0.0060101, - -0.037017, - 0.028284, - 0.22628, - 0.0056819, - 0.019909, - 0.025777, - -0.028757, - -0.079416, - 0.0063626, - 0.013895, - 0.062981, - 0.037393, - -0.010441, - -0.015914, - 0.050958, - -0.055983, - -0.039977, - 0.039388, - 0.029558, - -0.052357, - -0.045035, - 0.0046065, - 0.027359, - 0.07101, - 0.023241, - -0.013024, - -0.0020824, - -0.032757, - 0.026132, - 0.059908, - -0.026448, - 0.013093, - -0.14234, - 0.00066604, - 0.034237, - -0.02851, - 0.030218, - 0.030479, - 0.12465, - 0.012248, - 0.046364, - -0.046714, - 0.03741, - 0.043126, - 0.035029, - -0.11076, - 0.028639, - 0.10751, - -0.018018, - -0.030468, - 0.046462, - 0.017741, - 0.0912, - 0.055252, - -0.033116, - 0.017366, - -0.033897, - -0.033258, - -0.06067, - -0.041008, - 0.0038934, - -0.063272, - -0.050036, - 0.058517, - 0.099061, - 0.034091, - 0.014771, - -0.14154, - 0.079223, - 0.164, - 0.079438, - 0.043965, - -0.011315, - -0.00016718, - -0.026104, - 0.025314, - 0.031914, - 0.088593, - 0.057724, - 0.027882, - 0.039163, - -0.0077131, - 0.041727, - 0.019361, - -0.088133, - 0.02376, - -0.045987, - -0.030305, - 0.050897, - -0.073899, - 0.024756, - 0.12604, - -0.0052696, - -0.19644, - 0.011968, - 0.0024469, - 0.047275, - 0.052865, - 0.011022, - -0.083903, - 0.038004, - -0.010425, - -0.017065, - -0.0037581, - -0.00050848, - -0.0027364, - -0.010017, - 0.01057, - 0.01469, - -0.012347, - 0.098887, - 0.03508, - 0.056804, - -0.02929, - 0.028644, - 0.020435, - -0.049807, - 0.031913, - -0.036377, - 0.04597, - -0.024447, - -0.0050546, - -0.0113, - 0.027645, - -0.048954, - -0.074082, - 0.038858, - 0.1184, - 0.016229, - 0.04319, - 0.01346, - 0.095097, - -0.057194, - -0.058984, - -0.019083, - 0.062345, - 0.00027368, - -0.032578, - -0.037172, - -0.025802, - -0.2037, - 0.15347, - -0.0072438, - -0.045759, - 0.00090456, - 0.0095992, - 0.0046967, - -0.022004, - 0.030693, - -0.046479, - 0.088663, - 0.022246, - 0.0024798, - -0.046955, - 0.014218, - 0.014844, - 0.036518, - 0.033231, - -0.091503, - 0.0021572, - -0.01612, - -0.049077, - 0.0078821, - 0.18297, - 0.050404, - -0.017314, - 0.056635, - 0.15162, - 0.026815, - -0.048682, - 0.0034095, - -0.10661, - -0.058278, - -0.031348, - 0.062368, - -0.016029, - 0.068601, - -0.0050201, - 0.052017, - 0.025495, - 0.12913, - 0.032322, - -0.036451, - -0.022952, - -0.066017, - 0.037444, - -0.091195, - -0.086118, - 0.013338, - 0.061039, - 0.059314, - 0.023331, - 0.015814, - 0.053013, - 0.0066051, - -0.011222, - -0.039205, - 0.063615, - -0.002706, - -0.014364, - -0.0026759, - 0.0053666, - -0.017717, - -0.036695, - -0.019235, - -0.0010231, - 0.0010989, - 0.014231, - -0.04635, - 0.010062, - 0.029189, - 0.099874, - -0.13419, - -0.10891, - 0.021999, - -0.056895, - 0.018084, - 0.0061507, - 0.051168, - 0.099896, - 0.068602, - -0.018066, - 0.011681, - -0.025567, - 0.0098218, - 0.038664, - 0.0091223, - -0.030813, - -0.0013919, - 0.042524, - 0.019388, - -0.0066811, - -0.027647, - -0.0031457, - 0.015832, - 0.055898, - -0.08605, - 0.0084577, - -0.011134, - -0.040428 - ], - "neighborhood": [ - 0.08466, - -0.031764, - 0.022214, - 0.047448, - -0.028473, - 0.0080984, - 0.013744, - -0.063304, - 0.0052412, - 0.017351, - -0.012896, - -0.070084, - -0.0069947, - 0.024215, - -0.031224, - -0.0013271, - 0.077031, - 0.045838, - 0.022239, - -0.00075633, - 0.048398, - -0.020698, - -0.0033037, - 0.047197, - 0.0039859, - 0.016386, - -0.0072572, - -0.0058922, - -0.005649, - 0.059108, - -0.047028, - -0.0099028, - 0.031079, - -0.021916, - 0.0086485, - 0.021289, - 0.02831, - 0.052248, - -0.011859, - -0.054756, - 0.013047, - -0.056572, - 0.0090599, - -0.026254, - -0.0012932, - -0.019638, - -0.019197, - 0.048102, - -0.034369, - 0.035549, - 0.022088, - 0.0087088, - -0.029085, - -0.017048, - -0.018325, - -0.03006, - 0.0069148, - -0.00090903, - -0.041213, - -0.036444, - -0.020018, - -0.018995, - 0.054428, - -0.024329, - 0.064673, - -0.00474, - 0.021631, - -0.0081409, - -0.030199, - -0.051812, - 0.031828, - -0.014109, - 0.0081001, - -0.055602, - 0.056713, - -0.0012174, - 0.0078399, - -0.021605, - 0.032499, - -0.022958, - 0.0026701, - 0.036705, - -0.0043955, - 0.0012778, - -0.030808, - -0.015726, - -0.014915, - -0.036921, - 0.056847, - 0.012591, - 0.010226, - 0.031114, - -0.07123, - 0.027406, - 0.0085269, - 0.071319, - -0.017199, - 0.037651, - 0.04419, - 0.012984, - 0.031498, - -0.0095173, - -0.010668, - -0.031818, - 0.020773, - -0.067615, - -0.010012, - 0.034434, - 0.036949, - 0.021124, - -0.052577, - 0.062746, - 0.0088541, - 0.025825, - 0.029662, - -0.021611, - -0.037918, - -0.013278, - -0.023956, - 0.058952, - -0.059256, - -0.048997, - 0.019993, - -0.031287, - 0.0091601, - -0.046645, - 0.048744, - -0.072122, - 0.035562, - 0.02812, - 0.042684, - 0.0091572, - 0.036038, - 0.047281, - 0.00013149, - -0.0031413, - 0.010762, - 0.01791, - 0.0021184, - -0.024794, - 0.0049916, - -0.0065741, - -0.013923, - 0.022885, - 0.00082885, - 0.0023064, - 0.02676, - 0.047807, - 0.00476, - 0.02, - 0.017888, - 0.03995, - 0.0077286, - -0.0064042, - 0.01409, - -0.00029268, - 0.025692, - 0.040754, - 0.0046134, - 0.012116, - -0.011736, - -0.014344, - -0.018441, - -0.031636, - -0.019219, - -0.0083204, - 0.026064, - -0.027824, - 0.026076, - 0.029438, - -0.012599, - 0.0032692, - 0.05134, - 0.039293, - 0.015774, - 0.033398, - 0.0088326, - 0.036321, - -0.013923, - -0.034452, - 0.0083678, - 0.0052252, - -0.0019027, - 0.0024856, - -0.032811, - 0.0015402, - -0.0070292, - 0.055565, - 0.043778, - -0.0219, - -0.037064, - 0.041671, - -0.0039491, - 0.026495, - 0.057682, - 0.017101, - 0.043798, - 0.066814, - 0.028716, - -0.0047562, - -0.083606, - 0.028922, - -0.0032041, - 0.0040977, - 0.014912, - -0.017893, - 0.030324, - -0.014305, - -0.05181, - -0.011639, - 0.05516, - -0.035233, - 0.0041473, - -0.02066, - -0.012801, - -0.03918, - -0.0021213, - -0.00093212, - 0.025271, - -0.032166, - 0.04032, - -0.033925, - -0.020122, - 0.061038, - -0.048698, - -0.01456, - 0.0097713, - 0.035887, - 0.0156, - -0.018449, - -0.042691, - -0.035326, - -0.039826, - 0.025391, - -0.0063069, - 0.026268, - -0.020902, - 0.016903, - 0.0032738, - 0.004469, - 0.040335, - -0.0086333, - 0.029982, - -0.02155, - 0.003242, - 0.055028, - -0.011367, - 0.02598, - -0.012993, - -0.030228, - 0.0013669, - -0.048531, - -0.038076, - -0.023983, - -0.0053804, - -0.038109, - -0.030118, - 0.024716, - 0.012568, - -0.0095381, - 0.0038117, - 0.027164, - -0.018949, - -0.04313, - -0.013232, - 0.01136, - 0.0023478, - 0.015727, - 0.014455, - 0.050957, - -0.047443, - 0.024325, - -0.080073, - -0.030406, - 0.061903, - -0.041719, - -0.034448, - -0.031028, - -0.0019568, - 0.006169, - 0.030193, - 0.0054887, - -0.025692, - -0.0037744, - -0.008455, - 0.036201, - -0.0016574, - -0.036771, - -0.019579, - -0.0010095, - 0.017293, - 0.029896, - -0.030293, - 0.010089, - 0.018978, - 0.028574, - 0.009215, - 0.022626, - -0.069651, - -0.0016699 - ], - "trend": [ - -0.0026145, - 0.010253, - -0.06359, - -0.041639, - -0.10115, - 0.021619, - -0.054975, - -0.14939, - -0.030444, - -0.021989, - -0.046079, - -0.025422, - -0.058261, - 0.020515, - 0.023384, - 0.035704, - 0.16234, - 0.027925, - 0.13303, - -0.04369, - 0.048336, - -0.039075, - -0.094938, - 0.058089, - -0.071029, - 0.0069346, - -0.022936, - 0.057931, - -0.0004071, - 0.01574, - -0.025146, - -0.07845, - 0.040508, - -0.14257, - -0.034886, - -0.036508, - 0.097313, - 0.077065, - 0.045246, - 0.015777, - -0.017188, - -0.11808, - -0.11041, - -0.011808, - 0.023197, - 0.028028, - 0.062362, - -0.031741, - 0.005065, - -0.015018, - 0.044482, - -0.010919, - -0.10621, - 0.090021, - -0.054314, - 0.03131, - 0.092911, - 0.073578, - -0.053794, - -0.013814, - 0.020539, - -0.049515, - 0.11788, - 0.0028726, - 0.061587, - -0.038432, - -0.0308, - 0.062163, - 0.11529, - -0.020587, - -0.038029, - -0.013249, - -0.049449, - -0.088756, - 0.13685, - 0.010563, - 0.0073766, - -0.032781, - 0.028217, - -0.063799, - -0.010887, - 0.019035, - -0.085572, - 0.083231, - -0.015742, - 0.079808, - 0.020149, - 0.014309, - -0.086693, - 0.0060113, - 0.036444, - 0.021202, - -0.13019, - -0.06821, - 0.048619, - -0.025706, - -0.10098, - -0.04857, - -0.033228, - 0.05864, - -0.021864, - -0.054691, - -0.00027094, - -0.06581, - -0.10446, - -0.06618, - 0.080202, - -0.081873, - 0.024806, - 0.096112, - -0.038375, - 0.026112, - 0.08224, - 0.012604, - -0.038232, - -0.042346, - -0.0083784, - -0.049505, - -0.094024, - -0.017853, - -0.019496, - 0.087586, - 0.13279, - 0.10075, - 0.10232, - 0.046688, - -0.028213, - -0.08651, - -0.00013414, - 0.15971, - 0.056516, - -0.011716, - 0.014872, - 0.01238, - -0.015388, - 0.069732, - -0.060969, - 0.15955, - 0.040278, - 0.022852, - 0.090361, - -0.073903, - 0.045922, - 0.043908, - -0.019919, - -0.019709, - 0.024314, - 0.039279, - 0.017563, - -0.032428, - 0.085959, - 0.048361, - -0.037122, - -0.14939, - 0.025422, - 0.067497, - -0.051852, - 0.057109, - -0.077966, - 0.071296, - 0.070856, - 0.039291, - -0.10462, - 0.035524, - -0.016281, - 0.012338, - -0.051582, - 0.033519, - -0.0070418, - 0.0065134, - -0.0077755, - -0.0017996, - 0.066582, - 0.0078326, - -0.038787, - 0.054827, - -0.092763, - 0.034627, - -0.078135, - -0.037761, - 0.011654, - -0.018166, - -0.040312, - -0.10266, - 0.00084698, - -0.10449, - 0.054132, - 0.11959, - -0.084725, - 0.011004, - -0.012571, - 0.091879, - -0.056587, - -0.050485, - 0.019405, - -0.036192, - -0.038874, - -0.025662, - -0.029319, - 0.02754, - -0.20536, - 0.040011, - 0.014178, - -0.024815, - -0.018426, - 0.050613, - 0.1127, - 0.000089351, - 0.047527, - -0.018038, - 0.043153, - 0.0099708, - 0.03483, - -0.034225, - 0.098179, - -0.0053489, - -0.011248, - 0.0083553, - 0.025287, - -0.11036, - -0.054863, - -0.051107, - 0.064295, - 0.13077, - 0.043495, - -0.014934, - -0.054497, - 0.11925, - 0.032718, - 0.0051386, - 0.055624, - -0.14469, - -0.039633, - -0.0001975, - 0.11092, - -0.0019459, - 0.033727, - -0.017948, - 0.057103, - 0.050498, - 0.10532, - -0.004531, - -0.0068273, - -0.036137, - -0.092008, - 0.014763, - -0.03275, - 0.0064904, - -0.0070132, - 0.0068345, - 0.14019, - -0.017519, - -0.028198, - -0.012459, - 0.032606, - 0.062594, - -0.054655, - 0.10858, - 0.11751, - -0.026386, - 0.086021, - -0.016043, - -0.073729, - -0.064162, - 0.0086823, - 0.046619, - 0.11296, - 0.04367, - 0.036019, - 0.10545, - -0.055154, - 0.09158, - -0.15726, - -0.060832, - 0.1871, - -0.12223, - 0.0075579, - 0.085046, - 0.03041, - 0.027635, - 0.10518, - -0.020463, - 0.022624, - 0.035282, - -0.029227, - -0.044144, - 0.0050146, - 0.037341, - 0.0092972, - 0.020793, - -0.080789, - 0.01238, - -0.0013514, - 0.034942, - -0.056847, - -0.09388, - -0.011054, - 0.017574, - 0.14289, - -0.028093 - ], - "phones": [ - -0.032832, - -0.012769, - 0.033277, - -0.015228, - 0.059956, - -0.021746, - 0.084242, - -0.06935, - 0.1051, - 0.013601, - 0.0056549, - -0.071756, - -0.09435, - -0.02677, - -0.023712, - -0.033092, - 0.039148, - -0.018073, - 0.066611, - -0.049358, - 0.014797, - -0.057343, - 0.10507, - 0.072215, - 0.060686, - -0.045012, - 0.025181, - 0.024716, - 0.069541, - -0.017634, - -0.083469, - 0.027274, - 0.041047, - -0.0025844, - 0.059427, - -0.016057, - 0.049833, - 0.010597, - -0.023632, - -0.09681, - -0.078934, - -0.13404, - -0.028794, - 0.024008, - 0.1175, - 0.0036807, - -0.0045418, - -0.075242, - -0.031013, - -0.045612, - -0.0061027, - -0.013334, - 0.024608, - 0.015932, - -0.10185, - 0.14072, - -0.0022544, - -0.0016087, - -0.047056, - -0.0054959, - -0.067835, - -0.024692, - 0.16397, - 0.062529, - 0.041378, - -0.029191, - 0.079518, - -0.061191, - -0.070197, - 0.012045, - 0.0017348, - -0.016366, - 0.062525, - -0.067013, - -0.1302, - 0.040306, - 0.092115, - -0.045355, - -0.055862, - -0.048353, - -0.030882, - -0.12215, - -0.025934, - 0.11466, - 0.030269, - -0.088934, - 0.011456, - 0.00024025, - -0.0716, - 0.029395, - -0.066711, - -0.047732, - -0.063262, - 0.062559, - 0.0049874, - 0.091899, - 0.046139, - -0.050915, - 0.0086345, - -0.037752, - 0.093293, - 0.036221, - -0.034883, - 0.037352, - 0.035247, - -0.11675, - -0.001978, - -0.016706, - 0.021288, - -0.027531, - 0.099643, - 0.057182, - 0.098654, - 0.10935, - -0.13263, - -0.058427, - -0.052974, - -0.01147, - -0.021122, - -0.10324, - -0.0070794, - 0.044782, - 0.034037, - -0.014598, - 0.11728, - 0.038817, - -0.0034576, - -0.032521, - 0.020029, - 0.096986, - 0.043511, - 0.076784, - -0.014693, - -0.042173, - 0.086539, - -0.014992, - 0.05196, - -0.000069134, - -0.12036, - 0.042717, - 0.14234, - 0.063788, - 0.06605, - 0.015084, - 0.035078, - 0.0088975, - -0.0033809, - 0.11439, - 0.0068548, - -0.067056, - -0.042055, - 0.0701, - 0.01381, - -0.043863, - -0.031464, - 0.04883, - -0.07055, - -0.031027, - -0.0022153, - 0.01046, - 0.053174, - 0.034339, - 0.011367, - 0.016492, - 0.0091516, - -0.033292, - -0.0093556, - -0.0025794, - 0.021032, - 0.071479, - -0.0088132, - 0.071223, - 0.059376, - 0.087713, - -0.090645, - 0.055245, - -0.0054003, - 0.056069, - 0.022984, - -0.001658, - 0.063824, - -0.0097269, - 0.017278, - 0.010613, - 0.0021452, - -0.068038, - -0.02257, - 0.16166, - 0.082432, - 0.049831, - -0.023985, - 0.040226, - -0.090889, - 0.047755, - 0.068097, - -0.021995, - -0.009757, - 0.014769, - -0.013711, - 0.069824, - -0.13809, - 0.086402, - -0.055856, - 0.10503, - 0.013643, - 0.039559, - 0.033758, - -0.045189, - -0.12804, - -0.096549, - 0.07694, - 0.017867, - 0.086743, - 0.11972, - -0.031118, - -0.041761, - -0.069773, - 0.030444, - -0.032776, - -0.0103, - 0.051, - -0.052878, - 0.0035842, - 0.093906, - 0.070539, - -0.050824, - 0.020966, - 0.034772, - -0.024526, - 0.012462, - 0.043127, - -0.042028, - -0.082294, - -0.043372, - 0.094278, - 0.079894, - 0.019351, - 0.010568, - 0.021179, - 0.017892, - 0.00035444, - -0.083034, - 0.052895, - 0.03686, - 0.062339, - -0.069865, - 0.031402, - 0.00063578, - -0.011877, - 0.052504, - -0.026743, - 0.0325, - -0.092755, - 0.079485, - 0.012215, - -0.020364, - -0.072151, - -0.035024, - -0.044167, - 0.035948, - -0.018655, - -0.02693, - -0.0048413, - -0.02989, - 0.060294, - 0.0021298, - -0.0445, - 0.020418, - 0.055008, - 0.078562, - -0.11533, - 0.076177, - -0.13281, - -0.0027185, - 0.0055825, - -0.019142, - 0.011544, - 0.085565, - 0.05701, - -0.048831, - 0.045346, - -0.061346, - -0.069845, - 0.0219, - -0.058424, - -0.077554, - -0.14017, - 0.019606, - 0.024178, - -0.037989, - 0.056162, - 0.0051515, - -0.17019, - 0.0061523, - 0.038281, - -0.019694, - -0.062097, - 0.054771, - 0.078452, - -0.014298 - ], - "skiing": [ - -0.030709, - -0.025887, - 0.040809, - -0.048357, - 0.031615, - -0.084085, - -0.062822, - -0.066122, - 0.047536, - -0.10088, - 0.01868, - -0.072612, - 0.034087, - -0.073281, - -0.11531, - 0.034348, - 0.10097, - -0.033104, - 0.027589, - 0.0012639, - -0.064224, - -0.080879, - -0.031421, - 0.069789, - 0.08172, - -0.0048428, - -0.012474, - 0.12237, - -0.013375, - 0.043041, - 0.078763, - -0.077558, - 0.039481, - -0.035025, - 0.073543, - 0.024435, - 0.045079, - -0.03022, - 0.018257, - -0.027062, - 0.002619, - -0.1273, - 0.049368, - -0.065568, - 0.027155, - -0.0032372, - -0.024819, - -0.054954, - -0.018885, - 0.03118, - 0.0068303, - 0.053624, - 0.012975, - 0.096078, - -0.10452, - -0.0041382, - 0.060662, - -0.05035, - -0.038824, - 0.0063786, - -0.015738, - 0.015274, - 0.061021, - 0.090767, - 0.018182, - -0.052133, - 0.0044492, - -0.039176, - 0.0092163, - 0.051511, - 0.052144, - -0.063665, - 0.024806, - 0.10206, - 0.040591, - -0.066049, - 0.045921, - -0.045447, - -0.13007, - -0.021561, - -0.026272, - -0.022233, - -0.034855, - 0.047633, - -0.055149, - -0.078249, - 0.033245, - -0.019549, - -0.0129, - -0.058568, - 0.050139, - 0.057958, - -0.12254, - 0.048305, - 0.040556, - 0.095788, - -0.11511, - 0.069807, - -0.0020091, - 0.071444, - -0.0087758, - 0.11234, - -0.014209, - 0.0072873, - 0.022118, - -0.097534, - -0.024251, - 0.14499, - -0.04169, - -0.027834, - -0.01725, - 0.039046, - 0.088088, - 0.081596, - 0.071301, - -0.031523, - 0.033923, - 0.020574, - -0.035466, - 0.069539, - 0.06828, - 0.068153, - -0.040319, - -0.018642, - 0.061819, - -0.081978, - -0.037989, - -0.10248, - -0.019448, - 0.14882, - 0.048858, - 0.028183, - -0.030201, - -0.0003282, - -0.037752, - -0.021815, - 0.12778, - 0.019576, - -0.0026908, - 0.0081715, - 0.052947, - -0.10669, - 0.021926, - -0.018309, - 0.060941, - 0.12829, - 0.016663, - -0.14838, - 0.080033, - -0.0058439, - 0.089588, - 0.058469, - -0.03209, - -0.036498, - 0.063847, - 0.045302, - -0.019787, - 0.11263, - 0.077466, - 0.001609, - 0.037107, - -0.017741, - -0.10495, - 0.026837, - -0.087588, - 0.019811, - -0.018378, - 0.056712, - -0.016176, - -0.01697, - 0.094393, - -0.049755, - 0.0003841, - 0.017206, - 0.061483, - 0.059689, - 0.00080562, - 0.039537, - -0.036236, - 0.016573, - 0.04912, - -0.089164, - -0.10522, - -0.13954, - 0.066534, - -0.06132, - -0.083795, - 0.11819, - -0.020454, - -0.0069717, - 0.036972, - 0.039052, - -0.030402, - 0.056361, - -0.023703, - -0.025643, - 0.036964, - -0.13887, - -0.046793, - -0.0056131, - -0.19336, - 0.068928, - -0.02781, - -0.06646, - 0.018822, - 0.070277, - -0.051964, - 0.081364, - -0.11833, - -0.016068, - 0.13761, - 0.0084564, - 0.030383, - -0.056492, - 0.033791, - 0.023776, - -0.013098, - -0.080434, - 0.012299, - -0.05881, - -0.016917, - -0.088728, - -0.083909, - 0.091903, - -0.035479, - 0.12311, - -0.090998, - 0.09726, - -0.076011, - 0.037215, - 0.12373, - -0.049676, - -0.061086, - 0.0069508, - -0.0076823, - 0.055309, - 0.0092738, - 0.015067, - -0.05584, - -0.010082, - 0.052047, - 0.10292, - 0.087954, - -0.093186, - -0.047772, - 0.10811, - 0.027912, - -0.046411, - -0.037808, - -0.022597, - 0.052378, - 0.023875, - -0.099949, - 0.091204, - 0.020621, - 0.080846, - -0.054545, - -0.0025998, - 0.018576, - 0.20801, - 0.0076426, - -0.016001, - 0.031417, - 0.076352, - -0.007148, - -0.017523, - -0.051167, - -0.011451, - 0.047323, - -0.012433, - -0.010418, - 0.097388, - -0.12685, - -0.037053, - -0.029835, - -0.089497, - -0.011757, - 0.025859, - 0.03533, - -0.050144, - 0.090028, - -0.0047592, - -0.010175, - 0.085839, - 0.054119, - -0.044844, - 0.074495, - -0.045894, - -0.074266, - 0.014773, - -0.03631, - -0.070151, - -0.12198, - -0.12546, - 0.0026491, - 0.052151, - 0.082518, - 0.054187, - 0.013491, - -0.1275 - ], - "wrestling": [ - -0.042682, - -0.042363, - 0.01652, - 0.02551, - -0.015002, - -0.09768, - -0.010318, - -0.091192, - 0.056015, - 0.011905, - 0.067214, - -0.071116, - -0.0094226, - 0.040091, - 0.022501, - -0.040245, - 0.07118, - -0.029716, - 0.010012, - 0.016592, - 0.0036647, - -0.020055, - 0.0037785, - 0.029567, - 0.056313, - 0.0070159, - 0.032113, - -0.08193, - -0.012823, - 0.031494, - -0.0042549, - 0.019607, - 0.033995, - -0.028627, - 0.053367, - 0.012244, - 0.044241, - 0.020161, - -0.022469, - 0.045929, - 0.047675, - -0.072337, - -0.0052903, - 0.004123, - 0.013313, - 0.0026584, - 0.076212, - -0.082631, - -0.015595, - 0.015133, - -0.0094618, - 0.0046576, - 0.07584, - 0.038462, - -0.063242, - 0.019595, - -0.0012529, - 0.010807, - -0.023622, - 0.0097196, - 0.012432, - 0.016952, - 0.087254, - 0.012579, - -0.01091, - -0.015988, - -0.036549, - -0.0303, - 0.024581, - -0.075781, - 0.0097329, - -0.020393, - 0.052766, - 0.072922, - 0.12213, - 0.053433, - -0.024738, - 0.0026395, - 0.0094935, - -0.023559, - -0.0050847, - -0.0054223, - -0.06066, - 0.036289, - -0.033294, - 0.0033548, - -0.065047, - -0.028254, - 0.0235, - 0.016616, - -0.0056253, - 0.041552, - -0.06406, - 0.016401, - 0.061811, - 0.058152, - 0.0047919, - -0.03914, - 0.086097, - -0.065481, - -0.012108, - 0.036704, - -0.040833, - -0.034665, - 0.030746, - -0.091906, - -0.014383, - 0.01093, - -0.087248, - 0.05481, - -0.022601, - 0.027989, - 0.034965, - -0.038968, - 0.023616, - 0.030053, - -0.022665, - -0.029042, - -0.036252, - -0.019102, - -0.080477, - 0.086283, - -0.0048229, - 0.0058521, - 0.079782, - -0.038031, - -0.024578, - -0.067647, - -0.027829, - 0.10039, - -0.03444, - 0.024864, - 0.02626, - 0.033844, - 0.010704, - -0.025017, - -0.028966, - 0.027818, - 0.034029, - 0.032636, - 0.046198, - -0.048483, - -0.033818, - 0.028231, - -0.007049, - -0.050613, - -0.0058056, - -0.077135, - 0.039009, - -0.045341, - 0.035154, - 0.050959, - -0.091343, - -0.07507, - -0.022346, - -0.010274, - 0.027672, - 0.045005, - 0.053257, - -0.00746, - -0.050993, - 0.078689, - -0.057169, - -0.0072782, - -0.048186, - -0.0054299, - -0.0048585, - 0.014665, - -0.045569, - -0.030366, - 0.043457, - 0.0015377, - -0.023118, - 0.046022, - 0.051169, - 0.039433, - -0.017452, - -0.020035, - -0.013814, - -0.0082595, - 0.0036388, - -0.10996, - 0.020212, - -0.013726, - 0.035964, - -0.03654, - -0.0025474, - 0.071364, - -0.016202, - 0.0098425, - 0.0072365, - 0.034599, - -0.011418, - -0.067558, - -0.0054539, - -0.079176, - 0.015688, - -0.12713, - 0.045878, - 0.019812, - -0.12937, - 0.037151, - 0.0000070178, - -0.029648, - -0.000054593, - -0.012685, - -0.020587, - 0.078812, - 0.016269, - -0.0092679, - 0.096615, - 0.017988, - 0.015391, - -0.0084001, - 0.0011711, - 0.015451, - -0.0315, - 0.0031209, - 0.014933, - -0.033875, - -0.016284, - -0.03283, - -0.093869, - 0.080785, - -0.054286, - -0.031585, - 0.0049657, - 0.092936, - -0.021004, - 0.018665, - 0.047673, - -0.015699, - -0.038091, - -0.020441, - -0.043486, - -0.016204, - -0.016038, - 0.0055657, - -0.02591, - -0.027627, - 0.052471, - -0.028694, - 0.00073398, - 0.0038627, - -0.068233, - 0.063232, - -0.047611, - 0.031819, - 0.02345, - 0.030738, - 0.024309, - 0.0038137, - 0.025367, - -0.042678, - -0.021804, - 0.042556, - -0.050676, - 0.016938, - 0.0035181, - 0.021128, - 0.035374, - -0.026377, - 0.093795, - 0.042637, - 0.030012, - -0.011811, - 0.031994, - -0.0000781, - -0.067952, - -0.058183, - -0.038166, - 0.057168, - -0.073275, - 0.0029348, - -0.021873, - -0.060413, - -0.10909, - -0.021003, - 0.043794, - 0.018421, - 0.056452, - -0.012238, - 0.066519, - -0.041194, - 0.012693, - 0.037174, - 0.044562, - -0.034038, - -0.0040244, - 0.0057641, - 0.10081, - -0.059829, - -0.033496, - -0.011969, - 0.02805, - -0.039955, - 0.025278, - 0.033838, - 0.016555, - -0.037909 - ], - "biology": [ - -0.034941, - -0.076575, - 0.014729, - -0.029503, - 0.04008, - -0.077622, - 0.023556, - -0.10014, - 0.068913, - 0.013777, - 0.029307, - -0.037286, - 0.033731, - -0.015645, - -0.006815, - -0.10001, - 0.11337, - 0.091297, - 0.048174, - 0.045201, - 0.048673, - 0.011157, - 0.092963, - 0.059278, - -0.032197, - -0.057959, - -0.012453, - 0.021548, - -0.0058447, - 0.092167, - 0.074101, - 0.047176, - 0.054034, - -0.030341, - 0.010482, - 0.044219, - 0.014929, - -0.05557, - 0.040197, - -0.060264, - -0.054792, - -0.13514, - -0.0019579, - -0.052429, - 0.03817, - -0.026527, - -0.035625, - -0.051208, - 0.010086, - 0.010505, - -0.029457, - 0.079731, - 0.019254, - 0.0017962, - -0.03405, - -0.0018962, - 0.0049042, - 0.046481, - -0.00071521, - 0.054258, - -0.0093181, - 0.057821, - 0.10906, - 0.050772, - 0.027527, - -0.030955, - 0.047826, - 0.059041, - -0.019257, - 0.0098643, - 0.021726, - 0.035821, - -0.0090286, - -0.0088341, - 0.0044058, - -0.0023315, - -0.060581, - -0.017023, - 0.013308, - 0.037632, - -0.048933, - 0.039889, - -0.062306, - 0.055307, - -0.066653, - 0.021215, - 0.071834, - -0.023141, - 0.026584, - 0.10685, - 0.044444, - 0.033124, - -0.087704, - 0.040179, - 0.014535, - 0.10081, - 0.058594, - 0.024944, - -0.0028626, - 0.021887, - 0.0069575, - 0.03389, - 0.0318, - 0.023137, - -0.0066108, - -0.070171, - -0.025511, - 0.015339, - 0.057398, - -0.035808, - -0.0343, - 0.082584, - 0.046891, - -0.035333, - 0.037559, - 0.053326, - 0.0026385, - 0.004397, - -0.024322, - 0.0090564, - -0.046083, - 0.027317, - 0.0033664, - -0.04571, - 0.032998, - 0.021121, - -0.087299, - -0.071393, - -0.012288, - 0.17189, - -0.045786, - -0.017928, - -0.015981, - 0.045236, - 0.034954, - 0.0053318, - 0.030261, - 0.012945, - 0.040478, - 0.012809, - 0.024237, - -0.0079828, - 0.047782, - 0.047575, - 0.016687, - -0.082405, - -0.022121, - -0.013101, - -0.022011, - -0.065332, - 0.034845, - 0.054652, - 0.018443, - -0.067214, - 0.011176, - 0.099429, - 0.055282, - 0.0089366, - 0.052055, - -0.00089845, - 0.031425, - 0.01312, - -0.11462, - -0.040215, - 0.032356, - -0.0074503, - -0.081639, - 0.013249, - -0.025875, - 0.0021652, - 0.031521, - -0.019828, - -0.010748, - -0.040263, - 0.061427, - 0.059492, - 0.017663, - 0.046943, - -0.01709, - -0.049364, - -0.034895, - 0.071724, - 0.0053987, - -0.017726, - 0.014534, - -0.065698, - -0.020269, - 0.12352, - -0.019435, - 0.058602, - -0.0051576, - 0.091705, - -0.054096, - -0.023034, - -0.050251, - -0.037647, - -0.024587, - 0.0041734, - -0.040472, - -0.016038, - -0.14308, - -0.046122, - 0.00076216, - -0.058195, - -0.044138, - 0.022512, - -0.018955, - -0.095398, - -0.019524, - 0.022035, - 0.14278, - 0.037655, - 0.014274, - 0.045288, - 0.068181, - 0.049499, - -0.01941, - -0.027479, - -0.05767, - -0.055782, - -0.040499, - 0.01358, - -0.084871, - 0.094792, - -0.034753, - -0.072514, - 0.064355, - 0.10396, - 0.0085181, - -0.042125, - -0.046927, - -0.026344, - -0.078656, - 0.042644, - 0.024473, - 0.018276, - 0.0066871, - 0.051519, - -0.042004, - 0.010944, - 0.031889, - -0.029221, - 0.022963, - 0.050193, - 0.025428, - 0.032027, - -0.031167, - 0.00043225, - 0.024794, - 0.06003, - 0.037887, - 0.0046539, - -0.0067569, - -0.09191, - 0.029919, - 0.0099741, - 0.028069, - 0.043068, - 0.10886, - -0.014366, - 0.031597, - 0.032946, - 0.03353, - 0.040419, - 0.031403, - -0.058577, - -0.040563, - 0.038809, - 0.089078, - 0.036707, - 0.027276, - 0.083066, - -0.11254, - -0.016487, - -0.0030089, - -0.035732, - -0.061671, - 0.0097754, - 0.017754, - -0.051908, - 0.095132, - -0.0011406, - 0.022114, - -0.028876, - -0.032198, - -0.034053, - -0.055276, - -0.02172, - -0.015902, - -0.020856, - 0.017001, - 0.096069, - -0.066587, - -0.051377, - -0.0513, - -0.028709, - 0.0055709, - 0.030568, - 0.014955, - -0.0094139 - ], - "cyber": [ - -0.048123, - -0.053123, - 0.056457, - 0.0054984, - -0.0469, - -0.013522, - 0.030286, - -0.11163, - 0.13057, - 0.078647, - -0.0012276, - -0.024724, - -0.090915, - 0.013251, - -0.12512, - -0.035029, - 0.14794, - 0.027136, - 0.10425, - 0.00055143, - -0.091516, - 0.11259, - 0.11131, - 0.082689, - -0.001802, - 0.074626, - -0.0031428, - -0.045239, - -0.043691, - 0.0035815, - 0.11172, - -0.10953, - -0.095027, - 0.0097471, - 0.044691, - -0.050393, - 0.072685, - 0.034932, - 0.0050291, - -0.017859, - -0.1424, - -0.1318, - 0.0028488, - -0.03226, - 0.080241, - 0.023145, - 0.04381, - 0.05725, - -0.012035, - -0.046413, - 0.0050142, - -0.10456, - 0.024915, - -0.024149, - 0.013429, - 0.0019354, - 0.030626, - -0.035311, - -0.021382, - -0.042685, - 0.032227, - -0.010884, - 0.096578, - 0.071922, - -0.014884, - -0.040992, - 0.026514, - 0.011111, - -0.015221, - 0.084694, - -0.025949, - -0.030985, - 0.02909, - 0.024586, - 0.0076522, - -0.051217, - -0.015362, - -0.068647, - 0.073552, - -0.14678, - -0.054022, - -0.0055419, - -0.079107, - 0.047086, - 0.0158, - -0.027094, - -0.11064, - 0.0088298, - 0.10097, - 0.015357, - -0.037243, - 0.069257, - -0.14222, - 0.012436, - 0.097263, - 0.11275, - 0.079297, - -0.027487, - -0.0034265, - 0.047722, - 0.059322, - 0.028621, - 0.082999, - -0.050422, - 0.026805, - -0.12974, - -0.017241, - 0.0012228, - 0.040191, - -0.042451, - -0.020536, - 0.024738, - 0.07908, - -0.050556, - -0.030535, - 0.022677, - -0.17394, - 0.019628, - -0.05996, - 0.11226, - -0.11107, - 0.07946, - 0.051233, - -0.064405, - 0.12989, - 0.045013, - 0.019959, - -0.13434, - -0.049393, - 0.01495, - -0.0086584, - -0.0090957, - -0.0093309, - 0.019386, - 0.054098, - -0.052983, - 0.10545, - -0.024444, - -0.031163, - 0.029491, - 0.10394, - -0.10907, - -0.029907, - -0.0091001, - -0.036296, - 0.072438, - 0.056007, - -0.13337, - 0.057025, - -0.029769, - 0.047827, - 0.1613, - -0.020749, - -0.045831, - 0.040672, - -0.056572, - -0.056269, - 0.060991, - 0.045734, - -0.012005, - 0.070291, - -0.077982, - -0.12905, - -0.01144, - -0.037721, - -0.025162, - 0.022961, - -0.0040203, - 0.015339, - 0.0075556, - -0.011034, - 0.062176, - 0.011669, - -0.030961, - -0.031331, - 0.090199, - -0.03376, - 0.022918, - -0.081061, - -0.015058, - 0.011735, - 0.066623, - -0.076938, - 0.02035, - -0.047525, - -0.073555, - -0.094146, - 0.15086, - -0.05248, - 0.11793, - -0.090353, - -0.039834, - 0.0042945, - -0.010413, - -0.025721, - -0.069568, - -0.013175, - 0.08125, - -0.056177, - 0.037541, - -0.18196, - 0.064074, - -0.090325, - 0.20109, - -0.021937, - -0.0061117, - 0.013851, - -0.0081658, - 0.046129, - 0.0019251, - 0.2295, - 0.038908, - -0.075393, - -0.01196, - 0.023429, - -0.00054929, - 0.022998, - 0.019375, - 0.042177, - -0.10868, - -0.035268, - -0.047159, - -0.088904, - 0.086873, - -0.096797, - -0.050025, - 0.059196, - 0.11982, - -0.046246, - -0.045527, - -0.088095, - 0.015377, - -0.050129, - 0.020596, - -0.015141, - -0.031693, - 0.08193, - 0.03378, - -0.033513, - -0.059673, - -0.0068299, - -0.096012, - 0.12209, - -0.054328, - -0.087292, - 0.031563, - -0.077828, - 0.043647, - -0.084402, - 0.0070181, - 0.05699, - -0.032007, - -0.066562, - -0.033259, - 0.095898, - 0.11157, - 0.010775, - 0.011163, - -0.012119, - -0.010004, - 0.014817, - -0.075297, - -0.010233, - 0.0036567, - -0.031369, - -0.034949, - 0.13593, - 0.0015673, - 0.092338, - -0.014251, - -0.10169, - 0.10749, - -0.13065, - -0.041809, - 0.01844, - -0.025613, - 0.15307, - 0.0073325, - 0.0033762, - -0.036109, - 0.23297, - 0.031176, - 0.061856, - -0.055941, - -0.076099, - -0.11369, - -0.0041133, - -0.047947, - -0.020615, - -0.014455, - -0.038673, - -0.0063481, - -0.078529, - 0.070682, - -0.03511, - 0.010146, - 0.029295, - 0.11614, - -0.085193, - -0.084569 - ], - "cypher": [ - -0.031731, - 0.0035588, - 0.056276, - 0.074146, - -0.011358, - 0.0060947, - 0.021358, - -0.089124, - -0.013272, - 0.050372, - 0.090689, - 0.031145, - -0.051516, - -0.0042718, - -0.065792, - 0.087064, - 0.015518, - -0.0037171, - 0.031658, - 0.044348, - -0.021623, - 0.12711, - 0.0068742, - -0.00054014, - -0.0080378, - 0.069101, - 0.079, - -0.027998, - -0.012541, - -0.078906, - -0.069969, - -0.087204, - -0.089046, - 0.01819, - 0.019704, - -0.068381, - -0.014465, - 0.046389, - 0.049523, - 0.020327, - 0.0076937, - -0.11557, - -0.056225, - -0.067693, - -0.042734, - 0.02493, - -0.051036, - 0.052232, - -0.02507, - 0.064974, - -0.013699, - -0.079772, - 0.031644, - -0.018197, - 0.0006786, - -0.029484, - 0.036349, - 0.044597, - 0.017145, - -0.073743, - -0.060703, - -0.12533, - 0.040653, - -0.028248, - -0.091778, - -0.0019914, - 0.023099, - 0.17112, - 0.0011714, - 0.043174, - -0.050671, - 0.021, - 0.019523, - -0.0059714, - 0.036394, - -0.017981, - -0.02519, - -0.012682, - 0.0020673, - -0.022361, - -0.024978, - -0.014596, - 0.0075115, - 0.0481, - -0.070671, - 0.050324, - -0.016003, - -0.0030102, - 0.037907, - -0.024483, - 0.017479, - -0.027349, - -0.046608, - -0.037004, - 0.10254, - 0.096275, - 0.025725, - -0.10671, - 0.025361, - 0.040246, - 0.057401, - 0.045624, - 0.033013, - 0.012531, - -0.025743, - -0.10321, - 0.07394, - 0.033796, - 0.029294, - 0.063027, - 0.011469, - 0.055819, - 0.076786, - 0.022264, - -0.082689, - 0.025971, - -0.0068772, - 0.089532, - -0.03525, - -0.12402, - 0.13292, - 0.020255, - -0.082297, - -0.0074973, - 0.059637, - -0.04493, - 0.020648, - -0.041587, - -0.046157, - 0.041615, - -0.063951, - -0.019309, - 0.11064, - 0.0032545, - 0.015119, - -0.094174, - -0.025564, - 0.077422, - 0.019189, - -0.012062, - 0.060622, - 0.0086681, - -0.064474, - 0.0029976, - -0.0619, - -0.0087111, - -0.053813, - -0.054446, - 0.0040415, - -0.073485, - -0.034768, - 0.029242, - 0.068918, - -0.00879, - 0.0058597, - 0.062831, - -0.005944, - 0.071265, - -0.055183, - 0.049423, - 0.019745, - -0.038935, - -0.048181, - 0.0762, - -0.016249, - -0.090736, - -0.077637, - 0.0063547, - -0.041369, - 0.06426, - 0.079504, - 0.075074, - 0.036832, - 0.064404, - -0.023594, - 0.054608, - 0.054103, - 0.08315, - -0.0048312, - 0.048071, - -0.037786, - -0.0018775, - -0.031572, - -0.051151, - 0.087988, - 0.013289, - -0.1222, - 0.12675, - 0.12329, - 0.1099, - 0.033274, - 0.049555, - 0.055488, - -0.054201, - 0.0023422, - 0.001448, - -0.12143, - -0.054494, - -0.052223, - 0.043791, - -0.095892, - 0.012651, - -0.035415, - 0.13702, - -0.073619, - -0.040547, - 0.096918, - -0.072356, - -0.0074096, - -0.049362, - 0.13986, - 0.037402, - -0.0020421, - 0.062956, - -0.033029, - 0.0036454, - -0.11557, - 0.057697, - 0.0089763, - -0.036692, - 0.033004, - -0.039919, - -0.0070615, - 0.072228, - 0.058377, - -0.048018, - 0.085364, - 0.01826, - 0.09275, - 0.016089, - -0.019736, - -0.042828, - -0.030012, - -0.047521, - -0.038844, - -0.091752, - -0.014994, - 0.031285, - 0.033541, - -0.091665, - 0.044746, - -0.046239, - 0.0065132, - -0.022359, - -0.026019, - 0.07767, - -0.056472, - 0.087052, - 0.040401, - 0.059895, - -0.048124, - 0.023986, - 0.031938, - 0.052525, - 0.072474, - 0.0065657, - 0.046673, - 0.012143, - 0.0050878, - -0.0052529, - -0.036168, - 0.0033599, - 0.096388, - 0.0079889, - 0.11996, - -0.13584, - 0.053891, - -0.021575, - -0.071087, - -0.055915, - -0.013941, - 0.083885, - -0.028277, - 0.035671, - 0.017655, - -0.059738, - 0.062753, - -0.051494, - 0.083141, - 0.040639, - 0.058922, - -0.062435, - 0.015002, - -0.084718, - 0.0067416, - -0.012948, - 0.0075234, - -0.0040831, - -0.065885, - 0.10457, - -0.070215, - -0.013445, - -0.052458, - -0.045702, - -0.036946, - -0.0027699, - -0.03934, - -0.05501, - -0.025363, - 0.089763 - ], - "fairytales": [ - -0.018968, - -0.021823, - 0.010836, - -0.011876, - -0.044247, - -0.080956, - -0.065293, - -0.080615, - 0.024793, - -0.014764, - 0.040636, - -0.089477, - -0.012901, - -0.050268, - 0.07959, - -0.049964, - 0.089801, - -0.047245, - 0.036906, - 0.011291, - -0.024971, - -0.012707, - -0.006122, - 0.052959, - 0.016257, - 0.047445, - 0.020757, - 0.016541, - 0.11427, - -0.027537, - 0.026845, - -0.059981, - -0.021851, - -0.02904, - 0.034049, - -0.0046593, - -0.026388, - -0.027649, - -0.0053336, - -0.015872, - 0.027535, - -0.10362, - -0.0069181, - 0.041288, - 0.054571, - -0.021943, - -0.011246, - 0.083805, - -0.011639, - -0.10415, - -0.010598, - 0.020691, - -0.057483, - -0.032178, - -0.072808, - 0.012984, - -0.0017587, - -0.073935, - -0.04402, - -0.013132, - -0.051319, - -0.034136, - 0.085293, - 0.056916, - 0.085394, - 0.035571, - -0.041807, - 0.04232, - 0.0075066, - 0.045497, - 0.0078364, - -0.06974, - 0.022064, - 0.029939, - -0.0076801, - 0.024075, - 0.016396, - -0.064671, - -0.068374, - -0.0025153, - -0.028112, - 0.0059523, - -0.017198, - 0.10107, - -0.019171, - -0.024985, - 0.035211, - 0.0079855, - 0.014655, - 0.00021653, - -0.045765, - -0.019843, - -0.07749, - -0.0097658, - 0.053275, - 0.049769, - 0.051953, - 0.013157, - -0.0085286, - 0.068901, - 0.022201, - 0.0030446, - -0.073445, - 0.0027037, - -0.017019, - -0.05281, - 0.033717, - -0.026556, - -0.044675, - 0.027792, - -0.014896, - 0.034982, - 0.027307, - -0.021356, - -0.042128, - 0.034449, - -0.011866, - 0.00303, - -0.053216, - -0.052357, - -0.010686, - 0.00012969, - -0.041228, - -0.054291, - 0.08108, - 0.0039924, - -0.007126, - 0.059627, - -0.062914, - 0.096458, - -0.046381, - 0.048902, - -0.01093, - 0.0089632, - -0.044148, - -0.013459, - 0.031756, - 0.018974, - -0.016652, - -0.023596, - -0.028529, - -0.045947, - 0.048554, - 0.042054, - 0.009895, - -0.05744, - -0.0079423, - -0.0067177, - -0.04301, - -0.067095, - 0.039714, - 0.065873, - -0.036193, - 0.014327, - -0.076951, - -0.039405, - 0.035279, - 0.023861, - 0.051447, - -0.016403, - 0.060324, - 0.0026804, - -0.01093, - 0.019613, - -0.014093, - -0.066455, - 0.0061757, - 0.053813, - 0.014518, - -0.058743, - -0.043823, - -0.020612, - 0.015423, - -0.062658, - 0.053678, - 0.024937, - 0.014125, - 0.031217, - 0.014367, - -0.010461, - 0.052833, - 0.061463, - -0.03522, - -0.040983, - -0.038515, - 0.01505, - 0.041644, - 0.060378, - 0.031573, - 0.061844, - 0.020706, - 0.091383, - -0.057424, - -0.044773, - -0.010611, - 0.018498, - -0.02688, - -0.010688, - 0.043463, - 0.020674, - -0.12357, - 0.064452, - -0.01268, - -0.037068, - 0.044971, - 0.076073, - 0.046092, - -0.029678, - 0.055922, - -0.015681, - 0.076071, - -0.0026097, - -0.0031573, - -0.0017447, - 0.050073, - -0.042253, - 0.0037903, - -0.022982, - -0.078836, - 0.0032041, - 0.081044, - 0.019148, - 0.063629, - 0.074647, - 0.034238, - -0.050278, - 0.030388, - 0.057566, - -0.0012244, - 0.028484, - 0.06882, - -0.044883, - -0.095396, - 0.029079, - 0.060592, - 0.038491, - -0.053147, - -0.045487, - 0.039138, - -0.02187, - 0.041325, - 0.028585, - -0.022303, - -0.015431, - -0.0101, - 0.024814, - -0.010519, - -0.042681, - -0.016224, - 0.010299, - 0.020825, - -0.049289, - 0.0079079, - 0.038881, - -0.069069, - 0.12813, - -0.025271, - -0.080105, - 0.024938, - -0.013909, - 0.091247, - -0.022498, - 0.019267, - -0.028329, - -0.024134, - -0.03242, - 0.029229, - 0.0092646, - 0.15365, - -0.012839, - 0.020751, - 0.073092, - -0.098189, - -0.011623, - 0.0021456, - -0.028939, - 0.0065824, - -0.029965, - -0.071347, - 0.054374, - 0.036098, - -0.095192, - 0.013466, - 0.00020197, - 0.020045, - 0.034083, - 0.064314, - 0.027513, - -0.078115, - -0.058765, - -0.020614, - 0.0094015, - 0.054029, - -0.02616, - -0.029512, - -0.0086841, - 0.10006, - 0.051634, - 0.031906, - -0.002705 - ], - "elegant": [ - -0.0027741, - 0.016195, - 0.058645, - -0.0080595, - -0.0054291, - 0.0053653, - -0.069341, - -0.10013, - -0.094016, - 0.04771, - 0.012284, - -0.058006, - -0.015205, - 0.0021051, - -0.050231, - -0.029111, - 0.032649, - 0.017398, - 0.037164, - 0.027972, - 0.0071325, - -0.022421, - -0.0049626, - 0.072429, - 0.019886, - -0.036661, - 0.023662, - 0.056989, - 0.1015, - -0.0013451, - -0.02701, - -0.066157, - 0.053894, - -0.10547, - 0.051215, - 0.0014048, - 0.027814, - 0.018344, - -0.0269, - -0.026902, - 0.028418, - -0.099697, - -0.057804, - -0.026534, - -0.064698, - -0.04906, - -0.0040835, - -0.016439, - 0.021984, - 0.019139, - -0.039714, - -0.032306, - -0.070751, - -0.01104, - -0.00054282, - -0.067069, - 0.028884, - 0.019296, - -0.056131, - -0.010135, - 0.029959, - -0.014942, - 0.096134, - 0.0052728, - 0.076687, - 0.12865, - -0.01735, - -0.018422, - 0.0061278, - -0.029198, - 0.042837, - -0.024142, - 0.016797, - -0.040417, - 0.030118, - -0.012164, - -0.07163, - -0.087262, - -0.054783, - 0.028375, - 0.043037, - -0.040487, - 0.074555, - 0.023985, - 0.038604, - -0.079385, - 0.0014047, - 0.036673, - 0.011433, - 0.039041, - -0.0048755, - -0.052401, - -0.12441, - -0.03956, - 0.042, - 0.085291, - -0.021496, - -0.016048, - 0.078216, - 0.048889, - 0.038344, - 0.074798, - -0.063436, - 0.015707, - -0.071753, - -0.12439, - 0.01648, - -0.028625, - 0.0094703, - -0.042249, - -0.016073, - 0.12228, - 0.044245, - 0.0093967, - -0.10145, - 0.012671, - 0.048072, - 0.050371, - -0.032838, - -0.0073848, - 0.031966, - -0.041431, - -0.04394, - -0.027714, - 0.075719, - 0.017764, - 0.013933, - 0.037876, - -0.003049, - -0.011355, - -0.046615, - 0.042639, - 0.029848, - -0.039085, - -0.020243, - -0.085692, - 0.012125, - 0.01391, - -0.031365, - -0.068927, - 0.080165, - -0.014998, - 0.057302, - -0.0084692, - 0.087066, - -0.0025966, - 0.010726, - 0.035422, - -0.029387, - -0.017963, - 0.020994, - 0.05053, - 0.080532, - -0.029879, - -0.035794, - 0.019453, - 0.049951, - -0.0067768, - -0.016313, - 0.049286, - 0.054192, - 0.03907, - -0.017003, - 0.01209, - -0.017035, - 0.08205, - -0.016529, - -0.050003, - -0.025979, - 0.033413, - 0.072611, - -0.001583, - 0.020745, - 0.018667, - 0.031593, - 0.058661, - -0.059345, - 0.05217, - -0.025717, - 0.0028252, - -0.0032639, - -0.0065847, - 0.015485, - -0.054941, - -0.0087391, - 0.014317, - -0.036341, - 0.13145, - 0.02171, - -0.017312, - 0.060733, - 0.10544, - 0.093012, - -0.065066, - -0.029733, - -0.010311, - 0.035304, - 0.0041002, - 0.016543, - 0.002699, - -0.13805, - 0.12963, - 0.032438, - 0.023128, - -0.00080958, - -0.01626, - -0.057589, - -0.048673, - -0.039786, - -0.080487, - 0.073745, - -0.015556, - 0.016316, - 0.039173, - 0.035551, - 0.039076, - -0.00073266, - 0.035429, - -0.13263, - 0.015809, - -0.017708, - -0.027457, - 0.022329, - 0.083295, - -0.0023656, - 0.017881, - 0.064005, - 0.066107, - 0.023326, - -0.02507, - 0.019632, - -0.071807, - -0.018858, - -0.013488, - 0.059394, - -0.03251, - -0.073535, - -0.0038089, - -0.0047505, - -0.000014421, - 0.1187, - -0.074646, - -0.040054, - -0.0010423, - -0.15653, - 0.053124, - -0.033943, - -0.080638, - 0.067648, - -0.038698, - -0.046007, - -0.017187, - -0.051561, - -0.0011279, - 0.0091512, - 0.038885, - -0.064464, - -0.0087232, - 0.0065921, - 0.053661, - -0.035799, - 0.01168, - -0.017441, - 0.00062994, - -0.014918, - -0.04329, - -0.0019529, - -0.033505, - 0.021171, - -0.049788, - -0.06354, - 0.088075, - -0.10196, - -0.009084, - 0.03936, - -0.12202, - -0.0029487, - -0.019465, - 0.044853, - -0.01489, - 0.11671, - 0.061603, - -0.011381, - -0.0071349, - -0.13169, - -0.030338, - -0.038081, - -0.015408, - -0.0050384, - 0.054723, - -0.049271, - 0.023826, - 0.069888, - -0.056736, - 0.034749, - -0.0057716, - 0.031272, - 0.059234, - -0.010469, - 0.029652 - ], - "design": [ - -0.030301, - -0.040645, - -0.018795, - -0.010901, - -0.026828, - -0.059562, - -0.021714, - -0.10307, - -0.027882, - 0.031159, - 0.048317, - -0.026791, - -0.030806, - 0.073266, - 0.0031036, - 0.04537, - 0.1141, - 0.071286, - 0.061295, - -0.024608, - -0.0095002, - 0.02831, - 0.040644, - 0.067765, - 0.052904, - -0.017321, - -0.046913, - 0.0030429, - -0.049621, - 0.027225, - -0.094426, - -0.016482, - 0.058887, - -0.071912, - 0.015526, - 0.0054048, - 0.037803, - 0.0067524, - -0.016712, - -0.02025, - -0.00095622, - -0.13729, - -0.023004, - -0.050412, - -0.131, - 0.019666, - 0.021623, - 0.0071718, - -0.0067016, - 0.0038486, - -0.034157, - -0.019904, - -0.046898, - 0.060153, - -0.094852, - 0.024003, - 0.060313, - -0.036378, - -0.027542, - 0.026107, - -0.017658, - -0.010365, - 0.1247, - 0.023189, - 0.13091, - 0.090248, - -0.064031, - 0.0066448, - 0.0076113, - 0.036905, - 0.039912, - -0.027978, - -0.0097275, - -0.040001, - 0.041826, - -0.037894, - -0.035901, - -0.014925, - -0.043364, - 0.011772, - -0.00089483, - -0.02161, - -0.011698, - 0.046646, - 0.0079748, - 0.015199, - -0.056464, - -0.017559, - -0.012168, - 0.045628, - 0.038202, - -0.024961, - -0.1118, - -0.0037387, - -0.018962, - -0.025762, - 0.011969, - -0.035381, - 0.036053, - 0.0085117, - 0.042497, - 0.001721, - 0.042652, - 0.04884, - -0.02998, - -0.10342, - -0.0033952, - 0.065233, - 0.033526, - 0.046816, - 0.012366, - 0.055678, - 0.08016, - 0.049059, - 0.029133, - -0.044856, - -0.071375, - 0.0007882, - -0.059078, - -0.020277, - 0.014312, - 0.0026782, - -0.087547, - 0.050667, - 0.083421, - 0.010285, - 0.004869, - -0.10644, - 0.044998, - 0.15905, - -0.029937, - -0.0092605, - 0.054143, - -0.040695, - 0.00098757, - 0.042643, - 0.015665, - -0.0071496, - -0.0089935, - -0.028049, - 0.01469, - 0.032138, - -0.0036843, - 0.042871, - -0.018508, - -0.056737, - -0.014237, - 0.0062313, - 0.065989, - -0.038665, - 0.012627, - 0.1179, - 0.043038, - -0.12426, - 0.0053298, - 0.049018, - 0.078238, - -0.0038464, - 0.012766, - 0.0066839, - 0.015827, - 0.0053488, - -0.072323, - 0.0067539, - 0.045739, - -0.0085101, - 0.080327, - -0.045288, - 0.0056956, - 0.0038326, - 0.08022, - 0.016569, - -0.0081163, - -0.097897, - 0.019676, - 0.049257, - -0.031589, - 0.060061, - -0.057352, - 0.030247, - -0.017941, - -0.014994, - -0.024535, - 0.010682, - -0.00088727, - -0.039223, - -0.019509, - 0.077439, - 0.0098065, - -0.046582, - -0.0029008, - 0.037484, - -0.0064707, - -0.073582, - -0.013926, - -0.0078438, - 0.032493, - 0.036523, - 0.025382, - 0.0058382, - -0.18035, - 0.088751, - 0.022381, - -0.052157, - -0.030279, - -0.0047668, - -0.0512, - -0.0077474, - -0.028292, - -0.025586, - 0.11679, - 0.040418, - 0.03802, - 0.0307, - 0.020806, - -0.048771, - 0.010825, - -0.019008, - -0.058313, - -0.0044702, - -0.079592, - -0.041598, - 0.045549, - 0.1203, - -0.0045768, - -0.027635, - 0.033, - 0.035194, - 0.082613, - 0.022064, - -0.053652, - -0.10516, - -0.079445, - -0.029012, - 0.036907, - -0.014626, - -0.039838, - -0.018395, - -0.024191, - 0.017288, - 0.089757, - -0.00012126, - -0.014671, - -0.012189, - -0.059426, - 0.019931, - -0.029488, - -0.026169, - 0.011055, - 0.042808, - 0.019652, - 0.032588, - -0.015174, - -0.0031049, - 0.021489, - 0.028006, - -0.018245, - 0.076435, - 0.015238, - -0.0066583, - 0.050475, - 0.039251, - -0.068581, - -0.028886, - 0.054035, - -0.071059, - 0.0085729, - 0.02661, - -0.043086, - 0.0070198, - 0.0048683, - 0.082435, - -0.12085, - -0.058551, - -0.051819, - 0.0028673, - 0.024667, - 0.052314, - 0.016933, - 0.0078061, - 0.074306, - 0.023851, - 0.011848, - 0.022448, - 0.0151, - -0.061734, - -0.047594, - 0.0026822, - 0.0077804, - 0.025928, - -0.076755, - -0.0043688, - 0.033496, - -0.047182, - 0.0083353, - -0.063899, - 0.0331, - 0.005795, - -0.040229, - 0.012431 - ], - "traveling": [ - -0.047758, - 0.023366, - 0.014663, - -0.0042653, - -0.010582, - -0.023617, - -0.040663, - -0.094791, - 0.033028, - 0.0074142, - -0.034466, - -0.10734, - -0.035138, - -0.025167, - -0.033702, - -0.015342, - 0.027528, - -0.046681, - 0.015919, - -0.014658, - 0.011591, - 0.0056281, - -0.047269, - 0.046508, - 0.030975, - 0.0437, - -0.009261, - 0.042963, - 0.011869, - 0.017898, - -0.035895, - 0.013971, - 0.045454, - -0.0057052, - 0.013472, - -0.020209, - 0.0070031, - 0.015112, - 0.021617, - -0.018965, - 0.010144, - -0.075868, - 0.01918, - -0.029384, - 0.018319, - -0.0018108, - 0.027559, - -0.03608, - -0.0017558, - 0.052857, - 0.018361, - 0.017561, - -0.022032, - 0.033988, - -0.11751, - 0.034748, - -0.0006216, - 0.013534, - -0.019527, - 0.015255, - 0.022557, - 0.00038644, - 0.043871, - 0.042565, - -0.011571, - 0.0011961, - -0.025048, - -0.057052, - -0.024212, - 0.041584, - 0.011841, - 0.0031199, - 0.099006, - 0.0035729, - 0.050839, - 0.082233, - 0.024025, - -0.013606, - 0.000103, - -0.019642, - -0.058526, - -0.023018, - -0.0010275, - 0.050899, - 0.0021578, - -0.064199, - 0.030884, - 0.002951, - 0.03058, - -0.0026395, - 0.0028364, - 0.054629, - -0.076765, - -0.022556, - 0.044213, - 0.039649, - -0.012609, - 0.0072095, - 0.015632, - -0.032149, - 0.076101, - 0.048176, - 0.0070224, - -0.035796, - 0.071819, - -0.093886, - -0.014397, - -0.042452, - 0.011623, - 0.015908, - 0.036017, - 0.046168, - 0.03523, - 0.060715, - 0.0023008, - 0.020895, - 0.00060236, - -0.028492, - -0.035862, - 0.040868, - 0.037713, - -0.015626, - -0.040796, - 0.0094479, - 0.035482, - -0.040766, - 0.0019882, - -0.11387, - 0.015071, - 0.060288, - 0.034784, - 0.062211, - -0.0021324, - -0.034584, - -0.0033606, - 0.009941, - 0.032868, - 0.058936, - 0.016337, - 0.022473, - 0.012952, - -0.029097, - -0.0029521, - 0.027803, - 0.0076237, - 0.067552, - -0.052165, - -0.0082064, - -0.018971, - -0.030207, - 0.047973, - 0.015267, - -0.083372, - -0.092997, - 0.024141, - 0.0020716, - -0.049477, - 0.047367, - -0.030813, - -0.077322, - 0.034472, - 0.049444, - -0.019625, - 0.0080627, - 0.015917, - -0.0040721, - 0.043561, - -0.060858, - 0.043328, - -0.00015688, - 0.020758, - 0.020353, - -0.028951, - 0.0089904, - -0.000021192, - 0.035304, - -0.026264, - 0.0042735, - -0.035963, - 0.020499, - 0.042136, - 0.022149, - 0.028316, - -0.031715, - -0.033723, - -0.061316, - 0.02464, - 0.079404, - 0.03601, - -0.050832, - 0.033783, - 0.044092, - -0.015427, - 0.0058265, - -0.020867, - 0.061776, - 0.030555, - 0.021847, - 0.028599, - -0.0090074, - -0.13196, - 0.072556, - 0.05419, - 0.029784, - 0.0401, - 0.023429, - -0.05322, - 0.029018, - 0.086004, - -0.020626, - 0.052441, - -0.043553, - 0.02184, - -0.031979, - -0.028562, - 0.051889, - 0.036744, - -0.063085, - 0.070397, - -0.038781, - -0.018431, - -0.010219, - -0.014422, - 0.08673, - -0.045968, - 0.027861, - -0.009859, - 0.099913, - -0.039597, - -0.011633, - -0.0037311, - 0.019624, - -0.0068073, - -0.054372, - -0.007562, - -0.020798, - 0.050899, - 0.041772, - -0.011785, - 0.010388, - 0.10178, - 0.029525, - 0.040449, - -0.086655, - -0.084901, - 0.014375, - 0.054905, - -0.014985, - 0.029358, - -0.017954, - 0.066517, - 0.013349, - 0.00887, - 0.012576, - 0.011425, - 0.021221, - -0.058783, - 0.037464, - -0.029404, - 0.029064, - -0.0072748, - 0.0047524, - -0.068873, - 0.091757, - 0.0068635, - 0.0026709, - 0.028363, - -0.0011229, - -0.0083194, - 0.010416, - -0.023575, - 0.053498, - -0.096368, - -0.017172, - -0.011833, - -0.058841, - -0.045314, - -0.03758, - -0.013578, - 0.036499, - 0.018923, - -0.01965, - -0.039063, - -0.029042, - 0.016386, - -0.0056738, - 0.00034048, - -0.094623, - -0.0041192, - 0.030013, - 0.06743, - 0.0099689, - -0.069506, - -0.05356, - 0.021056, - -0.0096734, - 0.0078084, - 0.011731, - 0.028853, - -0.043846 - ], - "investment": [ - 0.045889, - -0.010186, - -0.046736, - 0.025143, - -0.027503, - -0.029195, - 0.025402, - -0.075487, - 0.027781, - 0.032791, - 0.0054041, - -0.021377, - 0.013563, - -0.025998, - -0.0030525, - 0.015349, - 0.042243, - 0.0057643, - 0.073644, - -0.014633, - -0.0029746, - 0.024389, - -0.038036, - 0.047548, - -0.020238, - 0.038368, - -0.011662, - 0.018182, - -0.0037644, - 0.017547, - -0.038807, - -0.015327, - -0.071017, - -0.064115, - 0.018051, - 0.038564, - -0.0069565, - -0.001005, - 0.027803, - 0.055151, - 0.044566, - -0.098254, - -0.0056734, - 0.017228, - -0.063706, - -0.003516, - -0.024833, - 0.0085473, - -0.025504, - 0.038702, - 0.0061506, - 0.02563, - -0.011117, - -0.0029302, - -0.046257, - 0.0027155, - -0.031556, - 0.0036567, - -0.027116, - 0.0059445, - 0.012814, - 0.030226, - 0.08672, - 0.02883, - 0.025339, - -0.034382, - 0.017361, - -0.078677, - 0.025517, - -0.031648, - 0.0063074, - 0.0037851, - 0.035002, - 0.043503, - -0.0094808, - 0.017565, - -0.0065507, - 0.013889, - -0.01643, - -0.015774, - -0.021337, - -0.012788, - 0.00068715, - 0.057055, - -0.026102, - -0.025108, - -0.01746, - -0.015609, - 0.0065761, - -0.054538, - -0.0056976, - 0.061202, - -0.087745, - -0.015551, - -0.039636, - 0.033833, - 0.025447, - -0.026207, - -0.0064921, - -0.036508, - -0.024295, - -0.063244, - -0.027277, - -0.065427, - 0.029328, - -0.043381, - -0.0016604, - -0.010918, - -0.050183, - 0.0029619, - -0.0086662, - 0.068632, - 0.054327, - 0.032115, - 0.008764, - -0.033155, - -0.022601, - -0.0051943, - -0.044512, - 0.07233, - -0.01119, - -0.027842, - 0.032295, - 0.016141, - 0.083212, - 0.0094374, - -0.030709, - -0.072798, - 0.021701, - 0.073111, - 0.025068, - -0.02775, - -0.010446, - -0.015944, - -0.0048228, - -0.005917, - 0.020669, - 0.025164, - -0.022688, - 0.054926, - -0.00044915, - 0.018894, - -0.0060183, - 0.029411, - -0.0070019, - -0.017453, - 0.022984, - 0.00033006, - 0.0081372, - -0.027165, - 0.049452, - 0.053303, - -0.0016929, - -0.10874, - -0.032886, - 0.0036885, - 0.040094, - 0.0037768, - -0.041869, - -0.025957, - 0.070011, - 0.01025, - -0.043054, - 0.02454, - 0.019567, - 0.0075842, - 0.0053782, - -0.060068, - 0.0041554, - 0.00046897, - 0.070239, - -0.0024342, - -0.028577, - 0.023031, - -0.029805, - 0.041163, - -0.02215, - 0.028472, - -0.064164, - 0.03968, - -0.02425, - 0.023615, - -0.0029974, - 0.011247, - 0.005757, - -0.071982, - -0.045213, - 0.078214, - 0.021947, - 0.021019, - -0.067702, - 0.069942, - 0.043268, - -0.0069259, - -0.019669, - -0.022315, - 0.0052591, - -0.0053513, - 0.0092713, - -0.00010723, - -0.11319, - 0.061304, - 0.027724, - -0.011734, - 0.035055, - 0.049179, - -0.0052911, - -0.01832, - -0.015148, - -0.0062364, - 0.095927, - -0.0074403, - -0.0357, - -0.021218, - 0.0089513, - 0.01123, - 0.010466, - -0.039051, - 0.0073168, - -0.028846, - -0.0051919, - 0.014842, - -0.024564, - 0.06513, - 0.035407, - -0.022962, - -0.0054562, - 0.050092, - 0.029723, - -0.030678, - 0.0071842, - -0.038, - -0.037115, - -0.025346, - 0.038007, - -0.021355, - -0.038271, - 0.018455, - -0.039741, - -0.020184, - 0.015786, - -0.0014841, - 0.038964, - 0.0050514, - -0.042707, - 0.011863, - -0.023523, - -0.05002, - 0.031489, - 0.012557, - 0.03935, - -0.078597, - -0.00017335, - -0.035211, - 0.022913, - -0.0044266, - -0.033299, - 0.017415, - 0.0461, - 0.033232, - -0.028044, - -0.0037024, - 0.0066037, - 0.00014085, - 0.050503, - 0.045847, - -0.022276, - -0.0099324, - 0.01983, - 0.014968, - -0.00073424, - 0.024438, - -0.10179, - -0.049298, - -0.01487, - -0.010914, - 0.08049, - 0.0050597, - -0.029033, - -0.067197, - 0.097914, - -0.016762, - -0.038903, - 0.012748, - 0.0066797, - -0.006481, - -0.0056411, - 0.041484, - -0.068289, - -0.0030655, - -0.0052872, - 0.022361, - -0.033171, - 0.030256, - 0.016466, - -0.041526, - -0.012604, - -0.036282, - -0.010311, - -0.043684 - ], - "folk": [ - -0.008089, - -0.088425, - 0.020932, - -0.020319, - -0.10387, - -0.049131, - 0.049995, - -0.11024, - 0.044788, - -0.024459, - -0.0016255, - -0.0632, - 0.024046, - -0.12992, - 0.021112, - 0.0026297, - 0.12865, - -0.040079, - 0.11456, - 0.083044, - -0.037102, - -0.029876, - -0.001121, - 0.07568, - 0.071633, - -0.047947, - 0.017061, - 0.08463, - 0.031419, - -0.099024, - 0.0484, - -0.11592, - 0.043053, - -0.0093446, - 0.10429, - 0.00094339, - 0.05702, - 0.059549, - 0.01839, - 0.010683, - 0.070575, - -0.17326, - -0.054169, - 0.019154, - -0.013167, - -0.056544, - -0.041105, - 0.03255, - -0.017092, - -0.029702, - -0.099696, - 0.07905, - -0.0062785, - -0.044775, - 0.010898, - 0.16413, - 0.027885, - 0.033555, - -0.049976, - -0.028051, - -0.016512, - -0.064451, - 0.14722, - 0.031375, - 0.096608, - 0.04107, - -0.0052536, - -0.0068128, - 0.013963, - 0.01908, - -0.015855, - 0.014094, - 0.22042, - -0.11865, - -0.0096955, - 0.043974, - -0.04244, - -0.059338, - 0.088024, - -0.14663, - -0.033608, - 0.089411, - 0.038122, - 0.10296, - -0.040177, - -0.057003, - 0.032302, - -0.013123, - -0.0046122, - -0.04693, - -0.060037, - 0.10172, - -0.13079, - -0.01339, - 0.031184, - 0.14605, - 0.035439, - 0.079793, - -0.050862, - 0.080715, - 0.1144, - -0.043772, - 0.017322, - -0.038308, - 0.0044222, - -0.19058, - -0.033989, - 0.057314, - 0.025308, - -0.023114, - -0.031202, - 0.086955, - 0.034702, - -0.046845, - -0.022251, - 0.026151, - -0.01344, - 0.064801, - -0.037301, - -0.089314, - -0.034112, - 0.0095129, - -0.10485, - -0.13229, - 0.16533, - 0.012102, - -0.044454, - 0.064264, - -0.028782, - 0.1622, - -0.072097, - 0.1681, - -0.000085149, - 0.11938, - -0.0182, - -0.04692, - 0.0077763, - 0.060909, - -0.055058, - -0.038817, - 0.0022566, - -0.017713, - -0.0056154, - 0.055564, - -0.013444, - -0.091164, - 0.051571, - 0.10519, - -0.10175, - -0.088326, - 0.10292, - 0.24014, - -0.090261, - 0.013279, - 0.00601, - -0.0037955, - 0.017513, - 0.027105, - -0.020968, - -0.071517, - -0.0046179, - 0.075163, - -0.034443, - 0.011837, - -0.077873, - 0.049182, - 0.12655, - 0.02983, - -0.03414, - 0.01023, - -0.003867, - -0.0076805, - 0.080245, - -0.012418, - 0.053804, - 0.10324, - 0.058238, - 0.037264, - -0.0103, - -0.090113, - -0.058911, - 0.058424, - -0.055701, - -0.034881, - -0.054537, - -0.13825, - 0.00042717, - 0.15507, - -0.076794, - -0.026508, - 0.048308, - 0.11036, - -0.039833, - 0.040905, - -0.051238, - 0.12223, - 0.07768, - 0.010502, - 0.0017579, - -0.035793, - -0.2191, - 0.0073512, - -0.018046, - 0.021473, - 0.055321, - 0.022739, - -0.030376, - 0.0034364, - 0.014669, - -0.04495, - 0.17919, - -0.0018738, - 0.032435, - -0.023383, - -0.029501, - 0.021407, - -0.055288, - -0.035907, - -0.041986, - 0.061424, - 0.05787, - -0.1053, - -0.021333, - 0.12628, - -0.01556, - 0.081815, - 0.13124, - 0.13109, - -0.024943, - -0.012296, - 0.071355, - 0.027025, - -0.12386, - 0.05652, - 0.017887, - 0.053822, - -0.0024869, - 0.0095621, - 0.13318, - 0.012489, - 0.05023, - 0.019256, - -0.050593, - -0.0097511, - -0.023933, - -0.14579, - -0.13674, - -0.0053622, - -0.098342, - -0.012108, - 0.102, - -0.029334, - -0.056451, - 0.0382, - -0.049361, - 0.050218, - -0.057302, - 0.053142, - 0.094375, - 0.035281, - 0.10004, - 0.044101, - 0.055524, - -0.011762, - -0.062366, - -0.097916, - 0.031174, - 0.031705, - 0.013844, - 0.021348, - -0.022301, - 0.075129, - -0.086742, - -0.048773, - 0.027255, - -0.067683, - 0.051794, - -0.0039298, - -0.081519, - 0.020685, - 0.13877, - 0.011499, - -0.052752, - 0.025212, - -0.080035, - 0.045923, - 0.13825, - -0.16377, - 0.014335, - 0.0085869, - 0.062025, - 0.050023, - -0.013681, - -0.037018, - 0.0046931, - 0.052758, - 0.079904, - 0.060545, - -0.020605, - -0.058209 - ], - "drinks": [ - -0.046492, - -0.032168, - 0.022012, - -0.072035, - 0.10797, - -0.021175, - 0.046963, - -0.093581, - 0.044743, - 0.088352, - -0.00083185, - -0.014506, - 0.050205, - 0.0073411, - 0.021767, - -0.022682, - 0.067982, - -0.032242, - 0.081171, - -0.037397, - 0.013407, - 0.032039, - -0.019934, - 0.054584, - 0.010841, - -0.095974, - 0.016537, - 0.041822, - 0.071574, - -0.085255, - -0.051538, - -0.055147, - -0.010067, - 0.0064107, - 0.10426, - -0.063126, - -0.021859, - 0.06525, - -0.043614, - 0.058565, - -0.017958, - -0.08855, - -0.063113, - -0.0013149, - 0.010984, - -0.046861, - 0.061565, - -0.028728, - 0.01853, - 0.052019, - -0.033018, - 0.059717, - 0.10499, - -0.10914, - -0.12154, - 0.085012, - -0.015138, - -0.010714, - -0.048279, - -0.030133, - -0.029654, - -0.04482, - 0.24698, - 0.052835, - -0.070383, - 0.07609, - 0.011525, - -0.046244, - -0.0047648, - -0.0014759, - 0.13457, - 0.024409, - 0.12413, - 0.0061711, - -0.06655, - -0.031248, - 0.0018311, - -0.0047423, - -0.011646, - 0.045106, - -0.015299, - -0.11583, - 0.051708, - 0.10267, - -0.065413, - -0.08476, - 0.014016, - -0.049545, - -0.039312, - -0.02629, - 0.072604, - 0.0017494, - -0.1067, - 0.034478, - -0.005154, - 0.061963, - 0.035289, - 0.057084, - 0.04358, - 0.017399, - -0.012048, - 0.0367, - -0.034486, - -0.065589, - 0.097904, - -0.095418, - -0.080357, - 0.034862, - -0.0092954, - 0.085926, - 0.055533, - -0.022743, - 0.083658, - 0.045965, - 0.07147, - -0.054738, - -0.027112, - -0.0029654, - -0.044515, - 0.023603, - 0.049311, - 0.025878, - 0.019842, - -0.14926, - 0.14941, - -0.018148, - 0.0027967, - -0.063111, - 0.0039976, - 0.066002, - 0.068358, - 0.054012, - -0.0096029, - -0.07313, - -0.040228, - -0.0014632, - 0.0026469, - 0.050142, - -0.011691, - 0.030863, - 0.1382, - -0.064584, - 0.0056544, - -0.081998, - 0.051031, - -0.049285, - 0.10284, - 0.028401, - -0.014956, - 0.0059306, - 0.051207, - 0.074178, - -0.011223, - -0.038491, - 0.017563, - -0.016977, - -0.12101, - 0.0044819, - 0.031265, - 0.055452, - 0.058908, - -0.0099523, - 0.0050277, - 0.074335, - 0.013289, - 0.078343, - -0.084857, - -0.056617, - 0.058763, - 0.03778, - -0.0013129, - -0.02751, - 0.054706, - 0.047005, - 0.01689, - 0.062937, - -0.02697, - -0.0045479, - -0.02671, - -0.048881, - -0.012507, - -0.0029172, - 0.022081, - -0.089057, - 0.01909, - -0.046214, - 0.0095934, - 0.11603, - 0.14415, - 0.023693, - 0.032379, - 0.040014, - -0.066123, - 0.010042, - 0.16865, - 0.018045, - 0.010603, - -0.074374, - -0.024734, - 0.035661, - -0.15891, - 0.052594, - 0.060703, - -0.076531, - 0.011913, - 0.080251, - -0.023701, - 0.064446, - 0.011993, - -0.1039, - 0.10667, - 0.02223, - 0.033196, - 0.036737, - -0.0079538, - 0.030105, - -0.056727, - -0.010182, - -0.040558, - -0.098317, - 0.024896, - -0.064678, - -0.014326, - 0.091144, - 0.083431, - 0.034663, - -0.054924, - 0.078748, - -0.04758, - 0.040152, - -0.019787, - -0.028104, - -0.11481, - -0.056658, - 0.010028, - 0.01507, - -0.10145, - -0.046401, - 0.027073, - -0.11037, - 0.031227, - -0.04227, - 0.0049409, - -0.067892, - -0.025252, - 0.099312, - -0.051806, - 0.024067, - -0.077716, - 0.0056566, - 0.01687, - -0.017921, - -0.043321, - 0.011871, - -0.075761, - -0.049478, - -0.031924, - -0.023196, - 0.036585, - 0.040722, - 0.075709, - -0.023027, - 0.0060202, - -0.038208, - 0.0042626, - -0.046454, - -0.019555, - -0.098299, - 0.082672, - 0.072646, - 0.016541, - 0.11545, - -0.11388, - -0.035068, - -0.070355, - -0.014037, - -0.054794, - 0.016005, - -0.048431, - 0.014126, - -0.0037362, - 0.048265, - -0.043008, - 0.037478, - -0.054486, - 0.03098, - -0.040277, - 0.035583, - 0.14536, - -0.061341, - 0.051755, - 0.036619, - -0.073493, - -0.050014, - -0.041853, - -0.015942, - 0.065383, - 0.019163, - -0.044697, - -0.0026241 - ], - "stardom": [ - 0.0036476, - -0.020615, - -0.052032, - 0.038898, - -0.070439, - 0.018209, - -0.052916, - -0.081951, - 0.07199, - 0.047502, - 0.0071654, - -0.036531, - -0.019039, - 0.064525, - -0.10314, - -0.0045884, - 0.12656, - -0.035327, - 0.047386, - 0.061588, - 0.04213, - -0.044882, - 0.082772, - 0.080723, - -0.022409, - -0.047554, - 0.024381, - 0.0016275, - 0.006913, - -0.024025, - -0.036294, - -0.016562, - 0.014966, - -0.032631, - -0.02501, - 0.028518, - -0.025283, - -0.015284, - -0.0028316, - 0.035834, - -0.043299, - -0.10603, - -0.048499, - 0.019987, - 0.046051, - 0.066826, - 0.067602, - -0.024323, - -0.018302, - -0.027956, - 0.027678, - 0.038764, - -0.01946, - -0.03143, - -0.13465, - -0.047486, - 0.028659, - 0.036993, - -0.017423, - -0.041686, - 0.073728, - -0.0079186, - -0.013049, - -0.0027698, - 0.080445, - -0.041857, - 0.047498, - -0.1011, - -0.02636, - -0.048461, - -0.013793, - 0.080299, - -0.00042318, - -0.10013, - -0.011466, - 0.079207, - 0.0013428, - -0.048947, - 0.061834, - 0.04456, - 0.019143, - 0.00094502, - -0.0048114, - 0.058689, - 0.0079556, - 0.024871, - -0.037466, - -0.020293, - 0.0052495, - -0.0079032, - -0.015182, - -0.084598, - -0.087954, - 0.075799, - -0.0051572, - 0.03588, - -0.029695, - -0.0078034, - -0.014959, - -0.014108, - -0.034697, - -0.029345, - -0.0051233, - 0.01408, - 0.024713, - -0.010406, - 0.097612, - -0.099579, - 0.03649, - 0.12064, - 0.049495, - 0.033533, - 0.015367, - -0.027787, - 0.068764, - -0.024465, - 0.032337, - 0.02636, - -0.050524, - 0.039328, - -0.038166, - -0.036758, - -0.086997, - -0.020631, - 0.041518, - -0.029292, - 0.033381, - -0.11534, - -0.042303, - 0.085182, - -0.031407, - -0.11513, - 0.0079523, - -0.092359, - -0.067271, - -0.082225, - -0.020537, - -0.015475, - -0.036426, - -0.030534, - 0.0015111, - -0.012869, - 0.0053515, - 0.033222, - -0.032962, - 0.029436, - -0.0014575, - -0.08627, - -0.023158, - 0.028903, - 0.03626, - 0.019925, - -0.068211, - -0.023162, - 0.021788, - -0.042826, - 0.030573, - 0.098625, - 0.07737, - -0.03073, - 0.085433, - 0.009182, - -0.1041, - 0.053196, - -0.07449, - 0.026243, - -0.057634, - -0.09286, - -0.079524, - 0.022122, - -0.062204, - 0.035008, - 0.0027654, - 0.046421, - 0.02816, - 0.084302, - -0.063877, - 0.037863, - 0.024811, - 0.0167, - -0.03524, - -0.037562, - 0.0081453, - -0.13752, - 0.025739, - -0.0068306, - -0.013087, - 0.19538, - 0.012403, - 0.04539, - 0.010199, - -0.015413, - -0.002297, - 0.015702, - -0.076734, - 0.066613, - 0.042629, - -0.0026491, - 0.042248, - 0.040351, - -0.22231, - 0.061333, - 0.041226, - -0.11282, - -0.017071, - 0.032546, - 0.16152, - 0.0026063, - 0.097024, - 0.0047251, - 0.1388, - -0.021259, - -0.02938, - -0.019747, - 0.048956, - -0.0058224, - -0.065009, - -0.033723, - 0.046577, - -0.078215, - -0.024657, - -0.0010542, - -0.042243, - 0.07884, - 0.065324, - -0.034563, - 0.12939, - 0.063738, - -0.09266, - -0.059202, - -0.04026, - -0.11293, - -0.12492, - 0.075294, - 0.089495, - -0.01908, - 0.0031581, - -0.095951, - -0.050445, - 0.073315, - 0.024586, - 0.040019, - -0.04172, - 0.041774, - -0.025939, - -0.038225, - -0.10601, - -0.12969, - 0.0072948, - -0.014823, - 0.030729, - 0.064292, - 0.056608, - 0.082239, - 0.079623, - 0.10243, - -0.076288, - -0.010024, - 0.08567, - 0.0024153, - 0.029609, - 0.056132, - 0.1088, - -0.0078898, - -0.0096249, - 0.020347, - -0.032706, - 0.015091, - 0.047202, - 0.0032707, - -0.047038, - 0.073776, - -0.14001, - 0.01063, - -0.0068496, - -0.069213, - -0.052565, - 0.019971, - 0.028066, - 0.05446, - 0.098125, - 0.038237, - 0.0021257, - -0.1066, - 0.058297, - -0.065895, - 0.020177, - 0.070074, - -0.074737, - -0.010403, - 0.093169, - -0.071351, - -0.053265, - 0.07029, - -0.046069, - 0.08468, - 0.05827, - 0.0711, - 0.099421, - 0.041033 - ], - "preferences": [ - 0.022061, - -0.0065677, - -0.024432, - -0.028002, - -0.011989, - 0.0064894, - -0.039776, - -0.065013, - 0.01221, - 0.018169, - -0.005311, - -0.026346, - 0.00022771, - -0.013964, - 0.012273, - 0.020284, - 0.049764, - 0.025013, - 0.038124, - 0.089044, - 0.0086552, - 0.03013, - 0.0088844, - 0.078587, - -0.038477, - -0.023805, - -0.015113, - 0.019571, - 0.073332, - -0.00090895, - -0.037637, - -0.00052805, - -0.020213, - -0.049506, - -0.000037487, - 0.018504, - -0.0215, - 0.025684, - -0.076216, - -0.0073253, - -0.024417, - -0.090844, - -0.10484, - -0.013529, - 0.0015606, - -0.0079645, - -0.013435, - -0.01813, - -0.010697, - -0.034043, - -0.0032198, - 0.020496, - 0.056195, - 0.044081, - -0.068992, - -0.017271, - 0.024642, - 0.072366, - -0.012611, - -0.029369, - -0.019613, - -0.016754, - 0.073763, - 0.011607, - 0.055055, - -0.0032328, - -0.023383, - -0.004476, - -0.028918, - 0.0065119, - 0.0088252, - 0.050057, - 0.010979, - -0.02627, - 0.0097633, - 0.024036, - -0.030267, - -0.038162, - -0.029826, - -0.0084073, - 0.011961, - -0.0025693, - 0.028246, - 0.051297, - -0.037111, - -0.062028, - 0.012081, - 0.01165, - -0.00023951, - 0.0084575, - 0.078347, - 0.0029406, - -0.070655, - -0.00014433, - -0.010938, - 0.029346, - -0.033615, - -0.0044382, - -0.021076, - -0.0038544, - 0.015492, - 0.036083, - -0.013902, - -0.0026234, - 0.050101, - -0.033432, - 0.024641, - -0.0083984, - -0.032168, - -0.0075329, - -0.0054564, - 0.020398, - 0.052314, - 0.022313, - 0.0080654, - -0.032496, - -0.016159, - 0.014261, - -0.041862, - 0.0076273, - 0.069667, - 0.039344, - 0.014894, - -0.050237, - 0.084458, - 0.0027237, - -0.035871, - -0.035714, - 0.016279, - 0.091554, - 0.011072, - 0.019999, - 0.046396, - 0.019125, - -0.051225, - 0.011855, - -0.015117, - 0.032143, - -0.0094955, - 0.032158, - -0.0025659, - -0.013956, - 0.0050854, - 0.078415, - 0.0037335, - -0.04822, - -0.019313, - -0.011826, - 0.0084533, - 0.072568, - 0.018325, - 0.091428, - 0.048324, - -0.0072136, - -0.0056458, - 0.018731, - 0.0081564, - 0.041107, - 0.011224, - -0.022332, - 0.0086547, - -0.028998, - -0.0048294, - -0.069831, - 0.039737, - -0.0037185, - 0.033544, - -0.096279, - -0.052146, - -0.011284, - -0.036748, - -0.041839, - -0.060609, - -0.027417, - -0.079356, - 0.045793, - -0.0288, - 0.03129, - -0.020807, - -0.045136, - 0.032761, - 0.029742, - -0.02005, - -0.032427, - 0.0056952, - -0.030658, - 0.008895, - 0.074604, - -0.03035, - -0.0024573, - 0.058529, - 0.083613, - -0.041972, - -0.014117, - -0.012019, - -0.0049079, - -0.014825, - -0.065411, - 0.00020894, - 0.046001, - -0.096632, - 0.020739, - 0.0013369, - -0.026651, - -0.066481, - 0.018058, - 0.0033631, - 0.011406, - 0.010863, - -0.00018768, - 0.04933, - 0.034301, - 0.030071, - -0.011275, - -0.013108, - 0.021443, - 0.017327, - 0.010008, - -0.046033, - -0.011252, - -0.00041915, - -0.024111, - -0.0044014, - 0.085982, - 0.1153, - -0.016132, - 0.017936, - 0.069089, - -0.0042158, - -0.016807, - -0.01294, - -0.046285, - -0.08905, - -0.040267, - 0.033435, - 0.034536, - -0.024688, - 0.014922, - 0.023768, - 0.051098, - 0.001064, - 0.012835, - 0.015832, - -0.0082064, - -0.0052789, - -0.035878, - -0.0068433, - -0.069053, - -0.0057987, - -0.018212, - 0.013667, - -0.033549, - -0.042624, - -0.018757, - 0.027366, - -0.048965, - -0.026232, - 0.016962, - -0.03245, - -0.011925, - 0.0019833, - -0.018267, - -0.020036, - -0.033769, - 0.0089271, - 0.014093, - -0.018993, - 0.062044, - 0.007296, - 0.025715, - -0.0020511, - 0.078182, - -0.078869, - -0.070296, - 0.10206, - -0.013239, - -0.015747, - 0.022018, - 0.0052664, - -0.01628, - 0.039064, - -0.020098, - 0.046555, - 0.028457, - 0.020877, - 0.041605, - -0.068404, - 0.05647, - 0.042797, - -0.031153, - -0.028261, - 0.028345, - -0.049102, - 0.028391, - 0.016837, - 0.026543, - -0.026666, - 0.0069755, - -0.013759, - 0.054714 - ], - "menswear": [ - -0.058623, - -0.12928, - 0.027639, - -0.0047657, - 0.01227, - -0.022618, - -0.01185, - -0.073825, - 0.0022605, - -0.028154, - -0.066866, - -0.039973, - -0.12016, - -0.027997, - -0.034047, - 0.0038304, - 0.056998, - 0.063898, - 0.021346, - 0.017578, - 0.077338, - 0.014123, - -0.037661, - 0.04709, - 0.05503, - 0.030008, - 0.036638, - 0.048009, - -0.016172, - 0.0053401, - -0.012315, - -0.075931, - 0.056822, - -0.042457, - 0.058796, - -0.021058, - 0.073847, - 0.108, - -0.12704, - 0.068118, - -0.044562, - -0.07495, - 0.0074918, - -0.061568, - -0.10325, - -0.010796, - 0.063848, - 0.00023463, - 0.055544, - -0.063709, - 0.037657, - -0.041958, - -0.033389, - 0.087998, - -0.039852, - 0.01502, - 0.0051571, - 0.0035414, - -0.052231, - -0.024484, - -0.067687, - -0.0019889, - 0.09595, - 0.010343, - 0.044354, - 0.020374, - 0.0078199, - -0.022769, - 0.028717, - -0.073532, - -0.014207, - -0.082544, - 0.064437, - -0.046325, - -0.018515, - 0.006481, - 0.020753, - 0.0028802, - 0.043486, - 0.03526, - -0.010218, - 0.0067388, - -0.017041, - 0.10271, - 0.0073841, - -0.000026258, - -0.04837, - -0.026591, - 0.017648, - 0.011315, - 0.059214, - 0.055934, - -0.057684, - 0.023069, - 0.066304, - 0.067603, - -0.07497, - 0.041384, - 0.0073898, - 0.023069, - 0.035742, - 0.037663, - -0.022854, - 0.10151, - 0.017531, - -0.088679, - -0.061226, - 0.051613, - -0.030581, - 0.0056588, - -0.021053, - 0.062435, - 0.035057, - 0.084852, - -0.048463, - -0.020694, - 0.02155, - 0.047787, - -0.025028, - 0.007361, - 0.072576, - -0.0024423, - 0.017696, - 0.040617, - 0.070794, - -0.010924, - -0.008667, - -0.053937, - 0.025268, - 0.056901, - 0.021296, - 0.022251, - 0.020947, - -0.0042002, - 0.011584, - 0.02919, - 0.00061959, - 0.060965, - -0.042527, - -0.14346, - 0.031967, - -0.055476, - 0.045521, - 0.048966, - -0.068391, - -0.0015412, - -0.014179, - -0.010926, - 0.029782, - 0.001061, - 0.059636, - 0.022673, - 0.049879, - -0.033247, - -0.017603, - 0.0134, - 0.033351, - 0.046423, - 0.078502, - 0.13387, - 0.053541, - -0.067018, - -0.012136, - 0.068829, - -0.028389, - 0.037318, - -0.058857, - -0.09762, - 0.0046913, - 0.043381, - 0.018971, - -0.10246, - -0.011966, - -0.066591, - -0.015711, - 0.031533, - -0.060071, - 0.044423, - -0.041607, - -0.040075, - 0.0081275, - -0.070873, - 0.053677, - -0.083533, - 0.043507, - 0.00019425, - -0.016009, - 0.098331, - -0.1149, - 0.06448, - -0.064318, - 0.058716, - -0.011713, - -0.069287, - 0.015477, - -0.035969, - -0.021999, - 0.044669, - 0.048578, - 0.00029471, - -0.17164, - 0.076293, - -0.027848, - -0.012386, - -0.014525, - 0.043253, - -0.025704, - -0.034031, - 0.044269, - -0.01292, - 0.1368, - 0.025459, - -0.066942, - -0.097646, - -0.059789, - 0.0049438, - -0.091603, - -0.071747, - 0.020027, - 0.019415, - -0.075478, - -0.025998, - 0.059026, - 0.066781, - -0.010749, - 0.019042, - 0.022928, - 0.059169, - 0.049595, - -0.0094879, - 0.059381, - -0.11951, - -0.052045, - -0.063663, - 0.0055867, - 0.0047227, - -0.047517, - -0.078631, - 0.058439, - -0.057271, - 0.033119, - -0.019584, - -0.016164, - -0.015129, - -0.070856, - -0.055147, - -0.08859, - 0.00096656, - -0.0052508, - -0.043557, - 0.042566, - -0.044374, - 0.056989, - 0.028662, - -0.044855, - 0.037462, - -0.03213, - -0.017438, - 0.12003, - 0.023481, - 0.022436, - -0.033508, - -0.027096, - -0.019228, - -0.037031, - 0.02823, - 0.039951, - -0.010941, - 0.0014298, - -0.03438, - 0.053436, - 0.072221, - -0.12051, - -0.018111, - -0.047831, - -0.0732, - 0.016536, - -0.023025, - -0.10911, - -0.0039079, - 0.019725, - 0.0011257, - 0.044333, - -0.0048585, - -0.049, - -0.086327, - 0.0008561, - 0.0038288, - 0.035015, - 0.055889, - -0.074878, - 0.05824, - 0.034238, - 0.04345, - -0.12402, - -0.15014, - 0.03543, - 0.022481, - 0.052024, - -0.030931 - ], - "psychotropic": [ - -0.017087, - -0.018093, - -0.041557, - 0.053206, - 0.037889, - -0.042522, - -0.018813, - -0.054927, - -0.01493, - 0.014437, - -0.034346, - 0.01549, - 0.01069, - 0.04031, - 0.03874, - -0.0038003, - 0.077737, - 0.019528, - 0.010672, - 0.01159, - -0.012937, - 0.01138, - 0.03401, - 0.016947, - -0.027579, - -0.057178, - -0.02382, - 0.011339, - 0.0056312, - 0.058684, - 0.0091662, - -0.03843, - -0.018742, - -0.011885, - 0.05778, - 0.012358, - -0.020928, - -0.047304, - 0.020389, - 0.021949, - 0.011661, - -0.057562, - -0.029527, - -0.05502, - 0.037395, - -0.079007, - 0.016589, - 0.094638, - -0.0067064, - 0.00519, - -0.054149, - 0.022382, - 0.013872, - -0.0069431, - 0.021612, - -0.042517, - -0.025058, - -0.051378, - -0.028386, - 0.019152, - 0.03991, - -0.032416, - 0.088345, - -0.00274, - -0.064199, - -0.022754, - 0.048523, - -0.071313, - -0.0096906, - 0.0036486, - 0.026945, - 0.048392, - 0.013277, - -0.058271, - -0.078572, - -0.042751, - -0.043771, - -0.038493, - 0.0099641, - -0.0066813, - 0.0081455, - -0.01734, - -0.01882, - 0.0094043, - -0.019475, - -0.033402, - 0.090332, - -0.023042, - 0.03729, - -0.021443, - 0.019994, - 0.0087334, - -0.050424, - 0.023254, - -0.026002, - 0.040664, - 0.0026145, - -0.060159, - 0.033528, - 0.036782, - 0.022707, - 0.042676, - -0.028123, - -0.045359, - -0.00024462, - -0.042782, - 0.0023177, - -0.038564, - 0.0072536, - 0.027256, - -0.023811, - 0.038177, - 0.030861, - -0.0066678, - -0.024337, - 0.017201, - -0.02141, - -0.047721, - -0.047171, - 0.010397, - -0.0034066, - 0.06783, - -0.028442, - -0.073725, - 0.045899, - 0.020383, - -0.0028249, - -0.011606, - 0.041539, - 0.022615, - 0.020281, - -0.0034561, - -0.027022, - -0.0053662, - 0.047543, - -0.013981, - -0.019483, - 0.036291, - 0.03018, - 0.01675, - 0.017366, - -0.0093743, - -0.026768, - 0.033162, - 0.023295, - -0.017224, - -0.021163, - 0.0023369, - 0.017139, - 0.056044, - 0.0202, - 0.081621, - -0.051498, - 0.0073385, - 0.01703, - 0.014508, - -0.039855, - 0.0038771, - 0.068515, - 0.013457, - 0.024104, - 0.055302, - -0.054798, - 0.010188, - -0.03841, - -0.022102, - 0.033474, - -0.043459, - 0.0024179, - -0.076927, - 0.024909, - -0.040858, - 0.0058135, - 0.01325, - -0.032725, - 0.049717, - -0.0095485, - 0.02276, - -0.033787, - -0.042302, - 0.0073586, - 0.010305, - 0.0029881, - -0.015185, - 0.0047979, - -0.062017, - 0.017764, - 0.096749, - -0.02498, - -0.007512, - 0.082693, - -0.0013612, - 0.015661, - -0.015312, - -0.025146, - -0.0000068142, - -0.031254, - 0.034969, - -0.038348, - 0.036534, - -0.10644, - 0.026852, - -0.069325, - -0.01936, - 0.024076, - 0.033974, - 0.04826, - -0.024085, - -0.012205, - 0.022251, - 0.087368, - 0.016015, - 0.05757, - 0.028946, - 0.062236, - -0.024518, - -0.00031551, - 0.0041248, - -0.025028, - -0.017474, - -0.029349, - 0.0032759, - -0.053535, - 0.064631, - -0.010036, - -0.039844, - 0.030009, - 0.034226, - -0.0054507, - -0.021961, - -0.055077, - -0.0021557, - -0.087358, - -0.013895, - 0.0073072, - -0.015833, - -0.019822, - -0.013132, - 0.034134, - -0.045873, - -0.0055844, - -0.006039, - 0.00054336, - -0.053967, - -0.066819, - -0.0057021, - -0.020735, - 0.036122, - -0.032576, - 0.034001, - -0.00056185, - -0.036928, - 0.013021, - -0.064382, - 0.016202, - 0.00084024, - 0.034144, - -0.010291, - 0.017086, - -0.066759, - 0.071492, - -0.026525, - -0.013412, - -0.0089911, - 0.013132, - -0.072464, - -0.029138, - -0.017846, - 0.018432, - 0.037874, - -0.043618, - 0.051261, - -0.040211, - -0.010305, - -0.0022468, - -0.062378, - 0.005113, - 0.028213, - -0.053528, - 0.050978, - 0.10945, - -0.0016124, - -0.077834, - -0.04161, - -0.02865, - 0.044002, - 0.013647, - -0.013645, - -0.0036762, - -0.028895, - -0.017636, - -0.016596, - -0.0060881, - -0.041703, - -0.079646, - 0.020604, - 0.037018, - 0.0099089, - 0.010148, - 0.024184 - ], - "Automotive": [ - 0.02081, - -0.015014, - 0.051463, - 0.021269, - -0.0084934, - 0.00607, - -0.035482, - -0.038404, - 0.072066, - -0.0068944, - 0.017036, - -0.052667, - -0.0089599, - 0.055079, - 0.0045093, - 0.057546, - -0.00090714, - 0.059098, - 0.043002, - -0.016959, - 0.052726, - 0.052887, - 0.033617, - 0.050554, - 0.0015197, - -0.0057444, - -0.00079384, - -0.025758, - 0.031874, - 0.030939, - 0.018841, - 0.031812, - 0.10258, - 0.0026873, - 0.079943, - 0.011373, - -0.022382, - 0.071009, - -0.0013837, - 0.038338, - 0.0013793, - 0.097683, - 0.061292, - 0.039791, - 0.015013, - -0.012764, - -0.085483, - -0.01081, - -0.027979, - -0.028263, - 0.014594, - -0.017634, - -0.06067, - 0.03231, - 0.011216, - -0.087106, - -0.049136, - -0.013511, - -0.08309, - 0.016538, - 0.016297, - -0.0090441, - -0.070277, - 0.057012, - 0.050066, - 0.024432, - -0.048523, - -0.05088, - 0.05263, - 0.000075197, - 0.01146, - -0.007663, - 0.010189, - -0.01155, - 0.010877, - 0.0024766, - -0.066691, - -0.075501, - -0.00039085, - -0.083554, - -0.013089, - 0.046301, - -0.044263, - -0.047285, - 0.019859, - -0.051349, - -0.005605, - -0.049253, - -0.014292, - -0.067237, - 0.011974, - 0.033519, - -0.083351, - 0.021214, - -0.040104, - 0.10259, - 0.030606, - 0.0095087, - -0.015078, - -0.035797, - 0.016596, - 0.0068997, - 0.015672, - 0.034775, - -0.046049, - -0.14198, - 0.029574, - 0.036261, - 0.04929, - -0.0034483, - 0.040592, - 0.089361, - 0.028457, - 0.021573, - 0.027605, - -0.1036, - -0.081591, - -0.032755, - 0.070394, - -0.018029, - -0.041716, - 0.01615, - -0.035812, - -0.013234, - 0.050033, - 0.047924, - -0.074111, - -0.043988, - 0.03379, - 0.18751, - 0.028747, - 0.060898, - 0.044537, - -0.039029, - 0.032631, - 0.014551, - 0.02673, - -0.025427, - -0.02551, - 0.018624, - -0.012645, - 0.028274, - 0.016983, - 0.0025756, - -0.051126, - 0.00011678, - 0.005042, - -0.049129, - 0.013122, - -0.046886, - 0.10832, - 0.092995, - 0.016405, - -0.011591, - -0.012771, - 0.051013, - -0.02807, - 0.010388, - 0.030267, - 0.040121, - 0.014452, - -0.015981, - -0.077827, - -0.0068427, - 0.070784, - -0.04983, - -0.031549, - -0.01513, - 0.020646, - -0.015741, - 0.043464, - -0.002676, - -0.018289, - 0.12284, - 0.0037725, - 0.026534, - 0.02913, - -0.016609, - -0.023339, - -0.0043156, - -0.029881, - -0.012797, - -0.045005, - 0.048331, - 0.019378, - 0.14396, - -0.03887, - 0.14684, - -0.026507, - 0.020303, - -0.072106, - 0.067525, - 0.022119, - 0.0055769, - 0.040208, - 0.047229, - -0.019488, - -0.045054, - 0.019198, - -0.0030912, - -0.0077571, - 0.078247, - -0.012242, - -0.070061, - 0.01098, - -0.015105, - -0.028536, - 0.010723, - -0.0076396, - 0.018651, - 0.15098, - 0.032937, - -0.004716, - -0.044252, - -0.01949, - 0.039469, - -0.055296, - -0.07396, - 0.027216, - 0.026128, - -0.0066587, - -0.065865, - 0.021879, - 0.075745, - -0.035766, - 0.010325, - 0.01562, - 0.053063, - 0.022741, - -0.029064, - 0.0017857, - -0.064125, - 0.048761, - 0.0066977, - 0.052936, - -0.058703, - 0.03067, - -0.014051, - -0.010643, - -0.017131, - 0.023186, - -0.0017543, - -0.0030881, - -0.02321, - 0.065091, - -0.04294, - 0.026681, - -0.035321, - 0.086101, - -0.075911, - 0.013055, - 0.043884, - -0.02441, - 0.033904, - -0.072362, - -0.036894, - 0.012441, - 0.015552, - -0.0017554, - 0.0048263, - 0.055065, - -0.015975, - -0.054304, - 0.0052213, - 0.012294, - -0.0070827, - 0.025263, - -0.0026771, - 0.048494, - -0.015111, - -0.028062, - 0.062277, - -0.043266, - 0.0028504, - -0.00063452, - -0.10636, - 0.013232, - 0.11104, - -0.052975, - 0.021904, - 0.026796, - 0.02165, - -0.012832, - -0.0052345, - 0.023424, - -0.062038, - -0.040112, - -0.028921, - 0.017835, - 0.072204, - 0.002115, - -0.010229, - 0.026729, - -0.011144, - -0.019416, - -0.084068, - 0.03719, - -0.0057036, - 0.025245, - -0.030399 - ], - "secular": [ - -0.056308, - -0.044805, - 0.057269, - -0.056846, - -0.02798, - -0.096701, - -0.0091533, - -0.091384, - 0.06115, - 0.0057199, - -0.0016712, - -0.050817, - 0.0075847, - 0.048338, - 0.025374, - 0.046113, - 0.10781, - 0.057673, - 0.051117, - 0.01716, - -0.031274, - 0.011643, - 0.015406, - 0.072341, - -0.010926, - 0.06273, - 0.021216, - 0.0085493, - 0.074676, - 0.0583, - -0.0019011, - -0.041673, - -0.011615, - -0.063898, - 0.078171, - 0.040252, - -0.026455, - 0.017561, - 0.019148, - 0.06978, - -0.027068, - -0.15983, - -0.019406, - 0.084371, - -0.026269, - -0.016475, - -0.047866, - 0.013169, - -0.010009, - -0.022886, - -0.03439, - -0.038238, - -0.0033696, - 0.012008, - 0.02499, - 0.023901, - -0.0029516, - -0.015827, - -0.048192, - -0.0077349, - 0.026517, - -0.011987, - 0.14096, - -0.002544, - 0.068039, - 0.0041425, - 0.030618, - 0.02104, - 0.081495, - -0.08279, - 0.032943, - -0.00068049, - 0.066925, - -0.022935, - -0.048602, - 0.060973, - -0.00033613, - -0.015467, - 0.055902, - 0.060473, - 0.0056779, - 0.046437, - -0.051035, - 0.063678, - -0.049263, - 0.044, - -0.016283, - 0.0047886, - -0.06732, - 0.058761, - -0.04372, - -0.015409, - -0.10328, - -0.0054417, - 0.037301, - 0.064404, - -0.029437, - -0.075664, - -0.013034, - -0.0024684, - 0.047873, - 0.026318, - 0.049572, - -0.085787, - -0.022026, - -0.13624, - 0.093995, - 0.034492, - -0.073393, - 0.015564, - 0.0096072, - 0.075198, - 0.036682, - 0.036019, - -0.039834, - 0.00059113, - 0.12428, - 0.056109, - -0.040335, - -0.043407, - -0.0070348, - -0.0054849, - -0.043103, - -0.026475, - 0.07036, - -0.037548, - -0.02122, - -0.0011461, - 0.0047897, - 0.04828, - -0.017301, - 0.073643, - 0.048854, - 0.058837, - -0.054066, - 0.055047, - -0.011637, - 0.064264, - 0.025158, - -0.062285, - 0.0098194, - -0.033517, - -0.021417, - 0.045957, - 0.012608, - -0.0066231, - 0.016358, - -0.0001307, - -0.053091, - 0.0087886, - 0.085446, - 0.15505, - -0.0066042, - -0.018675, - 0.069569, - 0.020861, - -0.069333, - -0.048418, - 0.0044418, - -0.04681, - 0.016536, - 0.024162, - -0.03068, - -0.03572, - -0.0055422, - 0.077205, - 0.02216, - 0.050677, - 0.019936, - -0.0033097, - -0.031179, - -0.055964, - 0.03719, - 0.020795, - -0.029462, - 0.068046, - -0.0139, - 0.019209, - 0.0037379, - -0.071474, - -0.026556, - -0.003632, - -0.0059841, - -0.009612, - -0.0011119, - -0.020298, - 0.098074, - 0.10203, - 0.0016627, - -0.10151, - 0.041588, - 0.055472, - 0.085843, - 0.054461, - 0.0062858, - 0.02637, - 0.0082203, - 0.020477, - -0.016129, - -0.02089, - -0.14495, - 0.0042496, - 0.021564, - -0.015521, - 0.023622, - 0.0052268, - 0.052978, - 0.0078376, - 0.025019, - 0.0024129, - 0.1333, - -0.034354, - 0.0066916, - -0.050585, - -0.0081157, - 0.02533, - -0.020662, - -0.015564, - -0.044103, - -0.023811, - -0.047981, - 0.021552, - 0.00086479, - 0.092624, - -0.023521, - -0.04329, - 0.048231, - 0.079817, - 0.037436, - -0.078572, - 0.066603, - -0.033809, - -0.049319, - -0.070417, - 0.031517, - 0.0045416, - 0.067818, - 0.0007777, - -0.0057741, - -0.024553, - 0.073268, - -0.081629, - -0.013905, - 0.039354, - -0.17007, - 0.012472, - -0.0031506, - -0.030012, - -0.017953, - -0.061849, - 0.037159, - -0.026347, - -0.069786, - -0.017005, - -0.045186, - 0.042904, - -0.0040897, - 0.04429, - -0.030431, - 0.015703, - 0.061772, - -0.032527, - 0.023206, - 0.0064578, - -0.024331, - -0.0047054, - 0.059135, - 0.0012827, - 0.069038, - 0.10315, - 0.051475, - 0.078429, - -0.10363, - -0.03682, - 0.017544, - -0.088614, - -0.017842, - 0.00075437, - -0.033904, - 0.023251, - 0.1433, - -0.071486, - 0.043736, - 0.0082944, - -0.015751, - 0.0087448, - 0.0017026, - -0.060285, - -0.049664, - 0.070463, - 0.037197, - -0.00052251, - 0.051767, - 0.071199, - 0.0085705, - 0.0086686, - 0.018216, - 0.038218, - -0.0086302, - 0.047907 - ], - "multimedia": [ - -0.066468, - -0.054731, - -0.026802, - 0.058439, - -0.011618, - -0.010329, - 0.051617, - -0.081349, - 0.027356, - -0.023799, - 0.024238, - -0.016709, - -0.0082523, - 0.0089775, - 0.037887, - 0.013112, - 0.086543, - 0.046318, - 0.05004, - -0.03531, - -0.01407, - -0.021263, - 0.027456, - 0.048518, - -0.01672, - 0.022565, - -0.018467, - 0.037246, - 0.01244, - 0.0033234, - -0.026617, - -0.0059343, - -0.0070915, - -0.091665, - 0.079324, - 0.024835, - -0.016822, - 0.002969, - 0.025701, - -0.0047497, - -0.057887, - -0.11222, - 0.014721, - 0.053905, - 0.011729, - -0.010154, - -0.0019761, - 0.017209, - -0.010937, - -0.037482, - -0.045103, - -0.01264, - 0.0091755, - 0.016338, - -0.016092, - 0.080733, - -0.022931, - -0.046145, - 0.0054612, - 0.017227, - -0.0088215, - 0.030137, - 0.067479, - 0.053941, - 0.060103, - 0.060309, - -0.010029, - -0.0084162, - 0.0052646, - 0.0011003, - 0.031281, - -0.020541, - -0.0038301, - 0.020976, - 0.036561, - -0.017399, - 0.029721, - -0.027541, - 0.033638, - -0.010564, - -0.013356, - -0.022835, - -0.048711, - 0.000658, - 0.018927, - -0.0066898, - -0.071844, - -0.0057447, - -0.028618, - 0.035464, - 0.024515, - 0.036766, - -0.061067, - 0.018071, - 0.018103, - 0.072741, - 0.028537, - -0.010736, - -0.036523, - -0.0053276, - 0.037709, - 0.030635, - -0.0047048, - -0.014614, - -0.026142, - -0.040681, - -0.026382, - -0.02377, - 0.0012923, - 0.016705, - -0.023572, - 0.07729, - 0.021581, - 0.0078573, - -0.017974, - -0.0010983, - -0.032913, - -0.0002929, - -0.012322, - 0.026136, - -0.032817, - 0.0072575, - 0.0038824, - -0.017188, - 0.04631, - 0.017212, - -0.0014906, - -0.00082601, - -0.0086701, - 0.070054, - -0.015788, - 0.0078964, - -0.054032, - -0.0030599, - 0.059444, - 0.0033269, - 0.018095, - -0.020078, - -0.0077013, - 0.017476, - -0.02512, - 0.03747, - 0.031242, - 0.023251, - -0.033397, - -0.038279, - -0.07241, - 0.005406, - -0.022997, - 0.0042847, - 0.023554, - 0.11437, - 0.0397, - -0.056925, - -0.024722, - -0.0090391, - -0.020546, - 0.073556, - 0.053364, - -0.018478, - 0.031252, - 0.0092733, - -0.056744, - -0.00040166, - -0.015254, - -0.027225, - 0.023469, - -0.038895, - -0.045189, - 0.0049987, - 0.004214, - 0.02752, - 0.035626, - 0.024964, - -0.025551, - 0.047072, - -0.052285, - -0.0040277, - -0.030829, - 0.031236, - 0.02116, - -0.0088499, - -0.017338, - -0.024542, - -0.031186, - 0.0022769, - -0.00082853, - 0.1157, - -0.024207, - 0.016601, - 0.013404, - 0.038213, - 0.053862, - -0.029968, - -0.019483, - 0.03086, - 0.063727, - 0.028539, - 0.014545, - -0.0067038, - -0.12776, - 0.045844, - -0.030968, - -0.027027, - -0.01546, - 0.035342, - -0.02211, - 0.04688, - -0.029033, - -0.020782, - 0.11928, - 0.0031079, - 0.010383, - -0.033009, - 0.0092619, - 0.021305, - 0.023125, - -0.019434, - -0.023687, - 0.020313, - 0.032781, - -0.021646, - 0.020984, - 0.070246, - -0.013526, - -0.06235, - 0.054174, - 0.022611, - -0.053434, - -0.018236, - -0.015751, - -0.056395, - -0.044709, - 0.006927, - 0.030604, - 0.012745, - 0.017403, - -0.02956, - -0.035947, - -0.067784, - 0.030374, - 0.040183, - 0.029603, - -0.017365, - -0.023422, - 0.0041519, - -0.01241, - 0.033748, - -0.015861, - 0.021812, - 0.040123, - -0.02685, - -0.020057, - 0.010458, - -0.023982, - 0.040608, - -0.092946, - -0.021317, - 0.042621, - 0.022654, - 0.027879, - 0.019088, - 0.038189, - -0.0066276, - 0.026592, - -0.022404, - 0.037017, - -0.020295, - 0.044244, - 0.030692, - -0.0071826, - 0.05142, - -0.061332, - -0.030421, - -0.028388, - -0.024107, - -0.00016911, - 0.10063, - 0.0034929, - 0.026657, - 0.119, - 0.013176, - -0.041511, - -0.043663, - -0.062892, - -0.055504, - -0.031129, - -0.0082998, - -0.0072699, - -0.008285, - -0.037014, - 0.0093326, - -0.019034, - -0.05095, - 0.082928, - 0.000012588, - -0.0066087, - 0.0097206, - 0.0698, - 0.093624 - ], - "poison": [ - -0.03444, - 0.014167, - 0.02716, - 0.014513, - 0.005058, - -0.064551, - -0.036503, - -0.078811, - -0.013147, - 0.01384, - -0.046279, - 0.055745, - 0.13567, - 0.037934, - -0.078657, - -0.065724, - 0.1177, - -0.0104, - 0.061695, - 0.058263, - -0.065833, - 0.058127, - 0.025298, - 0.022501, - -0.054672, - -0.15687, - 0.039764, - 0.035151, - 0.042699, - 0.00742, - 0.011152, - 0.010625, - -0.00060844, - 0.040263, - 0.016413, - -0.070263, - -0.091094, - -0.056996, - -0.07293, - 0.019083, - -0.024999, - -0.12283, - 0.023141, - -0.033305, - 0.053271, - -0.025292, - 0.032378, - 0.050778, - 0.0095623, - 0.017381, - -0.024286, - 0.09012, - 0.025663, - -0.18074, - -0.10877, - 0.048619, - 0.082373, - 0.050738, - -0.047869, - -0.0095972, - -0.022585, - -0.024035, - 0.10064, - -0.051708, - -0.037071, - 0.039035, - 0.015502, - 0.037275, - 0.055092, - -0.0041996, - 0.076111, - 0.074627, - 0.080189, - 0.017742, - -0.050716, - 0.012318, - 0.044573, - 0.0060259, - -0.04041, - -0.03318, - -0.071437, - -0.073453, - -0.10746, - 0.093357, - -0.022096, - -0.0032539, - 0.054279, - -0.018092, - -0.013789, - -0.016368, - 0.094244, - -0.00059429, - -0.1149, - -0.050647, - -0.019916, - 0.010573, - 0.08245, - 0.0212, - 0.043604, - -0.019787, - -0.11692, - 0.08087, - 0.033077, - 0.026688, - 0.025876, - -0.11101, - 0.0015846, - -0.05867, - 0.018394, - 0.027143, - -0.069901, - 0.091943, - 0.093874, - -0.032695, - 0.0052338, - 0.0099753, - 0.050653, - -0.091189, - -0.058405, - -0.036094, - -0.048355, - 0.015963, - -0.083408, - -0.079214, - 0.1081, - 0.038842, - -0.02106, - -0.14814, - -0.034449, - 0.054597, - 0.011389, - -0.035526, - -0.033134, - 0.031461, - 0.027913, - 0.0017322, - -0.076678, - 0.043557, - 0.070245, - -0.047106, - 0.064438, - -0.14165, - -0.037655, - -0.062314, - 0.057079, - 0.013328, - 0.064652, - 0.082247, - -0.0041182, - -0.061226, - -0.014106, - 0.086071, - 0.0095572, - -0.014158, - 0.010423, - -0.087704, - -0.051465, - 0.011029, - -0.020978, - 0.0057027, - 0.023664, - -0.059264, - -0.12006, - 0.039895, - -0.00038108, - 0.0012982, - -0.0029265, - 0.066546, - 0.025566, - -0.061413, - 0.013877, - -0.033958, - -0.048704, - 0.051794, - -0.017455, - 0.061408, - -0.036136, - -0.0062923, - -0.020505, - 0.014403, - 0.040675, - 0.04934, - 0.049463, - -0.081617, - -0.0059051, - -0.038176, - -0.0075253, - 0.11754, - 0.018235, - -0.027816, - -0.013736, - 0.012384, - -0.064793, - 0.032944, - 0.05813, - 0.035376, - 0.048879, - 0.081932, - 0.0027026, - 0.029642, - -0.18148, - 0.053096, - 0.0057092, - 0.0076109, - -0.053891, - -0.029543, - 0.034963, - -0.028472, - -0.03806, - -0.011491, - 0.11173, - 0.00042681, - 0.038406, - 0.035938, - 0.096299, - -0.061532, - 0.017584, - -0.039847, - -0.035979, - -0.02555, - -0.059752, - -0.05834, - -0.028818, - 0.10447, - 0.049278, - 0.040253, - -0.022711, - 0.067425, - -0.0024792, - -0.0086845, - -0.076626, - -0.042062, - -0.06962, - -0.053125, - 0.025621, - -0.0048246, - -0.074488, - -0.028281, - 0.0049792, - -0.14525, - 0.10914, - 0.01897, - 0.045723, - -0.0040638, - -0.038835, - 0.078993, - -0.032097, - 0.025943, - -0.012691, - 0.018765, - -0.012743, - -0.016613, - -0.080152, - 0.070487, - 0.0096066, - 0.0186, - 0.061838, - -0.0040657, - 0.0079189, - -0.01022, - 0.043058, - 0.03022, - -0.014639, - -0.025626, - -0.075869, - 0.023248, - -0.095316, - -0.010926, - -0.055888, - -0.030675, - -0.14197, - 0.10047, - -0.112, - -0.067023, - -0.013225, - -0.013732, - -0.021794, - 0.071324, - 0.0018506, - 0.069122, - 0.10824, - 0.02754, - -0.03232, - -0.052681, - -0.043078, - 0.091371, - 0.054492, - 0.057641, - 0.1009, - -0.0026656, - -0.03044, - 0.094339, - -0.060119, - 0.0017428, - 0.0034482, - -0.0023309, - 0.072649, - -0.073783, - 0.030058, - 0.06464 - ], - "milk": [ - -0.033449, - 0.044198, - -0.012809, - -0.18606, - 0.062273, - -0.027314, - 0.05497, - -0.11024, - 0.041951, - -0.067438, - 0.095247, - 0.023708, - 0.042121, - -0.047083, - -0.02527, - -0.01419, - 0.087409, - 0.036269, - 0.018317, - 0.0033128, - 0.04739, - 0.053405, - 0.027999, - -0.020518, - -0.012195, - -0.071223, - -0.05773, - 0.12031, - 0.069599, - 0.0055382, - -0.0010651, - 0.03514, - -0.056986, - 0.0075347, - 0.07841, - -0.040058, - 0.027509, - -0.082127, - 0.12117, - 0.084205, - 0.026525, - -0.16505, - -0.0025913, - -0.085833, - 0.098298, - -0.046119, - 0.023664, - -0.022508, - -0.039441, - 0.054296, - 0.012051, - 0.044078, - 0.18021, - -0.043554, - -0.16183, - 0.048005, - 0.070353, - -0.056726, - -0.072434, - -0.091333, - -0.01867, - 0.041912, - 0.16443, - 0.074554, - 0.01189, - 0.013324, - 0.036432, - 0.040191, - -0.058215, - -0.075169, - -0.0041596, - 0.042369, - 0.051474, - -0.19099, - -0.083211, - 0.024956, - -0.020345, - -0.037894, - 0.03245, - 0.01799, - -0.090075, - -0.16009, - 0.039492, - 0.06284, - -0.0041848, - 0.068115, - -0.011468, - -0.12017, - -0.064651, - -0.052761, - -0.044974, - -0.0043452, - -0.096405, - -0.0032872, - 0.0008291, - 0.11744, - 0.049457, - 0.11509, - 0.15424, - -0.012176, - -0.16471, - -0.096277, - -0.083083, - 0.024448, - 0.075177, - -0.17405, - -0.036061, - -0.0047436, - -0.079808, - 0.22942, - 0.077187, - 0.10181, - 0.080491, - 0.057619, - 0.013645, - -0.048669, - -0.10907, - 0.10636, - -0.061841, - 0.073246, - -0.09433, - 0.010438, - 0.066858, - -0.19396, - 0.085233, - 0.092654, - -0.038979, - -0.14783, - -0.038119, - 0.10553, - 0.0044372, - -0.027929, - 0.027576, - -0.027184, - 0.031444, - -0.13094, - -0.086, - 0.05222, - 0.037619, - 0.015827, - 0.051303, - -0.065135, - -0.0052909, - -0.03654, - 0.10137, - -0.029239, - 0.079725, - 0.044314, - -0.19485, - 0.0027505, - -0.090762, - 0.096369, - 0.12318, - 0.012017, - 0.078577, - -0.13884, - 0.018162, - 0.037231, - -0.037325, - -0.021964, - 0.046228, - -0.014134, - -0.091365, - 0.034612, - 0.079597, - -0.029868, - -0.013382, - -0.013959, - 0.03559, - -0.014276, - 0.019798, - -0.0079207, - -0.097017, - 0.1247, - 0.056331, - 0.063712, - -0.0062883, - 0.025359, - -0.0037016, - 0.024538, - -0.060983, - -0.035649, - -0.0050464, - -0.16514, - -0.10816, - -0.052892, - 0.071235, - 0.19505, - 0.11305, - -0.12894, - 0.11546, - 0.019779, - -0.0070297, - -0.014172, - 0.1961, - -0.077189, - 0.075148, - 0.097917, - 0.061647, - 0.069731, - -0.20434, - 0.060144, - -0.035972, - -0.058252, - -0.005939, - 0.061825, - -0.049093, - -0.077984, - 0.048623, - -0.053175, - 0.19843, - -0.012068, - 0.028283, - -0.0040061, - 0.09756, - 0.13664, - 0.06674, - -0.1055, - -0.0018306, - -0.063681, - 0.027426, - 0.0058426, - 0.031584, - 0.13521, - 0.095856, - 0.090471, - 0.046266, - 0.011184, - 0.078154, - -0.025779, - 0.074035, - -0.025053, - -0.1162, - -0.056224, - 0.044062, - 0.057701, - -0.08642, - -0.055772, - -0.022673, - -0.15393, - 0.080776, - 0.011683, - -0.097534, - -0.082854, - -0.021688, - 0.035085, - -0.0081624, - -0.018083, - -0.052486, - 0.04597, - 0.0038597, - -0.11047, - 0.10236, - 0.2059, - 0.0047385, - 0.041264, - -0.021969, - -0.040507, - 0.0013611, - -0.03106, - -0.059779, - 0.065158, - -0.037949, - -0.069616, - 0.12842, - 0.049628, - -0.072658, - -0.095873, - 0.070625, - 0.10611, - 0.0045717, - 0.1384, - -0.11574, - -0.058239, - -0.091421, - -0.066142, - -0.079794, - -0.044279, - 0.012213, - -0.059357, - 0.15897, - 0.053531, - 0.0017349, - 0.05857, - -0.084485, - 0.073118, - 0.051034, - 0.070643, - 0.041231, - -0.0064842, - 0.011211, - 0.017344, - -0.15645, - -0.063523, - -0.15877, - 0.036586, - 0.082253, - -0.022148, - -0.047656, - 0.010515 - ], - "cell": [ - -0.049801, - -0.052821, - 0.092822, - -0.13884, - -0.0025505, - -0.12904, - -0.023105, - -0.10549, - 0.10689, - -0.054771, - 0.063294, - -0.090123, - 0.027611, - -0.029827, - -0.021751, - -0.032446, - 0.18537, - 0.047311, - 0.09311, - 0.0035932, - 0.12823, - -0.035197, - 0.11225, - 0.12482, - 0.000059536, - -0.0089069, - 0.003233, - 0.042903, - -0.065831, - 0.14466, - -0.022443, - 0.16412, - 0.052996, - -0.0062807, - -0.019442, - -0.061576, - 0.022254, - 0.0088194, - 0.073074, - -0.035891, - -0.042519, - -0.22973, - 0.0017276, - -0.069736, - -0.00092994, - -0.026696, - 0.06102, - -0.066652, - -0.030262, - -0.076111, - 0.011303, - 0.072641, - 0.0017488, - 0.0016888, - -0.082586, - 0.073653, - -0.0011012, - 0.0013206, - -0.03608, - 0.047977, - -0.085229, - 0.035499, - 0.23919, - 0.019439, - 0.10665, - -0.014667, - 0.10989, - -0.013051, - -0.052457, - -0.044022, - 0.090671, - -0.031013, - -0.00070936, - -0.059771, - -0.083631, - -0.015693, - 0.027783, - -0.044246, - -0.06055, - 0.013197, - -0.056559, - -0.097235, - -0.086627, - 0.054536, - 0.0010699, - -0.044609, - 0.11487, - -0.02948, - -0.0085077, - 0.078261, - -0.077333, - 0.073931, - -0.14106, - 0.016844, - -0.030375, - 0.14154, - 0.17073, - -0.069197, - 0.025022, - 0.046246, - 0.093688, - -0.068645, - 0.12073, - 0.16975, - 0.047462, - -0.20328, - -0.10875, - -0.080118, - 0.092719, - -0.023448, - 0.11782, - 0.050711, - 0.10501, - -0.013465, - -0.01035, - -0.1156, - 0.096241, - -0.0070594, - -0.076202, - -0.013627, - -0.073639, - 0.00082582, - 0.0511, - -0.021833, - 0.042734, - -0.025628, - 0.042683, - -0.19479, - 0.10921, - 0.11358, - 0.056024, - -0.0042184, - 0.020375, - -0.026835, - 0.039008, - 0.010826, - 0.050767, - 0.0099172, - 0.0084981, - 0.04834, - 0.075482, - 0.10003, - 0.038688, - 0.0010015, - -0.029892, - 0.037447, - -0.0083334, - 0.11021, - -0.019938, - -0.062408, - -0.049517, - 0.086133, - 0.063454, - -0.066643, - 0.0077131, - 0.054248, - -0.056929, - -0.090141, - 0.0049025, - 0.046884, - 0.030675, - 0.083863, - -0.069184, - -0.013908, - -0.004273, - -0.03659, - -0.097469, - -0.053176, - 0.0013895, - -0.037563, - -0.011622, - 0.09591, - -0.020512, - 0.036616, - -0.037858, - 0.08304, - 0.08014, - 0.001662, - -0.01214, - -0.081832, - -0.043257, - 0.0014065, - 0.0097992, - 0.10199, - -0.016476, - -0.11264, - -0.013415, - 0.099711, - 0.1357, - 0.12064, - -0.0064029, - -0.023626, - 0.03821, - 0.11443, - -0.0065036, - -0.077849, - -0.058033, - 0.14208, - -0.007515, - 0.10336, - -0.22082, - 0.091367, - 0.022947, - 0.10512, - -0.059136, - 0.04364, - -0.0066209, - 0.021701, - -0.05177, - -0.041496, - 0.18824, - -0.018646, - 0.012044, - 0.16501, - 0.042111, - -0.0091238, - -0.003063, - 0.1315, - 0.089998, - -0.097069, - -0.072253, - -0.014912, - 0.063276, - 0.12154, - -0.050364, - 0.017163, - 0.073858, - 0.035872, - 0.039804, - -0.013652, - -0.034865, - -0.077422, - -0.071356, - -0.024703, - 0.033793, - 0.031301, - 0.0086316, - 0.083966, - 0.026089, - -0.022567, - 0.048375, - -0.1113, - 0.046039, - 0.14562, - -0.0062377, - -0.13353, - 0.096347, - 0.080615, - 0.05781, - 0.081799, - -0.020351, - 0.022906, - -0.12193, - -0.018326, - 0.04484, - -0.075922, - 0.022292, - 0.01667, - 0.001113, - 0.072933, - 0.00041103, - 0.022849, - 0.10616, - -0.052753, - 0.01226, - -0.075421, - -0.057812, - 0.032212, - 0.071565, - 0.099992, - -0.087883, - 0.12779, - -0.14003, - -0.08158, - 0.08295, - -0.044188, - 0.11278, - -0.0063187, - 0.044107, - -0.018415, - 0.12149, - -0.062154, - -0.0047747, - 0.025383, - -0.022405, - -0.033381, - -0.1408, - -0.059945, - -0.0098809, - 0.034188, - 0.048804, - 0.021291, - -0.18591, - 0.0046724, - 0.016744, - -0.083443, - 0.011607, - 0.099086, - 0.049135, - 0.027436 - ], - "watersports": [ - 0.016221, - -0.10778, - 0.04368, - -0.0085725, - -0.031494, - -0.022963, - 0.0079986, - -0.064152, - -0.015836, - 0.009437, - 0.010665, - -0.027441, - -0.040679, - -0.040247, - 0.022271, - -0.040504, - 0.099325, - -0.0059214, - 0.054263, - -0.027191, - 0.040371, - -0.048525, - 0.005977, - 0.059025, - 0.047777, - -0.029844, - 0.0031126, - -0.036375, - 0.073132, - -0.00098693, - 0.019689, - 0.0024814, - 0.041652, - -0.018817, - 0.060413, - 0.037714, - 0.05338, - -0.025865, - 0.039016, - 0.015279, - 0.078433, - -0.090927, - 0.0091399, - 0.025354, - 0.012427, - -0.080743, - -0.020387, - -0.035864, - -0.049381, - 0.02968, - -0.0081916, - 0.011033, - 0.031615, - 0.013196, - -0.049893, - -0.0026392, - 0.023416, - -0.038482, - -0.048796, - 0.027274, - -0.0030355, - 0.032073, - 0.054994, - 0.012381, - 0.015823, - -0.0067462, - -0.013537, - -0.079337, - 0.036811, - -0.022785, - 0.13091, - -0.026701, - 0.0051876, - 0.076945, - 0.015411, - -0.054276, - 0.0033521, - -0.072523, - -0.071952, - 0.010252, - -0.009959, - 0.018351, - -0.013386, - 0.018864, - -0.027828, - 0.047045, - 0.00094793, - 0.015847, - -0.030928, - -0.046143, - 0.029502, - 0.0057074, - -0.068056, - 0.078644, - 0.029904, - 0.12943, - -0.0037885, - 0.031365, - 0.0096781, - -0.053948, - -0.0194, - 0.037714, - -0.026426, - -0.0013067, - 0.038646, - -0.044199, - -0.045852, - 0.011913, - -0.016105, - 0.0094366, - -0.028631, - 0.069683, - 0.047189, - 0.023482, - 0.034668, - 0.012265, - 0.025488, - 0.0039984, - -0.032372, - 0.060741, - 0.042748, - 0.084506, - 0.014389, - -0.058587, - 0.10164, - -0.033838, - -0.013017, - 0.0095736, - -0.08518, - 0.06662, - 0.0085965, - 0.032904, - 0.012763, - -0.046122, - -0.026785, - -0.011386, - 0.048772, - 0.004246, - -0.0019146, - -0.050121, - -0.045704, - -0.0062424, - 0.071392, - -0.0097684, - 0.024657, - 0.017973, - -0.0027445, - -0.073357, - 0.014599, - 0.01465, - 0.03324, - 0.089333, - -0.017122, - -0.025963, - -0.010406, - 0.026301, - -0.069932, - 0.047512, - 0.072878, - 0.039876, - 0.0093921, - 0.0056829, - -0.041693, - 0.057458, - 0.012117, - 0.044482, - 0.030156, - -0.0048057, - -0.03835, - 0.030869, - 0.038944, - 0.015059, - 0.023113, - -0.022577, - 0.010375, - 0.048424, - -0.035822, - 0.01976, - -0.073476, - -0.026652, - 0.048446, - -0.013939, - 0.020336, - -0.058344, - 0.025319, - -0.01653, - -0.042259, - 0.10805, - 0.0072354, - -0.0086583, - -0.014585, - 0.069103, - -0.025512, - -0.008138, - 0.0082476, - -0.039569, - 0.045913, - -0.020356, - 0.030269, - 0.013542, - -0.12534, - 0.05325, - -0.027911, - -0.042576, - 0.059044, - 0.036562, - -0.038421, - 0.020124, - -0.009719, - -0.036285, - 0.08339, - -0.013979, - 0.055951, - 0.0087394, - 0.0024125, - 0.032669, - -0.070363, - -0.036174, - 0.0073129, - -0.01428, - 0.023161, - -0.050358, - -0.045358, - 0.080941, - -0.024392, - 0.029562, - -0.034347, - 0.067717, - -0.02331, - 0.0018528, - -0.0037834, - 0.0042795, - -0.025355, - 0.020186, - 0.017323, - 0.061499, - -0.031192, - 0.017117, - -0.0062178, - 0.0094227, - -0.012673, - 0.020831, - 0.023014, - -0.10555, - 0.021357, - 0.052417, - -0.0072938, - 0.017883, - -0.039957, - 0.013661, - 0.032778, - -0.014101, - -0.034977, - -0.0069007, - -0.049021, - -0.022873, - -0.026829, - -0.012918, - 0.044437, - 0.038003, - 0.012911, - 0.017264, - 0.017715, - 0.021944, - -0.015837, - -0.062466, - -0.031216, - -0.066257, - 0.063524, - 0.032076, - 0.040195, - 0.068275, - -0.10388, - -0.017547, - -0.022511, - -0.029198, - -0.0010123, - 0.037101, - -0.028198, - -0.0078037, - 0.087378, - 0.015769, - 0.0045054, - 0.052403, - -0.015455, - 0.010396, - 0.00068667, - -0.029128, - 0.013548, - 0.0091101, - 0.046365, - 0.020823, - -0.038782, - -0.022196, - -0.03886, - 0.022902, - -0.016754, - 0.059948, - 0.0049773, - -0.083154 - ], - "annals": [ - -0.070399, - -0.17208, - 0.11471, - 0.014285, - 0.039661, - -0.11772, - -0.054696, - -0.16614, - 0.05706, - 0.039647, - 0.027655, - -0.17025, - 0.082793, - 0.10833, - 0.10458, - 0.092899, - 0.077564, - -0.16535, - 0.060615, - 0.081512, - 0.063156, - 0.085801, - -0.018601, - 0.087664, - 0.043979, - -0.083108, - 0.019106, - -0.027488, - 0.014586, - 0.038946, - 0.083671, - 0.014039, - -0.026715, - -0.071519, - 0.092769, - 0.044364, - 0.044062, - 0.096926, - 0.011612, - 0.055386, - -0.059832, - -0.058075, - 0.077234, - 0.040189, - -0.00062234, - 0.015675, - 0.0070456, - -0.024006, - 0.017638, - -0.029107, - 0.014645, - -0.0094464, - -0.029701, - -0.021259, - -0.076786, - 0.05709, - -0.11194, - 0.038478, - -0.030294, - 0.024296, - 0.075222, - -0.043038, - 0.099382, - -0.11197, - 0.0607, - -0.020496, - -0.032562, - 0.14458, - 0.121, - 0.025471, - -0.11807, - -0.078971, - 0.015307, - -0.021133, - 0.032483, - -0.02536, - 0.035631, - -0.012167, - 0.085508, - -0.0079162, - -0.00032482, - 0.040845, - -0.029284, - 0.056447, - -0.023464, - -0.080174, - 0.093602, - 0.015034, - -0.0010653, - -0.020318, - -0.071483, - 0.05477, - -0.091594, - 0.02866, - -0.015796, - 0.076208, - -0.002611, - -0.0177, - 0.048039, - 0.029729, - -0.079316, - -0.11715, - 0.044325, - 0.041301, - 0.063881, - -0.10039, - 0.070308, - -0.074988, - 0.040114, - 0.027229, - -0.013437, - 0.096984, - 0.072938, - 0.023258, - -0.10071, - 0.1033, - 0.013731, - 0.05385, - -0.070062, - 0.05219, - 0.009963, - 0.036251, - 0.048051, - 0.03614, - 0.069109, - 0.048453, - -0.071159, - -0.025683, - -0.001032, - 0.1184, - -0.022483, - 0.062449, - -0.046234, - -0.042305, - -0.021259, - -0.11709, - 0.088724, - 0.027731, - 0.023977, - -0.097952, - 0.076533, - -0.026035, - 0.038186, - -0.035391, - -0.027423, - -0.0048077, - 0.10176, - -0.031602, - -0.034856, - -0.01289, - 0.007428, - 0.12536, - 0.030132, - 0.04396, - 0.0098127, - -0.040206, - 0.076341, - 0.029436, - -0.069438, - -0.023809, - 0.0064693, - -0.0011509, - -0.040109, - -0.01074, - -0.081765, - 0.030589, - 0.0088988, - -0.074721, - -0.024175, - -0.024484, - 0.023219, - -0.025894, - 0.025512, - 0.038753, - 0.0053678, - 0.025846, - 0.057439, - -0.0091081, - -0.10144, - -0.009574, - 0.0026654, - -0.032919, - -0.016742, - -0.15432, - -0.024242, - 0.087298, - -0.0058525, - 0.090043, - 0.024002, - 0.052744, - 0.00043647, - 0.15277, - -0.058825, - 0.039711, - -0.12077, - 0.049504, - -0.0098285, - 0.066764, - 0.0087181, - 0.044441, - -0.20427, - -0.0093818, - -0.10367, - 0.0062998, - -0.017137, - 0.032894, - -0.015984, - 0.026971, - -0.074919, - 0.030301, - 0.13214, - -0.024125, - -0.046019, - 0.0029916, - 0.02769, - -0.015953, - -0.078511, - 0.084676, - -0.045878, - 0.034289, - -0.0002375, - -0.017275, - 0.02642, - 0.10339, - 0.016748, - 0.018882, - 0.058881, - 0.08004, - -0.081888, - -0.013007, - 0.0051616, - -0.0034466, - 0.019592, - 0.06844, - 0.03557, - -0.049897, - 0.0035365, - -0.03967, - 0.067491, - -0.046505, - 0.06095, - -0.012027, - -0.018746, - -0.047917, - 0.042183, - -0.036424, - -0.036696, - -0.091897, - -0.10365, - 0.0032924, - 0.033553, - 0.029878, - 0.035758, - 0.01015, - -0.078626, - 0.036143, - -0.079207, - 0.058317, - 0.12557, - 0.068215, - -0.060315, - -0.022077, - 0.016519, - -0.053844, - 0.067327, - -0.060593, - -0.036416, - 0.052668, - -0.028213, - -0.012046, - 0.067755, - 0.027445, - -0.088415, - -0.0010228, - -0.029025, - 0.028121, - -0.053926, - 0.013176, - -0.037898, - -0.015204, - 0.05388, - -0.03708, - 0.0088156, - -0.10896, - -0.035847, - 0.037833, - -0.05144, - -0.066069, - -0.011072, - 0.0047413, - 0.06148, - 0.020687, - 0.031767, - -0.012279, - 0.0041356, - -0.023776, - 0.074145, - -0.016875, - -0.043036, - 0.10622 - ], - "usenet": [ - 0.021602, - -0.084673, - -0.11434, - -0.0070613, - -0.074219, - 0.045613, - -0.03194, - -0.13613, - 0.013675, - -0.076049, - -0.02912, - -0.026494, - 0.073516, - 0.005497, - -0.11373, - -0.018792, - 0.11353, - -0.01683, - 0.02078, - 0.0049893, - -0.13088, - 0.1036, - 0.013169, - 0.024518, - 0.028289, - 0.0039586, - 0.035692, - 0.01413, - -0.021919, - -0.0026818, - 0.0008369, - -0.021938, - -0.038098, - -0.032317, - 0.049856, - -0.046898, - 0.047738, - -0.01576, - 0.033956, - 0.0034665, - -0.079711, - -0.064977, - -0.037118, - -0.00033395, - -0.017148, - 0.060287, - -0.03345, - 0.02081, - -0.013986, - -0.052936, - -0.010914, - -0.00018885, - 0.13162, - -0.068812, - -0.089995, - 0.029861, - 0.040936, - 0.07396, - -0.044318, - 0.0078136, - -0.0093257, - -0.056841, - 0.14186, - 0.015278, - 0.019642, - 0.10065, - 0.059629, - 0.091707, - 0.034203, - -0.051519, - 0.086271, - -0.025312, - 0.042381, - 0.027734, - 0.036631, - -0.010418, - -0.009998, - 0.025119, - 0.07655, - -0.016513, - -0.011708, - -0.065897, - -0.020505, - 0.019177, - 0.029654, - -0.012271, - -0.033158, - 0.028092, - -0.052484, - 0.078966, - 0.070753, - 0.037566, - -0.021668, - -0.0070481, - 0.049987, - 0.05176, - 0.013297, - -0.039303, - -0.036735, - 0.10213, - -0.14918, - -0.038045, - -0.011281, - 0.039695, - -0.010216, - -0.094582, - 0.059754, - -0.028166, - 0.16576, - 0.058199, - -0.062543, - 0.080225, - -0.0022352, - -0.066949, - -0.095487, - 0.068548, - -0.04716, - -0.069858, - -0.081837, - -0.037424, - -0.023876, - 0.079347, - 0.066648, - 0.033644, - 0.081286, - -0.15216, - -0.0079946, - 0.022722, - -0.046361, - 0.11686, - -0.053025, - -0.0015116, - -0.09696, - 0.002757, - 0.0078804, - 0.019836, - -0.025394, - 0.00084775, - -0.00080244, - -0.000088328, - -0.0042089, - 0.01337, - 0.022594, - 0.04224, - -0.0659, - 0.072789, - -0.017572, - -0.043598, - -0.076671, - -0.054405, - 0.007169, - 0.027956, - -0.025469, - -0.0042172, - 0.064509, - 0.0024636, - -0.063705, - 0.1354, - 0.055529, - -0.026759, - 0.043554, - -0.015308, - -0.022136, - -0.078626, - -0.067644, - 0.010021, - 0.074449, - 0.0045971, - -0.076705, - 0.043828, - -0.013499, - 0.012152, - 0.050888, - 0.0293, - 0.0083814, - 0.069536, - -0.0051377, - 0.084875, - 0.03418, - 0.0068453, - 0.062095, - 0.15549, - -0.062915, - 0.025172, - 0.11294, - -0.13764, - -0.044316, - 0.16396, - -0.1049, - -0.082805, - 0.043392, - 0.072287, - -0.086318, - 0.095612, - 0.01142, - -0.016322, - -0.014492, - -0.037521, - -0.048417, - 0.11233, - -0.13852, - -0.0042376, - -0.034547, - 0.043475, - 0.006913, - 0.02535, - 0.0019642, - 0.13373, - 0.003832, - 0.0068058, - 0.15418, - 0.040621, - -0.022789, - 0.0066958, - 0.0072723, - 0.031381, - -0.040817, - -0.0072738, - 0.041136, - -0.04625, - 0.10682, - -0.060866, - -0.024923, - 0.088678, - -0.050346, - 0.0018029, - 0.005933, - 0.11848, - -0.041907, - -0.0084808, - 0.051433, - -0.103, - -0.0073096, - 0.061098, - 0.0075267, - -0.063946, - -0.0079761, - 0.088235, - 0.018001, - -0.056412, - 0.08038, - -0.061422, - 0.042162, - -0.0404, - -0.0278, - 0.10691, - -0.048859, - -0.0085152, - -0.10326, - 0.023924, - 0.067279, - 0.02552, - 0.020628, - -0.017086, - 0.012292, - -0.05125, - 0.068403, - 0.011581, - 0.005246, - -0.1203, - 0.10214, - -0.024592, - 0.020573, - -0.040963, - 0.016719, - -0.094819, - 0.13296, - 0.05214, - -0.02544, - 0.016294, - -0.0070065, - 0.068573, - -0.013525, - -0.05335, - 0.028323, - -0.028204, - -0.001458, - -0.023283, - -0.095129, - 0.031574, - 0.075107, - 0.024427, - 0.013293, - 0.01795, - -0.10778, - -0.060385, - -0.046693, - -0.083611, - -0.10161, - 0.078715, - -0.013118, - 0.076257, - -0.055801, - -0.021994, - 0.049237, - 0.0023598, - 0.015811, - -0.026953, - -0.046949, - -0.032616 - ], - "Architectures": [ - 0.0074712, - 0.030996, - -0.028354, - -0.037128, - 0.0058754, - 0.014605, - -0.0026264, - -0.034474, - -0.0052939, - 0.0023294, - 0.055184, - -0.017697, - -0.018943, - 0.064138, - 0.023962, - 0.0061321, - 0.016496, - 0.055608, - 0.023916, - -0.019136, - -0.066176, - 0.068055, - 0.0063331, - 0.045103, - 0.0090859, - 0.034259, - -0.022483, - 0.0077347, - 0.084275, - 0.031137, - -0.0027068, - -0.035155, - 0.011323, - 0.012005, - 0.015973, - 0.048843, - 0.0094502, - 0.024973, - 0.031093, - -0.0046655, - -0.068888, - 0.036639, - 0.016326, - 0.015372, - -0.07058, - -0.030115, - -0.0069122, - -0.015014, - -0.0079624, - -0.055668, - -0.0074162, - -0.029747, - -0.039256, - 0.017685, - -0.048777, - 0.012785, - 0.010866, - 0.002981, - -0.020555, - 0.02438, - 0.021852, - 0.011485, - -0.010925, - -0.053557, - 0.010763, - 0.031647, - -0.026992, - 0.0034482, - -0.009866, - 0.0018957, - 0.008523, - 0.0017548, - -0.022051, - -0.014363, - 0.011316, - -0.036367, - -0.0023859, - -0.074992, - 0.0061831, - 0.029432, - -0.024486, - -0.026835, - 0.031401, - -0.039246, - 0.063239, - -0.038192, - -0.017812, - -0.051138, - -0.037664, - 0.052381, - 0.0136, - -0.013285, - -0.026154, - 0.032241, - -0.014404, - 0.092375, - 0.015684, - -0.026399, - 0.020632, - 0.041047, - 0.025865, - 0.011267, - -0.011245, - 0.038199, - -0.0034217, - -0.049605, - 0.0018657, - 0.059987, - -0.0053509, - -0.0055538, - 0.00086064, - 0.041597, - 0.0092893, - 0.011913, - -0.003624, - -0.025781, - -0.049724, - 0.035985, - 0.039691, - 0.058089, - 0.016094, - -0.033183, - -0.024013, - 0.0078067, - 0.067644, - 0.030926, - -0.029746, - -0.014037, - 0.017867, - 0.17106, - -0.031338, - 0.041056, - 0.0053173, - 0.01576, - -0.010322, - 0.040132, - -0.011053, - -0.033103, - 0.010909, - -0.0078851, - 0.037799, - 0.02424, - 0.00056457, - -0.0063642, - 0.000056417, - -0.0060791, - -0.035065, - 0.0074429, - 0.0266, - -0.021853, - 0.043255, - 0.059003, - 0.029129, - -0.038013, - 0.0052365, - 0.074817, - 0.016456, - 0.0079696, - -0.013532, - 0.0010392, - 0.026504, - 0.00020268, - -0.029741, - -0.020003, - -0.0076622, - -0.018658, - 0.008238, - -0.018492, - 0.027978, - 0.00043206, - 0.013397, - -0.023373, - 0.012501, - -0.0095993, - -0.0099933, - 0.021141, - -0.036896, - -0.020747, - -0.048008, - -0.025606, - 0.015172, - -0.0086608, - 0.017485, - 0.052597, - -0.0094725, - 0.08008, - 0.027357, - 0.11001, - -0.024866, - -0.013972, - -0.0045599, - 0.092665, - -0.030873, - 0.015239, - 0.010459, - 0.023785, - -0.017402, - -0.0047378, - 0.047523, - -0.013158, - -0.020745, - 0.015349, - -0.0013036, - -0.013284, - 0.019526, - -0.02596, - -0.014529, - -0.024035, - 0.0069318, - -0.0022126, - 0.10764, - 0.016546, - 0.045158, - -0.015853, - 0.028107, - 0.049252, - 0.011366, - 0.0094211, - -0.029719, - -0.013537, - -0.0034595, - -0.022958, - 0.025755, - 0.063552, - 0.031102, - -0.029485, - 0.001034, - 0.015277, - -0.05477, - 0.010883, - -0.050893, - -0.039868, - 0.033665, - -0.0059423, - 0.0076733, - -0.03272, - 0.024522, - -0.0014462, - 0.0019667, - 0.0086917, - -0.077898, - -0.0046275, - 0.036758, - -0.010876, - 0.1505, - -0.012069, - -0.071907, - -0.029862, - 0.035655, - -0.041014, - -0.034456, - -0.01665, - -0.013802, - -0.034573, - -0.041055, - 0.0071444, - -0.04069, - -0.022926, - 0.01208, - 0.010159, - -0.018225, - 0.082298, - -0.039406, - 0.0085447, - 0.01414, - -0.044763, - 0.056032, - -0.043091, - -0.0077258, - -0.024895, - -0.022941, - 0.060715, - -0.025064, - 0.00093623, - 0.0035469, - -0.016391, - 0.064829, - 0.015189, - 0.014081, - 0.015678, - -0.0016426, - 0.0017023, - -0.060349, - 0.019113, - 0.017652, - -0.0077031, - -0.0034547, - 0.023662, - -0.0021338, - -0.0061299, - -0.061378, - -0.013433, - -0.017513, - -0.039263, - 0.023463, - -0.015527, - 0.021275, - 0.044714, - 0.00063921, - 0.0052901 - ], - "attire": [ - -0.07053, - -0.036225, - 0.13029, - 0.041779, - 0.030452, - -0.10865, - 0.074871, - -0.091375, - 0.0025986, - -0.017346, - 0.012778, - -0.052396, - -0.12297, - -0.014295, - -0.072667, - 0.037332, - 0.069904, - 0.024474, - 0.039203, - 0.021825, - -0.025587, - -0.092202, - -0.055327, - 0.094702, - -0.038418, - 0.057112, - -0.0156, - 0.042084, - -0.059217, - -0.017458, - -0.047668, - -0.05893, - 0.052493, - -0.033588, - 0.072322, - 0.029481, - 0.041203, - 0.12321, - -0.0032523, - 0.08087, - 0.10515, - -0.15853, - 0.08946, - -0.0029504, - 0.023962, - -0.013763, - 0.064053, - -0.10941, - 0.023531, - -0.014199, - -0.072793, - -0.03659, - -0.066683, - 0.049292, - -0.039901, - 0.044056, - 0.016321, - -0.070674, - -0.019744, - -0.029309, - -0.045001, - -0.042115, - 0.21812, - 0.043082, - 0.0030495, - 0.088846, - 0.030672, - 0.013113, - 0.0077836, - -0.012496, - 0.014488, - -0.037136, - 0.032236, - -0.087557, - -0.014851, - 0.076902, - 0.022665, - -0.040011, - -0.084287, - 0.025796, - -0.004982, - -0.013584, - 0.15142, - 0.068221, - -0.044726, - -0.061527, - -0.080647, - -0.021962, - -0.081708, - 0.0009034, - -0.02147, - 0.001153, - -0.098649, - 0.014528, - 0.093945, - 0.13647, - -0.067115, - -0.042137, - 0.078465, - -0.0062523, - 0.011676, - 0.041832, - 0.035525, - -0.066117, - 0.017567, - -0.047728, - -0.032198, - -0.023395, - -0.056425, - 0.032743, - 0.015714, - 0.095326, - 0.090515, - 0.037807, - -0.024137, - -0.13174, - -0.007229, - 0.0033687, - -0.055471, - -0.051089, - 0.074416, - 0.078305, - 0.0084449, - 0.023004, - 0.17303, - -0.029924, - -0.056253, - -0.026783, - -0.0039392, - 0.13522, - -0.016085, - -0.043129, - 0.0065741, - 0.079287, - -0.12395, - 0.0017439, - -0.055624, - 0.0011438, - 0.0016983, - -0.097311, - -0.0074137, - -0.03536, - -0.023807, - 0.046868, - 0.002171, - 0.017488, - 0.007319, - -0.011757, - 0.022096, - -0.075989, - 0.030576, - 0.018089, - -0.065053, - -0.047131, - -0.041819, - 0.10285, - 0.014679, - 0.04036, - -0.015027, - 0.028471, - 0.033686, - 0.015563, - -0.058422, - 0.057837, - 0.030833, - 0.061593, - 0.017162, - -0.16764, - -0.01004, - 0.041344, - -0.0080196, - -0.06368, - -0.036494, - -0.091363, - 0.075834, - 0.064082, - -0.025926, - 0.16174, - -0.024647, - -0.063323, - 0.093355, - -0.0098371, - -0.0033071, - -0.024326, - -0.1091, - -0.079123, - -0.094218, - 0.15865, - -0.019815, - -0.026271, - 0.0027672, - 0.078624, - 0.002275, - -0.040996, - 0.024536, - 0.015888, - 0.047599, - -0.046379, - -0.0045743, - -0.052187, - -0.17581, - 0.02413, - 0.051027, - 0.048536, - -0.025442, - 0.065956, - -0.032986, - 0.035139, - 0.027577, - -0.027973, - 0.12603, - -0.012932, - -0.048896, - 0.080989, - 0.041265, - 0.025923, - -0.066308, - 0.06049, - -0.098564, - -0.030309, - -0.097683, - -0.051414, - -0.10169, - 0.094189, - 0.038181, - -0.00389, - 0.01883, - 0.080811, - -0.076957, - 0.049854, - -0.024515, - -0.06644, - -0.11909, - -0.05841, - 0.043007, - 0.04136, - 0.057294, - 0.030794, - 0.08005, - -0.039212, - 0.016444, - -0.013487, - -0.04217, - -0.053246, - 0.010778, - 0.027384, - -0.039827, - -0.12845, - -0.019048, - -0.031367, - 0.046458, - -0.058899, - -0.018753, - -0.074828, - 0.054745, - 0.011061, - 0.030151, - -0.010351, - 0.09111, - -0.0054406, - -0.057076, - -0.055901, - -0.073119, - 0.0065512, - 0.033751, - 0.0058256, - 0.024085, - -0.011153, - -0.11547, - -0.062971, - 0.015272, - 0.10731, - -0.099395, - -0.070253, - 0.0087906, - -0.063704, - -0.042898, - -0.024972, - -0.038334, - -0.023371, - 0.059166, - 0.049459, - 0.10419, - -0.057537, - 0.0014642, - -0.032396, - -0.0085084, - 0.023037, - 0.039372, - -0.0054827, - 0.062862, - 0.012243, - -0.029204, - -0.00051194, - -0.034586, - -0.031043, - -0.0033013, - 0.088677, - 0.0028742, - -0.0677 - ], - "weather": [ - -0.00099367, - -0.019904, - -0.003393, - -0.026518, - 0.022978, - -0.12454, - 0.0082428, - -0.087538, - 0.081381, - 0.051274, - -0.023395, - -0.032611, - -0.047772, - 0.02167, - 0.029066, - -0.013605, - 0.1054, - 0.006893, - 0.046049, - 0.04716, - 0.026451, - -0.037789, - -0.012739, - 0.051424, - 0.070447, - 0.042793, - 0.0091066, - 0.016419, - 0.069283, - 0.0047185, - 0.0033662, - 0.071233, - 0.039437, - -0.056466, - 0.058798, - 0.024275, - 0.023176, - 0.022236, - 0.033943, - -0.030779, - -0.01493, - -0.13102, - 0.024764, - -0.0038162, - -0.01069, - -0.016771, - 0.015084, - -0.071729, - -0.074217, - 0.0029915, - -0.03095, - 0.0096521, - 0.023694, - 0.03574, - -0.034876, - 0.061008, - 0.099263, - -0.037092, - -0.024307, - -0.021062, - -0.064797, - 0.059209, - 0.086624, - -0.0066956, - 0.021775, - -0.035717, - -0.0025642, - 0.040816, - 0.022458, - 0.082656, - 0.057151, - 0.070858, - -0.0022836, - 0.024886, - -0.019547, - -0.04248, - -0.032842, - 0.0069901, - -0.12903, - 0.003731, - -0.0095398, - 0.031938, - 0.032039, - 0.044679, - 0.051845, - -0.0061035, - 0.066269, - -0.024053, - -0.049981, - -0.072497, - 0.031256, - -0.030728, - -0.10974, - -0.018082, - 0.0040844, - 0.040102, - -0.04552, - 0.11538, - 0.049364, - -0.030148, - 0.047277, - -0.035274, - 0.037487, - 0.058877, - -0.0097209, - -0.095923, - -0.048348, - 0.013592, - 0.12392, - 0.0046872, - -0.060526, - 0.058954, - 0.049853, - 0.10556, - -0.006992, - -0.11777, - -0.035493, - 0.039584, - -0.024511, - 0.0057761, - 0.023922, - -0.0062775, - 0.013105, - 0.025432, - 0.099987, - 0.027322, - -0.011607, - -0.038791, - -0.055474, - 0.11716, - 0.031189, - -0.018204, - 0.01783, - 0.021198, - -0.018966, - 0.047081, - 0.066119, - 0.041969, - -0.025142, - 0.054296, - 0.066532, - -0.05093, - -0.047739, - -0.055633, - 0.0030109, - 0.031822, - -0.0084121, - -0.042601, - -0.016691, - -0.014364, - -0.024608, - 0.059082, - -0.0017227, - -0.072354, - 0.023771, - 0.046759, - 0.044832, - 0.027275, - -0.040889, - 0.016617, - 0.040135, - -0.066242, - -0.084212, - 0.044289, - 0.013117, - -0.033706, - -0.037073, - 0.0088553, - 0.014978, - 0.127, - -0.083612, - -0.011447, - 0.038452, - -0.056166, - 0.05296, - 0.081955, - 0.017104, - 0.033289, - -0.039983, - 0.022159, - -0.0030824, - 0.032005, - -0.035726, - -0.093191, - -0.0066302, - -0.075506, - -0.047703, - 0.073428, - -0.042264, - -0.085165, - 0.028636, - 0.035286, - -0.018332, - -0.027383, - -0.037745, - -0.039597, - 0.00093915, - 0.041449, - 0.022087, - -0.03063, - -0.13565, - 0.004808, - -0.058133, - -0.065121, - 0.048499, - 0.099132, - -0.050557, - 0.022296, - -0.02862, - -0.00030514, - 0.062685, - -0.00333, - 0.050625, - 0.065677, - 0.080254, - 0.014017, - -0.0083638, - -0.049549, - -0.087905, - -0.11425, - -0.0097612, - 0.0083718, - -0.035877, - 0.091828, - -0.0062609, - 0.0083159, - -0.04421, - 0.043627, - -0.043947, - 0.025736, - 0.0092533, - -0.044079, - -0.066179, - 0.010911, - 0.04029, - 0.058293, - 0.027433, - 0.028965, - 0.10611, - -0.069112, - 0.031064, - 0.0165, - 0.044225, - -0.046224, - -0.062831, - 0.053677, - 0.014279, - -0.053697, - 0.0035256, - -0.050525, - 0.075447, - -0.011844, - 0.04002, - 0.059362, - -0.016913, - 0.0060095, - 0.081666, - 0.0029603, - 0.029993, - 0.038403, - 0.084855, - 0.018118, - -0.016151, - -0.015992, - -0.054031, - -0.071149, - 0.02916, - 0.047514, - 0.068922, - 0.030351, - -0.055452, - 0.078388, - -0.12739, - -0.021533, - 0.026363, - -0.066877, - -0.033226, - -0.057282, - -0.024153, - -0.083693, - 0.091528, - -0.034077, - 0.042935, - 0.0016329, - 0.015377, - -0.020686, - 0.020985, - 0.0072508, - -0.067924, - 0.031454, - 0.0089964, - 0.011376, - -0.06017, - 0.050067, - -0.0040152, - -0.041975, - -0.065776, - 0.046105, - 0.07163, - -0.050884 - ], - "geography": [ - 0.027616, - -0.064576, - 0.017847, - -0.013679, - 0.025634, - -0.0521, - 0.020959, - -0.084015, - 0.072304, - 0.030365, - 0.00072032, - -0.05247, - 0.0024312, - 0.014242, - 0.060173, - -0.051639, - 0.07282, - 0.011138, - 0.030287, - 0.015925, - -0.035208, - 0.0047163, - 0.062671, - 0.082293, - -0.01686, - -0.043505, - -0.025269, - 0.015622, - 0.021477, - 0.04968, - 0.01803, - 0.079063, - -0.019649, - -0.053457, - 0.0027573, - 0.02864, - 0.052051, - -0.016363, - 0.0025584, - -0.058885, - -0.027131, - -0.12441, - 0.061327, - -0.0092163, - 0.0072555, - 0.0055055, - -0.040931, - -0.095946, - -0.0010959, - 0.05388, - -0.030462, - -0.013641, - 0.015428, - 0.013371, - -0.015124, - 0.094268, - 0.021095, - 0.032641, - -0.015689, - -0.021423, - -0.050819, - 0.002255, - 0.070596, - 0.0095427, - 0.067721, - -0.024428, - -0.051071, - 0.080753, - 0.039456, - 0.023606, - 0.020394, - -0.010665, - 0.0015748, - -0.013441, - 0.074172, - -0.037542, - 0.047655, - -0.019436, - -0.0014338, - -0.019363, - -0.049697, - 0.027108, - -0.041544, - 0.049359, - -0.06443, - -0.027265, - 0.02197, - -0.04352, - 0.030841, - 0.010899, - 0.070083, - 0.014951, - -0.08043, - 0.024513, - 0.0024647, - 0.053561, - -0.035901, - 0.077152, - 0.024648, - 0.011947, - 0.10225, - -0.012059, - 0.0060147, - -0.022613, - 0.0025471, - -0.050272, - -0.022305, - 0.065482, - 0.059813, - -0.033988, - 0.020084, - 0.049214, - 0.034034, - 0.0028568, - -0.0076826, - 0.018922, - -0.018224, - 0.011126, - -0.029385, - 0.074367, - 0.035093, - -0.046646, - -0.0032277, - -0.023921, - 0.023638, - 0.025445, - -0.10064, - -0.057601, - -0.029827, - 0.13575, - 0.0041606, - -0.032294, - -0.035505, - 0.019214, - 0.0078463, - 0.0031308, - 0.068171, - 0.016607, - 0.034418, - -0.0033265, - 0.0025357, - -0.071389, - 0.014784, - -0.019168, - 0.034227, - -0.040455, - -0.010937, - -0.0049253, - -0.0080974, - -0.059115, - 0.020833, - 0.044381, - 0.0075075, - -0.024706, - 0.022022, - 0.078459, - 0.010858, - 0.065027, - -0.020037, - 0.0077459, - -0.00053738, - -0.081582, - -0.11716, - 0.0011627, - -0.01011, - 0.030158, - 0.031823, - -0.058019, - 0.03026, - 0.010217, - -0.034677, - 0.012095, - 0.0011313, - 0.014685, - -0.013681, - 0.067085, - 0.018885, - 0.055661, - -0.012695, - 0.023545, - -0.028215, - -0.0052803, - 0.015165, - -0.025888, - 0.014318, - -0.040046, - -0.0022857, - 0.095396, - -0.020037, - -0.001867, - 0.024215, - 0.062825, - -0.036213, - -0.029884, - 0.0099894, - 0.050776, - -0.045968, - 0.029448, - -0.009777, - 0.0087785, - -0.12429, - -0.042341, - 0.045379, - -0.047441, - -0.023934, - 0.059246, - -0.004907, - -0.017288, - 0.017431, - 0.0018969, - 0.1009, - 0.0091414, - 0.0054623, - 0.0081122, - 0.038068, - 0.019081, - -0.0093706, - -0.081201, - -0.063159, - -0.018111, - 0.031649, - 0.038736, - -0.042724, - 0.087811, - -0.013414, - -0.010594, - 0.062131, - 0.071215, - -0.014212, - -0.022596, - -0.012558, - -0.032036, - -0.082156, - 0.011159, - 0.034548, - 0.01045, - 0.046076, - 0.053407, - -0.031143, - -0.016029, - 0.025723, - 0.041773, - -0.0034485, - 0.052788, - -0.012563, - -0.0034027, - -0.0017629, - -0.041025, - -0.03901, - 0.00036499, - 0.044509, - -0.0832, - -0.038974, - -0.0030499, - 0.0061031, - 0.031134, - -0.028723, - 0.045359, - 0.062009, - 0.055213, - 0.0021234, - -0.024998, - -0.0080278, - 0.0028053, - 0.02721, - -0.023042, - -0.037773, - 0.036265, - 0.071478, - 0.021975, - -0.014094, - 0.062875, - -0.086108, - -0.028222, - 0.05339, - -0.042623, - -0.034399, - -0.01711, - -0.068089, - -0.027394, - 0.092011, - -0.02026, - -0.018351, - 0.01443, - -0.00029663, - 0.00078499, - -0.031507, - 0.0033687, - -0.054515, - -0.048116, - -0.017871, - -0.0067505, - 0.00048959, - -0.025548, - 0.018535, - 0.045447, - 0.025072, - 0.033516, - -0.04126, - -0.039021 - ], - "fashionistas": [ - -0.020288, - -0.040451, - -0.014692, - 0.013361, - -0.071779, - -0.039703, - -0.0077612, - -0.044485, - 0.050262, - -0.036367, - -0.0022868, - 0.030363, - -0.12308, - -0.0092124, - -0.01492, - -0.0099573, - 0.072542, - 0.05855, - 0.026454, - -0.025347, - 0.021454, - -0.02724, - -0.021765, - 0.035746, - 0.044881, - 0.025493, - 0.057182, - 0.052766, - -0.0043995, - -0.0073857, - 0.011611, - -0.011454, - 0.052268, - -0.03713, - -0.012363, - 0.026204, - 0.058414, - 0.050729, - -0.057828, - 0.049829, - -0.030146, - -0.049044, - -0.023461, - 0.0036569, - 0.0029367, - 0.023599, - 0.022813, - 0.0058325, - -0.048681, - -0.079548, - 0.010498, - -0.055852, - -0.06312, - 0.0087838, - 0.022729, - -0.021807, - 0.0076591, - 0.001216, - -0.022915, - 0.0073802, - -0.018972, - -0.042683, - 0.023978, - 0.0077381, - 0.017358, - 0.04613, - 0.011941, - -0.020365, - 0.0088981, - -0.012129, - -0.0047388, - 0.025042, - 0.097137, - -0.035658, - 0.0055604, - 0.026281, - 0.016394, - -0.035586, - 0.0040106, - 0.040127, - -0.031002, - 0.034739, - 0.038796, - 0.049034, - 0.0067018, - -0.035219, - -0.042454, - -0.032978, - 0.016943, - 0.0082666, - 0.023224, - -0.027841, - -0.042489, - 0.014068, - 0.051722, - 0.05136, - -0.063232, - -0.025096, - -0.018031, - -0.0000051212, - -0.0029989, - 0.031384, - -0.0081254, - 0.026875, - 0.037297, - -0.056654, - -0.020038, - 0.0076949, - 0.022675, - 0.0079625, - 0.010713, - 0.052805, - 0.005192, - 0.0024139, - -0.022444, - -0.035804, - 0.0047998, - -0.0047046, - 0.0058076, - 0.030345, - 0.0091908, - 0.017376, - -0.0070384, - -0.0193, - 0.059257, - -0.024809, - -0.013149, - 0.059906, - 0.013749, - 0.028815, - 0.007308, - 0.084498, - 0.059906, - -0.016789, - 0.023573, - 0.007137, - -0.072444, - 0.062399, - -0.031193, - -0.064439, - 0.048001, - -0.018053, - 0.069593, - 0.029892, - -0.020604, - -0.0093378, - -0.0067619, - 0.010046, - -0.019137, - -0.042, - 0.039498, - 0.03894, - -0.026064, - 0.050192, - 0.02797, - -0.076974, - 0.020813, - 0.07087, - 0.0010654, - -0.0080803, - 0.046485, - -0.0014119, - 0.028152, - 0.078201, - 0.012373, - 0.02347, - -0.012357, - -0.025745, - -0.033889, - 0.021672, - -0.021269, - -0.0073748, - 0.0026509, - -0.093298, - 0.004049, - 0.032419, - -0.043911, - 0.0031029, - 0.0076165, - -0.025708, - 0.017629, - -0.011389, - -0.019499, - -0.068896, - 0.025903, - -0.066264, - -0.012222, - 0.11816, - -0.064524, - 0.011841, - -0.019414, - 0.076677, - -0.0532, - -0.054529, - 0.028064, - 0.027241, - -0.008186, - 0.04874, - 0.037058, - 0.0028366, - -0.086921, - 0.025006, - -0.0076329, - 0.031475, - 0.023835, - 0.030114, - -0.014265, - -0.0082837, - -0.014908, - -0.0066134, - -0.012084, - -0.034775, - 0.069663, - 0.039121, - 0.0059062, - -0.018035, - -0.067915, - -0.036421, - 0.0081343, - -0.02342, - -0.07075, - 0.010229, - 0.011169, - 0.028517, - 0.026656, - 0.015711, - 0.033732, - 0.067852, - 0.000016847, - 0.011154, - -0.0208, - -0.006719, - -0.05655, - -0.019725, - 0.044527, - -0.023944, - -0.036873, - -0.0067468, - 0.043362, - -0.00026107, - 0.0072877, - -0.03762, - -0.0072095, - -0.00050069, - 0.039172, - 0.031993, - -0.061054, - -0.039756, - -0.036757, - -0.027021, - 0.043434, - 0.0058099, - -0.034598, - -0.022362, - -0.012386, - 0.030177, - -0.043999, - -0.062644, - 0.0592, - 0.0044029, - 0.015597, - 0.065829, - 0.019233, - 0.01308, - 0.0079219, - 0.035248, - 0.0011101, - 0.01877, - 0.027791, - -0.015839, - -0.016383, - 0.037836, - -0.08283, - -0.019983, - 0.075447, - -0.026319, - -0.047063, - -0.0092658, - -0.08449, - -0.040372, - 0.054101, - 0.06067, - 0.026008, - -0.0062118, - -0.011061, - -0.01465, - -0.019112, - -0.041122, - 0.040952, - 0.012743, - -0.047625, - -0.019489, - -0.021782, - 0.038581, - -0.018858, - -0.067467, - 0.0067318, - 0.047715, - 0.0073057, - 0.025267 - ], - "public": [ - 0.053379, - -0.046428, - 0.042648, - 0.050961, - -0.017409, - 0.069089, - 0.034235, - -0.11556, - 0.081953, - 0.011262, - 0.017969, - -0.11683, - -0.012825, - -0.016064, - -0.036414, - 0.017211, - 0.12597, - -0.025497, - 0.053263, - 0.011554, - -0.011567, - 0.018022, - 0.10131, - 0.080434, - -0.049729, - 0.029272, - -0.023565, - 0.043357, - 0.0050556, - -0.0030304, - -0.018222, - -0.032207, - -0.050406, - -0.086551, - 0.051963, - 0.048552, - -0.0021582, - -0.016519, - 0.0095014, - -0.015257, - 0.050404, - -0.071788, - -0.020528, - 0.049325, - 0.043, - -0.041216, - -0.0083923, - 0.039803, - -0.03541, - 0.046039, - -0.0031932, - -0.0095623, - 0.052667, - -0.047026, - -0.038864, - 0.010308, - -0.079535, - 0.040447, - -0.047224, - -0.02964, - 0.023485, - 0.0091654, - 0.12828, - -0.014736, - 0.00084647, - 0.036821, - -0.048505, - -0.013691, - 0.067341, - 0.050634, - 0.03569, - -0.012995, - 0.10841, - 0.029281, - -0.062016, - 0.057635, - -0.012796, - -0.023574, - 0.050872, - 0.059091, - -0.049958, - 0.040331, - 0.0055196, - 0.070629, - -0.027115, - 0.017297, - -0.036597, - -0.039268, - -0.036476, - 0.057629, - -0.0096513, - 0.072961, - -0.10768, - 0.03105, - 0.020365, - 0.057227, - 0.026776, - 0.0061102, - 0.03109, - 0.064143, - -0.063475, - -0.011167, - 0.032029, - 0.0064499, - 0.093785, - -0.14388, - 0.055923, - -0.0053148, - 0.0016403, - 0.060173, - -0.053681, - 0.12102, - 0.053852, - 0.052654, - -0.0015026, - -0.089976, - 0.018079, - 0.0079308, - -0.082098, - 0.023402, - -0.012417, - 0.019758, - -0.028561, - 0.037304, - 0.028989, - 0.0077934, - -0.02572, - -0.073659, - 0.0093204, - 0.069638, - -0.01653, - 0.060778, - 0.065068, - 0.063477, - -0.01637, - -0.036116, - -0.032746, - 0.077648, - 0.017162, - 0.013589, - 0.022754, - -0.022087, - -0.022316, - -0.020355, - -0.00014785, - -0.072788, - -0.043756, - -0.019197, - 0.064034, - -0.031532, - 0.06249, - 0.15311, - -0.019664, - -0.038733, - 0.0328, - -0.02204, - 0.0032726, - 0.045173, - -0.060026, - -0.00044231, - 0.019291, - 0.0073719, - -0.016087, - 0.030893, - -0.022164, - 0.01031, - 0.059974, - 0.0026518, - 0.026171, - -0.0015715, - -0.062493, - -0.0018155, - 0.046432, - -0.030123, - -0.033104, - 0.053536, - 0.0075755, - 0.028352, - -0.043207, - -0.015377, - -0.017734, - -0.014004, - -0.0013613, - -0.011787, - -0.021126, - -0.045493, - -0.032092, - 0.08294, - 0.064145, - -0.027013, - -0.017289, - 0.063365, - 0.072825, - -0.015319, - -0.022271, - 0.013188, - 0.0061878, - -0.020632, - -0.05292, - -0.087433, - -0.18706, - 0.10185, - 0.0063849, - 0.010615, - 0.016098, - -0.015379, - -0.041739, - 0.023942, - -0.0512, - -0.0025292, - 0.10306, - -0.0097926, - -0.06384, - 0.023397, - -0.042977, - -0.026503, - -0.0083192, - -0.107, - 0.031332, - 0.0027367, - -0.028647, - -0.077535, - -0.078924, - 0.12667, - 0.013553, - 0.030642, - -0.0038145, - 0.055626, - -0.002974, - -0.075305, - -0.040934, - -0.051969, - -0.061571, - -0.02408, - -0.004493, - 0.026664, - -0.038324, - 0.0068035, - -0.0033803, - -0.080097, - 0.077554, - -0.019397, - 0.025508, - 0.020536, - -0.094316, - 0.0068698, - -0.061965, - -0.042284, - -0.046553, - -0.0377, - 0.071366, - 0.0016789, - 0.0294, - -0.030446, - 0.0084137, - 0.010772, - -0.043382, - 0.0027425, - -0.056363, - 0.029018, - -0.04566, - 0.01889, - -0.014907, - -0.015933, - -0.0049772, - 0.024922, - 0.052989, - 0.056607, - -0.0055768, - 0.028395, - -0.00083139, - 0.054968, - -0.12174, - -0.0214, - 0.043413, - -0.089322, - -0.0060124, - 0.065019, - 0.030121, - 0.016017, - 0.10039, - -0.052803, - -0.018797, - 0.0089492, - -0.008341, - -0.014813, - -0.014947, - -0.076394, - 0.016102, - 0.038292, - -0.011298, - 0.043751, - 0.0018262, - 0.06462, - 0.012013, - 0.035342, - -0.062286, - -0.0089665, - -0.0075147, - 0.019189 - ], - "exercise": [ - -0.011486, - -0.041224, - -0.024204, - -0.011931, - -0.062909, - -0.025952, - 0.010982, - -0.08195, - 0.022995, - 0.013007, - -0.047003, - -0.037826, - 0.039934, - -0.022506, - 0.019136, - 0.042387, - 0.077152, - 0.013156, - 0.061027, - -0.035385, - -0.062586, - -0.038225, - -0.0089513, - 0.02845, - -0.065627, - 0.036251, - -0.016646, - -0.032585, - -0.054609, - 0.0019628, - 0.029298, - -0.055463, - 0.031116, - -0.08399, - 0.010295, - 0.029293, - 0.070688, - -0.063024, - 0.058933, - 0.014945, - 0.043878, - -0.049729, - -0.05225, - 0.019589, - -0.0018208, - -0.00020605, - 0.0094588, - -0.042563, - -0.011188, - -0.015214, - 0.0035169, - 0.0075311, - 0.02562, - -0.013686, - -0.11382, - 0.01318, - -0.033851, - -0.048844, - -0.045204, - -0.0045898, - 0.0036425, - -0.010026, - 0.12768, - 0.029051, - -0.069856, - -0.056672, - 0.016927, - 0.05187, - 0.0040449, - -0.018837, - 0.055092, - -0.035488, - 0.025971, - 0.036949, - 0.040334, - -0.001396, - 0.019552, - -0.014666, - -0.086738, - -0.0036995, - -0.070596, - -0.0037445, - 0.0053, - 0.069783, - -0.018187, - 0.040646, - -0.014499, - -0.01746, - 0.072243, - 0.00067442, - 0.0095177, - 0.020368, - -0.079532, - -0.041535, - 0.068388, - -0.034543, - -0.022296, - 0.034345, - 0.034186, - -0.013148, - -0.00099088, - 0.011547, - -0.0045197, - -0.00851, - 0.0081988, - -0.073337, - -0.0079618, - 0.011991, - -0.025311, - -0.01677, - -0.01635, - 0.059514, - 0.052889, - 0.0052424, - 0.06831, - 0.050976, - -0.0074306, - 0.039924, - -0.063717, - -0.0078894, - 0.070467, - 0.030832, - 0.01826, - 0.0025376, - 0.065315, - 0.0078484, - 0.059015, - -0.073232, - 0.038227, - 0.098447, - -0.0037348, - -0.018721, - 0.043954, - 0.038376, - 0.0078747, - -0.02181, - 0.010058, - 0.0058853, - 0.047971, - 0.021322, - 0.065921, - -0.067221, - -0.064664, - 0.022993, - -0.0037963, - -0.031002, - -0.0084665, - -0.025949, - 0.034759, - 0.019337, - 0.089442, - 0.065738, - -0.032329, - -0.082493, - -0.019876, - 0.020916, - -0.040177, - 0.040778, - -0.041583, - -0.028605, - 0.030358, - 0.0080448, - -0.075266, - 0.049104, - 0.011011, - 0.069479, - 0.031857, - -0.055344, - -0.016619, - -0.01397, - 0.086783, - -0.0077883, - 0.032874, - -0.024975, - -0.032945, - 0.029067, - 0.016111, - 0.037508, - -0.053865, - 0.051906, - 0.010941, - -0.083319, - -0.022712, - 0.0029233, - 0.04375, - -0.024321, - -0.05114, - 0.065699, - -0.037243, - 0.036755, - 0.002473, - 0.062247, - -0.0304, - -0.054053, - 0.027558, - 0.000095585, - 0.0093956, - 0.032155, - -0.0098178, - 0.072517, - -0.13499, - 0.054018, - 0.033484, - -0.006742, - -0.0014584, - -0.033537, - 0.039254, - 0.031279, - 0.017515, - -0.047564, - 0.074701, - 0.0011222, - 0.0071097, - 0.066161, - 0.043234, - 0.032336, - 0.059125, - 0.014572, - -0.062171, - -0.013238, - -0.088883, - -0.00049969, - -0.059449, - 0.10462, - 0.046369, - 0.03621, - -0.014415, - 0.07612, - -0.045144, - 0.0088706, - -0.038811, - -0.080331, - -0.043894, - -0.026851, - 0.013313, - 0.03901, - -0.01124, - -0.030566, - 0.04195, - -0.072734, - 0.1285, - 0.019992, - -0.032158, - -0.035744, - -0.062637, - 0.077762, - -0.046472, - -0.045652, - 0.033951, - 0.0045489, - 0.023712, - 0.052072, - -0.072701, - 0.010037, - 0.054605, - -0.047546, - 0.030365, - 0.043935, - 0.001018, - 0.034409, - 0.01249, - 0.00095213, - -0.015248, - -0.027577, - -0.044688, - -0.033961, - 0.00072892, - 0.00393, - 0.0065779, - 0.045647, - -0.0095476, - 0.091516, - -0.092641, - -0.077124, - -0.041975, - 0.0075883, - 0.02822, - 0.0034661, - 0.043189, - 0.011595, - 0.06406, - -0.030933, - 0.021343, - 0.020929, - -0.030207, - -0.0095386, - -0.031545, - 0.035588, - -0.0063021, - 0.058808, - 0.06636, - -0.023768, - 0.016409, - 0.039489, - 0.026613, - 0.033623, - -0.023638, - -0.047565, - -0.066723, - 0.042183 - ], - "budgets": [ - 0.11173, - -0.058272, - -0.051134, - -0.0099997, - 0.076506, - -0.036443, - -0.03737, - -0.080425, - 0.060207, - 0.06393, - -0.0083843, - -0.079454, - -0.020525, - -0.013349, - -0.004879, - 0.056373, - 0.041029, - -0.011896, - 0.10383, - 0.0053747, - 0.0056501, - -0.029794, - -0.074969, - 0.093668, - 0.025471, - -0.017117, - -0.015752, - 0.010485, - 0.0892, - 0.031426, - 0.031022, - -0.033229, - -0.0067251, - -0.048762, - 0.045262, - 0.090514, - 0.0094067, - 0.016389, - 0.0017938, - 0.0033117, - -0.079787, - -0.12368, - 0.0024869, - 0.065296, - -0.0071919, - -0.027703, - 0.054385, - -0.052475, - 0.024222, - 0.017126, - 0.031847, - 0.014125, - 0.072609, - 0.073728, - -0.12928, - 0.1132, - -0.022254, - -0.0076349, - -0.040155, - 0.0014198, - 0.10327, - -0.040802, - 0.18578, - 0.020262, - 0.052768, - -0.031068, - 0.011678, - -0.087082, - -0.028793, - -0.068971, - 0.020928, - -0.049455, - 0.018139, - 0.0088305, - 0.02561, - 0.0077706, - 0.15151, - -0.065481, - -0.0099688, - -0.017118, - -0.044959, - -0.045925, - -0.07181, - 0.1041, - 0.054207, - 0.068168, - -0.039951, - -0.053261, - 0.041837, - -0.04303, - -0.012389, - -0.057628, - -0.084033, - 0.073087, - -0.077778, - 0.088051, - -0.024028, - 0.038303, - 0.053694, - 0.064225, - 0.056136, - -0.04446, - -0.013238, - -0.004179, - 0.062581, - -0.043183, - 0.01624, - -0.089587, - -0.045577, - 0.050825, - 0.030878, - 0.027925, - 0.076882, - 0.028859, - 0.032169, - -0.11953, - -0.023504, - -0.047173, - -0.076099, - 0.020899, - -0.072071, - -0.015168, - -0.025855, - -0.069145, - 0.095228, - 0.0043499, - -0.084288, - -0.014388, - -0.018961, - 0.11154, - 0.0024943, - -0.066543, - 0.058517, - 0.065865, - -0.026865, - -0.052926, - 0.048826, - 0.04022, - -0.083225, - 0.074678, - 0.024598, - -0.047086, - 0.053792, - 0.050241, - 0.063672, - -0.026504, - -0.039735, - -0.037503, - 0.10472, - -0.071348, - 0.020398, - 0.10114, - 0.071381, - -0.031482, - 0.057136, - 0.01885, - -0.02009, - 0.022021, - -0.051303, - -0.049003, - 0.081598, - 0.042268, - -0.025319, - 0.01293, - -0.078396, - 0.083254, - -0.0016875, - -0.064642, - 0.0169, - -0.0062117, - -0.060076, - -0.063055, - -0.11671, - -0.12507, - -0.053882, - 0.05103, - -0.13074, - 0.032694, - -0.043452, - -0.032777, - 0.041749, - -0.040357, - -0.0020361, - -0.011413, - -0.02511, - 0.017085, - 0.019198, - 0.10158, - 0.030576, - -0.0090282, - -0.070881, - 0.0035573, - -0.030419, - -0.062746, - 0.0061959, - -0.041861, - -0.085034, - -0.0023478, - 0.010727, - 0.0048949, - -0.14948, - -0.017305, - 0.004479, - 0.066323, - 0.0097758, - -0.0058343, - -0.090483, - -0.0099352, - 0.0076977, - -0.052254, - 0.097583, - 0.0023165, - 0.051119, - 0.016236, - -0.029076, - -0.034576, - 0.087484, - 0.017301, - -0.052127, - -0.048078, - -0.00068639, - 0.079885, - 0.060354, - 0.076646, - 0.035591, - -0.037914, - 0.032959, - 0.037594, - 0.035325, - 0.017204, - -0.037417, - -0.078156, - -0.075431, - 0.042316, - 0.052072, - -0.049136, - -0.04255, - -0.080505, - -0.037291, - 0.018203, - -0.037541, - -0.040417, - -0.012852, - -0.0062276, - -0.0014589, - 0.072233, - -0.040204, - -0.10634, - 0.01172, - -0.062766, - -0.033781, - 0.016372, - -0.014958, - 0.031287, - -0.020952, - 0.054678, - -0.019453, - -0.032724, - 0.0018466, - 0.05155, - 0.032934, - -0.084599, - -0.074297, - -0.031591, - 0.038539, - 0.010218, - -0.024041, - 0.028066, - 0.050451, - 0.02605, - 0.044061, - 0.044822, - -0.10274, - -0.029613, - -0.040581, - 0.014004, - -0.027885, - 0.09182, - 0.027337, - 0.034955, - 0.021207, - 0.011548, - 0.008417, - 0.0041615, - 0.064996, - 0.04026, - -0.013081, - 0.070784, - -0.13274, - -0.016297, - 0.02856, - 0.0078723, - 0.040693, - 0.036134, - -0.0071563, - -0.02879, - -0.063875, - 0.031111, - -0.045569, - 0.026296 - ], - "trekking": [ - -0.06779, - 0.008712, - -0.08949, - 0.011543, - -0.071202, - -0.058756, - -0.0032667, - -0.084323, - -0.005947, - -0.060592, - 0.0056857, - -0.12609, - -0.084883, - -0.031644, - -0.014364, - -0.042099, - 0.082895, - -0.046779, - 0.0047416, - -0.0079157, - 0.014575, - -0.0011685, - -0.013223, - 0.064084, - 0.053566, - 0.01346, - 0.036703, - 0.057046, - -0.04123, - 0.034425, - 0.059567, - 0.043547, - 0.0072005, - -0.017311, - 0.057683, - 0.03776, - 0.093868, - -0.067529, - 0.0069755, - 0.024313, - 0.048494, - -0.08216, - 0.02674, - 0.048885, - 0.084311, - 0.026271, - -0.0026335, - -0.045221, - -0.039026, - 0.0054183, - 0.052657, - 0.052373, - -0.050098, - -0.02471, - -0.11283, - 0.045013, - 0.022634, - -0.028923, - -0.036816, - 0.012873, - 0.033532, - 0.010714, - 0.05313, - -0.022913, - -0.041104, - -0.045041, - 0.034791, - -0.12611, - -0.055525, - 0.064218, - 0.030155, - -0.020235, - 0.055768, - 0.012489, - -0.019417, - 0.019082, - -0.0034496, - -0.021067, - -0.071924, - -0.016571, - -0.043636, - -0.061064, - 0.0023513, - 0.010963, - -0.065658, - -0.077376, - 0.0015365, - -0.0079379, - -0.059411, - -0.06852, - 0.034211, - 0.042278, - -0.11467, - -0.024876, - 0.024127, - 0.061876, - -0.031239, - 0.056714, - 0.016813, - -0.044325, - -0.003987, - 0.036159, - 0.0056796, - -0.015971, - 0.060306, - -0.11111, - -0.011887, - 0.018426, - -0.047819, - -0.041664, - 0.044118, - 0.0027998, - 0.064185, - 0.028961, - -0.048679, - 0.049658, - 0.023805, - 0.077491, - -0.030028, - -0.0058293, - 0.070126, - -0.0025819, - -0.0038738, - 0.00012994, - 0.045592, - -0.061921, - -0.057981, - -0.065317, - 0.054841, - 0.093746, - 0.067106, - 0.079274, - -0.0785, - 0.019949, - -0.049005, - -0.058895, - 0.035246, - 0.042907, - -0.004531, - -0.0022743, - -0.068206, - -0.094938, - 0.056025, - 0.010183, - -0.023515, - 0.076712, - -0.096242, - -0.0081828, - 0.0029882, - -0.076048, - 0.060503, - 0.027492, - -0.058202, - -0.075284, - 0.080541, - 0.052283, - -0.092004, - 0.098559, - 0.045313, - -0.064393, - 0.049151, - -0.021743, - -0.014785, - 0.043993, - -0.041045, - 0.073535, - -0.0058285, - -0.044476, - 0.021607, - 0.12377, - 0.051535, - -0.03837, - -0.004297, - 0.044626, - -0.021146, - 0.063362, - -0.006464, - 0.032866, - -0.018868, - -0.030837, - 0.032369, - -0.038861, - -0.066005, - -0.058606, - 0.01389, - -0.039144, - 0.057955, - 0.14632, - -0.034458, - -0.026217, - 0.018123, - 0.010927, - 0.0085692, - 0.046897, - 0.0029565, - 0.096592, - 0.024794, - -0.067361, - 0.018491, - -0.0067369, - -0.12263, - 0.065636, - -0.018437, - 0.01398, - 0.028263, - 0.028852, - -0.093673, - 0.098289, - 0.042043, - -0.020401, - 0.10326, - -0.030182, - 0.01524, - -0.067239, - -0.024167, - -0.008971, - -0.00016448, - -0.046785, - 0.02106, - -0.040196, - -0.055164, - 0.032793, - -0.10093, - 0.11228, - -0.015944, - 0.0075714, - -0.022958, - 0.13744, - -0.0047998, - 0.025615, - 0.011032, - -0.01872, - 0.027038, - 0.055747, - -0.02049, - -0.0033362, - 0.020413, - 0.031991, - -0.039371, - 0.075762, - 0.071575, - 0.026277, - 0.047825, - -0.10737, - -0.037389, - 0.051435, - 0.036826, - -0.039403, - -0.08853, - 0.040623, - 0.038082, - 0.01974, - -0.025511, - 0.043374, - 0.048237, - 0.091392, - -0.040261, - -0.016331, - 0.052665, - 0.103, - -0.0010778, - 0.051283, - -0.045358, - 0.068814, - -0.01085, - 0.02516, - -0.0024255, - 0.057612, - 0.055592, - 0.0084109, - -0.05371, - 0.06044, - -0.084827, - -0.025283, - -0.024869, - -0.076189, - 0.0027013, - -0.043595, - -0.088546, - 0.024151, - 0.062021, - 0.0070754, - -0.0051237, - 0.036283, - 0.013802, - -0.00073111, - -0.033014, - -0.065872, - -0.010938, - -0.0048652, - 0.016143, - 0.029667, - -0.09429, - -0.019796, - 0.0005082, - 0.024044, - 0.027877, - 0.033682, - 0.027943, - -0.055447 - ], - "ex-military": [ - 0.016163, - -0.0092745, - 0.0091864, - -0.031058, - -0.047881, - -0.016041, - 0.014543, - -0.078298, - 0.017621, - 0.078974, - 0.011892, - 0.042704, - -0.034011, - 0.01471, - -0.0035344, - 0.039675, - 0.03055, - 0.062888, - 0.01866, - 0.0024714, - 0.040201, - -0.022992, - -0.055131, - 0.017315, - 0.021407, - -0.005954, - 0.060236, - 0.0013431, - 0.03196, - -0.013435, - 0.0094439, - -0.02592, - -0.039771, - 0.030865, - 0.026991, - 0.057333, - -0.014423, - 0.041878, - 0.05794, - 0.038526, - -0.0095092, - -0.10033, - 0.022781, - 0.020205, - 0.0063018, - 0.060927, - 0.02746, - -0.043972, - 0.014269, - 0.004178, - -0.058498, - 0.054463, - 0.0097142, - -0.00046185, - 0.073657, - 0.0085406, - -0.006221, - -0.028552, - -0.053792, - 0.017378, - -0.019929, - -0.010345, - 0.11558, - 0.01644, - 0.02556, - -0.033743, - 0.0094718, - -0.11697, - -0.0091992, - 0.02434, - 0.061093, - -0.0208, - 0.087892, - -0.044581, - -0.016621, - 0.0059737, - 0.030319, - -0.0063006, - -0.0011098, - 0.0047019, - 0.032538, - 0.023116, - 0.031058, - 0.079031, - -0.036218, - -0.011727, - -0.023727, - 0.032091, - 0.018206, - 0.018149, - 0.012934, - 0.036781, - -0.085541, - -0.046237, - 0.01148, - 0.084452, - -0.058709, - -0.06005, - 0.055206, - -0.00224, - 0.0092172, - 0.0053786, - 0.028999, - -0.033261, - -0.045363, - -0.096247, - 0.069553, - 0.016613, - 0.018976, - 0.059605, - -0.045754, - 0.051933, - 0.050727, - 0.027858, - 0.035344, - -0.011499, - 0.0074601, - 0.00651, - -0.01455, - -0.0077007, - 0.023339, - -0.025195, - -0.01813, - -0.05911, - 0.05567, - 0.029142, - 0.013358, - 0.063393, - 0.023247, - 0.024558, - -0.046236, - 0.051456, - 0.0088347, - -0.0055699, - 0.016217, - 0.0057973, - 0.024673, - 0.087627, - -0.019942, - -0.013853, - -0.080003, - -0.027839, - -0.032875, - 0.030155, - -0.010326, - -0.01294, - -0.020741, - 0.014541, - -0.027855, - -0.028638, - 0.074839, - 0.11714, - -0.016724, - 0.023708, - -0.029827, - 0.0053711, - -0.077241, - 0.016699, - 0.018012, - -0.0076541, - 0.052467, - 0.042456, - 0.015132, - 0.018318, - -0.10142, - -0.027067, - -0.0082965, - -0.0036783, - 0.015877, - -0.014609, - 0.052512, - -0.053256, - 0.02139, - -0.019135, - -0.018033, - 0.017749, - 0.0094833, - 0.010378, - 0.038667, - 0.023728, - 0.0096607, - -0.049577, - -0.014692, - 0.011818, - 0.077845, - -0.11566, - 0.026736, - 0.085826, - -0.022012, - -0.017351, - -0.030153, - 0.069535, - 0.020221, - 0.014352, - -0.000057891, - 0.049419, - -0.018003, - -0.014957, - -0.0020734, - 0.055069, - -0.056132, - 0.00080995, - -0.085694, - 0.040718, - -0.0047837, - -0.027028, - 0.011825, - 0.04524, - -0.0089952, - -0.02925, - 0.088422, - 0.012798, - 0.052301, - 0.016144, - -0.038453, - 0.021001, - -0.065675, - -0.012235, - -0.0089727, - 0.024631, - 0.033307, - -0.06734, - -0.020626, - 0.07634, - 0.0057958, - 0.040502, - -0.0072141, - 0.060215, - -0.011911, - -0.026998, - 0.018413, - 0.00051592, - -0.016851, - -0.023317, - -0.013736, - 0.020439, - -0.019635, - 0.028946, - -0.00052877, - -0.0086848, - 0.013765, - 0.012425, - 0.089391, - 0.033175, - -0.042846, - -0.004476, - -0.016783, - -0.045163, - -0.013962, - -0.016379, - -0.015369, - 0.071968, - 0.019972, - -0.028807, - 0.012237, - 0.0053664, - 0.053509, - 0.045953, - 0.02998, - -0.044524, - -0.043894, - -0.0032199, - -0.0047451, - 0.081073, - 0.0025989, - -0.016394, - -0.032128, - -0.025283, - 0.023215, - -0.031027, - -0.05405, - 0.057722, - -0.068005, - 0.0058424, - 0.078118, - -0.081623, - 0.049811, - 0.013007, - 0.0006516, - -0.042111, - 0.071446, - 0.055616, - 0.016944, - 0.074174, - 0.0072274, - -0.029607, - 0.019306, - -0.082923, - -0.045045, - -0.0060518, - -0.018255, - 0.017527, - -0.041626, - 0.05095, - -0.0531, - -0.005399, - -0.032924, - 0.0032575, - -0.029718, - -0.046284 - ], - "dictates": [ - 0.031597, - -0.0038629, - -0.038916, - 0.02695, - -0.043561, - -0.096663, - -0.012072, - -0.11096, - -0.017865, - 0.0257, - 0.024299, - -0.084912, - 0.0069793, - 0.0058034, - -0.019742, - 0.047964, - 0.069321, - 0.046132, - 0.11012, - 0.062339, - -0.00050847, - 0.017202, - 0.039124, - 0.068108, - -0.021468, - -0.00084934, - 0.026741, - 0.026336, - 0.091958, - 0.021103, - 0.0081484, - -0.0010441, - 0.0013569, - -0.025324, - -0.00092062, - -0.0070483, - -0.017157, - 0.023186, - 0.030639, - -0.0046262, - -0.049263, - -0.14292, - -0.023051, - 0.0028271, - -0.028979, - 0.014238, - 0.037923, - -0.050227, - 0.053036, - -0.086148, - 0.023063, - 0.012174, - 0.021369, - 0.038281, - 0.0010663, - 0.046125, - 0.081388, - 0.041722, - -0.013452, - -0.0060224, - -0.018036, - -0.0025109, - 0.097525, - 0.035497, - -0.0042975, - -0.0078339, - -0.0022383, - 0.0094011, - 0.071588, - -0.060177, - 0.056035, - 0.041295, - 0.023183, - -0.038253, - -0.028241, - -0.010282, - 0.039373, - -0.032648, - -0.042026, - -0.007366, - -0.016423, - 0.024692, - 0.0012129, - 0.10387, - 0.0036166, - -0.073076, - 0.031115, - -0.015814, - 0.036524, - 0.020278, - 0.078762, - -0.055782, - -0.075798, - -0.038865, - -0.020917, - 0.011206, - -0.036357, - -0.035925, - 0.0090787, - 0.0025232, - 0.039314, - 0.017405, - 0.017875, - 0.0099391, - 0.020654, - -0.0571, - 0.034668, - -0.0079815, - -0.043713, - 0.010571, - 0.026549, - 0.042737, - 0.055802, - -0.0065245, - -0.015792, - -0.023904, - -0.000035962, - 0.0044154, - -0.036307, - -0.011765, - 0.040642, - -0.0085342, - -0.021575, - 0.029639, - 0.09783, - 0.015682, - -0.0068128, - -0.092222, - -0.010751, - 0.13351, - 0.0079443, - 0.019915, - 0.072186, - 0.038428, - -0.045191, - -0.039845, - -0.019211, - 0.045839, - 0.018635, - -0.00027037, - 0.0478, - -0.059405, - 0.031667, - 0.0070722, - -0.049557, - -0.054318, - 0.0085844, - -0.017893, - 0.014692, - -0.018006, - 0.004433, - 0.013956, - 0.00065542, - -0.040251, - 0.041661, - 0.10106, - -0.020862, - -0.0052004, - -0.0089385, - -0.030999, - 0.035626, - 0.000030274, - -0.080606, - -0.0036482, - 0.023115, - 0.010055, - 0.0019316, - -0.03465, - -0.022328, - -0.0060343, - -0.074289, - 0.045963, - 0.0026496, - -0.033465, - -0.055532, - 0.029354, - -0.019016, - 0.081597, - 0.0032942, - -0.00088205, - 0.048929, - -0.000041774, - -0.043791, - 0.023214, - -0.020952, - 0.0087093, - 0.041383, - 0.11459, - 0.039719, - -0.014593, - -0.01791, - 0.05527, - -0.10861, - 0.010178, - -0.016314, - 0.0011945, - -0.0020184, - -0.00066726, - -0.026406, - 0.052386, - -0.15408, - -0.061802, - 0.027946, - -0.048613, - -0.0009782, - -0.046017, - 0.013063, - -0.0026779, - 0.0081725, - -0.012908, - 0.067653, - 0.035824, - -0.013347, - 0.0748, - 0.0078797, - -0.0050294, - 0.058971, - -0.0078562, - -0.053244, - -0.02012, - 0.046488, - -0.001355, - -0.01268, - 0.10528, - 0.070606, - -0.029317, - 0.017731, - 0.08181, - -0.034732, - -0.0015871, - -0.050874, - -0.083015, - -0.10332, - -0.0096938, - 0.048876, - 0.00022499, - 0.010725, - -0.028255, - 0.053487, - 0.034268, - 0.0047769, - 0.017839, - 0.0030744, - 0.059989, - -0.035384, - -0.034279, - 0.0018808, - -0.038548, - 0.019501, - -0.055873, - 0.091873, - -0.040721, - -0.0063797, - 0.01106, - 0.069811, - 0.0071467, - 0.010935, - 0.040209, - -0.017197, - 0.039396, - -0.080673, - -0.022425, - -0.027264, - -0.050446, - 0.031986, - 0.011614, - 0.0081331, - 0.063236, - -0.00049114, - 0.059243, - 0.049363, - 0.090294, - -0.10814, - -0.06303, - 0.0092363, - 0.00056529, - -0.034229, - -0.034352, - -0.021274, - -0.027082, - 0.0045388, - 0.027181, - 0.016237, - -0.030332, - 0.018664, - 0.067196, - -0.0085338, - 0.049506, - 0.032902, - -0.0080588, - 0.018791, - 0.0095436, - 0.066764, - -0.0068382, - -0.0094238, - -0.030179, - 0.05612, - -0.033941, - -0.052048, - 0.068129 - ], - "transportation": [ - 0.011286, - -0.017193, - 0.025441, - 0.035606, - 0.0032213, - -0.00031754, - -0.0049603, - -0.051318, - 0.046365, - 0.026767, - 0.010576, - -0.015134, - -0.013013, - 0.024005, - 0.0072347, - -0.038353, - 0.040857, - 0.01296, - 0.022721, - 0.037255, - 0.0051622, - -0.025464, - 0.01767, - 0.031403, - -0.0056979, - 0.028234, - -0.029689, - 0.019625, - 0.0046315, - 0.040168, - 0.0051667, - 0.040281, - -0.014971, - -0.053494, - 0.041213, - 0.052235, - -0.0069699, - 0.020377, - 0.025438, - -0.014446, - -0.022993, - -0.096415, - 0.015569, - 0.0044923, - 0.015803, - -0.02996, - 0.0000031946, - -0.0071042, - -0.037606, - 0.015348, - -0.0061636, - -0.011953, - 0.023044, - 0.0042549, - -0.030259, - -0.0021596, - -0.021124, - -0.0023928, - -0.0041184, - -0.0062713, - -0.0051275, - 0.030463, - 0.055167, - 0.016467, - 0.042474, - 0.00012212, - 0.011865, - -0.066843, - -0.0052888, - 0.011114, - 0.023839, - -0.0069168, - 0.017829, - -0.044735, - 0.010005, - 0.021225, - -0.027703, - -0.018619, - -0.0085789, - -0.015749, - -0.017942, - -0.014938, - -0.028641, - 0.02567, - -0.0077564, - -0.010947, - 0.01297, - -0.020563, - 0.0059266, - -0.022248, - 0.017173, - 0.030431, - -0.041459, - -0.0044365, - -0.041233, - 0.035659, - -0.0098738, - 0.021434, - -0.029154, - 0.0029403, - 0.026266, - -0.017806, - 0.0065405, - 0.01787, - 0.015428, - -0.045919, - -0.017547, - 0.031019, - 0.029023, - -0.0018802, - 0.026004, - 0.041297, - 0.035925, - 0.044512, - -0.011946, - -0.019781, - -0.043159, - -0.023032, - -0.034392, - 0.038948, - -0.0019307, - 0.028041, - -0.0376, - 0.017958, - 0.051558, - -0.01013, - -0.023897, - -0.05745, - 0.0016755, - 0.069876, - 0.0187, - -0.011502, - 0.015941, - 0.0078195, - 0.019964, - 0.027764, - 0.019209, - 0.00036134, - -0.00080076, - 0.016316, - 0.0050928, - 0.00089368, - -0.021195, - 0.012218, - 0.010052, - 0.0085213, - -0.0079234, - -0.0088811, - 0.018966, - -0.021333, - 0.025512, - 0.044198, - -0.0011663, - -0.078845, - 0.030273, - 0.0010649, - -0.028425, - -0.00074372, - -0.070477, - -0.0046895, - 0.023435, - -0.0053016, - -0.051697, - 0.011186, - -0.00072944, - -0.032827, - 0.032476, - -0.049279, - 0.061934, - -0.02116, - 0.044011, - 0.0043832, - 0.00082239, - -0.0076023, - 0.010324, - 0.032603, - -0.024893, - 0.052097, - -0.017891, - 0.037457, - -0.004488, - -0.0054704, - 0.031801, - -0.0076841, - -0.0067017, - -0.047273, - -0.070351, - 0.058, - -0.0048817, - -0.02966, - 0.01332, - 0.026176, - 0.013997, - 0.030481, - -0.00047582, - 0.01028, - -0.015992, - -0.019214, - 0.025471, - -0.047309, - -0.10539, - 0.039483, - 0.046087, - 0.022899, - 0.00014159, - 0.035848, - -0.053765, - -0.00046175, - 0.033753, - 0.0075257, - 0.067675, - -0.0017384, - -0.010576, - 0.030056, - 0.01475, - 0.075818, - 0.015, - -0.034064, - -0.010592, - -0.012999, - 0.013066, - -0.041339, - 0.00038463, - 0.055447, - 0.0073934, - 0.052262, - 0.0080842, - 0.026214, - -0.021434, - -0.022201, - -0.028342, - -0.0069732, - -0.026174, - -0.0072643, - 0.018527, - -0.010998, - -0.00069674, - 0.051889, - -0.015823, - -0.042157, - 0.022392, - 0.028699, - -0.0086826, - -0.047117, - -0.033488, - 0.0095377, - 0.040685, - -0.033195, - 0.012038, - 0.029998, - 0.01636, - 0.013571, - 0.010404, - -0.00041321, - 0.0078148, - 0.0347, - 0.011989, - 0.015264, - 0.011014, - 0.026975, - -0.015574, - 0.0087079, - -0.060372, - 0.0155, - 0.011055, - 0.044181, - -0.00034457, - 0.0065469, - 0.016719, - 0.021273, - -0.017274, - 0.047482, - -0.069618, - -0.011885, - -0.036524, - 0.0092115, - -0.010675, - 0.02943, - -0.023899, - 0.017748, - 0.066536, - -0.00012141, - -0.01011, - -0.019004, - 0.0035116, - 0.02044, - -0.024768, - 0.016844, - 0.0070183, - -0.011254, - 0.012701, - 0.040059, - -0.052877, - -0.04147, - 0.021723, - 0.00056297, - 0.013142, - 0.041368, - -0.014521, - -0.034781 - ], - "finances": [ - 0.071978, - -0.057477, - -0.026331, - -0.035575, - 0.019954, - -0.039828, - -0.023758, - -0.082049, - 0.052951, - 0.029795, - 0.010589, - -0.039995, - 0.026174, - 0.0050329, - -0.035472, - 0.034397, - 0.10533, - -0.041939, - 0.065807, - 0.027441, - -0.0183, - 0.01356, - 0.0066875, - 0.066335, - 0.0047037, - 0.035053, - -0.020387, - 0.014849, - 0.073979, - -0.0048229, - 0.007887, - 0.03311, - -0.074598, - -0.028629, - -0.024968, - 0.060975, - -0.045317, - 0.022804, - -0.037179, - -0.022517, - 0.00023177, - -0.10859, - 0.042761, - 0.039992, - -0.015351, - -0.034843, - -0.026314, - -0.064009, - -0.0013207, - -0.047548, - -0.04322, - -0.059302, - 0.036082, - 0.074143, - -0.11426, - 0.041202, - -0.1324, - -0.034866, - -0.012578, - 0.054676, - 0.061838, - -0.033191, - 0.12925, - 0.047959, - 0.084585, - -0.05671, - -0.0047487, - -0.077074, - -0.014926, - -0.0056602, - 0.038649, - -0.011688, - 0.022309, - -0.011633, - 0.024833, - 0.054755, - 0.022619, - -0.014383, - 0.0004323, - -0.01752, - 0.019388, - 0.012523, - -0.11004, - 0.071988, - 0.023921, - -0.00026086, - 0.021007, - -0.067719, - 0.019592, - -0.038708, - 0.060228, - -0.046085, - -0.073202, - 0.054516, - -0.069415, - 0.044, - -0.045026, - 0.013768, - 0.072241, - 0.010626, - -0.0021008, - 0.017523, - 0.014062, - -0.037331, - 0.063307, - -0.046106, - -0.0058075, - -0.06056, - -0.00050898, - 0.022797, - -0.045772, - 0.069785, - 0.075083, - 0.039549, - 0.037449, - -0.065785, - 0.0056179, - -0.026262, - -0.077706, - 0.030174, - -0.012229, - -0.027765, - 0.041943, - 0.039214, - 0.11809, - -0.0044889, - -0.049154, - -0.10313, - 0.020303, - 0.12225, - 0.01288, - -0.014442, - 0.017296, - 0.0067412, - -0.0086134, - -0.0072588, - 0.015215, - 0.010466, - -0.0075745, - 0.066999, - 0.028901, - 0.0042865, - -0.027756, - 0.088752, - 0.053547, - -0.0093751, - 0.010384, - -0.031227, - 0.014066, - -0.074605, - 0.051273, - 0.070955, - 0.060925, - -0.093451, - 0.0094744, - 0.028221, - 0.048487, - 0.02096, - 0.044704, - -0.043329, - 0.076745, - 0.015407, - -0.08349, - 0.04853, - -0.031054, - 0.023824, - -0.0023034, - -0.035918, - 0.040607, - 0.040329, - -0.017255, - -0.031182, - -0.035485, - 0.010622, - -0.0075956, - 0.036464, - -0.024619, - 0.012722, - -0.029196, - -0.017987, - 0.0056863, - 0.0070733, - 0.010674, - -0.023222, - 0.021184, - -0.017492, - -0.049373, - 0.054584, - 0.032968, - -0.029025, - -0.0028348, - 0.055862, - -0.056857, - -0.038958, - 0.0064387, - -0.025359, - -0.0013402, - -0.0020517, - 0.0047626, - -0.041122, - -0.15194, - -0.0072923, - 0.045634, - -0.030919, - 0.010219, - 0.0096521, - -0.060711, - -0.076719, - -0.013775, - -0.023484, - 0.084161, - 0.028693, - 0.013708, - 0.028081, - 0.057301, - -0.013978, - 0.00088896, - 0.014817, - -0.075867, - 0.061177, - 0.063866, - -0.033315, - -0.040398, - 0.10682, - 0.092338, - -0.006489, - -0.0017516, - 0.041216, - 0.0011028, - 0.01074, - -0.022785, - -0.050204, - -0.12396, - -0.017177, - 0.069866, - 0.0062214, - -0.024648, - 0.020938, - -0.023667, - -0.025254, - -0.015072, - -0.0084216, - 0.040077, - -0.016699, - -0.0081148, - 0.032167, - -0.012938, - -0.10721, - 0.028834, - -0.0088239, - -0.00026249, - 0.005539, - -0.002028, - 0.011462, - 0.00053209, - 0.0082177, - -0.025029, - 0.0029127, - -0.020099, - 0.048959, - 0.00537, - -0.03949, - 0.0076931, - -0.035113, - 0.0016034, - 0.052731, - -0.052174, - 0.030996, - 0.00024045, - 0.048816, - 0.0009641, - 0.075041, - -0.11586, - -0.03206, - -0.031311, - 0.0136, - -0.013347, - 0.047253, - -0.001998, - 0.013018, - 0.044301, - -0.012968, - 0.016336, - -0.028768, - 0.025026, - 0.055035, - -0.0059045, - 0.038324, - -0.10821, - 0.054759, - 0.056284, - 0.050989, - -0.041198, - 0.045734, - -0.032099, - -0.0081648, - -0.057861, - 0.015381, - -0.049421, - -0.00035635 - ], - "desires": [ - 0.044351, - 0.073844, - 0.012485, - -0.023416, - -0.0011297, - 0.009443, - -0.093184, - -0.0877, - -0.052242, - 0.010718, - -0.0070205, - 0.024183, - -0.025715, - 0.023352, - -0.050965, - -0.041358, - 0.057126, - -0.012666, - 0.072213, - 0.055268, - 0.014575, - 0.01552, - 0.033583, - 0.1168, - 0.013157, - -0.026604, - -0.027426, - 0.026051, - 0.089655, - -0.088871, - -0.044962, - -0.042729, - 0.0053391, - -0.0285, - -0.01778, - 0.060506, - -0.062647, - 0.032881, - 0.0026484, - 0.019169, - 0.0019974, - -0.042957, - -0.038877, - -0.030657, - -0.036156, - -0.0064499, - 0.024904, - 0.0088168, - -0.023214, - -0.067246, - 0.061391, - 0.011253, - -0.052175, - 0.026074, - -0.062714, - 0.061592, - -0.0034814, - 0.016726, - -0.035009, - 0.044193, - 0.019946, - 0.024946, - 0.11113, - -0.031551, - 0.0016717, - -0.029342, - -0.037541, - -0.0011546, - -0.0093089, - -0.059827, - 0.099017, - -0.0010804, - 0.080108, - -0.076532, - -0.019844, - -0.019479, - -0.014007, - -0.063271, - -0.060405, - 0.01508, - -0.0076165, - 0.096159, - -0.031934, - 0.10279, - 0.017268, - -0.050849, - 0.036387, - 0.011401, - -0.058581, - -0.017911, - 0.065048, - -0.084423, - -0.085182, - 0.0064814, - -0.034116, - 0.024185, - 0.0078849, - -0.050488, - 0.029813, - 0.033318, - 0.0024206, - 0.072705, - 0.0045834, - 0.001791, - 0.066942, - -0.097118, - 0.015577, - -0.0064478, - -0.086701, - -0.016832, - -0.058271, - -0.0031461, - 0.063133, - 0.012185, - 0.0211, - -0.026697, - -0.062301, - -0.012685, - -0.026578, - 0.011492, - -0.01464, - 0.0098634, - -0.0008506, - -0.09182, - 0.13537, - -0.033013, - 0.058488, - -0.033757, - 0.026607, - 0.094037, - -0.0070916, - 0.0049454, - 0.094189, - 0.013849, - -0.0045809, - -0.071295, - -0.0033042, - 0.064745, - -0.019791, - 0.062788, - 0.0093436, - -0.031024, - 0.0041353, - -0.00062915, - -0.017923, - -0.013209, - -0.023839, - -0.046733, - -0.0057459, - 0.10925, - 0.065197, - 0.10369, - -0.038294, - 0.01266, - -0.030742, - -0.016795, - -0.025386, - -0.016662, - 0.012368, - -0.087534, - 0.056227, - -0.012552, - 0.035152, - -0.035658, - 0.011605, - -0.072044, - -0.00087179, - -0.038624, - -0.04019, - -0.0023319, - -0.041154, - -0.0096493, - -0.014598, - -0.024875, - -0.048487, - 0.036374, - -0.017179, - 0.035802, - 0.014518, - -0.027594, - 0.013649, - 0.012333, - 0.0031621, - -0.072099, - 0.0079978, - -0.047824, - 0.025495, - 0.1019, - 0.024098, - 0.0084169, - 0.07323, - 0.057725, - -0.031225, - 0.03276, - 0.03664, - -0.021319, - -0.030271, - 0.0045814, - -0.01341, - 0.081095, - -0.13237, - -0.028127, - 0.0036389, - -0.094566, - 0.039875, - -0.028623, - 0.018344, - 0.036363, - 0.073433, - -0.042771, - 0.034029, - 0.036027, - 0.06361, - 0.0032505, - -0.030914, - -0.016093, - 0.044613, - -0.075295, - -0.04974, - 0.0038446, - 0.0097368, - -0.027366, - -0.033108, - 0.098742, - 0.10448, - -0.060831, - 0.012271, - 0.11723, - 0.004627, - -0.054131, - -0.045888, - -0.081508, - -0.16824, - -0.065421, - 0.059631, - 0.049762, - 0.0055401, - -0.0036392, - 0.026492, - 0.061405, - -0.0032253, - 0.043721, - -0.025416, - 0.062392, - -0.033195, - 0.0055269, - -0.046049, - -0.11656, - 0.027599, - -0.040079, - 0.023594, - -0.051339, - -0.017391, - -0.061077, - 0.045325, - -0.028582, - -0.12034, - 0.07971, - -0.02338, - 0.06972, - -0.044179, - 0.027079, - -0.026435, - -0.03019, - 0.0079835, - -0.0079275, - -0.050068, - 0.086434, - 0.0084276, - 0.040133, - 0.10505, - 0.08231, - -0.096757, - -0.055287, - 0.059951, - 0.0046283, - -0.011977, - -0.010309, - -0.032899, - 0.0481, - -0.019826, - 0.019381, - 0.06278, - -0.059415, - 0.023456, - 0.065786, - -0.099823, - 0.041122, - 0.027647, - 0.018184, - -0.0085242, - 0.014869, - -0.037515, - 0.039294, - -0.044477, - 0.054933, - 0.0063921, - 0.03968, - -0.08487, - 0.072796 - ], - "litters": [ - -0.0085809, - 0.013701, - 0.014531, - -0.077616, - -0.015993, - 0.015505, - -0.002121, - -0.08803, - 0.010162, - 0.025611, - 0.036196, - -0.10439, - -0.0069106, - -0.057565, - -0.01733, - 0.059648, - 0.033041, - 0.025004, - 0.050963, - 0.027951, - 0.063368, - -0.093577, - -0.050003, - 0.05773, - 0.040133, - 0.025386, - 0.041576, - 0.00041837, - 0.19028, - -0.054073, - -0.012044, - -0.012314, - 0.014181, - -0.0091942, - 0.030086, - -0.034793, - -0.0164, - -0.089134, - 0.032982, - -0.067448, - -0.020669, - -0.026722, - 0.0026275, - -0.020598, - 0.023015, - -0.025535, - -0.046133, - 0.10543, - -0.0094993, - -0.022586, - 0.071087, - -0.0016278, - 0.045159, - -0.035716, - -0.06945, - -0.032244, - -0.0098564, - 0.083458, - -0.016773, - -0.012128, - 0.028353, - -0.098113, - 0.16922, - -0.035633, - 0.10921, - 0.10351, - 0.05834, - -0.0072825, - 0.0091193, - -0.065554, - 0.0076219, - 0.010406, - 0.090719, - 0.018659, - -0.0036704, - 0.042134, - -0.11517, - -0.025512, - -0.032911, - -0.0012161, - 0.011944, - -0.093728, - -0.020367, - 0.012746, - 0.035911, - -0.018295, - 0.03063, - -0.0013716, - 0.0081913, - -0.020361, - -0.062653, - 0.015881, - -0.063205, - 0.07066, - 0.045207, - 0.049959, - 0.013309, - 0.056596, - 0.016687, - 0.041364, - 0.045157, - -0.0086796, - 0.0064064, - 0.022893, - 0.069567, - -0.042641, - 0.029893, - 0.0031023, - 0.015854, - 0.076021, - 0.013027, - 0.042853, - 0.039877, - 0.0035236, - -0.075981, - 0.0065598, - 0.071693, - 0.020021, - -0.066587, - 0.0092984, - 0.0032442, - 0.10481, - 0.14331, - -0.094371, - 0.048522, - 0.021239, - 0.024489, - -0.045059, - 0.063104, - 0.069183, - -0.000059176, - 0.09443, - 0.048164, - -0.014877, - 0.02123, - -0.034525, - -0.065479, - 0.067843, - 0.03943, - -0.037771, - -0.10394, - -0.036664, - 0.017984, - -0.032373, - 0.070254, - -0.010683, - 0.014293, - 0.028, - -0.098121, - -0.10536, - 0.042153, - 0.10722, - -0.026461, - -0.024674, - 0.019499, - 0.0032203, - -0.018182, - 0.018912, - 0.027554, - 0.010331, - 0.072941, - -0.096157, - 0.033171, - 0.012267, - 0.037081, - -0.041714, - 0.038778, - -0.0029084, - -0.082538, - 0.076531, - 0.01576, - 0.009541, - 0.063203, - -0.015825, - -0.012646, - 0.050579, - 0.03533, - 0.024524, - 0.0097262, - 0.086712, - 0.0015927, - 0.048187, - -0.032704, - -0.07895, - 0.014028, - 0.046295, - 0.063021, - 0.11933, - 0.016363, - -0.035259, - -0.028966, - -0.01586, - -0.034794, - -0.078302, - -0.013666, - 0.014033, - -0.046237, - -0.012474, - 0.044371, - -0.024716, - -0.12592, - 0.023661, - 0.0072317, - -0.022109, - 0.055607, - -0.042753, - -0.076872, - 0.036799, - -0.0095026, - -0.12863, - 0.091376, - -0.027006, - 0.026266, - -0.00041108, - -0.017385, - -0.066732, - -0.036162, - -0.018053, - -0.0087471, - -0.038163, - 0.022034, - 0.083858, - 0.0098231, - 0.065028, - 0.050674, - -0.023435, - 0.038991, - 0.03703, - -0.028817, - 0.0080208, - -0.063634, - -0.048717, - -0.080005, - -0.0093581, - -0.02608, - 0.0055014, - 0.096706, - -0.024472, - -0.040636, - -0.083057, - -0.020433, - 0.011208, - 0.040597, - -0.067983, - -0.022003, - 0.016448, - -0.025204, - -0.04219, - 0.037132, - 0.057475, - -0.013208, - 0.12044, - 0.023237, - 0.04786, - -0.04701, - 0.0090446, - 0.02497, - 0.0118, - 0.09829, - -0.052337, - -0.046801, - -0.031936, - -0.060685, - -0.077997, - 0.095896, - 0.064366, - -0.013966, - 0.032723, - -0.021377, - 0.028925, - -0.055564, - 0.084035, - -0.077896, - -0.01297, - 0.033467, - -0.035596, - -0.013638, - 0.03623, - -0.031261, - 0.0091598, - 0.018775, - 0.059494, - 0.07023, - -0.086598, - -0.026448, - 0.1211, - -0.051225, - 0.027517, - 0.040327, - 0.037457, - 0.0078491, - -0.053859, - -0.080306, - -0.066985, - 0.011886, - -0.024284, - 0.076958, - -0.010634, - 0.021765, - 0.099457 - ], - "grandparents": [ - 0.026836, - -0.023146, - 0.015412, - 0.012542, - -0.015641, - 0.049698, - 0.017018, - -0.052744, - 0.007413, - -0.0072862, - -0.036277, - 0.00030712, - 0.0058213, - -0.0266, - -0.025078, - 0.0018711, - 0.042454, - -0.024703, - 0.0064037, - -0.013518, - -0.0019588, - -0.0083053, - -0.0026218, - 0.018741, - 0.016828, - 0.0084157, - -0.016059, - 0.004051, - 0.047149, - -0.012844, - 0.010387, - -0.061253, - 0.024663, - 0.0099287, - -0.050169, - 0.067619, - -0.045387, - -0.058182, - 0.033098, - -0.015853, - -0.023433, - -0.039705, - 0.019237, - -0.058838, - 0.034577, - 0.030872, - -0.056209, - 0.0018934, - -0.029036, - -0.0092869, - 0.0033221, - 0.014663, - -0.017357, - 0.059438, - -0.01729, - -0.032523, - 0.0175, - -0.035742, - -0.038177, - -0.084473, - -0.01126, - 0.004779, - 0.072343, - 0.013764, - 0.012163, - -0.014693, - 0.0012305, - -0.051828, - -0.03676, - -0.0069982, - 0.0037123, - -0.036344, - 0.085351, - 0.019208, - -0.0076528, - 0.025501, - -0.0022069, - -0.024738, - 0.020765, - 0.00090595, - -0.02898, - 0.025487, - 0.060961, - 0.048238, - -0.031652, - -0.034261, - 0.019922, - 0.016087, - 0.0059467, - -0.011226, - -0.041653, - -0.002795, - -0.067341, - -0.023569, - -0.005044, - 0.083446, - -0.0069405, - 0.048353, - 0.000071895, - -0.032427, - 0.080876, - -0.05116, - -0.018129, - -0.043168, - 0.028405, - -0.059015, - 0.0057421, - -0.016523, - 0.0129, - 0.0094708, - -0.014501, - 0.07422, - 0.016333, - -0.046417, - -0.04309, - -0.010248, - -0.035798, - -0.026683, - 0.0054076, - 0.0052348, - -0.041267, - -0.019016, - 0.021658, - -0.043472, - 0.057347, - -0.031313, - 0.0069003, - -0.037392, - 0.02778, - 0.045698, - -0.0038651, - 0.072158, - -0.0093876, - -0.013412, - -0.0032257, - 0.034577, - -0.0069647, - 0.048634, - -0.026486, - -0.0034497, - 0.033791, - -0.0056134, - -0.00401, - 0.031315, - -0.0041236, - 0.0093459, - 0.010766, - 0.054748, - -0.050742, - -0.030087, - 0.0149, - 0.053837, - -0.018696, - -0.012034, - 0.039127, - -0.011126, - 0.07221, - 0.0187, - 0.073779, - -0.061284, - 0.024771, - 0.056779, - 0.041119, - 0.0032088, - 0.015852, - 0.062106, - 0.023928, - 0.021299, - 0.040422, - -0.045184, - -0.009861, - -0.0097103, - -0.060995, - 0.012697, - -0.0039807, - 0.022893, - 0.050686, - 0.022661, - -0.015432, - -0.049336, - 0.061309, - -0.067881, - -0.013972, - -0.0012897, - 0.0031763, - -0.045287, - -0.036106, - 0.06714, - 0.058091, - -0.047467, - 0.012863, - 0.087397, - -0.069244, - -0.012352, - 0.018022, - 0.027216, - 0.052798, - 0.0004025, - 0.01106, - -0.000095877, - -0.082371, - 0.020653, - 0.0038506, - -0.032036, - 0.0055631, - 0.039206, - -0.02252, - -0.028924, - -0.0078691, - -0.040704, - 0.063827, - 0.0084864, - 0.05736, - 0.014278, - -0.057024, - -0.0001284, - -0.051919, - -0.015454, - -0.01386, - -0.045233, - 0.052044, - 0.010072, - 0.040354, - 0.067201, - 0.059075, - -0.036997, - 0.0090934, - 0.029433, - -0.036506, - -0.054114, - 0.026092, - 0.0055776, - -0.054643, - 0.018777, - 0.017389, - 0.032712, - -0.00084302, - 0.061525, - -0.0054927, - 0.0068774, - 0.038522, - -0.015334, - 0.029227, - -0.051513, - 0.028144, - -0.014808, - -0.010182, - -0.065652, - -0.00075697, - 0.032981, - 0.026781, - -0.012305, - 0.0071203, - 0.0005355, - 0.019429, - -0.029799, - -0.024601, - -0.013813, - 0.0049175, - -0.021264, - 0.0099538, - -0.036423, - 0.008455, - 0.018851, - 0.04718, - -0.011465, - 0.02327, - 0.019334, - 0.073225, - -0.0103, - -0.038857, - 0.048437, - -0.088378, - -0.027926, - 0.039237, - 0.0061915, - 0.0051192, - 0.039937, - 0.0070919, - 0.014189, - 0.0127, - -0.020954, - 0.016243, - -0.014551, - 0.021696, - 0.031454, - -0.030272, - -0.058206, - 0.0073382, - -0.0062348, - 0.025499, - 0.028803, - -0.061631, - 0.013355, - 0.014526, - 0.031024, - 0.059053, - 0.00013871, - 0.016368, - 0.014261 - ], - "commercial": [ - -0.028695, - -0.034755, - 0.012841, - 0.01222, - -0.019668, - -0.005825, - 0.0075101, - -0.076868, - 0.060311, - 0.034659, - -0.023628, - -0.042889, - -0.029056, - -0.044306, - -0.01629, - 0.020313, - 0.071267, - -0.017612, - 0.025484, - 0.059578, - 0.035666, - -0.015682, - 0.059727, - 0.069669, - 0.0068381, - -0.0072271, - -0.032857, - 0.020773, - 0.030266, - 0.012842, - -0.070404, - -0.014923, - 0.00030972, - -0.066104, - 0.053727, - 0.04085, - 0.0062468, - 0.014607, - 0.032429, - 0.05262, - 0.015713, - -0.080862, - -0.0097711, - -0.039243, - -0.0021471, - -0.0057983, - 0.013352, - -0.018127, - -0.01405, - -0.021897, - -0.0027611, - 0.0012653, - 0.030657, - -0.012022, - 0.011542, - -0.0066278, - 0.0020557, - 0.020983, - -0.035629, - -0.020675, - 0.03189, - 0.05051, - 0.10761, - -0.012441, - 0.03422, - 0.0063228, - -0.0036688, - 0.0090697, - 0.0031624, - -0.026519, - 0.052595, - 0.023236, - 0.032529, - 0.0051981, - 0.010278, - -0.033391, - -0.017488, - -0.032701, - 0.022119, - 0.024533, - -0.015302, - -0.0077796, - -0.05896, - 0.030743, - -0.024426, - 0.023369, - -0.023333, - 0.021865, - -0.028014, - -0.020452, - -0.0228, - 0.0066566, - -0.077906, - 0.0088013, - 0.033509, - 0.049725, - 0.02401, - -0.047995, - -0.0057483, - 0.022476, - -0.038272, - 0.025792, - -0.036015, - -0.047947, - 0.022663, - -0.090556, - 0.013439, - 0.0031474, - -0.0045461, - 0.043968, - -0.042734, - 0.065121, - 0.046149, - 0.054877, - -0.0061944, - -0.031181, - -0.0026874, - 0.014809, - -0.040648, - -0.02434, - -0.03605, - -0.018313, - -0.021791, - -0.000040213, - 0.066123, - -0.010607, - 0.013757, - -0.063795, - 0.012603, - 0.042419, - -0.0099948, - 0.027512, - -0.017645, - -0.018399, - -0.019153, - 0.0060495, - 0.01304, - 0.037518, - -0.0089546, - 0.020461, - -0.020009, - 0.046644, - -0.021616, - 0.012471, - -0.0037201, - 0.0021, - 0.019819, - -0.026885, - 0.0066497, - -0.034446, - 0.040925, - 0.13045, - 0.026466, - -0.04922, - 0.044035, - 0.0060464, - -0.020699, - 0.03123, - -0.01644, - 0.028381, - 0.0078669, - -0.018721, - -0.04176, - 0.01857, - -0.0015638, - 0.042977, - 0.044884, - 0.0047868, - 0.029877, - 0.038387, - 0.027078, - 0.053513, - 0.055221, - 0.016135, - -0.052659, - 0.063669, - -0.049628, - 0.041082, - -0.025122, - 0.062843, - 0.0082591, - -0.0448, - -0.00055355, - -0.029837, - -0.013845, - -0.031146, - 0.01543, - 0.06123, - -0.028041, - 0.0011493, - -0.047649, - 0.045254, - 0.04892, - 0.0074438, - -0.019103, - 0.0046037, - 0.0099789, - -0.019584, - -0.0019164, - 0.00165, - -0.12333, - 0.065703, - -0.024327, - -0.03325, - 0.0057015, - 0.015508, - -0.0088077, - 0.0050374, - 0.0040993, - 0.015213, - 0.13798, - -0.0012189, - -0.032108, - -0.013427, - 0.011013, - 0.042744, - 0.0054533, - -0.02358, - -0.0058629, - -0.03669, - 0.018586, - -0.012288, - -0.009459, - 0.066994, - -0.013901, - 0.0094596, - 0.04487, - 0.047141, - 0.0020498, - -0.031887, - -0.02739, - -0.043996, - -0.029846, - -0.0058264, - -0.0072335, - 0.0019145, - 0.0090385, - -0.02184, - -0.011586, - -0.033768, - 0.037916, - -0.020929, - 0.0081667, - -0.01995, - -0.11983, - 0.013484, - -0.032827, - -0.0021861, - 0.012905, - -0.017545, - -0.0112, - -0.019818, - -0.0024816, - 0.0015195, - -0.024263, - 0.059343, - 0.0012506, - 0.0060692, - -0.016952, - -0.044022, - 0.038572, - 0.036637, - 0.011254, - -0.013408, - 0.030196, - 0.0041356, - 0.013461, - 0.0067314, - 0.014625, - 0.042345, - 0.028347, - 0.064925, - -0.0655, - -0.029653, - 0.00088196, - -0.078393, - 0.0040275, - 0.030892, - 0.0089625, - -0.0029594, - 0.1254, - 0.023832, - -0.010446, - 0.013685, - 0.0021214, - -0.029401, - -0.029386, - -0.027317, - -0.02065, - -0.016706, - -0.010105, - -0.023199, - -0.0082723, - 0.05869, - -0.022616, - -0.0003141, - -0.031488, - -0.047435, - -0.032689, - -0.009896 - ], - "superstition": [ - -0.031965, - 0.037046, - 0.036829, - -0.047304, - -0.075273, - -0.072556, - 0.0154, - -0.052351, - -0.007409, - -0.00089958, - 0.010676, - 0.001107, - 0.073916, - -0.041838, - 0.0062574, - -0.022841, - 0.026994, - -0.029434, - -0.0093823, - 0.038697, - -0.01866, - -0.0028747, - -0.01198, - 0.043145, - 0.015177, - -0.030373, - 0.012522, - 0.019073, - 0.05235, - 0.0070844, - 0.028072, - 0.0072535, - 0.018427, - -0.050151, - 0.014667, - -0.0021315, - -0.0057506, - -0.043712, - 0.031329, - -0.019143, - 0.024454, - -0.06502, - -0.020988, - 0.021071, - 0.0030826, - 0.0010977, - -0.0093771, - 0.027005, - 0.023832, - -0.057055, - 0.01129, - 0.020852, - 0.0018868, - -0.019206, - -0.00031841, - 0.091895, - 0.072776, - -0.024145, - -0.021246, - 0.018165, - 0.02586, - 0.0087752, - -0.0068355, - -0.036823, - 0.010441, - 0.01583, - -0.044208, - 0.045215, - 0.089474, - -0.015618, - -0.0059287, - 0.011046, - 0.0072941, - 0.0014384, - 0.00061677, - 0.051094, - 0.005097, - -0.0034623, - 0.0007454, - 0.012226, - -0.050519, - -0.00047853, - -0.064375, - 0.035966, - -0.0019489, - -0.036682, - 0.0147, - 0.026186, - -0.034537, - -0.0042472, - -0.042982, - 0.012112, - -0.046492, - -0.036039, - 0.046447, - 0.023872, - 0.041528, - -0.010123, - -0.012931, - 0.020077, - -0.068822, - 0.0094306, - -0.016309, - -0.05559, - -0.022686, - -0.042923, - 0.035669, - 0.00072555, - 0.002035, - -0.010808, - -0.0068278, - 0.061289, - 0.043186, - 0.016303, - 0.010556, - 0.022948, - -0.0059653, - 0.012976, - -0.031925, - 0.014846, - -0.00038114, - 0.026253, - -0.074323, - -0.075047, - 0.044818, - 0.034689, - -0.033164, - -0.009172, - -0.0077175, - 0.08028, - 0.032115, - -0.016894, - 0.018176, - -0.0023455, - 0.0064602, - -0.016454, - 0.00045435, - 0.050694, - 0.020228, - -0.013416, - 0.044246, - -0.043599, - -0.049505, - 0.01641, - -0.0068299, - -0.058017, - -0.0089077, - 0.038329, - -0.010939, - -0.025593, - 0.034577, - 0.017159, - -0.029334, - 0.0084784, - -0.0072631, - 0.045696, - -0.01277, - 0.019929, - -0.027328, - -0.011508, - 0.040436, - 0.0050377, - -0.084764, - -0.0023892, - 0.05662, - -0.011119, - 0.019759, - 0.017139, - 0.014083, - -0.013205, - -0.047906, - -0.029114, - -0.033534, - 0.036891, - 0.076904, - 0.044922, - 0.047148, - 0.029734, - -0.014993, - 0.012595, - -0.0086068, - -0.00554, - -0.011072, - 0.0016398, - -0.024916, - -0.01519, - -0.012289, - 0.083366, - -0.014413, - -0.02325, - 0.0020403, - 0.074173, - -0.049619, - -0.014961, - -0.011854, - 0.028545, - -0.0082504, - 0.035312, - 0.0016609, - 0.010838, - -0.10038, - -0.018839, - 0.024262, - -0.012249, - 0.0086572, - 0.067326, - 0.044897, - -0.028658, - 0.049948, - -0.019115, - 0.058321, - 0.024683, - -0.016882, - -0.0029653, - 0.020701, - 0.0049838, - -0.013561, - 0.018954, - -0.0048055, - -0.078454, - 0.0011786, - 0.020553, - -0.049883, - 0.051446, - 0.024295, - -0.036644, - 0.0045694, - 0.027514, - 0.011047, - -0.023257, - -0.021415, - -0.0054014, - -0.038468, - -0.020496, - 0.025116, - 0.021949, - -0.041799, - 0.022796, - 0.076407, - -0.041499, - 0.046756, - -0.045585, - 0.0055802, - -0.0040514, - -0.010121, - 0.014334, - -0.014237, - -0.038881, - -0.032948, - 0.0058275, - 0.012077, - 0.017044, - -0.0036707, - 0.043839, - 0.028323, - -0.00088961, - 0.023209, - 0.033791, - 0.034664, - 0.011748, - 0.059555, - 0.024577, - -0.0046512, - 0.0019864, - -0.0056039, - -0.014271, - 0.01174, - 0.030162, - 0.014082, - 0.001717, - -0.024431, - 0.042036, - -0.052581, - -0.0073292, - 0.037066, - -0.060424, - 0.018387, - -0.04678, - -0.058885, - -0.066153, - 0.059703, - -0.023592, - -0.013901, - -0.05848, - -0.025836, - 0.029922, - 0.03084, - 0.033939, - -0.032216, - 0.026818, - 0.038381, - -0.0027211, - 0.038571, - 0.028511, - 0.00085047, - 0.015004, - 0.037731, - 0.0070265, - 0.002281, - 0.034552 - ], - "anthropology": [ - -0.018951, - -0.051551, - -0.009416, - 0.011254, - 0.045686, - -0.024534, - 0.01017, - -0.071663, - 0.015216, - -0.024934, - -0.016872, - -0.04548, - -0.0050283, - -0.0027665, - 0.010342, - -0.04569, - 0.059963, - -0.017317, - 0.008811, - 0.045017, - -0.038781, - -0.0045291, - 0.013262, - 0.057953, - 0.031344, - -0.014184, - -0.025203, - 0.029012, - 0.0027339, - 0.057551, - 0.0045394, - 0.032545, - 0.0055384, - -0.047201, - 0.021426, - 0.043373, - 0.056904, - 0.030914, - -0.0068519, - -0.025106, - -0.034063, - -0.069977, - 0.0072722, - -0.0059355, - 0.037063, - -0.0040173, - -0.017103, - -0.04516, - 0.012883, - -0.002049, - -0.010589, - 0.015711, - 0.034642, - 0.015541, - -0.015775, - 0.035437, - -0.011418, - 0.011706, - -0.0076062, - 0.035089, - 0.041273, - -0.016287, - 0.040759, - 0.011919, - 0.024498, - -0.0090128, - -0.0063068, - 0.018506, - -0.010339, - 0.038338, - -0.016186, - -0.0013199, - 0.011404, - -0.017981, - 0.010427, - -0.0081551, - 0.014337, - -0.018298, - 0.093669, - 0.017561, - -0.035637, - 0.021591, - -0.048851, - 0.0046911, - -0.059164, - -0.042499, - -0.0038025, - -0.0057286, - 0.034911, - 0.082142, - 0.020496, - 0.043153, - -0.055187, - 0.013889, - 0.043337, - 0.045207, - -0.030234, - 0.0049692, - 0.0068952, - -0.054354, - 0.0018262, - 0.02484, - -0.030648, - -0.059487, - 0.0058949, - -0.029446, - 0.0079846, - 0.038353, - 0.0079436, - -0.053868, - -0.020596, - 0.078778, - 0.019435, - -0.012808, - -0.008764, - 0.030104, - -0.027842, - -0.0099657, - -0.0063514, - 0.040718, - 0.015373, - -0.030313, - -0.028436, - -0.0162, - 0.023347, - -0.0031657, - -0.075741, - -0.021638, - 0.070499, - 0.11274, - -0.0096897, - 0.0094306, - -0.019174, - 0.032165, - 0.0040811, - 0.025507, - -0.029432, - -0.0016708, - 0.022212, - -0.025212, - -0.021666, - -0.02528, - 0.055935, - -0.0024341, - -0.027368, - -0.046956, - -0.028328, - 0.045935, - -0.012869, - -0.038305, - 0.046099, - 0.039651, - -0.015387, - -0.049946, - -0.0024177, - 0.05365, - 0.015298, - 0.0029044, - 0.049905, - -0.0050381, - 0.02697, - 0.012393, - -0.067112, - -0.0071889, - -0.019731, - -0.0015527, - -0.026224, - 0.024899, - -0.012072, - -0.0046942, - 0.049544, - -0.073142, - -0.018724, - 0.02113, - 0.01833, - 0.037817, - 0.034415, - 0.023578, - -0.018768, - -0.04282, - -0.030405, - 0.035245, - -0.019887, - -0.01898, - 0.00078837, - -0.011938, - -0.0061218, - 0.094429, - -0.013266, - 0.009502, - 0.023229, - 0.069272, - -0.024801, - -0.058062, - -0.016208, - 0.05116, - -0.0097514, - -0.052962, - -0.0053899, - -0.0051984, - -0.080326, - -0.018191, - -0.00098661, - -0.025727, - 0.0038964, - 0.043541, - -0.015534, - -0.055587, - -0.0088577, - 0.011502, - 0.083839, - 0.012765, - -0.020617, - -0.038407, - 0.016692, - 0.074911, - 0.0099908, - -0.058443, - -0.028354, - -0.0035157, - -0.033892, - -0.0075165, - -0.07631, - 0.060505, - -0.014725, - 0.0015109, - -0.0049668, - 0.072662, - -0.011662, - -0.030642, - 0.014652, - -0.017742, - -0.012229, - -0.028404, - 0.0054553, - 0.041443, - 0.013199, - -0.001968, - -0.023557, - 0.0050928, - 0.024263, - 0.0075661, - -0.020729, - 0.034973, - 0.018085, - 0.03043, - -0.039831, - -0.01907, - -0.05312, - 0.029434, - 0.046788, - -0.030011, - -0.0064154, - -0.021264, - 0.00034986, - -0.0021133, - 0.0047197, - 0.031441, - 0.10842, - -0.016583, - 0.016781, - 0.0098866, - -0.016044, - 0.0045871, - 0.037762, - -0.0020901, - 0.038633, - 0.012955, - 0.028698, - 0.040941, - 0.024817, - 0.056076, - -0.061342, - -0.0030793, - -0.022695, - -0.0096115, - -0.0098611, - -0.027359, - -0.041667, - -0.050751, - 0.05865, - 0.016973, - -0.040438, - -0.027633, - -0.02477, - 0.017161, - -0.026045, - -0.0085838, - -0.022733, - 0.00010866, - -0.011744, - 0.0085337, - -0.034475, - -0.033026, - 0.023467, - 0.060259, - -0.004052, - 0.015954, - -0.037958, - -0.022934 - ], - "vacations": [ - 0.055342, - -0.028932, - 0.019402, - -0.047349, - 0.024743, - -0.044617, - 0.0030082, - -0.056026, - 0.051251, - -0.018316, - -0.060877, - -0.071631, - -0.047245, - -0.043685, - -0.035739, - 0.020958, - 0.08395, - -0.0025794, - 0.03594, - 0.055576, - -0.058155, - 0.059605, - -0.068357, - 0.059406, - 0.046059, - 0.0001769, - -0.0071485, - 0.057342, - 0.025579, - -0.010581, - 0.0071451, - -0.086288, - 0.017367, - -0.051598, - 0.011602, - 0.034821, - -0.004138, - 0.031501, - 0.016498, - -0.020961, - -0.0077163, - -0.069504, - -0.0015502, - 0.0067057, - 0.061324, - -0.0072774, - 0.011906, - -0.039725, - -0.035673, - 0.017806, - -0.043227, - -0.032133, - -0.0084606, - 0.063877, - -0.10908, - -0.026323, - -0.034284, - -0.022717, - -0.011607, - -0.017624, - -0.022849, - 0.036041, - 0.10145, - 0.030048, - -0.039984, - -0.0053265, - -0.0074321, - -0.083, - 0.013186, - 0.025506, - 0.02659, - 0.0081631, - 0.051601, - 0.019206, - -0.001837, - -0.010594, - 0.041797, - -0.023548, - -0.059559, - -0.015208, - -0.025152, - -0.021608, - 0.056034, - 0.045945, - -0.06356, - -0.02392, - 0.073887, - -0.00011095, - -0.014852, - -0.071874, - 0.0037511, - -0.0059871, - -0.053727, - 0.034872, - 0.017754, - 0.029304, - -0.072583, - 0.012772, - -0.019365, - -0.014873, - 0.1124, - 0.10551, - -0.012319, - -0.03586, - 0.074049, - -0.043954, - 0.013358, - -0.038288, - -0.024291, - -0.024875, - 0.03691, - 0.0049955, - 0.014462, - 0.11747, - -0.032827, - 0.0031116, - 0.007019, - -0.047793, - -0.033168, - -0.0061891, - -0.0092392, - 0.027568, - 0.009506, - -0.010918, - 0.072963, - -0.0030729, - 0.0079154, - -0.05355, - -0.045283, - 0.068228, - 0.042636, - 0.040538, - -0.0052535, - -0.024985, - 0.04441, - -0.022543, - 0.035148, - -0.0059925, - -0.056051, - 0.021983, - 0.088474, - -0.05863, - 0.052403, - 0.090588, - 0.10433, - 0.033526, - 0.0068459, - -0.08731, - 0.0066748, - -0.025889, - 0.040928, - 0.067063, - -0.047596, - -0.036442, - 0.047972, - 0.050821, - -0.041072, - 0.09216, - 0.059523, - -0.065005, - 0.048581, - 0.047113, - 0.024143, - -0.059665, - 0.044688, - 0.064867, - 0.019073, - -0.031386, - 0.035901, - 0.0055954, - 0.033968, - -0.045689, - 0.020287, - -0.021241, - -0.090727, - 0.034455, - -0.034707, - 0.0020304, - -0.0094019, - 0.049167, - 0.028343, - -0.037242, - -0.014423, - -0.069513, - 0.022587, - -0.014937, - 0.021342, - 0.11017, - -0.0039857, - 0.0087752, - 0.023651, - 0.040409, - -0.017592, - -0.018037, - -0.036821, - 0.00032858, - 0.055347, - -0.044408, - 0.020378, - 0.007868, - -0.12648, - 0.063847, - 0.022115, - -0.07004, - 0.063444, - 0.0081149, - -0.094231, - -0.057091, - 0.0017489, - -0.034814, - 0.08438, - 0.022155, - 0.079659, - 0.0036316, - 0.03791, - -0.0065739, - -0.056728, - -0.047384, - -0.053239, - -0.13702, - -0.016127, - 0.011414, - -0.018494, - 0.065806, - 0.028559, - -0.032592, - -0.027309, - 0.08182, - -0.029371, - 0.021944, - 0.016382, - -0.078586, - -0.059658, - 0.0214, - 0.034634, - -0.015574, - -0.00047518, - 0.014785, - -0.026, - 0.038065, - 0.0088267, - 0.01748, - 0.057509, - -0.085351, - -0.014431, - 0.055955, - 0.044809, - -0.038351, - -0.029266, - 0.030811, - -0.01812, - -0.011799, - -0.0085351, - 0.015329, - -0.036763, - -0.027236, - -0.013295, - -0.0065946, - 0.043431, - 0.0081891, - 0.029548, - -0.0096039, - -0.071269, - -0.024555, - 0.047614, - 0.028938, - -0.04113, - -0.017373, - 0.065165, - -0.0040493, - -0.022234, - 0.071003, - -0.094496, - -0.011292, - -0.031497, - -0.031107, - -0.013893, - 0.027221, - 0.011348, - 0.031619, - 0.025889, - -0.028442, - -0.016853, - -0.032689, - 0.0085511, - 0.050231, - -0.034456, - 0.0096717, - -0.077149, - 0.0065028, - 0.085939, - -0.0073183, - -0.057863, - -0.0048907, - 0.0021642, - 0.065685, - -0.030653, - 0.091854, - -0.040592, - -0.030739 - ], - "public-relations": [ - 0.042067, - -0.0464, - 0.0029828, - 0.034754, - -0.014195, - -0.019211, - -0.027034, - -0.065387, - 0.040836, - 0.022586, - -0.036021, - -0.013805, - -0.02093, - 0.02183, - -0.02539, - 0.049945, - 0.07234, - 0.031008, - 0.026127, - -0.019684, - 0.0090129, - 0.019852, - 0.007974, - 0.026994, - 0.0067914, - -0.023527, - 0.018948, - 0.052366, - -0.0082057, - -0.014329, - -0.033668, - -0.01894, - -0.013861, - -0.090996, - 0.030352, - 0.048168, - -0.019079, - -0.01017, - 0.033723, - -0.027695, - -0.023421, - -0.054373, - -0.013221, - 0.057551, - 0.065747, - 0.017568, - 0.0074654, - -0.00035545, - -0.040884, - -0.03072, - 0.0089797, - -0.032189, - 0.0090436, - 0.033035, - 0.0016914, - 0.040221, - -0.044771, - -0.022857, - 0.010294, - 0.016252, - 0.0069042, - 0.0086118, - 0.033271, - -0.014063, - -0.0068584, - 0.030253, - -0.018336, - 0.004197, - 0.039865, - 0.0065388, - -0.022125, - 0.0060792, - 0.019213, - 0.012011, - -0.0074264, - -0.0030073, - 0.014871, - -0.031503, - -0.0029149, - -0.047817, - -0.025182, - 0.028605, - -0.05323, - 0.04174, - -0.011447, - -0.0077585, - -0.016735, - 0.010356, - 0.037314, - 0.024342, - -0.0089668, - 0.0090342, - -0.052049, - 0.047107, - 0.014683, - 0.055243, - -0.042611, - -0.00049719, - 0.028541, - 0.0047193, - -0.038457, - 0.014977, - -0.036882, - 0.0020489, - 0.0041404, - -0.060748, - -0.015204, - -0.039487, - -0.015252, - -0.0017812, - -0.036902, - 0.023367, - 0.011324, - 0.01858, - 0.0086526, - -0.017229, - 0.0015306, - 0.015615, - -0.043846, - 0.0069285, - 0.0057019, - -0.038519, - 0.017091, - 0.00031414, - 0.12126, - -0.015577, - 0.011949, - -0.051631, - 0.0174, - 0.050202, - -0.024963, - 0.031614, - -0.0085797, - 0.006569, - -0.0070158, - -0.0049445, - 0.0025036, - 0.036294, - -0.018805, - -0.0025305, - -0.0026721, - -0.022315, - -0.023139, - 0.012824, - -0.064215, - -0.0080289, - 0.0012491, - -0.0016898, - 0.011689, - -0.017545, - 0.041163, - 0.14015, - -0.016432, - -0.046192, - 0.005751, - -0.040555, - 0.018379, - -0.000011714, - 0.014305, - 0.0076537, - 0.017504, - 0.01914, - -0.059761, - 0.014821, - -0.047905, - 0.0065193, - 0.01932, - -0.008415, - -0.033519, - 0.0051624, - 0.030502, - -0.0058889, - 0.001697, - 0.021318, - -0.00079214, - 0.01002, - -0.020778, - 0.021912, - -0.010646, - 0.069387, - -0.031257, - -0.0067352, - 0.038025, - -0.034734, - -0.015105, - -0.058136, - -0.0025669, - 0.050278, - 0.044747, - -0.014703, - -0.040404, - 0.063135, - 0.036208, - -0.040781, - -0.0045718, - 0.033507, - 0.040561, - -0.0032075, - -0.033789, - -0.045034, - -0.096401, - 0.017189, - 0.021624, - -0.029313, - 0.0013954, - 0.0065573, - -0.052177, - 0.023458, - 0.012854, - -0.028505, - 0.082697, - 0.023498, - 0.0056538, - 0.033411, - 0.029929, - 0.011226, - -0.0088296, - -0.027418, - -0.013395, - -0.00016315, - -0.060654, - -0.029037, - -0.0080313, - 0.07235, - 0.040697, - -0.027645, - 0.041014, - 0.02267, - 0.0060712, - 0.025999, - 0.0044729, - -0.029292, - 0.0038771, - -0.0077915, - -0.011539, - -0.028996, - 0.0040636, - -0.057669, - -0.0047563, - -0.0044192, - -0.022416, - -0.0055088, - 0.0054175, - 0.0091074, - -0.059512, - -0.0076226, - -0.0036445, - 0.0055733, - -0.025995, - 0.03813, - 0.003447, - 0.031891, - -0.016557, - -0.011063, - -0.018394, - 0.020422, - -0.0025609, - 0.015449, - 0.031363, - -0.0023824, - 0.024433, - 0.019411, - 0.00018183, - -0.02729, - 0.003429, - 0.029046, - 0.010625, - 0.018775, - -0.022399, - 0.020323, - -0.059849, - 0.039886, - -0.045824, - 0.013261, - 0.045704, - -0.046583, - -0.050032, - 0.014033, - 0.0090088, - -0.010809, - 0.10997, - -0.012431, - -0.0090377, - 0.006956, - -0.01271, - -0.032917, - -0.0076113, - -0.0033269, - -0.0082294, - 0.0078273, - -0.024297, - 0.0086647, - -0.041383, - 0.052446, - 0.01625, - -0.030623, - -0.028006, - 0.0086889, - -0.036191, - 0.022333 - ], - "baseball": [ - -0.0015306, - -0.092046, - 0.015576, - -0.050004, - -0.034377, - -0.056238, - 0.040077, - -0.095102, - 0.027884, - 0.044071, - -0.045834, - -0.033221, - -0.018663, - 0.054082, - 0.050818, - -0.007976, - 0.08671, - 0.026262, - 0.040608, - 0.028387, - 0.035555, - -0.031393, - -0.025956, - 0.060571, - 0.054575, - -0.050974, - 0.015181, - -0.043304, - 0.012054, - 0.027151, - -0.022552, - 0.044294, - 0.053014, - -0.031669, - 0.072048, - -0.011924, - 0.030262, - 0.0089281, - 0.0097707, - -0.020389, - -0.026345, - -0.085638, - -0.017638, - -0.042313, - 0.040032, - -0.0016098, - 0.051279, - 0.040132, - -0.0031948, - 0.03019, - -0.014601, - 0.048231, - 0.084877, - 0.047646, - -0.051238, - -0.0077784, - 0.014695, - -0.013544, - -0.071359, - -0.060402, - 0.0043856, - -0.049, - 0.1043, - -0.028746, - -0.0085141, - -0.088727, - 0.044766, - 0.0062008, - 0.14256, - 0.080068, - -0.021434, - 0.015494, - 0.067245, - 0.01585, - -0.011884, - 0.046531, - -0.042641, - -0.0075494, - -0.039057, - 0.00098866, - 0.011938, - 0.005858, - -0.069142, - 0.029415, - -0.05694, - -0.077666, - 0.034222, - -0.031613, - -0.013266, - 0.070538, - 0.059737, - 0.036011, - -0.082296, - 0.010347, - 0.08842, - 0.079573, - -0.070342, - 0.0073872, - 0.032592, - -0.0095714, - -0.035673, - 0.060028, - -0.087758, - -0.049931, - -0.0040179, - -0.10479, - 0.012058, - 0.02881, - 0.027047, - 0.00082583, - -0.048752, - 0.057559, - 0.030843, - 0.013084, - 0.01915, - 0.014141, - -0.060828, - 0.019654, - -0.034364, - 0.023167, - -0.018921, - -0.011351, - 0.023499, - -0.036909, - 0.03518, - 0.00010304, - -0.065013, - -0.052709, - -0.055416, - 0.086247, - 0.0020795, - 0.017345, - -0.039554, - 0.06661, - 0.01416, - -0.036999, - 0.076259, - 0.007643, - -0.014818, - -0.066456, - 0.003377, - 0.066086, - 0.073499, - 0.014842, - -0.02911, - -0.050334, - -0.011345, - -0.021773, - 0.0081891, - 0.0054949, - 0.030548, - 0.089536, - -0.086597, - -0.041873, - -0.0052348, - -0.022599, - 0.046636, - 0.0067525, - 0.060002, - -0.029679, - -0.0027809, - 0.028911, - -0.054152, - -0.016205, - 0.075702, - -0.08678, - 0.0089638, - -0.0089507, - -0.016237, - -0.043821, - 0.022859, - 0.050133, - -0.039714, - -0.0097369, - 0.1287, - 0.029539, - 0.02606, - 0.0094654, - -0.035958, - -0.014626, - 0.0033494, - -0.021521, - 0.038798, - -0.052035, - 0.0005916, - -0.013045, - -0.02996, - 0.081251, - 0.13863, - -0.041761, - 0.0079464, - 0.050002, - -0.013438, - -0.039922, - -0.046895, - -0.068976, - -0.0011838, - 0.023877, - 0.024705, - 0.0055886, - -0.15832, - 0.043893, - 0.0048946, - -0.050486, - -0.039436, - -0.03192, - 0.026059, - 0.023308, - -0.023129, - -0.035456, - 0.14091, - -0.016996, - -0.0017655, - -0.0093924, - -0.01791, - -0.001723, - -0.049694, - -0.012184, - 0.0026796, - -0.015206, - -0.067393, - -0.014968, - -0.02688, - 0.086742, - -0.039034, - -0.022367, - 0.067042, - 0.066532, - -0.04454, - 0.018189, - -0.018406, - -0.046905, - -0.063732, - 0.015956, - -0.043094, - 0.077518, - -0.034033, - -0.010517, - 0.033123, - 0.010024, - 0.036056, - 0.025519, - 0.06314, - -0.062484, - 0.00090853, - -0.042069, - 0.023666, - 0.02677, - 0.054479, - -0.011633, - 0.061694, - -0.001239, - 0.017017, - 0.037857, - 0.0038504, - 0.0037282, - -0.057136, - 0.014654, - 0.043465, - 0.091007, - -0.023838, - -0.00059895, - 0.032471, - 0.0015987, - 0.05018, - 0.13976, - -0.029647, - 0.010614, - 0.04774, - -0.0066834, - 0.016061, - 0.082061, - -0.10448, - -0.0067992, - -0.035623, - -0.054599, - -0.080255, - -0.041179, - 0.022881, - 0.028284, - 0.077185, - 0.050008, - 0.00056718, - 0.002007, - -0.00039886, - 0.026145, - 0.0018513, - -0.042224, - -0.10539, - 0.028279, - 0.083343, - 0.0088929, - -0.025693, - 0.0097305, - 0.059228, - -0.094507, - -0.0037429, - 0.018624, - 0.069396, - -0.00018635 - ], - "pursuit": [ - -0.027694, - -0.033369, - 0.0095764, - 0.010488, - -0.098715, - 0.014452, - -0.069471, - -0.079062, - 0.0096728, - 0.036151, - 0.0047557, - -0.079304, - -0.018042, - -0.025929, - 0.0085914, - 0.013562, - 0.10102, - -0.058655, - 0.076101, - 0.02973, - 0.020521, - -0.019263, - 0.0097006, - 0.016003, - -0.080044, - 0.04433, - -0.016664, - 0.033704, - -0.074649, - -0.019224, - -0.0015281, - -0.0088846, - -0.032424, - -0.10592, - -0.0036672, - 0.026631, - 0.016666, - 0.027711, - 0.011988, - -0.010611, - -0.0079669, - -0.052037, - 0.023512, - 0.042091, - 0.043374, - 0.0088248, - 0.055614, - -0.06632, - -0.04302, - -0.031281, - 0.013513, - 0.040073, - -0.13877, - -0.032967, - -0.073398, - -0.01929, - -0.034856, - 0.037604, - -0.055909, - 0.041307, - 0.036093, - -0.033371, - 0.10705, - 0.049964, - 0.030557, - -0.037169, - -0.062485, - -0.048854, - 0.0054605, - 0.0090694, - 0.081609, - 0.0035551, - 0.011167, - -0.0064391, - 0.072975, - 0.019994, - -0.012177, - -0.030769, - 0.051768, - 0.0049815, - 0.041212, - 0.011267, - -0.022064, - 0.058502, - 0.034887, - -0.014124, - 0.080096, - -0.010744, - -0.030563, - 0.00013107, - 0.070397, - 0.014562, - -0.094224, - -0.010057, - 0.090243, - 0.019658, - -0.039661, - -0.072856, - -2.182e-7, - 0.0013552, - -0.049184, - -0.036134, - -0.0065996, - 0.0095658, - 0.010466, - -0.029175, - -0.025044, - -0.0034653, - 0.052, - -0.058333, - 0.010514, - -0.0017082, - 0.069024, - 0.052754, - 0.037644, - 0.036736, - -0.020543, - 0.054828, - -0.05221, - -0.046818, - 0.0021922, - -0.014084, - -0.048751, - -0.0030582, - 0.087504, - -0.032118, - 0.02059, - -0.11214, - -0.0061701, - 0.12748, - 0.060136, - -0.0036416, - 0.077421, - 0.062149, - 0.022704, - -0.075148, - 0.023771, - -0.0092506, - 0.017245, - -0.023714, - 0.0056563, - -0.06283, - 0.016997, - -0.02685, - -0.083587, - 0.033381, - 0.0053456, - -0.047329, - -0.0040194, - 0.0010651, - 0.09736, - 0.031528, - -0.032503, - -0.099699, - 0.076091, - 0.044613, - -0.028906, - -0.014159, - -0.022189, - -0.029833, - 0.011527, - -0.021023, - -0.042784, - 0.0048129, - 0.004157, - -0.027723, - -0.058244, - 0.022577, - -0.072656, - 0.0062326, - 0.074236, - 0.021191, - -0.000021945, - 0.019421, - 0.026699, - 0.043696, - -0.00036404, - 0.085998, - -0.045796, - 0.021538, - -0.054687, - -0.016079, - -0.034092, - -0.015432, - -0.0048839, - -0.096861, - 0.028808, - 0.075687, - 0.012028, - 0.064285, - 0.0065321, - 0.025235, - -0.026779, - 0.026225, - 0.041609, - -0.015122, - 0.045874, - 0.038995, - 0.00082816, - 0.043778, - -0.17993, - 0.12612, - 0.00023357, - -0.052571, - 0.019908, - 0.018666, - 0.0084835, - 0.023361, - 0.10287, - -0.039062, - 0.099993, - -0.014364, - -0.00050041, - -0.027046, - 0.045995, - -0.02143, - 0.024088, - -0.069607, - -0.048876, - -0.070924, - -0.05857, - 0.012952, - -0.036416, - 0.13177, - -0.023432, - 0.012731, - 0.014038, - 0.086357, - -0.023965, - -0.033196, - -0.015853, - -0.074983, - -0.087287, - -0.048316, - 0.048366, - 0.021118, - -0.00087493, - -0.035437, - -0.097818, - -0.033533, - 0.026526, - -0.0042531, - 0.030581, - 0.013331, - -0.084256, - 0.063778, - -0.054466, - -0.10355, - 0.033281, - 0.045142, - 0.034587, - -0.027336, - 0.0036393, - -0.051329, - 0.09691, - -0.0078643, - -0.030286, - 0.041771, - 0.074881, - 0.061832, - 0.011927, - 0.028018, - -0.019724, - -0.00027525, - -0.040293, - 0.0065977, - -0.022196, - 0.015397, - -0.0098938, - 0.028897, - 0.043503, - 0.089686, - -0.11801, - -0.092663, - -0.016258, - -0.04305, - 0.06507, - -0.0005683, - 0.026991, - -0.019406, - 0.069348, - -0.019181, - -0.0072659, - -0.05611, - -0.017368, - -0.02599, - -0.045018, - 0.032521, - 0.017511, - 0.028821, - 0.032695, - -0.066132, - -0.018836, - -0.033767, - -0.024964, - 0.023154, - 0.00019774, - 0.033079, - -0.062694, - 0.005239 - ], - "civilians": [ - 0.0080085, - -0.00036156, - 0.019217, - -0.031932, - -0.020182, - -0.0028495, - 0.017646, - -0.06813, - 0.07168, - 0.058631, - -0.02365, - -0.014802, - -0.040811, - 0.035556, - -0.014451, - 0.072737, - 0.03749, - 0.0047666, - 0.048209, - 0.0080203, - 0.038516, - -0.047704, - 0.014328, - 0.016462, - -0.037244, - 0.018329, - 0.010281, - -0.027272, - 0.11629, - 0.027439, - 0.0057134, - -0.049032, - 0.007102, - 0.035498, - 0.034782, - 0.038422, - 0.0050577, - 0.053119, - 0.033363, - -0.0032435, - -0.054373, - -0.07355, - 0.010103, - -0.014584, - 0.025794, - -0.050432, - 0.025476, - -0.020753, - -0.02188, - 0.0024431, - -0.0088688, - 0.0013975, - -0.033644, - -0.038034, - -0.052655, - 0.028558, - -0.012568, - 0.015504, - -0.022798, - -0.0082603, - -0.011435, - -0.01986, - 0.065568, - -0.017246, - 0.024407, - 0.023868, - 0.012934, - -0.082421, - 0.018328, - 0.067609, - -0.00067652, - -0.022817, - 0.16095, - 0.014741, - -0.0013232, - -0.031593, - 0.082186, - -0.011088, - -0.00033013, - -0.0023662, - 0.025206, - 0.022683, - 0.040438, - 0.077127, - -0.022273, - 0.054193, - 0.025964, - -0.00045132, - 0.007645, - 0.011708, - -0.068919, - 0.010677, - -0.083096, - 0.0018866, - 0.022961, - 0.039454, - -0.043734, - -0.023076, - 0.05388, - -0.049358, - 0.030972, - 0.019668, - 0.0018839, - 0.003122, - 0.026071, - -0.04018, - 0.053093, - 0.04422, - -0.037024, - -0.020119, - -0.049059, - 0.12508, - 0.058129, - 0.023536, - -0.017445, - -0.017566, - -0.014014, - 0.043177, - -0.018371, - 0.00625, - -0.062095, - -0.026669, - -0.050637, - -0.093536, - 0.064966, - 0.068894, - 0.067413, - -0.083829, - -0.0042323, - 0.020198, - -0.041235, - 0.14066, - 0.03826, - 0.046129, - 0.0437, - 0.015623, - 0.010856, - 0.053699, - -0.049589, - -0.031387, - -0.094158, - -0.048265, - -0.048289, - -0.0076406, - -0.0061034, - 0.05369, - -0.030169, - 0.011638, - -0.0078321, - -0.0090025, - 0.083867, - 0.088996, - -0.034168, - 0.0068499, - 0.033188, - 0.035647, - -0.027699, - 0.0096889, - -0.015668, - -0.030582, - 0.054657, - -0.039188, - 0.051989, - 0.020448, - -0.059302, - 0.06818, - 0.020814, - 0.021527, - 0.03431, - -0.049771, - -0.025737, - -0.056328, - 0.061141, - 0.023682, - -0.017898, - 0.04292, - 0.011145, - -0.0008587, - -0.0083715, - -0.036245, - 0.033557, - 0.043078, - 0.0041622, - 0.0076853, - -0.0014712, - -0.07674, - 0.03831, - 0.09543, - 0.0086785, - -0.043765, - -0.023801, - 0.074086, - -0.079662, - -0.031577, - 0.020891, - 0.04902, - -0.037345, - -0.0041375, - -0.029142, - 0.015568, - -0.1273, - 0.047986, - -0.032254, - 0.0059538, - -0.019715, - -0.000034751, - -0.0016111, - 0.014767, - 0.029841, - -0.047665, - 0.035346, - -0.055536, - 0.05321, - 0.067781, - -0.032209, - 0.016093, - 0.024223, - 0.063366, - -0.0099006, - 0.0092002, - 0.0077188, - -0.057578, - 0.0078172, - 0.089968, - 0.033146, - 0.031973, - -0.0060461, - 0.027745, - 0.018813, - -0.095821, - -0.00915, - 0.024135, - -0.10469, - -0.041095, - 0.047213, - -0.00035209, - -0.072828, - 0.015006, - 0.018721, - -0.063891, - -0.012769, - 0.021335, - 0.047879, - -0.046, - 0.012973, - 0.022654, - -0.03149, - -0.040599, - -0.028531, - -0.0366, - 0.017559, - 0.075177, - 0.053059, - -0.083238, - -0.0063939, - -0.013056, - 0.095709, - 0.031819, - 0.012601, - -0.022133, - -0.058161, - -0.038876, - -0.013187, - -0.024537, - -0.025922, - 0.047959, - -0.022706, - 0.029649, - -0.0031954, - -0.02561, - -0.057045, - 0.067233, - -0.091453, - -0.024717, - 0.012367, - -0.054574, - 0.0067476, - -0.019248, - 0.040543, - -0.025711, - -0.013208, - 0.019609, - -0.045381, - 0.037253, - 0.021549, - 0.029332, - -0.013006, - -0.04725, - 0.042428, - -0.0051052, - -0.021331, - 0.0084612, - -0.098495, - 0.02095, - 0.023881, - -0.021499, - 0.001725, - -0.0088471, - -0.0054536, - -0.0073669 - ], - "cult": [ - 0.027241, - -0.0062768, - -0.057963, - 0.0092361, - -0.13752, - -0.12943, - -0.083113, - -0.12284, - 0.059439, - -0.011125, - -0.008909, - -0.026772, - 0.084186, - 0.0021461, - -0.13934, - 0.030618, - 0.19951, - -0.070035, - 0.053626, - 0.14356, - -0.074882, - 0.12194, - 0.019146, - 0.074823, - 0.09839, - -0.02285, - 0.050397, - 0.069455, - 0.069065, - 0.042068, - -0.025799, - -0.045253, - -0.055472, - -0.04951, - 0.015096, - -0.000066641, - 0.016096, - -0.024615, - 0.041026, - 0.030261, - 0.0013781, - -0.1417, - 0.043719, - 0.019134, - 0.11269, - 0.030661, - 0.018439, - -0.025642, - -0.080562, - -0.092759, - 0.047394, - 0.036392, - -0.030373, - -0.11683, - 0.02573, - 0.18332, - 0.04562, - 0.0040579, - -0.075273, - 0.066263, - 0.084773, - -0.053667, - 0.14781, - 0.0014676, - 0.031408, - 0.004839, - 0.024304, - -0.028848, - 0.07774, - -0.15389, - 0.087861, - 0.068422, - 0.0088919, - -0.020945, - 0.0024102, - 0.035875, - 0.03982, - 0.0074421, - 0.17881, - 0.091289, - -0.013167, - 0.066951, - -0.026364, - 0.098886, - 0.034809, - -0.046337, - 0.032817, - 0.018939, - -0.0057901, - -0.03695, - 0.029275, - 0.067027, - -0.11198, - -0.018221, - 0.036204, - 0.10205, - -0.11158, - -0.036749, - 0.081982, - 0.031093, - -0.094354, - -0.011847, - 0.045535, - -0.04436, - -0.060129, - -0.12732, - 0.16707, - -0.021977, - -0.023444, - 0.0071769, - -0.081257, - 0.088126, - 0.05081, - -0.11744, - 0.0033502, - -0.054223, - -0.016706, - -0.001499, - -0.055556, - 0.06095, - -0.07065, - 0.092357, - -0.0274, - -0.10521, - 0.16269, - -0.014121, - 0.013789, - -0.10024, - -0.02351, - 0.093927, - 0.044734, - -0.049659, - 0.0080445, - -0.042494, - 0.056408, - -0.020481, - -0.13194, - 0.076946, - 0.010149, - -0.094866, - -0.020359, - 0.017642, - -0.043174, - 0.11962, - -0.031912, - 0.055264, - 0.0041889, - 0.019209, - -0.010221, - 0.036999, - 0.04137, - 0.11595, - -0.062458, - -0.10339, - -0.077855, - 0.036059, - -0.072166, - 0.15839, - 0.032731, - 0.06709, - 0.038175, - -0.02312, - -0.14237, - 0.053335, - -0.019413, - 0.028942, - 0.014545, - 0.059302, - -0.021643, - 0.002832, - 0.0071273, - -0.17355, - 0.004089, - 0.021931, - 0.06246, - 0.10164, - 0.078466, - 0.027168, - 0.028909, - -0.011707, - -0.031908, - 0.046266, - 0.016635, - 0.036059, - 0.10743, - -0.068643, - 0.010679, - 0.14245, - 0.0054018, - -0.15224, - 0.0046442, - 0.1138, - -0.021304, - 0.069442, - -0.038798, - 0.035995, - -0.048575, - 0.03729, - -0.019137, - 0.079549, - -0.22357, - 0.12642, - -0.060927, - -0.057072, - 0.072093, - 0.065522, - 0.053609, - -0.053942, - 0.07148, - -0.015471, - 0.19438, - -0.032486, - -0.055109, - 0.050073, - 0.0099712, - 0.013721, - -0.025564, - 0.12374, - 0.044736, - -0.030291, - -0.2061, - -0.066428, - 0.016492, - 0.12508, - -0.0348, - 0.013757, - 0.051406, - 0.12074, - 0.021839, - -0.083828, - -0.026805, - -0.041833, - -0.11829, - -0.03128, - -0.022764, - 0.050821, - 0.062516, - 0.021472, - 0.1081, - -0.037108, - 0.055957, - -0.031681, - 0.0041763, - -0.014797, - -0.055048, - -0.053683, - -0.090002, - 0.023018, - -0.14429, - -0.031713, - 0.081857, - -0.061887, - -0.030791, - 0.069621, - 0.026063, - 0.093058, - -0.010606, - -0.0023103, - -0.051664, - -0.092473, - 0.068884, - 0.092325, - 0.13396, - -0.0081236, - 0.029807, - -0.025092, - -0.03343, - 0.016245, - -0.054752, - 0.02311, - 0.026008, - 0.11158, - -0.12924, - -0.030445, - 0.029824, - -0.081278, - 0.053011, - 0.03756, - -0.20458, - -0.00047275, - 0.17961, - 0.063232, - 0.10424, - 0.068741, - -0.010231, - -0.050901, - 0.0032623, - -0.055821, - -0.094414, - 0.073622, - 0.030141, - -0.055867, - -0.033556, - 0.029633, - 0.0089936, - 0.069185, - 0.076067, - 0.1296, - -0.0091801, - -0.036407 - ], - "path": [ - -0.021126, - -0.070673, - -0.021677, - -0.026209, - -0.083108, - -0.010745, - -0.037264, - -0.13424, - -0.044919, - -0.07438, - -0.033298, - -0.078598, - -0.092697, - 0.051882, - -0.042927, - -0.0041602, - 0.16417, - -0.064462, - 0.13335, - -0.032618, - 0.086986, - 0.043436, - 0.010379, - 0.062532, - -0.093863, - 0.080535, - 0.020003, - 0.088019, - -0.027783, - 0.037621, - -0.030109, - 0.056906, - -0.0099016, - -0.10095, - -0.077152, - -0.028845, - 0.025372, - 0.0065023, - -0.017021, - 0.016585, - 0.022513, - -0.21292, - 0.013925, - 0.0027163, - -0.097152, - -0.061453, - 0.00070363, - -0.054944, - -0.050476, - -0.090528, - 0.073997, - 0.032613, - -0.14733, - -0.069096, - -0.14137, - -0.15071, - -0.00085597, - 0.080181, - -0.067705, - -0.0084498, - 0.0028561, - -0.080605, - 0.18086, - -0.0022038, - 0.088956, - -0.028221, - 0.042554, - -0.11582, - -0.0073927, - 0.033016, - 0.029471, - -0.012277, - -0.072157, - -0.025813, - 0.028534, - -0.0010752, - -0.086516, - -0.098286, - 0.015737, - -0.059484, - -0.028277, - -0.050037, - -0.05367, - 0.099403, - 0.035166, - 0.026146, - 0.057459, - -0.00096175, - 0.0053009, - -0.05394, - 0.19442, - 0.013105, - -0.14038, - 0.0026253, - -0.023582, - 0.074139, - 0.043198, - 0.028939, - 0.029455, - 0.045692, - 0.042277, - -0.037686, - 0.12649, - -0.047055, - -0.058322, - -0.11339, - 0.13591, - -0.099379, - 0.040137, - -0.0068848, - -0.023735, - 0.033863, - 0.1188, - -0.099134, - 0.089087, - 0.0067044, - -0.036119, - 0.11724, - -0.051229, - 0.095443, - 0.069629, - -0.13716, - -0.02112, - 0.039998, - 0.077808, - 0.031433, - -0.09168, - -0.17352, - 0.051274, - 0.082383, - -0.0064199, - -0.097064, - -0.01777, - 0.08327, - -0.073436, - -0.0551, - 0.036934, - 0.06386, - 0.0022236, - -0.079506, - -0.025766, - -0.087689, - -0.019895, - -0.0035058, - -0.03977, - 0.031521, - -0.017741, - 0.0072489, - -0.012734, - -0.044018, - 0.01691, - 0.037218, - -0.020447, - -0.12675, - 0.069508, - 0.094252, - -0.045194, - -0.03793, - -0.0085658, - -0.010559, - -0.0030407, - 0.0037669, - -0.061241, - -0.022615, - 0.0025686, - -0.028084, - -0.012098, - 0.017782, - -0.017169, - 0.0063572, - -0.030559, - 0.058301, - 0.050692, - -0.021723, - 0.038544, - 0.11104, - 0.0087709, - 0.11099, - -0.027354, - 0.015091, - 0.027159, - 0.02148, - -0.035217, - -0.089766, - -0.025974, - -0.10337, - -0.06248, - 0.12941, - -0.020588, - -0.069773, - -0.0087765, - 0.060507, - 0.016678, - 0.12484, - -0.025512, - 0.047386, - -0.0047165, - 0.079697, - 0.016435, - 0.053202, - -0.2673, - 0.12914, - 0.14915, - 0.0052823, - 0.010872, - -0.022586, - 0.21967, - 0.028073, - 0.11439, - -0.040645, - 0.15559, - -0.055192, - 0.11341, - 0.00079344, - 0.0414, - -0.07096, - 0.041364, - -0.071684, - 0.073607, - -0.12353, - -0.044781, - 0.013643, - -0.037338, - 0.13709, - 0.033894, - -0.014211, - -0.015539, - 0.095351, - 0.029125, - -0.0020697, - -0.015687, - -0.11167, - -0.14533, - -0.055046, - 0.068958, - -0.030052, - -0.03533, - -0.0040649, - -0.054265, - 0.15318, - 0.081476, - 0.10426, - 0.12319, - 0.0090457, - -0.092477, - -0.0073803, - 0.024956, - -0.043632, - 0.056233, - 0.10317, - 0.043407, - -0.078585, - 0.069696, - 0.0024489, - 0.012465, - 0.016785, - -0.096158, - 0.041277, - 0.070177, - 0.082957, - 0.032985, - 0.042247, - -0.016798, - -0.041361, - 0.019811, - -0.12278, - 0.041229, - 0.046316, - 0.0074136, - -0.044324, - -0.020375, - 0.13054, - -0.19072, - -0.10219, - 0.12253, - -0.086258, - 0.036948, - -0.045971, - 0.056964, - 0.065665, - 0.13611, - -0.013499, - -0.0082405, - -0.013558, - -0.034156, - -0.032996, - -0.097141, - 0.038469, - 0.077763, - -0.0458, - 0.037859, - -0.0025276, - -0.054367, - -0.023324, - 0.049233, - 0.022299, - 0.092795, - 0.022538, - 0.11965, - 0.073613 - ], - "round-trip": [ - -0.02867, - 0.032472, - 0.006649, - 0.016978, - 0.0159, - 0.030826, - 0.016444, - -0.090008, - 0.03727, - -0.0065047, - 0.047941, - -0.10847, - -0.092695, - -0.031969, - -0.00085421, - -0.042747, - 0.056091, - -0.092737, - 0.013054, - 0.025683, - 0.0072361, - 0.0096787, - -0.039904, - 0.017876, - 0.012288, - 0.074532, - 0.0015208, - 0.030577, - -0.051922, - 0.0043832, - -0.047999, - 0.067572, - -0.040496, - -0.10919, - -0.019233, - 0.06633, - -0.00039445, - 0.046296, - 0.031925, - -0.0058493, - -0.026991, - -0.076338, - -0.045561, - 0.024119, - -0.080598, - -0.0083295, - 0.0058838, - 0.035403, - -0.065484, - 0.066726, - -0.028017, - 0.07046, - -0.01248, - -0.031503, - -0.064784, - -0.038138, - 0.020324, - 0.023504, - -0.071678, - -0.0021477, - 0.021034, - 0.049976, - 0.048671, - -0.015334, - 0.010555, - 0.040944, - 0.066057, - 0.0083128, - -0.047724, - 0.016775, - 0.00027347, - 0.067202, - -0.0031154, - -0.0095967, - -0.023028, - 0.022112, - -0.0094906, - -0.011539, - -0.055523, - -0.024992, - -0.046205, - -0.093265, - -0.0038308, - -0.026427, - -0.019783, - -0.069007, - -0.003596, - -0.0012369, - 0.036903, - -0.070192, - 0.030138, - 0.076804, - -0.069489, - 0.00094783, - -0.061699, - 0.021099, - -0.02149, - 0.043038, - -0.05118, - -0.011313, - 0.019724, - 0.044114, - -0.017137, - -0.0095064, - 0.024391, - -0.02295, - -0.0063325, - -0.02042, - -0.0095828, - -0.055956, - 0.086293, - -0.024888, - 0.012136, - 0.014906, - 0.0231, - 0.0001744, - -0.00054795, - -0.0059844, - -0.02437, - 0.02041, - 0.093657, - -0.0062115, - 0.017714, - 0.014507, - 0.039231, - -0.097915, - 0.017786, - -0.063275, - 0.038886, - 0.030944, - 0.031154, - 0.014755, - -0.047081, - -0.03606, - 0.0046878, - -0.030827, - 0.056493, - -0.0087383, - 0.02066, - -0.059854, - 0.013182, - -0.0057157, - -0.010316, - 0.016068, - -0.046637, - 0.01071, - -0.070452, - -0.059348, - -0.078116, - -0.022753, - 0.0051474, - 0.082184, - -0.08581, - 0.0024174, - 0.049104, - 0.018655, - -0.029613, - -0.023531, - -0.06842, - -0.06252, - 0.02377, - 0.043626, - 0.018926, - -0.085856, - -0.0065742, - 0.061301, - 0.064234, - -0.0060837, - 0.051729, - 0.035857, - 0.052248, - -0.048702, - -0.060396, - 0.036587, - 0.030141, - 0.0077217, - -0.034482, - -0.0023159, - -0.063519, - 0.042222, - 0.048217, - 0.017768, - 0.015452, - -0.019825, - 0.0016173, - -0.039256, - -0.085142, - 0.13374, - 0.036276, - 0.02582, - 0.085913, - -0.028023, - 0.034039, - -0.055431, - -0.028457, - 0.0095105, - 0.017911, - 0.0092225, - 0.040198, - -0.034607, - -0.12094, - 0.056306, - 0.072737, - -0.052041, - 0.080849, - -0.028311, - -0.094805, - -0.028416, - 0.07876, - -0.0070721, - 0.088648, - -0.067132, - 0.010623, - -0.076203, - 0.049115, - 0.0030356, - -0.036902, - -0.03194, - 0.027685, - -0.011168, - -0.006035, - 0.047466, - -0.012682, - 0.077936, - 0.00098702, - 0.031478, - -0.0041343, - 0.075749, - -0.00030123, - -0.024494, - -0.022529, - -0.059704, - 0.018912, - -0.009885, - 0.05155, - -0.040284, - 0.0077189, - 0.02892, - 0.0036548, - 0.090577, - 0.032307, - 0.022912, - 0.07973, - -0.095061, - -0.11634, - 0.067084, - 0.093662, - -0.035052, - 0.0094481, - 0.04461, - 0.051905, - 0.038875, - -0.017009, - -0.0044395, - 0.018499, - 0.039418, - 0.023492, - 0.01615, - 0.0011877, - 0.081362, - 0.020845, - 0.053345, - -0.036465, - -0.11567, - 0.020339, - 0.025499, - -0.0071709, - -0.024763, - -0.019455, - 0.064557, - 0.0049435, - 0.07045, - -0.084998, - -0.026595, - -0.093438, - -0.056267, - -0.0025013, - -0.031686, - 0.04725, - -0.048867, - 0.095418, - -0.02058, - -0.08363, - -0.035363, - -0.040934, - -0.025575, - -0.077942, - 0.087746, - -0.057116, - -0.070186, - -0.011913, - 0.044516, - -0.034271, - -0.076611, - 0.096281, - 0.054142, - -0.014789, - -0.051187, - -0.020613, - -0.0050099 - ], - "legend": [ - -0.036073, - -0.051324, - 0.025422, - 0.039193, - -0.060246, - -0.073507, - -0.057611, - -0.10919, - -0.026948, - 0.00055321, - -0.021009, - -0.012599, - 0.031004, - -0.0013032, - 0.012294, - 0.034876, - 0.1162, - -0.11444, - 0.018796, - 0.031984, - 0.049418, - 0.076241, - -0.024666, - 0.086216, - 0.070522, - -0.091735, - -0.014119, - 0.03182, - 0.054349, - 0.0037069, - -0.046496, - 0.018882, - 0.019202, - -0.050048, - 0.024598, - -0.016543, - -0.053421, - -0.020076, - -0.043831, - 0.063986, - 0.098879, - -0.12223, - 0.020854, - 0.049732, - -0.0018641, - 0.065643, - 0.062089, - 0.019388, - 0.0065336, - 0.016244, - -0.014604, - 0.083735, - -0.006517, - -0.024512, - 0.019912, - 0.13444, - -0.006885, - 0.0029248, - -0.07765, - -0.060683, - -0.055328, - -0.056412, - 0.10527, - -0.013486, - 0.11225, - -0.021172, - -0.051108, - 0.10122, - 0.058662, - -0.018171, - -0.015487, - -0.05235, - -0.028045, - 0.030508, - 0.043194, - 0.084431, - -0.020682, - -0.014522, - -0.039785, - -0.073551, - -0.025971, - 0.040602, - -0.050835, - 0.10227, - -0.018993, - -0.039897, - -0.020796, - 0.0092413, - 0.011145, - -0.061879, - -0.039081, - 0.014514, - -0.093236, - -0.085629, - 0.048511, - 0.051892, - 0.0085807, - -0.0011497, - -0.0092345, - 0.036893, - 0.018277, - -0.053421, - 0.073841, - 0.012465, - -0.083406, - -0.10047, - -0.015211, - -0.0016516, - -0.031843, - 0.04974, - 0.01433, - 0.035021, - 0.051922, - -0.048378, - -0.046314, - -0.0048693, - 0.0086709, - 0.073764, - -0.040711, - 0.055438, - 0.029678, - 0.007994, - -0.10269, - -0.021294, - 0.019786, - 0.063319, - 0.033004, - -0.0079075, - -0.037088, - 0.17765, - 0.0060883, - 0.015285, - -0.06107, - -0.031035, - -0.02731, - -0.0072641, - 0.040332, - 0.088453, - 0.067637, - -0.062899, - -0.030378, - -0.027796, - 0.022502, - 0.077257, - -0.080771, - -0.020279, - 0.0044208, - 0.029759, - -0.10703, - -0.051089, - 0.027301, - 0.030548, - 0.023582, - -0.049329, - -0.057259, - 0.036693, - 0.059523, - 0.070273, - -0.0040118, - -0.0067659, - 0.029734, - 0.010285, - -0.085346, - 0.024943, - 0.038917, - -0.093499, - 0.0045871, - -0.0017922, - -0.0053495, - 0.013314, - -0.074088, - -0.050061, - -0.031727, - -0.0089858, - 0.062974, - 0.07487, - 0.024183, - -0.0068683, - 0.02809, - 0.022889, - -0.080613, - 0.04058, - 0.030034, - -0.055794, - -0.044937, - 0.018799, - -0.080325, - 0.064167, - 0.11037, - 0.028601, - 0.061793, - 0.16134, - -0.10202, - 0.064401, - -0.0031201, - 0.021053, - -0.0094188, - -0.01151, - 0.001825, - 0.056175, - -0.19452, - 0.052599, - -0.070132, - -0.038657, - -0.0030398, - 0.035048, - 0.043572, - 0.042828, - -0.0052151, - -0.0012848, - 0.13097, - -0.0021909, - -0.063345, - -0.0014177, - -0.028365, - -0.039903, - -0.012515, - 0.011201, - -0.011245, - 0.089713, - 0.041665, - -0.058433, - 0.064482, - 0.1173, - 0.084811, - -0.022089, - 0.062924, - 0.058249, - -0.042352, - -0.032506, - -0.05181, - -0.11538, - -0.017163, - -0.0078569, - -0.021925, - 0.013812, - -0.068067, - 0.038607, - 0.038414, - 0.0059912, - 0.11506, - -0.00013106, - -0.054744, - -0.065479, - -0.042761, - -0.0028081, - -0.016886, - 0.0025501, - -0.079288, - -0.059144, - 0.093732, - 0.0016517, - -0.0015913, - 0.030942, - 0.0020718, - 0.055714, - -0.012428, - -0.014503, - 0.097075, - 0.066638, - 0.075652, - 0.0076504, - 0.042963, - 0.006311, - 0.019546, - 0.0046556, - 0.038576, - 0.0099874, - 0.019383, - -0.076, - -0.043231, - 0.082058, - -0.1194, - -0.037201, - 0.1054, - -0.058722, - -0.061064, - -0.045348, - -0.046691, - 0.02405, - 0.062335, - -0.045259, - -0.003992, - -0.0056099, - -0.00095227, - -0.016474, - 0.051211, - -0.0030048, - -0.029072, - -0.048895, - 0.04049, - -0.026432, - 0.01037, - -0.034336, - 0.0037248, - 0.0079884, - 0.10204, - 0.059533, - 0.053634, - 0.0041073 - ], - "tactical": [ - 0.060496, - -0.048977, - -0.084903, - -0.000047012, - -0.051792, - -0.031169, - -0.025741, - -0.070608, - -0.0035004, - 0.076947, - -0.014348, - -0.027687, - -0.0020834, - 0.029569, - -0.011631, - -0.016954, - 0.040408, - 0.0080278, - 0.040156, - 0.010236, - -0.00059195, - -0.0065987, - 0.047634, - 0.071306, - -0.077675, - 0.024774, - 0.026244, - -0.058473, - 0.013349, - -0.002845, - 0.0066357, - -0.0088984, - -0.067194, - -0.15614, - 0.051962, - 0.024244, - 0.008116, - 0.019665, - 0.040966, - -0.029581, - 0.00031041, - -0.1333, - 0.026211, - 0.0054541, - 0.033935, - -0.038786, - 0.046676, - -0.072834, - -0.024841, - 0.020597, - 0.014599, - -0.030729, - -0.0043792, - 0.012074, - 0.011354, - 0.026693, - 0.074327, - -0.01723, - -0.031593, - 0.023133, - -0.041026, - -0.035146, - 0.12762, - -0.049061, - 0.040308, - 0.0019252, - -0.029295, - 0.014497, - 0.017129, - 0.0069534, - 0.012457, - -0.016401, - -0.017768, - 0.039571, - 0.002707, - -0.01513, - 0.0034809, - -0.098943, - -0.033436, - 0.0075081, - -0.056555, - -0.005855, - -0.018982, - 0.065973, - -0.032898, - -0.02402, - 0.015329, - 0.014094, - 0.024661, - -0.0077375, - 0.035887, - -0.041705, - -0.10483, - 0.013094, - 0.024613, - 0.043198, - -0.12858, - -0.059668, - -0.053806, - -0.0051331, - 0.0036703, - 0.0065143, - 0.015148, - 0.02865, - -0.016544, - -0.081181, - -0.016559, - 0.051517, - -0.054941, - 0.039291, - -0.026768, - 0.033396, - 0.033277, - 0.01489, - 0.0051868, - -0.023463, - -0.02893, - 0.020363, - -0.064047, - -0.018854, - 0.028164, - 0.012404, - -0.015384, - -0.044923, - 0.1649, - 0.013978, - 0.0015665, - -0.020844, - 0.0085199, - 0.055851, - -0.0039339, - -0.021198, - 0.048165, - 0.070621, - 0.012513, - -0.038554, - 0.074679, - 0.024429, - -0.027821, - -0.0022533, - -0.030657, - -0.062983, - -0.042265, - 0.035062, - -0.096341, - 0.015607, - 0.025173, - 0.011678, - 0.016827, - 0.029306, - 0.03979, - 0.1623, - -0.0063446, - -0.071246, - 0.0030603, - 0.048049, - -0.049044, - -0.042091, - 0.020942, - 0.059142, - 0.02892, - 0.014652, - -0.064979, - -0.012839, - -0.039588, - 0.042654, - 0.040146, - -0.0098144, - 0.0022786, - -0.019561, - 0.075512, - 0.013232, - -0.014731, - 0.0050021, - -0.012888, - 0.081848, - 0.0085484, - 0.011025, - -0.015338, - 0.00020916, - 0.056164, - 0.062826, - -0.01338, - -0.050784, - 0.04229, - -0.078634, - -0.031996, - 0.10996, - -0.016186, - 0.0081599, - 0.040183, - 0.067251, - 0.082279, - -0.088096, - -0.023178, - 0.020071, - -0.00023494, - 0.061724, - -0.0081233, - 0.064921, - -0.11764, - 0.069643, - -0.001389, - 0.081628, - -0.07951, - -0.066109, - -0.057758, - 0.065403, - -0.0052253, - -0.0076041, - 0.13255, - 0.021054, - 0.021893, - 0.028814, - 0.041671, - 0.028612, - 0.033279, - -0.013889, - -0.1004, - -0.022125, - -0.041027, - -0.0038437, - 0.035304, - 0.077771, - 0.048394, - -0.043815, - 0.026159, - 0.084901, - -0.039738, - 0.018164, - -0.0049528, - -0.062528, - -0.049526, - -0.019801, - 0.00058378, - 0.0010042, - -0.0065506, - -0.016488, - -0.039943, - 0.012094, - 0.053577, - 0.061796, - -0.00026598, - 0.076582, - -0.2037, - 0.032612, - -0.061515, - 0.0079781, - 0.055324, - 0.022485, - 0.00015984, - 0.026465, - 0.052247, - 0.050103, - -0.0079262, - -0.010674, - 0.082965, - 0.057729, - 0.046728, - 0.034625, - 0.00050171, - 0.08793, - -0.064612, - 0.0071774, - 0.010297, - -0.013794, - -0.030125, - -0.014315, - -0.020199, - -0.015275, - -0.037675, - 0.060779, - -0.075107, - -0.042302, - 0.064901, - -0.12091, - 0.035011, - 0.07068, - 0.013331, - -0.051121, - 0.17192, - -0.020998, - -0.025606, - -0.014106, - -0.000017867, - -0.07261, - -0.01282, - 0.038744, - 0.010246, - -0.037166, - 0.0015612, - -0.012098, - -0.0099615, - 0.010098, - 0.037413, - -0.046121, - -0.018142, - 0.024301, - -0.001782, - -0.03702 - ], - "substance": [ - -0.0067228, - 0.040082, - 0.0023023, - 0.047983, - 0.0049489, - -0.017397, - -0.039522, - -0.074476, - 0.00030268, - 0.01105, - -0.029042, - -0.04232, - 0.047834, - 0.028148, - 0.022107, - -0.032293, - 0.056502, - 0.063555, - 0.021988, - 0.048751, - 0.016392, - 0.01911, - 0.10431, - 0.054099, - -0.031099, - -0.040965, - -0.028373, - 0.040796, - 0.042102, - -0.031971, - -0.0051666, - 0.031875, - -0.027524, - -0.049662, - -0.011996, - -0.022949, - -0.025324, - -0.039251, - -0.051998, - 0.053792, - 0.022272, - -0.088968, - 0.0085666, - 0.016279, - 0.014738, - -0.051191, - -0.024367, - 0.0096367, - 0.010211, - 0.019558, - 0.013565, - 0.0029055, - 0.045919, - -0.0025958, - -0.043693, - 0.024761, - -0.019713, - -0.019956, - -0.029201, - 0.023046, - 0.021541, - -0.019942, - 0.11207, - -0.022334, - -0.013148, - 0.012116, - 0.02214, - 0.044459, - 0.019466, - -0.0063947, - -0.010122, - 0.00058386, - 0.0087814, - -0.026006, - 0.016184, - -0.00075866, - -0.041556, - -0.015651, - 0.0055522, - -0.038597, - -0.035946, - -0.0046533, - 0.0027081, - 0.039714, - -0.035607, - -0.0027816, - 0.0033856, - -0.014258, - 0.061943, - 0.0090986, - 0.024511, - 0.010931, - -0.063589, - -0.025546, - 0.0026841, - 0.0017419, - 0.025956, - -0.017867, - 0.048402, - 0.025712, - 0.00020175, - 0.0022026, - 0.038613, - 0.041608, - 0.010924, - -0.053428, - -0.031069, - 0.0035979, - 0.035865, - 0.013537, - 0.018723, - 0.014213, - 0.0484, - -0.048319, - -0.030016, - -0.023223, - 0.021265, - -0.050568, - -0.062888, - 0.025134, - -0.0086085, - -0.000079859, - -0.0096659, - -0.071264, - 0.04953, - -0.021885, - -0.023265, - -0.078914, - 0.049054, - 0.068687, - -0.00082244, - -0.046778, - -0.022102, - -0.0082954, - -0.010751, - -0.00023546, - -0.018168, - 0.028622, - 0.032309, - -0.0083788, - 0.057263, - -0.002931, - 0.001628, - -0.030201, - 0.0086979, - 0.076724, - 0.07842, - 0.021645, - -0.0057179, - 0.017537, - 0.0037501, - 0.01969, - 0.00432, - -0.067676, - -0.038259, - 0.0011172, - -0.070551, - -0.042283, - 0.0029302, - 0.016556, - 0.033269, - 0.048781, - -0.081037, - 0.023631, - 0.059511, - 0.019234, - 0.049502, - 0.0010292, - -0.0012787, - -0.054816, - -0.027667, - 0.0078403, - -0.004853, - 0.0092473, - 0.031335, - 0.061639, - -0.024175, - 0.054371, - -0.037373, - 0.0087157, - -0.024865, - 0.0051956, - 0.014721, - 0.026221, - 0.034408, - -0.065416, - 0.047784, - 0.076659, - 0.049381, - -0.005667, - 0.02824, - 0.03698, - -0.020912, - -0.024886, - -0.013356, - -0.0111, - -0.0071918, - 0.065124, - -0.018713, - -0.0013689, - -0.12201, - 0.048885, - -0.034621, - -0.010287, - 0.0088671, - -0.021597, - 0.047105, - 0.011239, - -0.0021746, - -0.020903, - 0.055961, - 0.01142, - -0.035424, - 0.0054391, - 0.057842, - 0.02831, - 0.0079144, - 0.059561, - -0.022247, - -0.016061, - -0.035521, - -0.018205, - -0.051152, - 0.082664, - 0.045803, - 0.01497, - 0.027717, - 0.066432, - 0.0036869, - -0.00052539, - -0.026841, - -0.044964, - -0.10506, - 0.013199, - -0.0097035, - -0.0090381, - -0.052291, - -0.06445, - 0.0040707, - -0.098489, - 0.048877, - 0.032412, - -0.010379, - -0.0049282, - -0.082389, - 0.0036627, - -0.01963, - 0.014461, - 0.031494, - -0.005516, - -0.01075, - -0.023043, - 0.025842, - -0.037356, - -0.012023, - 0.011695, - -0.021323, - 0.05255, - 0.025336, - -0.028284, - 0.0052582, - -0.011782, - 0.001973, - -0.025431, - 0.02193, - -0.006973, - -0.049371, - 0.027166, - -0.042803, - 0.014375, - -0.020872, - 0.084323, - -0.095991, - -0.038128, - 0.055871, - -0.064705, - 0.014731, - 0.049883, - -0.0043698, - 0.0026339, - 0.056055, - -0.032614, - -0.028667, - -0.049546, - -0.041669, - 0.042963, - 0.016699, - 0.093333, - 0.0016875, - 0.011728, - 0.042956, - -0.03887, - -0.034138, - -0.017851, - -0.015968, - 0.0045478, - 0.0070906, - -0.029002, - -0.0013927, - -0.0072598 - ], - "naval": [ - -0.030787, - -0.12479, - 0.13631, - -0.025239, - -0.036837, - -0.00286, - 0.0030928, - -0.12691, - 0.1337, - 0.18755, - 0.020502, - -0.038665, - 0.0039224, - 0.031433, - -0.007427, - 0.05392, - 0.15418, - -0.1066, - 0.077325, - 0.05606, - -0.015951, - -0.036591, - 0.0317, - 0.091971, - -0.039771, - -0.069766, - -0.016223, - -0.11542, - -0.049269, - -0.09337, - 0.034957, - -0.032891, - 0.048588, - -0.060182, - 0.11965, - 0.11109, - -0.030623, - 0.060125, - 0.10822, - -0.014204, - 0.01231, - -0.19475, - 0.067199, - 0.015919, - -0.025302, - 0.039284, - -0.043838, - -0.085948, - -0.06981, - 0.012662, - -0.013292, - -0.064449, - 0.028625, - 0.043556, - 0.019311, - -0.024051, - 0.019075, - -0.001869, - -0.040664, - 0.015297, - -0.04376, - 0.023964, - 0.15928, - -0.081223, - 0.054506, - -0.028888, - -0.11868, - -0.012237, - 0.0063751, - 0.011121, - 0.030836, - -0.031143, - 0.071684, - 0.01509, - 0.108, - -0.14012, - -0.030581, - -0.033592, - 0.043171, - -0.0062832, - -0.065497, - -0.0016836, - -0.10986, - 0.0083822, - -0.16345, - 0.11839, - 0.033792, - 0.0095694, - -0.050073, - -0.044511, - 0.023786, - 0.05753, - -0.12113, - 0.0025038, - 0.056533, - 0.11064, - -0.1342, - -0.039645, - -0.01035, - 0.028931, - 0.10999, - -0.020086, - 0.058368, - -0.031079, - 0.04339, - -0.13284, - 0.0051536, - 0.077789, - -0.044075, - 0.07394, - -0.051877, - 0.096892, - 0.041782, - 0.093869, - 0.023691, - 0.035261, - 0.037579, - 0.028713, - -0.012046, - -0.038929, - 0.0065848, - -0.026719, - -0.093676, - -0.013311, - 0.14799, - 0.1149, - 0.016949, - -0.072123, - -0.072083, - 0.09847, - -0.030949, - 0.02773, - -0.0059573, - -0.0026489, - 0.091413, - -0.058385, - -0.020495, - -0.00043311, - -0.058308, - 0.047918, - -0.040314, - 0.025778, - -0.040227, - 0.023302, - -0.061726, - 0.011157, - 0.0054334, - 0.033639, - 0.063906, - -0.034113, - 0.058418, - 0.25414, - 0.0025818, - -0.076214, - 0.013298, - 0.027816, - -0.003274, - -0.0006112, - 0.019429, - 0.077322, - 0.034762, - -0.017444, - -0.13065, - -0.066652, - -0.0010748, - 0.03176, - 0.036661, - -0.09449, - -0.040079, - -0.034867, - 0.10298, - 0.0066828, - -0.067544, - -0.14483, - 0.031067, - 0.0795, - -0.09253, - 0.0027593, - -0.051889, - 0.047179, - -0.0037062, - -0.015059, - 0.04927, - -0.046108, - 0.12766, - -0.051266, - -0.097187, - 0.18736, - 0.019238, - 0.018159, - -0.026074, - 0.063337, - 0.11869, - -0.10378, - -0.07629, - -0.0041384, - -0.026394, - 0.12265, - -0.024585, - 0.052977, - -0.1986, - -0.0070764, - -0.11136, - 0.12346, - 0.023416, - 0.041867, - -0.0062205, - -0.018376, - -0.025599, - 0.031545, - 0.24653, - 0.011977, - -0.032347, - 0.090551, - -0.082733, - 0.069199, - -0.064374, - 0.03237, - 0.00086566, - -0.027183, - 0.044003, - -0.025004, - 0.011421, - 0.12341, - -0.024243, - 0.082977, - 0.018832, - 0.14, - -0.046079, - -0.045918, - -0.056403, - -0.045693, - -0.027182, - 0.0022567, - -0.024228, - -0.013567, - -0.056105, - 0.05923, - 0.03554, - -0.067697, - 0.021298, - -0.0038179, - 0.013996, - -0.072894, - -0.13398, - 0.042737, - -0.10123, - -0.034324, - 0.059608, - 0.027602, - 0.013411, - -0.025572, - -0.021547, - -0.039199, - 0.016062, - -0.024403, - 0.10255, - 0.044906, - 0.08268, - -0.011205, - -0.055748, - 0.01209, - 0.024244, - 0.0023731, - 0.024934, - -0.03248, - 0.013927, - 0.021669, - 0.057291, - -0.069903, - -0.011786, - 0.08219, - -0.10053, - -0.0066689, - -0.042831, - -0.032805, - 0.0053832, - -0.0060062, - 0.077241, - -0.05383, - 0.26714, - -0.0058464, - 0.020898, - -0.054074, - -0.011471, - -0.016376, - -0.024824, - -0.051367, - 0.031849, - 0.012462, - -0.033838, - 0.085246, - -0.026414, - 0.014422, - 0.0034032, - -0.068178, - -0.059559, - -0.0097244, - -0.080553, - -0.017708 - ], - "PGP": [ - -0.027389, - -0.0032693, - -0.21744, - -0.099136, - -0.17751, - 0.15454, - 0.059205, - -0.081964, - -0.16773, - -0.029385, - -0.10279, - -0.042322, - -0.11537, - -0.059551, - -0.23374, - 0.12106, - 0.059066, - -0.016162, - 0.067752, - -0.087039, - -0.075675, - 0.0784, - 0.046527, - -0.01077, - -0.071075, - -0.0050945, - 0.15223, - 0.077564, - 0.04931, - 0.10255, - 0.027286, - -0.11651, - -0.087876, - 0.068637, - 0.043419, - -0.085731, - -0.080245, - -0.12149, - -0.055326, - 0.059116, - 0.023833, - 0.054693, - -0.067325, - -0.067399, - -0.001227, - -0.044572, - -0.13192, - -0.05278, - 0.13442, - 0.0024582, - -0.048252, - -0.19084, - 0.16757, - -0.12921, - -0.0055156, - -0.062246, - 0.044969, - 0.047155, - 0.031567, - -0.050604, - 0.02235, - -0.17446, - 0.0057256, - 0.012952, - -0.14374, - -0.044599, - 0.21203, - -0.031371, - -0.10339, - -0.040823, - -0.0023589, - 0.12647, - -0.065227, - 0.064418, - -0.12262, - -0.033708, - -0.00049355, - -0.038551, - 0.094208, - -0.12264, - 0.044667, - -0.084102, - -0.014126, - -0.045041, - 0.10509, - -0.0037776, - -0.044912, - -0.12628, - -0.11585, - -0.043751, - 0.19367, - -0.06082, - 0.000020256, - 0.029553, - 0.019032, - 0.14559, - 0.094968, - -0.21717, - 0.052011, - 0.1803, - -0.035123, - 0.094622, - 0.12539, - -0.001677, - -0.078608, - -0.11917, - 0.12452, - -0.0043653, - 0.067835, - 0.21188, - -0.040265, - 0.032229, - -0.082189, - 0.082153, - -0.049992, - 0.011491, - 0.1063, - 0.13023, - 0.08274, - 0.12048, - 0.13167, - 0.044818, - -0.13667, - 0.019312, - -0.085077, - 0.044899, - -0.10338, - -0.01645, - -0.077909, - 0.13263, - -0.094841, - -0.03559, - 0.03695, - 0.076892, - -0.096143, - -0.035311, - 0.12145, - -0.017641, - -0.10609, - -0.072815, - -0.066517, - 0.11278, - 0.048156, - -0.013056, - -0.13832, - -0.087976, - -0.18843, - -0.086327, - 0.0033745, - -0.0042864, - 0.033955, - -0.016603, - 0.18566, - -0.10103, - 0.14113, - -0.0060437, - -0.043027, - 0.16294, - 0.099088, - -0.04601, - 0.092779, - -0.028319, - -0.021755, - 0.065672, - -0.011686, - -0.22646, - -0.04053, - 0.050329, - 0.060487, - 0.0015747, - 0.054086, - 0.24297, - 0.14338, - -0.097749, - -0.23966, - 0.092484, - 0.070886, - 0.092136, - -0.0036381, - -0.045846, - 0.0031166, - 0.025415, - 0.14262, - 0.10056, - 0.095748, - -0.04016, - -0.043825, - 0.39782, - 0.064986, - -0.033907, - -0.021249, - -0.0048085, - -0.063687, - -0.031412, - 0.16009, - -0.026543, - 0.024641, - -0.14619, - -0.012293, - -0.040932, - -0.010085, - 0.1486, - -0.0054414, - -0.035631, - -0.15194, - -0.21454, - 0.051541, - 0.045407, - -0.04248, - -0.075507, - 0.18184, - 0.026224, - 0.022655, - 0.010921, - -0.032145, - 0.011661, - -0.18753, - -0.014336, - 0.038995, - 0.028606, - 0.16263, - -0.1825, - -0.12991, - 0.081205, - 0.053476, - 0.070572, - 0.070412, - -0.10424, - 0.21557, - -0.01831, - 0.030772, - -0.065025, - -0.0064069, - 0.056462, - 0.019084, - -0.18864, - -0.11239, - -0.07438, - 0.01313, - -0.025291, - 0.049941, - -0.1752, - 0.051751, - -0.047598, - 0.11633, - -0.060279, - -0.056277, - 0.074557, - -0.12215, - 0.05676, - -0.038248, - -0.012287, - -0.14246, - 0.0051528, - 0.017607, - 0.019592, - 0.11161, - -0.089959, - -0.007974, - -0.20401, - 0.1008, - 0.087071, - -0.086358, - -0.02775, - 0.0075547, - -0.12612, - 0.045978, - 0.010543, - 0.070781, - 0.036592, - -0.003029, - 0.020252, - 0.017723, - 0.032881, - -0.076739, - 0.041779, - 0.060287, - -0.15405, - 0.1473, - 0.052495, - 0.07949, - -0.055184, - -0.064926, - 0.17083, - -0.044017, - -0.12834, - -0.091916, - 0.027814, - -0.14819, - 0.077972, - -0.032418, - 0.043719, - 0.013151, - -0.067936, - 0.081329, - 0.029037, - -0.036796, - -0.1967, - -0.1617, - -0.12695 - ], - "ventures": [ - -0.046072, - -0.034938, - 0.035551, - -0.056927, - -0.035703, - -0.009564, - 0.020371, - -0.07478, - 0.0035733, - 0.067487, - 0.020101, - -0.12028, - -0.019803, - -0.044521, - -0.046825, - 0.037608, - 0.082943, - -0.013542, - 0.059476, - -0.010444, - 0.0032242, - 0.030403, - 0.0051608, - 0.073124, - -0.0014093, - 0.040741, - -0.0099709, - -0.0079691, - 0.022819, - -0.038586, - -0.049588, - -0.070507, - -0.038204, - -0.049293, - 0.045972, - 0.041234, - 0.026353, - -0.039034, - 0.028049, - 0.036625, - -0.010298, - -0.11828, - -0.050044, - 0.016065, - -0.015823, - -0.020775, - 0.04991, - -0.0072268, - 0.014484, - -0.06013, - 0.046537, - 0.052337, - -0.032911, - -0.022222, - -0.0984, - 0.022379, - -0.087899, - 0.038754, - -0.019314, - 0.074767, - 0.0019311, - 0.056317, - 0.17596, - -0.038119, - 0.11125, - -0.072233, - 0.026457, - -0.066419, - -0.027759, - -0.046873, - -0.019766, - -0.017632, - 0.0089947, - 0.061634, - 0.099972, - -0.012834, - 0.010181, - -0.00025105, - 0.067383, - 0.030377, - 0.0058987, - -0.012307, - -0.10509, - 0.053616, - -0.022897, - -0.05263, - 0.013542, - 0.024484, - 0.0023181, - -0.066426, - 0.041838, - 0.023272, - -0.063282, - 0.047817, - 0.0027117, - 0.021215, - 0.023716, - -0.01179, - -0.089097, - -0.047589, - -0.030013, - -0.023057, - -0.022725, - -0.042863, - 0.039121, - -0.087102, - -0.043376, - 0.049404, - -0.017098, - 0.041728, - -0.037369, - 0.0026004, - 0.083142, - 0.050542, - 0.028535, - -0.040811, - -0.019424, - -0.0042362, - -0.053068, - 0.075169, - -0.045744, - -0.038254, - -0.021085, - 0.021756, - 0.10907, - 0.0036146, - -0.019585, - -0.020187, - 0.022706, - 0.12003, - 0.041647, - 0.099065, - -0.053255, - -0.042999, - -0.0087068, - -0.0063887, - 0.078774, - 0.032278, - -0.041633, - 0.046843, - -0.022751, - -0.044053, - 0.0058313, - 0.046929, - 0.035173, - -0.0049097, - 0.059664, - -0.032888, - -0.0058172, - -0.090801, - 0.074247, - 0.07793, - 0.0077854, - -0.12848, - 0.032675, - 0.032702, - 0.010799, - 0.046948, - -0.020585, - -0.0066783, - 0.051002, - -0.010051, - 0.027998, - 0.080661, - 0.0049178, - 0.019185, - 0.0091788, - -0.055648, - -0.014477, - 0.054721, - 0.068401, - 0.036072, - -0.024548, - 0.035131, - -0.057247, - 0.025497, - 0.0020305, - -0.0038238, - -0.054273, - 0.011506, - 0.044913, - -0.037156, - 0.0095855, - -0.038938, - -0.0034684, - -0.020841, - 0.041696, - 0.08206, - 0.0038624, - 0.055026, - -0.057662, - 0.013627, - -0.025409, - 0.041554, - -0.050828, - 0.030015, - -0.014251, - 0.045427, - 0.036704, - -0.0066418, - -0.12612, - 0.086192, - 0.031446, - -0.023502, - 0.020885, - -0.0042097, - -0.01879, - 0.042444, - -0.031666, - -0.04831, - 0.062355, - 0.055385, - 0.014881, - -0.021735, - 0.010983, - 0.012857, - -0.034745, - -0.011731, - -0.04847, - -0.015113, - 0.0028037, - -0.031196, - -0.073218, - 0.089144, - -0.000049099, - -0.010754, - 0.064468, - 0.089427, - -0.043828, - 0.035912, - -0.050708, - -0.0431, - -0.02926, - 0.0062917, - 0.058863, - 0.016353, - 0.014166, - -0.038105, - -0.015614, - 0.00013632, - 0.015031, - 0.0033483, - 0.021179, - -0.0063757, - 0.043691, - 0.0089269, - -0.061309, - -0.041599, - -0.02016, - 0.081638, - -0.0037702, - -0.02226, - 0.0059123, - -0.012894, - -0.020192, - 0.039998, - -0.058303, - 0.013133, - 0.025127, - 0.057843, - 0.046395, - -0.017622, - -0.017152, - -0.061415, - 0.016573, - 0.038371, - 0.012698, - 0.042602, - -0.0075203, - 0.04464, - -0.017774, - 0.086389, - -0.10141, - -0.02098, - 0.0084277, - -0.039915, - 0.0052554, - -0.012136, - -0.067543, - 0.031621, - 0.019831, - -0.0055561, - 0.011579, - -0.044718, - -0.01878, - -0.0083766, - 0.0093273, - -0.03426, - -0.015001, - 0.034586, - 0.019279, - 0.02906, - -0.011186, - 0.015177, - -0.029472, - -0.021796, - -0.011155, - 0.037136, - -0.039442, - 0.00171 - ], - "economics": [ - 0.05172, - -0.074002, - 0.010541, - 0.00032311, - 0.0097101, - -0.046791, - 0.0074079, - -0.079389, - 0.070096, - 0.028551, - 0.029579, - -0.059114, - -0.014707, - -0.062241, - 0.034161, - -0.020636, - 0.10004, - -0.027088, - 0.052406, - 0.039277, - 0.002928, - 0.05215, - 0.056015, - 0.064535, - 0.0025264, - -0.029707, - -0.00039333, - 0.0041542, - 0.046803, - 0.043096, - 0.021833, - 0.031282, - -0.078949, - -0.045573, - 0.01133, - 0.060752, - 0.050265, - 0.011345, - 0.048074, - -0.013434, - -0.04384, - -0.12176, - 0.0058466, - 0.024513, - -0.032571, - 0.006937, - -0.045634, - -0.036254, - -0.011737, - -0.012283, - -0.038977, - 0.0067536, - 0.034794, - 0.017241, - -0.037174, - -0.018043, - -0.0014803, - 0.071727, - -0.014823, - 0.033847, - 0.016334, - 0.010453, - 0.068144, - 0.091221, - 0.045713, - 0.082346, - 0.055222, - 0.02942, - 0.056174, - 0.02567, - 0.023509, - 0.003227, - 0.024636, - -0.068758, - 0.047515, - 0.00073702, - -0.018724, - -0.038747, - 0.0098987, - 0.010753, - -0.022126, - 0.020737, - -0.036346, - 0.048417, - -0.048542, - 0.0075744, - -0.0099847, - -0.027581, - 0.025697, - 0.014474, - 0.08611, - 0.028221, - -0.092625, - 0.02406, - 0.030622, - 0.057555, - -0.024281, - -0.031066, - -0.0059218, - 0.010753, - 0.015061, - -0.033306, - -0.039497, - -0.045448, - 0.0099843, - -0.05004, - 0.0083936, - 0.026089, - 0.058617, - -0.054577, - -0.040691, - 0.11966, - 0.061048, - -0.017333, - 0.0096254, - -0.01337, - -0.02368, - 0.00065742, - -0.034067, - 0.030774, - -0.035612, - -0.036048, - 0.027933, - -0.010495, - 0.064409, - 0.019794, - -0.10773, - -0.046797, - 0.012767, - 0.15464, - 0.030827, - 0.0096681, - 0.057497, - 0.034656, - 0.014701, - 0.023854, - 0.050945, - 0.0027067, - 0.015246, - 0.034558, - 0.014066, - -0.027095, - 0.0059419, - 0.018177, - 0.025819, - -0.076412, - -0.015099, - 0.0029606, - -0.0049652, - -0.066834, - 0.055825, - 0.064021, - -0.01545, - -0.044107, - 0.0036012, - 0.099613, - 0.035456, - 0.023086, - 0.023309, - -0.01451, - 0.043235, - -0.015577, - -0.11635, - 0.022514, - -0.0045336, - -0.0048824, - 0.025258, - -0.035819, - 0.045882, - 0.015305, - 0.013393, - 0.0052952, - -0.043948, - -0.025504, - 0.031113, - 0.046223, - -0.000011537, - 0.033247, - -0.019965, - 0.044742, - -0.02403, - 0.023267, - -0.024385, - -0.023511, - 0.038507, - -0.052947, - -0.019145, - 0.085662, - 0.05525, - 0.011989, - -0.032286, - 0.10375, - -0.056066, - -0.03269, - -0.0013285, - -0.059999, - -0.0020814, - -0.01587, - 0.014871, - 0.00067944, - -0.1197, - -0.0095532, - 0.017795, - -0.080237, - -0.047417, - 0.0018081, - -0.021533, - -0.060245, - 0.016723, - 0.011261, - 0.10444, - 0.032536, - -0.0123, - -0.0057772, - 0.031864, - 0.11344, - 0.033246, - -0.058131, - -0.054425, - -0.025799, - 0.026051, - -0.019033, - -0.060142, - 0.084541, - -0.0077886, - 0.013636, - 0.037764, - 0.076964, - 0.015203, - -0.0223, - 0.036516, - -0.02933, - -0.051466, - -0.0018759, - 0.015175, - 0.013177, - -0.02131, - -0.022441, - 0.0055836, - -0.0086506, - -0.010817, - 0.047068, - 0.015637, - 0.020465, - 0.020044, - 0.017694, - -0.0010965, - -0.04986, - 0.06856, - 0.056657, - 0.058045, - -0.0047436, - -0.021679, - -0.0013458, - -0.0033398, - 0.011847, - -0.029096, - 0.046269, - 0.041452, - 0.0077021, - 0.011975, - 0.016959, - 0.035399, - 0.014659, - -0.0054233, - 0.064945, - -0.0088104, - 0.038189, - 0.036769, - 0.029212, - -0.0091573, - 0.076175, - -0.092288, - -0.0053761, - 0.0049586, - -0.024749, - -0.018382, - 0.020969, - -0.048303, - -0.043473, - 0.07684, - 0.047631, - -0.017856, - 0.0026812, - -0.0063014, - -0.0017181, - 0.013748, - -0.00049244, - -0.068287, - -0.0090864, - -0.064262, - 0.017369, - -0.026231, - -0.0068876, - -0.044364, - 0.026785, - -0.0041749, - 0.0074869, - 0.0045452, - 0.0094106 - ], - "opiate": [ - 0.048243, - -0.017546, - 0.062654, - -0.0037334, - -0.046734, - -0.092913, - -0.034142, - -0.11738, - -0.017758, - -0.0076326, - -0.070885, - 0.0016725, - 0.095444, - -0.039234, - 0.077379, - -0.046916, - 0.056357, - -0.0025613, - 0.0057412, - 0.060063, - -0.039161, - 0.014429, - 0.026924, - 0.011192, - 0.034895, - -0.044941, - 0.027009, - 0.072927, - 0.054977, - 0.01895, - -0.018769, - 0.035084, - 0.007877, - -0.047058, - 0.067961, - 0.080675, - -0.005252, - -0.10968, - -0.0088559, - 0.037777, - -0.044311, - -0.11885, - -0.08268, - 0.05326, - 0.030415, - -0.023647, - 0.025819, - 0.12185, - 0.038208, - 0.058872, - -0.07716, - -0.0066397, - 0.061441, - -0.12723, - -0.00446, - -0.048732, - 0.039187, - 0.027079, - -0.032857, - -0.025653, - 0.054502, - 0.069669, - 0.087302, - 0.052279, - -0.11711, - 0.042763, - 0.016949, - -0.021496, - 0.01032, - -0.065196, - -0.0093182, - 0.10636, - 0.036391, - -0.016673, - -0.025912, - -0.022106, - 0.0095349, - -0.017298, - 0.0602, - -0.034963, - 0.042611, - -0.042702, - -0.038045, - 0.10108, - 0.00054093, - 0.040669, - 0.063848, - 0.016439, - 0.0099566, - -0.011109, - 0.062047, - -0.039957, - -0.11789, - -0.084896, - -0.0070034, - 0.036474, - -0.057524, - -0.13986, - 0.015066, - 0.10971, - 0.087954, - -0.016439, - -0.043733, - 0.020362, - 0.079378, - -0.11049, - -0.064891, - -0.13, - -0.026673, - -0.056123, - -0.020453, - 0.13083, - 0.040031, - -0.11225, - -0.040058, - -0.0081481, - 0.0072358, - 0.025866, - -0.078529, - 0.060724, - 0.040491, - 0.048639, - -0.10063, - -0.048149, - 0.14436, - 0.080616, - -0.1364, - -0.021148, - 0.034902, - 0.086001, - 0.064479, - -0.029799, - 0.074938, - -0.077047, - 0.087857, - -0.0797, - -0.12323, - 0.073991, - 0.052885, - -0.099323, - 0.1033, - -0.0086834, - -0.0064074, - -0.04395, - 0.020418, - -0.022454, - 0.0055132, - 0.03322, - 0.06654, - 0.079347, - 0.088923, - 0.074712, - -0.057509, - -0.060414, - -0.062012, - 0.0007393, - -0.10137, - 0.036829, - -0.018498, - 0.0070543, - 0.044019, - -0.041522, - -0.10608, - 0.077026, - -0.034878, - -0.069996, - 0.036631, - -0.0046101, - 0.042905, - -0.13391, - -0.029628, - -0.053107, - 0.020354, - 0.03655, - -0.036742, - 0.10263, - 0.05911, - -0.061104, - 0.011554, - -0.028162, - -0.041857, - 0.027641, - -0.16859, - -0.03989, - 0.05192, - -0.091209, - 0.10526, - 0.21846, - -0.045581, - -0.12532, - 0.14232, - 0.043712, - 0.027808, - 0.078565, - 0.00032954, - 0.012201, - -0.098425, - 0.075409, - -0.066869, - -0.02533, - -0.1809, - 0.083466, - -0.060066, - 0.066816, - 0.0087468, - 0.048706, - 0.13212, - -0.0039509, - 0.045782, - 0.0039101, - 0.12989, - 0.023571, - 0.0043438, - 0.03302, - 0.034232, - 0.050032, - -0.02609, - -0.0024394, - 0.033897, - 0.01569, - -0.048208, - -0.053475, - -0.047365, - 0.12792, - 0.044308, - -0.001991, - 0.019369, - 0.078926, - -0.029275, - 0.0061463, - -0.044007, - -0.037572, - -0.085094, - 0.0021637, - 0.11585, - -0.0084723, - -0.021096, - -0.057467, - 0.00057371, - -0.12935, - 0.050791, - 0.027423, - -0.010631, - -0.01798, - -0.15308, - -0.086514, - -0.048611, - -0.014286, - 0.025155, - 0.014973, - -0.016066, - 0.0024731, - -0.0017781, - 0.071071, - 0.042607, - -0.021077, - -0.0062458, - 0.029128, - 0.042573, - -0.10113, - -0.055027, - -0.031485, - 0.022071, - 0.018001, - -0.014848, - 0.00095483, - -0.093554, - -0.046245, - 0.068242, - 0.16939, - -0.054925, - 0.091444, - -0.090068, - -0.061361, - -0.021096, - -0.055924, - -0.010333, - -0.018433, - -0.12352, - 0.021842, - 0.13696, - 0.054329, - -0.08578, - -0.03142, - -0.016381, - -0.018684, - 0.010305, - 0.019324, - 0.015848, - -0.029261, - -0.0197, - -0.067399, - -0.064559, - 0.063109, - -0.1204, - 0.13103, - 0.11543, - -0.01474, - 0.019844, - 0.012099 - ], - "experience": [ - -0.0089212, - -0.020336, - 0.00018746, - 0.0018101, - -0.026438, - -0.0049846, - -0.011251, - -0.073692, - 0.038714, - -0.024618, - -0.010212, - -0.028221, - 0.024766, - -0.0038877, - 0.0067287, - -0.023024, - 0.035133, - 0.036895, - 0.061676, - -0.0034839, - -0.03546, - 0.025177, - -0.027325, - 0.05217, - -0.035571, - 0.007076, - -0.020348, - -0.0022202, - -0.0056254, - -0.0069032, - -0.01621, - -0.0026836, - 0.0061014, - -0.043148, - 0.0082094, - 0.021145, - -0.006158, - -0.001704, - -0.029159, - -0.0025498, - -0.016922, - -0.047298, - -0.014925, - 0.026655, - -0.014676, - -0.024062, - -0.0086823, - -0.042488, - -0.00068349, - 0.04216, - 0.010492, - -0.0089522, - -0.0091176, - -0.00099708, - -0.046771, - 0.0083224, - 0.039619, - -0.012575, - -0.019951, - -0.011419, - -0.016837, - -0.0041071, - 0.10117, - -0.018908, - 0.031373, - -0.024897, - -0.016239, - -0.0052751, - -0.044408, - 0.0036314, - 0.014238, - 0.011388, - 0.040287, - 0.045943, - 0.010425, - -0.036111, - -0.010029, - 0.0041995, - -0.0067973, - -0.021554, - -0.017651, - 0.023637, - 0.024349, - 0.055757, - -0.043575, - -0.00061132, - 0.047039, - -0.012975, - -0.0011008, - -0.0039791, - 0.024465, - 0.0028824, - -0.07704, - -0.031992, - -0.023755, - 0.0097995, - 0.023728, - -0.025164, - 0.06606, - -0.01509, - 0.053842, - 0.0087982, - -0.010581, - -0.033083, - 0.036442, - -0.038871, - -0.0083254, - -0.026282, - -0.0075768, - 0.0091417, - -0.05153, - 0.022618, - 0.030039, - 0.020697, - 0.0027557, - -0.0029743, - -0.032969, - -0.026014, - -0.05041, - 0.00056489, - 0.040003, - -0.016722, - 0.010254, - -0.0094314, - 0.061933, - 0.00048165, - 0.010742, - -0.029814, - 0.038429, - 0.10369, - 0.0034658, - -0.021509, - -0.015403, - -0.064145, - -0.017993, - -0.070695, - -0.0023261, - 0.026148, - 0.010886, - -0.010868, - -0.04669, - -0.016048, - -0.013974, - 0.024662, - -0.025722, - -0.026234, - -0.01365, - -0.012554, - 0.026043, - 0.021014, - 0.052916, - 0.047278, - -0.0079534, - -0.073745, - -0.023018, - -0.012517, - 0.0095648, - 0.070466, - 0.0059751, - -0.024652, - 0.045159, - 0.038294, - -0.037389, - -0.00035748, - 0.036079, - 0.0057565, - 0.024628, - -0.061603, - 0.034544, - 0.017894, - 0.055478, - 0.0066657, - -0.020918, - -0.0096475, - 0.02512, - 0.024331, - 0.0062744, - 0.022273, - -0.016344, - -0.022112, - -0.05234, - -0.00095335, - -0.013594, - -0.028088, - 0.026142, - -0.065086, - 0.032872, - 0.057524, - -0.008961, - 0.0087214, - 0.010598, - 0.067518, - -0.040406, - -0.037683, - -0.032218, - 0.010865, - 0.0077921, - 0.019395, - -0.0089608, - -0.017258, - -0.080873, - 0.028686, - -0.048018, - -0.050147, - -0.022843, - 0.00073325, - 0.014114, - 0.035107, - 0.0085894, - -0.027078, - 0.035386, - 0.031069, - -0.0060526, - -0.052186, - 0.016631, - 0.0039295, - 0.073967, - -0.041679, - -0.021766, - -0.037538, - -0.0080953, - -0.041633, - -0.016765, - 0.079338, - 0.073097, - -0.022273, - 0.018316, - 0.10646, - -0.022163, - -0.012166, - 0.042028, - -0.062522, - -0.072537, - -0.00060221, - 0.01404, - -0.0010238, - 0.013883, - 0.020851, - -0.001484, - -0.029684, - 0.087404, - 0.020448, - 0.020225, - -0.016619, - -0.059133, - 0.0059238, - 0.0010836, - -0.08612, - 0.010168, - 0.010393, - 0.053448, - 0.059471, - 0.015026, - 0.0044471, - 0.022282, - 0.036509, - 0.022267, - 0.074898, - 0.052124, - 0.0060423, - -0.01268, - 0.011338, - -0.026069, - -0.0072147, - -0.0010202, - -0.016951, - 0.01991, - 0.039201, - -0.0047979, - -0.0090225, - -0.029612, - 0.068001, - -0.095256, - -0.037756, - 0.043137, - -0.047124, - -0.0059974, - 0.0016689, - -0.004377, - 0.01279, - 0.031121, - 0.018654, - -0.011599, - -0.010203, - -0.0078059, - -0.037611, - -0.024659, - 0.011199, - -0.031757, - -0.0011881, - 0.030864, - 0.03191, - -0.035005, - -0.0082701, - -0.02194, - 0.049608, - 0.0022738, - 0.01114, - -0.022003, - 0.0052674 - ], - "fathering": [ - -0.045203, - 0.0020819, - 0.036234, - -0.084921, - -0.004157, - -0.018134, - -0.01692, - -0.076085, - 0.026038, - 0.055474, - 0.0070691, - 0.032262, - -0.019459, - 0.01753, - -0.021871, - 0.0074037, - -0.013992, - -0.082277, - -0.017942, - 0.043089, - 0.0059517, - 0.051248, - 0.014017, - 0.036461, - -0.0083075, - 0.0055762, - 0.018378, - 0.010879, - 0.086331, - 0.015374, - 0.029006, - -0.028689, - -0.0071231, - -0.037457, - -0.015029, - 0.0156, - -0.074741, - -0.089556, - -0.01241, - -0.020299, - -0.013969, - -0.054458, - -0.012143, - -0.032687, - -0.018576, - 0.031848, - 0.02381, - 0.034064, - -0.012245, - 0.0060745, - 0.020274, - 0.022526, - 0.0068079, - 0.025752, - -0.0082519, - -0.02684, - 0.0017337, - -0.054713, - -0.046146, - 0.064599, - -0.059201, - 0.017278, - -0.026742, - -0.032331, - 0.060371, - 0.0038196, - 0.023582, - -0.013329, - 0.026472, - -0.0887, - 0.0024313, - -0.011628, - 0.099574, - 0.008988, - 0.074528, - 0.035253, - -0.004742, - -0.059309, - 0.020976, - 0.014856, - 0.014579, - -0.010529, - -0.012161, - 0.046761, - 0.0064463, - -0.028877, - 0.041453, - 0.039647, - -0.027588, - 0.055747, - 0.010156, - 0.00080007, - -0.069683, - -0.015618, - 0.018893, - 0.063674, - -0.031784, - -0.017696, - 0.01145, - 0.017167, - 0.0033307, - -0.081817, - -0.013589, - -0.053112, - -0.023287, - -0.014684, - 0.032078, - 0.024733, - -0.0042123, - -0.012987, - -0.0029955, - 0.091317, - 0.033799, - -0.024504, - 0.041192, - -0.026577, - 0.019319, - 0.043553, - -0.046103, - -0.021709, - -0.018019, - 0.0060048, - 0.095876, - -0.067979, - 0.055608, - 0.020749, - 0.066156, - -0.11194, - -0.019247, - 0.070011, - -0.0042739, - 0.014197, - -0.043711, - -0.012663, - -0.043792, - 0.012229, - -0.020328, - -0.026157, - 0.044289, - -0.017933, - -0.011664, - -0.0048528, - 0.016679, - 0.033213, - 0.041129, - 0.049775, - -0.024824, - 0.026453, - -0.0053809, - -0.022074, - 0.060476, - -0.018591, - 0.027457, - -0.083999, - -0.002967, - -0.0060679, - 0.083978, - 0.033738, - 0.13532, - -0.012583, - 0.033106, - 0.077048, - -0.068096, - -0.022379, - -0.028775, - 0.019575, - 0.028298, - 0.053683, - -0.0023893, - 0.026873, - 0.04011, - -0.029243, - -0.03042, - -0.0049573, - 0.029905, - 0.01771, - 0.070998, - 0.040035, - -0.0090577, - -0.00034258, - 0.010783, - -0.025222, - 0.012531, - 0.011434, - 0.016345, - -0.069785, - 0.023141, - 0.095087, - 0.038023, - 0.035394, - -0.027866, - -0.010155, - -0.085677, - 0.0054751, - 0.028313, - -0.058316, - 0.0050208, - -0.013539, - -0.019288, - -0.05152, - -0.11157, - 0.12688, - -0.02918, - -0.01311, - 0.0032109, - -0.0061213, - -0.046844, - 0.013798, - -0.0075868, - -0.022218, - 0.086391, - 0.017859, - 0.054861, - -0.0076735, - -0.062894, - 0.053025, - -0.093909, - -0.064076, - 0.010169, - -0.008616, - 0.019111, - -0.0068633, - 0.039574, - 0.086335, - 0.03312, - -0.071709, - 0.025263, - 0.056831, - -0.018933, - -0.075095, - 0.023058, - -0.022246, - -0.068077, - 0.04327, - 0.015858, - 0.12006, - 0.036357, - 0.029142, - -0.027401, - -0.033427, - 0.027306, - -0.0027763, - -0.0020281, - -0.038522, - -0.036106, - 0.035622, - -0.045908, - -0.091351, - 0.067737, - 0.017835, - -0.0037766, - 0.0195, - 0.016094, - 0.025934, - 0.068557, - 0.033716, - 0.012058, - 0.035392, - 0.0075469, - 0.0067793, - -0.02183, - -0.079682, - 0.0016441, - 0.10256, - 0.034364, - 0.021752, - -0.010287, - 0.06843, - 0.031109, - -0.027158, - -0.010481, - 0.064539, - -0.083423, - -0.0068283, - 0.018291, - 0.022507, - 0.030849, - 0.016908, - 0.016921, - 0.10251, - 0.060489, - 0.035472, - 0.080457, - -0.0596, - -0.0059846, - 0.077523, - -0.046668, - -0.016261, - -0.019578, - 0.037989, - 0.0078746, - 0.0014264, - -0.040572, - -0.049831, - -0.035108, - 0.012218, - 0.046651, - 0.026076, - -0.035441, - -0.064744 - ], - "soldier": [ - -0.0073789, - -0.025918, - 0.10638, - 0.021602, - -0.0094782, - -0.021711, - 0.022445, - -0.092584, - 0.10051, - 0.076422, - -0.015162, - 0.025335, - 0.009747, - 0.007354, - -0.021475, - 0.038034, - 0.051701, - -0.0183, - 0.024308, - 0.056438, - 0.068998, - -0.042709, - -0.030271, - 0.053294, - -0.051702, - 0.038404, - 0.01222, - 0.047372, - -0.0088389, - -0.073631, - -0.00023379, - 0.0055295, - -0.041323, - -0.0040332, - -0.015003, - -0.0072628, - 0.0084617, - 0.017401, - 0.10199, - 0.03884, - 0.032149, - -0.11851, - 0.048403, - -0.034998, - -0.01603, - 0.071549, - 0.034273, - -0.02627, - -0.017157, - 0.050479, - 0.046658, - 0.068972, - 0.0019183, - -0.054799, - 0.022787, - 0.019575, - 0.02132, - -0.0089091, - -0.098897, - -0.025488, - -0.060398, - -0.051865, - 0.091428, - -0.0018785, - -0.019398, - 0.044197, - 0.003639, - -0.011865, - -0.04384, - 0.0085474, - -0.018865, - -0.015143, - 0.087596, - -0.0064322, - 0.0042479, - 0.040686, - 0.039581, - -0.019294, - -0.012743, - 0.0032369, - 0.021883, - 0.033981, - -0.02232, - 0.0074443, - -0.071158, - -0.023245, - -0.014475, - 0.050624, - -0.069601, - 0.019238, - -0.0029847, - 0.051584, - -0.10168, - -0.06387, - -0.010259, - 0.11585, - -0.05636, - -0.032195, - 0.065797, - -0.026912, - 0.052617, - -0.0009494, - 0.052665, - -0.018516, - -0.086038, - -0.1053, - 0.065548, - 0.039716, - -0.052067, - 0.04494, - -0.039804, - 0.097934, - 0.06588, - -0.032666, - 0.015407, - -0.014374, - -0.026731, - 0.023951, - -0.018584, - -0.025271, - -0.06582, - -0.072861, - -0.023102, - -0.017232, - 0.10962, - 0.071058, - 0.061653, - -0.11071, - 0.040526, - 0.024534, - -0.099956, - 0.029895, - 0.02011, - 0.019171, - 0.036868, - -0.019187, - 0.033862, - 0.06338, - -0.0045129, - -0.036133, - -0.047551, - -0.081963, - -0.049702, - -0.025088, - -0.036406, - 0.05486, - -0.017191, - 0.014863, - 0.0096362, - -0.089653, - 0.053932, - 0.061702, - -0.014984, - -0.084921, - -0.023138, - 0.0082721, - -0.065451, - -0.015673, - 0.033383, - -0.080775, - 0.028726, - -0.056319, - -0.047073, - -0.012039, - -0.070767, - -0.075653, - -0.071845, - -0.014692, - 0.020514, - 0.028375, - -0.0008228, - -0.030734, - -0.046227, - 0.021376, - 0.0034687, - 0.046912, - 0.017342, - -0.030572, - -0.035178, - -0.089762, - -0.022968, - 0.0059853, - -0.04846, - -0.042389, - -0.031735, - -0.094849, - 0.048801, - 0.084859, - 0.072819, - -0.016129, - 0.048089, - 0.060689, - -0.0037182, - -0.02693, - 0.013575, - -0.0093664, - -0.03213, - -0.0027677, - -0.019193, - 0.064361, - -0.13725, - 0.043229, - 0.01915, - 0.01345, - -0.039132, - -0.0084969, - -0.040832, - 0.070149, - 0.030068, - -0.061437, - 0.13189, - -0.0019716, - -0.034516, - 0.021353, - -0.10426, - 0.032798, - -0.017277, - 0.055561, - 0.040608, - 0.063235, - -0.022428, - 0.03288, - 0.055721, - 0.10044, - 0.031233, - -0.034895, - -0.012147, - 0.07432, - -0.073999, - -0.00881, - -0.0038636, - -0.049815, - -0.043591, - -0.064929, - -0.053468, - 0.05253, - -0.015029, - 0.035745, - -0.0029672, - -0.062932, - 0.060485, - 0.050313, - 0.052832, - -0.0037305, - 0.023674, - -0.0047674, - -0.045865, - -0.013608, - -0.020756, - -0.032514, - 0.023817, - 0.047037, - 0.062024, - -0.010837, - 0.055641, - -0.08447, - 0.073374, - 0.069941, - 0.046536, - 0.020769, - -0.1369, - 0.022415, - -0.0063005, - 0.010683, - -0.026675, - -0.0054526, - 0.0045719, - 0.0084131, - -0.010541, - -0.081934, - -0.01372, - 0.094906, - -0.10515, - -0.039688, - -0.0041968, - -0.031212, - 0.022182, - 0.0063229, - 0.044976, - 0.03012, - 0.053095, - 0.064563, - 0.003942, - 0.01255, - -0.022203, - 0.027937, - -0.030088, - -0.11122, - -0.019258, - 0.0035623, - 0.026862, - 0.0086285, - -0.066569, - 0.010152, - 0.00078419, - -0.049918, - 0.026759, - 0.060452, - -0.043754, - -0.050846 - ], - "microarchitecture": [ - -0.060376, - 0.0014459, - -0.023198, - -0.0072958, - 0.0084852, - -0.032594, - -0.020278, - -0.056911, - 0.00027251, - -0.035005, - 0.02289, - -0.013867, - 0.0026451, - 0.064788, - 0.0025046, - 0.021131, - 0.038739, - 0.060662, - 0.020125, - -0.039435, - 0.026896, - -0.0034061, - 0.018705, - 0.035374, - 0.03092, - 0.015646, - -0.023907, - -0.023948, - 0.033427, - 0.010961, - 0.004056, - -0.057665, - -0.015411, - -0.039883, - -0.0084869, - 0.015547, - 0.037538, - 0.016202, - 0.011893, - -0.0038422, - -0.022272, - -0.05188, - 0.0048098, - -0.049761, - -0.0065817, - -0.0082884, - 0.00039085, - -0.015168, - 0.033186, - 0.002522, - -0.015155, - 0.016226, - -0.027658, - 0.042211, - -0.026044, - 0.02297, - 0.032761, - 0.00032885, - -0.0068879, - 0.057964, - -0.0093809, - 0.016521, - 0.034613, - -0.0041732, - 0.028373, - 0.025501, - 0.016436, - 0.041716, - -0.016951, - -0.040928, - -0.046498, - 0.0011456, - -0.025307, - -0.046818, - 0.002584, - -0.010718, - 0.0015715, - -0.025134, - -0.02933, - -0.0028717, - -0.021967, - -0.00031019, - 0.015851, - 0.0087363, - 0.040617, - 0.0097644, - -0.021656, - 0.007116, - 0.011107, - 0.033206, - -0.0041366, - 0.01508, - -0.019171, - 0.024722, - -0.014096, - 0.01969, - 0.010222, - -0.025129, - 0.004054, - 0.048154, - 0.0086351, - -0.0062721, - 0.034462, - 0.046558, - -0.033163, - -0.042221, - -0.035171, - 0.014964, - -0.046072, - -0.022763, - 0.0077861, - 0.040644, - 0.013046, - -0.00063905, - 0.023166, - -0.0020188, - -0.020058, - 0.013772, - -0.020223, - 0.01197, - -0.02594, - -0.028602, - 0.02992, - 0.024812, - 0.063144, - 0.076156, - -0.017692, - -0.050281, - -0.00035392, - 0.067733, - 0.0049052, - -0.0049992, - 0.011123, - 0.0044102, - -0.015987, - 0.058757, - -0.00013919, - 0.033293, - 0.021762, - -0.017081, - 0.041644, - 0.047581, - 0.01139, - -0.0029252, - 0.012496, - -0.027269, - 0.058823, - 0.025919, - -0.013557, - 0.00088378, - -0.0050787, - 0.021602, - 0.034383, - -0.033417, - 0.031963, - 0.072401, - 0.054609, - -0.0042232, - -0.026109, - 0.020893, - -0.024503, - 0.031739, - -0.034173, - -0.05926, - -0.013353, - 0.027747, - 0.0056241, - 0.035925, - 0.0030401, - -0.015292, - 0.0075472, - -0.042075, - 0.033747, - 0.020382, - 0.028391, - 0.0012422, - -0.0041276, - -0.029568, - -0.036469, - -0.025245, - 0.034505, - -0.044216, - -0.0080277, - 0.035577, - -0.0066258, - -0.0043436, - -0.0099215, - 0.0433, - 0.034284, - 0.00014649, - -0.032327, - 0.018872, - -0.029825, - 0.022653, - -0.0090586, - 0.0012106, - -0.056277, - 0.063615, - 0.017371, - -0.014812, - -0.062178, - 0.013961, - -0.043137, - -0.046757, - -0.019066, - -0.027991, - -0.0016037, - -0.032718, - -0.003012, - 0.0093704, - 0.07557, - 0.0015534, - 0.025664, - -0.034864, - 0.0042792, - 0.045292, - 0.022699, - 0.0072142, - -0.011696, - 0.0063215, - -0.049, - 0.019335, - 0.037612, - 0.055435, - -0.019947, - -0.038461, - 0.0063355, - 0.018749, - -0.033925, - 0.0021426, - -0.038508, - -0.039547, - -0.00084136, - 0.018966, - 0.028439, - -0.021392, - -0.017066, - 0.0048218, - 0.0058897, - -0.012383, - 0.031541, - 0.00052937, - -0.016038, - -0.001293, - -0.0034907, - -0.0089535, - -0.016809, - -0.011884, - 0.036111, - 0.00051487, - -0.012167, - -0.021375, - -0.023127, - -0.012268, - 0.022572, - 0.0049101, - -0.028159, - -0.027162, - 0.035678, - -0.015565, - -0.001212, - 0.067743, - -0.0063774, - -0.010207, - 0.020794, - -0.030951, - -0.011549, - 0.028196, - 0.024267, - 0.0020878, - -0.00046651, - 0.058461, - -0.026749, - -0.025978, - 0.0011267, - -0.039513, - 0.063255, - 0.015332, - 0.018498, - 0.002494, - 0.020245, - 0.050494, - -0.041221, - 0.050852, - -0.0033671, - -0.0035931, - -0.05296, - 0.018838, - -0.004645, - -0.024668, - -0.059272, - 0.027407, - -0.023226, - -0.064788, - 0.043344, - 0.022353, - 0.056003, - 0.0096097, - -0.041395, - -0.026111 - ], - "computer-related": [ - -0.06553, - -0.015453, - -0.017169, - -0.024862, - 0.018563, - 0.0034514, - 0.017708, - -0.058355, - 0.019897, - 0.0052076, - -0.027865, - -0.028232, - -0.047385, - 0.028551, - 0.0085993, - 0.032616, - 0.046823, - 0.036365, - 0.016771, - -0.031953, - -0.013712, - 0.025172, - 0.014944, - 0.032337, - -0.0054654, - 0.0090529, - -0.02531, - 0.019302, - 0.076164, - 0.01344, - 0.035825, - -0.018397, - -0.0044121, - -0.056439, - 0.064035, - -0.0041741, - 0.017171, - 0.025428, - 0.041875, - 0.0025242, - -0.040747, - -0.055884, - -0.017313, - 0.00744, - 0.013983, - -0.023891, - -0.0018868, - -0.034553, - 0.01798, - -0.0012584, - -0.025607, - 0.0094548, - 0.0042821, - 0.016978, - -0.0047495, - 0.044586, - -0.013311, - 0.012873, - 0.0039177, - -0.024305, - -0.0085032, - 0.010063, - 0.083787, - 0.042464, - -0.0041558, - -0.044765, - 0.0080681, - 0.015878, - -0.0045418, - 0.0060856, - -0.0058747, - 0.016853, - 0.0313, - 0.0097079, - 0.017143, - -0.027182, - -0.0069559, - -0.023931, - 0.035069, - -0.036964, - -0.0098006, - 0.021609, - -0.040103, - -0.017677, - -0.019787, - -0.00029038, - -0.01325, - 0.007267, - 0.0075833, - 0.017724, - 0.006131, - 0.0070015, - -0.060309, - 0.03588, - -0.021467, - -0.0015877, - -0.0048282, - -0.032468, - 0.0013468, - 0.038406, - 0.00031893, - 0.014017, - -0.020709, - -0.061522, - 0.031374, - -0.037198, - 0.0023011, - 0.035075, - 0.014315, - -0.053422, - -0.011412, - 0.033956, - 0.021063, - 0.019891, - 0.0066415, - 0.012626, - -0.053387, - -0.027407, - -0.041139, - 0.01743, - -0.02377, - 0.025135, - 0.0026667, - -0.033658, - 0.088666, - 0.0041172, - -0.0309, - -0.033508, - -0.072802, - 0.018573, - -0.0066593, - 0.0083836, - -0.0078211, - -0.0020008, - 0.026309, - -0.0068815, - 0.029303, - 0.032244, - 0.01925, - 0.0076455, - 0.053383, - 0.051977, - -0.011414, - 0.015498, - -0.045177, - -0.0074855, - -0.043097, - -0.024831, - 0.024917, - -0.0055791, - 0.056685, - 0.10107, - -0.032139, - -0.059181, - -0.01631, - 0.000050747, - -0.024581, - 0.020158, - 0.014863, - -0.00043551, - -0.0055207, - 0.0026233, - -0.033392, - -0.007508, - 0.0019405, - -0.019124, - -0.0076261, - -0.032391, - -0.0112, - 0.01379, - 0.029399, - -0.00058035, - 0.059117, - 0.032647, - 0.013893, - 0.028113, - -0.005049, - 0.045396, - -0.0075462, - 0.029478, - -0.0088011, - -0.0039139, - -0.052069, - -0.0076898, - -0.0044991, - -0.015839, - -0.049885, - 0.062987, - -0.0085751, - 0.02087, - -0.056338, - -0.0088717, - 0.007557, - -0.033642, - 0.023457, - 0.017861, - -0.016231, - -0.000067997, - -0.024128, - -0.0015028, - -0.069117, - 0.011704, - -0.036622, - -0.011542, - 0.00065141, - 0.0094944, - -0.011642, - 0.026865, - 0.011828, - 0.015008, - 0.064934, - 0.034129, - 0.012058, - 0.012678, - 0.040751, - 0.0087398, - -0.0071092, - -0.0019555, - -0.017505, - -0.011527, - 0.014841, - -0.0027939, - -0.017945, - 0.06328, - -0.036067, - -0.043211, - 0.0019416, - 0.058348, - 0.022878, - -0.023637, - 0.00088968, - -0.00823, - -0.069473, - -0.02425, - 0.027732, - -0.020801, - 0.0043882, - -0.0025925, - -0.025899, - -0.028062, - 0.017532, - -0.031316, - 0.020895, - 0.00013242, - -0.10173, - -0.016316, - 0.017801, - 0.018447, - -0.034527, - 0.0045297, - -0.010963, - 0.042441, - 0.014292, - 0.0018777, - -0.025996, - 0.0048565, - -0.010273, - 0.013885, - 0.0075381, - -0.0087142, - 0.0088734, - -0.038524, - -0.012084, - -0.02379, - -0.011795, - -0.017942, - -0.018178, - 0.010749, - 0.015526, - -0.010246, - -0.011884, - 0.027138, - -0.048085, - -0.033091, - 0.010488, - -0.075636, - 0.030322, - 0.046212, - -0.0065528, - -0.00059337, - 0.059101, - 0.022245, - 0.02816, - -0.020355, - -0.032418, - -0.0058579, - -0.025797, - 0.027266, - -0.035962, - 0.0227, - -0.059341, - -0.003924, - -0.03407, - -0.017391, - 0.021449, - 0.019166, - -0.030996, - -0.0042436, - 0.032261, - -0.025562 - ], - "child-rearing": [ - -0.0093898, - -0.066063, - 0.0090697, - -0.01757, - 0.0030486, - 0.017144, - -0.0025555, - -0.034698, - 0.036444, - 0.058571, - 0.012008, - -0.027758, - -0.03285, - 0.02834, - -0.065603, - -0.032287, - 0.039148, - -0.031864, - 0.0097313, - 0.047429, - 0.012083, - 0.02748, - -0.025975, - 0.024668, - -0.014719, - 0.033685, - -0.012873, - 0.041406, - 0.046707, - -0.046854, - 0.025216, - -0.030871, - -0.0072466, - -0.080214, - 0.047629, - 0.046339, - -0.012268, - -0.064908, - 0.072245, - -0.004747, - -0.005098, - -0.10233, - 0.014082, - -0.0070062, - 0.0098798, - -0.014037, - 0.0024537, - 0.010474, - -0.060752, - -0.029156, - -0.018549, - 0.03306, - 0.018303, - 0.037366, - -0.025718, - -0.038828, - -0.0031446, - -0.059019, - -0.010257, - -0.0025873, - 0.0048626, - -0.019303, - 0.028531, - 0.034338, - 0.040192, - 0.0020767, - 0.02699, - -0.0033746, - -0.025921, - -0.042362, - 0.031153, - 0.034522, - 0.01551, - -0.025036, - 0.024381, - 0.013179, - -0.0018405, - 0.016888, - 0.039028, - 0.012743, - -0.036659, - -0.017212, - -0.014165, - 0.052937, - -0.031178, - 0.013602, - 0.042158, - -0.0079773, - 0.0006782, - 0.021204, - 0.036399, - 0.021967, - -0.035167, - 0.064653, - -0.034897, - 0.052232, - -0.023445, - 0.012486, - 0.020742, - -0.027699, - -0.028072, - -0.043057, - -0.038878, - -0.077326, - -0.011739, - -0.03529, - 0.034255, - 0.054171, - -0.0027495, - -0.083534, - 0.011132, - 0.060823, - 0.023072, - 0.025788, - -0.013833, - -0.040746, - -0.0035863, - 0.010579, - -0.061395, - -0.0095598, - 0.0070568, - 0.045008, - 0.081143, - -0.00085222, - 0.018167, - -0.018564, - -0.016801, - -0.04901, - 0.067005, - 0.057679, - 0.00024034, - -0.022305, - 0.031646, - 0.00033886, - -0.079586, - -0.033135, - -0.042741, - 0.0055564, - 0.003206, - -0.024406, - 0.040566, - 0.016957, - 0.017382, - 0.093676, - -0.0030627, - -0.02265, - 0.012509, - 0.048841, - 0.0070864, - -0.054103, - 0.044202, - 0.09598, - -0.054674, - -0.061731, - 0.039952, - 0.033955, - 0.054289, - 0.037762, - 0.088746, - -0.059639, - 0.058191, - 0.012292, - -0.060558, - -0.013082, - 0.004297, - 0.015712, - 0.052666, - -0.019493, - -0.03248, - -0.053046, - 0.0082264, - 0.0084414, - -0.038748, - 0.014112, - 0.030901, - 0.0066832, - 0.0041282, - 0.06574, - -0.035875, - -0.039534, - -0.0048785, - -0.0461, - -0.055529, - -0.022148, - -0.0033449, - -0.022619, - 0.037637, - 0.080452, - -0.00086065, - 0.030238, - 0.0042222, - 0.02, - -0.0063315, - -0.066021, - -0.0075519, - -0.041787, - 0.029036, - 0.00071146, - -0.0094825, - -0.017859, - -0.089477, - -0.0014783, - -0.0057477, - 0.0038241, - -0.013729, - 0.042828, - 0.01157, - -0.01094, - 0.0069288, - 0.015147, - 0.10749, - -0.0051226, - 0.040406, - 0.030649, - -0.00059001, - 0.046954, - -0.034701, - -0.045476, - -0.06248, - -0.017877, - 0.0016191, - -0.033812, - 0.020092, - 0.051685, - -0.030247, - -0.06498, - 0.044818, - 0.036793, - 0.0080382, - -0.030055, - 0.064219, - -0.037534, - -0.05417, - -0.016126, - 0.018905, - 0.061002, - 0.024064, - 0.0061988, - -0.0086807, - -0.0099418, - -0.01875, - 0.0067699, - -0.013826, - -0.026833, - -0.022227, - 0.050043, - -0.0041742, - -0.036269, - 0.04144, - 0.022081, - -0.0014177, - 0.02792, - 0.0086945, - -0.0062103, - 0.0040285, - -0.0073757, - -0.010502, - 0.013428, - 0.040753, - -0.026791, - 0.06413, - -0.0096972, - -0.00029562, - 0.03066, - 0.038475, - 0.044134, - -0.0032219, - 0.041742, - 0.031244, - 0.0086361, - 0.029621, - 0.03854, - -0.051098, - 0.0033296, - -0.0031508, - -0.018074, - -0.03938, - 0.018047, - 0.061996, - -0.014654, - 0.042215, - 0.04337, - 0.047435, - -0.016938, - 0.041602, - 0.1081, - -0.015852, - 0.013729, - -0.026259, - 0.030698, - -0.0032515, - 0.0040813, - 0.0033764, - -0.026054, - 0.011573, - 0.041047, - 0.05982, - 0.073982, - -0.02601, - -0.0070632 - ], - "social": [ - 0.068842, - -0.11287, - -0.0091037, - 0.0038712, - -0.043441, - 0.026187, - 0.036035, - -0.087832, - 0.12611, - 0.01962, - 0.015498, - -0.042155, - -0.010066, - -0.053721, - 0.0026432, - -0.030926, - 0.12251, - -0.0099438, - 0.046179, - 0.053468, - -0.045383, - 0.056622, - 0.076845, - 0.14206, - -0.02892, - 0.019716, - -0.020938, - 0.029258, - 0.036487, - -0.01617, - -0.028058, - -0.016663, - -0.08874, - -0.14188, - 0.08407, - 0.076728, - 0.049206, - 0.070066, - -0.039701, - -0.018795, - 0.0091696, - -0.14008, - -0.044107, - 0.056829, - 0.045986, - -0.037615, - -0.02259, - 0.0013661, - -0.043982, - -0.026397, - -0.061365, - 0.028604, - 0.055994, - -0.02446, - 0.041827, - -0.028786, - 0.050672, - -0.052441, - -0.060187, - -0.026935, - 0.015466, - -0.053456, - 0.12324, - 0.032239, - 0.13132, - 0.042784, - 0.027458, - -0.0086569, - 0.016656, - 0.006022, - 0.049859, - -0.002328, - 0.012583, - -0.022626, - -0.0027766, - -0.0085916, - -0.020023, - -0.073521, - -0.0017444, - 0.0040204, - -0.05214, - 0.055871, - -0.04514, - 0.05123, - -0.034253, - -0.019516, - -0.024665, - 0.0023037, - -0.012655, - 0.051133, - 0.012487, - 0.037692, - -0.1229, - 0.016445, - 0.0047934, - 0.031367, - -0.011879, - -0.011841, - 0.065484, - 0.038709, - 0.033633, - -0.021663, - -0.040297, - -0.09696, - 0.063371, - -0.096936, - 0.024665, - 0.014976, - 0.017816, - -0.001007, - -0.047937, - 0.1034, - 0.053472, - 0.015708, - -0.028721, - 0.000016913, - 0.013875, - -0.019604, - -0.026576, - 0.035641, - -0.0071067, - -0.023576, - 0.025899, - 0.042595, - 0.12165, - -0.0011379, - -0.0091725, - -0.071443, - 0.033106, - 0.11071, - 0.067983, - -0.04368, - 0.055862, - -0.016868, - -0.029664, - 0.08721, - 0.012701, - 0.03411, - -0.019278, - 0.045949, - 0.029093, - -0.042443, - 0.025921, - 0.03162, - -0.057889, - 0.015702, - 0.020173, - 0.04363, - 0.063804, - 0.041477, - 0.046631, - 0.2296, - -0.010257, - -0.079281, - 0.066815, - 0.046664, - 0.0060011, - 0.027593, - 0.01007, - -0.089007, - 0.048448, - -0.018433, - -0.14179, - 0.020209, - -0.015384, - 0.060791, - 0.034954, - 0.045439, - -0.028051, - -0.0046688, - 0.019527, - -0.0055887, - 0.0023443, - 0.032165, - -0.013414, - 0.09954, - -0.0017225, - 0.044065, - -0.020424, - -0.047351, - -0.0137, - 0.01338, - -0.032736, - 0.0028961, - -0.029703, - -0.077802, - -0.038163, - 0.17245, - 0.044027, - -0.026316, - 0.037374, - 0.034816, - 0.12957, - -0.03615, - -0.0070324, - -0.0010321, - -0.030905, - -0.00041713, - 0.0043534, - -0.021234, - -0.17096, - -0.044884, - 0.010888, - 0.0088655, - -0.032462, - 0.047547, - -0.030062, - -0.034682, - 0.0096233, - 0.029004, - 0.17474, - -0.0017802, - -0.060667, - -0.032292, - 0.045717, - 0.083363, - -0.031349, - 0.033499, - -0.060496, - -0.011317, - -0.006738, - -0.010312, - -0.076957, - 0.077609, - 0.0033844, - -0.02608, - 0.054958, - 0.088496, - -0.024751, - -0.040509, - 0.0095539, - -0.054147, - -0.10105, - -0.011924, - -0.017155, - 0.053898, - 0.0082634, - -0.015812, - -0.060753, - -0.014757, - 0.02161, - 0.048488, - -0.028212, - 0.05857, - -0.20066, - 0.052279, - -0.025986, - 0.013048, - -0.026315, - 0.0035538, - 0.027212, - 0.025449, - -0.017316, - -0.029312, - -0.052368, - 0.039587, - -0.0072032, - 0.057071, - 0.065323, - -0.078454, - 0.012783, - 0.0090751, - 0.027907, - 0.013031, - 0.070492, - 0.0042097, - 0.04789, - 0.041328, - 0.066082, - 0.034638, - 0.00057224, - 0.060019, - -0.10528, - -0.044885, - 0.061875, - -0.11721, - 0.0121, - -0.016261, - -0.057368, - 0.020049, - 0.2233, - 0.026248, - -0.025798, - -0.04736, - 0.032672, - 0.06, - -0.054532, - -0.00093519, - -0.00059344, - 0.023909, - 0.0022022, - 0.018003, - -0.035233, - 0.034242, - -0.051692, - 0.069279, - -0.018626, - 0.067603, - -0.011317, - 0.039738 - ], - "high-tech": [ - -0.046482, - -0.031285, - 0.052527, - -0.0058644, - -0.046887, - -0.040972, - 0.012259, - -0.0759, - 0.008151, - 0.062785, - -0.036969, - -0.027389, - -0.01872, - 0.052743, - -0.046739, - 0.031477, - 0.11399, - 0.051751, - 0.046295, - 0.009414, - 0.061034, - 0.032793, - -0.016053, - 0.05288, - 0.032768, - -0.04832, - 0.049592, - 0.042847, - 0.049378, - 0.020876, - -0.016033, - -0.021139, - 0.0036077, - -0.064847, - 0.083254, - -0.0023918, - 0.0070527, - 0.027519, - 0.048832, - 0.010964, - -0.048378, - -0.1184, - -0.013812, - 0.0079279, - 0.038427, - -0.035137, - 0.0098305, - 0.02824, - -0.0023529, - -0.013858, - -0.043175, - 0.024611, - -0.067222, - 0.024234, - -0.001117, - 0.031753, - 0.038422, - -0.048771, - 0.011421, - 0.024702, - -0.013669, - 0.03728, - 0.086124, - 0.017586, - 0.047667, - 0.0095189, - -0.0031423, - -0.025834, - 0.0068271, - -0.0020028, - 0.038213, - 0.012929, - 0.031217, - 0.0060786, - -0.010724, - 0.032171, - 0.044601, - -0.037384, - -0.0023584, - -0.058784, - -0.0086671, - -0.01365, - -0.031499, - 0.0070325, - -0.04354, - -0.049034, - -0.039423, - -0.00058419, - -0.0068965, - -0.013731, - -0.021163, - -0.0059962, - -0.090387, - -0.0057842, - 0.027108, - 0.072033, - -0.0056659, - -0.066776, - -0.03818, - 0.038997, - 0.032544, - -0.038484, - 0.014899, - -0.072636, - -0.0017818, - -0.1029, - 0.045768, - 0.027976, - 0.022093, - 0.018183, - -0.006925, - 0.062077, - 0.050399, - 0.050648, - -0.021689, - 0.02134, - -0.083379, - -0.017267, - -0.039123, - 0.073885, - -0.053017, - 0.019183, - 0.0088903, - -0.031333, - 0.058848, - -0.027189, - -0.0074825, - -0.017318, - -0.043176, - 0.03052, - -0.0050373, - 0.048367, - -0.010617, - -0.031581, - 0.06345, - -0.092338, - 0.055229, - 0.022109, - -0.022487, - 0.017867, - 0.067363, - -0.00030103, - -0.00036205, - 0.050558, - -0.053195, - 0.015601, - 0.017883, - 0.0016428, - -0.016178, - 0.024807, - 0.072105, - 0.13987, - 0.02569, - -0.032434, - -0.018892, - 0.0082251, - 0.00076872, - 0.043903, - 0.029591, - -0.03527, - 0.039311, - -0.017904, - -0.053975, - 0.032927, - -0.013776, - 0.02618, - -0.027855, - -0.053919, - 0.0097502, - -0.024076, - 0.03841, - 0.050367, - -0.025568, - 0.043977, - -0.0036169, - 0.046555, - 0.010864, - 0.052737, - -0.044877, - 0.081768, - 0.018318, - 0.013649, - -0.043309, - -0.040328, - -0.0037036, - -0.014783, - -0.01477, - 0.11372, - -0.016562, - 0.052981, - -0.038757, - 0.01921, - 0.057449, - -0.013748, - -0.013701, - 0.030532, - -0.027399, - 0.00021004, - 0.0035144, - -0.018828, - -0.11385, - 0.052578, - -0.013077, - 0.019491, - 0.010215, - 0.0047371, - -0.057103, - 0.021275, - -0.0053376, - 0.0029639, - 0.1131, - 0.0095478, - 0.014578, - 0.023966, - 0.017894, - 0.0074314, - 0.021393, - -0.00087254, - -0.034553, - -0.0042295, - -0.0052068, - -0.0048112, - 0.010348, - 0.070714, - -0.044144, - -0.038629, - 0.010444, - 0.018493, - -0.0091713, - -0.057626, - -0.032786, - 0.0026551, - -0.038166, - -0.04074, - 0.025438, - -0.01844, - 0.0026016, - 0.0026975, - -0.024223, - -0.053361, - 0.035594, - 0.0089979, - 0.052579, - 0.023889, - -0.12528, - -0.00099965, - -0.0059142, - 0.0017783, - 0.0051417, - -0.0073748, - -0.00024244, - -0.015993, - -0.07243, - -0.049906, - -0.033993, - 0.10062, - 0.00026029, - -0.017765, - 0.028195, - 0.020417, - 0.01999, - -0.0073237, - 0.013459, - 0.0051435, - -0.028781, - 0.029758, - 0.041987, - -0.00007034, - -0.032617, - 0.0075486, - -0.085959, - 0.076323, - -0.079149, - -0.017556, - -0.0043408, - -0.095978, - 0.024835, - 0.051139, - 0.014735, - -0.042229, - 0.1488, - 0.010214, - 0.030171, - 0.02598, - -0.061713, - -0.039674, - -0.037506, - -0.053975, - -0.024061, - -0.0016306, - -0.04529, - 0.016644, - 0.0028759, - 0.01296, - -0.007627, - -0.048344, - -0.00054553, - 0.03768, - 0.0027319, - -0.034865 - ], - "military": [ - 0.0043833, - -0.06469, - 0.027616, - -0.0265, - -0.015975, - -0.020324, - 0.012439, - -0.085531, - 0.08713, - 0.089844, - -0.012255, - -0.037433, - -0.021956, - 0.065002, - 0.0015251, - 0.059086, - 0.10453, - -0.020189, - 0.059989, - 0.040173, - 0.068174, - -0.024492, - 0.000060125, - 0.073553, - -0.034215, - 0.0098783, - 0.020266, - -0.021832, - 0.0057033, - -0.018277, - 0.0079205, - -0.040437, - -0.01447, - -0.071627, - 0.046726, - 0.059997, - 0.01, - 0.052998, - 0.084781, - 0.033146, - -0.012692, - -0.12017, - 0.04847, - -0.011605, - 0.0095284, - 0.0030321, - 0.0054548, - -0.03494, - -0.052491, - -0.017457, - 0.0079015, - 0.0014395, - 0.019677, - -0.01586, - -0.0078697, - 0.023096, - -0.019729, - -0.01467, - -0.036617, - 0.031486, - -0.025277, - -0.0075888, - 0.091007, - 0.0099664, - 0.036265, - -0.024021, - -0.0080281, - -0.056863, - 0.036322, - 0.032494, - 0.034435, - -0.024432, - 0.041914, - -0.036868, - -0.010862, - -0.0014724, - 0.048722, - -0.016951, - 0.033276, - 0.0031037, - -0.022897, - 0.0415, - -0.062136, - 0.024762, - -0.081428, - 0.002657, - 0.0031398, - -0.010989, - -0.040536, - 0.017986, - -0.0039283, - 0.026967, - -0.096195, - 0.014222, - 0.020985, - 0.050699, - -0.092136, - -0.059985, - 0.037277, - 0.020192, - 0.056216, - 0.019584, - 0.042274, - -0.072469, - 0.033267, - -0.099867, - 0.049472, - 0.010575, - -0.031204, - 0.021971, - -0.035992, - 0.077936, - 0.03859, - 0.051919, - 0.017533, - -0.0080101, - 0.022045, - 0.036399, - -0.054616, - -0.0077896, - -0.024856, - -0.024051, - -0.057085, - -0.001499, - 0.069638, - 0.085016, - 0.0082354, - -0.086753, - -0.017226, - 0.068626, - -0.067721, - 0.036079, - 0.047763, - 0.024268, - 0.036358, - 0.00037921, - -0.0076101, - 0.026163, - -0.019589, - 0.0054654, - -0.033824, - -0.085222, - -0.047992, - 0.020333, - -0.053653, - 0.043522, - 0.0027991, - 0.034072, - 0.024792, - -0.031927, - 0.058086, - 0.12061, - -0.008943, - -0.051739, - 0.0023797, - 0.041718, - -0.046357, - 0.0075946, - 0.031604, - -0.018238, - 0.023678, - -0.002911, - -0.060164, - -0.012507, - -0.057203, - 0.058876, - 0.016507, - -0.0013378, - 0.027459, - -0.052743, - 0.061242, - -0.027207, - -0.0025798, - -0.013491, - -0.041728, - 0.043787, - -0.011474, - 0.024459, - -0.029469, - 0.0088909, - -0.0051161, - 0.0092089, - -0.0045974, - -0.0023093, - 0.033701, - -0.042945, - -0.00080167, - 0.063204, - 0.026826, - -0.015155, - 0.0055277, - 0.051122, - 0.063971, - -0.030357, - -0.020196, - 0.032015, - -0.055418, - 0.016386, - -0.024713, - 0.028033, - -0.13568, - 0.013411, - -0.028111, - 0.044262, - -0.014958, - -0.0080123, - 0.0017718, - 0.052677, - 0.012054, - 0.0077976, - 0.13481, - 0.012972, - -0.0011731, - 0.050322, - -0.02971, - 0.072136, - -0.022402, - -0.0063991, - -0.015873, - -0.018966, - 0.016815, - -0.026065, - 0.00048299, - 0.086824, - -0.0013786, - 0.054565, - -0.015591, - 0.034821, - -0.012876, - -0.042782, - 0.011374, - -0.0438, - -0.066116, - -0.036197, - -0.0044061, - 0.017355, - -0.028027, - 0.010374, - -0.019077, - -0.044185, - 0.033639, - 0.01179, - 0.033257, - 0.0037684, - -0.069805, - 0.028528, - -0.020097, - -0.053099, - -0.0071022, - -0.012095, - 0.017186, - 0.051916, - 0.016148, - -0.026474, - -0.0098149, - 0.024808, - 0.093908, - 0.02881, - 0.0020703, - -0.0072439, - -0.05086, - -0.019369, - -0.0018111, - -0.0026272, - 0.025263, - -0.0090652, - -0.0063448, - 0.02271, - 0.025159, - -0.015612, - -0.0034137, - 0.084511, - -0.094445, - -0.017346, - -0.00041244, - -0.063993, - -0.0024164, - -0.010613, - -0.022257, - -0.0042348, - 0.13158, - 0.020349, - 0.0031944, - 0.04291, - 0.031105, - -0.01056, - -0.018689, - -0.05316, - -0.028035, - -0.025165, - -0.023823, - 0.035691, - 0.00087107, - 0.048141, - 0.0042057, - 5.7892e-7, - -0.019084, - -0.0041245, - -0.02678, - -0.039004 - ], - "potable": [ - 0.046257, - -0.019499, - -0.0033869, - 0.0023824, - 0.016699, - 0.057856, - -0.032602, - -0.095551, - 0.015196, - -0.040219, - -0.019859, - 0.036979, - -0.042349, - 0.0082349, - 0.029277, - -0.086509, - 0.095154, - 0.047617, - 0.013182, - -0.017131, - 0.03848, - 0.0032786, - 0.11666, - 0.062361, - 0.054489, - -0.053061, - 0.029085, - 0.0346, - 0.15787, - 0.053298, - -0.01854, - 0.084205, - 0.0041267, - -0.012438, - 0.06515, - -0.012435, - 0.038035, - -0.0038114, - 0.0077736, - 0.0010093, - -0.011299, - -0.10341, - 0.093686, - 0.050084, - -0.0086491, - -0.13359, - -0.010288, - 0.018645, - 0.019966, - 0.028321, - 0.031603, - 0.084699, - 0.020819, - -0.087673, - -0.049595, - 0.1002, - 0.011957, - -0.018797, - -0.029004, - 0.063987, - 0.0028526, - -0.0061656, - 0.093484, - -0.06202, - -0.043837, - 0.012725, - -0.044617, - -0.072711, - -0.018863, - -0.018657, - 0.10096, - 0.032593, - 0.065777, - -0.038504, - -0.079685, - -0.066428, - 0.012952, - -0.025426, - -0.029948, - 0.085556, - 0.03704, - -0.052213, - 0.083084, - 0.040296, - 0.00099533, - 0.096778, - -0.054694, - -0.023465, - -0.14813, - 0.0079904, - 0.032304, - -0.062257, - -0.096589, - -0.041887, - -0.057285, - 0.023911, - -0.034865, - 0.0081653, - 0.014679, - -0.026505, - -0.045498, - -0.0039764, - 0.022825, - -0.014195, - -0.00014225, - -0.078363, - 0.010897, - 0.082174, - -0.016155, - -0.0032437, - 0.054015, - 0.11047, - 0.061331, - -0.0263, - 0.048224, - -0.09352, - -0.012625, - -0.043275, - -0.032805, - -0.042481, - -0.079825, - 0.036104, - 0.031534, - -0.068066, - 0.037888, - 0.018499, - -0.020786, - -0.052797, - -0.0032903, - -0.011539, - -0.0095245, - -0.036641, - -0.045193, - -0.14725, - 0.014583, - 0.003426, - 0.01707, - 0.040136, - 0.048767, - 0.0060488, - 0.040219, - -0.068463, - 0.025315, - -0.0386, - 0.056955, - -0.012021, - -0.03458, - 0.11129, - -0.026646, - 0.027648, - 0.038857, - 0.071816, - 0.045081, - -0.032981, - -0.031916, - -0.055283, - -0.079448, - 0.013153, - -0.039866, - 0.055069, - 0.026604, - -0.056578, - -0.048009, - 0.079776, - 0.0073649, - 0.059313, - 0.027641, - 0.023643, - 0.14944, - 0.075513, - 0.042773, - 0.072523, - -0.0039919, - 0.02246, - 0.023256, - 0.078198, - -0.010144, - 0.080327, - -0.027893, - 0.050721, - -0.043181, - 0.0745, - 0.082062, - -0.15311, - -0.005092, - -0.019621, - -0.026602, - 0.17141, - -0.020337, - 0.0011719, - 0.034389, - 0.022794, - 0.047676, - 0.008721, - 0.022831, - -0.052177, - 0.071062, - -0.0063274, - -0.014773, - -0.061905, - -0.19348, - 0.075566, - -0.013872, - 0.011587, - 0.017134, - -0.041842, - -0.011297, - 0.094588, - 0.017232, - 0.022207, - 0.084036, - -0.02263, - -0.063773, - 0.055125, - 0.047259, - 0.031092, - 0.0046187, - -0.0899, - -0.062804, - -0.059493, - 0.0052713, - -0.055282, - -0.085253, - 0.071503, - 0.006989, - 0.06099, - 0.04793, - 0.0039532, - -0.074447, - -0.094295, - -0.0063694, - -0.070022, - -0.033057, - -0.020232, - 0.029311, - 0.08459, - -0.072988, - 0.064553, - 0.032982, - -0.12, - 0.12368, - 0.006166, - 0.055718, - -0.038988, - -0.15844, - 0.035717, - 0.030847, - -0.045607, - -0.069447, - 0.023618, - -0.032319, - -0.059588, - 0.020285, - 0.039617, - -0.013644, - 0.025674, - -0.010697, - -0.041171, - 0.026839, - 0.044212, - -0.05484, - -0.063193, - -0.051263, - 0.0029778, - 0.03674, - -0.070361, - 0.024239, - -0.043108, - -0.036597, - 0.12059, - 0.083665, - 0.066754, - -0.066718, - -0.052228, - -0.018571, - -0.072246, - -0.027134, - 0.036585, - 0.027988, - 0.030954, - 0.019891, - 0.0096188, - -0.065576, - 0.034859, - -0.094281, - 0.029895, - -0.018912, - 0.044758, - 0.071212, - 0.011357, - 0.076379, - 0.022915, - -0.084806, - 0.062385, - 0.034588, - 0.063849, - 0.033847, - -0.051615, - -0.06089, - -0.020748 - ], - "telematics": [ - 0.038427, - -0.056388, - -0.057643, - 0.034447, - -0.035747, - -0.019944, - 0.0074146, - -0.075, - 0.025166, - -0.022874, - 0.057765, - -0.013015, - 0.027285, - -0.023471, - 0.068228, - 0.0053544, - 0.099688, - 0.0078348, - 0.038409, - 0.061506, - -0.082888, - -0.022162, - 0.090164, - 0.055761, - 0.031136, - 0.011928, - -0.011937, - 0.013928, - 0.039249, - -0.027415, - -0.0011559, - 0.0111, - 0.050664, - -0.018979, - 0.0094161, - -0.01583, - 0.0090829, - 0.063368, - 0.044313, - -0.0050173, - -0.023345, - -0.066441, - -0.0025479, - 0.025694, - -0.026985, - -0.04845, - -0.051237, - -0.07475, - 0.040492, - -0.046238, - -0.0518, - -0.019093, - -0.038215, - -0.032428, - -0.060882, - 0.056181, - -0.0512, - 0.044184, - -0.013222, - 0.02027, - -0.0091999, - 0.028668, - 0.093742, - 0.10582, - 0.018463, - -0.0063099, - 0.0068746, - -0.017054, - 0.005525, - 0.040518, - -0.02165, - -0.0046874, - -0.0035042, - 0.025831, - 0.042497, - 0.019497, - -0.033638, - -0.023484, - 0.019454, - -0.027029, - -0.022336, - -0.01578, - -0.029016, - 0.020804, - 0.013531, - -0.028007, - 0.001038, - -0.003487, - -0.045054, - -0.056274, - 0.050827, - 0.023453, - -0.060691, - -0.020672, - -0.019697, - 0.046942, - 0.036971, - -0.018367, - -0.09703, - -0.020894, - -0.039459, - -0.035915, - 0.016399, - -0.050034, - -0.021236, - -0.077786, - 0.015647, - 0.0085702, - 0.10908, - -0.021678, - 0.0070748, - 0.097173, - 0.05244, - 0.03549, - -0.014851, - -0.018728, - -0.048487, - -0.04227, - -0.024971, - 0.016573, - -0.031569, - 0.098357, - -0.016549, - 0.0039684, - 0.10131, - 0.017199, - -0.026901, - -0.063529, - 0.027381, - 0.084984, - 0.016185, - 0.034935, - 0.022711, - -0.067967, - 0.032975, - 0.010273, - 0.040999, - 0.0042481, - 0.01077, - 0.044381, - -0.035701, - -0.022651, - 0.014371, - 0.09067, - -0.01657, - -0.0135, - -0.038723, - 0.068069, - 0.0091353, - -0.0016908, - 0.033618, - 0.035091, - 0.046291, - -0.090711, - -0.0071679, - 0.0058677, - -0.0041475, - -0.017536, - 0.020182, - 0.030136, - 0.032739, - -0.087088, - -0.067405, - 0.030599, - -0.013273, - -0.0097334, - 0.0012123, - 0.035033, - 0.0048172, - 0.0024561, - 0.012066, - 0.037834, - -0.0081057, - 0.037386, - -0.012225, - 0.058406, - -0.048424, - 0.018394, - -0.048237, - -0.0061156, - -0.019765, - 0.020109, - -0.0019466, - 0.0083224, - -0.026359, - 0.010049, - -0.061558, - 0.10072, - -0.030547, - 0.028806, - -0.06783, - 0.061723, - -0.054253, - -0.014021, - 0.035293, - 0.028025, - -0.034717, - -0.032326, - -0.015723, - 0.029843, - -0.12584, - 0.012992, - -0.012129, - -0.00034113, - -0.021658, - 0.0123, - 0.019034, - 0.057391, - -0.067002, - 0.011212, - 0.068534, - 0.077321, - -0.0033004, - -0.013766, - 0.004574, - 0.026771, - -0.013287, - -0.054182, - -0.0065612, - -0.00081221, - -0.0046829, - -0.0095049, - 0.014542, - 0.076928, - 0.0014618, - -0.063651, - -0.0149, - 0.0064289, - -0.016576, - 0.023949, - 0.036826, - -0.049053, - -0.073779, - -0.0021219, - 0.039483, - -0.0061425, - 0.063608, - 0.038619, - -0.045246, - -0.00571, - 0.038051, - 0.029404, - 0.013472, - -0.0099867, - -0.027414, - -0.088568, - 0.015763, - 0.059728, - 0.02501, - -0.003444, - 0.058064, - 0.036802, - -0.023098, - 0.00615, - -0.02398, - -0.0035695, - -0.0080608, - 0.0047535, - -0.0036809, - -0.01432, - 0.026041, - 0.021018, - -0.071843, - 0.0076129, - -0.00092464, - 0.027217, - 0.02594, - -0.00058181, - 0.022554, - 0.033526, - -0.043868, - 0.082042, - -0.06095, - -0.028863, - -0.029133, - 0.038375, - 0.038003, - 0.09175, - 0.010957, - 0.00020121, - 0.032555, - -0.046225, - -0.069857, - -0.074739, - -0.06617, - -0.088697, - -0.062373, - -0.0088728, - 0.074474, - 0.026465, - 0.0060827, - -0.053654, - 0.0062239, - -0.041712, - 0.01193, - -0.035651, - -0.042011, - 0.032663, - 0.058667, - -0.0063959 - ], - "politic": [ - 0.026707, - -0.10101, - 0.038182, - 0.010227, - 0.012726, - -0.0075096, - 0.022932, - -0.067489, - 0.096624, - 0.010412, - -0.019045, - -0.049719, - -0.023553, - -0.031633, - 0.008099, - -0.024875, - 0.12777, - -0.00053858, - 0.049212, - 0.050124, - -0.031055, - -0.019764, - 0.079416, - 0.096654, - -0.0061704, - -0.012467, - 0.026633, - -0.0056488, - 0.0237, - -0.011722, - -0.016584, - -0.0028747, - -0.043812, - -0.097862, - 0.079659, - 0.017567, - 0.015364, - 0.031355, - 0.028385, - 0.090236, - 0.010721, - -0.12491, - -0.015748, - -0.0079734, - 0.038646, - -0.01656, - -0.018933, - -0.044644, - -0.02965, - -0.035469, - -0.019538, - -0.04416, - 0.035163, - -0.010863, - 0.0062972, - -0.018698, - 0.047971, - 0.011214, - -0.033121, - 0.064138, - -0.017898, - -0.013261, - 0.095726, - -0.052214, - 0.059747, - 0.033757, - -0.0082092, - 0.02755, - 0.067641, - -0.019851, - 0.041774, - -0.02929, - -0.023461, - 0.018849, - 0.021729, - -0.0097707, - -0.032735, - -0.036574, - -0.018916, - -0.033349, - -0.046928, - 0.059359, - -0.044367, - 0.083299, - 0.027591, - -0.049744, - -0.042577, - 0.017177, - -0.0023948, - 0.04695, - -0.025029, - 0.020641, - -0.076445, - 0.000046677, - -0.00041217, - 0.047939, - -0.027074, - -0.027632, - 0.075054, - 0.018319, - 0.051977, - 0.015625, - 0.032765, - -0.087753, - -0.0092079, - -0.13232, - 0.021309, - -0.052064, - -0.018498, - -0.0022209, - -0.081507, - 0.047655, - 0.020622, - -0.024879, - 0.044731, - -0.01811, - 0.040495, - -0.028537, - -0.060059, - 0.04078, - 0.034309, - -0.046863, - -0.011062, - 0.037193, - 0.10313, - 0.027279, - -0.040617, - -0.04699, - 0.01912, - 0.09417, - -0.042003, - 0.020073, - 0.10219, - 0.051438, - -0.040364, - 0.037697, - 0.027196, - 0.087372, - 0.019115, - 0.0238, - 0.042195, - -0.12018, - 0.018945, - -0.0029032, - 0.022939, - 0.004532, - 0.0092849, - 0.025414, - 0.0063029, - -0.036592, - 0.07194, - 0.14716, - 0.04715, - -0.069384, - -0.034887, - -0.0010839, - 0.017178, - -0.015081, - -0.077479, - -0.03485, - 0.045138, - 0.043638, - -0.094021, - 0.00041345, - -0.09777, - 0.014415, - 0.055211, - 0.024328, - -0.093616, - -0.0059725, - -0.0053, - -0.046679, - -0.063551, - -0.0020131, - -0.048014, - 0.049217, - 0.023596, - 0.019243, - 0.030273, - -0.02453, - -0.045775, - 0.0054131, - 0.018187, - -0.0013859, - 0.016676, - -0.070875, - 0.001361, - 0.062319, - 0.034699, - -0.055803, - -0.0052065, - 0.10641, - 0.097369, - 0.013393, - 0.0354, - -0.0051075, - -0.0078398, - -0.0034247, - -0.042478, - 0.057305, - -0.13262, - -0.000067651, - 0.030842, - -0.06471, - -0.0084918, - -0.05031, - -0.0014749, - -0.0055288, - -0.012334, - 0.019724, - 0.098748, - 0.0062832, - -0.031196, - 0.0031234, - 0.029463, - 0.013049, - 0.015206, - -0.032192, - -0.03659, - -0.0045904, - -0.07035, - -0.036294, - -0.040581, - 0.096495, - 0.014641, - 0.082203, - 0.081365, - 0.081736, - -0.030241, - 0.0025756, - -0.031535, - -0.062358, - -0.068718, - -0.032863, - 0.0045919, - -0.051447, - -0.028364, - -0.00056788, - -0.012417, - -0.07836, - 0.073952, - 0.0012474, - -0.077321, - 0.08203, - -0.11442, - 0.0284, - -0.04184, - -0.023686, - -0.016485, - -0.018878, - 0.05214, - -0.0011044, - -0.059589, - 0.026577, - 0.0052326, - -0.038402, - -0.027989, - 0.0029283, - 0.021872, - -0.034435, - 0.0046557, - 0.010971, - 0.030416, - 0.048212, - -0.038639, - 0.028813, - -0.016371, - 0.075163, - -0.02221, - 0.03324, - -0.034595, - 0.059847, - -0.081152, - 0.0017864, - 0.050798, - -0.15921, - -0.001978, - 0.054904, - -0.034692, - 0.0067882, - 0.091398, - 0.04708, - 0.019328, - -0.073844, - 0.014174, - 0.06875, - 0.042406, - -0.041606, - 0.034999, - 0.094045, - -0.0072388, - 0.0075114, - -0.0067174, - 0.030575, - -0.047845, - 0.02685, - -0.0015395, - 0.028617, - 0.0084092, - -0.0089559 - ], - "timeline": [ - -0.044923, - -0.03236, - 0.034124, - 0.091048, - 0.0030413, - 0.0046069, - -0.013834, - -0.088847, - -0.026026, - 0.01888, - 0.0082256, - -0.06037, - -0.018377, - 0.072611, - -0.00075513, - 0.069026, - 0.061548, - -0.025719, - 0.054296, - 0.009148, - 0.0071746, - -0.024665, - -0.058282, - 0.073904, - -0.038027, - -0.058345, - -0.041457, - 0.023474, - 0.0073365, - 0.019354, - -0.026061, - -0.0083873, - 0.042825, - -0.12135, - -0.0029645, - 0.011345, - -0.016121, - 0.023446, - -0.058954, - -0.038186, - -0.13607, - -0.14568, - 0.048425, - 0.036545, - 0.016911, - 0.018112, - 0.046668, - -0.0070353, - -0.0010454, - -0.028807, - -0.027876, - -0.03442, - -0.036385, - -0.023787, - -0.034699, - 0.024323, - 0.037453, - -0.033257, - -0.043774, - 0.012934, - -0.030727, - 0.012419, - 0.11668, - 0.00097663, - 0.1005, - -0.043234, - -0.008033, - 0.014463, - -0.014536, - 0.043925, - -0.036847, - -0.013469, - -0.037946, - -0.021184, - 0.044164, - 0.054914, - 0.04467, - -0.049393, - -0.0091771, - -0.0079343, - 0.031913, - -0.020059, - -0.042756, - 0.068953, - 0.0075278, - 0.015446, - 0.028445, - -0.031651, - -0.0036102, - -0.0026007, - 0.083822, - -0.011088, - -0.057611, - 0.0086907, - 0.010301, - 0.034251, - 0.024519, - -0.011489, - 0.049467, - 0.0011881, - 0.034215, - -0.0031405, - 0.062043, - 0.015719, - -0.061431, - -0.053921, - 0.014374, - -0.042, - -0.030439, - 0.061372, - -0.0025454, - 0.034251, - 0.053195, - -0.0083109, - -0.030446, - -0.0025421, - -0.052632, - -0.062186, - -0.064027, - 0.072341, - -0.027298, - -0.060981, - 0.048792, - 0.046218, - 0.0069264, - 0.0894, - -0.032068, - -0.068959, - 0.010636, - 0.092484, - 0.0036924, - -0.028488, - -0.019776, - -0.00179, - -0.0036976, - -0.0022938, - 0.042961, - 0.059814, - 0.056372, - -0.008569, - -0.018057, - 0.026505, - 0.0047124, - 0.050433, - -0.00076923, - 0.050228, - 0.0071963, - -0.059764, - -0.0088524, - -0.024899, - 0.0031805, - 0.034639, - -0.019078, - -0.073351, - -0.030829, - 0.060388, - 0.056934, - -0.025326, - 0.022659, - -0.0055405, - -0.018639, - 0.045265, - -0.045717, - -0.041585, - 0.013014, - 0.057028, - -0.069996, - -0.016852, - 0.063042, - -0.05911, - -0.053931, - -0.013575, - 0.019275, - -0.076722, - -0.011646, - 0.060926, - -0.037208, - -0.0035461, - -0.0070638, - 0.041451, - 0.027133, - 0.0056801, - 0.032302, - -0.0029487, - -0.03529, - -0.015431, - 0.020995, - 0.064074, - 0.035791, - -0.061279, - 0.00218, - 0.095006, - -0.036367, - -0.03172, - 0.059336, - 0.021034, - -0.037578, - -0.037075, - -0.024581, - 0.066306, - -0.1453, - 0.054563, - -0.026724, - -0.010676, - -0.060785, - -0.016154, - -0.028182, - -0.0069302, - 0.01288, - -0.007721, - 0.10899, - -0.0092621, - 0.011105, - 0.02167, - 0.022357, - 0.0039675, - 0.0096749, - 0.011064, - -0.019882, - -0.033525, - 0.012409, - 0.034422, - 0.0073894, - 0.085985, - 0.033698, - 0.048148, - 0.036105, - 0.066583, - -0.013496, - -0.017806, - -0.044035, - -0.12277, - -0.033608, - 0.03064, - 0.057147, - -0.0417, - 0.053822, - 0.026303, - -0.042359, - 0.048875, - 0.081452, - 0.10381, - -0.029038, - -0.0065007, - -0.052022, - -0.029198, - -0.0071417, - -0.012807, - -0.042058, - -0.027122, - 0.066388, - 0.015302, - 0.030805, - 0.042547, - -0.024889, - -0.038465, - 0.007334, - 0.025839, - 0.050021, - 0.11292, - 0.057159, - -0.022466, - -0.037152, - -0.064536, - 0.015996, - -0.042765, - -0.03231, - 0.029326, - 0.024557, - -0.064963, - 0.073502, - 0.10139, - -0.10346, - -0.011934, - 0.054676, - -0.053509, - -1.388e-7, - -0.035923, - -0.0096671, - 0.047666, - 0.062461, - -0.076721, - 0.04614, - 0.035109, - -0.029419, - -0.0052924, - -0.080861, - 0.043289, - -0.0081523, - 0.0016163, - 0.031104, - 0.015931, - -0.010328, - -0.053983, - 0.054893, - -0.023983, - -0.022131, - -0.013919, - 0.055365, - 0.036339 - ], - "regulations": [ - 0.0054281, - -0.018628, - 0.013049, - 0.019946, - 0.034915, - -0.030005, - 0.0046014, - -0.055178, - -0.0079824, - 0.016402, - 0.00068695, - -0.058895, - -0.0076733, - -0.038919, - 0.026285, - 0.057827, - 0.051067, - 0.0064651, - 0.0062795, - 0.045595, - 0.011913, - -0.0074573, - 0.051955, - 0.046238, - 0.023752, - -0.013864, - -0.02969, - -0.011396, - 0.057478, - -0.025614, - -0.0031699, - -0.048451, - -0.041951, - -0.05959, - 0.03933, - 0.022691, - -0.0035306, - 0.00053161, - 0.030728, - -0.015091, - 0.014022, - -0.093609, - 0.01585, - 0.025993, - -0.012955, - 0.011201, - 0.0079156, - -0.031895, - 0.0029648, - 0.0041126, - -0.036412, - -0.017022, - 0.074927, - 0.021584, - -0.055713, - 0.0083037, - 0.044105, - 0.02278, - -0.0064187, - -0.010884, - 0.048511, - 0.049063, - 0.091669, - 0.037764, - -0.0022514, - -0.008205, - -0.021687, - -0.017453, - 0.044732, - 0.000092896, - 0.0058048, - -0.04775, - -0.0055985, - 0.037047, - 0.011222, - 0.024161, - -0.023487, - -0.026928, - -0.0487, - 0.0047533, - 0.0045976, - -0.0013243, - -0.039156, - 0.059274, - 0.006939, - 0.021786, - 0.00079563, - -0.014544, - 0.046002, - -0.016364, - 0.029356, - -0.020487, - -0.054619, - 0.018887, - -0.015442, - 0.0072549, - 0.039207, - 0.0087504, - 0.025756, - 0.002139, - 0.0011006, - -0.0074103, - -0.036484, - -0.0076658, - 0.017424, - 0.0042401, - 0.01235, - -0.025849, - 0.0007882, - -0.011877, - 0.018181, - 0.023644, - 0.060023, - -0.016276, - -0.012453, - -0.0055418, - 0.003506, - -0.0026514, - -0.035598, - -0.0032841, - -0.028719, - 0.061825, - 0.027566, - 0.007961, - 0.074821, - -0.030984, - -0.02349, - -0.0043693, - 0.025268, - 0.12014, - -0.015971, - 0.039729, - 0.042932, - 0.012554, - -0.027749, - -0.023225, - -0.00080491, - 0.0071515, - -0.0081496, - 0.029502, - 0.027966, - 0.00096987, - -0.022366, - 0.021239, - -0.015351, - 0.011679, - -0.007749, - 0.010836, - 0.00032383, - -0.03056, - -0.01159, - 0.062368, - -0.0023525, - -0.027178, - 0.080869, - 0.0681, - 0.025379, - -0.022296, - 0.040688, - 0.0010407, - 0.057519, - -0.0054142, - -0.019757, - 0.0059032, - 0.054116, - -0.039487, - 0.039212, - -0.043333, - -0.0067349, - 0.0027353, - 0.00031271, - -0.0022185, - 0.0035224, - 0.015008, - -0.044525, - 0.032957, - -0.064948, - 0.032386, - -0.049168, - -0.013958, - 0.0033388, - 0.025431, - 0.01509, - 0.006905, - -0.0043808, - -0.011448, - 0.027046, - 0.069658, - 0.038719, - -0.034009, - -0.043805, - 0.088509, - -0.063326, - -0.0017865, - 0.021855, - 0.022207, - -0.021779, - 0.01367, - 0.012205, - -0.021408, - -0.1203, - -0.016274, - 0.017688, - -0.0017897, - -0.0070696, - 0.013348, - 0.013696, - -0.024944, - 0.0064735, - -0.01496, - 0.072872, - 0.032305, - 0.028923, - 0.041473, - -0.018603, - -0.0074413, - 0.042536, - 0.0053147, - -0.072311, - -0.073201, - -0.0075717, - -0.059878, - -0.030495, - 0.06983, - 0.061108, - 0.020536, - -0.026256, - 0.00041738, - -0.01667, - -0.0034509, - -0.032519, - -0.047578, - -0.045206, - 0.020265, - 0.0013158, - -0.037591, - 0.040205, - 0.047685, - 0.047703, - 0.05849, - 0.0038798, - 0.016813, - 0.0052501, - 0.010818, - 0.0061815, - 0.033524, - -0.002202, - -0.0569, - 0.012161, - 0.02517, - 0.030562, - -0.039717, - 0.000093182, - -0.029824, - -0.00311, - 0.034773, - 0.059963, - 0.014891, - -0.0057155, - -0.0025618, - -0.0039419, - -0.046162, - 0.010438, - -0.027517, - 0.030898, - 0.0311, - -0.00099962, - 0.046475, - -0.0089551, - -0.021261, - 0.0087422, - 0.036926, - -0.090147, - -0.021867, - -0.014853, - 0.0099824, - -0.003659, - 0.021697, - -0.032311, - -0.01993, - 0.021807, - 0.0084342, - 0.019474, - 0.010113, - 0.014323, - 0.032812, - -0.047126, - 0.0455, - 0.020847, - -0.0032019, - 0.015308, - -0.0091631, - 0.071414, - -0.032609, - -0.01858, - -0.048367, - -0.025284, - -0.026526, - -0.040152, - -0.012351 - ], - "topography": [ - 0.036354, - -0.049775, - 0.086267, - 0.0076408, - 0.019642, - -0.037889, - -0.0079005, - -0.067953, - 0.026739, - 0.031593, - 0.0047858, - -0.047962, - -0.043548, - 0.041017, - 0.011713, - -0.032973, - 0.061733, - 0.029253, - 0.029272, - -0.0099127, - 0.031717, - -0.0041778, - 0.024942, - 0.078597, - 0.02163, - -0.021452, - -0.046659, - 0.044643, - 0.035716, - 0.032662, - -0.0032343, - 0.065288, - 0.0061728, - -0.038548, - -0.0014396, - 0.039134, - 0.066453, - -0.024082, - 0.045672, - -0.059077, - 0.011145, - -0.10376, - 0.09569, - -0.026495, - -0.036395, - -0.0077786, - -0.014969, - -0.054421, - -0.04658, - 0.058337, - -0.0372, - -0.050347, - 0.018035, - 0.048779, - -0.022861, - 0.042817, - 0.024, - 0.0091464, - 0.0065603, - 0.013981, - 0.0081706, - 0.046199, - 0.058299, - -0.017402, - 0.059176, - -0.059553, - 0.0005138, - 0.037079, - 0.031208, - -0.0060143, - 0.0081738, - -0.014814, - -0.042172, - -0.0067877, - -0.0054585, - -0.039281, - 0.0024648, - -0.01989, - -0.035263, - -0.057722, - -0.044654, - 0.040704, - -0.019417, - 0.019234, - 0.0042092, - -0.033544, - 0.077881, - -0.046236, - 0.0052045, - 0.019553, - 0.025171, - 0.0088458, - -0.067204, - 0.024371, - -0.021198, - 0.050432, - -0.08072, - 0.056093, - 0.069196, - 0.011636, - 0.091497, - -0.040047, - 0.0012811, - 0.014051, - -0.026934, - -0.052104, - 0.015169, - 0.063566, - -0.012777, - 0.044328, - 0.0248, - 0.046374, - 0.055259, - 0.013535, - 0.015849, - 0.023649, - -0.01347, - 0.062853, - -0.036199, - 0.03984, - 0.056199, - -0.022882, - -0.0035209, - 0.010735, - 0.045029, - 0.012763, - -0.028755, - -0.038621, - -0.015615, - 0.13825, - 0.020868, - -0.041477, - -0.034468, - 0.020839, - 0.031554, - 0.011972, - 0.014133, - 0.022474, - -0.010569, - -0.030179, - -0.023221, - -0.032094, - -0.022539, - -0.00096651, - 0.013883, - -0.0049182, - -0.0052505, - -0.034389, - 0.011144, - -0.016044, - 0.0175, - 0.042519, - 0.049777, - -0.043435, - 0.027164, - 0.066701, - 0.0013326, - 0.044338, - 0.0064731, - 0.035579, - 0.030489, - -0.062099, - -0.1023, - -0.0020119, - -0.030467, - 0.019741, - 0.05362, - -0.027792, - 0.061461, - 0.076697, - -0.058323, - 0.0060874, - 0.029438, - -0.057421, - 0.021325, - 0.046234, - 0.022919, - 0.039575, - -0.042346, - -0.033906, - -0.0083629, - 0.025029, - -0.021604, - -0.048153, - -0.0014136, - -0.027938, - 0.0055465, - 0.099471, - -0.016428, - -0.0061145, - 0.086987, - 0.036787, - -0.035336, - 0.0024812, - -0.070063, - 0.016286, - -0.061938, - 0.0022227, - -0.0054825, - 0.037503, - -0.11933, - -0.077557, - 0.041887, - -0.04869, - 0.060271, - 0.059398, - 0.020586, - 0.062306, - -0.082452, - 0.032837, - 0.068852, - 0.0098792, - 0.046703, - -0.048287, - 0.047855, - -0.0037362, - 0.0013409, - 0.008556, - -0.072786, - -0.042885, - -0.054789, - 0.046043, - -0.0050161, - 0.058726, - 0.00082465, - -0.000964, - 0.043847, - 0.016416, - -0.027, - -0.0060188, - -0.040084, - -0.024468, - -0.070497, - -0.017933, - 0.0077007, - 0.059872, - 0.051143, - 0.070227, - -0.0078288, - -0.0041027, - -0.0063284, - 0.054645, - -0.02423, - 0.0095211, - 0.0054489, - 0.017529, - 0.0099765, - -0.060303, - -0.045638, - -0.020416, - 0.029552, - -0.097185, - 0.010721, - -0.057967, - 0.015001, - 0.05458, - -0.030763, - 0.042515, - 0.025665, - 0.051064, - 0.006498, - 0.028601, - -0.062474, - -0.0074764, - -0.022003, - -0.071193, - -0.047221, - 0.014804, - -0.028506, - 0.014584, - -0.031792, - 0.081598, - -0.084544, - -0.024845, - 0.026186, - -0.026346, - -0.015546, - 0.0094375, - 0.012607, - -0.027461, - 0.09348, - -0.017371, - -0.022222, - 0.029081, - -0.0024822, - -0.0021244, - -0.05194, - 0.029609, - -0.070854, - -0.0096476, - -0.079773, - -0.0010837, - -0.000012782, - -0.0054607, - 0.013829, - 0.020152, - 0.014278, - 0.031521, - -0.008297, - -0.022498 - ], - "family": [ - -0.010931, - -0.010167, - 0.050513, - 0.036874, - -0.053489, - -0.0043454, - -0.0092632, - -0.071248, - 0.046077, - 0.02061, - -0.030754, - -0.077901, - -0.0086284, - -0.052523, - -0.040799, - -0.0098661, - 0.10097, - -0.043379, - 0.021775, - 0.077145, - 0.00022749, - 0.0070822, - -0.014086, - 0.088007, - 0.051495, - -0.020923, - -0.042083, - 0.016894, - 0.033253, - 0.034017, - 0.017162, - -0.027198, - 0.021047, - -0.012961, - -0.010177, - 0.059336, - -0.070334, - 0.0097628, - 0.045769, - -0.018354, - -0.0066312, - -0.11339, - 0.064435, - -0.061646, - -0.000075355, - -0.023169, - -0.033952, - 0.0044101, - -0.072525, - 0.0061964, - 0.04169, - 0.0074002, - 0.0018254, - 0.030267, - -0.012745, - -0.039279, - -0.047429, - -0.035096, - -0.067595, - -0.030224, - -0.01609, - -0.042706, - 0.12136, - 0.064094, - 0.078363, - 0.013116, - -0.015032, - -0.044293, - -0.039385, - -0.047567, - 0.083884, - -0.037953, - 0.044935, - -0.038406, - 0.012515, - 0.051923, - 0.036799, - -0.013647, - 0.066215, - 0.025063, - 0.0059924, - 0.058915, - 0.039314, - 0.05744, - -0.10664, - -0.079858, - 0.033506, - 0.027221, - -0.021073, - 0.02336, - 0.03725, - 0.054682, - -0.1083, - 0.039391, - -0.017819, - 0.11412, - -0.04241, - 0.057573, - 0.097778, - -0.044221, - 0.018366, - -0.025608, - -0.0029479, - -0.077658, - 0.01867, - -0.16268, - -0.056048, - -0.027555, - 0.022906, - 0.0077563, - -0.038824, - 0.056742, - 0.06997, - 0.017802, - -0.00062581, - -0.016227, - -0.0037687, - -0.034099, - -0.022088, - -0.035284, - -0.037297, - -0.0076031, - 0.061001, - 0.0010908, - 0.059729, - 0.028122, - 0.038865, - -0.099422, - -0.0010276, - 0.08556, - 0.069096, - 0.012064, - 0.055184, - -0.034256, - -0.014015, - 0.039404, - -0.013287, - 0.031827, - 0.018922, - 0.021912, - 0.052123, - -0.044085, - -0.070532, - 0.051942, - 0.020796, - 0.023732, - 0.033852, - 0.023359, - -0.02701, - -0.052008, - 0.022824, - 0.12825, - -0.005663, - -0.066789, - 0.069807, - 0.010781, - 0.046923, - 0.019811, - 0.098098, - -0.06876, - 0.0028759, - 0.012248, - -0.019896, - -0.0050214, - -0.049112, - 0.067124, - -0.011824, - 0.030065, - -0.027624, - -0.00019686, - 0.0048342, - 0.0016594, - -0.0099669, - 0.0067062, - -0.034512, - 0.012795, - 0.019044, - 0.042303, - -0.017646, - -0.047608, - -0.0037501, - -0.075053, - 0.00037124, - 0.021302, - -0.009702, - -0.04963, - -0.024909, - 0.075502, - 0.086967, - -0.04252, - -0.048875, - 0.085087, - 0.014744, - 0.0066214, - -0.033054, - -0.014013, - 0.0047213, - 0.039642, - -0.003867, - 0.01034, - -0.13048, - 0.056017, - -0.0037638, - -0.064571, - -0.017707, - 0.014534, - -0.029545, - -0.088015, - 0.015034, - -0.068071, - 0.11035, - -0.0099038, - 0.02369, - -0.027425, - -0.088417, - 0.018778, - -0.05555, - 0.048641, - 0.043728, - -0.020769, - 0.042815, - -0.088681, - 0.021788, - 0.1031, - 0.0046116, - -0.059194, - 0.010189, - 0.075048, - -0.013687, - -0.066615, - 0.037065, - -0.030132, - -0.090549, - 0.0071013, - 0.0099775, - 0.043063, - -0.00074855, - 0.0195, - -0.013568, - -0.043481, - 0.069114, - -0.0049511, - 0.050229, - 0.053381, - 0.018063, - 0.0011207, - -0.0070779, - -0.00068149, - -0.019613, - -0.020503, - 0.014527, - -0.0087619, - -0.00397, - 0.04007, - -0.012844, - -0.051479, - -0.048417, - 0.064634, - -0.026005, - -0.019455, - -0.015128, - -0.0075498, - -0.0092449, - 0.00088503, - 0.075091, - -0.0067593, - -0.054505, - 0.038967, - 0.026864, - 0.011726, - -0.021948, - 0.053043, - -0.10811, - -0.046799, - 0.038481, - -0.039029, - -0.0018464, - -0.002926, - 0.004088, - 0.068712, - 0.074504, - -0.012936, - -0.0099986, - 0.023665, - 0.024604, - 0.063961, - -0.0077391, - -0.065578, - -0.031386, - 0.0011745, - 0.01273, - 0.08755, - -0.016387, - -0.065229, - 0.0019995, - 0.08776, - 0.064396, - 0.052292, - -0.0069684, - -0.000075863 - ], - "Catholicism": [ - 0.092796, - -0.0062721, - 0.0939, - -0.066253, - 0.0088447, - 0.034699, - -0.019894, - -0.05781, - 0.018249, - -0.0043571, - -0.038971, - -0.035703, - 0.036968, - -0.074251, - -0.054564, - -0.015126, - 0.060049, - 0.041497, - 0.0019551, - -0.036464, - -0.05438, - 0.0045898, - 0.021868, - 0.031873, - -0.000012647, - 0.020995, - -0.0021205, - 0.017473, - 0.032491, - 0.057102, - 0.0029257, - 0.030998, - -0.054742, - 0.012772, - 0.025522, - 0.027463, - 0.0088179, - 0.025403, - 0.012624, - 0.016842, - 0.024348, - -0.036199, - 0.046909, - -0.0018968, - 0.015319, - -0.00048245, - -0.017937, - 0.035362, - -0.0051801, - -0.024222, - -0.00039943, - 0.00047894, - 0.0026738, - 0.030413, - -0.036658, - 0.022259, - 0.027596, - -0.021061, - -0.023689, - -0.01002, - 0.028735, - 0.038275, - 0.0087872, - -0.041992, - -0.014259, - 0.019995, - -0.0075701, - 0.044019, - 0.058197, - -0.036783, - 0.020042, - 0.054315, - 0.0069453, - 0.044967, - 0.0071184, - -0.022048, - 0.03674, - -0.0033714, - 0.056652, - 0.058179, - 0.023276, - 0.041234, - -0.056103, - 0.02479, - -0.022245, - -0.013923, - 0.031849, - -0.017378, - 0.0002168, - 0.020242, - -0.021281, - 0.0070909, - -0.065575, - -0.0018769, - -0.019905, - 0.030324, - -0.023442, - -0.0074838, - -0.0164, - -0.01426, - -0.037185, - 0.022162, - 0.02045, - -0.068983, - -0.02045, - -0.053133, - 0.047188, - 0.0048487, - -0.070282, - 0.0023616, - 0.022176, - 0.058269, - 0.043797, - -0.04313, - 0.0061104, - 0.022441, - 0.057413, - 0.051219, - -0.010843, - 0.029567, - 0.026481, - -0.042989, - -0.049889, - -0.075985, - 0.014123, - 0.026042, - -0.069935, - -0.0056261, - -0.023959, - 0.13831, - -0.011746, - -0.0067613, - -0.00059858, - -0.062263, - -0.0057611, - 0.021462, - -0.013209, - 0.034244, - 0.054292, - -0.079895, - 0.023815, - 0.0016074, - -0.021791, - 0.024185, - 0.0068259, - 0.008882, - 0.014149, - -0.0081208, - -0.020801, - -0.037414, - 0.029106, - 0.017546, - -0.046904, - -0.0077421, - -0.035856, - 0.068886, - 0.0085059, - -0.043848, - -0.016707, - 0.004639, - 0.022249, - 0.0050186, - -0.064934, - -0.097354, - -0.00070716, - 0.026418, - 0.035613, - -0.021592, - 0.001944, - -0.017336, - -0.01259, - -0.019394, - -0.044148, - -0.023833, - 0.0061457, - 0.035808, - 0.025014, - 0.0062751, - -0.0028709, - -0.037778, - 0.015867, - -0.032386, - 0.0018718, - 0.003475, - 0.072485, - -0.010996, - 0.046499, - 0.087933, - -0.032633, - -0.12702, - 0.0070167, - 0.078935, - -0.068285, - 0.014604, - 0.048696, - -0.0098791, - -0.075585, - 0.0014115, - -0.017339, - -0.042637, - -0.11036, - 0.032454, - 0.017457, - -0.047339, - -0.045465, - 0.071115, - 0.096864, - 0.015354, - 0.021707, - 0.013234, - 0.084897, - 0.0031996, - -0.025604, - -0.0055762, - 0.069321, - 0.038862, - 0.019441, - -0.018984, - -0.0039888, - -0.049597, - -0.026977, - -0.034835, - -0.0031802, - 0.070426, - 0.022741, - -0.059789, - 0.051123, - 0.053986, - -0.018202, - -0.029614, - 0.031938, - -0.021592, - -0.065985, - -0.038254, - 0.034017, - 0.028594, - -0.023286, - -0.010267, - 0.025044, - 0.0043293, - 0.018004, - -0.036425, - 0.01557, - 0.015574, - 0.060809, - 0.043492, - -0.036247, - -0.054648, - -0.013632, - -0.037234, - 0.075248, - -0.03898, - -0.075022, - 0.0023808, - 0.030169, - 0.009077, - 0.0044905, - 0.032692, - 0.032146, - 0.024757, - -0.0058504, - 0.0018238, - 0.10247, - -0.0075119, - 0.038841, - -0.032219, - -0.036029, - -0.028486, - 0.013833, - -0.0055436, - 0.011712, - 0.073509, - -0.059177, - 0.0051243, - -0.03202, - -0.016722, - -0.02353, - -0.038455, - -0.02982, - 0.030662, - 0.06942, - 0.013462, - 0.032531, - -0.03097, - 0.018605, - -0.0011689, - 0.062475, - -0.0013181, - -0.040009, - 0.050207, - 0.0056453, - 0.048589, - 0.010837, - 0.012134, - -0.010262, - 0.010743, - -0.0068675, - 0.033903, - 0.013998, - 0.0047624 - ], - "enactment": [ - -0.019288, - -0.013374, - 0.063341, - 0.035449, - 0.015525, - 0.038208, - 0.0052675, - -0.095684, - -0.018019, - 0.01232, - 0.045302, - -0.0089271, - 0.013174, - -0.019661, - -0.0076524, - 0.083233, - 0.059285, - -0.010405, - 0.037268, - 0.073466, - -0.016353, - -0.032973, - 0.017327, - 0.030285, - 0.0080912, - -0.024689, - -0.030968, - -0.0079005, - 0.012664, - -0.032227, - 0.02879, - -0.075087, - -0.05566, - -0.10895, - -0.018079, - 0.074531, - -0.012231, - -0.010761, - 0.013901, - -0.024077, - 0.0012735, - -0.048621, - 0.0074622, - -0.015948, - -0.021761, - 0.097044, - -0.029625, - 0.021386, - -0.0094239, - 0.028025, - 0.021205, - -0.020547, - 0.015216, - 0.0078264, - -0.083014, - -0.049203, - 0.069136, - -0.026396, - 0.012817, - -0.0056665, - -0.0063973, - -0.015191, - 0.023196, - -0.0046492, - 0.053392, - -0.016178, - -0.011533, - -0.018378, - 0.031772, - 0.018663, - -0.057198, - -0.018057, - -0.059889, - 0.016094, - 0.0057142, - -0.0089512, - -0.026809, - -0.030286, - -0.0050074, - 0.047761, - 0.065846, - 0.005402, - 0.010207, - 0.027901, - -0.021061, - 0.027523, - -0.010924, - -0.0081514, - -0.0040047, - 0.034913, - 0.048617, - -0.03517, - -0.046148, - -0.026697, - -0.057234, - 0.011388, - -0.038524, - -0.00026315, - 0.043408, - 0.029689, - 0.0023246, - -0.053632, - -0.0098802, - 0.017773, - -0.016957, - 0.0011799, - 0.055829, - 0.0011806, - -0.010582, - -0.033084, - -0.0083992, - 0.027299, - 0.045284, - 0.006512, - -0.02717, - 0.033152, - -0.024193, - -0.01162, - -0.042471, - 0.042963, - -0.043197, - 0.084362, - 0.013228, - 0.0918, - 0.014924, - 0.063266, - -0.0029174, - -0.041099, - 0.016958, - 0.094738, - 0.0032969, - 0.017347, - -0.010984, - 0.049806, - 0.028247, - -0.057916, - -0.018848, - 0.0051268, - 0.0653, - -0.039073, - 0.0051288, - -0.032929, - -0.012538, - 0.013702, - -0.023114, - -0.0049728, - -0.037139, - 0.01023, - 0.010731, - 0.064017, - 0.0046125, - 0.0028855, - 0.014858, - -0.069547, - 0.023226, - 0.017908, - 0.0068514, - -0.022796, - -0.050019, - -0.020599, - 0.041592, - 0.059445, - -0.012721, - 0.01743, - 0.01783, - -0.051223, - 0.051023, - -0.013486, - 0.013361, - -0.046175, - 0.042761, - -0.011052, - -0.0067009, - 0.020885, - -0.062657, - 0.044388, - -0.017459, - 0.0044291, - -0.061722, - -0.045398, - -0.070575, - -0.070235, - 0.038116, - 0.04173, - -0.059685, - -0.00065573, - 0.020867, - 0.091921, - 0.030061, - 0.018787, - 0.023579, - 0.051383, - -0.060188, - -0.056361, - 0.0072521, - -0.072174, - -0.0071596, - 0.038548, - -0.024098, - -0.053183, - -0.11841, - 0.10193, - 0.027927, - -0.005147, - 0.075283, - 0.028427, - 0.044919, - 0.031879, - 0.0048773, - -0.0032167, - 0.091677, - 0.023935, - 0.0005225, - 0.01292, - 0.01992, - 0.0092083, - 0.059363, - -0.0022051, - 0.0073268, - -0.14585, - 0.0037511, - -0.041953, - 0.014175, - 0.069033, - -0.0045757, - -0.046379, - 0.044117, - 0.052091, - -0.050321, - -0.0097442, - -0.024245, - -0.10377, - 0.033062, - -0.023671, - 0.022034, - -0.096658, - 0.011402, - -0.013993, - -0.0082768, - 0.056998, - 0.03606, - 0.0048572, - -0.066316, - 0.0055596, - -0.0316, - 0.073778, - -0.047103, - -0.083154, - -0.034783, - 0.031116, - 0.076905, - -0.024656, - 0.032494, - 0.040027, - 0.076157, - 0.078133, - 0.010999, - 0.039631, - 0.0095519, - 0.0038745, - 0.03671, - 0.013131, - -0.052482, - -0.0047802, - 0.0049682, - 0.0069538, - 0.020202, - 0.023234, - -0.037107, - -0.048475, - 0.040126, - 0.076705, - -0.094573, - -0.023271, - -0.04269, - -0.027532, - 0.010665, - 0.066474, - -0.068096, - 0.0055219, - 0.053064, - 0.0014157, - -0.018817, - -0.012821, - 0.008223, - 0.035529, - -0.0061168, - 0.0081889, - 0.047406, - -0.0074019, - 0.02783, - 0.0068323, - 0.014514, - 0.024458, - -0.0038022, - 0.043765, - 0.022988, - -0.071035, - -0.035108, - -0.00076012 - ], - "schooling": [ - 0.04099, - -0.006395, - 0.039719, - -0.024666, - 0.028496, - -0.045674, - -0.055503, - -0.074036, - 0.065716, - -0.020262, - 0.037519, - -0.077299, - -0.011805, - 0.016166, - -0.0075206, - -0.0018886, - 0.039859, - 0.055584, - 0.017266, - 0.085564, - 0.015355, - 0.0029134, - -0.013704, - 0.043753, - -0.08568, - 0.065153, - -0.0011671, - -0.029927, - 0.010535, - 0.022215, - 0.01729, - 0.0078759, - -0.042878, - -0.07929, - 0.035498, - 0.074577, - 0.030137, - -0.02351, - 0.027252, - -0.0025245, - -0.008155, - -0.054209, - 0.060241, - 0.046091, - 0.028583, - -0.043752, - -0.05685, - 0.0010104, - -0.042244, - 0.05499, - -0.044947, - 0.049756, - 0.0086016, - -0.019715, - -0.053378, - 0.0059303, - -0.037426, - -0.027162, - -0.0084159, - -0.05966, - 0.020126, - 0.0091466, - 0.054623, - 0.075756, - 0.031096, - -0.035041, - -0.011317, - -0.077347, - 0.01319, - -0.017007, - -0.039855, - -0.061549, - 0.0073495, - -0.02984, - 0.0066632, - -0.015913, - 0.037658, - 0.0051607, - -0.011651, - 0.047085, - -0.01605, - -0.031857, - -0.0093071, - 0.049882, - -0.059125, - 0.065943, - -0.05199, - -0.025487, - -0.083796, - 0.052159, - 0.037851, - 0.03272, - -0.070959, - 0.014979, - -0.019187, - 0.060698, - 0.013728, - -0.02484, - 0.0039109, - 0.010467, - 0.077907, - -0.057649, - 0.044818, - -0.017595, - 0.01766, - -0.05543, - 0.045238, - 0.025947, - 0.02367, - 0.064621, - 0.035762, - 0.05584, - 0.032121, - 0.07475, - -0.026722, - -0.016297, - -0.036069, - 0.054871, - -0.023411, - 0.012935, - 0.016419, - -0.014259, - 0.016998, - 0.031901, - 0.01948, - -0.015571, - -0.049457, - -0.070374, - -0.053475, - 0.10634, - 0.015872, - 0.012936, - 0.052084, - -0.02573, - -0.072225, - -0.010603, - 0.0025358, - 0.0079927, - 0.044896, - -0.0012282, - 0.018786, - -0.030617, - 0.023395, - 0.069929, - 0.0095802, - -0.056627, - 0.01597, - 0.0041931, - -0.013564, - -0.0098005, - 0.051041, - 0.050926, - -0.045269, - -0.088149, - 0.0349, - 0.072661, - 0.039748, - 0.019446, - 0.021768, - -0.048303, - 0.029845, - -0.042465, - -0.039251, - -0.024801, - -0.0094394, - 0.027242, - 0.063602, - -0.016385, - 0.0084151, - -0.005834, - 0.062455, - 0.041817, - -0.049548, - 0.0174, - 0.02147, - 0.035495, - 0.0034151, - 0.044697, - -0.0046389, - -0.066514, - -0.0059961, - -0.023958, - -0.064137, - 0.02007, - 0.029617, - -0.051116, - 0.017618, - 0.09844, - -0.009023, - 0.0063213, - 0.023099, - 0.055619, - 0.012926, - -0.046378, - 0.020773, - -0.034956, - 0.038011, - 0.070548, - 0.067271, - -0.014589, - -0.12963, - 0.056527, - -0.013778, - -0.024378, - -0.028899, - 0.057493, - -0.0054472, - -0.013906, - 0.010749, - -0.00084512, - 0.091793, - -0.0043568, - 0.0038496, - 0.0041453, - -0.010688, - 0.0097933, - -0.005531, - -0.05177, - -0.028663, - -0.054095, - -0.01834, - -0.012809, - -0.051777, - 0.079153, - 0.0064916, - -0.071173, - -0.0013511, - 0.074898, - -0.020895, - -0.045958, - 0.058994, - -0.050819, - -0.063044, - 0.0043146, - 0.038839, - 0.048398, - 0.048705, - 0.036345, - -0.041268, - -0.07693, - 0.018735, - -0.037869, - 0.058135, - -0.045372, - -0.021345, - 0.066187, - 0.0024896, - -0.070869, - -0.0014378, - 0.0273, - 0.015623, - -0.025142, - -0.024064, - -0.014655, - 0.031249, - 0.00025499, - -0.038541, - 0.012525, - 0.0033151, - -0.020338, - -0.0058191, - -0.016847, - 0.031862, - 0.017537, - 0.033082, - 0.067075, - -0.014246, - 0.039254, - 0.023045, - 0.016794, - 0.012185, - 0.039765, - -0.091023, - -0.016492, - -0.047214, - -0.013671, - 0.02166, - -0.01804, - 0.019739, - 0.070968, - 0.059299, - -0.010493, - 0.021936, - -0.0098791, - 0.031032, - 0.053835, - 0.046375, - 0.028538, - -0.029668, - 0.026265, - -0.032311, - 0.057648, - -0.051416, - -0.012112, - -0.054866, - 0.069193, - 0.023359, - 0.0036161, - -0.0033587, - -0.021558 - ], - "private": [ - 0.063352, - -0.042694, - 0.044854, - 0.0040005, - -0.030129, - 0.03111, - 0.0332, - -0.10249, - 0.035166, - 0.0059712, - -0.0024966, - -0.048507, - -0.012195, - -0.029277, - -0.037793, - 0.037359, - 0.11568, - 0.0082785, - 0.055979, - 0.057381, - -0.0081775, - 0.030652, - 0.061737, - 0.074155, - -0.044747, - 0.031805, - -0.004631, - 0.043319, - 0.0029075, - -0.0046512, - -0.018207, - -0.01729, - -0.089333, - -0.058508, - 0.060952, - 0.030341, - -0.029592, - 0.028809, - 0.051996, - 0.071026, - 0.021159, - -0.10382, - -0.023916, - 0.055426, - -0.018904, - -0.020531, - 0.0029729, - 0.023191, - -0.037693, - 0.015726, - 0.0011799, - 0.0040083, - 0.052313, - -0.02557, - -0.038669, - -0.056264, - -0.090189, - 0.029473, - -0.042489, - -0.06484, - 0.022095, - 0.013945, - 0.1539, - -0.027937, - 0.056155, - -0.050557, - -0.02546, - -0.03872, - -0.0018827, - -0.0067421, - 0.049036, - 0.0025998, - 0.1005, - 0.050058, - -0.059409, - 0.02252, - -0.0074449, - -0.013316, - 0.04455, - 0.038435, - -0.04745, - -0.036416, - 0.010758, - 0.065416, - -0.082148, - -0.028592, - -0.0046886, - -0.0043615, - -0.051177, - 0.057732, - -0.026469, - 0.038967, - -0.11605, - -0.025903, - 0.0086992, - 0.079068, - 0.010986, - -0.028025, - 0.024848, - 0.022184, - -0.031971, - -0.0092842, - 0.044242, - -0.0075855, - 0.086117, - -0.13527, - 0.063113, - -0.019275, - 0.0096312, - 0.03525, - -0.0054491, - 0.11488, - 0.02884, - 0.07801, - 0.024388, - -0.047472, - 0.024665, - 0.015643, - -0.051173, - 0.010862, - -0.017932, - 0.032181, - 0.010834, - -0.013285, - 0.051459, - -0.03268, - 0.015427, - -0.063733, - -0.033093, - 0.040499, - -0.02454, - 0.074343, - 0.040322, - 0.0083875, - -0.017257, - -0.072338, - 0.0085984, - 0.030313, - -0.019716, - 0.017525, - 0.011263, - -0.037151, - -0.012804, - 0.0063562, - 0.0004073, - -0.078971, - -0.012583, - -0.024476, - 0.070033, - -0.043946, - 0.040926, - 0.097237, - 0.045081, - -0.04004, - 0.045366, - 0.010082, - -0.011062, - 0.021444, - -0.036294, - -0.0093852, - 0.028258, - -0.014392, - 0.009508, - 0.056412, - -0.032367, - -0.001589, - 0.036705, - 0.022147, - 0.005577, - 0.0015306, - 0.011219, - 0.018003, - 0.0072463, - -0.010063, - -0.068297, - 0.048102, - -0.026245, - 0.030081, - -0.032418, - -0.0093831, - 0.027528, - -0.019604, - -0.032213, - 0.021541, - 0.0033423, - -0.032323, - -0.034, - 0.10347, - 0.051083, - -0.030577, - 0.0093606, - 0.054906, - 0.059197, - 0.0077119, - -0.030665, - -0.020977, - 0.0046569, - -0.011629, - 0.0040247, - -0.04966, - -0.165, - 0.092013, - -0.043029, - -0.0034352, - 0.047429, - -0.017742, - -0.025021, - -0.0042944, - 0.0067469, - -0.017074, - 0.15618, - 0.0046226, - -0.054159, - 0.0094062, - -0.039572, - 0.00090645, - -0.03664, - -0.081237, - 0.012282, - 0.02171, - 0.029528, - -0.09738, - -0.058636, - 0.097469, - -0.0081132, - 0.022956, - 0.0008985, - 0.060217, - -0.0046298, - -0.074964, - -0.01836, - -0.021551, - -0.04244, - -0.050048, - 0.018493, - 0.022959, - -0.021581, - 0.015216, - -0.01517, - -0.021278, - 0.057497, - -0.016769, - 0.060125, - -0.0049806, - -0.13563, - 0.0076206, - -0.030644, - 0.020017, - -0.0119, - -0.0056133, - -0.010016, - -0.047597, - -0.0078838, - -0.031962, - -0.00054833, - 0.010549, - -0.0463, - 0.015038, - -0.045444, - 0.015096, - -0.011553, - -0.039922, - -0.024655, - 0.007884, - -0.0016368, - 0.037628, - 0.024212, - -0.0071582, - -0.009141, - 0.069869, - -0.043944, - 0.064576, - -0.11834, - -0.062348, - 0.016251, - -0.068424, - -0.00055882, - -0.006111, - 0.060606, - 0.033717, - 0.13924, - -0.065719, - 0.014923, - -0.00097575, - -0.033918, - -0.01139, - -0.032542, - -0.046167, - 0.0076606, - 0.041469, - -0.040585, - 0.026876, - -0.013197, - 0.045411, - -0.018731, - 0.059774, - -0.043898, - -0.013533, - -0.012317, - 0.00049885 - ], - "womenswear": [ - -0.041521, - -0.08536, - -0.0056486, - -0.032679, - 0.049649, - -0.01874, - -0.03414, - -0.068594, - -0.0067829, - -0.048592, - -0.0015926, - -0.036181, - -0.11863, - -0.0062434, - -0.045723, - 0.0020474, - 0.027822, - 0.053111, - 0.041025, - 0.014261, - 0.013791, - 0.0032722, - -0.051828, - 0.035812, - 0.042361, - 0.041014, - 0.036207, - 0.038112, - 0.033651, - -0.01132, - -0.000042337, - -0.04231, - 0.028922, - -0.037475, - 0.024427, - -0.012692, - 0.063614, - 0.030382, - -0.079619, - 0.048512, - -0.0081691, - -0.042859, - -0.0081476, - -0.067422, - -0.056603, - -0.035212, - 0.05929, - -0.0050808, - 0.017451, - -0.033098, - 0.028797, - -0.046142, - -0.070843, - 0.081793, - -0.041198, - -0.001217, - -0.030179, - -0.00041571, - -0.05693, - 0.015398, - -0.073063, - -0.02325, - 0.068602, - 0.020652, - 0.042783, - 0.0057929, - 0.011322, - -0.026914, - 0.012422, - -0.074602, - -0.06554, - -0.057935, - 0.052055, - -0.033822, - -0.037995, - 0.046454, - 0.031877, - -0.0018425, - 0.047175, - 0.052701, - -0.019539, - -0.0086013, - 0.0023808, - 0.080341, - 0.040213, - 0.054783, - -0.035177, - -0.018791, - -0.0027359, - 0.00902, - 0.033203, - 0.037836, - -0.064559, - 0.036932, - 0.022631, - 0.033194, - -0.053856, - 0.040618, - 0.0039529, - -0.013534, - 0.033357, - 0.032163, - -0.011816, - 0.086604, - -0.012559, - -0.051132, - -0.036214, - 0.075786, - -0.014477, - 0.0027009, - 0.014193, - 0.059184, - 0.018865, - 0.079763, - -0.03107, - -0.021306, - -0.0068112, - -0.012449, - -0.024166, - 0.024934, - 0.036228, - 0.0088594, - 0.042505, - 0.006263, - 0.030178, - -0.0070826, - 0.01555, - -0.07756, - 0.065181, - 0.050813, - -0.0081897, - 0.018305, - 0.050593, - -0.017507, - -0.03632, - 0.027129, - 0.0037511, - 0.047898, - -0.035928, - -0.10242, - 0.0048711, - -0.02634, - 0.047812, - 0.00076482, - -0.047945, - -0.028667, - -0.027095, - 0.017043, - 0.032024, - -0.0023659, - 0.034893, - 0.063262, - 0.028791, - -0.027208, - -0.0058272, - 0.016596, - 0.030772, - 0.023648, - 0.042348, - 0.16953, - 0.023424, - -0.05525, - -0.021198, - 0.06646, - -0.024338, - 0.023974, - -0.052738, - -0.067027, - -0.019688, - 0.025027, - 0.053937, - -0.094793, - -0.0033151, - -0.084023, - -0.0030605, - 0.030564, - -0.030288, - 0.032764, - -0.054466, - -0.033111, - 0.01472, - -0.031927, - 0.024818, - -0.06243, - 0.065889, - -0.034171, - -0.027941, - 0.096005, - -0.10111, - 0.05716, - -0.070267, - 0.016299, - -0.016546, - -0.08731, - 0.044729, - -0.027582, - -0.0031323, - 0.04787, - 0.029665, - -0.018647, - -0.14363, - 0.056908, - -0.051803, - -0.019126, - -0.021797, - 0.071683, - 0.0028835, - -0.056792, - 0.06133, - -0.02891, - 0.13201, - -0.010075, - -0.030188, - -0.079826, - -0.0035412, - -0.025735, - -0.028932, - -0.011196, - -0.0081552, - 0.016219, - -0.052106, - -0.0072784, - 0.046854, - 0.094705, - -0.02122, - 0.017998, - -0.010687, - 0.060318, - 0.087772, - -0.0162, - 0.06595, - -0.090603, - -0.058072, - -0.06839, - 0.012253, - 0.025936, - -0.022955, - -0.075497, - 0.058437, - -0.020876, - 0.007542, - -0.037621, - -0.031513, - -0.0053768, - -0.054282, - -0.017233, - -0.099563, - -0.028219, - -0.0091741, - -0.023996, - 0.010736, - -0.025871, - 0.017713, - 0.054101, - -0.014503, - 0.041957, - -0.043242, - -0.023178, - 0.10103, - 0.029592, - 0.020593, - -0.027375, - -0.031492, - -0.017777, - -0.016871, - -0.00042251, - 0.057968, - -0.01015, - 0.041806, - -0.0078324, - 0.031694, - 0.066189, - -0.09929, - -0.029838, - -0.0349, - -0.051284, - 0.0090272, - -0.038408, - -0.11243, - 0.030729, - 0.018351, - -0.0099951, - -0.013087, - -0.0054869, - -0.013553, - -0.053987, - -0.014713, - -0.025018, - 0.029229, - 0.01879, - -0.096642, - 0.085942, - -0.010687, - 0.017206, - -0.062752, - -0.092132, - 0.02436, - 0.033447, - 0.048247, - 0.0043541 - ], - "aesthetics": [ - 0.009224, - -0.035178, - 0.044305, - 0.0026565, - -0.0012071, - -0.0072324, - -0.040169, - -0.047843, - 0.058916, - 0.0034486, - 0.016792, - -0.065507, - 0.0023432, - 0.0013574, - -0.011001, - -0.018173, - 0.066246, - 0.044577, - 0.022433, - 0.0090595, - -0.027444, - -0.045276, - 0.090139, - 0.053304, - 0.054692, - -0.0040406, - -0.03062, - 0.047359, - 0.055178, - 0.039416, - -0.026215, - -0.055035, - 0.025488, - -0.038914, - -0.014835, - 0.021095, - 0.046792, - 0.037688, - -0.053271, - -0.026713, - 0.0097291, - -0.085347, - -0.061028, - 0.019984, - -0.019192, - -0.046695, - 0.032761, - -0.028984, - -0.040041, - 0.0029738, - -0.011638, - -0.054834, - -0.0030391, - 0.037311, - -0.031248, - 0.0076159, - 0.018021, - 0.03094, - 0.014627, - 0.011597, - 0.013208, - -0.07597, - 0.068636, - 0.027969, - 0.084958, - 0.071738, - 0.020754, - 0.0071289, - 0.040965, - 0.016586, - 0.09524, - 0.037509, - 0.016275, - -0.0083858, - 0.043854, - -0.019334, - -0.016587, - -0.047429, - 0.0040898, - -0.019417, - -0.022359, - 0.0026022, - -0.022738, - 0.02528, - -0.034097, - -0.061999, - 0.015075, - -0.02823, - 0.0094676, - 0.03566, - 0.04572, - 0.0067263, - -0.065942, - 0.022898, - 0.0085925, - 0.037241, - -0.021604, - -0.028843, - -0.0012684, - 0.059912, - 0.065724, - 0.095213, - 0.0016163, - 0.038419, - -0.012315, - -0.015534, - -0.017136, - 0.041609, - 0.025929, - 0.012399, - 0.032745, - 0.097641, - 0.041297, - -0.0093658, - -0.048513, - 0.022204, - -0.020545, - 0.0017756, - -0.048415, - 0.038808, - -0.031719, - 0.010236, - -0.061629, - -0.045406, - 0.043423, - -0.0030669, - -0.045713, - -0.070129, - 0.046077, - 0.1334, - 0.038017, - -0.022364, - 0.064255, - 0.013613, - -0.0072858, - 0.0073403, - 0.049047, - 0.015839, - -0.000087741, - -0.0046805, - 0.01095, - -0.0080227, - 0.048255, - 0.060718, - 0.017842, - -0.11307, - -0.011271, - -0.034773, - 0.0078703, - 0.0059297, - 0.053332, - 0.045519, - 0.00077141, - -0.019305, - -0.045516, - 0.099483, - 0.042529, - 0.025222, - 0.038431, - 0.0082211, - 0.025335, - -0.054323, - -0.11854, - 0.0090525, - 0.03459, - 0.050622, - 0.035871, - -0.0034451, - -0.00079487, - 0.016399, - 0.046071, - 0.0085918, - 0.018073, - -0.028627, - 0.071358, - 0.043773, - 0.020527, - 0.039484, - -0.036658, - -0.017773, - -0.018589, - 0.053259, - -0.00066385, - -0.068331, - -0.018329, - -0.038178, - 0.014625, - 0.091999, - -0.010017, - -0.0064369, - -0.0048913, - 0.083949, - -0.042108, - -0.044049, - -0.041522, - -0.020563, - 0.006305, - -0.045815, - 0.043009, - -0.0023079, - -0.10152, - -0.031936, - 0.0054821, - -0.08095, - 0.0044241, - -0.027956, - -0.015053, - 0.061724, - -0.035909, - 0.0027484, - 0.078943, - 0.0044364, - 0.014753, - 0.011612, - 0.036496, - 0.066541, - 0.055924, - -0.016398, - -0.078248, - -0.031286, - -0.038426, - 0.0050925, - -0.012893, - 0.064917, - 0.030742, - 0.026909, - 0.042574, - 0.072411, - 0.024311, - -0.028129, - -0.021352, - -0.024501, - -0.069256, - -0.016341, - 0.030646, - 0.045548, - -0.017834, - -0.018744, - 0.040481, - 0.0056634, - -0.006089, - -0.010575, - -0.052482, - 0.00097678, - -0.0038741, - 0.038699, - -0.053075, - -0.079991, - -0.03963, - 0.024742, - 0.032944, - -0.03529, - -0.05675, - 0.013574, - 0.033205, - -0.011412, - -0.012545, - 0.044561, - 0.032784, - 0.00099952, - -0.0015979, - 0.027842, - 0.016697, - -0.011685, - 0.068902, - 0.027766, - 0.000025169, - 0.041684, - -0.017532, - 0.0052096, - 0.03383, - 0.062053, - -0.075206, - -0.034289, - 0.030137, - -0.0078361, - -0.0039739, - 0.052419, - -0.0031761, - -0.044397, - 0.077068, - 0.016679, - -0.03543, - -0.016583, - 0.054264, - -0.012854, - 0.00037198, - 0.045277, - 0.037389, - 0.0024885, - -0.079796, - -0.039702, - -0.0090415, - 0.0020069, - 0.0067909, - -0.014796, - -0.013489, - 0.065274, - -0.0070755, - 0.025578 - ], - "refreshment": [ - -0.053333, - -0.072548, - -0.001172, - -0.020942, - -0.03338, - 0.027379, - -0.052545, - -0.055156, - -0.028058, - -0.020012, - -0.0065668, - 0.039778, - -0.02521, - 0.035835, - 0.041491, - -0.034607, - 0.031387, - -0.0089471, - 0.043876, - -0.039129, - -0.021447, - -0.0098701, - -0.040064, - 0.039827, - -0.013654, - -0.0062583, - -0.041832, - 0.029476, - -0.019638, - -0.044092, - 0.0089771, - 0.032778, - -0.022714, - -0.092765, - 0.0072135, - 0.0052669, - 0.067681, - 0.0059172, - 0.028216, - 0.039749, - 0.024736, - -0.11292, - -0.074407, - 0.027671, - 0.00015238, - -0.02458, - 0.058132, - -0.037504, - -0.056131, - 0.066256, - -0.0016316, - 0.018715, - 0.020221, - -0.054953, - -0.015068, - 0.028308, - 0.00025602, - -0.030275, - -0.029883, - -0.025758, - 0.043246, - 0.014296, - 0.084027, - 0.034081, - -0.022397, - 0.031057, - 0.0056313, - -0.044604, - -0.011605, - 0.0081978, - 0.076051, - -0.0044998, - 0.011982, - -0.0046494, - -0.0094864, - -0.057459, - -0.058441, - -0.066354, - 0.012895, - 0.0076533, - -0.043773, - -0.0047032, - 0.047611, - 0.033706, - -0.034587, - -0.014073, - 0.0051714, - -0.025949, - -0.015104, - -0.065957, - 0.027094, - 0.025267, - -0.075589, - -0.020744, - -0.010171, - 0.041299, - 0.028704, - 0.036859, - -0.028653, - 0.043418, - 0.081566, - 0.05673, - -0.0097784, - -0.059085, - 0.027876, - -0.050782, - -0.062283, - 0.035338, - -0.045688, - -0.0034825, - -0.002526, - 0.051198, - 0.090709, - 0.048653, - 0.014996, - -0.033253, - -0.011403, - 0.03038, - -0.06537, - -0.0042215, - 0.026993, - 0.0077791, - 0.017683, - -0.035357, - 0.064614, - -0.013565, - -0.030608, - -0.072333, - 0.037197, - 0.069611, - 0.054864, - -0.020973, - -0.034893, - 0.020354, - 0.015412, - -0.052153, - 0.012697, - 0.03596, - 0.0017278, - -0.0096007, - 0.063016, - -0.01908, - -0.0099265, - -0.03339, - 0.055707, - -0.0096763, - 0.029534, - 0.030952, - -0.033143, - 0.073799, - 0.048309, - 0.046542, - 0.019872, - -0.082278, - 0.049869, - 0.0107, - -0.080839, - 0.0153, - -0.035141, - 0.008391, - 0.023924, - -0.0069325, - -0.043934, - 0.06279, - 0.0038908, - 0.056666, - -0.056878, - -0.036876, - 0.0068262, - 0.013584, - 0.020099, - 0.0084848, - 0.020004, - 0.019217, - 0.098245, - 0.0138, - -0.02969, - 0.03099, - -0.057509, - -0.03875, - -0.1103, - 0.030268, - -0.012368, - -0.08058, - -0.022433, - -0.010248, - 0.018879, - 0.060124, - 0.024444, - 0.023393, - 0.03637, - 0.023665, - 0.015023, - 0.026598, - 0.04542, - -0.018257, - 0.006014, - -0.066015, - -0.015245, - 0.017252, - -0.089782, - 0.062688, - 0.003794, - 0.013075, - 0.0077864, - -0.00020566, - -0.025641, - 0.0082447, - 0.022095, - -0.0079246, - 0.084378, - 0.0030749, - 0.048356, - 0.03921, - 0.0024398, - 0.026239, - -0.011329, - 0.0015877, - 0.016411, - -0.060839, - 0.061751, - -0.031301, - 0.042372, - 0.093781, - 0.060887, - -0.054028, - 0.03342, - 0.038185, - -0.064017, - 0.0072829, - -0.04244, - -0.043142, - 0.0019273, - -0.017823, - -0.0083848, - -0.007676, - -0.078341, - -0.019924, - -0.008907, - -0.021842, - 0.068976, - 0.00212, - 0.05385, - -0.026678, - -0.038064, - 0.039388, - 0.023586, - 0.0228, - -0.045592, - -0.011493, - 0.017236, - 0.012982, - -0.012914, - 0.026452, - -0.0047945, - -0.026398, - 0.025758, - 0.04195, - 0.073331, - 0.066764, - 0.045246, - 0.0062911, - 0.0019307, - -0.047268, - 0.042182, - -0.038342, - 0.079967, - -0.015846, - -0.034388, - 0.019936, - 0.0038867, - 0.059625, - -0.061211, - -0.037717, - -0.055255, - -0.0062322, - 0.016782, - 0.048804, - -0.022184, - -0.0039533, - 0.051966, - -0.00058072, - 0.0044951, - -0.02641, - -0.011399, - -0.0014639, - -0.051095, - 0.033106, - 0.039774, - 0.04923, - 0.029736, - 0.038723, - -0.034128, - 0.019001, - 0.0022488, - 0.023168, - 0.035143, - 0.013567, - -0.060456, - 0.055782 - ], - "motor": [ - 0.057125, - -0.044651, - 0.064948, - 0.11351, - -0.069379, - 0.012244, - -0.075787, - -0.10416, - 0.13585, - -0.026329, - 0.068818, - -0.0015868, - 0.066519, - 0.030066, - -0.014065, - 0.033469, - 0.14838, - 0.018806, - 0.087081, - 0.0026798, - -0.0052922, - 0.01593, - 0.047382, - 0.08308, - 0.053205, - 0.020371, - -0.049978, - 0.015244, - 0.0033507, - -0.031792, - 0.046508, - 0.066922, - 0.15647, - 0.01358, - 0.04139, - 0.021056, - 0.058101, - -0.034909, - 0.099181, - -0.0088484, - 0.029071, - -0.17926, - 0.010177, - -0.036773, - 0.046621, - -0.065469, - -0.053868, - 0.051958, - -0.068446, - -0.025981, - 0.072365, - 0.067904, - 0.001817, - 0.0028607, - -0.034342, - -0.030871, - 0.024655, - -0.14075, - -0.039992, - -0.011451, - -0.0045254, - -0.013174, - 0.11787, - 0.073693, - 0.14753, - -0.022806, - -0.042614, - -0.00034979, - -0.040701, - -0.0097042, - -0.016119, - -0.066011, - 0.075592, - -0.019806, - -0.071347, - -0.0031844, - -0.072285, - -0.035676, - -0.062233, - -0.017984, - -0.039468, - -0.064565, - -0.1343, - 0.036569, - 0.057033, - -0.039719, - 0.070769, - -0.023622, - 0.062452, - -0.080881, - 0.10576, - 0.057362, - -0.12438, - -0.0093504, - -0.04002, - 0.14333, - -0.086994, - 0.043688, - -0.0049185, - 0.027277, - 0.064116, - -0.020668, - 0.017203, - -0.055885, - 0.01114, - -0.15484, - -0.039996, - -0.05933, - 0.020089, - 0.030463, - 0.083911, - 0.092308, - 0.080247, - 0.074686, - 0.14361, - -0.040528, - -0.034433, - -0.047778, - -0.049603, - -0.0084044, - 0.038436, - 0.038999, - -0.072253, - -0.01616, - 0.16845, - -0.0033648, - -0.024222, - -0.1332, - 0.10202, - 0.069573, - -0.055677, - -0.011942, - 0.07367, - -0.035841, - 0.062942, - -0.055883, - 0.077695, - 0.016879, - -0.023616, - -0.02992, - -0.070025, - 0.058985, - 0.12178, - 0.0020963, - -0.036147, - -0.091125, - -0.0025908, - -0.053694, - -0.051685, - 0.069377, - 0.027565, - 0.11864, - 0.070044, - -0.093707, - -0.0016898, - 0.05439, - -0.036055, - 0.012466, - 0.0091542, - 0.029621, - 0.0061217, - 0.076853, - -0.10864, - -0.050544, - 0.014777, - -0.05601, - 0.068942, - -0.062457, - -0.012737, - 0.009721, - 0.099049, - 0.075571, - -0.02653, - 0.11222, - 0.067125, - 0.065195, - -0.064406, - -0.015721, - -0.044341, - 0.03464, - 0.024177, - -0.074448, - -0.10191, - -0.060013, - 0.029675, - -0.13483, - -0.078713, - 0.14369, - 0.0076643, - -0.047498, - 0.011628, - -0.010824, - 0.023764, - 0.046542, - 0.073834, - 0.024314, - -0.010586, - 0.079371, - -0.0060578, - 0.045817, - -0.20215, - 0.06092, - -0.092123, - -0.079265, - 0.10804, - 0.07583, - -0.044045, - -0.053179, - -0.024748, - -0.036668, - 0.19103, - 0.013189, - -0.0029126, - -0.00044321, - -0.024354, - 0.077779, - -0.089135, - -0.044633, - -0.0011381, - -0.017399, - -0.096165, - -0.063953, - -0.034172, - 0.11569, - -0.013754, - 0.026945, - -0.0548, - 0.068875, - 0.0034975, - -0.015947, - -0.021745, - -0.0093728, - -0.092017, - -0.068178, - -0.028613, - -0.064176, - 0.10461, - -0.040528, - -0.015522, - -0.075464, - 0.007291, - 0.052802, - -0.11314, - -0.021287, - -0.023334, - -0.1095, - 0.0736, - 0.011795, - 0.079309, - 0.080679, - 0.018315, - 0.10066, - 0.022398, - -0.000050153, - 0.027383, - -0.019594, - 0.022149, - -0.019988, - -0.0032041, - 0.0036433, - 0.052644, - 0.060857, - -0.02628, - -0.0029401, - -0.012849, - 0.077049, - 0.089766, - 0.031934, - 0.010604, - -0.031519, - -0.00068198, - 0.11568, - -0.11411, - -0.04585, - 0.0040192, - -0.027654, - 0.10572, - 0.04324, - 0.048399, - 0.02768, - 0.17276, - -0.022883, - -0.017548, - -0.021785, - -0.020201, - 0.060441, - -0.012057, - -0.044063, - 0.032621, - 0.079253, - 0.052362, - 0.027871, - -0.11082, - -0.08389, - -0.070266, - -0.020387, - -0.040591, - -0.064061, - -0.027024, - -0.045223 - ], - "toys": [ - -0.0076149, - -0.037388, - -0.035408, - 0.0026338, - -0.0091623, - -0.081999, - -0.057963, - -0.098919, - 0.090782, - 0.055451, - -0.01256, - -0.048852, - -0.0078627, - -0.0076334, - -0.040769, - 0.0031433, - 0.078733, - 0.15944, - 0.075588, - -0.044556, - 0.055271, - -0.03571, - 0.060791, - 0.060443, - 0.014489, - -0.028182, - -0.017305, - -0.090806, - 0.1666, - -0.031051, - -0.037796, - -0.094148, - 0.13937, - -0.021501, - 0.095264, - -0.01101, - 0.032475, - -0.19935, - 0.10293, - -0.084685, - -0.087078, - -0.15338, - -0.038588, - 0.0076119, - 0.088166, - -0.051878, - 0.033246, - 0.070172, - 0.020557, - -0.01441, - -0.0066441, - 0.090491, - -0.076809, - -0.036892, - -0.14702, - 0.023987, - 0.048847, - -0.068324, - -0.028209, - -0.062895, - -0.12404, - -0.20351, - 0.23223, - 0.097982, - 0.14224, - 0.15423, - 0.046531, - -0.036687, - -0.021825, - 0.014169, - 0.0048993, - -0.070848, - 0.10057, - -0.01783, - -0.048878, - 0.053962, - 0.073609, - -0.078617, - 0.061383, - -0.066005, - 0.0073332, - -0.082668, - -0.020714, - 0.048345, - -0.040327, - -0.027905, - -0.0028643, - -0.015995, - -0.083332, - -0.094801, - -0.0070116, - -0.012275, - -0.14445, - 0.091923, - 0.058983, - 0.082187, - 0.071806, - 0.07346, - 0.051504, - 0.0085806, - 0.073506, - 0.065703, - -0.058694, - -0.079297, - 0.048501, - -0.090304, - 0.0097136, - -0.0050863, - -0.13148, - -0.014223, - 0.0037217, - 0.079802, - 0.10189, - 0.16391, - 0.041717, - -0.026382, - -0.041154, - -0.032399, - -0.073901, - -0.10324, - -0.087778, - 0.09825, - 0.055102, - -0.12412, - 0.16844, - -0.048301, - 0.010092, - 0.0031237, - 0.043789, - 0.091176, - -0.097001, - 0.079147, - 0.009043, - 0.067161, - 0.10626, - -0.12396, - 0.054635, - 0.045282, - -0.042385, - 0.044209, - 0.060748, - 0.099895, - 0.12573, - -0.007883, - 0.085078, - 0.030338, - 0.052746, - -0.026303, - 0.024155, - -0.072763, - -0.030932, - 0.12467, - -0.10521, - -0.086281, - -0.14352, - -0.0091455, - -0.081216, - -0.0068662, - 0.18899, - 0.012105, - 0.018674, - -0.095804, - 0.023488, - -0.016195, - -0.000014269, - -0.032312, - 0.019852, - -0.14806, - 0.033179, - -0.14305, - 0.057855, - 0.083008, - -0.0064267, - -0.021797, - -0.093226, - 0.088865, - 0.022957, - 0.1839, - -0.0097396, - 0.025361, - 0.086773, - -0.090114, - -0.020902, - -0.13431, - -0.0055772, - -0.0245, - 0.018209, - 0.17058, - -0.019893, - -0.098284, - -0.038261, - 0.080817, - -0.11059, - -0.048915, - 0.10491, - 0.049827, - -0.088913, - 0.04036, - 0.030287, - 0.021727, - -0.18832, - 0.13347, - 0.042257, - -0.14896, - 0.17887, - 0.1159, - 0.015767, - -0.058566, - 0.10097, - -0.12451, - 0.13101, - 0.0087784, - 0.068538, - 0.026855, - 0.039778, - 0.020629, - -0.086425, - -0.013159, - -0.12818, - -0.089315, - 0.11143, - -0.06309, - 0.033548, - 0.12958, - 0.10881, - -0.04963, - -0.0046799, - 0.076345, - -0.075059, - -0.0038664, - -0.10566, - 0.004493, - -0.14096, - -0.11752, - 0.01513, - 0.099269, - 0.0082973, - -0.092892, - -0.043197, - -0.10839, - -0.016672, - -0.016037, - -0.010496, - -0.11489, - 0.013256, - 0.0065512, - -0.0069971, - 0.013106, - -0.066831, - 0.02653, - 0.034038, - -0.05148, - -0.028055, - 0.081436, - -0.082175, - 0.020197, - 0.029422, - -0.047361, - -0.013419, - -0.032189, - 0.12089, - -0.011593, - -0.041421, - -0.065653, - -0.0074038, - 0.15569, - 0.018727, - -0.02714, - 0.088829, - -0.040712, - 0.10592, - 0.13469, - -0.14882, - -0.04875, - -0.038076, - -0.02749, - 0.075456, - 0.04253, - -0.092946, - -0.0044236, - 0.099752, - 0.03534, - 0.073458, - -0.055816, - -0.056871, - 0.061615, - -0.13038, - 0.079035, - -0.04355, - 0.017028, - -0.10225, - 0.090978, - -0.12521, - -0.049451, - -0.026794, - 0.015179, - 0.080136, - 0.023039, - 0.05411, - -0.073463 - ], - "cocaine": [ - 0.056347, - 0.017153, - -0.018748, - 0.044471, - 0.020948, - 0.02009, - 0.0045036, - -0.081663, - 0.044885, - 0.0063269, - -0.00078099, - -0.013689, - -0.0096525, - -0.027395, - 0.031235, - -0.0038309, - 0.076149, - 0.011145, - -0.0012483, - 0.090505, - 0.00011362, - 0.0079786, - -0.0064307, - 0.010974, - -0.0019779, - -0.057804, - -0.050078, - 0.064066, - 0.10464, - 0.082123, - -0.09196, - 0.083042, - 0.011023, - 0.019103, - 0.020079, - 0.0076815, - 0.012068, - -0.031745, - -0.054815, - 0.039422, - -0.054068, - -0.080576, - 0.052254, - 0.0041687, - 0.087468, - 0.019846, - 0.081829, - 0.047586, - -0.027098, - 0.046106, - -0.010274, - 0.036206, - 0.078277, - -0.054051, - -0.10657, - -0.086373, - 0.011916, - -0.051905, - -0.05048, - 0.052386, - -0.056032, - -0.037613, - 0.095098, - 0.032885, - -0.08571, - -0.026157, - 0.085068, - -0.058706, - 0.045127, - -0.016378, - 0.02751, - 0.14417, - 0.050965, - -0.1242, - 0.035942, - 0.010774, - 0.026595, - -0.0094674, - -0.028272, - -0.020453, - -0.010418, - -0.04671, - -0.076998, - 0.032574, - -0.056904, - -0.016998, - -0.003466, - -0.017603, - 0.11358, - 0.017157, - 0.021552, - -0.015308, - -0.087071, - 0.010486, - 0.0051458, - 0.048123, - -0.06388, - -0.086174, - 0.017979, - 0.0099365, - 0.030019, - -0.0090363, - -0.048935, - -0.0055235, - 0.015986, - -0.07945, - -0.082076, - -0.010407, - 0.026892, - 0.092757, - 0.04959, - 0.086889, - 0.05062, - -0.026677, - -0.022786, - -0.013026, - 0.060708, - -0.050608, - -0.040275, - 0.039144, - 0.12024, - -0.020434, - 0.010486, - -0.11752, - 0.037453, - 0.041754, - -0.013753, - -0.085931, - 0.00026795, - 0.053945, - 0.049115, - -0.042154, - 0.001253, - -0.062741, - 0.057502, - -0.11418, - -0.10464, - 0.016155, - 0.018749, - 0.01993, - 0.056146, - 0.10417, - -0.02712, - -0.10512, - 0.016958, - 0.0086105, - 0.086037, - -0.044838, - 0.043175, - -0.023815, - -0.0077024, - 0.067793, - 0.062535, - -0.025803, - -0.0061636, - -0.060484, - -0.11325, - -0.013097, - 0.051534, - 0.016799, - 0.067709, - 0.091079, - -0.082436, - -0.068528, - -0.020367, - -0.033124, - 0.076266, - -0.017078, - 0.024528, - -0.014232, - 0.036231, - -0.010103, - 0.086578, - -0.0067874, - 0.037327, - 0.047554, - -0.0080795, - 0.0015445, - -0.0079317, - -0.028745, - 0.072612, - -0.039528, - -0.037782, - -0.090115, - 0.041428, - -0.080536, - 0.044687, - 0.13388, - 0.044641, - -0.018261, - 0.12195, - -0.016387, - -0.019308, - 0.045896, - 0.066209, - -0.0022275, - -0.081484, - 0.10441, - 0.044377, - -0.048402, - -0.12765, - 0.06028, - -0.038422, - 0.028397, - 0.0031776, - 0.069594, - 0.10704, - 0.011493, - -0.021262, - -0.031428, - 0.11998, - 0.004667, - 0.00030506, - -0.034019, - 0.13072, - -0.0046793, - -0.092401, - 0.020569, - 0.042784, - -0.048985, - -0.019339, - -0.067165, - -0.0022547, - 0.080611, - 0.0080579, - 0.052648, - -0.02957, - 0.035854, - -0.028109, - -0.04935, - -0.062862, - -0.035544, - -0.094411, - -0.081357, - 0.0099085, - -0.0033763, - -0.020821, - -0.029575, - -0.019279, - -0.090105, - 0.014355, - -0.018389, - -0.032348, - -0.065439, - -0.012813, - 0.040335, - -0.030735, - 0.0020889, - 0.04689, - 0.034994, - -0.028738, - 0.024641, - 0.090173, - -0.025246, - 0.0064005, - 0.046688, - -0.021928, - -0.0024779, - 0.046057, - -0.070521, - -0.014634, - 0.0076397, - 0.025372, - 0.0062521, - 0.048645, - -0.007106, - -0.098718, - -0.035542, - 0.016618, - 0.090028, - -0.083096, - 0.084551, - -0.093725, - -0.019817, - -0.076084, - -0.075825, - -0.015444, - 0.046537, - 0.021145, - 0.013401, - 0.095204, - 0.08661, - -0.10938, - -0.072773, - -0.06545, - 0.0050358, - -0.027116, - 0.0476, - -0.0061806, - -0.068446, - -0.048482, - 0.046749, - -0.052879, - -0.035907, - -0.13675, - 0.057283, - 0.074275, - -0.057866, - 0.0099459, - -0.013054 - ], - "market": [ - 0.015354, - -0.036899, - -0.047152, - 0.032468, - -0.025129, - -0.04062, - 0.020548, - -0.10885, - 0.069017, - 0.013942, - -0.012468, - -0.060438, - -0.0058677, - -0.0098753, - 0.020941, - -0.0085498, - 0.13975, - -0.034479, - 0.11752, - 0.011395, - 0.053792, - -0.000939, - 0.045673, - 0.065392, - -0.048789, - -0.034662, - 0.0059451, - -0.048021, - -0.029785, - 0.012771, - -0.052598, - 0.027225, - -0.063392, - -0.045598, - 0.031638, - 0.031989, - 0.069095, - 0.024963, - 0.061014, - 0.04083, - -0.0050736, - -0.13558, - -0.047811, - 0.013414, - 0.035959, - -0.024732, - -0.041744, - 0.0081578, - -0.053506, - -0.015367, - 0.028181, - -0.017572, - -0.0090836, - -0.025929, - -0.086422, - -0.0044365, - 0.049985, - 0.11614, - -0.041719, - -0.0074662, - -0.018272, - 0.051878, - 0.12485, - 0.09752, - 0.030613, - 0.0060276, - 0.0042521, - -0.052817, - 0.018157, - -0.059835, - -0.017538, - 0.018461, - 0.016892, - -0.031467, - -0.042341, - 0.059355, - -0.073624, - -0.022266, - 0.019461, - -0.0011011, - 0.01815, - 0.0017661, - -0.043596, - 0.079809, - 0.023206, - 0.011699, - 0.019816, - -0.07785, - -0.0135, - -0.045336, - 0.024344, - 0.031132, - -0.10661, - 0.044158, - -0.018454, - 0.047338, - 0.033267, - -0.058275, - 0.05793, - 0.0036426, - 0.0033591, - -0.049802, - -0.022869, - -0.012288, - 0.021077, - -0.11724, - -0.044724, - 0.070337, - -0.011679, - 0.031063, - -0.018841, - 0.11906, - 0.080968, - 0.09845, - -0.0028558, - -0.096937, - -0.039049, - -0.0084853, - -0.093146, - 0.056876, - -0.028599, - 0.010561, - 0.04803, - -0.0010422, - 0.072364, - -0.0097151, - 0.022508, - -0.121, - 0.08032, - 0.11049, - 0.027194, - -0.010569, - -0.0074182, - -0.045761, - 0.0452, - -0.0022365, - -0.021232, - 0.044997, - -0.012323, - -0.006535, - -0.0032303, - 0.043297, - -0.054223, - 0.016776, - -0.010926, - -0.043175, - 0.032148, - -0.018352, - 0.042421, - -0.035116, - -0.0068024, - 0.11419, - 0.0071721, - -0.067927, - 0.030783, - -0.0012922, - 0.010356, - -0.0094046, - -0.045785, - 0.019302, - 0.042978, - -0.01568, - -0.087292, - 0.0019488, - 0.069554, - 0.027842, - 0.011984, - -0.060933, - 0.01225, - 0.02326, - -0.060849, - 0.024982, - 0.032951, - -0.0019734, - -0.036258, - 0.032277, - -0.028721, - -0.016419, - -0.052785, - 0.0075297, - -0.028796, - -0.028794, - -0.064941, - -0.072641, - -0.029759, - -0.021303, - 0.028746, - 0.08165, - -0.015968, - -0.052938, - -0.11065, - 0.024339, - 0.011493, - -0.040259, - 0.031865, - -0.051566, - 0.0082503, - 0.03492, - 0.024155, - 0.050509, - -0.19127, - 0.09386, - -0.017905, - 0.014923, - 0.031202, - -0.010334, - 0.012809, - 0.00015184, - 0.0024949, - -0.00016409, - 0.1139, - -0.029451, - 0.025158, - -0.014766, - -0.016275, - 0.051346, - -0.040252, - -0.04281, - 0.038456, - -0.034127, - 0.036145, - -0.061589, - 0.0062065, - 0.12119, - -0.053979, - -0.048506, - -0.065591, - 0.026357, - 0.050867, - 0.0057747, - 0.014461, - -0.07147, - -0.088325, - -0.0050678, - 0.023121, - 0.0061575, - -0.021328, - -0.0097961, - 0.067163, - -0.073232, - 0.072106, - 0.073464, - -0.0022583, - 0.033746, - -0.025199, - -0.0016304, - -0.089143, - -0.015917, - 0.037805, - -0.055409, - 0.045455, - -0.063248, - -0.05362, - 0.026288, - -0.013849, - 0.049727, - -0.039026, - 0.069665, - 0.029885, - 0.041187, - 0.071055, - 0.07748, - 0.039228, - -0.063342, - -0.015871, - 0.086602, - 0.0046949, - 0.0081524, - 0.034588, - 0.042941, - -0.013165, - 0.080923, - -0.16739, - -0.044504, - 0.024179, - -0.051085, - 0.030672, - 0.059655, - -0.061476, - -0.015362, - 0.079371, - 0.051439, - 0.0089307, - 0.058904, - 0.0092656, - -0.020615, - 0.0018852, - -0.041552, - -0.041214, - -0.016619, - -0.062593, - 0.023397, - 0.0047392, - 0.020464, - -0.014098, - -0.015943, - 0.01836, - -0.021885, - 0.0065286, - -0.027414 - ], - "ethnomusicology": [ - 0.024251, - -0.064255, - -0.057056, - 0.054547, - 0.018395, - -0.0048264, - -0.0055142, - -0.081576, - -0.018085, - -0.064141, - 0.016952, - -0.053003, - 0.0046936, - -0.006997, - 0.055455, - 0.016992, - 0.062978, - -0.023244, - 0.0186, - 0.074925, - -0.043236, - 0.005482, - -0.0069052, - 0.054698, - 0.012582, - -0.0081674, - -0.045187, - 0.064189, - 0.0034116, - -0.0069209, - 0.0049159, - -0.014679, - 0.0020215, - -0.035145, - -0.0080562, - 0.045578, - 0.028696, - 0.021596, - 0.016976, - -0.0058484, - -0.012899, - -0.064204, - -0.025164, - -0.024902, - 0.01256, - -0.0076711, - 0.021944, - -0.059673, - 0.026253, - 0.0093982, - -0.033201, - -0.010734, - -0.0010634, - 0.047274, - -0.016029, - 0.069592, - -0.051371, - 0.063619, - -0.012973, - 0.041412, - 0.030343, - -0.019192, - 0.028799, - 0.037247, - 0.0039639, - -0.00042976, - 0.0017803, - -0.015624, - 0.029079, - 0.0052103, - -0.024632, - -0.0028887, - 0.01542, - -0.040225, - 0.013511, - 0.025209, - 0.033625, - -0.036742, - 0.093518, - -0.0084926, - -0.022513, - 0.048432, - -0.027033, - -0.0076235, - -0.040853, - -0.077101, - 0.0093067, - 0.0093092, - 0.012559, - 0.025439, - -0.019994, - 0.057055, - -0.059187, - 0.0081577, - 0.037832, - 0.053682, - -0.0055293, - 0.021857, - 0.0028188, - -0.031046, - 0.054617, - 0.028275, - -0.015011, - -0.072624, - -0.0024735, - -0.01785, - -0.016217, - 0.010873, - -0.0010585, - -0.052988, - -0.0028496, - 0.092383, - 0.017821, - 0.0060955, - -0.020443, - 0.02227, - -0.012683, - 0.016899, - -0.012791, - 0.032121, - -0.013834, - -0.0044902, - -0.053177, - -0.011536, - -0.026233, - 0.010814, - -0.025946, - 0.00021865, - 0.0034564, - 0.06575, - 0.025936, - 0.022717, - -0.043781, - 0.031341, - 0.013568, - -0.0044186, - -0.029119, - 0.0049604, - 0.034456, - -0.0016375, - -0.023171, - 0.017501, - 0.084625, - -0.015487, - -0.025033, - -0.068461, - -0.023193, - 0.013218, - -0.016941, - -0.02752, - 0.028327, - 0.019309, - 0.01719, - -0.03073, - 0.032123, - 0.049953, - 0.017751, - -0.017113, - 0.060673, - 0.016693, - 0.023914, - 0.04522, - -0.053763, - -0.017866, - -0.0030831, - 0.014579, - -0.00036568, - -0.023025, - -0.013043, - 0.028981, - 0.012926, - -0.0068422, - 0.010058, - 0.01948, - 0.031877, - 0.023357, - 0.011944, - -0.041434, - -0.0044482, - -0.065522, - -0.026835, - 0.089319, - -0.029488, - -0.017353, - 0.0027104, - -0.0349, - -0.044848, - 0.065948, - -0.03795, - -0.0043618, - 0.017752, - 0.070467, - -0.032984, - -0.048143, - -0.024061, - 0.071985, - 0.032976, - -0.002687, - 0.016117, - -0.049226, - -0.068824, - -0.014898, - -0.023757, - -0.037916, - 0.0021183, - 0.024853, - 0.023193, - -0.013106, - -0.042748, - 0.0012436, - 0.067251, - 0.013282, - -0.018025, - -0.052996, - 0.03294, - 0.028661, - 0.016036, - -0.044993, - -0.0042789, - 0.024081, - -0.025749, - 0.025242, - -0.0096262, - 0.081544, - 0.0022347, - 0.066948, - 0.0037463, - 0.056953, - -0.02002, - -0.045809, - 0.031645, - -0.025209, - 0.0010881, - 0.00015872, - 0.014676, - 0.052125, - 0.01255, - -0.0045426, - 0.015242, - 0.031619, - 0.0011411, - -0.0028793, - -0.0063385, - 0.024322, - 0.031401, - -0.02819, - -0.043078, - -0.036982, - -0.0060888, - 0.039987, - 0.0090469, - -0.034417, - -0.060786, - -0.01875, - 0.00022345, - 0.018864, - -0.044038, - 0.017968, - 0.043584, - -0.035522, - 0.054371, - -0.01474, - 0.046291, - 0.0077396, - -0.037679, - 0.02195, - -0.004568, - 0.024062, - -0.00075235, - 0.015401, - 0.038673, - 0.066539, - -0.07696, - -0.013311, - -0.0092273, - -0.0073748, - -0.0097325, - 0.0078389, - -0.040689, - 0.001727, - 0.017815, - -0.0053559, - -0.0054139, - -0.050269, - -0.052811, - -0.0012917, - -0.02034, - -0.0326, - -0.0066658, - -0.018348, - -0.02539, - -0.020955, - -0.015135, - -0.060087, - 0.030309, - 0.055852, - -0.0079314, - 0.0015826, - -0.016933, - -0.0023972 - ], - "troops": [ - 0.033086, - -0.0012306, - 0.029056, - 0.0020861, - 0.014129, - -0.01669, - 0.028676, - -0.091944, - 0.044751, - 0.10203, - -0.0044228, - -0.041072, - 0.042179, - 0.070287, - 0.010019, - 0.041761, - 0.068607, - -0.071045, - 0.069516, - -0.047487, - 0.075153, - -0.12845, - -0.0011615, - 0.042338, - -0.051792, - 0.07801, - 0.068146, - -0.0045922, - 0.10656, - -0.070661, - 0.031248, - 0.02783, - -0.078961, - 0.021483, - 0.015363, - 0.046727, - 0.02271, - -0.03257, - 0.11458, - -0.039136, - -0.0045022, - -0.091712, - 0.048055, - -0.022734, - -0.0051293, - -0.0036192, - 0.0078998, - 0.018062, - -0.04527, - -0.0027328, - 0.081692, - -0.024741, - 0.026278, - -0.0035418, - -0.096914, - 0.037097, - -0.027847, - -0.033297, - -0.03583, - 0.0076575, - -0.069906, - -0.010077, - 0.12732, - 0.0059917, - -0.014621, - 0.0095984, - -0.026092, - -0.10979, - 0.011199, - 0.014557, - -0.062952, - 0.03067, - 0.11749, - 0.034247, - 0.029128, - 0.053523, - 0.059098, - -0.035932, - -0.022479, - 0.031405, - -0.024486, - 0.017565, - 0.040243, - 0.04882, - -0.052673, - 0.018782, - 0.021718, - -0.042591, - 0.0085577, - -0.023357, - -0.048251, - 0.017912, - -0.12012, - 0.038507, - 0.0017009, - 0.060626, - -0.10055, - 0.046787, - 0.057783, - -0.047545, - 0.070188, - -0.031516, - 0.087098, - -0.026154, - 0.067458, - -0.079154, - -0.017155, - -0.025316, - -0.080354, - -0.016437, - 0.0033476, - 0.1222, - 0.072467, - 0.042613, - 0.028708, - -0.040267, - 0.075518, - 0.03953, - -0.030029, - -0.031897, - -0.047175, - -0.035062, - -0.0090783, - -0.096496, - 0.15911, - 0.073693, - -0.010354, - -0.10945, - -0.023448, - 0.081449, - -0.07329, - 0.13953, - 0.043034, - 0.07096, - 0.086764, - -0.034088, - -0.019724, - 0.063167, - -0.069048, - 0.02688, - -0.059391, - -0.12219, - -0.0031044, - -0.0092555, - -0.015433, - 0.056707, - 0.023058, - 0.046206, - -0.0070335, - -0.054948, - 0.040224, - 0.10544, - -0.00069642, - -0.047644, - 0.032678, - 0.02629, - -0.061045, - -0.01868, - -0.0013593, - -0.038728, - 0.045248, - -0.013942, - 0.02143, - -0.07253, - -0.083609, - 0.010106, - -0.0098878, - -0.016413, - 0.037708, - 0.0047963, - 0.084537, - -0.016038, - 0.019052, - 0.032432, - 0.011797, - 0.029582, - -0.026079, - 0.0047485, - -0.057066, - 0.0011479, - 0.04871, - 0.047047, - -0.024342, - -0.0028443, - 0.040278, - -0.078891, - 0.061366, - 0.09347, - 0.01621, - -0.035924, - 0.11023, - 0.06563, - -0.07841, - -0.066224, - 0.11715, - 0.068142, - -0.0088604, - -0.012803, - 0.021891, - 0.070839, - -0.14671, - 0.054801, - -0.0071293, - 0.13795, - 0.055534, - -0.024712, - -0.063225, - 0.043071, - -0.037683, - -0.082053, - 0.11568, - -0.04555, - 0.048649, - 0.05366, - -0.070662, - 0.014097, - -0.0094508, - 0.097097, - -0.0046777, - -0.0040242, - 0.015344, - 0.038306, - 0.091299, - 0.13017, - 0.13551, - 0.020248, - -0.030446, - 0.036998, - -0.047445, - -0.07493, - -0.056355, - 0.030318, - -0.12522, - -0.05593, - 0.038532, - 0.062998, - 0.0072127, - 0.041121, - -0.0023203, - -0.070083, - -0.047644, - -0.0086235, - 0.032257, - -0.0701, - 0.036127, - 0.057666, - -0.012914, - -0.094848, - -0.026925, - -0.015692, - 0.055402, - 0.064708, - 0.036827, - -0.056116, - 0.0014911, - 0.0089127, - 0.059368, - 0.039861, - 0.10535, - 0.004146, - -0.064412, - 0.055697, - -0.016906, - -0.035805, - 0.019754, - 0.050418, - -0.023633, - 0.014518, - -0.059125, - -0.021411, - -0.015866, - 0.079372, - -0.12904, - -0.051921, - -0.053026, - 0.0035521, - 0.0062231, - -0.031105, - -0.036189, - 0.0047596, - 0.064567, - -0.014553, - -0.057332, - 0.0093217, - 0.017352, - 0.04465, - 0.015555, - -0.018004, - 0.019882, - 0.013406, - 0.0025594, - 0.031857, - -0.076132, - 0.033582, - 0.0088594, - -0.078966, - 0.044392, - 0.0012633, - -0.039298, - -0.0038661 - ], - "consumption": [ - -0.016909, - 0.015472, - -0.027789, - 0.046961, - 0.039541, - 0.0067759, - -0.0308, - -0.059405, - 0.062326, - 0.018158, - -0.043476, - -0.0075582, - 0.024765, - -0.040719, - 0.030581, - 0.015278, - 0.039546, - -0.029216, - 0.041573, - 0.019787, - -0.0013607, - 0.0087554, - -0.016593, - 0.061996, - -0.011193, - -0.038415, - -0.016477, - 0.067361, - 0.01086, - 0.0066435, - -0.022139, - -0.0022226, - -0.0088526, - -0.037935, - 0.0019644, - 0.016357, - -0.001685, - 0.061535, - 0.0083474, - 0.052203, - 0.012326, - -0.086366, - -0.011398, - 0.0035909, - -0.0047834, - 0.0022207, - -0.023911, - -0.014435, - -0.005679, - 0.01271, - -0.010288, - 0.015346, - 0.03678, - -0.018582, - -0.072643, - 0.026499, - 0.017059, - 0.01538, - -0.010363, - -0.024491, - 0.031457, - -0.040596, - 0.058594, - 0.027098, - 0.030671, - 0.011977, - -0.0019053, - -0.0077922, - 0.019038, - -0.039583, - 0.034906, - 0.011243, - 0.053119, - -0.031814, - -0.022231, - -0.00046424, - 0.0033758, - -0.0054124, - 0.010668, - -0.0018447, - -0.044073, - -0.053742, - -0.042364, - 0.057266, - -0.0025799, - 0.035027, - -0.026786, - -0.017488, - 0.022834, - 0.0047135, - -0.024012, - 0.010342, - -0.052071, - 0.00023522, - -0.058355, - 0.030816, - -0.01071, - -0.014175, - -0.0095131, - 0.03946, - -0.054248, - -0.014231, - -0.037741, - -0.012664, - 0.035653, - -0.047381, - -0.048039, - 0.014557, - -0.028925, - -0.037305, - 0.014426, - 0.029591, - 0.039702, - -0.0067576, - 0.0071014, - -0.050813, - -0.0055295, - 0.005945, - -0.053803, - 0.015954, - -0.038169, - 0.03301, - 0.014176, - -0.052691, - 0.073134, - 0.0060859, - -0.0054692, - -0.083593, - 0.061647, - 0.077396, - 0.050658, - -0.043762, - 0.10843, - -0.024923, - 0.00064367, - 0.0059679, - -0.023656, - 0.024793, - 0.016586, - 0.042865, - 0.095558, - -0.003273, - 0.014688, - 0.025094, - 0.085913, - -0.032427, - 0.03015, - 0.021511, - 0.0096178, - -0.018141, - 0.0079962, - 0.021888, - -0.01723, - -0.060127, - 0.011224, - 0.011656, - -0.048263, - 0.048561, - -0.0086687, - 0.0092948, - 0.051369, - -0.01066, - -0.082013, - 0.013086, - 0.011212, - -0.019228, - 0.01636, - -0.0051895, - 0.055992, - -0.0056294, - -0.012215, - -0.0081195, - -0.0097996, - -0.0039537, - -0.040123, - 0.060561, - -0.030589, - 0.020692, - -0.042924, - 0.03715, - -0.011458, - -0.0039467, - -0.029475, - -0.025899, - -0.0050483, - -0.073202, - 0.014137, - 0.077065, - 0.029948, - -0.00024452, - 0.070624, - -0.0072572, - -0.0055314, - -0.022574, - 0.0071874, - -0.019425, - 0.014583, - 0.0014674, - -0.0072107, - 0.043989, - -0.13014, - 0.049963, - 0.0073028, - -0.027844, - -0.0064859, - 0.085833, - -0.0069776, - 0.016548, - 0.0084233, - -0.0032825, - 0.079623, - 0.001573, - 0.00010922, - -0.028649, - 0.048025, - 0.032247, - 0.00064888, - -0.043694, - 0.014399, - -0.024034, - -0.061811, - -0.028638, - -0.012748, - 0.058195, - 0.031118, - -0.0080836, - -0.00546, - 0.038643, - -0.013242, - -0.010499, - -0.022737, - -0.027189, - -0.034328, - -0.009287, - 0.066936, - -0.028271, - -0.01259, - 0.00776, - 0.016275, - -0.078838, - 0.019604, - 0.0029223, - -0.0035156, - -0.040125, - -0.022179, - 0.071969, - -0.033159, - -0.086426, - 0.038104, - -0.024295, - -0.017371, - -0.044802, - -0.02814, - 0.022919, - 0.048119, - -0.031065, - -0.0098861, - 0.0060369, - 0.033687, - -0.00027049, - -0.015294, - -0.010482, - -0.012785, - 0.0031535, - 0.052688, - 0.00028031, - 0.01826, - -0.0094429, - 0.013362, - 0.035245, - 0.019439, - 0.057011, - -0.08006, - -0.033138, - 0.026302, - -0.030843, - 0.021397, - 0.0059293, - -0.01389, - 0.0093925, - 0.058537, - 0.075573, - -0.037337, - 0.020687, - 0.0035115, - -0.0097715, - -0.03597, - 0.035003, - 0.063816, - -0.011773, - -0.00024132, - 0.07338, - -0.047163, - -0.012957, - 0.017659, - 0.063419, - -0.0063418, - -0.030856, - 0.0023778, - 0.055068 - ], - "army": [ - 0.059652, - -0.049443, - 0.022286, - -0.066221, - 0.01842, - -0.10105, - 0.059508, - -0.13018, - 0.047835, - 0.092782, - 0.0022165, - -0.065439, - -0.03334, - 0.11887, - 0.06325, - 0.024819, - 0.15122, - -0.098497, - 0.1005, - -0.0097813, - 0.086695, - -0.055178, - -0.073954, - 0.082554, - -0.019336, - 0.017928, - 0.045969, - -0.083148, - -0.024271, - -0.028577, - -0.0062632, - -0.051342, - -0.10111, - 0.00026479, - 0.0086899, - 0.068196, - -0.035609, - 0.0009754, - 0.070024, - -0.024438, - 0.00015012, - -0.13343, - 0.073574, - -0.029081, - 0.021476, - 0.076115, - 0.062201, - -0.0731, - -0.075088, - -0.014476, - 0.13449, - -0.024571, - 0.049485, - -0.030177, - -0.052945, - 0.047228, - -0.046561, - -0.0039588, - -0.087235, - -0.004538, - 0.0085374, - -0.011052, - 0.13551, - 0.077431, - -0.0092759, - 0.03282, - -0.041928, - -0.13567, - 0.037442, - 0.020206, - -0.043316, - -0.078246, - 0.061054, - -0.078019, - -0.080764, - 0.010783, - 0.046891, - 0.0018396, - 0.026992, - -0.056296, - -0.0043432, - 0.039068, - -0.10139, - 0.074843, - -0.06425, - 0.011021, - 0.024661, - -0.062482, - -0.079041, - 0.10212, - -0.0030383, - 0.1399, - -0.1443, - -0.0022864, - 0.027256, - 0.16601, - -0.12521, - -0.02121, - 0.14074, - -0.010067, - 0.055483, - -0.010373, - 0.18844, - -0.026732, - 0.028959, - -0.13136, - 0.018334, - -0.086754, - -0.092268, - 0.031645, - 0.0018304, - 0.16205, - 0.08381, - -0.014654, - 0.10352, - 0.057921, - 0.048865, - 0.067839, - -0.042447, - -0.075671, - -0.046835, - -0.039454, - -0.041655, - -0.027843, - 0.096824, - 0.034097, - 0.011469, - -0.13251, - -0.046514, - 0.13936, - -0.16427, - 0.062676, - 0.053989, - 0.016284, - 0.11946, - -0.063673, - 0.023257, - 0.084874, - -0.044327, - -0.011324, - -0.060174, - -0.18772, - -0.032791, - 0.044751, - -0.04776, - 0.015235, - 0.041098, - 0.098697, - -0.032167, - -0.061452, - 0.10221, - 0.11747, - 0.029607, - -0.016655, - 0.031819, - 0.053843, - -0.07186, - 0.031778, - 0.06262, - -0.043799, - 0.023779, - -0.090598, - -0.073283, - -0.0087309, - -0.096112, - -0.0041644, - -0.025645, - -0.017068, - 0.048261, - 0.087605, - 0.13238, - -0.093895, - -0.033086, - 0.0071393, - 0.0029297, - 0.044318, - 0.0086522, - 0.056468, - -0.048856, - -0.02651, - -0.033342, - 0.060895, - -0.046568, - 0.0017861, - 0.0059089, - -0.06074, - 0.061585, - 0.13602, - -0.012098, - -0.058322, - 0.10452, - 0.073046, - -0.00072861, - -0.076371, - 0.070045, - 0.065266, - -0.043504, - 0.0096971, - -0.017621, - 0.074202, - -0.17793, - 0.068694, - -0.086261, - 0.17215, - -0.032795, - 0.024018, - -0.030398, - 0.065377, - -0.024316, - -0.071231, - 0.19694, - -0.030895, - 0.040687, - 0.051819, - -0.087628, - 0.0044846, - -0.054551, - 0.053108, - 0.078485, - 0.016487, - 0.011856, - -0.010743, - 0.00023982, - 0.13712, - -0.01876, - -0.0034169, - 0.00076123, - 0.062598, - -0.023052, - -0.084809, - -0.032037, - -0.034493, - -0.065599, - -0.038617, - 0.0015057, - 0.0045904, - -0.04891, - 0.0577, - -0.023761, - -0.10945, - 0.061834, - 0.0029021, - 0.054522, - 0.037938, - 0.034831, - 0.078297, - -0.024989, - -0.073594, - 0.010207, - -0.036988, - 0.056112, - 0.065877, - 0.034254, - -0.033006, - 0.048305, - -0.0051264, - 0.070391, - 0.094432, - 0.093833, - -0.002589, - -0.088534, - 0.080462, - 0.018403, - -0.0061666, - -0.040352, - 0.084329, - -0.034533, - 0.029886, - -0.021731, - -0.033397, - 0.0031063, - 0.11927, - -0.14285, - -0.024792, - 0.021249, - -0.012098, - 0.0010374, - 0.011847, - -0.10527, - 0.042763, - 0.13971, - 0.0024732, - 0.0085675, - -0.022703, - 0.0087985, - 0.098419, - 0.0040064, - -0.10263, - 0.0089859, - 0.081697, - -0.022913, - 0.043124, - -0.0025584, - 0.015662, - -0.026241, - -0.098142, - -0.03373, - 0.0079642, - -0.029295, - -0.066383 - ], - "Drugs": [ - -0.053981, - -0.063921, - 0.048907, - 0.072821, - 0.020301, - -0.0011971, - 0.0086198, - -0.044181, - 0.073769, - 0.075706, - -0.038445, - -0.079152, - 0.035218, - -0.051362, - 0.037135, - -0.09285, - 0.10995, - 0.03493, - 0.13964, - -0.021462, - 0.070103, - 0.017797, - 0.14831, - -0.022937, - 0.048308, - -0.064038, - 0.049718, - -0.021158, - 0.15401, - 0.097502, - 0.051421, - -0.059915, - -0.0092927, - 0.041492, - 0.095083, - 0.017735, - -0.03054, - -0.0040517, - 0.02422, - 0.036959, - -0.022902, - 0.1095, - -0.01568, - -0.026445, - 0.079946, - -0.040804, - 0.035497, - 0.10451, - 0.052573, - -0.067152, - -0.081669, - -0.029431, - 0.075197, - -0.085469, - -0.10074, - 0.082852, - -0.02024, - 0.034942, - -0.12426, - 0.041575, - -0.056912, - -0.00059141, - -0.064017, - -0.019563, - -0.15093, - 0.038642, - 0.13268, - -0.063794, - 0.075201, - 0.051729, - -0.0197, - 0.06621, - -0.10048, - -0.10365, - -0.018444, - -0.041014, - 0.041037, - -0.19764, - -0.0010773, - -0.044253, - 0.048664, - -0.020678, - -0.14842, - -0.028819, - 0.024864, - -0.014977, - 0.078705, - -0.11874, - 0.027013, - -0.02145, - 0.04791, - -0.037631, - -0.056053, - 0.01147, - -0.099462, - 0.14182, - 0.058964, - -0.008008, - 0.060742, - 0.050565, - 0.034277, - 0.030211, - -0.052788, - -0.047504, - -0.023901, - -0.15152, - -0.0045733, - -0.013187, - 0.092952, - 0.035558, - 0.042045, - 0.065179, - 0.084124, - -0.00041445, - -0.0077523, - 0.0409, - 0.031054, - -0.089004, - 0.062466, - 0.10149, - 0.023076, - 0.017751, - -0.061478, - -0.088095, - 0.1267, - -0.0091179, - -0.12158, - -0.073996, - 0.10025, - 0.36203, - -0.06192, - 0.10396, - 0.046397, - -0.014643, - 0.087488, - -0.047525, - -0.10227, - -0.044174, - 0.01368, - 0.02797, - 0.10862, - 0.054929, - 0.0076852, - -0.02733, - 0.069752, - -0.093959, - 0.088691, - 0.01161, - 0.12094, - 0.019417, - 0.055147, - 0.1288, - 0.074176, - -0.054198, - 0.0055259, - 0.067219, - -0.059244, - -0.033641, - 0.18272, - -2.2352e-7, - 0.065069, - 0.03841, - -0.16844, - 0.090885, - -0.034906, - -0.074035, - 0.057182, - -0.049386, - 0.024753, - -0.10479, - -0.091626, - -0.058058, - 0.19363, - -0.032539, - -0.089837, - -0.0059428, - -0.09642, - 0.031498, - -0.0241, - -0.063359, - -0.033267, - -0.057238, - -0.076293, - 0.008084, - 0.034748, - 0.22915, - 0.07019, - 0.1544, - 0.0080075, - -0.033301, - 0.059376, - 0.14912, - -0.15321, - 0.028471, - 0.0536, - -0.056652, - -0.04391, - 0.065336, - 0.048354, - 0.016909, - 0.020631, - 0.22144, - -0.052703, - -0.022744, - 0.050156, - 0.039796, - 0.058752, - -0.010997, - 0.043274, - 0.025151, - 0.20807, - 0.054664, - 0.084758, - 0.056773, - 0.15204, - -0.12718, - -0.034208, - 0.025145, - -0.055856, - -0.0789, - 0.0028374, - -0.094836, - -0.029373, - 0.082562, - 0.051223, - 0.033186, - 0.054978, - 0.018743, - 0.01567, - -0.062426, - -0.083299, - -0.076501, - -0.032748, - -0.082951, - 0.031829, - -0.059805, - -0.045696, - -0.074778, - -0.025535, - -0.035903, - 0.032541, - -0.0050172, - 0.0030518, - -0.034714, - 0.20582, - -0.016103, - -0.036384, - -0.037575, - 0.10064, - -0.011269, - -0.089477, - 0.074996, - 0.095895, - -0.060283, - -0.10026, - -0.026779, - 0.023242, - 0.046475, - 0.15869, - -0.030315, - 0.0053506, - -0.0046303, - 0.07126, - -0.061096, - 0.017484, - -0.031877, - -0.079943, - 0.00045288, - 0.022999, - 0.062276, - -0.0059692, - 0.15045, - -0.015427, - 0.026952, - -0.075753, - -0.10638, - 0.027594, - 0.0069445, - -0.071255, - 0.051585, - -0.031071, - -0.011232, - -0.13616, - -0.043712, - 0.076494, - 0.034379, - 0.084585, - 0.060322, - 0.078837, - -0.11489, - 0.036666, - 0.012011, - -0.036852, - 0.063427, - -0.14079, - -0.0341, - 0.016508, - 0.03535, - 0.0040963, - -0.061934 - ], - "child-care": [ - 0.012963, - -0.048971, - -0.01085, - -0.033128, - -0.049241, - 0.010939, - 0.026713, - -0.055766, - 0.046762, - 0.02076, - -0.012739, - 0.0027476, - -0.0042549, - 0.036333, - -0.080548, - -0.018702, - 0.082077, - 0.050093, - 0.06343, - -0.0044757, - 0.020048, - 0.025348, - -0.0040063, - 0.075984, - 0.0011609, - 0.043963, - -0.0072162, - 0.079757, - -0.011723, - -0.042042, - 0.011573, - 0.016708, - -0.11901, - -0.056946, - 0.082703, - 0.068485, - 0.010017, - -0.069789, - 0.081899, - -0.011918, - -0.030531, - -0.1695, - 0.027424, - -0.0069853, - 0.012201, - -0.0082505, - 0.0041842, - 0.060225, - -0.059756, - 0.0093769, - -0.07186, - 0.027107, - 0.028208, - 0.04486, - 0.015627, - -0.04306, - -0.028534, - -0.077871, - -0.030818, - -0.066799, - -0.044001, - -0.040085, - 0.1017, - 0.043772, - 0.041644, - 0.011087, - 0.0045672, - -0.10211, - -0.018117, - -0.043769, - 0.012558, - 0.016514, - 0.040912, - -0.00015629, - 0.0062949, - 0.014309, - -0.019806, - -0.0068988, - 0.0096324, - 0.01129, - -0.015476, - 0.005419, - -0.013805, - 0.036489, - -0.045532, - 0.0056066, - -0.029446, - -0.019613, - -0.012151, - 0.018338, - 0.051604, - 0.062544, - -0.079883, - 0.0092254, - -0.05278, - 0.041895, - 0.028893, - 0.055445, - -0.01312, - -0.023183, - -0.0031477, - -0.052291, - -0.047466, - -0.075616, - 0.03413, - -0.040404, - 0.064756, - 0.052547, - 0.000066464, - -0.056769, - 0.0266, - 0.10191, - 0.047346, - 0.045099, - 0.012005, - -0.042137, - -0.038531, - -0.0068782, - -0.043414, - -0.035325, - -0.077292, - 0.037242, - 0.034353, - -0.00026396, - 0.090275, - -0.04502, - -0.028117, - -0.039531, - 0.081361, - 0.068559, - 0.042991, - -0.0169, - 0.026508, - -0.0058215, - -0.053423, - -0.0012662, - -0.041729, - 0.02084, - -0.048784, - -0.022589, - 0.079954, - 0.044494, - 0.032552, - 0.027873, - -0.02422, - -0.0029936, - -0.0011151, - 0.072958, - -0.0027398, - -0.010533, - 0.014184, - 0.12858, - -0.040323, - -0.077809, - 0.039245, - -0.003559, - 0.016457, - 0.032385, - 0.065411, - 0.0085016, - 0.054918, - -0.0096278, - -0.065969, - -0.0086167, - -0.028819, - -0.0016774, - 0.043128, - -0.033756, - -0.0425, - -0.075123, - 0.019266, - -0.03373, - -0.030267, - 0.0068791, - 0.040806, - 0.033281, - -0.10014, - 0.044335, - -0.015236, - 0.0020778, - -0.024877, - -0.074885, - -0.031006, - 0.033207, - -0.0034675, - -0.072545, - 0.039902, - 0.10926, - 0.022933, - 0.0029987, - 0.038386, - 0.067327, - 0.0074538, - -0.064822, - 0.032605, - -0.062192, - 0.0068992, - 0.024103, - -0.019541, - -0.083421, - -0.12126, - 0.032038, - -0.015074, - 0.016546, - 0.0083542, - 0.031406, - -0.049146, - -0.065316, - -0.030217, - -0.0022628, - 0.13106, - 0.0092897, - -0.045489, - 0.059872, - -0.081518, - 0.020376, - -0.029021, - -0.012635, - -0.00094843, - -0.03325, - 0.059648, - -0.026028, - -0.0024608, - 0.099866, - 0.058069, - -0.051073, - -0.010736, - 0.020343, - 0.022484, - -0.014585, - 0.023217, - -0.0040788, - -0.032215, - -0.020446, - -0.017793, - 0.067181, - 0.05845, - -0.031293, - -0.012946, - -0.00020751, - 0.020397, - -0.0056918, - 0.0047317, - -0.079148, - -0.046472, - 0.020218, - 0.010221, - 0.0074988, - 0.0046047, - 0.021954, - -0.042924, - 0.020079, - -0.0057946, - -0.023876, - -0.0073566, - 0.001698, - -0.0005947, - -0.0026821, - -0.007704, - -0.0026841, - 0.02668, - -0.026129, - -0.024071, - -0.038487, - 0.017553, - 0.10559, - -0.051354, - 0.039743, - 0.020425, - 0.017725, - -0.052739, - 0.04282, - -0.095083, - -0.021505, - -0.039062, - -0.020547, - -0.039734, - 0.016359, - 0.03362, - 0.034206, - 0.1147, - -0.027597, - 0.045799, - 0.01607, - -0.0069713, - 0.13813, - -0.036108, - -0.0011028, - -0.0047565, - 0.013922, - 0.017391, - -0.0084038, - -0.018302, - -0.0083582, - 0.012654, - 0.044304, - 0.03507, - 0.11265, - 0.012314, - -0.035444 - ], - "snacks": [ - -0.0038495, - -0.043611, - -0.081797, - -0.050347, - 0.02736, - -0.070394, - 0.0021934, - -0.094823, - 0.0034048, - 0.057553, - 0.0049262, - -0.026781, - 0.0021607, - 0.067364, - -0.01543, - 0.00074289, - 0.058454, - -0.017641, - 0.065094, - -0.020688, - -0.012493, - 0.011777, - -0.053541, - 0.062012, - -0.0858, - 0.051283, - -0.030588, - 0.0066024, - 0.10429, - -0.065662, - 0.046425, - -0.073098, - 0.033264, - -0.017385, - 0.12938, - 0.00068469, - 0.11125, - 0.01962, - 0.091782, - 0.0035659, - -0.049877, - -0.12371, - -0.075304, - 0.0033901, - 0.12019, - -0.030439, - 0.068124, - 0.00049908, - -0.047441, - 0.0085083, - -0.037811, - 0.062346, - 0.019394, - -0.11979, - -0.10794, - 0.026752, - -0.043444, - -0.096381, - -0.014349, - -0.028104, - -0.03027, - -0.063956, - 0.15254, - 0.1088, - -0.0096431, - 0.067783, - 0.077063, - -0.043732, - -0.096973, - 0.035259, - 0.073459, - -0.096582, - 0.12344, - 0.030988, - -0.08317, - -0.0035771, - 0.010149, - -0.077278, - 0.031749, - 0.029147, - -0.023186, - -0.072785, - 0.07668, - 0.024798, - 0.01105, - -0.00016803, - -0.029853, - -0.026229, - -0.011571, - -0.059671, - -0.0079909, - -0.027749, - -0.10501, - 0.028876, - 0.0015967, - 0.10436, - 0.0068177, - 0.11995, - -0.0094001, - -0.083736, - 0.061009, - 0.10531, - -0.013972, - -0.088175, - 0.055675, - -0.08463, - -0.12344, - 0.055452, - -0.017047, - 0.025007, - -0.014172, - 0.037825, - 0.059369, - 0.14136, - 0.042348, - -0.013016, - -0.13581, - -0.011746, - -0.040956, - 0.013751, - 0.019792, - 0.036284, - 0.014521, - -0.15757, - 0.19101, - 0.011343, - 0.0068526, - -0.067541, - 0.050766, - 0.056451, - 0.051072, - 0.035543, - 0.023149, - 0.0078709, - -0.0063141, - -0.043158, - -0.0048874, - 0.064045, - -0.010765, - 0.022505, - 0.14163, - 0.071457, - -0.020671, - -0.051191, - 0.064612, - -0.064771, - 0.052605, - -0.023893, - -0.043276, - -0.055765, - -0.010564, - 0.082194, - -0.066506, - -0.032719, - 0.076192, - -0.02871, - -0.098036, - 0.038648, - -0.010888, - 0.02522, - 0.058457, - 0.025487, - -0.0050296, - 0.053808, - 0.0031049, - 0.040366, - -0.046708, - -0.10626, - 0.044113, - -0.011159, - -0.01152, - 0.043856, - 0.082, - 0.0086725, - 0.021805, - 0.037851, - -0.042769, - 0.082621, - -0.044759, - -0.064797, - -0.0043889, - -0.068275, - 0.018927, - -0.17116, - 0.045214, - -0.038791, - 0.032476, - 0.11715, - 0.089106, - -0.063667, - 0.0086817, - 0.076242, - -0.034025, - 0.046074, - 0.071661, - 0.032683, - -0.04066, - -0.063049, - 0.086085, - -0.015343, - -0.14772, - 0.079433, - 0.057644, - -0.023084, - 0.029485, - 0.0042733, - -0.011003, - 0.02254, - 0.016802, - -0.084382, - 0.13085, - -0.0070663, - 0.1078, - 0.049296, - 0.06352, - 0.034275, - -0.045767, - -0.020731, - -0.05543, - -0.032238, - 0.052139, - 0.043448, - -0.034661, - 0.084566, - 0.095611, - -0.021717, - 0.048381, - 0.065943, - -0.010349, - 0.030133, - -0.048815, - -0.033822, - -0.062448, - 0.035877, - 0.035939, - 0.081746, - -0.030037, - -0.047808, - -0.053466, - -0.07146, - -0.029517, - -0.036516, - 0.030314, - -0.084567, - 0.015766, - 0.081042, - 0.048229, - -0.024834, - -0.068281, - -0.029242, - 0.014632, - -0.041732, - -0.045471, - 0.038463, - -0.085866, - -0.025861, - 0.040865, - -0.030175, - 0.010946, - 0.066626, - 0.068966, - 0.037864, - 0.028772, - -0.073628, - 0.036206, - 0.042525, - -0.032249, - -0.054247, - 0.035096, - 0.11569, - 0.033772, - 0.095892, - -0.12591, - -0.062055, - -0.086902, - 0.0073322, - -0.094368, - 0.019152, - -0.049149, - 0.05164, - 0.042488, - 0.0068046, - 0.018467, - 0.024312, - -0.05442, - -0.0054327, - -0.098606, - 0.065951, - 0.071508, - -0.079326, - 0.051931, - 0.042809, - -0.065244, - 0.0027012, - 0.021941, - -0.02775, - 0.052439, - 0.021734, - -0.06419, - 0.052223 - ], - "texting": [ - -0.080397, - -0.03914, - -0.039668, - 0.047353, - 0.004453, - 0.07608, - -0.053575, - -0.051509, - 0.079708, - 0.067226, - 0.097349, - -0.057077, - -0.040413, - -0.020637, - -0.0046805, - -0.090531, - 0.0697, - -0.022492, - 0.058208, - -0.083621, - -0.0014359, - -0.028929, - 0.0183, - -0.0014805, - -0.013352, - -0.0086612, - 0.056263, - 0.087436, - 0.1157, - -0.072914, - -0.016258, - 0.06709, - 0.10696, - 0.012121, - 0.043547, - 0.0040844, - 0.0082405, - 0.0056237, - -0.049052, - -0.045698, - -0.080923, - -0.10264, - -0.044775, - 0.055376, - 0.10723, - 0.049716, - -0.000065378, - -0.044995, - -0.064501, - 0.095984, - 0.044163, - -0.047129, - 0.12934, - 0.01509, - -0.054973, - 0.024664, - -0.024261, - -0.030613, - -0.10537, - 0.022632, - -0.01494, - -0.014212, - 0.029054, - 0.078174, - -0.070425, - -0.032721, - 0.065305, - 0.027186, - -0.010126, - -0.038366, - 0.040518, - 0.021908, - 0.097837, - 0.018306, - 0.045574, - -0.015815, - 0.05267, - -0.023875, - -0.072037, - -0.091515, - -0.01429, - -0.062755, - -0.064887, - 0.091163, - -0.040043, - -0.14577, - 0.0092861, - 0.047035, - 0.011204, - -0.017388, - 0.0090548, - -0.015598, - -0.094668, - 0.016317, - 0.041045, - 0.02827, - -0.044015, - 0.022047, - -0.0091759, - 0.0098241, - 0.0064446, - 0.017539, - -0.10282, - -0.010492, - -0.004136, - -0.094022, - -0.035045, - -0.018515, - 0.068589, - 0.0070492, - 0.05442, - 0.087217, - 0.14564, - 0.10391, - -0.14104, - -0.034258, - -0.032956, - 0.027161, - -0.030953, - -0.036444, - 0.017596, - 0.046308, - -0.020461, - 0.035158, - 0.038938, - -0.000055889, - -0.018291, - -0.074324, - -0.043738, - 0.079576, - 0.0018706, - 0.035336, - -0.067661, - -0.012987, - 0.034262, - -0.036714, - 0.11007, - 0.0020125, - 0.064587, - -0.025297, - 0.11253, - -0.016296, - 0.023881, - 0.060527, - 0.0018514, - -0.011732, - -0.019888, - 0.0024401, - 0.10902, - -0.048851, - 0.024614, - 0.030364, - -0.040675, - -0.077486, - -0.015762, - 0.070618, - -0.0090809, - 0.061629, - -0.043332, - -0.020664, - 0.046653, - 0.034351, - -0.079783, - 0.0089127, - -0.0093943, - -0.086451, - -0.033209, - 0.055138, - -0.091049, - -0.0060613, - -0.080351, - -0.0035998, - 0.042193, - 0.051923, - -0.094765, - 0.050321, - -0.012375, - 0.0075611, - -0.032669, - -0.11049, - 0.062226, - -0.0041043, - -0.023417, - 0.031279, - -0.038464, - -0.059955, - -0.054425, - 0.1167, - 0.081192, - 0.055933, - 0.044454, - 0.031744, - -0.075069, - 0.0086783, - 0.040943, - -0.063995, - -0.001797, - -0.041583, - -0.0054368, - 0.062384, - -0.2419, - 0.071079, - -0.025393, - 0.10105, - -0.028236, - 0.13373, - -0.040104, - 0.014449, - -0.02693, - -0.036607, - 0.063732, - 0.038999, - 0.074719, - 0.1113, - 0.06746, - -0.022575, - -0.041499, - -0.048312, - 0.068493, - -0.057298, - 0.023666, - -0.057783, - -0.034568, - 0.078852, - -0.084111, - -0.093473, - -0.012533, - 0.078203, - -0.06587, - 0.010266, - 0.081667, - -0.021088, - -0.033484, - -0.039276, - 0.047587, - 0.04424, - 0.11867, - 0.035767, - -0.014938, - -0.032305, - 0.052792, - -0.033237, - -0.027402, - -0.074625, - -0.038062, - 0.057013, - -0.0005607, - 0.053564, - -0.057536, - 0.055652, - 0.081084, - 0.07825, - -0.14738, - 0.047103, - 0.10528, - -0.025632, - -0.049003, - -0.036204, - -0.080231, - 0.0033725, - 0.023714, - 0.010477, - 0.01789, - 0.057748, - 0.026848, - 0.082832, - 0.0066348, - 0.03328, - 0.034097, - 0.03128, - -0.072389, - 0.076701, - -0.14945, - 0.024725, - -0.013684, - -0.043369, - -0.080454, - 0.11228, - -0.0068883, - -0.013827, - 0.071068, - -0.031376, - -0.09261, - -0.026266, - 0.0050216, - -0.092906, - -0.11588, - 0.0037958, - 0.072755, - -0.01691, - 0.052289, - -0.071314, - -0.076365, - -0.051216, - 0.062503, - 0.028449, - -0.0042279, - -0.023637, - 0.089162, - 0.017669 - ], - "physics": [ - -0.04545, - -0.073868, - 0.0098792, - -0.012032, - 0.02488, - -0.14015, - 0.064441, - -0.092878, - 0.062495, - 0.036237, - -0.036112, - -0.046879, - 0.084508, - -0.036043, - -0.027263, - -0.030179, - 0.12563, - 0.1367, - 0.034732, - -0.033991, - 0.046272, - 0.059537, - 0.041318, - 0.065667, - 0.0079595, - -0.024641, - -0.018114, - -0.029, - 0.029521, - 0.015827, - 0.015494, - -0.02003, - 0.051482, - -0.058239, - 0.025109, - 0.06119, - 0.011906, - -0.065032, - -0.031197, - -0.036309, - -0.084793, - -0.15049, - -0.014642, - -0.0033791, - -0.071416, - -0.029387, - -0.054731, - -0.078347, - 0.01022, - 0.032969, - -0.045782, - -0.038232, - -0.006684, - 0.044878, - -0.058069, - 0.022293, - 0.019854, - 0.053885, - 0.0023549, - 0.094031, - 0.07529, - 0.019725, - 0.10473, - 0.080373, - 0.021873, - 0.035595, - 0.041066, - 0.020431, - 0.02003, - 0.055092, - -0.0023036, - -0.059722, - 0.012262, - -0.0037851, - 0.038706, - -0.012126, - -0.055194, - -0.043321, - -0.0041135, - -0.0071931, - -0.034596, - 0.05159, - -0.086568, - 0.048114, - -0.086549, - 0.056704, - 0.055715, - -0.034772, - 0.059131, - -0.0051633, - 0.087304, - 0.0066163, - -0.080067, - 0.046975, - 0.01814, - 0.076914, - 0.018575, - 0.011616, - -0.019233, - 0.0043869, - 0.014242, - 0.0094904, - -0.025386, - -0.011519, - 0.017579, - -0.0722, - 0.030048, - 0.081579, - 0.065959, - -0.00061686, - -0.032155, - 0.085048, - 0.027144, - 0.023966, - 0.096429, - 0.013715, - -0.030634, - 0.020654, - -0.019195, - -0.020738, - 0.0115, - 0.0047582, - -0.097664, - -0.042718, - 0.048391, - -0.0025187, - -0.074419, - -0.045887, - -0.025009, - 0.16398, - -0.063665, - 0.030319, - 0.0013359, - 0.064661, - 0.040457, - -0.022704, - 0.13631, - 0.0044294, - 0.005539, - -0.038841, - 0.081228, - 0.0082769, - 0.10027, - 0.0194, - 0.03197, - 0.016889, - -0.048264, - -0.030709, - -0.086868, - 0.019355, - 0.037344, - 0.064648, - -0.023858, - -0.062576, - 0.018059, - 0.093135, - 0.031485, - 0.016656, - 0.0074592, - -0.0032754, - 0.015087, - 0.060052, - -0.093924, - -0.026902, - -0.012485, - -0.044225, - -0.035303, - -0.0073667, - 0.021417, - -0.033516, - 0.0010263, - -0.026214, - -0.048908, - 0.030804, - 0.10484, - 0.058891, - -0.056815, - 0.055509, - -0.010217, - 0.0040055, - -0.01668, - 0.05298, - -0.015497, - -0.030958, - 0.040416, - -0.06932, - -0.029406, - 0.11373, - 0.092272, - 0.06239, - 0.035457, - 0.11567, - -0.056981, - -0.046037, - -0.0057259, - 0.0035961, - -0.0023584, - 0.0004057, - 0.023516, - 0.0064416, - -0.15557, - -0.048144, - -0.016105, - -0.017381, - 0.039105, - -0.0028463, - 0.055645, - 0.000094718, - 0.027206, - 0.0066663, - 0.12855, - 0.046379, - -0.0015398, - -0.016504, - 0.057112, - 0.077, - 0.06938, - 0.013996, - -0.08642, - -0.043156, - 0.015662, - -0.034208, - -0.055584, - 0.098706, - -0.011154, - -0.021468, - 0.0066456, - 0.10442, - -0.020087, - -0.02932, - -0.032323, - -0.040382, - -0.067856, - 0.030344, - -0.0004921, - 0.029258, - 0.020925, - 0.0091186, - -0.063196, - 0.0020981, - 0.026263, - -0.032459, - 0.042539, - 0.017057, - 0.011353, - 0.038405, - -0.034139, - -0.007839, - -0.050487, - 0.054261, - 0.035694, - -0.02557, - 0.03229, - 0.050643, - -0.016157, - 0.0057193, - 0.029799, - 0.056928, - 0.042019, - 0.018304, - 0.029311, - 0.0035017, - 0.030829, - -0.0023216, - -0.059961, - -0.019158, - 0.029219, - 0.033392, - 0.12012, - 0.0061551, - 0.051574, - 0.084631, - -0.085139, - -0.022411, - -0.00058536, - -0.028054, - -0.021132, - -0.038135, - 0.068634, - -0.042549, - 0.091977, - -0.0076299, - -0.020071, - -0.038464, - -0.049929, - -0.049699, - -0.058461, - -0.0042384, - -0.054531, - 0.021249, - -0.0053681, - 0.016965, - -0.03795, - -0.07219, - -0.0095739, - -0.0034875, - 0.03906, - -0.020645, - 0.019152, - 0.052412 - ], - "governance": [ - 0.044601, - -0.089948, - -0.02082, - 0.023294, - -0.013057, - -0.053257, - 0.00014046, - -0.063573, - 0.034138, - 0.024028, - -0.0016694, - -0.063515, - 0.020427, - 0.036312, - 0.031883, - 0.034502, - 0.063075, - -0.0017492, - 0.043202, - 0.024454, - -0.061298, - -0.024806, - 0.034608, - 0.043122, - 0.017436, - 0.029983, - -0.010428, - -0.058373, - -0.012494, - -0.054547, - 0.0099242, - -0.019755, - -0.071567, - -0.064966, - 0.01697, - 0.027848, - 0.00496, - 0.012481, - 0.010865, - 0.021535, - -0.041977, - -0.11818, - 0.011429, - 0.054105, - -0.020183, - -0.043202, - -0.0048665, - -0.04602, - -0.006213, - 0.0096932, - 0.0043604, - -0.034033, - 0.056173, - -0.0018446, - -0.046705, - 0.0068691, - -0.026978, - -0.0082291, - -0.0032554, - 0.053214, - 0.044412, - -0.033654, - 0.062529, - 0.024673, - 0.047973, - -0.0093819, - 0.019932, - -0.0033711, - 0.071425, - -0.036031, - -0.021426, - -0.040437, - -0.012597, - -0.014245, - 0.035647, - 0.0057083, - -0.034503, - -0.018726, - -0.049603, - 0.025759, - -0.016167, - 0.0060581, - -0.024885, - 0.065287, - 0.043531, - 0.033209, - -0.016542, - -0.023882, - 0.035313, - 0.037321, - 0.010903, - 0.039682, - -0.082522, - 0.0081821, - -0.043834, - 0.042783, - 0.061039, - 0.0094694, - -0.012226, - -0.025898, - 0.018833, - -0.017687, - 0.02138, - -0.09255, - 0.0074934, - -0.047335, - 0.043212, - -0.0088995, - -0.049988, - -0.0061883, - 0.0076408, - 0.04984, - 0.057207, - -0.025679, - -0.010213, - 0.027428, - -0.0070984, - -0.0011572, - -0.028642, - 0.055939, - 0.036423, - -0.068314, - 0.081352, - -0.0010151, - 0.048339, - 0.04491, - -0.025152, - -0.066411, - 0.014316, - 0.13546, - -0.019712, - -0.03752, - 0.043451, - 0.048882, - -0.011719, - -0.0054442, - -0.024131, - -0.0094114, - 0.014112, - 0.029059, - 0.013086, - -0.057838, - 0.0087847, - 0.015627, - 0.0021091, - -0.057315, - 0.021436, - -0.015577, - -0.034322, - -0.039472, - 0.049446, - 0.036698, - 0.083475, - -0.074811, - -0.0024784, - 0.052317, - -0.012449, - 0.011763, - -0.032543, - -0.013014, - 0.046412, - -0.0093697, - -0.097382, - 0.018126, - -0.052566, - 0.025332, - 0.05198, - -0.026647, - 0.0071498, - 0.032523, - -0.0082827, - 0.018584, - -0.047254, - 0.014891, - -0.02224, - 0.063706, - 0.0057265, - 0.043312, - -0.038962, - -0.059028, - 0.0045381, - 0.034696, - 0.031249, - 0.0063046, - -0.028733, - -0.015165, - -0.050002, - 0.10201, - -0.0034805, - -0.015812, - -0.046291, - 0.045025, - 0.0034237, - -0.0039386, - 0.020159, - -0.072488, - 0.022399, - 0.0017934, - 0.0072908, - -0.03575, - -0.13162, - 0.029365, - 0.017358, - -0.057934, - -0.037146, - -0.02821, - -0.02735, - 0.0027741, - -0.011421, - 0.035519, - 0.090552, - 0.0095406, - -0.0069713, - 0.030138, - 0.026977, - 0.0076024, - 0.027758, - 0.0033434, - -0.033035, - -0.013578, - -0.013899, - 0.0097348, - -0.058319, - 0.074249, - -0.0098881, - 0.036747, - 0.033716, - 0.054519, - 0.017468, - -0.03588, - -0.016284, - -0.032644, - -0.039518, - 0.032085, - 0.020296, - 0.037886, - -0.011302, - -0.00032146, - 0.010197, - -0.0040474, - 0.00277, - -0.00096384, - 0.0057171, - 0.028962, - -0.00050242, - 0.015519, - -0.046645, - -0.051056, - -0.000016108, - -0.0029514, - 0.046195, - 0.0023979, - -0.060351, - -0.036457, - 0.018572, - 0.023495, - -0.0033701, - 0.026618, - 0.028229, - 0.026528, - -0.021102, - -0.035366, - 0.034935, - 0.013941, - 0.011552, - 0.014476, - 0.027438, - 0.025534, - -0.064245, - 0.03895, - -0.036692, - 0.046452, - -0.10839, - -0.033472, - -0.029729, - -0.0059093, - 0.027221, - -0.040487, - -0.026494, - 0.019633, - 0.078477, - -0.032523, - -0.049625, - 0.017485, - 0.017256, - -0.031119, - -0.01679, - 0.028917, - -0.066505, - 0.025874, - 0.019996, - 0.0030385, - -0.012149, - -0.035485, - -0.016234, - 0.031388, - -0.042916, - 0.043917, - -0.038146, - -0.025615 - ], - "sports": [ - 0.049474, - -0.13371, - 0.10184, - -0.008927, - -0.0077657, - -0.11878, - -0.0044815, - -0.11768, - 0.10159, - 0.016723, - -0.030429, - -0.068288, - 0.007291, - 0.0070194, - 0.088203, - 0.012179, - 0.13516, - 0.0000091633, - 0.083936, - 0.020576, - 0.030489, - -0.10416, - 0.052747, - 0.076228, - 0.022492, - -0.030925, - 0.030816, - -0.036105, - 0.084346, - 0.022945, - 0.044079, - -0.026258, - 0.045011, - -0.054238, - 0.11015, - 0.027813, - 0.073741, - 0.014073, - 0.025736, - 0.013215, - 0.031941, - -0.13447, - -0.015596, - 0.029285, - 0.057262, - -0.041282, - 0.054659, - -0.030682, - -0.00095692, - -0.011155, - -0.038596, - -0.010228, - 0.073036, - 0.0082919, - -0.066074, - 0.014357, - 0.038973, - -0.019467, - -0.073901, - 0.036058, - -0.017854, - 0.0088976, - 0.16471, - 0.019488, - 0.068819, - -0.06118, - -0.0038668, - 0.022264, - 0.093783, - 0.013528, - 0.042914, - -0.074456, - 0.075826, - 0.05555, - 0.047984, - 0.056108, - 0.00046711, - -0.050101, - -0.071101, - -0.024991, - -0.026726, - 0.00067382, - -0.081882, - 0.07055, - -0.032727, - -0.051738, - -0.058497, - -0.0051937, - -0.026241, - -0.032872, - 0.042251, - 0.017165, - -0.12612, - 0.053665, - 0.031625, - 0.11078, - -0.076125, - -0.0030766, - 0.011501, - 0.015124, - 0.019359, - 0.058706, - -0.015535, - -0.051692, - 0.041201, - -0.086695, - -0.095958, - 0.048865, - 0.027049, - 0.020695, - -0.056116, - 0.064244, - 0.0613, - 0.036377, - 0.069576, - -0.034046, - -0.048426, - 0.016022, - -0.054357, - 0.0030362, - 0.077053, - 0.066316, - -0.039997, - -0.042493, - 0.1331, - -0.064325, - -0.071906, - -0.066858, - 0.012603, - 0.11416, - 0.035046, - 0.059535, - 0.045222, - -0.024923, - -0.0048696, - 0.014428, - 0.044786, - 0.0080833, - -0.022412, - -0.051236, - 0.047048, - -0.016185, - 0.060155, - 0.036287, - -0.011846, - 0.039644, - -0.028091, - -0.09527, - 0.016368, - 0.0079379, - 0.05712, - 0.11159, - 0.011945, - -0.090835, - -0.043146, - 0.004738, - 0.002398, - 0.10884, - 0.063449, - -0.00025424, - 0.012774, - -0.013524, - -0.048912, - 0.068631, - 0.0091387, - -0.018075, - 0.019261, - 0.0055134, - -0.075136, - -0.098314, - 0.065167, - -0.019121, - 0.034872, - 0.037738, - 0.075096, - 0.070927, - -0.049735, - 0.036619, - -0.04061, - -0.012192, - -0.013266, - -0.097175, - -0.0024832, - -0.044487, - 0.0066759, - -0.014566, - -0.036589, - 0.082624, - 0.056055, - -0.017453, - -0.10171, - 0.11894, - -0.048513, - -0.047625, - 0.015936, - -0.074612, - 0.0028944, - -0.050717, - 0.050566, - 0.028854, - -0.18044, - 0.086865, - -0.031059, - -0.12061, - -0.0052397, - 0.038252, - -0.020809, - 0.026483, - -0.0038083, - -0.021144, - 0.16203, - 0.015043, - 0.015094, - 0.031479, - -0.019848, - 0.01339, - -0.075772, - -0.02141, - -0.042583, - -0.0076343, - -0.04403, - -0.021332, - -0.084856, - 0.13155, - -0.036526, - 0.0045516, - 0.043097, - 0.094679, - -0.040446, - -0.0041449, - -0.01034, - -0.015529, - -0.056569, - 0.0056159, - 0.00028671, - 0.078949, - -0.053549, - -0.018105, - -0.027748, - -0.042347, - -0.0063846, - -0.025188, - 0.033371, - -0.031202, - -0.018916, - 0.058107, - -0.012423, - 0.013035, - 0.015539, - -0.0029248, - 0.074058, - 0.050954, - -0.019315, - 0.010017, - -0.065567, - 0.020757, - -0.057083, - -0.0041907, - 0.070346, - 0.069982, - -0.011777, - -0.0010416, - 0.045755, - -0.018447, - 0.019142, - 0.0607, - -0.021802, - -0.011243, - 0.12485, - 0.011931, - 0.025368, - 0.13075, - -0.1118, - -0.034184, - -0.032339, - -0.036576, - -0.063645, - -0.018984, - -0.016765, - -0.0052443, - 0.095797, - 0.011001, - -0.0036834, - 0.023104, - -0.019359, - 0.024539, - 0.011376, - -0.038443, - -0.06172, - 0.026336, - 0.11278, - -0.032046, - -0.040437, - -0.0021553, - 0.012701, - 0.0041995, - -0.016795, - 0.081275, - 0.066633, - -0.075383 - ], - "live": [ - 0.0088636, - 0.064954, - 0.064889, - 0.029298, - 0.068437, - -0.034198, - 0.024368, - -0.14408, - 0.030419, - 0.0039468, - -0.060793, - -0.13724, - 0.0052531, - -0.027814, - 0.012772, - -0.011487, - 0.16343, - 0.004593, - 0.093268, - 0.074015, - 0.034774, - -0.040891, - -0.0000033332, - 0.077583, - 0.020168, - 0.034798, - -0.006617, - 0.055224, - -0.063591, - 0.038466, - -0.08281, - 0.036616, - -0.047808, - 0.0063039, - 0.042203, - 0.0095702, - 0.0035332, - -0.033573, - -0.0088283, - 0.058909, - -0.021926, - -0.094811, - 0.008334, - -0.058922, - -0.057832, - -0.055666, - -0.0041744, - -0.086474, - 0.026155, - 0.077602, - -0.037856, - 0.015097, - 0.059512, - -0.054023, - -0.20259, - 0.01556, - 0.012764, - -0.010725, - -0.080376, - -0.048624, - -0.036602, - 0.058189, - 0.24853, - 0.036436, - 0.044231, - 0.013693, - -0.054927, - -0.014949, - 0.0011364, - -0.068447, - 0.043792, - 0.082468, - 0.099325, - -0.0084894, - 0.038496, - 0.04863, - 0.077385, - -0.043728, - -0.061996, - 0.013449, - 0.054116, - -0.092133, - 0.037899, - 0.088434, - 0.016581, - -0.048265, - -0.034267, - -0.06161, - -0.017454, - 0.019759, - -0.089578, - 0.042638, - -0.1532, - 0.04352, - -0.020701, - -0.014166, - 0.12355, - 0.062718, - 0.088206, - -0.0008324, - 0.093229, - -0.012582, - 0.054082, - 0.011568, - 0.06925, - -0.15635, - 0.018677, - -0.0097056, - 0.037852, - -0.0042353, - -0.081925, - 0.0079267, - 0.077592, - 0.023326, - -0.016852, - 0.031842, - -0.039087, - 0.0019362, - -0.050795, - -0.023763, - -0.052056, - 0.054567, - -0.027393, - -0.0095873, - 0.033587, - 0.0152, - 0.057634, - -0.068442, - 0.043286, - 0.046161, - 0.10708, - 0.075925, - 0.13964, - -0.05453, - 0.0098053, - 0.024683, - 0.04916, - 0.10433, - 0.0056841, - 0.0067301, - 0.0022145, - -0.061614, - 0.042918, - 0.001312, - -0.076614, - 0.053062, - -0.04409, - 0.060053, - -0.011751, - -0.079641, - -0.0030042, - 0.1712, - -0.038043, - -0.068876, - -0.078375, - -0.054865, - 0.030283, - 0.1806, - 0.074963, - -0.10183, - 0.033528, - 0.081745, - 0.0088363, - 0.0645, - -0.0064654, - 0.034037, - 0.012413, - 0.068361, - -0.014998, - 0.046779, - -0.015866, - 0.029463, - 0.045774, - 0.045395, - -0.040267, - 0.064936, - 0.097215, - -0.012427, - -0.046361, - -0.01496, - 0.11499, - 0.045082, - 0.021543, - -0.019849, - -0.058689, - -0.082586, - -0.052287, - 0.10454, - -0.020881, - -0.074797, - 0.076977, - 0.025911, - -0.03488, - 0.00011642, - -0.04978, - -0.05026, - 0.036067, - 0.056602, - -0.0089602, - 0.039118, - -0.24084, - 0.23463, - -0.02975, - -0.08257, - -0.10112, - 0.026726, - -0.035464, - -0.022784, - 0.014522, - -0.027758, - 0.06285, - -0.096857, - 0.023728, - 0.007113, - 0.00045632, - -0.096928, - 0.045645, - 0.039468, - 0.0071512, - -0.041085, - 0.053677, - -0.015694, - -0.013532, - 0.17279, - -0.01557, - -0.00089289, - 0.0025346, - 0.14522, - -0.10093, - -0.02136, - 0.066344, - -0.11401, - -0.068228, - -0.030164, - -0.020535, - -0.010995, - 0.0083266, - 0.063808, - 0.015747, - -0.056351, - 0.21182, - 0.00013736, - -0.034288, - 0.047839, - -0.18669, - -0.0084783, - -0.002877, - -0.091236, - 0.011257, - -0.03934, - 0.054222, - 0.0066853, - -0.032875, - 0.013786, - -0.046528, - 0.023328, - 0.032281, - 0.027823, - 0.040505, - 0.031263, - 0.11976, - 0.039477, - 0.0088291, - -0.12671, - 0.032778, - -0.032439, - 0.16227, - -0.037007, - 0.049579, - 0.004776, - -0.025589, - 0.13702, - -0.14487, - -0.076381, - -0.039659, - -0.075095, - -0.0024416, - -0.014157, - 0.059553, - 0.0017743, - 0.035578, - 0.019686, - -0.010229, - -0.033903, - 0.00033019, - -0.014322, - 0.10241, - -0.059003, - 0.020967, - -0.016763, - 0.058218, - 0.041642, - -0.076663, - -0.033615, - 0.0069011, - 0.0058339, - 0.04661, - -0.0065115, - -0.070225, - 0.075418 - ], - "music": [ - 0.0012297, - -0.089319, - -0.023908, - 0.13261, - 0.054875, - -0.039387, - 0.02237, - -0.11961, - 0.097224, - 0.009315, - 0.0014722, - -0.071594, - 0.048918, - -0.010772, - 0.054731, - 0.047156, - 0.17888, - 0.089706, - 0.035573, - 0.036463, - -0.038956, - -0.049051, - 0.0015883, - 0.05742, - -0.032701, - 0.052645, - -0.00015858, - 0.070897, - 0.067111, - -0.099019, - -0.05602, - -0.021281, - 0.029408, - -0.074124, - 0.073652, - 0.027781, - 0.025223, - 0.00063875, - 0.028682, - -0.017382, - -0.048772, - -0.15187, - -0.096406, - -0.04761, - -0.023001, - -0.01926, - 0.079101, - -0.079108, - 0.0098828, - -0.0050383, - -0.048303, - -0.018338, - 0.03106, - 0.015242, - -0.055239, - 0.12324, - -0.046722, - 0.046247, - -0.068053, - 0.032781, - -0.025992, - -0.057769, - 0.15191, - 0.068065, - 0.03284, - -0.0061087, - 0.0064611, - 0.0085693, - 0.033069, - 0.025919, - 0.02823, - 0.03122, - 0.031385, - 0.01604, - -0.024281, - 0.072364, - 0.039343, - 0.0012478, - 0.04221, - 0.00035234, - -0.013727, - 0.0014287, - -0.077833, - 0.062999, - -0.0819, - -0.045956, - 0.0010084, - 0.018083, - -0.023146, - -0.0024787, - -0.0069446, - 0.037519, - -0.14513, - 0.010317, - 0.021036, - 0.066371, - -0.0023742, - 0.065195, - 0.037692, - 0.067934, - 0.13854, - 0.06301, - 0.054017, - -0.083344, - 0.021926, - -0.1334, - -0.049595, - 0.0047272, - -0.0013179, - -0.032208, - -0.02422, - 0.080367, - 0.075125, - 0.016899, - -0.034891, - 0.0089799, - 0.035401, - -0.0068376, - -0.00076862, - -0.0018111, - -0.044824, - -0.015402, - -0.10655, - -0.054845, - 0.071844, - -0.021641, - -0.043965, - -0.075148, - 0.023973, - 0.14931, - -0.0019508, - -0.0014279, - -0.02399, - 0.040951, - 0.059235, - -0.011703, - 0.01984, - 0.06389, - 0.033125, - -0.0098293, - 0.0075478, - 0.041203, - 0.073412, - 0.019564, - -0.021082, - -0.050467, - -0.040379, - -0.067366, - -0.013692, - -0.0032876, - 0.065939, - 0.11417, - -0.0021052, - -0.10133, - 0.026925, - -0.011038, - -0.030577, - 0.088041, - 0.072217, - -0.022444, - 0.02106, - 0.051688, - -0.097727, - -0.0000043971, - 0.04672, - 0.058693, - 0.023821, - -0.019138, - -0.0064098, - 0.086963, - 0.046556, - 0.046858, - 0.11749, - 0.0065762, - 0.077081, - 0.053625, - -0.021338, - 0.03453, - 0.011232, - -0.13158, - -0.04008, - 0.0042935, - -0.061084, - -0.06361, - -0.026539, - -0.03895, - -0.04315, - 0.11246, - -0.01609, - -0.027456, - -0.0090324, - 0.10376, - 0.015678, - 0.047362, - -0.048203, - 0.074581, - 0.044433, - -0.036134, - 0.041511, - -0.017535, - -0.20881, - 0.050597, - -0.041371, - -0.072382, - 0.036019, - 0.016916, - 0.059094, - -0.034356, - -0.043418, - 0.0027879, - 0.14773, - 0.027312, - -0.014725, - -0.0094152, - 0.019697, - 0.0023322, - 0.0080038, - -0.02185, - -0.026528, - -0.011434, - 0.060468, - -0.002088, - 0.028294, - 0.14541, - 0.029585, - 0.033852, - 0.092196, - 0.095423, - -0.022225, - -0.032299, - 0.07713, - -0.056117, - -0.060302, - -0.0071229, - 0.02909, - 0.048575, - -0.0025412, - -0.01388, - 0.037286, - -0.069988, - 0.028672, - -0.015268, - 0.018154, - -0.014858, - -0.049961, - -0.040836, - -0.060165, - -0.009041, - 0.00029727, - 0.035653, - 0.13262, - -0.088273, - -0.11667, - 0.022586, - -0.050328, - 0.037668, - -0.11849, - -0.0010452, - 0.01725, - -0.0094639, - 0.11232, - -0.01337, - 0.13774, - 0.011102, - -0.0088196, - 0.05189, - 0.0020965, - 0.017319, - 0.071244, - -0.0029686, - 0.079332, - 0.11284, - -0.11999, - -0.0685, - -0.049565, - -0.058162, - -0.018686, - 0.04012, - -0.022828, - 0.10403, - 0.12597, - 0.040631, - 0.034102, - -0.062553, - -0.0020178, - -0.051084, - 0.018178, - 0.020768, - 0.013871, - 0.022064, - 0.0022687, - -0.05045, - -0.026382, - -0.026293, - -0.019948, - 0.032641, - 0.063407, - 0.011079, - 0.081995, - 0.000041228 - ], - "iphone": [ - -0.065991, - 0.027172, - -0.040464, - 0.095708, - -0.020885, - 0.05349, - 0.081659, - 0.017845, - 0.048811, - -0.030058, - 0.0035661, - -0.051695, - -0.1097, - -0.077905, - 0.068075, - -0.0044955, - 0.021509, - 0.019516, - 0.0065393, - -0.065749, - 0.030879, - 0.03259, - 0.013539, - -0.025637, - 0.088299, - -0.1246, - 0.10457, - -0.029381, - 0.047076, - -0.0014553, - -0.018983, - -0.021462, - 0.070413, - -0.021664, - 0.0085824, - -0.02267, - -0.0080086, - -0.034371, - -0.070873, - -0.044919, - -0.063181, - -0.027365, - -0.043299, - -0.073967, - 0.064295, - 0.054933, - -0.069918, - -0.042694, - 0.026966, - 0.013236, - 0.072804, - -0.065211, - -0.02986, - -0.09062, - -0.028258, - 0.056022, - 0.034907, - 0.0381, - -0.052939, - 0.033671, - -0.066892, - -0.036753, - 0.080745, - 0.13059, - 0.02795, - -0.0071718, - -0.0062333, - 0.02045, - -0.054238, - -0.0073049, - -0.05581, - -0.01224, - 0.028099, - -0.071817, - -0.12326, - -0.038493, - 0.022797, - 0.01439, - -0.055572, - -0.032953, - 0.010587, - -0.079699, - -0.051939, - 0.18296, - -0.0025549, - -0.0034345, - -0.065072, - -0.0098519, - -0.091977, - 0.040541, - 0.0055814, - 0.016715, - -0.038602, - -0.0088457, - 0.044268, - 0.042772, - 0.076656, - -0.18536, - -0.03246, - 0.06734, - 0.064357, - 0.04281, - 0.049846, - 0.034823, - -0.000051111, - -0.1038, - -0.018811, - 0.01641, - 0.048498, - 0.001024, - -0.04618, - 0.062102, - 0.093049, - 0.088884, - -0.052199, - -0.011989, - -0.14242, - 0.033234, - -0.057947, - -0.033221, - -0.048037, - 0.082501, - -0.054182, - 0.015381, - 0.01423, - 0.098247, - 0.036161, - -0.048681, - -0.033263, - 0.0093759, - 0.027507, - -0.073562, - 0.011626, - -0.08342, - 0.022451, - -0.057634, - 0.029123, - 0.014176, - -0.089116, - -0.00832, - 0.025574, - 0.034497, - 0.020561, - 0.011465, - -0.04166, - 0.08237, - -0.035466, - -0.0030271, - 0.08034, - -0.0078135, - 0.021737, - 0.01731, - 0.13167, - -0.037892, - -0.045694, - 0.035817, - -0.038861, - 0.0017828, - -0.032195, - -0.039514, - 0.012283, - -0.0002943, - -0.0067174, - -0.045577, - 0.018377, - 0.023784, - 0.030862, - 0.04791, - 0.013957, - 0.091647, - -0.067843, - 0.13151, - 0.048684, - 0.0028841, - -0.048995, - 0.12173, - 0.0063051, - -0.037079, - 0.10602, - -0.045984, - 0.036029, - -0.037036, - -0.083805, - -0.034729, - -0.04701, - -0.001874, - -0.026437, - 0.18118, - -0.027264, - 0.066314, - -0.032472, - 0.037887, - 0.02595, - 0.07543, - 0.047524, - -0.044398, - -0.037756, - 0.03912, - 0.025747, - 0.098803, - -0.13597, - 0.12425, - -0.055953, - 0.032243, - -0.02772, - 0.030594, - -0.018908, - -0.052554, - -0.061716, - -0.066076, - 0.13305, - -0.032726, - 0.034282, - 0.024339, - 0.017141, - 0.075818, - -0.061563, - 0.020935, - -0.0048433, - 0.018992, - 0.089208, - 0.029621, - 0.02849, - 0.083483, - -0.013079, - -0.019278, - 0.010124, - 0.065717, - -0.051027, - 0.016782, - 0.019611, - -0.067481, - -0.0047242, - 0.012668, - 0.11253, - 0.057271, - -0.02608, - -0.071876, - 0.055145, - 0.025233, - 0.034162, - -0.02979, - 0.058032, - -0.079048, - -0.014845, - -0.041194, - 0.071372, - 0.028211, - -0.10002, - 0.0054006, - -0.026908, - -0.017453, - -0.12872, - 0.02795, - 0.040119, - -0.11066, - -0.015713, - -0.047963, - 0.0071397, - 0.048029, - -0.05254, - 0.055355, - 0.061469, - -0.017308, - 0.058452, - -0.030897, - -0.06261, - -0.013888, - 0.033376, - 0.056081, - -0.027381, - 0.052147, - -0.027619, - 0.016432, - -0.053543, - 0.024274, - -0.01179, - 0.018063, - 0.0077753, - -0.036238, - 0.098354, - -0.013251, - 0.023571, - -0.064581, - -0.049845, - -0.079004, - -0.085715, - 0.038772, - 0.017958, - 0.003521, - -0.045228, - -0.046021, - -0.12401, - 0.025251, - 0.013158, - -0.015565, - -0.05383, - 0.046009, - 0.049139, - -0.046761 - ], - "vehicle": [ - 0.015496, - -0.040639, - 0.051267, - 0.099645, - -0.02123, - -0.016897, - -0.0515, - -0.089411, - 0.040813, - 0.034376, - 0.046386, - -0.019949, - 0.021755, - 0.046845, - -0.0685, - 0.011243, - 0.10533, - 0.020857, - 0.063833, - 0.061706, - 0.014722, - -0.064474, - 0.040879, - 0.05757, - 0.011404, - 0.078368, - -0.056002, - -0.016136, - -0.0027325, - 0.017683, - -0.030792, - 0.055028, - 0.047445, - -0.033426, - 0.0075322, - 0.000067638, - -0.012983, - -0.012927, - 0.052548, - -0.038438, - 0.023816, - -0.1461, - 0.077361, - -0.031806, - -0.002399, - -0.052896, - -0.0014482, - -0.031102, - -0.045887, - -0.020991, - 0.057062, - 0.0041808, - -0.0042745, - -0.0029868, - -0.05878, - -0.0092005, - 0.033042, - -0.010629, - -0.045948, - 0.0077947, - 0.083662, - -0.038173, - 0.14703, - 0.070975, - 0.08943, - 0.011489, - 0.01616, - -0.03045, - -0.039146, - 0.035783, - 0.038044, - 0.013092, - -0.021899, - -0.02111, - -0.014808, - 0.044497, - -0.066709, - -0.055281, - 0.035624, - -0.016309, - -0.0077926, - -0.028005, - -0.062412, - 0.026979, - -0.0032125, - -0.049967, - -0.043029, - -0.029679, - 0.028622, - -0.064593, - 0.02241, - 0.018341, - -0.10301, - 0.0019398, - 0.0060378, - 0.097145, - -0.0042085, - 0.0029168, - 0.027741, - -0.067735, - 0.022715, - -0.061231, - 0.031805, - -0.03638, - -0.03127, - -0.095727, - -0.014161, - 0.039069, - 0.010719, - 0.024658, - 0.085411, - 0.07577, - 0.098908, - 0.044027, - -0.016562, - -0.064198, - -0.0085474, - -0.022876, - -0.053183, - 0.038077, - -0.009652, - 0.0080266, - -0.048544, - -0.012789, - 0.087303, - -0.004067, - 0.003777, - -0.13787, - 0.10536, - 0.03954, - -0.017411, - -0.029067, - 0.0925, - -0.030235, - 0.036708, - -0.0048324, - 0.042867, - -0.013099, - 0.0096273, - -0.012372, - -0.11894, - -0.042855, - 0.02616, - -0.027046, - -0.0163, - 0.0094008, - 0.013432, - 0.0034818, - -0.0038424, - 0.010137, - 0.01525, - 0.056363, - 0.0022979, - -0.10867, - 0.015344, - 0.034015, - -0.052377, - -0.015805, - -0.069597, - -0.0099398, - 0.013352, - 0.026284, - -0.066522, - 0.017364, - 0.050533, - -0.063621, - 0.068161, - -0.009451, - -0.021727, - 0.032006, - 0.030735, - -0.032316, - 0.011538, - 0.042755, - -0.037241, - 0.061924, - -0.035065, - 0.0020935, - -0.062189, - 0.0015222, - 0.011304, - 0.020638, - -0.056491, - -0.018288, - -0.028065, - -0.087082, - -0.039218, - 0.071302, - 0.044759, - -0.046558, - -0.016635, - 0.032949, - 0.038588, - 0.041605, - 0.056701, - 0.033533, - -0.032561, - -0.028282, - 0.0048265, - 0.017803, - -0.16176, - 0.09095, - -0.021415, - -0.050105, - 0.050998, - 0.019432, - -0.026437, - 0.077745, - 0.024046, - -0.066968, - 0.10615, - -0.040529, - 0.0068396, - -0.00050623, - -0.014848, - 0.056364, - -0.092995, - -0.066489, - 0.035574, - -0.0092161, - -0.077706, - -0.015765, - 0.024651, - 0.10141, - 0.0079494, - -0.016634, - -0.053955, - 0.016791, - -0.013779, - 0.0086079, - -0.064761, - -0.053766, - -0.058307, - -0.062712, - -0.013026, - -0.059741, - 0.045241, - -0.047114, - -0.054561, - -0.043447, - 0.052336, - 0.0090144, - -0.037704, - -0.023601, - 0.0001831, - -0.0059671, - 0.045716, - 0.019129, - 0.038969, - 0.046227, - -0.0024761, - 0.064629, - -0.044095, - 0.00052552, - 0.017182, - -0.066881, - 0.017726, - 0.050945, - -0.010403, - 0.016315, - 0.064085, - 0.035367, - -0.12041, - -0.01937, - -0.0036163, - 0.031665, - 0.070591, - 0.0073682, - 0.019696, - 0.025477, - -0.029037, - 0.11878, - -0.10978, - -0.037079, - -0.017932, - -0.014611, - 0.011303, - 0.053981, - 0.012066, - -0.023097, - 0.093374, - -0.043037, - -0.020538, - -0.010583, - -0.0022925, - -0.04358, - -0.036769, - -0.00023617, - 0.034679, - 0.0080576, - 0.026595, - -0.087605, - -0.036282, - -0.0024785, - -0.052071, - -0.026929, - 0.016052, - -0.028008, - 0.026811, - -0.027006 - ], - "tourism": [ - -0.0013429, - -0.075664, - 0.0021276, - -0.036369, - -0.036795, - -0.035015, - -0.013271, - -0.079505, - 0.10306, - 0.041194, - 0.027026, - -0.047381, - -0.064356, - -0.05646, - 0.021203, - 0.0005763, - 0.12694, - -0.048349, - -0.0099601, - 0.04218, - 0.022187, - -0.061472, - 0.032311, - 0.077431, - 0.047678, - -0.03701, - -0.024041, - 0.11561, - 0.018973, - 0.024853, - -0.0052095, - 0.020475, - 0.043809, - -0.041109, - 0.070709, - 0.08192, - 0.010763, - 0.029142, - -0.043815, - 0.011698, - 0.036252, - -0.13328, - -0.024437, - 0.00023528, - 0.085738, - 0.011733, - -0.031424, - -0.0011681, - -0.02224, - 0.023354, - -0.025208, - -0.035384, - -0.007494, - -0.002706, - -0.069772, - -0.00046686, - -0.014836, - -0.014751, - -0.064329, - -0.008047, - 0.013476, - 0.037775, - 0.061482, - -0.043165, - 0.03934, - 0.063936, - 0.0043279, - -0.068552, - 0.020241, - 0.039288, - -0.035033, - -0.033494, - 0.0058019, - 0.10183, - 0.042797, - -0.094345, - 0.037333, - 0.0040534, - 0.022624, - -0.10884, - -0.040437, - 0.0082925, - -0.14672, - 0.046908, - -0.07845, - -0.095915, - 0.0052277, - -0.0124, - -0.029933, - -0.050593, - -0.0089793, - 0.06423, - -0.095454, - 0.00090048, - -0.074978, - 0.060582, - 0.02772, - 0.002957, - -0.0073206, - -0.032343, - -0.0029552, - 0.10086, - -0.049495, - -0.075512, - 0.011799, - -0.082621, - 0.032046, - 0.012741, - -0.0031152, - 0.025155, - 0.021235, - 0.091305, - 0.096249, - 0.040789, - 0.03157, - -0.011304, - -0.020232, - -0.028988, - -0.058098, - 0.16668, - -0.0089775, - 0.055157, - -0.088613, - -0.030808, - 0.080201, - 0.021264, - -0.070724, - -0.081599, - -0.010715, - 0.13639, - 0.063475, - -0.010654, - -0.048975, - 0.0019065, - -0.068945, - 0.032216, - 0.047329, - 0.0074594, - -0.04975, - 0.046808, - 0.011094, - -0.055621, - 0.069249, - 0.037912, - 0.036121, - -0.0061881, - -0.010472, - -0.031822, - -0.06178, - 0.030251, - 0.065342, - 0.04735, - 0.034762, - -0.1266, - 0.039798, - 0.070577, - -0.044633, - 0.099888, - -0.042578, - 0.01045, - 0.04796, - -0.012522, - -0.13226, - 0.01296, - -0.051664, - 0.059822, - 0.075331, - -0.038807, - 0.026391, - 0.13091, - 0.038077, - 0.01785, - -0.042274, - -0.066204, - -0.025361, - 0.067111, - -0.086469, - 0.015159, - -0.032528, - 0.1387, - -0.11369, - 0.068103, - 0.028562, - -0.058869, - 0.026904, - -0.046195, - 0.049884, - 0.10424, - -0.012823, - -0.025071, - -0.065938, - 0.074461, - -0.034923, - 0.079902, - -0.058307, - -0.014279, - 0.023189, - -0.10497, - -0.0086997, - -0.065966, - -0.19656, - 0.059515, - -0.0059197, - -0.053969, - 0.062095, - 0.12298, - -0.045354, - -0.0017319, - 0.066862, - 0.0088609, - 0.12922, - -0.019716, - -0.031371, - -0.059975, - 0.014942, - 0.085365, - -0.0059459, - -0.051487, - -0.0038535, - -0.01824, - -0.043237, - -0.12696, - -0.029281, - 0.099633, - -0.0018298, - -0.024981, - -0.092913, - 0.067997, - -0.0077032, - -0.026897, - -0.020839, - -0.031818, - -0.030255, - -0.0039772, - 0.041816, - -0.037217, - -0.036206, - 0.032732, - -0.0040325, - -0.073836, - 0.036285, - 0.08355, - 0.026094, - -0.044491, - 0.018272, - 0.035961, - 0.014623, - -0.085135, - -0.019489, - 0.030979, - 0.097519, - -0.018736, - 0.014135, - -0.05918, - 0.018761, - 0.083687, - -0.080053, - 0.021368, - 0.054456, - 0.060656, - -0.0060522, - -0.0037648, - 0.032346, - 0.023194, - 0.073134, - 0.078513, - 0.020742, - -0.0014718, - 0.093228, - 0.022062, - 0.013382, - 0.080487, - -0.11964, - -0.02834, - -0.020279, - -0.020444, - 0.054696, - 0.0040752, - -0.084343, - -0.094132, - 0.098035, - 0.023389, - -0.031441, - 0.037698, - -0.0042497, - 0.040313, - 0.023879, - 0.0048577, - -0.026021, - -0.044062, - 0.042063, - 0.075492, - -0.035905, - 0.026718, - 0.010024, - 0.067784, - -0.0031992, - 0.072895, - -0.0018833, - -0.10452 - ], - "encryption": [ - -0.017239, - 0.014236, - -0.072276, - 0.038069, - -0.023763, - -0.0066752, - 0.041798, - -0.08307, - -0.035374, - 0.019093, - -0.033013, - -0.015156, - -0.080998, - 0.021723, - -0.063609, - 0.036223, - 0.032382, - -0.026805, - 0.023697, - 0.010133, - -0.0071382, - -0.014212, - 0.031862, - 0.039057, - 0.0024204, - 0.033783, - 0.03085, - -0.00021514, - 0.031758, - -0.018004, - -0.018306, - -0.106, - -0.062144, - -0.056901, - 0.020772, - -0.0151, - 0.024246, - 0.0045066, - 0.026541, - -0.012567, - -0.022919, - -0.10465, - 0.013298, - -0.0054026, - -0.024136, - -0.043175, - -0.046872, - 0.0055772, - 0.010078, - 0.040998, - -0.021425, - -0.084926, - 0.041975, - 0.0079097, - -0.044791, - -0.010663, - 0.029922, - 0.029711, - 0.037056, - 0.02487, - -0.010289, - -0.080443, - 0.081296, - 0.0094531, - -0.062701, - -0.023567, - 0.039326, - -0.01234, - 0.0090704, - 0.009721, - -0.044411, - 0.024752, - -0.0016386, - 0.0322, - -0.051127, - -0.037948, - 0.0050752, - -0.0037462, - 0.034392, - -0.079214, - -0.035285, - -0.038419, - -0.029847, - 0.05743, - 0.0030474, - 0.015306, - -0.027204, - -0.0024198, - 0.021585, - 0.024368, - 0.047455, - 0.0022956, - -0.048853, - -0.020553, - 0.013371, - 0.026519, - 0.04666, - -0.046679, - -0.021498, - 0.065871, - -0.0096077, - 0.00044011, - 0.052127, - 0.013577, - -0.0068118, - -0.037806, - 0.028177, - 0.026254, - 0.0084954, - -0.012043, - 0.025296, - 0.056809, - 0.030196, - 0.004083, - -0.032401, - -0.012755, - 0.053289, - 0.080207, - -0.045238, - 0.035016, - 0.075764, - 0.034286, - -0.065636, - -0.030694, - 0.069859, - -0.046572, - -0.036271, - -0.024485, - -0.048091, - 0.069673, - 0.0073322, - -0.05634, - 0.025468, - 0.030576, - 0.0073824, - -0.079595, - 0.0099764, - 0.014812, - -0.030774, - 0.048454, - 0.073083, - 0.08929, - -0.025885, - 0.022543, - -0.035503, - -0.010479, - -0.075672, - -0.097326, - -0.00024858, - -0.034697, - 0.023705, - 0.025546, - 0.052446, - -0.080716, - 0.094035, - 0.055782, - -0.023549, - 0.041344, - 0.027513, - 0.011633, - 0.040519, - -0.0080928, - -0.076817, - 0.065916, - 0.022371, - -0.12322, - 0.024002, - 0.034432, - 0.055031, - -0.028498, - 0.035099, - 0.096749, - -0.013256, - 0.06659, - -0.041913, - 0.056417, - 0.0080066, - 0.056971, - -0.025284, - 0.014899, - 0.013476, - -0.059795, - 0.034701, - 0.036235, - -0.031247, - -0.039837, - -0.028558, - 0.10527, - 0.038976, - 0.046062, - -0.014742, - 0.025317, - -0.0090786, - -0.022453, - 0.040215, - 0.042215, - -0.010846, - -0.08709, - -0.068753, - 0.001698, - -0.12933, - 0.015573, - -0.0046095, - 0.085587, - -0.04325, - -0.043541, - 0.045654, - -0.020772, - 0.01988, - -0.016832, - 0.094125, - 0.029323, - 0.0079347, - 0.032517, - 0.027731, - 0.039855, - -0.023218, - 0.013394, - -0.06139, - -0.039558, - 0.073055, - -0.035039, - -0.032519, - 0.063527, - 0.013257, - -0.034138, - 0.03006, - 0.015443, - 0.032213, - -0.0072515, - -0.0030585, - -0.02796, - -0.037305, - -0.10153, - 0.017764, - -0.1046, - -0.038697, - 0.049602, - 0.042418, - -0.022833, - 0.029962, - -0.077882, - 0.053643, - -0.031532, - -0.036619, - 0.011581, - 0.01277, - -0.025491, - -0.0032141, - 0.035737, - 0.014094, - -0.024702, - -0.06361, - -0.0057275, - 0.032238, - 0.032531, - 0.015423, - -0.014053, - -0.025846, - -0.023259, - 0.024328, - 0.013856, - -0.0094167, - 0.0036485, - 0.0023905, - -0.081962, - 0.076075, - -0.0052431, - 0.048427, - 0.0060995, - -0.022502, - 0.035415, - -0.077858, - -0.023674, - -0.035741, - -0.012708, - 0.070771, - -0.0043339, - 0.064588, - -0.06032, - 0.089395, - -0.039778, - -0.037376, - 0.045553, - 0.0048429, - -0.069228, - 0.012703, - 0.079149, - -0.027989, - -0.0128, - -0.070166, - -0.020389, - -0.031905, - -0.010837, - 0.012575, - -0.0062593, - -0.015966, - -0.064372, - -0.016021, - 0.02624 - ], - "loving": [ - -0.0070598, - -0.039091, - 0.024613, - 0.00055128, - -0.087027, - 0.072089, - -0.053578, - -0.12418, - -0.0033996, - 0.049689, - 0.00088143, - 0.0010646, - 0.037593, - 0.017778, - -0.059908, - -0.091643, - 0.020364, - -0.0030085, - 0.035903, - -0.026532, - 0.024875, - 0.040733, - -0.022049, - 0.043876, - 0.071557, - 0.00049948, - 0.044197, - -0.0039744, - 0.036242, - -0.0093573, - 0.023207, - -0.011084, - 0.015301, - -0.068313, - 0.034393, - 0.044421, - -0.06607, - -0.0687, - -0.014828, - -0.0077907, - 0.035146, - -0.17956, - 0.018957, - -0.018634, - -0.022673, - -0.044721, - 0.0054225, - -0.033002, - 0.023802, - 0.038412, - -0.025006, - 0.008842, - 0.034203, - 0.071607, - -0.028211, - -0.064355, - -0.0021926, - -0.065553, - -0.065748, - -0.025916, - -0.026272, - -0.041968, - 0.079266, - -0.078265, - -0.085759, - -0.057792, - -0.015927, - -0.013259, - -0.0008711, - -0.12579, - 0.060228, - 0.014676, - 0.13823, - -0.0021389, - -0.038178, - -0.01327, - -0.025001, - -0.05392, - -0.0488, - -0.0141, - -0.032957, - -0.028408, - 0.093108, - 0.095808, - 0.030952, - -0.035119, - 0.01658, - 0.0081608, - -0.0036675, - -0.061693, - 0.0034392, - -0.012052, - -0.11587, - -0.057842, - 0.082092, - 0.072717, - 0.051892, - 0.056043, - 0.064462, - 0.027371, - 0.0068578, - 0.032033, - -0.054502, - -0.066966, - 0.025771, - -0.15859, - 0.000031029, - 0.0056087, - -0.02692, - -0.027395, - -0.046543, - 0.072078, - 0.013276, - -0.029398, - -0.023551, - 0.035119, - -0.028256, - 0.0072151, - -0.028232, - -0.02187, - -0.075537, - -0.0047474, - 0.023145, - -0.063605, - 0.072079, - -0.026212, - 0.073052, - -0.033521, - 0.016693, - 0.078132, - -0.023148, - 0.040478, - 0.062569, - -0.013141, - -0.01256, - -0.0065409, - -0.0026655, - 0.0028491, - 0.039115, - -0.023384, - 0.0036882, - -0.021135, - -0.0022786, - -0.031291, - 0.025608, - 0.12123, - -0.0079556, - -0.020364, - 0.049036, - 0.0042104, - 0.040605, - 0.033166, - -0.025385, - -0.075442, - -0.072067, - -0.022917, - 0.020897, - -0.016093, - 0.073328, - -0.096525, - 0.05289, - 0.0046468, - -0.03827, - -0.04047, - -0.015473, - -0.028534, - -0.0046408, - 0.10143, - -0.0074843, - 0.0082569, - 0.034764, - -0.011599, - -0.0028826, - -0.024163, - 0.005108, - 0.08302, - 0.044372, - 0.056097, - 0.064291, - -0.11544, - -0.059116, - -0.033062, - -0.03117, - 0.045617, - 0.01283, - -0.085255, - 0.11334, - 0.12516, - -0.021992, - -0.056844, - 0.036011, - 0.093194, - 0.04421, - -0.0095262, - -0.025371, - -0.0024103, - 0.027404, - 0.044118, - -0.0019959, - 0.027595, - -0.19919, - 0.14952, - -0.00072576, - -0.094701, - 0.020123, - 0.022723, - -0.011904, - -0.044877, - 0.064567, - -0.0043589, - 0.065747, - -0.016854, - 0.020042, - 0.014221, - -0.051868, - -0.021779, - -0.013217, - -0.084422, - -0.0096263, - -0.022798, - 0.047528, - -0.043498, - 0.058106, - 0.086648, - -0.011474, - 0.00091345, - 0.045121, - 0.12843, - 0.0036397, - -0.034391, - 0.043064, - -0.0032763, - -0.069189, - -0.04575, - 0.11957, - 0.042198, - 0.010317, - -0.015892, - -0.014873, - -0.0034172, - 0.13405, - -0.013163, - 0.036495, - 0.052623, - -0.19504, - 0.051094, - -0.017097, - -0.034104, - -0.0028877, - -0.064103, - 0.13879, - -0.045804, - -0.037365, - -0.044269, - 0.022651, - -0.026618, - -0.012719, - -0.0043877, - 0.030495, - 0.019925, - -0.067971, - 0.029791, - 0.090665, - 0.077345, - 0.022436, - -0.02996, - 0.052364, - 0.0025741, - 0.031372, - -0.00034394, - 0.019667, - 0.11409, - -0.10056, - -0.065942, - 0.039696, - -0.11192, - -0.039617, - 0.025413, - 0.018914, - 0.1253, - 0.083997, - -0.0059252, - 0.014293, - -0.059353, - -0.028166, - 0.025413, - -0.029564, - -0.064971, - 0.0020996, - 0.031653, - -0.014096, - 0.006601, - -0.0096351, - -0.061083, - 0.0012541, - -0.01786, - 0.13, - 0.07259, - -0.0075707, - 0.026976 - ], - "horses": [ - -0.085333, - 0.008781, - 0.033975, - 0.010168, - -0.023163, - 0.0020608, - -0.078779, - -0.071145, - 0.087649, - 0.01797, - 0.010734, - -0.009696, - 0.08145, - -0.061123, - 0.020772, - -0.062672, - 0.051672, - 0.021635, - 0.035781, - -0.049221, - 0.028598, - -0.20578, - 0.01336, - 0.026062, - 0.12206, - 0.02125, - -0.022214, - -0.011661, - 0.15812, - 0.080222, - 0.0080718, - 0.023693, - -0.02661, - 0.018809, - 0.023507, - -0.032379, - -0.018438, - -0.059076, - 0.071348, - 0.00025069, - 0.017952, - -0.080764, - -0.07386, - 0.038596, - -0.0044979, - -0.058579, - 0.072338, - 0.034697, - -0.0001956, - -0.042957, - 0.082473, - 0.044637, - 0.033569, - -0.028041, - -0.1147, - -0.03201, - 0.049443, - 0.060199, - -0.072998, - -0.021359, - 0.060956, - 0.062402, - 0.14991, - 0.087252, - 0.063539, - 0.097036, - -0.13524, - -0.040303, - 0.010633, - -0.017081, - -0.11179, - -0.073585, - 0.12566, - 0.0098774, - -0.04986, - 0.1128, - -0.057393, - -0.086088, - -0.10102, - -0.0064417, - -0.0027141, - -0.060899, - -0.0046257, - 0.054864, - 0.026881, - -0.13518, - 0.046469, - -0.038256, - 0.0087998, - -0.041094, - 0.046213, - -0.062312, - -0.10238, - 0.038738, - 0.031384, - 0.079136, - -0.064436, - 0.031455, - 0.10254, - 0.0088322, - -0.030301, - -0.044806, - 0.021226, - -0.043061, - 0.046025, - -0.08181, - -0.079558, - -0.02737, - -0.017064, - 0.036787, - 0.064548, - 0.08515, - 0.085775, - 0.043776, - 0.010712, - -0.024442, - -0.0045884, - 0.042892, - -0.041265, - -0.024803, - 0.067573, - 0.042313, - -0.049063, - -0.09322, - 0.10972, - 0.028918, - -0.016951, - -0.085025, - -0.02849, - 0.077639, - -0.034164, - 0.11726, - -0.0045167, - 0.035992, - 0.027999, - -0.057717, - -0.13669, - 0.027146, - 0.0070452, - 0.03032, - -0.07565, - -0.11108, - -0.029377, - 0.0061002, - 0.049143, - -0.07714, - -0.012463, - -0.017329, - -0.0064038, - -0.15959, - 0.031222, - 0.064177, - 0.047196, - -0.024968, - 0.0094779, - -0.052946, - -0.033359, - 0.0041778, - 0.008779, - -0.043829, - 0.057324, - -0.0082286, - 0.035742, - 0.029299, - -0.028539, - -0.11114, - -0.077386, - 0.016166, - -0.040725, - -0.0060457, - 0.066391, - -0.16399, - 0.09281, - 0.064151, - 0.036155, - 0.047207, - 0.026007, - 0.08532, - -0.053811, - 0.031678, - 0.045583, - 0.036327, - 0.02011, - -0.044757, - -0.033783, - -0.074964, - 0.0063147, - 0.10124, - -0.018434, - -0.026703, - 0.098676, - 0.046444, - -0.11168, - -0.065778, - 0.018403, - 0.048114, - 0.054795, - 0.05955, - 0.026655, - 0.0029788, - -0.15005, - 0.10778, - -0.02676, - -0.027335, - 0.13891, - -0.057901, - -0.030583, - -0.052583, - 0.087694, - -0.07146, - 0.10483, - -0.0012208, - 0.070039, - -0.025465, - -0.022504, - 0.031607, - -0.014758, - -0.025709, - -0.057914, - 0.002335, - 0.058167, - -0.091868, - 0.091264, - 0.089362, - 0.099731, - -0.015629, - 0.036579, - 0.062045, - -0.0382, - -0.036598, - -0.0039781, - 0.02255, - -0.10046, - -0.098154, - 0.040157, - 0.079198, - 0.045236, - 0.061911, - -0.1003, - -0.059266, - -0.026682, - 0.16104, - 0.048006, - -0.070756, - 0.021894, - 0.084228, - 0.031555, - -0.033987, - 0.051967, - 0.088709, - 0.042551, - 0.041062, - 0.038777, - -0.048835, - -0.020076, - 0.034198, - -0.042205, - -0.039607, - 0.082775, - 0.03996, - -0.059886, - 0.0068657, - 0.03606, - -0.050628, - 0.032195, - -0.0033546, - 0.034646, - 0.01843, - 0.02836, - -0.022991, - -0.027864, - 0.08971, - -0.11344, - -0.056505, - -0.044742, - -0.01647, - 0.054478, - -0.028654, - -0.054482, - -0.083747, - 0.037731, - -0.0011644, - 0.055005, - -0.0090531, - 0.032158, - 0.050198, - 0.061569, - 0.01699, - -0.0038723, - 0.024362, - 0.03655, - -0.018146, - -0.13253, - -0.031491, - -0.035874, - -0.0034825, - 0.0044417, - 0.034882, - -0.08742, - 0.019797 - ], - "rainfall": [ - 0.07357, - 0.014814, - -0.095682, - -0.025844, - 0.056204, - -0.049778, - -0.023203, - -0.056571, - 0.06427, - -0.0029192, - -0.009755, - -0.041964, - -0.042196, - 0.034387, - 0.05129, - 0.040637, - 0.033807, - -0.013258, - 0.021388, - 0.000016812, - 0.033952, - -0.031985, - -0.08558, - 0.099418, - 0.059922, - -0.081945, - -0.018355, - -0.0091357, - 0.044072, - 0.04524, - 0.031784, - 0.022946, - 0.10219, - -0.055419, - 0.00036031, - 0.054757, - 0.0076644, - -0.028072, - -0.051069, - -0.014765, - 0.063978, - -0.068116, - 0.068309, - 0.023691, - -0.0013375, - 0.015843, - 0.078136, - -0.067792, - -0.070907, - 0.02506, - -0.015317, - -0.021257, - 0.03103, - 0.017944, - -0.057989, - 0.048676, - 0.097399, - -0.036023, - -0.020797, - -0.0040254, - -0.0062939, - 0.015793, - 0.062304, - -0.023961, - -0.02247, - -0.10966, - 0.090061, - 0.019623, - -0.0078729, - 0.0024, - 0.040625, - 0.085983, - 0.030848, - 0.025152, - -0.11926, - -0.095268, - 0.0063153, - 0.0003245, - -0.0095687, - 0.058596, - -0.085103, - -0.037612, - 0.004885, - 0.034273, - 0.036933, - -0.048257, - 0.022263, - -0.012987, - -0.0070349, - -0.060396, - -0.046556, - -0.031165, - -0.10829, - -0.023975, - -0.13847, - 0.066892, - 0.043596, - 0.069363, - 0.03382, - -0.102, - 0.09103, - -0.09007, - -0.023381, - -0.054777, - 0.053743, - -0.021096, - 0.050207, - 0.0071526, - 0.028116, - 0.064909, - 0.059096, - 0.043623, - 0.059149, - -0.0072456, - -0.022846, - -0.037283, - 0.048482, - 0.043276, - -0.0083613, - 0.016194, - -0.021089, - -0.0048737, - 0.074326, - 0.01612, - 0.047559, - 0.035801, - -0.015037, - -0.043865, - -0.14376, - 0.081052, - 0.023445, - -0.068748, - -0.02478, - 0.017859, - 0.051597, - 0.014284, - 0.052248, - 0.050464, - 0.034545, - -0.014433, - 0.093365, - -0.039276, - 0.058601, - -0.067904, - 0.026763, - -0.011585, - -0.030642, - 0.005312, - -0.081901, - -0.025133, - 0.0021442, - 0.040015, - 0.0093258, - -0.076906, - -0.041063, - 0.049229, - 0.029401, - 0.041586, - -0.030398, - 0.052973, - 0.032817, - -0.059809, - -0.070772, - 0.043914, - -0.015622, - 0.015559, - -0.022339, - 0.039593, - 0.039701, - 0.1609, - 0.031269, - 0.002602, - 0.048913, - -0.02147, - 0.08159, - 0.085139, - 0.014039, - -0.070066, - -0.077581, - -0.038996, - -0.030299, - 0.09318, - 0.012079, - -0.077801, - -0.074276, - -0.074491, - 0.042794, - 0.092912, - -0.044532, - 0.0044776, - 0.068281, - 0.000093614, - -0.0028251, - -0.026439, - -0.030877, - -0.091628, - -0.0032238, - 0.011956, - 0.033927, - 0.0038032, - -0.13403, - 0.0088921, - -0.061844, - 0.028885, - 0.026647, - 0.12957, - 0.0037339, - 0.028267, - -0.022189, - -0.032203, - 0.079435, - -0.051533, - -0.025522, - 0.018063, - 0.080465, - 0.010529, - -0.025813, - -0.03823, - -0.0056101, - -0.069008, - -0.038481, - 0.017306, - 0.020483, - 0.081734, - 0.085584, - 0.01957, - -0.05138, - 0.053002, - 0.05326, - -0.046469, - 0.029651, - -0.048202, - -0.045286, - -0.022051, - 0.00043926, - 0.10179, - 0.054598, - 0.051257, - 0.050975, - -0.10262, - 0.04585, - 0.026312, - 0.0019609, - -0.026881, - -0.036154, - 0.040932, - 0.022087, - -0.078638, - 0.0040484, - -0.085125, - 0.039971, - -0.060913, - 0.091774, - -0.010932, - 0.016305, - 0.048665, - 0.035518, - -0.003823, - 0.0776, - 0.089964, - 0.051632, - 0.047933, - -0.054064, - -0.038826, - 0.0096046, - -0.068306, - -0.036242, - 0.023748, - -0.010252, - -0.032445, - -0.042452, - 0.045667, - -0.12262, - -0.013293, - -0.034278, - -0.041674, - -0.030718, - -0.044822, - -0.019352, - -0.062582, - 0.07909, - 0.034242, - 0.020323, - 0.0020733, - -0.0072841, - 0.062904, - -0.024131, - 0.094342, - -0.017513, - 0.038515, - -0.076227, - -0.0027383, - -0.012664, - -0.00099627, - 0.040517, - -0.052817, - -0.067047, - -0.045272, - 0.05536, - 0.039868 - ], - "drinkable": [ - -0.018061, - 0.0011252, - 0.003943, - 0.0222, - 0.052105, - 0.026148, - 0.0017213, - -0.081531, - 0.014056, - 0.051917, - -0.047028, - 0.034124, - -0.032036, - -0.0071605, - 0.038689, - -0.028014, - 0.070112, - 0.0061969, - 0.035219, - -0.006842, - 0.015838, - 0.020353, - 0.042819, - 0.022001, - 0.020283, - -0.10719, - 0.024045, - 0.049293, - 0.13121, - 0.030865, - -0.039029, - 0.076713, - 0.021226, - -0.041069, - 0.088754, - -0.010044, - 0.01972, - 0.0081646, - -0.014861, - 0.024881, - 0.015036, - -0.05252, - 0.011573, - -0.018019, - 0.015675, - -0.12387, - -0.02635, - 0.075486, - 0.029186, - 0.05111, - -0.020941, - 0.015287, - 0.028507, - -0.069481, - -0.068214, - 0.070198, - 0.021606, - -0.049641, - -0.054538, - 0.027107, - 0.0083248, - 0.010246, - 0.078492, - 0.0082951, - 0.023277, - 0.058081, - 0.018958, - -0.027276, - -0.038868, - -0.022571, - 0.13635, - 0.048818, - 0.043727, - 0.010894, - -0.069884, - -0.017034, - -0.003302, - -0.013399, - -0.020734, - 0.057802, - 0.041704, - -0.05233, - 0.04888, - 0.058243, - -0.0017026, - 0.061792, - 0.010069, - -0.000021966, - -0.098037, - -0.043128, - 0.069847, - -0.038466, - -0.086279, - -0.0080854, - -0.014319, - 0.011308, - 0.017718, - 0.04821, - 0.049953, - -0.0010887, - -0.056708, - -0.010422, - 0.02747, - -0.029538, - -0.096521, - -0.10339, - -0.034818, - 0.092694, - 0.020794, - 0.018275, - 0.10329, - 0.065352, - 0.060267, - 0.0001043, - 0.0014694, - -0.051791, - 0.0057368, - -0.031871, - -0.06754, - 0.0040084, - -0.01325, - -0.014565, - 0.025501, - -0.057144, - 0.10967, - -0.010414, - -0.014817, - -0.060867, - -0.026724, - -0.051653, - -0.041253, - -0.009351, - 0.017568, - -0.098475, - -0.030865, - -0.044312, - 0.018803, - 0.051742, - 0.050013, - 0.030996, - 0.051822, - -0.076225, - 0.012112, - -0.0582, - 0.081617, - 0.0066681, - 0.026381, - 0.10739, - -0.07313, - 0.020904, - 0.025945, - 0.031344, - 0.088124, - 0.0072844, - -0.016793, - -0.039715, - -0.064405, - 0.014187, - -0.0080021, - -0.0014979, - 0.097966, - -0.0085263, - -0.048817, - 0.033736, - 0.023043, - 0.028579, - -0.065105, - 0.012815, - 0.1039, - 0.038253, - 0.014854, - -0.012584, - -0.045028, - 0.09467, - 0.021977, - 0.044118, - -0.033253, - 0.051347, - -0.011639, - 0.0097447, - -0.028255, - 0.036745, - 0.035374, - -0.11576, - 0.01561, - 0.0088056, - -0.027918, - 0.12334, - 0.036243, - -0.036253, - 0.03585, - 0.071158, - 0.00040733, - 0.037312, - 0.031043, - 0.0081203, - 0.061845, - -0.016623, - -0.028259, - -0.0048045, - -0.14272, - 0.07298, - -0.029866, - 0.018671, - 0.017099, - 0.00086531, - 0.012562, - 0.090033, - -0.012059, - -0.046465, - 0.014411, - -0.053248, - -0.037796, - 0.020851, - 0.083641, - -0.044584, - 0.0077756, - -0.042109, - -0.065565, - -0.022134, - 0.040113, - -0.026032, - -0.057914, - 0.10375, - -0.016971, - 0.074156, - 0.02043, - 0.0050574, - -0.049425, - -0.017382, - 0.020546, - -0.041316, - -0.01112, - -0.0039133, - -0.024277, - 0.0077972, - -0.11556, - -0.0031316, - 0.038892, - -0.041964, - 0.13238, - 0.0058238, - 0.068608, - -0.032955, - -0.07305, - 0.064105, - 0.0021044, - -0.0264, - -0.067285, - -0.067016, - -0.014396, - -0.048434, - -0.00097579, - 0.0094488, - -0.037175, - 0.014157, - 0.0027948, - -0.01797, - 0.0078362, - 0.057629, - 0.0014986, - -0.02761, - -0.030268, - -0.030681, - -0.056771, - -0.058124, - 0.022079, - -0.04903, - 0.077026, - 0.080737, - 0.012427, - 0.083588, - -0.085148, - -0.043617, - -0.044933, - -0.069614, - -0.086716, - 0.072959, - -0.023921, - 0.02601, - 0.027864, - 0.023301, - -0.074633, - 0.030171, - -0.13267, - 0.022229, - -0.017036, - 0.039197, - 0.10443, - 0.004851, - 0.0045747, - -0.0017881, - -0.038086, - -0.016538, - 0.011831, - 0.030584, - 0.032709, - -0.016782, - -0.069513, - -0.043256 - ], - "sporting": [ - 0.037827, - -0.068905, - 0.08491, - 0.016292, - -0.032178, - -0.10319, - -0.013773, - -0.10138, - 0.092974, - 0.038485, - -0.019316, - -0.060847, - -0.011679, - 0.0013529, - 0.056099, - 0.042813, - 0.039625, - -0.016833, - 0.057964, - 0.014268, - 0.010029, - -0.076309, - -0.0083718, - 0.069809, - 0.036284, - -0.022709, - 0.043732, - -0.019054, - 0.048456, - 0.024537, - 0.016824, - -0.066367, - 0.034749, - -0.098868, - 0.10002, - 0.038208, - 0.037014, - 0.029495, - 0.0067314, - 0.039088, - 0.058959, - -0.09206, - -0.009353, - 0.0087892, - 0.034071, - -0.033876, - 0.026245, - -0.046781, - -0.032391, - -0.026462, - -0.04894, - 0.0036595, - 0.016038, - 0.0084288, - -0.018722, - 0.015781, - 0.067154, - -0.033084, - -0.041301, - -0.024273, - 0.0096895, - 0.025402, - 0.098258, - 0.034556, - 0.11262, - -0.038535, - -0.010172, - 0.041253, - 0.031751, - 0.019097, - 0.010455, - -0.046999, - 0.048484, - 0.035107, - 0.018218, - 0.041553, - -0.021482, - -0.040073, - -0.020446, - 0.019061, - 0.012877, - -0.00063279, - -0.038832, - 0.067101, - -0.031796, - -0.041849, - -0.061809, - 0.048445, - -0.013425, - -0.049718, - 0.019273, - 0.059034, - -0.12862, - 0.054636, - 0.070791, - 0.052122, - -0.058141, - -0.057409, - 0.062397, - 0.031357, - -0.014166, - 0.047958, - -0.038939, - -0.012336, - 0.017696, - -0.10724, - -0.058953, - 0.0053442, - 0.011221, - 0.046091, - -0.041049, - 0.055489, - 0.063046, - 0.032672, - 0.040169, - -0.042197, - -0.018909, - -0.010717, - -0.051514, - -0.045617, - 0.070578, - 0.045783, - -0.060454, - -0.0074477, - 0.049589, - -0.06395, - -0.02766, - -0.069161, - -0.013707, - 0.074802, - 0.061475, - 0.018067, - -0.0064876, - 0.0024354, - -0.0065291, - -0.031115, - 0.010374, - 0.020301, - -0.015279, - -0.037316, - -0.019577, - 0.018287, - 0.039958, - 0.018964, - -0.0046137, - 0.051996, - 0.034512, - -0.042687, - -0.0034702, - 0.029458, - 0.0015115, - 0.10081, - -0.0036372, - -0.079857, - -0.024909, - 0.0092618, - 0.014354, - 0.052755, - 0.025132, - -0.014737, - 0.018785, - -0.032923, - -0.061038, - 0.051876, - -0.013011, - 0.01765, - 0.045023, - -0.00725, - -0.08612, - -0.035997, - 0.055477, - 0.0019976, - 0.010239, - 0.037584, - 0.027135, - 0.04568, - 0.0047539, - 0.0079862, - -0.0096697, - -0.031749, - -0.013317, - -0.060958, - 0.028093, - -0.052228, - -0.0070613, - -0.061002, - -0.04126, - 0.070814, - 0.052921, - -0.002408, - -0.037605, - 0.044791, - 0.016998, - -0.071729, - 0.0063638, - -0.054555, - 0.027103, - -0.029417, - 0.028663, - 0.00017382, - -0.15072, - 0.070526, - -0.0094237, - -0.056107, - -0.044893, - 0.013879, - -0.041723, - 0.021713, - -0.018872, - 0.0087595, - 0.11783, - -0.0072787, - 0.02082, - 0.00094105, - 0.015807, - 0.015796, - -0.094763, - -0.0088597, - -0.04001, - 0.023682, - -0.03531, - -0.018456, - -0.025051, - 0.10499, - -0.082486, - 0.010186, - 0.010256, - 0.098225, - 0.00046578, - -0.043189, - -0.023867, - -0.020837, - -0.064079, - -0.015092, - -0.029388, - 0.034182, - -0.0053009, - -0.010774, - -0.021019, - -0.053125, - 0.057457, - -0.030158, - 0.0049363, - -0.0145, - -0.11223, - 0.049612, - -0.022678, - 0.027599, - -0.025657, - -0.051013, - -0.014397, - 0.0042515, - 0.020921, - -0.020199, - -0.011418, - 0.039474, - -0.0095292, - -0.0085276, - 0.074312, - 0.083211, - -0.0026696, - -0.0099596, - -0.0054429, - 0.049706, - 0.040847, - 0.018922, - 0.02375, - 0.00054728, - 0.090158, - -0.0040873, - 0.021812, - 0.077495, - -0.10004, - -0.013926, - 0.013768, - -0.016884, - -0.026328, - -0.00034713, - -0.036739, - 0.011007, - 0.09614, - 0.039155, - -0.016223, - 0.023084, - -0.0041787, - -0.014812, - -0.013572, - -0.035165, - 0.00053644, - -0.0053785, - 0.10191, - 0.026878, - -0.037196, - 0.017146, - -0.03844, - -0.016999, - -0.016253, - 0.0584, - 0.034774, - -0.044656 - ], - "faith": [ - 0.015831, - 0.0054998, - 0.020065, - -0.095413, - -0.15878, - 0.0043075, - -0.069425, - -0.10692, - 0.033247, - 0.015193, - -0.019749, - -0.045556, - 0.036913, - -0.091215, - -0.02058, - -0.076566, - 0.14745, - 0.0079084, - 0.040831, - -0.045633, - -0.059361, - -0.0072959, - -0.039273, - 0.067936, - -0.023394, - 0.082638, - -0.011535, - -0.0027995, - -0.0040464, - 0.038057, - 0.064743, - 0.071602, - -0.027107, - -0.040723, - -0.00051661, - 0.041594, - -0.061488, - 0.03639, - -0.046372, - 0.065111, - -0.014865, - -0.11744, - 0.01417, - 0.057252, - -0.033983, - -0.10898, - -0.10703, - 0.023902, - -0.020141, - 0.019374, - 0.040736, - -0.056841, - 0.064668, - -0.02888, - -0.07929, - 0.048646, - 0.018936, - -0.049173, - -0.055707, - -0.069916, - -0.018685, - 0.036486, - 0.18311, - -0.075643, - -0.013723, - -0.047479, - -0.040633, - 0.0036511, - -0.0011771, - -0.052235, - 0.02861, - 0.029247, - 0.092517, - -0.0080051, - -0.0038163, - 0.019975, - 0.048198, - 0.01338, - 0.031042, - -0.006541, - -0.068626, - 0.019134, - 0.024375, - 0.11256, - -0.023407, - 0.0064773, - -0.049943, - -0.013574, - 0.021887, - -0.023371, - 0.02601, - 0.071541, - -0.14919, - -0.029045, - 0.010374, - 0.057333, - 0.070146, - -0.069006, - 0.047315, - -0.10607, - -0.049337, - -0.029519, - 0.11318, - -0.031518, - -0.0090602, - -0.10927, - 0.093553, - 0.029257, - -0.027495, - -0.0059292, - -0.047073, - 0.12439, - 0.064887, - -0.001215, - 0.032749, - 0.026096, - 0.055302, - -0.0051055, - -0.070195, - -0.023137, - -0.020395, - -0.046246, - 0.017125, - -0.12361, - 0.013986, - 0.0081727, - 0.032076, - -0.058644, - 0.040077, - 0.17887, - 0.048544, - -0.070748, - -0.0051836, - 0.083497, - -0.0050416, - 0.034472, - -0.0024192, - 0.066877, - -0.037694, - -0.058603, - 0.028833, - -0.040746, - -0.021995, - 0.052595, - -0.0093586, - -0.073131, - -0.003588, - -0.08307, - 0.026659, - -0.066246, - 0.13317, - 0.032772, - -0.050988, - -0.071214, - -0.028154, - 0.043383, - 0.011934, - -0.055126, - -0.04385, - -0.035825, - 0.057374, - 0.0074433, - -0.098764, - -0.064674, - 0.032878, - -0.018855, - 0.04016, - 0.061822, - 0.0079371, - 0.032511, - 0.059084, - -0.036012, - -0.0090181, - 0.040061, - 0.092224, - 0.10053, - 0.097364, - 0.12672, - 0.02625, - -0.082357, - 0.03176, - -0.035819, - 0.026398, - -0.038339, - 0.032247, - -0.15225, - 0.12032, - 0.14529, - -0.019911, - -0.033873, - -0.036241, - 0.16244, - -0.012234, - -0.024413, - 0.078062, - -0.022942, - -0.0092931, - 0.026231, - -0.021336, - -0.046918, - -0.16233, - 0.053808, - 0.028438, - -0.047833, - -0.0065097, - 0.035309, - 0.1011, - -0.062085, - 0.048643, - -0.0078099, - 0.061006, - 0.017995, - -0.019214, - 0.063645, - 0.016168, - 0.018129, - 0.054729, - -0.026011, - -0.037792, - 0.031423, - -0.049843, - -0.0091839, - -0.096499, - 0.14437, - 0.089862, - -0.051906, - 0.10755, - 0.14718, - -0.039161, - -0.089404, - -0.0071588, - -0.065814, - -0.12649, - 0.00065849, - 0.0072995, - 0.019765, - -0.086009, - -0.082094, - 0.018579, - 0.045428, - 0.086612, - -0.039332, - 0.025008, - 0.053792, - -0.054715, - -0.035602, - -0.003733, - -0.13184, - -0.037172, - -0.011133, - 0.10565, - -0.0078192, - -0.047108, - -0.033724, - 0.045118, - -0.045744, - 0.073471, - 0.01561, - -0.045653, - 0.021699, - 0.014516, - 0.020512, - 0.073369, - 0.060095, - 0.02907, - -0.060486, - 0.072344, - 0.05607, - 0.056404, - 0.029207, - 0.098518, - 0.12633, - -0.14928, - -0.080818, - 0.094739, - -0.040689, - 0.0014335, - -0.0059495, - -0.069044, - 0.0019667, - 0.10487, - -0.12262, - -0.097623, - -0.034873, - 0.038066, - -0.063752, - 0.10902, - 0.041491, - -0.023988, - 0.055293, - 0.10498, - 0.05008, - -0.0050517, - 0.056972, - 0.016014, - 0.034646, - 0.10962, - -0.080787, - 0.027524, - 0.019589 - ], - "Career": [ - -0.021514, - -0.067069, - 0.04652, - 0.011141, - -0.015632, - 0.028936, - -0.038757, - -0.01904, - 0.043012, - -0.016247, - 0.021441, - -0.012401, - -0.094955, - 0.054603, - -0.043302, - 0.10801, - 0.064803, - 0.070995, - 0.051291, - -0.0093341, - 0.0024977, - 0.061815, - -0.093172, - 0.075639, - -0.005857, - -0.05252, - -0.049134, - -0.00077278, - -0.030937, - 0.027125, - -0.069963, - -0.038884, - -0.061124, - -0.029966, - 0.11294, - 0.028266, - -0.011537, - 0.060003, - 0.053928, - -0.00021909, - 0.0049521, - 0.055088, - 0.061381, - -0.035161, - 0.074313, - 0.047336, - 0.05178, - -0.091525, - -0.043625, - -0.048301, - -0.037889, - -0.010811, - -0.0028166, - -0.045964, - 0.0084871, - -0.044946, - -0.12907, - 0.037472, - -0.14284, - -0.050701, - -0.031021, - 0.075067, - -0.024441, - -0.0091016, - 0.12383, - -0.085398, - -0.050478, - -0.039615, - 0.0010483, - -0.039086, - -0.027233, - -0.01294, - -0.095712, - 0.044519, - 0.023921, - -0.0013333, - -0.005589, - -0.14269, - 0.054121, - 0.022688, - 0.0058237, - -0.010754, - -0.011539, - -0.020985, - -0.012137, - -0.056487, - -0.0075791, - -0.089155, - -0.10789, - 0.034497, - 0.021946, - -0.025685, - -0.10557, - -0.031702, - -0.028603, - 0.17445, - 0.031317, - 0.014952, - 0.0085816, - 0.0027016, - -0.02106, - 0.08464, - 0.068165, - 0.00041418, - -0.071858, - -0.14949, - 0.086607, - 0.02755, - 0.020788, - 0.042082, - -0.072204, - -0.050737, - 0.074145, - 0.014527, - 0.03595, - -0.047779, - -0.039501, - -0.037821, - 0.087897, - 0.069125, - 0.045866, - -0.087583, - -0.0019906, - 0.02473, - 0.06071, - 0.033235, - -0.095051, - -0.13603, - 0.044138, - 0.28092, - -0.027368, - 0.086373, - 0.011325, - -0.072815, - -0.051524, - -0.033563, - 0.053636, - -0.0024247, - -0.075127, - 0.0042119, - -0.045791, - -0.017337, - -0.0026073, - 0.039108, - 0.0063644, - 0.068757, - -0.0133, - -0.113, - 0.064533, - 0.023175, - 0.095546, - 0.067862, - 0.0055632, - -0.034066, - 0.040444, - 0.067003, - 0.020704, - 0.0022927, - 0.048833, - -0.031449, - 0.013153, - 0.06673, - -0.10599, - 0.025261, - 0.012321, - 0.022791, - -0.080192, - -0.010761, - -0.055407, - -0.012769, - 0.044255, - 0.030601, - 0.061965, - 0.050567, - 0.083478, - 0.050789, - -0.031486, - 0.0098532, - 0.027795, - 0.03715, - -0.043973, - -0.042486, - -0.01093, - 0.049583, - 0.05936, - 0.17609, - 0.023833, - 0.19701, - -0.00031241, - 0.1402, - -0.010663, - 0.032221, - -0.021042, - 0.083772, - -0.011236, - -0.0076169, - -0.039508, - -0.021316, - -0.000031325, - -0.001351, - 0.029042, - 0.1802, - 0.064075, - 0.022263, - -0.054722, - 0.063554, - -0.0055087, - -0.068925, - 0.05085, - 0.0030914, - 0.21492, - 0.013094, - 0.018565, - 0.036964, - 0.088887, - 0.026426, - 0.0012128, - 0.023278, - -0.075793, - -0.014532, - -0.080541, - -0.044228, - -0.051965, - 0.094731, - 0.027907, - -0.093927, - 0.052933, - 0.052842, - 0.02683, - -0.0094323, - 0.019379, - -0.12881, - 0.097265, - 0.040896, - -0.075578, - 0.064666, - 0.057319, - -0.075744, - -0.091242, - 0.064874, - 0.0069221, - 0.075884, - 0.042543, - -0.063779, - 0.14915, - -0.067906, - -0.039291, - -0.097668, - 0.084293, - -0.18259, - 0.0041458, - 0.041245, - 0.093474, - -0.053284, - 0.036316, - -0.046683, - 0.0023319, - 0.0084916, - 0.028635, - 0.0239, - 0.0028017, - 0.002719, - 0.065518, - -0.039245, - 0.037786, - 0.02678, - -0.043805, - -0.057713, - 0.053041, - -0.093528, - -0.032668, - 0.098343, - -0.031123, - 0.03771, - 0.043056, - -0.057382, - -0.023414, - 0.017946, - 0.057416, - 0.038589, - 0.081561, - -0.029812, - 0.1327, - -0.095788, - 0.076265, - 0.068776, - -0.034534, - -0.011472, - -0.039233, - -0.1058, - 0.049314, - 0.0030524, - -0.012399, - 0.077774, - -0.043827, - 0.044458, - -0.065289, - 0.029755, - 0.078072, - -0.045694 - ], - "statutes": [ - 0.006423, - -0.071979, - 0.06589, - -0.0031931, - 0.049686, - -0.056585, - -0.0097283, - -0.079601, - 0.0074724, - 0.024482, - 0.01354, - -0.096554, - 0.022164, - -0.042858, - -0.017413, - 0.09467, - 0.054995, - 0.037942, - 0.038364, - -0.0040539, - -0.046187, - -0.041688, - 0.050763, - 0.050445, - 0.065128, - 0.015778, - -0.051635, - -0.0078379, - 0.11028, - -0.0069749, - 0.073738, - -0.044606, - -0.082426, - -0.097862, - 0.088528, - 0.017427, - -0.02657, - -0.0067584, - 0.033881, - -0.018763, - 0.041656, - -0.11178, - 0.078359, - 0.018125, - 0.012243, - 0.025979, - 0.032514, - 0.017859, - 0.017756, - 0.035988, - -0.027883, - 0.024923, - 0.055122, - 0.022093, - -0.078461, - 0.023916, - 0.0071776, - 0.036498, - 0.010117, - -0.0083567, - 0.029593, - 0.019989, - 0.1365, - -0.002564, - 0.021561, - -0.045208, - -0.014968, - -0.019049, - 0.023384, - 0.02761, - 0.00015579, - -0.022352, - -0.069608, - 0.0052967, - 0.017629, - -0.0079185, - -0.078327, - -0.023666, - -0.070068, - -0.018206, - 0.0063136, - 0.021141, - -0.062639, - 0.055092, - -0.0012213, - 0.029896, - 0.067997, - -0.0083378, - 0.015109, - 0.056666, - -0.012725, - -0.040939, - -0.057254, - 0.015456, - 0.003218, - 0.012951, - -0.002023, - 0.022906, - 0.017045, - 0.032969, - 0.015222, - -0.006872, - -0.029698, - -0.029355, - 0.0024172, - -0.009642, - 0.055708, - 0.036279, - 0.0020745, - -0.025092, - -0.016108, - -0.00029939, - 0.047459, - -0.016995, - 0.0025686, - 0.082726, - 0.022092, - -0.04745, - -0.021481, - 0.061273, - -0.03708, - 0.044456, - 0.053241, - -0.030602, - 0.069949, - 0.035762, - -0.059518, - 0.030572, - 0.029245, - 0.15212, - -0.074759, - 0.071087, - -0.0083457, - 0.066621, - -0.011761, - 0.0056841, - 0.008314, - 0.017931, - -0.0034755, - -0.068983, - 0.053508, - -0.049025, - -0.06735, - 0.026062, - -0.0010249, - 0.024798, - 0.0088134, - -0.06161, - 0.005788, - -0.029626, - -0.045721, - 0.085057, - 0.10316, - -0.030431, - 0.1038, - 0.026335, - 0.011496, - -0.046019, - 0.012756, - -0.00013267, - 0.050622, - 0.05153, - -0.0034421, - 0.041256, - 0.059924, - -0.065884, - 0.079053, - -0.050068, - -0.025316, - -0.038727, - -0.028575, - -0.046509, - 0.0036213, - -0.021027, - -0.055573, - 0.052054, - -0.02412, - 0.026857, - -0.042384, - -0.037717, - 0.041233, - -0.040738, - 0.01852, - -0.021945, - -0.0264, - 0.073928, - 0.011734, - 0.11241, - 0.08044, - 0.027049, - 0.0064375, - 0.11627, - -0.090747, - -0.0079084, - 0.03984, - -0.040014, - 0.020075, - 0.034303, - -0.046623, - -0.010828, - -0.13179, - -0.027637, - 0.029195, - -0.019805, - 0.0045848, - 0.044508, - 0.081277, - -0.056123, - 0.036466, - -0.01382, - 0.11011, - 0.041457, - 0.050761, - 0.0068021, - -0.071243, - -0.027039, - 0.026281, - 0.0095891, - -0.0661, - -0.090183, - -0.0045761, - -0.067881, - 0.036188, - 0.09903, - 0.04134, - -0.0203, - 0.033292, - -0.011464, - -0.040864, - 0.0072329, - -0.024335, - -0.041847, - -0.038824, - 0.0062436, - 0.01412, - -0.07692, - 0.034151, - 0.0097313, - 0.035669, - 0.056605, - -0.02027, - -0.046419, - -0.053828, - -0.0067264, - 0.026422, - -0.011954, - 0.011516, - -0.050209, - 0.0029618, - 0.027394, - 0.026584, - -0.048708, - -0.0078333, - 0.0032892, - 0.0083364, - 0.075021, - 0.076712, - 0.024252, - -0.069378, - 0.032889, - 0.015647, - -0.040921, - -0.044363, - -0.042896, - 0.051578, - 0.0040819, - 0.025522, - 0.027617, - -0.036867, - -0.044813, - 0.04866, - 0.079262, - -0.10686, - -0.0256, - 0.0082182, - -0.0050486, - -0.020554, - 0.046209, - -0.042909, - -0.063336, - 0.02325, - 0.037418, - 0.029601, - -0.034446, - 0.0070994, - 0.041043, - -0.057696, - 0.03419, - 0.0072479, - 0.050729, - 0.02982, - -0.0055834, - 0.059194, - -0.054618, - -0.00020509, - 0.012606, - -0.010693, - -0.060507, - -0.059149, - -0.019446 - ], - "company": [ - -0.011403, - -0.024394, - 0.015043, - 0.029518, - -0.0017062, - -0.022385, - -0.0040155, - -0.10534, - 0.061493, - 0.0096054, - -0.057911, - -0.072154, - 0.004597, - 0.0094051, - -0.047543, - 0.06511, - 0.10864, - 0.0062413, - 0.05292, - 0.0096004, - 0.0060583, - 0.011991, - 0.0013968, - 0.083101, - -0.01581, - 0.030473, - 0.050302, - 0.019622, - 0.0089521, - -0.013708, - -0.044231, - 0.019827, - -0.050462, - -0.019177, - -0.013629, - 0.030496, - -0.053193, - -0.024036, - 0.052822, - -0.0053588, - -0.031892, - -0.11382, - -0.0085483, - -0.056518, - 0.025429, - 0.014985, - 0.047654, - -0.023503, - -0.0326, - -0.017395, - 0.068567, - 0.0085123, - 0.0076755, - 0.054809, - -0.015998, - 0.015116, - -0.032973, - -0.0026086, - -0.036612, - 0.03636, - -0.017765, - 0.0006249, - 0.10317, - 0.034748, - 0.073026, - 0.022763, - -0.022148, - -0.039714, - 0.053165, - -0.027479, - 0.018915, - -0.039905, - 0.048303, - 0.040548, - 0.020935, - 0.035601, - 0.012379, - -0.00015765, - -0.010114, - -0.054291, - -0.0084007, - 0.019861, - -0.048412, - 0.031899, - -0.058896, - 0.0018415, - -0.065228, - -0.044215, - -0.029068, - -0.031174, - 0.029516, - 0.041585, - -0.066405, - -0.030756, - 0.0055645, - 0.083647, - -0.02136, - 0.0075774, - 0.081105, - -0.0030828, - -0.014697, - 0.038911, - 0.014978, - 0.009493, - -0.013215, - -0.098387, - -0.047552, - 0.015396, - -0.0064438, - 0.048753, - -0.020764, - 0.088577, - 0.063653, - 0.036964, - 0.027939, - -0.03556, - -0.021628, - -0.019649, - -0.029529, - -0.0064025, - -0.058901, - -0.045659, - 0.040719, - 0.019551, - 0.046508, - 0.012536, - 0.0069286, - -0.10709, - 0.047389, - 0.079673, - 0.0067028, - 0.031661, - -0.047748, - -0.093763, - 0.039843, - 0.0095619, - 0.084346, - 0.041095, - -0.0048155, - 0.061859, - -0.016361, - 0.014519, - -0.0634, - 0.012775, - -0.045868, - -0.0087563, - 0.011984, - -0.055268, - 0.014792, - -0.041301, - 0.02734, - 0.035479, - 0.044796, - -0.069505, - -0.0057013, - 0.0086584, - -0.023894, - -0.015302, - 0.013477, - -0.020127, - -0.0006961, - -0.011514, - -0.0068715, - 0.032346, - 0.085698, - 0.01824, - -0.0087681, - -0.031598, - -0.036979, - 0.043395, - 0.014631, - 0.028639, - 0.012404, - 0.069559, - -0.022954, - 0.021974, - -0.066257, - 0.053542, - -0.044034, - 0.021559, - -0.01006, - -0.035711, - 0.0076096, - 0.027221, - -0.025016, - -0.031627, - -0.030007, - 0.074954, - -0.008405, - 0.012534, - -0.042254, - 0.075211, - -0.037584, - -0.0042005, - 0.015407, - 0.00040804, - -0.018135, - -0.02779, - 0.034907, - -0.0037335, - -0.16072, - 0.073245, - -0.001328, - -0.011558, - 0.066151, - 0.0062962, - -0.055541, - 0.0036423, - -0.031776, - -0.076068, - 0.098707, - -0.013085, - 0.023111, - -0.019223, - -0.07921, - 0.0012202, - -0.01619, - -0.04099, - 0.055621, - 0.022436, - 0.035166, - -0.021057, - 0.020633, - 0.10831, - -0.0091737, - -0.020259, - -0.0028177, - 0.0080582, - -0.016023, - -0.0015463, - 0.024879, - -0.046643, - -0.067371, - -0.011277, - 0.0066748, - 0.001103, - 0.0075698, - -0.038171, - 0.060014, - -0.031212, - 0.076917, - 0.032219, - 0.04558, - 0.040611, - 0.024225, - -0.068821, - -0.0099493, - 0.0055944, - -0.020911, - 0.0056319, - -0.0044829, - -0.033386, - 0.029232, - 0.033505, - 0.015633, - -0.0090372, - -0.04053, - 0.058921, - 0.023485, - 0.024709, - 0.0029392, - 0.07865, - -0.0013764, - -0.03477, - -0.00097429, - -0.020254, - -0.041147, - 0.034829, - -0.053768, - 0.055386, - -0.0085448, - 0.082943, - -0.09911, - 0.0022417, - 0.041497, - -0.0037696, - 0.027801, - 0.024651, - -0.084692, - 0.014308, - 0.029556, - -0.0039168, - -0.012537, - 0.024088, - -0.0077019, - -0.025078, - -0.027722, - -0.076129, - -0.014959, - 0.048233, - 0.00196, - 0.048022, - 0.0075141, - 0.00055752, - -0.01462, - -0.042212, - -0.014453, - 0.0072643, - -0.052946, - -0.014254 - ], - "curriculum": [ - 0.0082907, - -0.039902, - -0.013416, - 0.032332, - 0.014071, - -0.021136, - -0.019804, - -0.071966, - -0.026321, - -0.010415, - -0.0005097, - -0.058255, - 0.021064, - 0.048195, - 0.046785, - -0.010855, - 0.090543, - 0.056825, - 0.044834, - 0.018572, - -0.030952, - -0.029578, - 0.038753, - 0.061368, - -0.028412, - -0.0035897, - -0.024883, - 0.041123, - 0.003382, - 0.022597, - 0.037289, - -0.030701, - 0.01369, - -0.06663, - 0.034168, - 0.045841, - 0.027823, - 0.023035, - 0.0066436, - -0.013173, - -0.018586, - -0.09946, - 0.027165, - 0.0010013, - 0.029031, - -0.02357, - 0.038186, - -0.0061475, - -0.01129, - -0.0053602, - -0.023045, - 0.013113, - -0.01301, - 0.058707, - -0.04388, - 0.067455, - 0.0017749, - -0.016211, - -0.0054332, - 0.037205, - 0.0043728, - 0.0042813, - 0.11448, - 0.088818, - 0.044959, - -0.0025916, - -0.014781, - -0.0021435, - 0.020727, - -0.044423, - -0.019843, - -0.032801, - -0.046965, - 0.039738, - -0.0059, - -0.04348, - 0.0546, - -0.027386, - 0.042387, - 0.00045358, - 0.017797, - -0.013002, - -0.022742, - 0.043919, - -0.035618, - 0.052366, - -0.014399, - -0.046675, - -0.0059558, - 0.047357, - 0.074444, - 0.03636, - -0.081942, - 0.038539, - -0.00343, - 0.062305, - 0.060628, - 0.05552, - 0.0032915, - -0.0013066, - 0.079013, - 0.031053, - 0.063614, - -0.037908, - -0.030349, - -0.053451, - 0.047385, - 0.022006, - -0.049975, - 0.034446, - 0.0020891, - 0.035091, - 0.042193, - 0.018496, - -0.018835, - -0.013244, - -0.036594, - -0.012808, - -0.042643, - -0.010681, - 0.016931, - -0.055919, - -0.0073277, - 0.029259, - 0.021092, - 0.041416, - -0.06119, - -0.035986, - -0.011707, - 0.09025, - -0.0089817, - -0.031441, - 0.0074008, - 0.017716, - 0.0070264, - 0.011595, - 0.038268, - 0.014736, - 0.04283, - -0.060654, - 0.010583, - -0.0064562, - -0.044049, - -0.025529, - -0.022155, - -0.048841, - -0.020408, - -0.022428, - -0.027873, - 0.0016438, - 0.02571, - 0.044061, - 0.020888, - -0.059494, - 0.027708, - 0.060678, - 0.0086999, - 0.019872, - 0.031788, - -0.017539, - 0.063644, - 0.037753, - -0.061319, - 0.011749, - 0.019241, - -0.010033, - 0.05771, - -0.0094723, - 0.0023352, - -0.057087, - -0.0038339, - -0.030001, - -0.020147, - 0.00069273, - -0.0026471, - 0.016893, - -0.03479, - 0.050363, - -0.046548, - -0.0098921, - -0.0046627, - -0.0058312, - -0.0077029, - 0.0098437, - 0.036804, - 0.01388, - 0.037562, - 0.065175, - 0.01117, - -0.0077404, - -0.044962, - 0.055569, - 0.0028257, - -0.047192, - 0.054985, - -0.014521, - 0.037114, - 0.048645, - 0.041174, - -0.03221, - -0.12339, - -0.0013355, - 0.02181, - -0.01688, - -0.022144, - -0.030505, - -0.010797, - -0.033904, - 0.010226, - -0.025773, - 0.086876, - 0.0085829, - 0.021558, - 0.035648, - -0.014406, - -0.014758, - 0.023282, - 0.0045497, - -0.019317, - -0.0068716, - -0.03432, - 0.01444, - 0.045529, - 0.075157, - -0.014031, - -0.023979, - 0.05477, - -0.007977, - 0.042899, - 0.0023242, - -0.0098301, - -0.070433, - -0.017904, - 0.012718, - 0.020477, - 0.061593, - 0.021026, - 0.01507, - -0.055186, - -0.018677, - 0.05193, - 0.013628, - 0.052842, - 0.0098821, - 0.018757, - 0.072539, - -0.0407, - -0.029522, - -0.026659, - 0.028043, - 0.03833, - -0.040568, - -0.034093, - -0.063847, - -0.0097914, - 0.011208, - -0.0080807, - 0.019971, - 0.067238, - 0.033815, - 0.026174, - -0.0070415, - 0.014852, - -0.051799, - 0.031258, - 0.020529, - -0.016714, - 0.0019109, - 0.02781, - 0.041347, - 0.028225, - 0.038535, - -0.10229, - -0.049904, - -0.0041701, - -0.011114, - -0.029707, - 0.0097041, - 0.0028512, - 0.017913, - 0.061751, - 0.029945, - 0.067387, - -0.030284, - -0.012312, - -0.006824, - -0.01886, - 0.034803, - -0.027629, - -0.018029, - -0.030622, - -0.010548, - 0.015377, - -0.031762, - -0.016633, - 0.038108, - 0.013358, - 0.0026483, - 0.0070355, - -0.010704 - ], - "kittens": [ - 0.027298, - -0.01473, - 0.0053504, - -0.13038, - -0.0094401, - 0.062787, - 0.048226, - -0.068907, - 0.029079, - 0.02706, - -0.047488, - -0.028789, - 0.055382, - -0.085131, - -0.09029, - 0.0055305, - -0.008434, - -0.0391, - 0.01558, - -0.0064135, - 0.073684, - -0.017018, - -0.049768, - 0.020312, - 0.076276, - -0.000013967, - 0.010099, - 0.0026171, - 0.11988, - -0.029622, - -0.012633, - -0.096934, - 0.040298, - 0.057144, - 0.018074, - -0.0063942, - 0.0364, - -0.14723, - 0.018403, - -0.064328, - -0.11397, - -0.061484, - -0.078065, - 0.017359, - 0.073027, - -0.011593, - 0.016423, - 0.041628, - 0.054792, - 0.059362, - 0.072067, - 0.046376, - 0.0072728, - -0.044073, - -0.058006, - -0.090292, - 0.014669, - -0.049045, - -0.034896, - 0.0070705, - -0.024405, - -0.15845, - 0.14113, - 0.017275, - 0.032911, - 0.056236, - 0.040963, - -0.004514, - -0.030727, - -0.091636, - 0.0034236, - 0.050773, - 0.10597, - 0.0041264, - -0.028378, - 0.097992, - -0.044317, - -0.062917, - -0.11155, - -0.037932, - 0.028504, - -0.052576, - 0.063361, - 0.047759, - 0.055357, - -0.058374, - 0.0024306, - -0.047571, - 0.072142, - 0.041708, - -0.057823, - -0.04333, - -0.10785, - -0.011307, - 0.086845, - 0.082316, - 0.053507, - 0.069496, - 0.020844, - 0.037041, - -0.032407, - 0.013744, - -0.05014, - 0.028563, - 0.057941, - -0.056203, - -0.02403, - -0.017585, - 0.0030386, - 0.0051684, - -0.041585, - 0.053938, - 0.023684, - 0.012565, - -0.060039, - 0.0090647, - 0.027427, - 0.01575, - -0.031683, - -0.015477, - -0.069718, - 0.13055, - 0.074192, - -0.15939, - 0.11422, - 0.03079, - 0.0045247, - -0.024676, - -0.046212, - 0.0092522, - -0.036957, - 0.044724, - 0.0036614, - 0.064311, - 0.03771, - -0.0084845, - -0.025243, - 0.11425, - 0.04988, - -0.012485, - -0.025768, - 0.030388, - 0.016301, - -0.059407, - 0.11852, - 0.018196, - 0.016365, - -0.068996, - -0.024751, - -0.031206, - -0.024884, - 0.054273, - -0.0073353, - -0.013676, - -0.078707, - -0.056364, - 0.0023054, - -0.018113, - 0.0021323, - -0.040415, - 0.06897, - -0.087008, - 0.0084619, - 0.045022, - 0.003505, - -0.023028, - 0.020984, - -0.0014795, - -0.034179, - 0.016215, - 0.0093018, - 0.092952, - 0.0018467, - -0.023711, - 0.014723, - 0.082033, - 0.055692, - 0.07364, - -0.0006149, - -0.071259, - 0.049619, - -0.041225, - -0.09979, - -0.042693, - -0.032384, - 0.001689, - 0.0073512, - 0.1263, - -0.0029742, - -0.095263, - 0.0019465, - 0.006011, - -0.10418, - -0.086031, - 0.03325, - 0.016895, - 0.038268, - 0.064692, - 0.024706, - -0.0059296, - -0.11726, - 0.1259, - 0.0076336, - -0.018868, - 0.0055497, - -0.025724, - -0.0060183, - -0.034229, - -0.021708, - -0.10437, - 0.078869, - 0.0017592, - 0.058877, - -0.015438, - 0.0039606, - -0.010993, - 0.0061017, - -0.085815, - 0.024007, - -0.03808, - 0.0235, - 0.027964, - -0.025354, - 0.071893, - 0.065633, - 0.020982, - 0.0081698, - 0.11708, - 0.070219, - -0.034293, - -0.039161, - -0.02621, - -0.080527, - -0.020497, - 0.067657, - 0.054485, - 0.067935, - -0.035912, - -0.070273, - -0.037964, - -0.0005636, - 0.0099545, - 0.053188, - -0.062973, - 0.014908, - 0.092407, - -0.0025028, - 0.0026243, - -0.034485, - -0.0042157, - -0.029086, - 0.076052, - -0.0047096, - 0.036753, - -0.02997, - -0.028746, - 0.067885, - -0.03515, - 0.019858, - 0.0051946, - -0.026619, - 0.0013529, - 0.084071, - -0.0095439, - 0.068611, - 0.026639, - 0.0051954, - 0.0059875, - 0.035576, - 0.01868, - -0.042778, - 0.070331, - -0.095186, - 0.014348, - -0.050707, - 0.020499, - 0.0013493, - -0.030792, - -0.019573, - -0.005056, - -0.0069078, - 0.017357, - 0.11478, - -0.012942, - -0.0058607, - 0.048163, - -0.040086, - -0.011747, - 0.010576, - 0.004862, - -0.025685, - 0.017924, - -0.10939, - -0.066532, - 0.014709, - -0.032627, - 0.055807, - 0.074913, - -0.00073901, - 0.12413 - ], - "ethnology": [ - 0.019774, - -0.087764, - 0.010695, - 0.00065237, - 0.067389, - -0.018063, - 0.015779, - -0.082839, - 0.018776, - -0.026766, - -0.008149, - -0.062624, - 0.025669, - -0.033602, - 0.065797, - -0.023548, - 0.08681, - -0.066597, - -0.0094134, - 0.079065, - -0.073202, - -0.013958, - 0.009582, - 0.049155, - 0.0045116, - -0.0017845, - -0.020752, - 0.035728, - 0.034168, - 0.017234, - 0.049772, - 0.0099122, - 0.0085928, - -0.042918, - 0.025925, - 0.033016, - 0.055365, - 0.03206, - 0.0064039, - -0.0066647, - -0.0154, - -0.10266, - 0.040897, - -0.0075924, - 0.0054503, - -0.049266, - -0.056628, - -0.061647, - 0.039224, - -0.027817, - -0.040555, - 0.044465, - -0.054018, - 0.040995, - -0.027783, - 0.041922, - -0.021679, - -0.0054978, - -0.0064871, - 0.029119, - 0.024839, - -0.011731, - 0.033902, - -0.010252, - 0.021859, - -0.0034297, - -0.051808, - 0.019167, - 0.023338, - 0.072623, - -0.024128, - -0.067175, - -0.019408, - -0.082, - 0.028441, - 0.013367, - 0.043468, - -0.025257, - 0.10283, - 0.014163, - -0.033552, - 0.026407, - -0.05147, - -0.0041113, - -0.058542, - -0.082649, - -0.024048, - -0.032638, - 0.011391, - 0.055339, - -0.039208, - 0.053373, - -0.076882, - 0.036062, - 0.052336, - 0.063623, - -0.064475, - 0.020752, - 0.028159, - -0.013071, - 0.048944, - 0.014306, - -0.035461, - -0.011752, - 0.0010866, - -0.031532, - 0.0026146, - 0.033853, - -0.01897, - -0.043515, - -0.0094206, - 0.10712, - 0.018932, - 0.01816, - 0.001298, - 0.056879, - -0.012667, - -0.0077357, - -0.032716, - 0.044887, - -0.0033647, - -0.01964, - -0.043407, - -0.02056, - 0.047672, - 0.030525, - -0.08534, - -0.010943, - 0.0061047, - 0.1582, - -0.0056843, - 0.0029886, - -0.070574, - -0.007656, - 0.010358, - 0.00035008, - -0.04299, - -0.008046, - 0.028941, - -0.0073337, - -0.046488, - -0.0070829, - 0.029414, - 0.00069596, - -0.010137, - -0.078308, - -0.074881, - 0.075023, - -0.034801, - -0.074942, - 0.059812, - 0.023502, - -0.042636, - -0.02102, - 0.00082621, - 0.073749, - 0.048535, - 0.0025456, - -0.011627, - 0.05037, - 0.034543, - 0.013454, - -0.084019, - -0.0054345, - -0.000042202, - -0.029243, - -0.061328, - 0.0072144, - -0.047874, - 0.003543, - 0.018452, - -0.058672, - -0.016096, - 0.055828, - 0.016393, - 0.05745, - 0.00062934, - 0.049947, - -0.0066175, - -0.04475, - -0.09493, - 0.06934, - -0.016837, - -0.047736, - 0.061388, - -0.071701, - -0.018334, - 0.12397, - -0.029212, - 0.014325, - 0.043664, - 0.097909, - -0.0362, - -0.074761, - -0.0041485, - 0.1163, - -0.029552, - -0.011639, - -0.015136, - 0.012163, - -0.099355, - -0.06076, - 0.03441, - -0.08054, - 0.027459, - 0.048393, - -0.014497, - -0.042753, - -0.029912, - -0.0023587, - 0.070522, - 0.012239, - -0.013162, - -0.078627, - 0.042907, - 0.056956, - 0.0023664, - -0.082526, - -0.044486, - 0.060927, - -0.0095133, - -0.030154, - -0.076667, - 0.092905, - -0.041534, - 0.05239, - 0.01001, - 0.078375, - -0.040927, - -0.024652, - 0.035099, - -0.053692, - -0.0076426, - -0.021709, - 0.0074684, - 0.046608, - 0.015184, - 0.037337, - -0.014838, - 0.014562, - 0.014829, - 0.034701, - -0.020399, - 0.034231, - 0.0178, - 0.0098661, - -0.027005, - 0.010902, - -0.073635, - 0.039697, - 0.038117, - -0.053251, - 0.017137, - -0.014881, - 0.011223, - 0.022964, - -0.023742, - 0.028817, - 0.08187, - -0.034557, - 0.050048, - 0.00027029, - -0.050216, - 0.0095216, - 0.0011345, - -0.036244, - 0.021544, - 0.0062454, - -0.0040304, - 0.046879, - 0.045003, - 0.065894, - -0.046745, - -0.028389, - 0.019149, - 0.0069436, - 0.0053227, - 0.029537, - -0.066596, - -0.055973, - 0.036938, - -0.038807, - -0.058089, - -0.063658, - -0.037895, - 0.069947, - -0.015756, - -0.0072014, - -0.017785, - -0.021514, - -0.033781, - 0.02766, - -0.021191, - -0.04279, - 0.065476, - 0.061342, - -0.01388, - 0.027806, - -0.052782, - -0.053626 - ], - "portraiture": [ - -0.03634, - -0.04174, - 0.090591, - -0.01175, - 0.0023321, - 0.017442, - -0.0049954, - -0.076257, - 0.055311, - -0.0015842, - 0.035669, - -0.015661, - -0.0072864, - -0.035726, - -0.0089595, - -0.0014937, - 0.045321, - 0.024201, - 0.0055724, - 0.012186, - -0.015816, - 0.0059514, - 0.032809, - 0.059203, - 0.022859, - -0.024645, - -0.023344, - 0.023884, - 0.017734, - 0.040349, - -0.056791, - -0.011971, - -0.019855, - -0.07118, - 0.018607, - 0.026109, - 0.018188, - 0.01283, - -0.027516, - 0.060991, - -0.0094488, - -0.13571, - -0.007255, - 0.03283, - 0.0010589, - -0.039152, - -0.015143, - -0.028706, - -0.028353, - -0.011188, - -0.0082623, - -0.057036, - -0.048408, - 0.028925, - -0.041044, - -0.062726, - -0.0099572, - 0.017165, - -0.023671, - -0.039038, - 0.032678, - -0.076399, - 0.048143, - -0.058409, - 0.021344, - 0.012334, - -0.11581, - 0.012161, - -0.032666, - -0.00018825, - 0.033794, - 0.019418, - -0.026235, - -0.018403, - 0.0039994, - 0.045563, - -0.0069244, - -0.013231, - 0.080817, - -0.019189, - 0.014093, - 0.016763, - 0.014176, - 0.039781, - -0.032647, - -0.076839, - 0.037794, - 0.0024973, - 0.034318, - 0.069408, - -0.023743, - -0.03061, - -0.075372, - 0.044081, - 0.033993, - 0.0602, - -0.10727, - 0.033427, - 0.03795, - -0.045596, - 0.061079, - -0.016471, - 0.019584, - 0.038064, - -0.039454, - -0.017047, - -0.047314, - 0.027607, - -0.035544, - 0.045286, - -0.0040783, - 0.070258, - 0.049223, - -0.0035262, - -0.093246, - -0.048855, - 0.048675, - 0.0047235, - -0.043233, - -0.027811, - 0.0057431, - 0.010333, - -0.052429, - 0.016476, - 0.049356, - 0.097697, - 0.0046742, - -0.0093683, - 0.027604, - 0.10109, - -0.039936, - -0.01994, - -0.048115, - 0.020433, - 0.039744, - 0.019769, - -0.010136, - -0.00019655, - 0.013545, - -0.037345, - 0.038, - -0.014152, - -0.069383, - 0.032732, - -0.013506, - -0.0091532, - -0.07392, - -0.05159, - 0.033526, - -0.064561, - 0.096031, - 0.024017, - 0.067002, - -0.082677, - -0.078608, - 0.063492, - -0.02894, - 0.017486, - -0.012451, - 0.032385, - 0.030686, - 0.036083, - -0.084798, - 0.034276, - -0.049323, - 0.017342, - -0.049677, - -0.0093986, - -0.022832, - 0.0016899, - 0.027584, - 0.045702, - 0.021906, - -0.025141, - 0.019625, - 0.043657, - 0.0079797, - 0.0018316, - -0.056854, - -0.023553, - 0.027822, - -0.056994, - -0.027857, - -0.036107, - -0.012993, - -0.014206, - 0.024632, - 0.10004, - 0.0102, - -0.0086653, - 0.045993, - 0.063337, - -0.059788, - -0.053251, - -0.064876, - -0.068185, - 0.0016813, - -0.0058522, - 0.034473, - 0.024689, - -0.14076, - 0.028163, - 0.040893, - -0.07475, - -0.0021598, - 0.073367, - -0.033299, - 0.018964, - -0.017726, - 0.01461, - 0.089598, - 0.017005, - 0.0012869, - 0.005572, - -0.0042355, - 0.043892, - 0.014101, - -0.0013272, - -0.076895, - -0.061032, - -0.028844, - -0.03204, - -0.010521, - 0.067195, - 0.025708, - 0.018008, - 0.082855, - 0.05444, - -0.012976, - 0.018271, - -0.010174, - -0.020806, - -0.04202, - -0.024101, - 0.056483, - 0.094648, - 0.053819, - -0.055855, - -0.009507, - -0.023868, - 0.030534, - -0.016229, - -0.057911, - 0.0047742, - 0.01386, - 0.010335, - -0.069268, - -0.04199, - -0.016988, - -0.013781, - 0.02794, - -0.030836, - -0.015885, - -0.0013302, - 0.010196, - 0.048895, - -0.044585, - 0.047684, - 0.083504, - 0.026606, - -0.0085431, - -0.042569, - 0.023536, - 0.0048668, - 0.066853, - -0.0098441, - 0.025076, - -0.0077279, - 0.0067751, - -0.00018441, - -0.015374, - 0.055193, - -0.074124, - -0.00183, - -0.064777, - -0.016084, - 0.015983, - 0.005977, - -0.0029941, - 0.022397, - 0.084521, - 0.047329, - 0.00029884, - -0.043624, - 0.02296, - -0.017842, - -0.0065087, - -0.010457, - 0.00014595, - 0.035009, - -0.019845, - -0.017133, - -0.0023387, - -0.046958, - -0.041853, - 0.11139, - -0.064212, - -0.004615, - -0.019157, - -0.016067 - ], - "site": [ - 0.053481, - -0.10055, - 0.062518, - 0.01458, - -0.00025465, - -0.040085, - -0.024923, - -0.14126, - -0.00084868, - 0.017284, - -0.043297, - -0.1161, - -0.062656, - 0.011093, - -0.0075732, - 0.011982, - 0.20612, - 0.015077, - 0.10226, - -0.012612, - 0.0075359, - 0.073157, - 0.088094, - 0.098325, - 0.027926, - -0.016564, - -0.058052, - 0.059643, - -0.0088523, - 0.022745, - -0.027811, - 0.039745, - 0.00031581, - -0.061897, - -0.0099609, - 0.012858, - 0.0050601, - 0.01943, - -0.0042063, - -0.059531, - -0.016639, - -0.15396, - -0.063659, - -0.046132, - 0.033102, - -0.017038, - 0.036252, - 0.058853, - -0.029165, - 0.05035, - -0.0038024, - -0.048285, - 0.013969, - 0.041112, - -0.14329, - -0.035177, - 0.035964, - 0.023768, - -0.049784, - 0.075251, - -0.017185, - 0.052252, - 0.17813, - 0.043489, - 0.10838, - 0.035234, - 0.015492, - 0.038874, - 0.069885, - 0.019488, - 0.044222, - 0.024145, - -0.012059, - 0.015071, - 0.044604, - -0.061992, - -0.0075714, - -0.0062761, - -0.0048924, - -0.054361, - 0.012436, - 0.054668, - -0.036789, - 0.052852, - -0.063285, - 0.074339, - -0.058542, - -0.058467, - -0.028741, - 0.0094126, - 0.0096052, - 0.016934, - -0.056803, - 0.027043, - 0.031053, - 0.086473, - 0.033013, - 0.075388, - 0.054435, - -0.0012748, - 0.024953, - 0.072735, - -0.05074, - -0.004556, - -0.036982, - -0.14862, - 0.063029, - -0.039082, - 0.037337, - 0.063396, - -0.099249, - 0.12723, - 0.092746, - -0.028016, - 0.02022, - -0.0015627, - -0.056176, - -0.067249, - -0.035708, - 0.025169, - -0.061851, - -0.0065856, - 0.0070118, - 0.070423, - 0.077669, - -0.016961, - -0.051561, - -0.14384, - 0.078866, - 0.092985, - 0.038518, - -0.05658, - 0.014994, - -0.053299, - 0.0044384, - -0.0059292, - -0.040037, - 0.060225, - -0.026463, - -0.043889, - -0.13068, - -0.035018, - 0.041987, - -0.057716, - -0.050293, - 0.10518, - 0.032158, - 0.0099265, - 0.02281, - -0.00038201, - -0.038139, - 0.052885, - -0.019577, - -0.15511, - 0.055335, - 0.026024, - 0.035481, - 0.029715, - 0.031065, - -0.0019747, - 0.0023941, - -0.078566, - -0.027473, - 0.015761, - 0.092835, - 0.025834, - 0.072761, - -0.01135, - -0.045621, - 0.074739, - -0.027017, - -0.010128, - 0.073899, - -0.06879, - 0.04654, - 0.053799, - -0.015854, - -0.091007, - -0.030339, - 0.12698, - 0.017038, - 0.026813, - -0.0065717, - 0.054511, - -0.053192, - 0.028991, - -0.013066, - 0.10873, - -0.038344, - -0.085308, - 0.042731, - 0.11749, - -0.027909, - 0.11204, - -0.045957, - 0.028027, - 0.071283, - 0.029434, - -0.0038719, - 0.046673, - -0.23195, - 0.14304, - -0.06532, - -0.045692, - 0.013262, - 0.025952, - -0.088447, - 0.05533, - -0.038765, - -0.073356, - 0.10548, - -0.025653, - 0.0053364, - 0.020715, - -0.083558, - -0.046062, - 0.040869, - 0.13671, - 0.074202, - -0.045836, - 0.019329, - -0.0524, - 0.0181, - 0.16364, - -0.027052, - -0.0046748, - 0.033067, - 0.0964, - -0.069107, - 0.029327, - -0.029396, - -0.13514, - -0.037967, - -0.021563, - -0.0096775, - 0.061092, - 0.048757, - 0.12314, - -0.038005, - -0.020354, - 0.11501, - 0.02493, - 0.042619, - -0.081658, - -0.024562, - 0.047519, - -0.020835, - 0.05707, - -0.14972, - 0.096143, - -0.026392, - -0.01888, - 0.045284, - -0.025288, - 0.016135, - 0.0019447, - -0.083007, - 0.064066, - 0.0090144, - -0.0048567, - 0.024225, - 0.002076, - -0.032806, - -0.10118, - 0.057084, - -0.087842, - 0.035514, - -0.02965, - -0.036894, - -0.0079895, - 0.028345, - 0.14847, - -0.12213, - -0.037481, - 0.053294, - -0.049797, - 0.010772, - -0.039118, - 0.0097355, - -0.075883, - 0.019689, - -0.013077, - 0.088121, - 0.11309, - 0.0037073, - -0.04625, - -0.088883, - -0.045235, - -0.095747, - -0.012272, - -0.02526, - 0.034937, - 0.019004, - 0.039723, - 0.06627, - -0.03831, - -0.0010388, - -0.041382, - -0.074252, - -0.014017 - ], - "phone": [ - -0.039135, - 0.0072589, - -0.0031864, - 0.028861, - 0.050626, - -0.0071364, - 0.018499, - -0.11037, - 0.10777, - -0.0017283, - 0.012529, - -0.057664, - -0.092408, - -0.0055636, - -0.037891, - -0.059638, - 0.089554, - -0.025294, - 0.034166, - -0.015782, - 0.0062167, - -0.019586, - 0.095213, - 0.07826, - 0.056757, - 0.012147, - 0.027022, - 0.055472, - 0.0108, - 0.027439, - -0.074867, - 0.079682, - -0.012221, - -0.040456, - 0.0064441, - -0.046151, - 0.014288, - 0.0052416, - -0.027318, - -0.034512, - -0.03335, - -0.14345, - 0.011045, - -0.0096658, - 0.11265, - 0.067912, - 0.01023, - -0.094593, - -0.020879, - -0.035966, - 0.038421, - -0.019576, - 0.070396, - -0.028057, - -0.083919, - 0.07465, - -0.060158, - -0.013553, - -0.043653, - 0.036363, - -0.087059, - 0.00024713, - 0.17729, - 0.05109, - 0.0044859, - 0.0051367, - 0.035035, - 0.0065651, - -0.14342, - -0.085692, - -0.03474, - -0.021058, - 0.070158, - -0.042935, - -0.08273, - 0.016286, - 0.037952, - -0.022544, - -0.03541, - -0.035118, - -0.027, - -0.13388, - 0.0054468, - 0.04804, - -0.035425, - -0.13963, - 0.014552, - 0.00917, - -0.055165, - 0.040835, - -0.041069, - 0.0058229, - -0.10312, - 0.011762, - 0.042346, - 0.07016, - 0.060794, - -0.051371, - 0.065084, - -0.061052, - 0.055728, - 0.028729, - -0.061607, - 0.054164, - 0.022001, - -0.11594, - 0.017495, - -0.0037308, - 0.046158, - -0.034176, - 0.049029, - 0.050445, - 0.1055, - 0.10789, - -0.11336, - -0.044994, - -0.044644, - -0.003085, - -0.028117, - -0.092976, - 0.010795, - 0.080845, - 0.01695, - 0.010122, - 0.033109, - 0.014855, - -0.014025, - -0.099132, - 0.04727, - 0.079607, - 0.011941, - -0.049486, - -0.045519, - -0.037935, - 0.025688, - -0.010578, - 0.080736, - 0.06217, - -0.14508, - 0.054482, - 0.16124, - -0.001715, - 0.051581, - -0.026494, - -0.055246, - 0.034955, - -0.050318, - 0.060882, - 0.042908, - -0.025671, - -0.069024, - 0.057069, - -0.0055072, - -0.058802, - -0.066316, - 0.023094, - -0.052303, - -0.079038, - 0.019683, - 0.03948, - 0.043329, - 0.052362, - -0.034964, - 0.0070297, - 0.029035, - -0.049961, - 0.0096513, - 0.021765, - -0.0056528, - 0.10345, - -0.014528, - 0.099157, - 0.007207, - 0.099956, - -0.036991, - 0.075294, - 0.0017446, - 0.041442, - 0.0068971, - -0.015865, - 0.033734, - -0.005222, - 0.047903, - 0.079076, - 0.011368, - -0.045428, - -0.12062, - 0.11441, - 0.094823, - 0.0044257, - -0.032, - 0.03092, - 0.01425, - 0.065314, - 0.09105, - -0.039716, - -0.0050478, - 0.022261, - 0.0096404, - 0.094052, - -0.17545, - 0.095162, - -0.032461, - 0.11782, - 0.0063797, - 0.0071387, - -0.011423, - -0.043448, - -0.1409, - -0.087151, - 0.14729, - -0.030869, - 0.032653, - 0.071436, - -0.044366, - -0.064585, - -0.012356, - 0.032574, - 0.038633, - -0.026295, - 0.07699, - -0.028847, - -0.0017914, - 0.12276, - 0.066325, - -0.044636, - -0.0011452, - 0.068838, - -0.024432, - 0.0071955, - 0.066234, - -0.10735, - -0.01601, - -0.034591, - 0.064269, - 0.068137, - 0.04518, - 0.0046067, - 0.051912, - -0.054869, - 0.082781, - -0.070904, - 0.034077, - -0.0308, - -0.057585, - -0.11112, - 0.012724, - 0.044545, - -0.036364, - 0.057781, - 0.008499, - 0.013731, - -0.084378, - 0.040983, - 0.039953, - -0.078091, - -0.064381, - 0.0012069, - -0.10314, - 0.02663, - -0.030392, - -0.056422, - 0.029996, - -0.035433, - 0.00097823, - -0.04461, - -0.031788, - 0.025257, - 0.029577, - 0.053965, - -0.18186, - 0.1158, - -0.14663, - -0.027117, - 0.028773, - -0.040383, - -0.009925, - 0.070211, - 0.056667, - -0.02342, - 0.087407, - -0.098671, - -0.028831, - 0.019787, - -0.019316, - -0.043399, - -0.18342, - -0.022585, - -0.014786, - -0.071209, - 0.034079, - -0.021649, - -0.11066, - 0.052656, - 0.0028829, - 0.052884, - -0.081913, - 0.047678, - 0.068865, - -0.03568 - ], - "visual": [ - -0.047431, - -0.011584, - 0.055326, - 0.026883, - -0.028756, - -0.052742, - 0.005233, - -0.10406, - 0.036729, - -0.01262, - 0.059406, - -0.019918, - 0.027239, - 0.01551, - -0.016388, - 0.0193, - 0.047114, - 0.03714, - 0.046379, - -0.038693, - -0.026073, - -0.083062, - 0.096805, - 0.089487, - -0.047958, - 0.018232, - -0.035708, - 0.086542, - 0.0097201, - 0.046748, - -0.075564, - 0.032206, - 0.12344, - -0.16831, - 0.047406, - 0.076514, - -0.000049379, - -0.0059879, - -0.064378, - -0.055127, - -0.026175, - -0.14611, - -0.032298, - 0.0053423, - 0.019365, - -0.052269, - 0.063887, - -0.0085155, - -0.0097695, - 0.026059, - -0.079316, - -0.010118, - 0.006159, - -0.061833, - 0.047599, - 0.013087, - -0.014706, - -0.12562, - -0.045318, - -0.021207, - -0.048576, - -0.091022, - 0.14079, - 0.021459, - 0.064521, - 0.038145, - -0.046816, - 0.061092, - 0.010164, - 0.063174, - 0.037332, - 0.016996, - 0.05137, - 0.031944, - 0.017859, - -0.015665, - 0.015839, - -0.1077, - 0.032873, - -0.074398, - -0.034225, - 0.022667, - -0.024132, - 0.036194, - 0.026075, - -0.049151, - 0.020936, - 0.013682, - 0.0050543, - 0.00026136, - 0.016424, - -0.015464, - -0.11607, - -0.030159, - -0.010591, - 0.07333, - -0.061679, - 0.0056761, - 0.066993, - 0.051752, - 0.12486, - 0.053644, - -0.0058688, - 0.035541, - 0.024122, - -0.11639, - -0.065528, - 0.01593, - 0.033504, - 0.036909, - 0.01485, - 0.11363, - 0.045289, - 0.0023627, - -0.031335, - 0.0081596, - -0.079327, - 0.011276, - -0.020473, - 0.0049291, - 0.00155, - 0.0086967, - -0.043637, - 0.032214, - 0.1211, - -0.02229, - -0.011987, - -0.03946, - 0.023523, - 0.077813, - -0.011417, - -0.038223, - 0.029475, - -0.00056014, - 0.018825, - 0.0012526, - -0.013324, - 0.039992, - 0.068652, - 0.040127, - -0.011215, - 0.051507, - 0.064038, - 0.038777, - -0.042214, - -0.078969, - -0.087815, - -0.013507, - -0.031256, - 0.099118, - 0.057105, - 0.18617, - 0.022047, - -0.045763, - -0.0031244, - -0.0056147, - -0.0015735, - 0.025946, - -0.007156, - 0.0056824, - 0.028631, - -0.013997, - -0.11277, - -0.0281, - -0.003665, - 0.062805, - 0.030953, - -0.072173, - 0.0033308, - 0.023232, - 0.045378, - -0.025276, - 0.047483, - -0.0063127, - 0.068505, - 0.068307, - 0.011327, - 0.010826, - -0.044508, - 0.011475, - 0.027298, - 0.010754, - -0.024558, - -0.041974, - -0.024011, - -0.063145, - 0.011268, - 0.13401, - -0.012963, - 0.0018374, - -0.027229, - 0.048541, - 0.14143, - -0.020525, - -0.10291, - -0.011858, - -0.032467, - 0.02265, - 0.016127, - 0.00067777, - -0.16012, - 0.015205, - -0.077807, - -0.032191, - 0.042037, - 0.080338, - 0.014558, - 0.053247, - -0.042102, - -0.0024085, - 0.14456, - 0.0086651, - -0.03236, - -0.010865, - 0.036058, - 0.020315, - 0.081569, - 0.028775, - -0.084751, - 0.0035512, - -0.052715, - 0.044645, - 0.0048883, - 0.10508, - 0.083499, - 0.022657, - 0.052881, - 0.090026, - -0.010263, - -0.024345, - -0.033608, - -0.079914, - -0.06866, - -0.050987, - 0.004705, - 0.0090787, - 0.055922, - -0.066998, - -0.037639, - -0.03421, - 0.0936, - -0.0047025, - -0.11626, - -0.0143, - -0.23507, - 0.018924, - -0.014698, - 0.0039678, - -0.002917, - 0.009906, - 0.077378, - 0.024813, - -0.014808, - 0.0085761, - -0.046458, - 0.034084, - -0.0016064, - 0.041487, - 0.057593, - 0.053604, - 0.016202, - 0.073071, - 0.036805, - 0.00025472, - 0.068454, - -0.054724, - 0.11636, - 0.012644, - 0.0057277, - 0.018586, - -0.0031568, - 0.074511, - -0.10196, - -0.053063, - 0.022158, - -0.1105, - -0.02014, - 0.076843, - 0.037099, - 0.0052953, - 0.20849, - -0.023262, - -0.042731, - 0.0041597, - -0.024852, - -0.0598, - -0.0065696, - 0.036892, - 0.011918, - -0.019572, - -0.038103, - 0.0029637, - -0.051431, - -0.041907, - 0.046164, - -0.013408, - -0.062314, - -0.031144, - 0.053107, - 0.10896 - ], - "train": [ - 0.0012784, - 0.028009, - -0.0070453, - 0.038541, - -0.0018396, - -0.076977, - -0.084239, - -0.11803, - 0.027771, - 0.0035364, - -0.010155, - 0.01765, - 0.0070757, - -0.015348, - -0.02819, - 0.015845, - 0.16649, - 0.069081, - 0.097332, - -0.0086588, - -0.041696, - -0.079467, - -0.049626, - 0.02676, - -0.010046, - 0.062166, - -0.030177, - 0.018375, - -0.054284, - -0.025061, - -0.021488, - 0.10898, - 0.038322, - 0.024964, - -0.031107, - 0.0035321, - 0.057906, - 0.072793, - -0.0035595, - -0.034416, - 0.051157, - -0.16191, - -0.061467, - -0.083059, - 0.053614, - 0.074575, - 0.11944, - 0.0054606, - -0.032234, - 0.014234, - 0.054097, - 0.075248, - -0.035398, - -0.023807, - -0.13684, - -0.035781, - 0.014144, - 0.036095, - -0.093371, - -0.0034702, - 0.023353, - 0.044035, - 0.1956, - 0.10007, - 0.034232, - 0.0049571, - -0.049292, - -0.086166, - -0.029875, - 0.052268, - 0.063718, - -0.020968, - 0.061245, - 0.056868, - -0.010034, - 0.027871, - -0.013528, - -0.046813, - -0.10645, - -0.0050725, - 0.0085626, - -0.036247, - -0.011052, - 0.10715, - -0.034332, - -0.063739, - 0.017882, - -0.06909, - 0.0076482, - -0.0053138, - -0.0073476, - 0.00079966, - -0.099519, - -0.062822, - 0.06124, - 0.025962, - 0.087482, - -0.018472, - 0.067347, - 0.012245, - 0.077532, - -0.026659, - 0.03545, - -0.029215, - 0.042716, - -0.13519, - 0.016263, - -0.060159, - -0.029573, - 0.039862, - -0.012342, - 0.096033, - 0.12768, - 0.08, - 0.022672, - -0.022162, - -0.090939, - 0.045126, - -0.035521, - 0.0005389, - 0.061896, - -0.063773, - 0.035758, - -0.02511, - 0.11456, - 0.020174, - 0.0039197, - -0.1177, - 0.0036652, - 0.071916, - -0.02123, - 0.049535, - -0.01174, - -0.018135, - 0.076527, - 0.011132, - -0.01102, - 0.062956, - -0.028818, - 0.026888, - -0.036633, - -0.068931, - -0.12479, - 0.027406, - -0.08489, - 0.0045712, - -0.077256, - 0.07147, - -0.11701, - -0.023171, - -0.0043864, - 0.12254, - -0.072617, - -0.048375, - 0.023392, - -0.026848, - -0.10773, - 0.041203, - -0.07897, - -0.069772, - 0.030804, - 0.010439, - -0.0054346, - 0.065894, - -0.086087, - -0.042906, - 0.028139, - 0.0030322, - -0.032992, - -0.00030929, - 0.053857, - 0.038118, - -0.052968, - 0.018643, - 0.14484, - 0.039657, - -0.046357, - -0.0052288, - -0.039577, - 0.049612, - -0.023281, - -0.09012, - -0.019766, - 0.012802, - 0.044989, - -0.071201, - -0.013033, - 0.084012, - -0.04536, - 0.010322, - -0.014486, - 0.027706, - -0.072968, - -0.029007, - 0.083217, - -0.017044, - 0.011947, - 0.047678, - 0.033968, - 0.0059383, - -0.2129, - 0.14831, - -0.0047054, - 0.11216, - 0.029772, - -0.074943, - 0.022781, - -0.052168, - 0.063545, - -0.057307, - 0.11933, - -0.041531, - 0.049444, - -0.080558, - -0.028284, - 0.0036323, - 0.026299, - -0.013251, - 0.044928, - 0.01881, - -0.067198, - -0.026307, - 0.020234, - 0.12596, - 0.093963, - -0.027441, - -0.022346, - 0.074191, - -0.021967, - 0.011183, - -0.047277, - -0.080039, - -0.038482, - -0.051932, - 0.055325, - -0.027468, - 0.0089638, - 0.097778, - -0.076975, - 0.05994, - 0.15679, - 0.13279, - 0.066262, - -0.070947, - -0.068136, - 0.037792, - 0.095623, - -0.028092, - 0.013585, - 0.10075, - 0.029112, - 0.10993, - 0.0024689, - -0.012298, - -0.020014, - 0.045365, - 0.082738, - 0.10364, - 0.051347, - 0.099756, - 0.043161, - 0.00738, - -0.016545, - -0.077349, - -0.046864, - 0.030111, - -0.079537, - 0.014889, - -0.082496, - 0.034277, - -0.016197, - 0.12986, - -0.12597, - -0.068043, - -0.027607, - 0.0025091, - 0.0019535, - 0.097386, - 0.021549, - -0.058994, - 0.060398, - -0.029632, - 0.014732, - -0.054158, - 0.019881, - 0.016003, - 0.020319, - -0.02864, - 0.090754, - 0.042881, - -0.0020056, - -0.0056449, - -0.045962, - -0.029195, - 0.023357, - 0.035011, - 0.053375, - 0.0021369, - 0.040025, - -0.034097 - ], - "expeditionary": [ - -0.038231, - -0.0012475, - 0.0049941, - -0.00018947, - -0.0045362, - -0.022844, - 0.0064683, - -0.076436, - 0.0035869, - 0.050629, - 0.0060319, - -0.033721, - -0.030121, - -0.003338, - 0.0073875, - -0.048621, - 0.078591, - -0.067958, - 0.019108, - 0.03502, - -0.012507, - 0.0019492, - 0.0023682, - 0.056586, - 0.0026953, - 0.0028933, - 0.0041925, - -0.017814, - -0.028462, - -0.04663, - 0.022358, - 0.014564, - 0.0076243, - -0.038053, - 0.034309, - 0.026533, - 0.012548, - 0.020941, - 0.062696, - -0.031515, - 0.00029883, - -0.078228, - 0.038875, - 0.0031158, - 0.0085782, - 0.0094909, - -0.049933, - 0.0071692, - -0.048205, - -0.048865, - 0.059842, - -0.0091684, - -0.035708, - -0.0019929, - 0.025502, - 0.051623, - 0.0018474, - -0.016704, - 0.017668, - 0.023353, - 0.021061, - 0.011555, - 0.087616, - -0.03497, - 0.028896, - -0.042356, - -0.041827, - -0.032507, - 0.0072574, - -0.015182, - 0.010115, - -0.0020155, - 0.027883, - 0.025209, - 0.074046, - -0.0075076, - 0.028111, - -0.024531, - 0.0094052, - 0.021413, - 0.0011403, - 0.0011164, - -0.011085, - 0.016852, - -0.010354, - -0.026122, - 0.062682, - 0.013762, - -0.012908, - -0.025157, - 0.0040878, - 0.082942, - -0.05577, - -0.019404, - 0.0093352, - 0.057532, - -0.081063, - 0.016064, - -0.0096998, - -0.035163, - 0.050872, - 0.0038871, - 0.065225, - -0.014488, - -0.00069321, - -0.059968, - -0.033444, - 0.011913, - -0.033445, - -0.027782, - 0.026523, - 0.02758, - 0.026947, - 0.027453, - -0.0039604, - 0.028897, - 0.040479, - 0.02345, - -0.041539, - -0.013775, - 0.024075, - -0.057682, - -0.031216, - -0.023541, - 0.076411, - 0.01915, - 0.0041672, - -0.019093, - 0.021996, - 0.04318, - -0.073279, - 0.037058, - -0.030241, - -0.0058972, - 0.034594, - -0.00053867, - 0.0038576, - 0.0046355, - 0.0066018, - 0.023789, - -0.0037956, - -0.073083, - 0.013651, - 0.0016116, - -0.046272, - 0.049749, - -0.0041269, - 0.042544, - 0.023418, - 0.013595, - 0.045419, - 0.1024, - -0.011061, - -0.024142, - 0.019105, - 0.066794, - -0.02992, - -0.0018576, - -0.033129, - -0.019661, - 0.025442, - 0.0040335, - -0.062712, - -0.012131, - -0.0051125, - 0.030795, - -0.052135, - -0.040645, - 0.023453, - -0.0011354, - 0.080379, - -0.0035195, - -0.052847, - -0.015346, - -0.042317, - 0.013907, - -0.021632, - 0.0075156, - -0.038142, - 0.0081393, - -0.023589, - -0.033221, - -0.00092675, - -0.0095703, - 0.0060715, - -0.02234, - 0.026425, - 0.096227, - -0.049667, - 0.029874, - 0.020681, - 0.029961, - 0.046732, - -0.069109, - -0.021081, - -0.01248, - -0.050854, - 0.029069, - -0.00018187, - 0.028534, - -0.10444, - 0.017124, - 0.013665, - 0.053863, - 0.0081934, - 0.0098753, - -0.058173, - 0.036552, - 0.02151, - 0.0052164, - 0.10874, - -0.0097027, - -0.0019241, - -0.034996, - -0.03204, - 0.041224, - 0.0095359, - -0.0044685, - -0.014883, - 0.025567, - -0.0067229, - 0.015864, - -0.011979, - 0.075412, - -0.033041, - 0.032272, - 0.0043874, - 0.068748, - -0.046266, - 0.00135, - -0.026328, - -0.025143, - -0.018001, - 0.023325, - -0.0077466, - 0.056661, - 0.0086543, - 0.0063147, - -0.011404, - -0.023555, - 0.049726, - 0.023178, - 0.023378, - -0.0080685, - -0.054809, - 0.034503, - 0.0060738, - -0.027967, - -0.0085472, - 0.0091289, - 0.027934, - 0.034452, - 0.03554, - 0.00016283, - -0.013256, - 0.039114, - 0.014316, - 0.029837, - 0.036114, - -0.0010593, - -0.041297, - -0.019966, - -0.048675, - 0.0012902, - 0.01233, - -0.0026757, - 0.0034988, - 0.0056651, - 0.029992, - 0.0056969, - 0.0040701, - 0.049122, - -0.034251, - 0.0092184, - -0.041835, - -0.030875, - -0.0341, - 0.00041854, - 0.0032301, - 0.000042212, - 0.097273, - -0.01101, - 0.0028383, - 0.019584, - -0.0098172, - -0.060974, - -0.014441, - -0.020379, - -0.010292, - -0.027889, - -0.014049, - 0.092607, - -0.026344, - -0.029359, - 0.010742, - -0.022552, - -0.0079079, - 0.039488, - -0.039639, - -0.026111 - ], - "adult": [ - -0.053975, - -0.041365, - -0.024826, - -0.046542, - -0.054944, - 0.012634, - -0.1053, - -0.09153, - 0.073486, - 0.029669, - -0.0036723, - -0.034897, - -0.0011461, - -0.031324, - -0.074284, - -0.019234, - 0.0564, - -0.020365, - 0.094558, - 0.064511, - 0.06902, - -0.060423, - -0.019517, - 0.10538, - -0.069478, - 0.047472, - -0.015215, - 0.002938, - 0.038123, - 0.031663, - -0.0067583, - -0.0023863, - 0.0010272, - -0.032283, - 0.039596, - 0.049709, - 0.00024532, - -0.046739, - -0.063669, - -0.014132, - -0.020505, - -0.10725, - -0.016178, - -0.10016, - 0.054007, - -0.013552, - -0.018982, - 0.060612, - -0.084443, - -0.01835, - -0.015611, - 0.090082, - 0.038687, - -0.042616, - 0.05223, - -0.0033724, - 0.02239, - -0.068483, - -0.053891, - -0.04416, - -0.029751, - -0.069939, - 0.15121, - 0.066452, - 0.050519, - -0.030737, - 0.019247, - -0.059879, - -0.032327, - -0.030272, - -0.020593, - -0.0062012, - 0.13742, - 0.095911, - 0.014817, - -0.038262, - -0.07847, - 0.022228, - 0.050668, - -0.024644, - 0.015696, - 0.064445, - -0.038344, - 0.084883, - -0.032603, - 0.041244, - 0.0044622, - 0.02189, - -0.028518, - 0.038972, - 0.049529, - 0.093861, - -0.11492, - -0.06354, - -0.028439, - 0.11842, - 0.11941, - 0.054756, - 0.024695, - 0.031268, - 0.083088, - 0.042925, - -0.042813, - -0.033904, - 0.0098907, - -0.11163, - 0.040053, - -0.063632, - -0.06944, - 0.013958, - -0.06981, - 0.20251, - 0.048061, - -0.045228, - -0.046263, - -0.12572, - -0.0060933, - -0.028636, - -0.080448, - 0.040875, - -0.030571, - 0.089337, - 0.026166, - -0.046036, - 0.058526, - -0.10339, - 0.061906, - -0.13901, - 0.059396, - -0.032047, - -0.08518, - 0.098826, - 0.0079164, - -0.0085147, - -0.11059, - 0.011336, - -0.029033, - 0.030239, - 0.034771, - -0.045332, - 0.028494, - 0.053804, - 0.030824, - -0.012545, - 0.025052, - -0.063189, - -0.0096982, - -0.031313, - -0.043367, - -0.032316, - 0.12236, - 0.10424, - -0.083368, - -0.086163, - 0.0020648, - -0.031106, - -0.0591, - 0.022039, - 0.11937, - -0.073679, - 0.03581, - 0.032566, - 0.0059441, - 0.062059, - 0.016435, - 0.036905, - 0.085641, - -0.062855, - -0.088958, - -0.019109, - 0.019974, - 0.030089, - -0.012532, - 0.032379, - 0.0081982, - 0.10003, - 0.061452, - -0.031978, - -0.037141, - -0.070125, - 0.070597, - -0.01975, - -0.069219, - 0.031563, - 0.026596, - -0.12971, - 0.05804, - 0.11789, - 0.0022519, - 0.013675, - -0.033926, - 0.043667, - -0.000046207, - -0.018187, - 0.03474, - -0.060497, - 0.042895, - 0.069128, - -0.0085316, - 0.021319, - -0.17203, - 0.10863, - 0.00064547, - 0.00077071, - 0.0067527, - 0.069766, - 0.042661, - -0.025512, - -0.010801, - -0.0076864, - 0.17836, - -0.0519, - -0.031081, - 0.059246, - -0.060567, - -0.01992, - 0.015379, - -0.020419, - 0.029031, - 0.036556, - -0.056178, - 0.020898, - 0.034308, - 0.10654, - -0.077217, - -0.098597, - 0.13072, - 0.096288, - -0.066579, - -0.11888, - 0.02323, - -0.0014375, - -0.08771, - -0.0036241, - 0.031623, - 0.069219, - 0.05565, - 0.04865, - -0.0045739, - -0.091111, - -0.0053113, - -0.004452, - -0.09515, - -0.030418, - -0.10635, - 0.017899, - 0.01757, - -0.046534, - 0.0050603, - -0.10867, - 0.051963, - 0.10587, - 0.0049589, - -0.014979, - 0.0849, - 0.050759, - -0.01514, - 0.044464, - 0.033604, - -0.080441, - 0.0020924, - -0.067639, - 0.013794, - -0.034532, - -0.0080933, - 0.028675, - 0.0053422, - 0.027249, - 0.099514, - 0.019469, - 0.034217, - 0.11052, - -0.13695, - -0.026957, - -0.022285, - -0.025919, - 0.0020798, - 0.044944, - 0.057726, - 0.022149, - 0.11632, - 0.014036, - 0.093946, - -0.015313, - -0.061981, - 0.046716, - -0.028085, - -0.0747, - -0.043553, - -0.010355, - 0.053962, - 0.053201, - -0.067568, - -0.031177, - -0.01437, - 0.028759, - 0.032833, - 0.039664, - 0.0145, - -0.021137 - ], - "citizenry": [ - 0.019347, - -0.0074555, - 0.011821, - 0.05077, - -0.052513, - 0.035522, - -0.0082386, - -0.077671, - 0.023956, - 0.076525, - 0.061009, - -0.011918, - -0.0048318, - 0.04429, - -0.034813, - 0.10044, - 0.030676, - -0.00082949, - 0.042643, - 0.00051925, - 0.013645, - -0.063034, - -0.0093797, - 0.057409, - -0.0058029, - 0.027985, - 0.013488, - 0.013663, - 0.017876, - 0.022539, - 0.0071942, - -0.079363, - 0.011602, - -0.0050446, - -0.034887, - 0.086074, - -0.010336, - 0.044035, - -0.0079597, - -0.031914, - -0.0013787, - -0.090747, - 0.0049731, - 0.040102, - 0.056781, - -0.010625, - -0.013255, - 0.074519, - -0.049589, - 0.031134, - 0.015683, - 0.0051359, - -0.0031846, - -0.024011, - -0.03259, - 0.032664, - -0.0088902, - 0.022503, - -0.0064347, - -0.03125, - 0.02297, - 0.013712, - 0.051996, - 0.046806, - -0.010069, - -0.0020149, - -0.042027, - 0.013183, - 0.094344, - -0.0033723, - 0.052381, - 0.024494, - 0.071309, - 0.0080743, - -0.022154, - -0.013557, - -0.025521, - -0.00094452, - -0.0093138, - -0.019517, - -0.016405, - 0.077137, - 0.018829, - 0.097639, - 0.032226, - 0.0055885, - -0.03239, - -0.058777, - -0.013536, - 0.049587, - -0.0022096, - 0.030961, - -0.072997, - -0.012609, - -0.030026, - 0.066351, - 0.034063, - -0.060506, - 0.023269, - 0.045225, - 0.044424, - -0.061756, - 0.0020596, - -0.033752, - -0.020511, - -0.081357, - 0.058451, - 0.0035475, - -0.037632, - -0.0050383, - -0.043772, - 0.1228, - 0.066746, - -0.0091897, - 0.0036473, - -0.015606, - -0.0079599, - -0.0182, - -0.042659, - 0.035861, - -0.028074, - -0.024945, - -0.020183, - -0.023615, - 0.042708, - 0.040519, - 0.019456, - -0.077146, - -0.029493, - 0.025878, - 0.019464, - 0.054909, - 0.096214, - 0.051526, - 0.074344, - -0.045314, - -0.043695, - 0.062321, - -0.025913, - -0.018423, - 0.035619, - -0.10144, - -0.038312, - 0.0077546, - -0.0038458, - -0.011573, - -0.01779, - 0.024106, - -0.0021825, - -0.036556, - 0.077173, - -0.0030722, - -0.0068033, - 0.018655, - 0.01469, - -0.0011155, - -0.021829, - 0.03113, - -0.049165, - -0.093181, - 0.069945, - 0.013727, - -0.0028102, - 0.0064726, - -0.014565, - 0.035821, - 0.046528, - 0.00081763, - 0.032462, - 0.0033071, - -0.035609, - 0.044639, - -0.035513, - -0.001427, - -0.055351, - 0.042114, - 0.090257, - 0.018859, - 0.05316, - -0.010477, - -0.060089, - -0.0019892, - -0.0018355, - 0.031159, - 0.020882, - -0.11731, - -0.0073321, - 0.11249, - 0.05441, - -0.019828, - 0.054036, - 0.013526, - -0.034764, - -0.00056383, - 0.080335, - 0.0051424, - 0.011112, - 0.015564, - -0.066789, - -0.013338, - -0.12141, - 0.0086217, - 0.021295, - -0.0068583, - -0.0078643, - -0.036331, - -0.012593, - 0.071668, - -0.033686, - -0.025489, - 0.021022, - -0.05114, - 0.036148, - 0.050797, - -0.084029, - -0.021707, - 0.012497, - -0.024905, - -0.001367, - 0.066948, - -0.0043787, - 0.00029745, - -0.022431, - 0.059288, - -0.018687, - 0.0076023, - 0.053991, - 0.0088113, - -0.001441, - -0.071873, - -0.045191, - -0.018596, - -0.12137, - -0.00077138, - 0.059109, - 0.035939, - -0.028557, - 0.041404, - -0.011443, - -0.11642, - 0.019586, - 0.011622, - 0.010384, - 0.05554, - 0.055038, - -0.025443, - -0.040549, - -0.054541, - -0.016827, - -0.10638, - 0.098619, - -0.018121, - -0.056897, - -0.034922, - 0.028469, - 0.013934, - -0.033062, - 0.03401, - 0.020726, - 0.021714, - -0.071477, - 0.0084245, - 0.010507, - -0.019442, - 0.00115, - 0.012215, - 0.041723, - 0.027588, - -0.020581, - 0.061538, - -0.02457, - 0.057921, - -0.092197, - -0.043175, - 0.029732, - -0.0092291, - -0.0097226, - 0.016438, - -0.017549, - -0.041653, - 0.029954, - -0.0007047, - -0.046326, - -0.0030066, - -0.0083431, - 0.039224, - 0.031795, - -0.092749, - -0.0017633, - 0.040788, - 0.021494, - 0.059043, - -0.034669, - 0.030049, - -0.036349, - 0.040374, - -0.028548, - -0.0010219, - -0.067577, - 0.0062017 - ], - "film-making": [ - -0.014268, - -0.051272, - -0.0087052, - 0.028278, - -0.010612, - 0.00037559, - 0.022968, - -0.08738, - 0.023273, - -0.039016, - 0.022996, - -0.061534, - 0.059366, - -0.045891, - -0.029083, - 0.0084084, - 0.074416, - -0.0006583, - -0.0039501, - 0.01287, - 0.023876, - 0.010184, - -0.026942, - 0.050719, - -0.026779, - 0.032343, - 0.02302, - 0.023928, - -0.011703, - 0.073916, - -0.046386, - 0.020074, - -0.026469, - -0.070575, - 0.036444, - 0.053343, - 0.021817, - 0.015794, - -0.016241, - 0.019775, - -0.06271, - -0.084232, - 0.0059113, - 0.0083102, - 0.0038824, - -0.039711, - 0.046775, - -0.038498, - -0.0049506, - -0.010557, - -0.017854, - 0.009727, - 0.01354, - 0.090168, - -0.059037, - -0.0074484, - 0.012025, - -0.042987, - -0.036286, - 0.016061, - 0.081539, - -0.0071157, - 0.054057, - -0.0011784, - 0.030741, - -0.025851, - -0.000080569, - -0.038032, - -0.00054015, - 0.024437, - 0.024981, - -0.039682, - 0.0010124, - 0.069967, - 0.048604, - -0.00033263, - 0.058382, - 0.023352, - 0.046392, - 0.019145, - -0.016734, - 0.014726, - -0.026594, - 0.055796, - -0.032102, - 0.021191, - 0.0029887, - -0.0048005, - -0.012209, - 0.014733, - 0.018455, - 0.070878, - -0.07641, - 0.013611, - -0.00033839, - 0.046535, - -0.027084, - 0.049638, - -0.0093444, - -0.0018863, - 0.015216, - -0.055894, - -0.022271, - 0.019569, - -0.01031, - -0.066881, - 0.0008095, - 0.038078, - -0.063354, - 0.042405, - -0.024146, - 0.043466, - 0.033348, - 0.023942, - -0.019116, - 0.075248, - 0.022991, - -0.0036643, - -0.0538, - 0.068962, - 0.0029786, - -0.03393, - -0.087355, - 0.014521, - 0.023093, - -0.0022522, - -0.012222, - -0.044874, - 0.0063142, - 0.11582, - -0.035751, - 0.0068697, - -0.009489, - -0.067995, - 0.016969, - -0.01335, - -0.0024447, - 0.012644, - 0.03149, - 0.018163, - 0.0030036, - -0.035474, - 0.1114, - 0.054456, - -0.0036741, - -0.045506, - -0.089684, - -0.083937, - -0.0072667, - -0.051793, - 0.059521, - 0.036325, - -0.023812, - -0.0934, - -0.060326, - 0.039872, - 0.031115, - 0.080053, - 0.03307, - -0.023513, - 0.03913, - -0.018457, - -0.083079, - 0.045996, - -0.11886, - 0.054644, - -0.013077, - -0.01589, - -0.027091, - 0.045654, - 0.09794, - 0.040033, - -0.021112, - 0.041754, - 0.0015585, - 0.028833, - -0.0043676, - 0.043476, - -0.023977, - -0.025397, - -0.037232, - -0.045552, - -0.019458, - -0.04037, - 0.0070524, - -0.073354, - 0.07054, - 0.074384, - 0.010744, - -0.010275, - -0.049836, - 0.079955, - 0.0013111, - -0.053254, - -0.051577, - 0.052821, - 0.02492, - -0.0074235, - -0.0014613, - 0.043829, - -0.14217, - 0.015934, - 0.0075587, - -0.0067618, - 0.032153, - 0.055125, - 0.011245, - 0.051659, - -0.032443, - 0.038788, - 0.059811, - 0.034039, - 0.012764, - 0.0061718, - -0.021028, - 0.011085, - 0.024797, - -0.019391, - -0.040326, - -0.028086, - -0.02546, - -0.00065296, - -0.010396, - 0.088131, - -0.047944, - -0.066685, - 0.060898, - 0.087416, - 0.0032075, - -0.044263, - 0.025983, - -0.023135, - -0.041652, - 0.042939, - 0.041631, - -0.01435, - 0.016495, - -0.064918, - 0.004096, - -0.011926, - 0.01004, - -0.011591, - 0.039986, - 0.017928, - -0.037027, - 0.0021243, - -0.010793, - -0.026742, - 0.0083414, - 0.023774, - 0.037037, - -0.047973, - -0.022738, - 0.040281, - -0.0115, - 0.050962, - -0.043407, - 0.024697, - 0.0037016, - 0.043206, - 0.019554, - 0.036393, - 0.057972, - 0.060804, - 0.04101, - 0.00089777, - -0.043562, - 0.043968, - -0.024879, - -0.01045, - 0.015575, - 0.044073, - -0.066544, - -0.0056047, - -0.0042007, - -0.0053114, - 0.057212, - 0.085767, - -0.022935, - -0.021435, - 0.04735, - 0.011698, - -0.010635, - -0.037007, - -0.0087915, - -0.029612, - 0.0090922, - -0.012912, - 0.051857, - -0.019727, - 0.026835, - -0.030236, - -0.0088322, - -0.01317, - -0.063607, - 0.087539, - -0.0075627, - 0.009732, - -0.007241, - -0.026781 - ], - "aristocracy": [ - 0.015465, - -0.022238, - 0.099912, - 0.0024235, - -0.029494, - 0.019463, - -0.010287, - -0.065335, - 0.023615, - 0.030066, - 0.05063, - -0.029044, - 0.018762, - -0.043063, - -0.0214, - 0.0061333, - 0.064286, - 0.016397, - 0.03212, - 0.0081001, - -0.052645, - -0.041031, - -0.04444, - 0.053653, - 0.039148, - -0.01429, - 0.0036268, - 0.024861, - 0.038312, - -0.036206, - -0.033267, - -0.033212, - -0.036478, - 0.021431, - -0.0048855, - 0.01356, - 0.015854, - 0.017214, - 0.019211, - 0.056699, - -0.000096708, - -0.073702, - 0.00015033, - 0.0062921, - -0.047856, - 0.011461, - -0.020587, - 0.016821, - -0.041993, - -0.033482, - 0.0053137, - -0.0080856, - -0.0014391, - -0.017185, - -0.0323, - -0.038032, - 0.031949, - 0.038614, - -0.015103, - 0.00642, - 0.041259, - -0.03327, - 0.040383, - 0.046886, - -0.007698, - 0.038699, - -0.062455, - 0.0026538, - 0.048096, - -0.077439, - 0.031939, - -0.0042114, - 0.02785, - -0.015235, - -0.016523, - 0.030214, - -0.024094, - -0.00036345, - -0.023307, - 0.040798, - -0.028822, - 0.05344, - 0.00035395, - 0.075359, - -0.028766, - -0.046944, - -0.0013443, - -0.02816, - -0.004793, - 0.06576, - -0.013654, - 0.045806, - -0.05298, - -0.02352, - 0.018268, - 0.042818, - -0.034019, - -0.010503, - 0.062527, - 0.055946, - 0.017101, - 0.023725, - -0.00008427, - -0.074813, - -0.0000095237, - -0.058419, - 0.044979, - -0.036188, - -0.015339, - 0.026243, - 0.011658, - 0.099467, - 0.04724, - 0.013313, - -0.044931, - 0.016604, - 0.033219, - 0.017656, - -0.040788, - 0.023795, - 0.026252, - -0.062369, - -0.0036543, - -0.049413, - 0.047976, - 0.010751, - 0.021529, - -0.074425, - -0.094283, - 0.082431, - 0.0047982, - -0.0010914, - 0.080993, - 0.014827, - -0.001943, - 0.028459, - -0.083919, - 0.03066, - -0.029722, - -0.044649, - 0.0033886, - -0.076516, - -0.039918, - 0.014415, - 0.014975, - -0.040562, - 0.0042865, - 0.036911, - -0.022076, - -0.022854, - 0.081735, - 0.018293, - -0.013979, - 0.010216, - 0.023999, - 0.016018, - -0.00089563, - 0.016747, - -0.0059188, - -0.010823, - 0.047885, - -0.0141, - -0.050807, - 0.022077, - 0.0074921, - 0.053574, - -0.022386, - 0.024631, - 0.012037, - -0.027062, - -0.0057308, - -0.0037012, - -0.02644, - 0.0070747, - -0.040116, - 0.02472, - 0.0105, - 0.019115, - -0.0022306, - 0.03716, - -0.00068457, - 0.023797, - -0.0076438, - 0.012572, - 0.025871, - -0.0061441, - -0.041502, - 0.081512, - -0.002496, - 0.0050596, - 0.0057541, - 0.072024, - -0.058761, - -0.0096352, - -0.023026, - 0.01495, - -0.00599, - 0.036024, - -0.014693, - 0.03351, - -0.092361, - 0.00072142, - 0.011562, - -0.0086547, - -0.027066, - 0.058408, - 0.02554, - -0.025017, - -0.0080228, - -0.0082501, - 0.074923, - -0.0036899, - 0.039228, - 0.012402, - 0.007666, - 0.056492, - -0.040036, - 0.071131, - 0.033468, - -0.031735, - 0.03344, - -0.047536, - 0.010737, - 0.071315, - -0.042235, - -0.0068121, - 0.052797, - 0.055255, - -0.033914, - -0.078493, - -0.0047055, - 0.0036809, - -0.064626, - 0.0069841, - 0.036362, - 0.038833, - -0.054136, - -0.031999, - -0.025503, - -0.035694, - 0.024688, - 0.020916, - -0.0050935, - -0.0067823, - 0.040613, - -0.0090335, - -0.029856, - -0.02489, - 0.00037247, - -0.055291, - 0.0088492, - 0.0075696, - -0.023182, - 0.055436, - 0.012751, - 0.023726, - -0.065262, - 0.028287, - 0.043318, - -0.0022902, - -0.049462, - 0.041355, - 0.02895, - 0.0074146, - 0.037227, - 0.013401, - -0.041983, - 0.0094143, - -0.044782, - 0.0089062, - -0.049048, - 0.061405, - -0.065847, - -0.021179, - 0.02724, - -0.0099273, - -0.0041615, - -0.00024512, - -0.045499, - 0.0059563, - 0.04662, - 0.010265, - 0.042239, - -0.01742, - 0.00044859, - 0.04244, - 0.017439, - -0.035702, - 0.0092385, - 0.084529, - -0.022932, - 0.016268, - 0.00038865, - 0.0046943, - -0.054532, - 0.040709, - -0.050019, - 0.030648, - -0.028268, - -0.022754 - ], - "home-based": [ - -0.01289, - -0.042933, - -0.034316, - -0.0090569, - -0.030461, - 0.0012568, - 0.024509, - -0.077539, - -0.012115, - -0.0030762, - -0.012797, - 0.010775, - -0.042672, - -0.039411, - -0.0047823, - 0.038353, - 0.11746, - 0.0091119, - 0.06279, - -0.0098335, - 0.011632, - 0.040458, - 0.017397, - 0.037883, - 0.0089897, - 0.0091421, - -0.0014468, - 0.043381, - 0.022978, - 0.020141, - -0.058226, - -0.033485, - -0.078953, - -0.043884, - 0.068394, - 0.020699, - 0.014899, - -0.013938, - 0.075992, - 0.00056946, - -0.026941, - -0.11103, - -0.029992, - -0.011516, - -0.037967, - -0.025615, - 0.0015828, - 0.059154, - -0.0057412, - -0.0025979, - -0.045653, - 0.025787, - -0.028699, - 0.053705, - 0.018642, - -0.021294, - -0.028917, - -0.051665, - -0.025328, - -0.031002, - -0.036601, - -0.022777, - 0.070755, - 0.034027, - 0.026273, - -0.030337, - -0.081278, - -0.025556, - -0.044435, - -0.081706, - -0.043553, - 0.033547, - 0.063172, - -0.0076696, - 0.0088089, - -0.024637, - -0.020945, - -0.040367, - 0.022063, - -0.0094864, - 0.0084688, - -0.016618, - -0.013016, - 0.03049, - -0.040093, - -0.03908, - -0.034317, - -0.010589, - -0.016315, - -0.0024096, - 0.0071589, - 0.0382, - -0.11189, - 0.010515, - 0.0093274, - 0.093997, - -0.048639, - 0.021269, - -0.027119, - -0.074994, - 0.024158, - -0.0083085, - 0.002313, - -0.026292, - -0.0018639, - -0.058472, - -0.013058, - 0.019259, - -0.029775, - -0.04417, - -0.0078417, - 0.078514, - 0.048296, - 0.074402, - -0.0020161, - 0.019804, - -0.0049479, - -0.029552, - -0.041507, - -0.020648, - -0.082609, - 0.038463, - 0.012159, - -0.04045, - 0.048791, - -0.036591, - 0.0012987, - -0.0052574, - 0.076, - 0.019084, - 0.00612, - 0.040113, - 0.018194, - -0.047402, - -0.054116, - -0.024952, - 0.080739, - 0.0069687, - 0.013168, - -0.0094758, - 0.075929, - 0.038539, - 0.042627, - 0.027656, - -0.0072642, - -0.0049408, - -0.038958, - 0.021147, - -0.040359, - 0.02054, - 0.097706, - 0.11292, - 0.0080981, - -0.031188, - 0.027469, - 0.033345, - -0.047087, - 0.058773, - 0.029421, - -0.018707, - 0.037006, - 0.031866, - -0.035847, - 0.051964, - 0.01714, - 0.018214, - 0.052665, - -0.032465, - -0.011838, - -0.0041048, - 0.036807, - 0.051368, - -0.0024218, - 0.048271, - -0.0036697, - 0.02772, - -0.023282, - 0.044238, - -0.024166, - 0.04947, - 0.062601, - -0.016264, - -0.025381, - 0.017183, - 0.00030176, - -0.010976, - 0.024928, - 0.10529, - -0.079406, - 0.021444, - 0.033705, - 0.057052, - 0.039118, - -0.05877, - 0.011227, - 0.0025434, - 0.049298, - 0.064018, - 0.0017064, - -0.011155, - -0.12763, - 0.067891, - -0.0399, - 0.01484, - -0.010706, - 0.01214, - 0.029622, - -0.0018045, - 0.01808, - -0.0086883, - 0.1294, - 0.0050788, - 0.021233, - 0.010144, - -0.047542, - 0.023992, - -0.013876, - -0.017645, - 0.0042228, - 0.016844, - 0.033986, - -0.031036, - 0.013407, - 0.073611, - -0.035241, - -0.08407, - -0.0095503, - 0.033421, - 0.0024707, - -0.058924, - 0.0049044, - -0.019599, - -0.02955, - -0.03144, - 0.036892, - 0.042114, - 0.047491, - 0.017023, - 0.0059753, - 0.017296, - 0.053829, - -0.0012421, - 0.099448, - -0.047151, - -0.13736, - 0.009666, - -0.0083799, - -0.010439, - 0.039154, - -0.024934, - -0.024255, - 0.0023416, - 0.006041, - 0.0024857, - -0.014462, - 0.0061895, - -0.030657, - -0.042901, - -0.050701, - -0.011251, - 0.0042454, - -0.0050385, - 0.0063113, - 0.047731, - 0.042454, - 0.0090241, - -0.026875, - -0.018014, - -0.0076725, - 0.054441, - -0.10858, - 0.054725, - -0.077996, - -0.012407, - -0.059577, - -0.043916, - 0.022258, - -0.011955, - -0.022231, - 0.07389, - 0.11218, - 0.015192, - 0.0038998, - 0.038499, - -0.043011, - 0.013174, - 0.041664, - -0.032095, - -0.023191, - -0.0089844, - 0.03974, - 0.025506, - -0.00080294, - 0.012353, - -0.010096, - 0.0333, - -0.0036836, - -0.00033706, - 0.0057512, - 0.0061789 - ], - "weathering": [ - 0.0095271, - 0.034437, - 0.020433, - 0.020511, - 0.033555, - -0.044326, - -0.035157, - -0.07724, - 0.055251, - 0.022548, - -0.022434, - -0.030627, - -0.047771, - 0.040553, - -0.0054255, - -0.0065334, - 0.054615, - 0.013657, - 0.007561, - 0.019308, - 0.025869, - -0.024858, - -0.022892, - 0.068032, - 0.042783, - -0.025765, - 0.013505, - 0.0056896, - 0.074633, - -0.00014347, - -0.028206, - -0.010624, - 0.028892, - -0.067037, - 0.0083809, - 0.035702, - -0.016324, - -0.086085, - -0.056211, - 0.027179, - 0.020268, - -0.094391, - -0.035069, - 0.058906, - -0.017943, - 0.082142, - -0.022118, - -0.0052422, - -0.092546, - -0.018301, - -0.0029683, - -0.021023, - 0.033393, - 0.058885, - -0.055283, - -0.024764, - 0.1152, - -0.022995, - 0.02563, - 0.01093, - 0.00093291, - 0.014744, - -0.025906, - -0.033062, - -0.02649, - -0.040523, - -0.024068, - 0.0048398, - 0.099671, - 0.030589, - 0.0084508, - 0.050926, - 0.031011, - -0.013456, - -0.013316, - -0.045104, - -0.097511, - -0.053767, - -0.011379, - -0.072107, - -0.001266, - -0.0038332, - -0.0031161, - 0.030587, - 0.091097, - 0.022207, - 0.032719, - 0.0041537, - -0.021222, - 0.014613, - 0.0043593, - 0.0060694, - -0.075177, - 0.0051937, - 0.0051765, - -0.0040467, - -0.035199, - 0.080767, - 0.11527, - -0.040704, - 0.021721, - -0.018116, - 0.071271, - 0.075698, - 0.031339, - -0.053277, - 0.0095975, - -0.022044, - 0.086528, - -0.016082, - 0.033396, - -0.0084637, - 0.018719, - 0.063421, - -0.041228, - -0.095471, - -0.016281, - 0.05742, - -0.029736, - 0.019431, - 0.010352, - -0.033164, - 0.016455, - 0.011232, - 0.067728, - 0.0088053, - 0.021379, - -0.045093, - 0.019066, - 0.1153, - 0.076565, - -0.01431, - -0.018645, - 0.018286, - 0.0025445, - 0.062735, - 0.029195, - -0.015376, - 0.052556, - -0.023513, - -0.0045027, - -0.001593, - -0.063587, - -0.032656, - 0.018794, - 0.010928, - 0.067693, - -0.041168, - -0.017166, - 0.00729, - 0.045678, - 0.033201, - 0.041169, - -0.059408, - 0.038374, - 0.013462, - -0.0030466, - -0.0079793, - -0.00051397, - -0.058351, - 0.0035626, - -0.041722, - -0.11469, - 0.030422, - 0.013751, - 0.035492, - -0.026258, - -0.050796, - 0.051201, - 0.062209, - 0.025562, - 0.016453, - -0.02395, - -0.036857, - 0.047906, - 0.042284, - 0.025748, - 0.0079679, - -0.038964, - 0.0072968, - -0.0077247, - 0.03456, - -0.018955, - -0.0054123, - -0.044979, - -0.031739, - 0.02591, - 0.11438, - 0.013983, - 0.012748, - 0.033485, - -0.057248, - -0.014612, - -0.021379, - -0.056408, - 0.0052726, - 0.0056295, - -0.048796, - 0.0080095, - -0.055937, - -0.15402, - -0.04106, - 0.051972, - 0.025331, - 0.022657, - 0.05682, - 0.020182, - 0.026251, - 0.021146, - -0.0010692, - 0.055485, - 0.05577, - 0.079354, - 0.035176, - 0.07248, - 0.027669, - -0.022282, - 0.017072, - 0.004221, - -0.12382, - -0.030357, - 0.048324, - -0.0030054, - 0.065285, - -0.065762, - -0.002971, - 0.025227, - 0.063173, - -0.081325, - 0.011115, - 0.048521, - -0.014851, - -0.038089, - -0.01684, - 0.014791, - 0.038749, - 0.013947, - 0.026333, - 0.037305, - -0.05837, - 0.022013, - 0.033637, - 0.028458, - 0.010911, - -0.058338, - 0.040539, - 0.0080276, - -0.017951, - -0.020138, - 0.0028112, - 0.011481, - 0.0038012, - 0.036192, - 0.0011917, - 0.010729, - 0.055455, - 0.008941, - 0.044568, - 0.027964, - -0.00025581, - 0.032149, - 0.03155, - -0.030389, - 0.060865, - 0.037533, - -0.036113, - 0.016787, - 0.031822, - 0.051977, - 0.017663, - -0.024877, - 0.043276, - -0.10498, - -0.0062529, - -0.0037988, - -0.045123, - 0.0094189, - 0.0073936, - 0.042311, - -0.0075806, - 0.078791, - 0.018603, - 0.060508, - 0.036149, - 0.014863, - -0.042919, - 0.014991, - 0.021281, - -0.12568, - -0.035288, - -0.034177, - 0.062212, - -0.11607, - 0.035234, - -0.038156, - -0.023057, - -0.013623, - -0.018995, - 0.037235, - -0.069225 - ], - "customer": [ - -0.0067979, - 0.015005, - -0.060233, - -0.067464, - -0.017809, - 0.0066085, - -0.024048, - -0.082355, - 0.067504, - 0.035476, - 0.030141, - -0.027285, - -0.06285, - -0.03332, - -0.046524, - 0.053512, - 0.065044, - 0.020739, - 0.0617, - 0.061232, - -0.023822, - 0.038144, - -0.01194, - 0.08325, - -0.00017081, - 0.0069075, - 0.0032502, - 0.0076951, - 0.0066417, - -0.014847, - -0.031085, - -0.0037683, - -0.033935, - -0.029013, - -0.022887, - 0.049852, - -0.020799, - 0.086879, - 0.0025597, - -0.02566, - 0.014254, - -0.086622, - 0.00812, - -0.023391, - -0.019183, - -0.003167, - 0.064981, - -0.051934, - -0.064138, - 0.049058, - 0.047613, - -0.037876, - 0.036908, - -0.010489, - 0.034842, - -0.0012396, - -0.0039046, - 0.042221, - -0.029171, - 0.014562, - -0.04979, - 0.032888, - 0.088532, - -0.0025528, - 0.021145, - 0.011225, - -0.013736, - -0.010989, - 0.016586, - -0.043994, - 0.033157, - -0.017489, - 0.08921, - -0.042689, - -0.025643, - 0.0031835, - 0.035218, - -0.0094476, - -0.0045528, - -0.046748, - -0.01144, - 0.0579, - -0.009671, - 0.044375, - -0.04269, - -0.062223, - 0.0062429, - -0.0015138, - 0.031824, - -0.043225, - 0.064016, - 0.034213, - -0.089227, - -0.017283, - -0.005894, - 0.065931, - 0.057138, - -0.048404, - 0.01877, - -0.018486, - -0.046455, - 0.018347, - -0.068365, - 0.04808, - 0.01944, - -0.089024, - -0.025727, - 0.025133, - -0.0072075, - -0.035591, - -0.0034861, - 0.081615, - 0.047446, - 0.028044, - -0.013684, - -0.092276, - -0.08733, - 0.07629, - -0.051795, - -0.039105, - -0.024624, - -0.0061664, - 0.022952, - 0.0023188, - 0.06106, - 0.032642, - 0.031085, - -0.072723, - 0.10037, - 0.065158, - -0.0093633, - 0.0088969, - -0.04716, - -0.052007, - -0.0030976, - -0.015606, - 0.019655, - 0.052557, - -0.021969, - -0.027667, - -0.017533, - -0.020528, - -0.021836, - -0.066856, - -0.041445, - -0.045627, - 0.015429, - 0.0031155, - 0.030253, - 0.049371, - 0.018153, - 0.086197, - -0.014815, - -0.092856, - -0.044921, - -0.023191, - -0.026344, - -0.047025, - -0.039021, - 0.0065996, - 0.057363, - 0.035324, - -0.028537, - 0.018208, - 0.1169, - 0.013791, - 0.0022845, - -0.05229, - 0.0001918, - 0.037801, - -0.029059, - 0.010156, - 0.0078453, - 0.036497, - -0.0075521, - 0.057394, - -0.036708, - -0.015136, - -0.030455, - -0.019897, - 0.0016252, - -0.047794, - -0.016115, - -0.0023627, - -0.01024, - -0.10375, - -0.076696, - 0.066144, - 0.015893, - -0.0033023, - -0.041117, - 0.039884, - 0.025655, - -0.017671, - 0.023853, - -0.031084, - -0.019457, - -0.081957, - 0.055266, - 0.053504, - -0.14053, - 0.071868, - -0.0084132, - -0.017064, - 0.0086535, - -0.018604, - -0.030952, - -0.023379, - -0.02293, - -0.026552, - 0.086963, - -0.008754, - -0.014497, - -0.053441, - -0.062185, - 0.0010134, - 0.0032284, - -0.043746, - 0.025761, - -0.02525, - 0.065629, - -0.027068, - 0.078778, - 0.089475, - 0.042929, - -0.039954, - 0.025188, - 0.031232, - 0.011525, - -0.035045, - 0.015439, - -0.053594, - -0.059122, - -0.035417, - -0.019988, - 0.045266, - 0.022107, - 0.0058348, - 0.0143, - -0.048196, - 0.025675, - -0.04157, - 0.021074, - -0.021984, - -0.022086, - -0.0058138, - 0.014216, - -0.032754, - -0.024265, - -0.037566, - 0.039666, - -0.0377, - -0.015681, - 0.067437, - 0.043171, - -0.018015, - -0.013819, - 0.048825, - -0.013925, - 0.010632, - -0.056474, - 0.057786, - -0.043697, - -0.020105, - 0.011781, - -0.070954, - 0.029397, - 0.057865, - 0.0078113, - -0.020481, - -0.001782, - 0.055315, - -0.10921, - -0.039995, - 0.035636, - -0.015141, - -0.00085055, - 0.089254, - -0.053649, - -0.0094254, - 0.086517, - -0.014605, - -0.036952, - 0.044691, - 0.018741, - -0.023333, - -0.078399, - -0.062697, - -0.030725, - -0.051906, - -0.027577, - 0.074531, - -0.039489, - 0.015272, - -0.043599, - -0.05017, - -0.0020529, - 0.001565, - -0.073148, - -0.04836 - ], - "symbology": [ - -0.045721, - -0.034408, - 0.080209, - -0.030685, - -0.02142, - -0.10503, - 0.026014, - -0.10546, - 0.0039641, - 0.013925, - 0.0558, - -0.037247, - -0.023835, - 0.042727, - 0.0098917, - -0.01632, - 0.065587, - 0.018387, - 0.046494, - 0.018168, - 0.0020553, - 0.085751, - 0.027678, - 0.063308, - -0.0094834, - -0.0067782, - -0.02127, - 0.036599, - 0.022358, - 0.029555, - -0.022611, - 0.015591, - 0.089401, - -0.088427, - 0.023167, - 0.010776, - -0.001324, - 0.086638, - 0.022312, - -0.028265, - 0.025391, - -0.10622, - 0.05239, - 0.0008768, - -0.026795, - -0.041433, - -0.026088, - -0.030566, - 0.025206, - 0.01869, - -0.052531, - -0.030811, - -0.046746, - -0.023518, - -0.0053006, - 0.1028, - 0.065861, - -0.066907, - -0.022062, - -0.066705, - -0.017724, - -0.13189, - 0.094965, - -0.035943, - 0.01254, - -0.0075879, - 0.025194, - 0.03123, - 0.068791, - 0.046626, - -0.012273, - 0.043891, - -0.036237, - 0.0090917, - -0.019442, - -0.041406, - -0.0099932, - -0.052854, - 0.0096533, - -0.012894, - -0.047379, - 0.024024, - -0.057734, - 0.047866, - -0.04673, - -0.006874, - 0.018076, - -0.0041402, - -0.0053314, - -0.048918, - -0.034849, - -0.0054286, - -0.037631, - 0.018453, - 0.062983, - 0.04652, - -0.028503, - -0.021658, - 0.030464, - 0.02235, - 0.018177, - 0.05293, - 0.020682, - 0.0083882, - -0.025513, - -0.054514, - -0.027105, - 0.050216, - -0.046543, - 0.016063, - 0.01874, - 0.079513, - 0.060791, - -0.064111, - -0.011228, - 0.016, - -0.091701, - 0.01237, - -0.050344, - 0.0016248, - 0.035683, - 0.013372, - -0.13559, - -0.051831, - 0.092038, - 0.022939, - -0.044234, - 0.0088157, - -0.01157, - 0.14555, - -0.030725, - -0.002911, - 0.0031668, - 0.0048662, - 0.01179, - -0.00034833, - -0.0079643, - 0.027533, - 0.0776, - -0.014098, - -0.032211, - -0.023674, - -0.048971, - 0.07938, - -0.060343, - -0.030764, - -0.027006, - 0.034422, - -0.093025, - -0.056043, - 0.024646, - 0.042594, - 0.0027465, - -0.069033, - 0.034604, - 0.086382, - -0.022287, - -0.0053911, - 0.013706, - 0.057332, - 0.025724, - -0.035833, - -0.09645, - -0.035311, - 0.0072726, - -0.069322, - 0.0036969, - 0.040514, - 0.046061, - -0.0050921, - 0.011678, - -0.049378, - -0.014243, - -0.015487, - -0.03218, - 0.03576, - 0.030697, - 0.05816, - -0.058023, - -0.033679, - -0.065665, - 0.063046, - -0.0051511, - -0.027142, - 0.021462, - 0.0023229, - -0.026505, - 0.10013, - 0.061282, - -0.038442, - -0.015371, - 0.069518, - -0.032225, - 0.009247, - 0.05235, - 0.0053949, - -0.10488, - -0.015421, - -0.042846, - -0.014057, - -0.1174, - -0.02952, - 0.027697, - -0.017678, - -0.030464, - -0.031612, - -0.013073, - -0.065147, - -0.027172, - 0.003516, - 0.06163, - 0.049802, - 0.0029698, - 0.01191, - 0.032885, - 0.038584, - 0.028412, - -0.0052853, - -0.056224, - -0.0041854, - -0.031323, - -0.0099811, - 0.028782, - 0.093817, - 0.039111, - 0.0041055, - 0.065131, - 0.07932, - 0.052885, - 0.0018204, - -0.062785, - -0.029836, - -0.061905, - -0.022917, - 0.016875, - 0.013391, - 0.037729, - 0.042164, - 0.014157, - -0.0079017, - 0.03829, - -0.0017992, - -0.066044, - -0.020431, - -0.0093464, - 0.018483, - -0.094944, - 0.020524, - -0.022647, - -0.030571, - 0.029275, - -0.080083, - -0.019622, - 0.011824, - 0.017088, - 0.025436, - 0.025023, - 0.0112, - 0.059263, - 0.01745, - 0.030465, - 0.0075221, - 0.0089166, - 0.022308, - 0.035865, - -0.059752, - 0.088939, - 0.014847, - -0.044614, - 0.014941, - 0.026449, - 0.087072, - -0.070556, - -0.05745, - 0.022884, - -0.015451, - 0.020697, - -0.00082204, - -0.022893, - -0.046348, - 0.073876, - -0.0014374, - 0.019857, - 0.013282, - -0.012327, - -0.11825, - -0.028142, - 0.032209, - -0.053447, - -0.04566, - -0.021976, - -0.043332, - -0.025674, - -0.045356, - 0.016002, - 0.056947, - 0.022705, - 0.0020408, - 0.028427, - 0.084753 - ], - "inclinations": [ - 0.017007, - 0.00050882, - 0.03128, - -0.015326, - -0.030172, - -0.015557, - -0.027992, - -0.072813, - -0.0023157, - 0.016031, - -0.024047, - -0.01992, - -0.010592, - 0.012276, - 0.017983, - -0.018876, - -0.011537, - 0.036967, - 0.01909, - 0.061805, - 0.025184, - 0.033862, - -0.018018, - 0.044101, - -0.040466, - 0.040346, - 0.010686, - -0.0079337, - 0.024254, - -0.031018, - -0.0093741, - -0.019634, - -0.0051545, - -0.041167, - 0.041128, - 0.013769, - -0.011388, - -0.029732, - 0.024061, - 0.037649, - -0.027296, - -0.059162, - -0.020686, - 0.011632, - -0.041338, - -0.021241, - 0.0052351, - -0.0074134, - 0.0088805, - -0.09412, - 0.0096602, - 0.016948, - -0.010317, - 0.056262, - -0.028147, - 0.0089119, - 0.049097, - 0.01641, - -0.017701, - 0.010408, - -0.00085361, - 0.020998, - 0.061015, - -0.035921, - 0.044298, - -0.033509, - -0.015142, - -0.0051222, - 0.018304, - -0.0066626, - 0.071105, - -0.0045356, - 0.056001, - -0.012276, - 0.0031533, - 0.025326, - -0.015497, - -0.020854, - -0.0055739, - -0.0062779, - -0.039963, - 0.030347, - -0.037739, - 0.046458, - 0.0063256, - 0.00048699, - 0.025531, - 0.067359, - -0.033805, - -0.039555, - 0.067601, - 0.00047429, - -0.051176, - -0.0097716, - 0.01865, - 0.020781, - -0.038146, - 0.033907, - -0.041493, - 0.016001, - 0.050619, - 0.045775, - 0.0005761, - -0.028452, - 0.06955, - -0.019339, - 0.019906, - -0.023661, - 0.0040136, - 0.034111, - -0.049903, - 0.034366, - 0.01143, - -0.011802, - 0.030722, - -0.0010261, - 0.018789, - 0.026593, - -0.039161, - 0.012411, - 0.025532, - -0.0071844, - 0.0013487, - -0.031848, - 0.10159, - -0.017972, - 0.010373, - -0.052739, - 0.030909, - 0.076827, - 0.026967, - 0.039651, - 0.075837, - 0.040798, - -0.033707, - -0.036373, - -0.027929, - 0.085281, - -0.0062639, - 0.052792, - 0.0081882, - -0.045112, - -0.035292, - 0.01617, - 0.050223, - 0.010346, - -0.0089612, - -0.0016183, - -0.006183, - 0.045182, - 0.011605, - 0.14209, - -0.037761, - 0.045342, - 0.010584, - 0.035358, - -0.036596, - -0.021637, - -0.047317, - -0.03867, - 0.030328, - 0.014181, - -0.031558, - -0.04207, - -0.0024011, - 0.013208, - 0.017026, - -0.027943, - -0.048484, - 0.027831, - -0.017259, - 0.012691, - 0.013184, - -0.033843, - -0.0099433, - 0.038373, - 0.038833, - 0.0068347, - 0.0016993, - -0.042206, - 0.037584, - -0.030406, - -0.05059, - 0.0011087, - 0.032483, - -0.051583, - 0.062456, - 0.088556, - 0.0054013, - 0.032682, - 0.051743, - 0.053562, - -0.026957, - -0.017192, - -0.01845, - 0.019732, - 0.017766, - -0.0022078, - -0.01025, - 0.013088, - -0.09177, - -0.014172, - 0.0048341, - -0.022597, - 0.0021913, - 0.030081, - 0.027787, - 0.018964, - 0.00041221, - 0.0082561, - 0.028093, - 0.0059521, - 0.0063629, - -0.048862, - 0.0062108, - 0.018938, - -0.026005, - -0.001331, - -0.086144, - -0.0043793, - -0.054765, - -0.00027583, - -0.014883, - 0.051217, - 0.07509, - 0.00051954, - 0.043064, - 0.11257, - 0.011996, - -0.03152, - -0.000049031, - -0.0096697, - -0.13799, - -0.019458, - 0.044159, - 0.015384, - -0.000018114, - -0.031917, - -0.0395, - 0.087273, - 0.010787, - 0.01446, - -0.0089773, - 0.032316, - 0.0033293, - -0.0096579, - -0.017907, - -0.081178, - -0.026243, - -0.017292, - 0.063328, - -0.056737, - -0.018724, - -0.051171, - 0.010672, - 0.0045429, - -0.010882, - 0.010098, - -0.012585, - 0.023377, - 0.025635, - 0.0054274, - -0.030578, - -0.036381, - -0.042908, - -0.0053954, - -0.048929, - 0.10305, - -0.044729, - 0.068083, - -0.0059573, - 0.074715, - -0.058751, - -0.03777, - 0.081861, - -0.024, - -0.044818, - 0.0027765, - 0.0018415, - 0.0057733, - 0.016211, - 0.020986, - 0.065178, - -0.055294, - 0.0085854, - 0.02438, - -0.058047, - -0.0024381, - 0.027364, - 0.023515, - -0.017187, - 0.011096, - -0.018257, - 0.033281, - 0.0012666, - 0.038589, - -0.012817, - 0.0072361, - -0.0023618, - 0.025532 - ], - "animals": [ - -0.051915, - -0.016522, - 0.0257, - -0.02537, - -0.034311, - 0.0010875, - -0.02513, - -0.094948, - 0.074489, - 0.0016485, - 0.01773, - -0.035126, - 0.048559, - -0.048835, - 0.034618, - -0.048738, - 0.050236, - 0.014672, - 0.029028, - 0.014646, - 0.070747, - -0.070478, - 0.050785, - 0.04727, - 0.03722, - -0.039191, - -0.010717, - 0.064466, - 0.13722, - 0.053081, - -0.011884, - -0.010643, - 0.042441, - 0.038295, - 0.037888, - 0.015737, - 0.042779, - -0.14037, - 0.047973, - 0.024365, - 0.0093591, - -0.081037, - -0.030907, - 0.045463, - 0.020398, - -0.048872, - 0.032823, - -0.0072491, - -0.0040721, - -0.084347, - -0.0073641, - 0.0906, - 0.024494, - -0.05081, - -0.07941, - -0.018455, - 0.0097326, - 0.0078889, - -0.04, - -0.024712, - -0.0011022, - -0.062827, - 0.13967, - -0.0061119, - 0.041987, - -0.0014049, - 0.024126, - -0.060855, - 0.01654, - -0.01291, - 0.031536, - -0.0092981, - 0.094065, - -0.0057, - -0.064045, - 0.079728, - -0.028143, - -0.029951, - -0.043818, - -0.019677, - 0.021685, - -0.00069322, - 0.03658, - 0.041016, - 0.062001, - -0.046036, - 0.018491, - -0.020231, - 0.037207, - -0.010343, - -0.056973, - -0.0040129, - -0.082418, - 0.028522, - -0.011081, - 0.03845, - 0.045612, - 0.094524, - 0.097993, - 0.01059, - -0.024164, - -0.0021434, - 0.02513, - 0.060194, - 0.051867, - -0.054429, - -0.068926, - -0.0014096, - 0.0029711, - 0.014783, - 0.014647, - 0.1301, - 0.059514, - 0.036255, - 0.023469, - 0.055319, - -0.013859, - 0.028766, - -0.063621, - -0.033661, - -0.010814, - 0.094865, - -0.01629, - -0.098878, - 0.075587, - 0.076345, - -0.014641, - -0.084412, - -0.018756, - 0.040777, - 0.031153, - 0.092317, - 0.0025585, - 0.018707, - 0.059802, - -0.016731, - -0.043533, - 0.040682, - 0.0086059, - 0.042003, - -0.11772, - 0.0053992, - 0.02443, - 0.050302, - 0.080103, - -0.047436, - -0.0078118, - 0.029073, - -0.018369, - -0.086924, - 0.036464, - 0.072913, - -0.047871, - -0.030404, - -0.0027971, - 0.0015126, - -0.050103, - 0.00178, - 0.018064, - -0.045399, - 0.016932, - -0.03966, - 0.023642, - 0.037571, - 0.092269, - 0.016389, - -0.0065441, - 0.041712, - -0.0039124, - -0.025009, - 0.012043, - -0.060646, - 0.079757, - 0.016238, - -0.053885, - 0.069384, - 0.0069737, - 0.076114, - -0.018903, - -0.043174, - 0.068575, - 0.020092, - -0.023919, - 0.017395, - -0.04366, - -0.10143, - 0.10705, - 0.094083, - -0.024598, - -0.038421, - 0.032481, - 0.052494, - -0.11643, - -0.065151, - -0.046349, - 0.036281, - -0.05244, - 0.041385, - 0.010933, - 0.030168, - -0.1351, - 0.11185, - -0.017655, - -0.11173, - 0.031037, - 0.036604, - -0.031082, - -0.066707, - 0.039122, - -0.063885, - 0.060547, - -0.041152, - 0.070115, - 0.024906, - 0.040611, - 0.020695, - 0.048245, - -0.0084915, - -0.039387, - 0.00085841, - -0.036993, - 0.02218, - 0.011081, - 0.097707, - 0.02575, - 0.0020119, - -0.0024112, - 0.043633, - -0.0074077, - -0.040408, - -0.059012, - 0.0087689, - -0.11117, - -0.065457, - 0.043712, - -0.032238, - 0.05017, - 0.043499, - -0.031818, - -0.043059, - -0.047109, - 0.049136, - -0.02176, - 0.024783, - 0.032528, - 0.081939, - 0.009224, - -0.0025053, - -0.0023281, - -0.013051, - 0.002899, - 0.031746, - 0.047162, - -0.063074, - -0.036435, - -0.0043204, - 0.022089, - 0.005186, - 0.018852, - -0.025003, - -0.019882, - -0.0081593, - 0.0026029, - -0.055108, - 0.072456, - 0.010489, - 0.057495, - 0.016445, - 0.020135, - -0.024733, - -0.032336, - 0.085485, - -0.10339, - -0.039608, - 0.024153, - -0.027727, - -0.063454, - 0.017075, - -0.018642, - -0.04817, - 0.0072169, - 0.012556, - 0.0021767, - -0.025541, - 0.00087399, - 0.0073144, - 0.01989, - -0.018155, - 0.022834, - 0.017496, - -0.02364, - 0.1001, - -0.11616, - -0.083456, - -0.078811, - 0.0084315, - -0.0079552, - 0.050463, - -0.010618, - 0.024448 - ], - "mythical": [ - -0.062587, - -0.018606, - 0.028388, - 0.017589, - -0.023327, - -0.093419, - -0.042383, - -0.087025, - 0.024474, - 0.038823, - 0.01645, - -0.047196, - 0.021972, - 0.036231, - 0.02758, - -0.036509, - 0.05124, - -0.086135, - 0.037856, - 0.030557, - -0.035231, - 0.095859, - -0.021874, - 0.07274, - 0.041629, - -0.037911, - 0.013158, - 0.0037596, - 0.12238, - 0.039256, - -0.039912, - -0.02646, - 0.027861, - -0.051886, - 0.03267, - 0.031524, - 0.025735, - -0.04401, - 0.006924, - -0.0011347, - 0.029721, - -0.1228, - 0.060576, - 0.08034, - 0.035835, - 0.032251, - 0.0071685, - 0.0062624, - -0.039619, - -0.014718, - -0.026246, - 0.017172, - -0.057598, - -0.03489, - 0.057537, - 0.04833, - 0.053982, - -0.002413, - -0.040686, - 0.00037072, - -0.011059, - -0.068183, - 0.11, - -0.0027551, - 0.082822, - -0.029653, - -0.038817, - 0.0074572, - 0.026545, - -0.0030841, - 0.027183, - 0.010031, - -0.0056031, - -0.030481, - 0.0023499, - 0.044111, - -0.026891, - -0.04779, - 0.010832, - -0.019616, - 0.027765, - 0.023061, - 0.022762, - 0.07623, - -0.029167, - -0.034883, - -0.04608, - -0.01504, - 0.019091, - -0.058052, - -0.059985, - -0.063992, - -0.084259, - -0.007599, - -0.0085347, - 0.078508, - 0.0057588, - -0.055166, - 0.037088, - 0.039311, - 0.044854, - -0.01099, - 0.013712, - -0.0039116, - -0.048106, - -0.12332, - 0.0095461, - 0.030143, - -0.030624, - 0.019334, - 0.037842, - 0.053002, - 0.020185, - -0.064589, - -0.026481, - 0.074918, - -0.0078089, - 0.0056436, - -0.047153, - -0.01308, - 0.00057902, - 0.023559, - -0.028046, - -0.073484, - 0.045861, - 0.0058739, - 0.056687, - -0.042788, - -0.060178, - 0.043922, - -0.048513, - -0.0043549, - -0.049092, - 0.0069762, - 0.021421, - -0.043801, - 0.00061521, - 0.094799, - 0.0069183, - -0.0086823, - -0.0019339, - -0.058694, - 0.021733, - 0.075321, - -0.021778, - -0.063069, - 0.011279, - 0.0022729, - -0.05075, - -0.026203, - -0.00043088, - 0.11813, - -0.012038, - 0.012198, - 0.0011192, - -0.02349, - -0.043621, - -0.018989, - -0.0025809, - 0.012653, - -0.0015284, - 0.030519, - -0.047302, - -0.005827, - 0.026557, - -0.036998, - 0.0075202, - 0.09499, - -0.0052811, - -0.0099881, - -0.038908, - -0.074798, - -0.040623, - -0.025467, - 0.048445, - 0.054076, - 0.038828, - 0.035194, - 0.0080745, - 0.024296, - 0.057716, - 0.086145, - 0.028173, - 0.011865, - 0.015205, - -0.012447, - -0.04316, - 0.090637, - 0.029975, - -0.00031917, - 0.084645, - 0.096366, - 0.035686, - -0.02826, - -0.030607, - -0.0015181, - -0.0015287, - -0.0017326, - 0.009316, - 0.021474, - -0.13213, - 0.074835, - -0.055176, - -0.066315, - 0.083434, - 0.046335, - -0.022904, - 0.030401, - -0.0014527, - 0.034989, - 0.14751, - -0.028232, - -0.010696, - -0.035159, - 0.042399, - -0.0085262, - -0.002157, - -0.014004, - -0.012783, - -0.0038055, - 0.030254, - -0.0091687, - 0.018981, - 0.085363, - -0.0015346, - -0.028585, - 0.088593, - 0.04767, - 0.0024219, - -0.03648, - -0.058611, - -0.03866, - -0.092226, - -0.028914, - 0.0030275, - 0.00098648, - -0.037891, - -0.010285, - 0.045522, - 0.031822, - 0.089501, - 0.041135, - -0.023212, - 0.0031085, - -0.20075, - -0.029198, - -0.061865, - -0.016022, - -0.077696, - -0.028052, - -0.0086215, - -0.032774, - -0.020465, - 0.055225, - -0.024557, - 0.07052, - -0.062629, - 0.0074066, - 0.081191, - 0.023552, - 0.073803, - -0.016876, - 0.033233, - -0.039256, - 0.042151, - -0.0028231, - -0.0097705, - -0.019558, - 0.072799, - -0.037103, - -0.074368, - 0.06744, - -0.068185, - -0.028609, - 0.09818, - -0.16217, - 0.017275, - -0.000015776, - -0.059041, - -0.009367, - 0.14917, - -0.073157, - -0.0075504, - 0.0075901, - 0.047504, - 0.0055228, - 0.0011372, - -0.015968, - -0.03546, - -0.01169, - 0.066298, - -0.011822, - -0.0069481, - -0.054383, - 0.0091832, - 0.040333, - 0.02572, - 0.04093, - -0.051758, - 0.043121 - ], - "Family": [ - -0.033141, - 0.054296, - 0.036499, - 0.070304, - -0.069603, - -0.021909, - -0.0094033, - -0.035883, - 0.067181, - 0.044196, - 0.016, - -0.087285, - -0.00036904, - -0.056972, - -0.040412, - -0.033404, - 0.062502, - -0.0048106, - 0.036648, - 0.084672, - -0.027246, - 0.020915, - -0.023735, - 0.051709, - 0.053814, - -0.073187, - -0.043312, - 0.049428, - 0.062176, - 0.066761, - 0.025487, - -0.055345, - 0.0074104, - 0.015021, - 0.098701, - 0.0026244, - -0.064456, - -0.015071, - 0.049035, - -0.035212, - 0.011137, - 0.093285, - 0.073764, - -0.068213, - 0.0020942, - 0.031397, - -0.02442, - -0.004207, - -0.062867, - -0.021565, - -0.0064525, - 0.049911, - -0.0019429, - 0.044552, - 0.020907, - -0.0070509, - -0.080511, - -0.054808, - -0.14877, - -0.035963, - -0.037379, - -0.05756, - -0.021154, - 0.027909, - 0.058529, - 0.026421, - -0.05444, - -0.038511, - -0.08587, - -0.028306, - 0.054103, - -0.0086909, - -0.079893, - -0.016153, - 0.070428, - 0.024554, - 0.022548, - -0.13524, - 0.06338, - 0.033668, - -0.031954, - 0.020698, - 0.070978, - 0.0054065, - -0.061106, - -0.075865, - 0.0076577, - 0.0082921, - 0.0066195, - 0.0082131, - 0.017435, - -0.011731, - -0.076949, - 0.019683, - -0.019541, - 0.17376, - -0.01033, - 0.066019, - 0.12862, - -0.072669, - -0.023658, - -0.012647, - -0.033336, - -0.11067, - -0.083709, - -0.2021, - -0.0089462, - -0.032134, - 0.031973, - 0.0076858, - -0.040195, - 0.034948, - 0.077173, - 0.037489, - 0.02227, - -0.063988, - -0.023686, - -0.03775, - 0.11072, - -0.02499, - -0.017335, - 0.063102, - 0.13414, - -0.022804, - 0.057378, - 0.038644, - 0.0041516, - -0.096607, - 0.024935, - 0.32258, - 0.043963, - 0.066971, - 0.066315, - -0.045773, - 0.021782, - 0.033061, - -0.031968, - 0.0093929, - 0.053038, - -0.00037815, - 0.03444, - -0.032842, - -0.086108, - 0.047363, - 0.025469, - 0.08721, - 0.024317, - 0.01458, - -0.024674, - -0.033255, - 0.088357, - 0.17886, - -0.031859, - 0.0005012, - 0.071426, - 0.078602, - 0.059469, - -0.030746, - 0.1387, - -0.0723, - -0.0080477, - 0.0246, - -0.071234, - -0.02024, - -0.032402, - 0.063361, - 0.016321, - 0.010238, - -0.0065598, - -0.017647, - -0.03681, - -0.010108, - 0.033534, - 0.012806, - -0.044555, - 0.012184, - 0.00049323, - 0.0061279, - -0.0028839, - -0.048657, - -0.0012356, - -0.068077, - 0.010125, - 0.10374, - 0.015042, - 0.21943, - -0.0043524, - 0.14704, - 0.12177, - -0.042494, - -0.050182, - 0.073319, - -0.045101, - 0.031863, - -0.090405, - -0.021706, - 0.012155, - 0.028578, - -0.0033694, - -0.054193, - 0.029628, - 0.1392, - -0.011341, - -0.034633, - -0.02729, - -0.0022234, - -0.014232, - -0.068389, - -0.0013138, - 0.014187, - 0.22372, - 0.020714, - -0.065579, - -0.035155, - -0.02958, - -0.02451, - -0.057816, - 0.077989, - -0.0038113, - 0.021347, - 0.045564, - -0.060268, - 0.015189, - 0.079009, - -0.0521, - -0.054019, - 0.053805, - 0.083142, - -0.0069138, - -0.053614, - 0.060829, - -0.049367, - -0.044942, - -0.0062981, - -0.03735, - 0.059115, - 0.021689, - 0.01101, - -0.017644, - -0.077454, - 0.066389, - 0.005231, - -0.005557, - 0.041572, - 0.1575, - 0.0089511, - 0.0070234, - -0.03795, - 0.0037443, - -0.1165, - -0.041591, - -0.0051361, - 0.0040423, - 0.044908, - -0.052051, - -0.033315, - -0.065847, - 0.034636, - -0.0024022, - -0.031058, - 0.010658, - -0.024631, - 0.030645, - -0.0024143, - 0.10475, - 0.032209, - 0.0065836, - -0.024554, - 0.040025, - -0.008348, - 0.092238, - 0.13953, - -0.050771, - 0.040306, - -0.018751, - -0.093321, - -0.0068595, - 0.034874, - -0.037153, - 0.082542, - 0.019884, - -0.044045, - 0.039211, - 0.0056945, - 0.096007, - 0.063642, - -0.012766, - -0.071775, - -0.027352, - -0.014194, - 0.0063658, - 0.082959, - 0.043961, - -0.043342, - 0.035373, - 0.1148, - 0.029994, - 0.047307, - 0.023133, - 0.020427 - ], - "backdoors": [ - -0.061086, - 0.00035803, - -0.10054, - -0.012867, - -0.037175, - 0.061376, - 0.0039691, - -0.093686, - -0.027914, - -0.0032008, - -0.04275, - -0.047904, - -0.052632, - -0.033013, - -0.083192, - 0.013163, - 0.072141, - 0.0065671, - 0.064675, - 0.0000062629, - 0.0035064, - 0.015761, - -0.0020466, - 0.0091319, - -0.021131, - -0.0030642, - 0.037494, - -0.059225, - 0.088494, - -0.035693, - 0.0011459, - -0.12143, - -0.058215, - -0.033344, - 0.048613, - 0.0075429, - 0.0097012, - -0.0073691, - 0.034806, - -0.033446, - -0.027141, - -0.071778, - -0.056411, - -0.040335, - -0.034518, - -0.038762, - -0.00054963, - -0.031672, - -0.0015376, - -0.024624, - 0.018884, - -0.0045178, - -0.0049812, - -0.073358, - -0.079035, - 0.028482, - 0.045078, - 0.10032, - 0.030085, - 0.014515, - -0.0040012, - -0.076202, - 0.088262, - -0.030955, - 0.0027532, - -0.025328, - 0.017547, - -0.0098069, - 0.026515, - 0.057445, - -0.02587, - 0.024482, - 0.015239, - 0.013664, - -0.044421, - -0.017654, - 0.10933, - -0.066239, - 0.018718, - -0.018803, - 0.035768, - -0.037607, - -0.029851, - 0.12092, - 0.077717, - -0.028114, - -0.026889, - -0.021511, - 0.002188, - 0.044796, - -0.028532, - -0.029849, - -0.062184, - 0.038243, - 0.017552, - 0.027985, - 0.074588, - -0.053799, - -0.046532, - 0.046261, - 0.0019902, - 0.0064407, - 0.074257, - 0.0071137, - 0.026208, - -0.06121, - 0.056978, - 0.016837, - -0.0089896, - -0.018085, - -0.037061, - 0.062497, - 0.083563, - -0.026607, - -0.013336, - 0.010035, - -0.01797, - 0.053557, - -0.024441, - 0.018443, - 0.050084, - 0.021011, - 0.030689, - -0.0066892, - 0.096019, - 0.0061508, - -0.059667, - 0.010925, - -0.087573, - 0.058589, - -0.0073465, - 0.058135, - 0.039817, - -0.026437, - 0.040652, - -0.080377, - -0.019746, - 0.028782, - -0.060356, - 0.044877, - 0.01702, - 0.0024238, - -0.046564, - -0.0053584, - 0.018689, - 0.053008, - -0.04219, - -0.040804, - 0.079115, - -0.002149, - 0.040043, - 0.060634, - 0.070014, - -0.049256, - 0.040217, - -0.018343, - 0.020986, - -0.057794, - -0.006641, - -0.0097786, - 0.094425, - -0.044311, - 0.009087, - -0.042574, - 0.04083, - -0.036648, - 0.078738, - 0.060341, - 0.074592, - -0.016569, - 0.023894, - -0.0041486, - -0.0085586, - 0.064347, - -0.037332, - 0.04518, - 0.047419, - 0.033001, - 0.021969, - 0.054555, - 0.054842, - 0.044739, - 0.04779, - -0.050096, - -0.0083551, - 0.037563, - 0.017295, - 0.099848, - 0.020483, - 0.0098127, - -0.08763, - 0.037673, - -0.054777, - 0.050089, - 0.023796, - 0.00068353, - -0.036245, - -0.053297, - -0.0036596, - -0.047932, - -0.168, - 0.012223, - -0.072368, - 0.064169, - 0.00037925, - -0.08097, - 0.041284, - -0.0016983, - -0.019458, - -0.030904, - 0.08771, - 0.044862, - 0.11377, - 0.0050874, - 0.045771, - 0.0015021, - -0.073978, - 0.039102, - -0.018215, - -0.0166, - 0.039187, - -0.039891, - -0.014505, - 0.07592, - 0.089687, - -0.028015, - 0.020393, - 0.0050104, - 0.0072089, - -0.010955, - -0.10288, - -0.0076778, - -0.054242, - -0.075258, - 0.016935, - -0.083039, - 0.016098, - -0.0094062, - -0.005345, - -0.020691, - 0.049147, - -0.060411, - 0.095254, - 0.018622, - -0.047624, - 0.034344, - -0.022273, - 0.0035158, - -0.037836, - 0.041936, - -0.087243, - -0.015978, - -0.06991, - -0.0076785, - -0.012415, - 0.022801, - -0.025606, - -0.024621, - -0.074284, - -0.015108, - 0.061601, - 0.0071905, - -0.028429, - -0.017916, - -0.0021268, - -0.033294, - -0.023117, - -0.0059571, - 0.047178, - -0.038176, - -0.042347, - 0.087374, - -0.081988, - -0.047795, - -0.038347, - 0.0045746, - 0.015677, - -0.047995, - -0.0023013, - 0.040838, - 0.040657, - 0.02813, - 0.075106, - 0.042368, - -0.054001, - -0.0040785, - 0.0034921, - 0.022189, - 0.046333, - 0.066984, - -0.006597, - -0.026839, - -0.013892, - 0.047801, - 0.043739, - 0.0060106, - -0.031918, - -0.019394, - -0.049982, - -0.037517 - ], - "car": [ - 0.038759, - 0.0011027, - 0.022787, - 0.17364, - 0.033054, - 0.027523, - -0.075464, - -0.16217, - 0.086373, - 0.053301, - 0.052163, - -0.063153, - 0.065388, - 0.043667, - -0.12229, - 0.06318, - 0.21302, - 0.021949, - 0.082401, - 0.046311, - -0.0066341, - -0.070732, - 0.0012336, - 0.090265, - 0.11972, - 0.057176, - 0.025602, - 0.014898, - -0.023532, - 0.11134, - -0.033145, - 0.14381, - 0.14498, - -0.030991, - 0.013612, - 0.0082323, - -0.029162, - 0.028147, - -0.0010683, - -0.024749, - 0.0562, - -0.222, - 0.001967, - -0.074433, - 0.044681, - 0.023112, - -0.034574, - -0.097671, - -0.055749, - 0.022341, - 0.087447, - -0.0020357, - -0.046049, - 0.017599, - -0.14796, - -0.12267, - -0.014255, - -0.033816, - -0.10022, - 0.0056581, - 0.010728, - -0.013154, - 0.22752, - 0.13235, - 0.15394, - 0.037552, - 0.026112, - -0.12541, - -0.065013, - 0.033231, - 0.088693, - -0.001136, - -0.0069347, - -0.062021, - -0.029793, - 0.056266, - -0.10767, - -0.062315, - -0.045935, - 0.051748, - -0.030784, - -0.089909, - -0.04693, - 0.079801, - -0.0094173, - -0.17258, - 0.072028, - -0.058982, - 0.09916, - 0.00036432, - 0.091672, - 0.057197, - -0.17187, - -0.0031753, - 0.077856, - 0.14974, - 0.088099, - -0.047437, - 0.023131, - -0.14176, - 0.016082, - -0.037086, - 0.000070402, - -0.059908, - 0.049189, - -0.19903, - -0.021975, - 0.0018753, - 0.076445, - 0.016784, - 0.091966, - 0.089891, - 0.17036, - 0.18908, - 0.030665, - -0.12918, - -0.021998, - -0.013613, - -0.067465, - -0.0012849, - -0.014266, - 0.067749, - -0.037897, - -0.033429, - 0.098513, - -0.020727, - 0.0028942, - -0.15754, - 0.051402, - 0.10842, - -0.0083416, - -0.03559, - 0.14785, - -0.047781, - 0.046702, - -0.028211, - 0.036657, - 0.031177, - -0.070039, - -0.039534, - -0.042024, - 0.022298, - 0.07657, - 0.018585, - -0.057722, - 0.065047, - 0.029873, - 0.058212, - 0.036188, - -0.031808, - -0.00018552, - 0.10963, - 0.061327, - -0.074582, - -0.0013834, - -0.011157, - -0.018219, - -0.028985, - -0.064528, - -0.032807, - 0.030934, - -0.029733, - -0.066199, - 0.055163, - 0.066097, - -0.098968, - 0.0855, - -0.05578, - 0.061744, - 0.055878, - 0.034155, - -0.07289, - -0.054486, - 0.078873, - 0.047722, - 0.073375, - -0.063207, - -0.013088, - -0.010082, - -0.022024, - 0.045953, - -0.10957, - -0.10348, - -0.12916, - 0.0038281, - -0.076298, - -0.10581, - 0.14809, - 0.15195, - -0.01248, - -0.033297, - 0.026206, - 0.021459, - 0.10257, - 0.12067, - 0.082998, - 0.0094163, - -0.093399, - 0.002182, - 0.09146, - -0.26145, - 0.13831, - -0.026157, - -0.12336, - 0.07533, - 0.018772, - -0.022666, - -0.074912, - -0.040009, - -0.094949, - 0.19845, - -0.019452, - 0.03197, - -0.055938, - -0.02493, - -0.014207, - -0.14093, - -0.065307, - 0.071212, - -0.031118, - -0.027664, - -0.065984, - 0.035384, - 0.14175, - 0.00018564, - -0.027472, - -0.06417, - 0.056756, - 0.0065402, - 0.0040891, - -0.022985, - -0.12807, - -0.11019, - -0.089633, - -0.025357, - -0.041763, - 0.081953, - -0.0058157, - 0.035476, - -0.030752, - 0.10916, - -0.0035876, - -0.019288, - -0.038003, - -0.014312, - -0.059295, - 0.16081, - 0.046915, - 0.028552, - 0.033033, - -0.013019, - 0.09127, - -0.12837, - 0.025331, - -0.036984, - -0.17111, - -0.0078098, - -0.0010321, - 0.0060862, - 0.08281, - 0.054104, - 0.046343, - -0.17972, - -0.047392, - 0.02394, - 0.059589, - -0.026585, - -0.028843, - 0.087703, - 0.041934, - -0.079643, - 0.14804, - -0.16382, - -0.043359, - -0.017207, - -0.07417, - 0.031263, - 0.16058, - 0.077219, - -0.065899, - 0.1625, - 0.041018, - -0.0082631, - 0.011085, - -0.01574, - -0.00067337, - -0.095738, - 0.0031843, - 0.069352, - 0.11754, - 0.078423, - -0.13415, - -0.099042, - -0.032979, - -0.060845, - 0.0034135, - 0.095265, - -0.022767, - 0.092216, - -0.1207 - ], - "past": [ - 0.0051235, - -0.015201, - 0.054068, - 0.022746, - 0.046531, - -0.0073884, - -0.069918, - -0.13519, - 0.047093, - -0.041052, - 0.0084622, - -0.12073, - 0.038482, - 0.0033607, - -0.0042743, - -0.021253, - 0.11699, - 0.042203, - 0.084207, - -0.010375, - 0.073059, - 0.0075691, - -0.12296, - 0.18638, - -0.055025, - 0.027659, - -0.0065885, - 0.063198, - 0.02309, - -0.076783, - 0.058091, - -0.007287, - 0.056311, - -0.090424, - -0.00050824, - -0.0087749, - 0.035123, - -0.0082936, - -0.089125, - -0.014202, - -0.055887, - -0.019259, - -0.0018566, - 0.014989, - 0.039346, - 0.099439, - 0.0385, - 0.027517, - 0.0019798, - -0.02533, - 0.0015078, - 0.023519, - 0.021333, - -0.013857, - -0.10052, - 0.051016, - 0.053507, - 0.025809, - -0.04941, - -0.043371, - 0.06541, - 0.044313, - 0.24856, - -0.056339, - 0.045294, - -0.056937, - -0.010436, - -0.021525, - -0.01573, - 0.054616, - -0.0016202, - 0.018784, - 0.032182, - -0.020515, - 0.11067, - 0.033763, - 0.072678, - -0.0028127, - 0.046753, - -0.076796, - 0.067861, - 0.053547, - -0.045677, - 0.14257, - -0.0074919, - -0.03178, - -0.017469, - 0.023807, - -0.030151, - -0.04267, - 0.081578, - 0.0065721, - -0.14925, - 0.069172, - 0.06965, - 0.074939, - 0.012435, - -0.0030129, - 0.099465, - 0.016493, - 0.0070186, - -0.02712, - -0.00028287, - -0.071473, - 0.05549, - -0.06288, - 0.056784, - 0.0099872, - 0.051559, - 0.048075, - -0.068619, - 0.028074, - 0.077548, - 0.032964, - -0.032099, - -0.023868, - -0.064315, - 0.023591, - -0.09192, - 0.02121, - -0.012969, - -0.050895, - 0.07381, - 0.013146, - -0.015586, - 0.05031, - -0.054734, - -0.17733, - 0.051516, - 0.056435, - 0.030608, - 0.027851, - -0.012445, - 0.024621, - 0.012941, - -0.047148, - 0.027856, - 0.078299, - 0.024451, - -0.0050733, - -0.019419, - -0.014898, - -0.02109, - 0.00072705, - 0.022034, - 0.0024612, - 0.10649, - 0.018994, - 0.037514, - -0.044658, - 0.056158, - 0.037251, - 0.051958, - -0.027035, - 0.00012052, - -0.069266, - 0.061962, - -0.0095543, - -0.034417, - 0.054252, - 0.0026937, - 0.041275, - 0.071671, - 0.016945, - -0.015689, - -0.0013825, - -0.009752, - -0.022539, - 0.0089223, - 0.027648, - 0.035179, - -0.032983, - -0.061008, - -0.014393, - 0.066861, - 0.069981, - 0.034054, - -0.013889, - 0.057784, - -0.045657, - 0.098869, - 0.032335, - 0.083909, - -0.024676, - 0.026433, - -0.016058, - -0.034289, - 0.090871, - 0.04062, - -0.00060841, - 0.10345, - 0.068267, - -0.049077, - 0.051731, - -0.010865, - 0.023544, - -0.033172, - -0.018299, - 0.0039141, - 0.056687, - -0.16378, - -0.0189, - 0.042386, - -0.092975, - -0.016417, - -0.022398, - -0.025877, - 0.021534, - 0.017892, - -0.055677, - 0.15954, - -0.024717, - -0.0011234, - 0.011841, - 0.024683, - -0.046822, - -0.013103, - 0.012491, - -0.0091073, - -0.21336, - 0.023155, - 0.0049373, - -0.0052801, - 0.1621, - -0.040411, - -0.025232, - 0.032061, - 0.12776, - 0.010197, - -0.027039, - 0.059395, - -0.15897, - -0.095358, - -0.0027578, - 0.039466, - -0.047114, - -0.029638, - 0.063891, - 0.093358, - 0.060149, - 0.097882, - 0.043431, - 0.019423, - -0.029361, - -0.13956, - -0.026841, - -0.023881, - -0.12663, - -0.021691, - -0.015835, - 0.01259, - -0.049017, - -0.019521, - 0.014782, - 0.0069767, - 0.0139, - 0.026762, - 0.028544, - 0.069573, - 0.062015, - 0.050282, - -0.0457, - -0.030539, - -0.050306, - 0.087398, - -0.048566, - 0.051404, - 0.05247, - 0.03035, - -0.029905, - -0.0041889, - 0.16505, - -0.1696, - -0.068437, - 0.13043, - -0.08349, - 0.011198, - 0.0118, - -0.018991, - 0.071712, - 0.028425, - 0.0049483, - -0.046719, - -0.0012573, - 0.11004, - -0.032382, - -0.033354, - -0.0692, - -0.0589, - 0.0053415, - 0.056232, - 0.033513, - -0.086999, - -0.059012, - 0.0024066, - 0.037165, - -0.036546, - 0.010843, - -0.024916, - 0.023229 - ], - "accomplishment": [ - -0.024125, - -0.024315, - 0.0012349, - -0.017549, - -0.043937, - -0.013986, - -0.025687, - -0.059473, - 0.020146, - 0.008062, - -0.0079098, - -0.0042503, - 0.016443, - 0.042785, - 0.0044397, - 0.02432, - 0.020976, - 0.016144, - 0.016863, - 0.022011, - -0.0031128, - 0.0085234, - -0.0050039, - 0.040794, - -0.047664, - -0.018501, - -0.023363, - 0.018049, - 0.018162, - -0.020433, - 0.0064593, - -0.017533, - -0.0064952, - -0.06393, - -0.033426, - 0.021251, - -0.032791, - 0.003855, - -0.0049692, - -0.037808, - 0.029484, - -0.038983, - -0.0013685, - 0.021361, - 0.0058349, - 0.0053995, - -0.0022591, - -0.0069485, - -0.0010101, - 0.019286, - 0.039557, - 0.013163, - -0.041518, - -0.001083, - -0.018694, - 0.021157, - -0.024529, - 0.0015293, - -0.029187, - 0.010903, - -0.0039613, - 0.01224, - 0.05225, - -0.037014, - 0.051868, - -0.025328, - 0.00055233, - 0.0014963, - 0.02118, - -0.013438, - 0.011699, - -0.0030518, - -0.0024119, - 0.011875, - 0.01471, - 0.0073947, - -0.030575, - -0.02755, - 0.026968, - 0.070351, - 0.0020322, - 0.022647, - 0.0061248, - 0.032767, - 0.01575, - -0.013301, - -0.010857, - 0.010225, - -0.016773, - 0.00050842, - 0.00093128, - -0.0068012, - -0.043438, - -0.033235, - 0.023569, - 0.0005033, - -0.037715, - -0.016406, - 0.072894, - 0.058209, - 0.023996, - -0.029767, - 0.0081372, - 0.021027, - -0.026312, - -0.017809, - -0.0067165, - 0.014281, - -0.0088244, - 0.016601, - 0.026127, - 0.024483, - 0.020188, - 0.011912, - 0.016322, - 0.0071935, - -0.0097042, - -0.0052004, - -0.031862, - -0.0069127, - -0.027448, - -0.0064252, - -0.0049988, - 0.020981, - 0.071299, - 0.016489, - 0.0043601, - -0.073146, - 0.020925, - 0.054673, - -0.006311, - -0.025525, - -0.010093, - -0.011987, - -0.013213, - -0.074553, - 0.019537, - 0.028714, - 0.005972, - -0.0043274, - -0.018378, - -0.020359, - 0.0055442, - -0.023208, - -0.053424, - 0.016431, - -0.032159, - -0.026568, - 0.037593, - 0.02819, - 0.03523, - 0.0047168, - -0.019311, - -0.084526, - 0.0086606, - -0.01124, - 0.054258, - -0.00735, - 0.0025741, - -0.041553, - 0.016018, - 0.047644, - -0.049962, - -0.017588, - 0.0099303, - 0.015198, - -0.023511, - -0.036805, - 0.010808, - -0.0023805, - 0.065097, - 0.021714, - -0.008471, - -0.0017806, - -0.0055977, - 0.020144, - -0.0056936, - 0.024151, - -0.011316, - 0.011061, - -0.064811, - -0.021967, - 0.032567, - -0.057746, - -0.042373, - -0.058806, - -0.020379, - 0.072979, - 0.0079844, - 0.0086231, - 0.013129, - 0.053182, - -0.0069153, - -0.011638, - -0.013758, - 0.004861, - -0.010595, - -0.0043668, - -0.032529, - -0.021834, - -0.091239, - 0.049784, - -0.0054443, - -0.035782, - -0.0034904, - -0.017247, - 0.022053, - 0.0081776, - 0.022487, - -0.022422, - 0.031318, - -0.00069362, - -0.037168, - 0.0046714, - 0.038785, - -0.012666, - -0.00925, - 0.021786, - -0.019448, - -0.018939, - -0.037396, - -0.0035432, - 0.020084, - 0.050564, - 0.00084781, - 0.018439, - 0.032674, - 0.055725, - 0.0037447, - -0.011248, - -0.010019, - -0.074479, - -0.017689, - -0.00035106, - 0.04934, - -0.023615, - 0.017029, - -0.031266, - -0.037846, - 0.016941, - 0.042509, - 0.011051, - 0.015311, - -0.0084912, - -0.04635, - 0.061714, - -0.009826, - -0.041921, - 0.026701, - 0.014694, - 0.014171, - 0.030313, - 0.034245, - -0.0016363, - 0.026224, - 0.0010359, - -0.015486, - 0.038535, - 0.044443, - -0.0070693, - -0.040906, - -0.0030132, - 0.0064199, - -0.023491, - 0.0023038, - -0.011089, - -0.00063206, - -0.025401, - -0.0065335, - 0.0048526, - 0.037539, - 0.062763, - -0.069574, - -0.035, - 0.027909, - -0.054414, - -0.015042, - -0.0092889, - 0.015257, - 0.014427, - 0.037144, - 0.024044, - -0.020637, - -0.037135, - 0.027047, - -0.00077926, - -0.013938, - 0.012168, - -0.041097, - 0.022986, - 0.029662, - 0.0090897, - 0.0015725, - -0.0064703, - 0.013904, - 0.043072, - 0.013384, - 0.006105, - -0.029242, - 0.010387 - ], - "advocacy": [ - 0.037152, - -0.071373, - 0.020166, - 0.10221, - -0.063806, - -0.027303, - -0.0089481, - -0.079342, - -0.026132, - 0.0060357, - 0.025674, - -0.066619, - -0.019079, - -0.018881, - -0.017608, - 0.018865, - 0.092459, - 0.026538, - 0.026482, - -0.024968, - -0.038256, - 0.059717, - 0.07055, - 0.06694, - -0.070907, - -0.0059877, - -0.047819, - 0.026529, - 0.016514, - -0.036413, - 0.043119, - -0.017593, - -0.039297, - -0.093027, - 0.041784, - 0.041018, - -0.010233, - -0.078763, - -0.0060491, - -0.037618, - -0.048267, - -0.098315, - 0.0091946, - 0.009861, - 0.023511, - 0.0048652, - 0.0096374, - 0.046977, - -0.0086476, - -0.033297, - 0.021493, - 0.048736, - 0.022464, - -0.029816, - -0.043247, - 0.027218, - 0.019749, - 0.049171, - -0.038945, - 0.036694, - -0.030798, - -0.023779, - 0.050808, - -0.019143, - 0.035636, - -0.052846, - -0.020695, - -0.063987, - 0.022119, - 0.014342, - 0.0040485, - -0.015596, - 0.019155, - -0.033088, - 0.0077562, - -0.063936, - -0.03164, - -0.028921, - 0.036651, - -0.02392, - -0.0581, - -0.010749, - -0.069052, - -0.020489, - 0.0065954, - -0.046762, - -0.019829, - 0.019411, - 0.0056224, - 0.030751, - -0.010619, - 0.075111, - -0.091795, - -0.011738, - 0.033354, - 0.044992, - -0.00018911, - 0.06278, - -0.0090927, - -0.021971, - -0.075101, - -0.048219, - 0.051194, - 0.0012573, - 0.017082, - -0.065495, - 0.054228, - -0.039067, - -0.057968, - -0.02843, - -0.067334, - 0.083279, - 0.037949, - 0.0051012, - -0.037519, - 0.03101, - 0.047896, - -0.059886, - -0.069616, - -0.0068091, - 0.022134, - -0.021249, - 0.053639, - -0.066573, - 0.10976, - -0.044657, - 0.029458, - -0.039003, - 0.044151, - 0.11137, - -0.0044709, - -0.011071, - 0.021109, - 0.028431, - -0.034757, - 0.034504, - -0.020106, - 0.027545, - -0.032033, - -0.040503, - 0.027751, - -0.0049251, - -0.015383, - 0.047333, - -0.07409, - 0.012849, - -0.0087418, - 0.030044, - 0.0024137, - 0.016369, - 0.057253, - 0.052672, - -0.012171, - -0.1277, - 0.011377, - 0.020617, - 0.0038525, - 0.001547, - 0.016083, - 0.0073314, - 0.032021, - 0.065054, - -0.081537, - -0.0027171, - -0.11537, - -0.018998, - 0.00040811, - -0.02694, - -0.039621, - -0.031642, - 0.065378, - 0.036069, - 0.0078812, - 0.0408, - -0.010556, - 0.060994, - -0.0057468, - 0.028058, - -0.047187, - 0.024705, - -0.032597, - -0.012067, - -0.013356, - 0.050342, - -0.014217, - -0.0097805, - 0.036242, - 0.08955, - -0.0091367, - -0.034194, - -0.030497, - 0.095406, - 0.01415, - -0.029088, - 0.0068113, - -0.051453, - 0.052892, - 0.027187, - -0.054754, - -0.072882, - -0.15427, - 0.030483, - 0.033133, - 0.027689, - -0.00037554, - 0.0062975, - -0.035102, - 0.0099906, - 0.03842, - -0.010227, - 0.11739, - 0.037338, - -0.021983, - -0.061839, - -0.0096385, - 0.026375, - 0.089705, - -0.046603, - -0.034045, - -0.037147, - -0.053111, - -0.031972, - -0.018333, - 0.0728, - 0.0355, - -0.021713, - 0.055181, - 0.1007, - 0.062158, - -0.026104, - 0.048234, - -0.030677, - -0.022784, - -0.062675, - 0.047476, - -0.012537, - -0.007582, - 0.0028283, - -0.0465, - -0.051291, - 0.025426, - -0.014604, - 0.015328, - -0.058459, - -0.031408, - 0.0014666, - -0.011219, - -0.073422, - 0.024614, - 0.015193, - 0.075279, - 0.021035, - -0.024894, - -0.0024302, - 0.045981, - -0.057547, - -0.031069, - 0.010077, - -0.036594, - 0.011874, - -0.020985, - 0.057678, - -0.041534, - 0.056945, - 0.05608, - 0.022037, - 0.045907, - 0.01756, - 0.014628, - 0.027176, - 0.0035975, - 0.079496, - -0.10667, - -0.025407, - -0.0092123, - -0.045951, - -0.057914, - 0.063055, - -0.088279, - 0.016121, - 0.10559, - -0.039524, - -0.025266, - 0.022051, - -0.027043, - -0.0058963, - -0.0083015, - 0.026023, - 0.040366, - 0.01238, - 0.016316, - -0.036501, - -0.031122, - 0.0081647, - -0.031164, - 0.031119, - -0.073059, - 0.067189, - -0.064118, - 0.013594 - ], - "cat": [ - 0.047426, - -0.042203, - 0.028491, - -0.044481, - -0.026467, - 0.033557, - 0.17173, - -0.14773, - 0.071133, - 0.038385, - -0.079921, - -0.0013236, - 0.16185, - -0.16389, - -0.065456, - 0.02703, - 0.12193, - -0.071632, - 0.079642, - -0.14602, - 0.010369, - -0.10468, - 0.036734, - 0.079116, - 0.18241, - -0.0024902, - 0.013818, - 0.12378, - 0.00017348, - 0.016646, - -0.013513, - -0.075532, - 0.1006, - 0.071226, - -0.027468, - -0.078517, - 0.033769, - -0.16082, - -0.022747, - -0.13238, - 0.011198, - -0.12838, - -0.05891, - -0.051399, - 0.039177, - 0.058243, - 0.022071, - 0.071876, - 0.028166, - -0.018918, - 0.034445, - 0.15664, - 0.069836, - -0.20858, - 0.0024413, - -0.08911, - -0.060705, - 0.065106, - -0.083036, - 0.017491, - -0.034527, - -0.25026, - 0.18777, - -0.036235, - 0.12452, - 0.024356, - -0.0044517, - 0.055572, - -0.0086161, - -0.16188, - 0.018468, - 0.033442, - 0.062601, - -0.06439, - 0.049347, - 0.040229, - -0.10841, - -0.071824, - 0.002852, - -0.023045, - 0.044209, - -0.077235, - 0.11654, - 0.070451, - 0.068801, - -0.15605, - -0.066329, - 0.025411, - 0.18099, - 0.018025, - -0.013115, - 0.039657, - -0.14402, - -0.032715, - 0.15651, - 0.19193, - 0.055521, - 0.083402, - 0.03147, - 0.038014, - 0.07772, - 0.023055, - 0.013798, - 0.029269, - -0.04015, - -0.22689, - -0.10853, - 0.048246, - -0.011478, - -0.033596, - -0.022763, - 0.044926, - 0.043869, - -0.022687, - -0.057857, - -0.090331, - 0.040408, - 0.023637, - -0.049092, - 0.076129, - -0.056087, - 0.13707, - 0.0067951, - -0.099982, - 0.1192, - 0.12967, - -0.011956, - -0.16192, - -0.11653, - 0.086265, - -0.046044, - -0.041525, - -0.054869, - 0.13872, - -0.058306, - -0.0010037, - -0.047553, - 0.097019, - 0.066086, - -0.042082, - -0.01474, - 0.07681, - 0.064693, - -0.05072, - -0.03401, - -0.18386, - 0.0068373, - -0.081774, - -0.025614, - -0.087315, - -0.022828, - 0.081626, - 0.029836, - -0.023802, - -0.079236, - -0.06176, - -0.075404, - -0.087516, - -0.10102, - -0.031656, - -0.022954, - 0.042454, - -0.057946, - 0.093254, - -0.00067006, - -0.04312, - 0.0025232, - 0.034711, - -0.098615, - -0.06012, - -0.067252, - 0.11061, - -0.12473, - 0.10016, - -0.060412, - 0.13936, - -0.0037146, - 0.043347, - 0.021273, - 0.0046771, - 0.094169, - -0.15631, - 0.020714, - -0.13038, - 0.010644, - -0.1024, - 0.01886, - 0.14838, - -0.026096, - -0.19504, - -0.10817, - 0.049979, - -0.039784, - -0.074161, - -0.0077483, - 0.13766, - -0.045317, - 0.13089, - -0.010939, - 0.062601, - -0.1916, - 0.15974, - -0.022695, - -0.036044, - 0.0085172, - -0.059913, - 0.025738, - -0.014296, - -0.10799, - -0.080345, - 0.23639, - -0.071429, - -0.031922, - -0.049206, - -0.014092, - 0.052687, - 0.04989, - -0.08262, - 0.074192, - 0.049126, - 0.0096644, - 0.062958, - -0.0466, - 0.13632, - 0.03219, - 0.11145, - -0.068493, - 0.11836, - 0.097115, - -0.0059462, - -0.039682, - -0.11015, - -0.083191, - -0.069569, - 0.0178, - -0.073179, - 0.14049, - 0.0036892, - -0.054191, - -0.02315, - 0.089252, - -0.00055929, - 0.020313, - -0.013092, - 0.039476, - 0.20953, - 0.044137, - 0.058339, - -0.088616, - -0.072534, - 0.00056144, - -0.1249, - -0.055088, - 0.080493, - 0.073815, - -0.072982, - 0.076267, - -0.060362, - 0.047157, - 0.1172, - -0.035231, - -0.084633, - 0.085297, - -0.087477, - -0.02971, - -0.04245, - -0.008147, - 0.014035, - 0.095844, - 0.025391, - -0.1609, - 0.1498, - -0.15577, - -0.059259, - 0.068384, - -0.022155, - 0.039042, - -0.11343, - 0.0088454, - -0.012065, - 0.12282, - 0.016502, - 0.10734, - -0.02601, - -0.029067, - 0.072578, - -0.0603, - -0.050048, - -0.00071067, - 0.026096, - 0.037569, - 0.022775, - -0.18111, - -0.12339, - 0.036638, - 0.089385, - 0.038261, - 0.17148, - 0.014416, - 0.13847 - ], - "urbanism": [ - 0.10609, - -0.057499, - 0.048569, - 0.0087699, - 0.03595, - 0.016812, - 0.030408, - -0.080833, - 0.092351, - 0.029976, - 0.0027321, - -0.090485, - -0.034813, - 0.068715, - 0.047638, - -0.037422, - 0.10057, - 0.047542, - 0.028952, - -0.015868, - 0.02239, - 0.04724, - 0.012192, - 0.081447, - 0.037642, - -0.050277, - -0.0085386, - 0.088694, - 0.085505, - 0.086388, - 0.038847, - 0.011884, - -0.018416, - -0.032204, - 0.012561, - 0.025993, - 0.085363, - 0.052521, - -0.018936, - -0.03237, - -0.022406, - -0.16326, - 0.0065619, - 0.016791, - -0.049766, - -0.051431, - 0.0027625, - 0.00080215, - -0.031443, - -0.058135, - -0.034534, - -0.091055, - -0.0062739, - 0.00014387, - -0.017764, - 0.03025, - 0.0096895, - 0.021422, - -0.0085159, - 0.019805, - 0.10403, - -0.062956, - -0.0066542, - -0.050497, - 0.093928, - 0.050725, - -0.018485, - 0.00091277, - 0.052633, - -0.048027, - 0.030298, - 0.0073131, - -0.046396, - -0.099145, - 0.021971, - -0.061447, - -0.031878, - -0.045654, - -0.016047, - 0.054592, - -0.018168, - 0.0049517, - -0.04234, - 0.010953, - -0.021349, - -0.015098, - -0.041513, - -0.010667, - 0.037993, - 0.083494, - -0.019379, - 0.061498, - -0.096483, - 0.056511, - -0.022461, - 0.045302, - 0.010085, - -0.071825, - -0.032602, - 0.016924, - 0.061322, - 0.018492, - -0.035701, - -0.042553, - -0.039665, - -0.067898, - 0.010434, - 0.018726, - 0.052438, - 0.0046504, - -0.017984, - 0.15296, - 0.02918, - 0.085768, - -0.01709, - 0.02382, - -0.031728, - 0.035233, - -0.041388, - 0.10479, - -0.051339, - -0.051265, - -0.047916, - 0.0051586, - 0.071453, - -0.02763, - 0.024432, - -0.060171, - 0.016491, - 0.06588, - 0.03072, - -0.026364, - 0.089965, - 0.016635, - 0.016192, - 0.080464, - -0.019631, - 0.0082688, - -0.004847, - -0.053572, - 0.054685, - -0.069963, - 0.063617, - 0.10051, - 0.00094946, - -0.058019, - -0.00043735, - 0.072234, - 0.0049199, - -0.05844, - 0.098269, - 0.098477, - 0.018098, - -0.028437, - -0.012768, - 0.092035, - 0.015818, - 0.049469, - 0.00035022, - -0.010111, - 0.055886, - -0.10712, - -0.13931, - 0.018203, - -0.037719, - -0.013122, - 0.070546, - -0.044627, - 0.11148, - 0.063419, - 0.051242, - 0.0070485, - -0.014426, - -0.035364, - -0.011089, - 0.05749, - -0.0059, - -0.010377, - -0.043032, - 0.039716, - -0.0091086, - 0.085609, - 0.040513, - 0.0037722, - 0.001522, - -0.071461, - 0.034716, - 0.12021, - -0.059379, - -0.015428, - 0.0024625, - 0.066807, - -0.013778, - 0.0026787, - 0.01345, - -0.028718, - 0.011637, - 0.073258, - -0.0067989, - 0.027044, - -0.14909, - 0.058445, - 0.037552, - -0.064695, - -0.10003, - 0.076444, - 0.021921, - 0.0045645, - -0.023237, - 0.062442, - 0.098318, - -0.0020752, - 0.0057588, - -0.013099, - 0.11731, - 0.074955, - 0.042016, - -0.10115, - -0.0086171, - -0.036929, - -0.065536, - 0.0018613, - -0.014821, - 0.066879, - -0.078425, - 0.038531, - 0.1027, - 0.04954, - -0.036626, - -0.057124, - -0.084744, - -0.020304, - -0.075053, - 0.027802, - 0.0037827, - 0.026388, - 0.0092333, - 0.0069474, - -0.025988, - -0.046837, - -0.025739, - 0.058817, - -0.070766, - 0.017522, - 0.030214, - 0.035892, - -0.054215, - 0.0041053, - -0.035978, - 0.019021, - 0.06905, - -0.085501, - -0.085184, - -0.13569, - 0.0039337, - 0.026622, - -0.04469, - 0.060006, - 0.09065, - -0.048558, - 0.047584, - 0.093622, - 0.010232, - 0.0098953, - 0.066704, - -0.024197, - 0.02771, - 0.039064, - 0.062331, - 0.0083308, - -0.043677, - 0.086215, - -0.056358, - -0.011753, - 0.017475, - -0.044595, - 0.064477, - 0.030673, - -0.014544, - -0.04379, - 0.083149, - 0.035521, - -0.083956, - -0.041816, - -0.045905, - 0.039513, - 0.0080196, - 0.014784, - -0.026485, - 0.05693, - -0.021738, - -0.087576, - 0.03332, - -0.062656, - 0.036884, - 0.021086, - -0.0029229, - 0.15645, - -0.045515, - -0.037612 - ], - "bungalow": [ - 0.11537, - -0.0087719, - 0.03486, - 0.024774, - 0.034369, - -0.0050921, - 0.017205, - -0.082409, - -0.042848, - 0.055033, - -0.0029355, - -0.063844, - 0.014825, - -0.017005, - -0.072405, - 0.045031, - 0.12336, - -0.037618, - 0.016309, - 0.0142, - -0.0002661, - -0.078093, - 0.01036, - 0.034392, - 0.057495, - -0.015466, - 0.029168, - 0.02494, - -0.028842, - 0.020447, - 0.019537, - -0.011279, - 0.050188, - 0.013078, - -0.0064433, - -0.0070867, - 0.015044, - 0.017547, - 0.041817, - -0.017331, - 0.046723, - -0.11991, - -0.0010135, - -0.033331, - 0.0031494, - 0.024927, - -0.0033497, - -0.039642, - -0.02813, - 0.063294, - 0.018289, - 0.05356, - -0.043, - 0.073941, - -0.064592, - -0.07874, - 0.016674, - -0.097174, - -0.085164, - -0.069943, - 0.05599, - 0.0090947, - 0.10097, - -0.015058, - 0.071282, - 0.021953, - -0.036705, - -0.034867, - -0.14399, - 0.0015916, - 0.047779, - -0.030357, - -0.0099047, - -0.11635, - -0.013874, - -0.017877, - 0.028707, - -0.020971, - -0.012513, - 0.053048, - 0.018507, - -0.021517, - 0.085374, - 0.024024, - -0.09424, - 0.019531, - 0.0047594, - -0.056119, - -0.0093092, - -0.0074945, - -0.040826, - 0.0013514, - -0.070248, - -0.0034248, - 0.00047531, - 0.12714, - -0.0010034, - 0.035194, - -0.0098706, - -0.026037, - 0.047956, - 0.10532, - 0.019169, - -0.034929, - 0.053936, - -0.088928, - 0.06371, - 0.038807, - 0.029451, - 0.043413, - -0.046608, - 0.059328, - 0.062999, - 0.077609, - -0.036018, - -0.0065846, - -0.013333, - -0.025932, - -0.01141, - 0.063117, - 0.010329, - -0.092028, - 0.011902, - -0.053154, - 0.048599, - 0.030151, - -0.0259, - -0.052976, - -0.018448, - 0.018282, - 0.06529, - -0.004221, - 0.011251, - -0.020939, - -0.079182, - -0.061527, - -0.0065342, - 0.036568, - -0.00024032, - -0.025896, - 0.026857, - 0.00055706, - 0.12568, - 0.026384, - -0.0065361, - -0.09022, - 0.036941, - 0.058867, - 0.035702, - -0.055132, - 0.025265, - 0.019759, - 0.019715, - 0.025696, - 0.025535, - 0.053308, - 0.079429, - 0.012471, - 0.019579, - -0.013246, - 0.042783, - 0.0031498, - -0.021191, - 0.015791, - -0.0027341, - -0.010409, - 0.0087413, - -0.044334, - -0.035223, - 0.13058, - 0.022565, - -0.0011625, - -0.018698, - 0.027195, - -0.015638, - 0.0072045, - -0.036483, - -0.0050148, - -0.0056556, - 0.011948, - 0.031241, - -0.013987, - -0.08368, - -0.063284, - -0.069985, - -0.025494, - 0.012413, - 0.095067, - -0.043978, - -0.10322, - -0.023745, - 0.060422, - 0.020101, - 0.033232, - -0.023206, - 0.0074991, - 0.037651, - 0.04542, - 0.049056, - 0.085808, - -0.1468, - 0.056022, - -0.077728, - -0.038348, - 0.10829, - -0.080217, - 0.022822, - 0.0039738, - -0.022305, - -0.021273, - 0.1154, - -0.033276, - -0.023553, - 0.0076319, - 0.024659, - 0.012012, - -0.079933, - 0.09835, - 0.086508, - -0.025856, - -0.04117, - -0.051303, - -0.00072225, - 0.09433, - -0.018738, - -0.022971, - -0.040025, - 0.0088809, - -0.067508, - -0.02508, - 0.00034557, - -0.060777, - -0.046691, - 0.039625, - 0.013023, - -0.035503, - -0.021495, - 0.0084608, - 0.0017847, - 0.042237, - 0.089131, - -0.078643, - 0.024318, - 0.008095, - 0.00020212, - 0.047672, - 0.064182, - 0.044838, - -0.013737, - 0.059478, - -0.054651, - -0.035717, - -0.050759, - -0.0095429, - -0.0039036, - 0.020528, - -0.034267, - -0.025954, - 0.0183, - 0.0098403, - 0.0051939, - 0.022833, - -0.032509, - -0.030526, - 0.062753, - -0.070075, - -0.00077842, - -0.015047, - -0.035516, - -0.025361, - -0.14203, - 0.050196, - -0.083053, - -0.027743, - 0.04445, - -0.028028, - 0.15524, - 0.058662, - 0.052318, - 0.094797, - 0.074747, - 0.0032171, - -0.00395, - -0.0091131, - -0.046805, - 0.040915, - -0.023018, - -0.035783, - -0.025539, - 0.018789, - -0.035968, - -0.038799, - 0.058454, - 0.0078347, - -0.0073123, - 0.014089, - 0.047368, - 0.034172, - 0.003627, - 0.086566 - ], - "multi-family": [ - 0.039663, - -0.035664, - 0.0055972, - 0.036952, - -0.027761, - 0.069379, - -0.012618, - -0.045277, - 0.0069949, - 0.034479, - 0.017077, - -0.0638, - -0.014837, - -0.0193, - 0.011877, - 0.011052, - 0.068641, - 0.04458, - 0.037852, - 0.011367, - 0.062476, - -0.005207, - -0.003675, - 0.084239, - 0.028283, - -0.011244, - -0.042455, - 0.035613, - 0.011903, - 0.026374, - -0.05938, - -0.039631, - -0.031851, - -0.031845, - 0.04182, - 0.022611, - -0.029096, - 0.044233, - 0.012002, - -0.02066, - 0.013842, - -0.089903, - 0.066511, - -0.039153, - -0.03984, - -0.035707, - -0.028667, - 0.030472, - -0.028801, - -0.01038, - 0.02194, - 0.018073, - -0.020245, - 0.052611, - -0.010573, - -0.0037253, - -0.0049171, - -0.033176, - -0.0041898, - -0.040492, - 0.011801, - -0.0037909, - 0.06463, - -0.069169, - 0.059984, - -0.011417, - 0.0092882, - -0.0035963, - 0.018368, - -0.072329, - 0.020823, - 0.013909, - 0.0027905, - -0.036633, - -0.0093658, - -0.032815, - -0.02082, - -0.028315, - 0.020328, - 0.032339, - 0.014306, - -0.040562, - -0.011896, - 0.0012821, - -0.02053, - 0.0063852, - 0.029237, - -0.0038104, - 0.010291, - 0.016018, - -0.024261, - 0.038, - -0.073856, - 0.032361, - -0.032291, - 0.068663, - -0.045081, - -0.014519, - -0.0031407, - -0.019115, - -0.0068833, - 0.0048424, - 0.0029229, - 0.010415, - -0.0029431, - -0.053982, - -0.0061535, - 0.03446, - 0.008038, - 0.0076277, - -0.042461, - 0.058334, - -0.0044759, - 0.079322, - -0.00017341, - -0.040838, - -0.029193, - -0.043895, - -0.000025535, - 0.011445, - -0.043846, - 0.042538, - 0.074179, - 0.027673, - 0.062982, - -0.029615, - 0.043367, - -0.049673, - 0.02824, - -0.00024179, - 0.034398, - 0.044921, - 0.046502, - -0.025444, - -0.037908, - 0.075392, - 0.016055, - -0.0026089, - -0.016991, - -0.020206, - 0.0266, - -0.00027304, - -0.016408, - 0.076838, - 0.026387, - -0.031756, - -0.0016036, - 0.039764, - 0.0072782, - 0.022714, - 0.070623, - 0.11864, - 0.024997, - -0.026275, - -0.0084287, - 0.023692, - 0.033627, - 0.013108, - -0.013756, - 0.053225, - 0.01043, - 0.010813, - -0.012353, - -0.0015051, - 0.057316, - -0.019018, - -0.033517, - -0.017754, - 0.0062137, - 0.033065, - 0.03113, - 0.022442, - 0.05782, - 0.017857, - -0.080891, - 0.024713, - 0.032205, - -0.006512, - -0.05295, - 0.0067233, - 0.028638, - -0.052836, - 0.023929, - 0.026916, - 0.0027087, - -0.027384, - 0.0062562, - 0.11276, - 0.0083142, - -0.019903, - -0.070502, - 0.012539, - 0.041655, - 0.032916, - -0.010688, - -0.0068933, - -0.0072099, - 0.032874, - 0.027771, - -0.033836, - -0.092524, - 0.026879, - -0.0047808, - -0.06321, - -0.0029587, - -0.011213, - -0.012065, - -0.035161, - -0.028024, - -0.012606, - 0.087139, - -0.043494, - -0.025487, - -0.023652, - -0.033749, - 0.030519, - 0.0078313, - 0.037285, - 0.044705, - -0.0064175, - 0.027385, - -0.042913, - 0.00019974, - 0.057074, - -0.060105, - -0.020882, - -0.0066722, - 0.024398, - -0.003201, - -0.056763, - 0.0026158, - -0.0074053, - -0.0042596, - 0.017449, - -0.029606, - 0.034425, - 0.0022754, - -0.011048, - -0.037636, - -0.072008, - -0.0079938, - 0.0067088, - 0.037141, - -0.010751, - -0.058229, - 0.034036, - -0.027428, - 0.027349, - 0.01447, - -0.00040557, - -0.035502, - -0.018136, - -0.024212, - -0.014208, - -0.036071, - 0.022235, - -0.0089514, - 0.013242, - 0.036572, - -0.036621, - 0.028999, - -0.033672, - -0.011259, - -0.0069644, - 0.028981, - -0.011666, - 0.0268, - 0.039952, - 0.0086439, - -0.00064791, - -0.053355, - 0.021503, - -0.057857, - -0.019774, - -0.052487, - -0.06688, - 0.035308, - -0.0054427, - 0.0044928, - 0.047656, - 0.076724, - 0.0076032, - -0.02961, - 0.035439, - -0.043875, - 0.022891, - 0.0068988, - -0.037021, - -0.021802, - -0.058478, - -0.0047116, - -0.01594, - 0.026123, - -0.019068, - 0.028875, - 0.028978, - 0.01968, - 0.017069, - -0.00064392, - -0.0018897 - ], - "era": [ - -0.019855, - -0.16562, - 0.066701, - 0.090293, - 0.017688, - 0.033317, - 0.025225, - -0.1306, - 0.1767, - 0.043783, - 0.021889, - -0.085231, - -0.0061466, - 0.066098, - -0.010033, - 0.11069, - 0.17899, - -0.051924, - 0.095106, - 0.088185, - 0.056631, - -0.055709, - -0.14606, - 0.13041, - 0.025847, - -0.025682, - 0.025838, - -0.092588, - -0.088268, - 0.038808, - -0.026871, - -0.045236, - 0.0013768, - -0.13946, - 0.011754, - 0.01859, - 0.093442, - 0.021395, - 0.034331, - 0.036453, - -0.057143, - -0.11953, - -0.028754, - 0.078832, - 0.03491, - 0.082121, - 0.039036, - 0.011311, - -0.013022, - -0.1238, - -0.048365, - -0.053672, - -0.021712, - 0.075827, - -0.037887, - 0.022446, - 0.073734, - 0.059889, - -0.024739, - -0.078429, - 0.13579, - 0.0078373, - 0.16497, - -0.15082, - 0.093688, - 0.02786, - -0.069785, - -0.016274, - 0.074819, - 0.020584, - -0.07177, - -0.041407, - 0.016207, - -0.029226, - 0.011542, - 0.11787, - -0.029381, - 0.020673, - -0.029698, - 0.10273, - 0.05915, - 0.027367, - 0.063019, - 0.16634, - -0.068482, - -0.08237, - -0.065932, - 0.0049089, - -0.063179, - -0.043366, - 0.043865, - 0.11422, - -0.13891, - 0.077933, - 0.10015, - 0.184, - -0.084332, - -0.10534, - -0.066756, - 0.011904, - 0.028747, - -0.071757, - 0.0089025, - -0.057744, - -0.032361, - -0.08042, - 0.12079, - 0.047936, - 0.026548, - 0.10939, - -0.061924, - 0.009154, - 0.086396, - 0.035644, - -0.15585, - 0.015184, - 0.0069234, - 0.0096016, - -0.037002, - 0.069629, - 0.034418, - -0.04366, - 0.066703, - 0.11826, - 0.10825, - 0.065943, - -0.04943, - -0.069058, - -0.004174, - 0.16077, - -0.11091, - -0.04489, - -0.044879, - 0.016692, - -0.063101, - -0.13127, - 0.0023507, - 0.029066, - -0.034797, - 0.033027, - 0.064797, - 0.075646, - 0.033076, - 0.13265, - 0.0027235, - -0.075384, - 0.095534, - -0.0060487, - 0.073227, - 0.002801, - 0.14503, - 0.027352, - 0.049115, - 0.016665, - 0.055942, - -0.026415, - 0.096397, - 0.10471, - 0.0097, - -0.085162, - -0.0033573, - -0.012493, - -0.10573, - 0.045158, - -0.047234, - -0.056335, - 0.0024511, - -0.072675, - 0.13211, - -0.087441, - 0.0016564, - 0.013213, - 0.014049, - 0.043717, - 0.032054, - 0.070434, - -0.05098, - 0.094426, - -0.0019277, - 0.087169, - -0.019767, - 0.02699, - -0.032708, - 0.0026489, - 0.0089982, - -0.039276, - 0.073083, - 0.14515, - -0.073581, - -0.034652, - 0.026058, - 0.16415, - -0.07439, - 0.052843, - -0.012089, - -0.052629, - -0.026051, - 0.010021, - -0.0026372, - 0.061811, - -0.18687, - 0.048471, - -0.069925, - -0.000012916, - -0.097935, - -0.073486, - 0.11588, - -0.0041116, - -0.024318, - -0.029926, - 0.21445, - -0.068944, - 0.060323, - 0.070796, - 0.048397, - 0.058816, - -0.041671, - 0.092222, - 0.0038924, - -0.18889, - 0.0058523, - 0.0035552, - 0.023627, - 0.17412, - -0.26226, - 0.0033517, - 0.10926, - 0.16097, - -0.08623, - 0.061246, - -0.058114, - -0.13488, - -0.082543, - -0.017281, - 0.040526, - 0.036796, - 0.0034463, - -0.026022, - 0.044164, - -0.023941, - 0.12724, - 0.087601, - -0.018819, - 0.040309, - 0.045125, - -0.058684, - -0.040768, - -0.088393, - -0.034616, - 0.058158, - 0.14624, - 0.027397, - -0.01424, - 0.10117, - -0.045703, - 0.10275, - -0.0083619, - 0.14884, - 0.089697, - 0.0052976, - 0.10087, - -0.086816, - 0.099407, - -0.10212, - 0.1028, - 0.062942, - 0.08079, - 0.061845, - 0.037999, - -0.045808, - 0.071764, - 0.12941, - -0.14149, - -0.066856, - 0.11619, - -0.14301, - -0.015154, - 0.087086, - -0.027459, - 0.068211, - 0.03121, - 0.10842, - 0.063223, - -0.047625, - -0.063609, - -0.059557, - -0.093272, - -0.040923, - -0.05812, - 0.021356, - 0.037522, - 0.1206, - -0.061754, - -0.12656, - 0.097006, - 0.063466, - 0.0038994, - 0.050436, - 0.050111, - -0.032568 - ], - "superstitions": [ - -0.028583, - 0.0037368, - 0.047113, - -0.067472, - -0.040897, - -0.060184, - 0.020718, - -0.041202, - 0.0046507, - 0.0060883, - 0.024193, - -0.036321, - 0.045926, - -0.05702, - 0.010627, - -0.047592, - 0.025422, - -0.026591, - 0.0011921, - 0.05061, - -0.02569, - 0.0078402, - -0.013366, - 0.038995, - -0.0038171, - -0.019916, - 0.0071627, - -0.0040502, - 0.093913, - -0.0090981, - 0.023312, - -0.032362, - 0.038898, - -0.03813, - 0.032191, - 0.011114, - 0.0039175, - -0.032067, - 0.0309, - -0.025305, - 0.032798, - -0.062403, - -0.018845, - 0.030894, - 0.013896, - -0.0016673, - -0.010457, - 0.026091, - 0.022142, - -0.08318, - -0.029558, - 0.022968, - 0.017116, - -0.0068598, - -0.015537, - 0.091644, - 0.035058, - -0.015856, - -0.029282, - 0.0066162, - 0.033214, - -0.0057212, - 0.047337, - -0.056168, - 0.019807, - 0.0029283, - -0.044199, - 0.070539, - 0.056335, - -0.01149, - 0.0022101, - -0.0038652, - 0.038938, - -0.016813, - 0.011711, - 0.052264, - 0.04196, - -0.04343, - -0.018191, - 0.01976, - -0.025117, - 0.0033817, - -0.055535, - 0.040591, - 0.02358, - -0.041127, - 0.013478, - 0.014382, - -0.043061, - -0.025891, - -0.023929, - 0.00072332, - -0.041839, - 0.0054457, - 0.020141, - 0.017976, - 0.027152, - 0.0016428, - -0.0012795, - 0.0047738, - -0.062921, - 0.01709, - -0.040734, - -0.060227, - 0.04072, - -0.01857, - 0.034151, - 0.0095963, - 0.018096, - -0.0043721, - 0.0024569, - 0.067264, - 0.045497, - 0.029662, - 0.026269, - 0.010776, - -0.010873, - 0.0090651, - -0.013682, - 0.011103, - -0.0097099, - 0.035947, - -0.050148, - -0.067573, - 0.075435, - 0.039687, - -0.019014, - 0.023917, - -0.0078233, - 0.099728, - 0.036898, - 0.047223, - 0.00087883, - -0.0014474, - -0.0020007, - -0.018419, - 0.0095898, - 0.048236, - -0.024374, - 0.01824, - 0.037996, - -0.033031, - -0.062026, - 0.034759, - 0.029495, - -0.048084, - -0.012236, - 0.052615, - -0.0091615, - -0.018924, - 0.022313, - 0.043548, - -0.03485, - 0.031364, - -0.018367, - 0.024596, - -0.012351, - -0.000098753, - -0.0078369, - -0.015053, - 0.056271, - 0.019564, - -0.013307, - -0.0078839, - 0.045299, - -0.044391, - 0.017514, - -0.021718, - -0.02991, - -0.022436, - -0.046617, - -0.025417, - -0.0077835, - 0.031029, - 0.053002, - 0.045353, - 0.038206, - 0.023498, - -0.0049507, - -0.00051811, - 0.019221, - -0.0036022, - -0.017356, - -0.016493, - -0.012399, - -0.0046602, - 0.0012768, - 0.074164, - -0.0039897, - -0.0099561, - 0.0061869, - 0.080203, - -0.074032, - -0.025718, - -0.0037864, - 0.026065, - -0.040414, - 0.023355, - -0.0065858, - 0.012892, - -0.089893, - -0.020609, - 0.04113, - -0.0087131, - -0.00098329, - 0.06851, - 0.058197, - -0.0046444, - 0.052587, - -0.02463, - 0.058212, - 0.056856, - 0.012965, - -0.004331, - 0.030727, - -0.000068646, - -0.024862, - 0.001316, - -0.074573, - -0.051785, - -0.0061353, - 0.0092165, - -0.051443, - 0.053097, - 0.045643, - -0.029075, - -0.0015026, - 0.025046, - -0.034103, - -0.0060764, - -0.0052421, - 0.019523, - -0.069419, - 0.011988, - 0.03891, - 0.024278, - -0.021658, - 0.041812, - 0.079121, - 0.018252, - -0.0076005, - -0.032198, - -0.0038503, - -0.011942, - 0.0038897, - 0.02135, - -0.023511, - -0.038307, - -0.038696, - 0.017323, - -0.017247, - -0.020359, - 0.004929, - 0.044582, - -0.01661, - 0.032599, - -0.0038953, - -0.00045723, - 0.00097704, - 0.031488, - 0.055221, - 0.031384, - 0.0052305, - -0.018639, - 0.024493, - -0.013049, - -0.013543, - 0.032942, - 0.010053, - -0.0054001, - -0.024704, - 0.04921, - -0.045081, - 0.0016573, - 0.048174, - -0.039126, - 0.0058088, - -0.045522, - -0.048792, - -0.046473, - 0.042688, - -0.018231, - -0.0039589, - -0.060445, - 0.011243, - 0.035459, - 0.021153, - 0.036023, - -0.036466, - 0.041984, - 0.027794, - 0.010563, - 0.027467, - 0.0009597, - 0.0052885, - 0.018413, - 0.038878, - 0.030073, - -0.0065934, - 0.0096098 - ], - "tribalism": [ - -0.0056203, - 0.0018172, - 0.050396, - -0.031432, - -0.083445, - 0.0027932, - 0.023326, - -0.052148, - 0.03227, - 0.0084701, - 0.045629, - -0.04059, - -0.045966, - 0.0094266, - -0.0093838, - -0.030095, - 0.092278, - -0.025297, - 0.030616, - 0.065198, - 0.0086864, - -0.027137, - -0.00063492, - 0.04624, - -0.031116, - -0.020504, - 0.017059, - -0.024684, - 0.075819, - 0.01812, - 0.0034696, - 0.00017531, - -0.02189, - -0.015567, - 0.02781, - -0.0023948, - 0.057362, - 0.029837, - -0.015032, - 0.0021712, - -0.068208, - -0.079286, - 0.0042388, - 0.071528, - 0.027954, - 0.01139, - -0.071517, - -0.031677, - 0.020886, - -0.11333, - 0.0032893, - 0.081376, - 0.037123, - -0.043919, - -0.025561, - 0.068588, - 0.054744, - -0.070818, - -0.061194, - 0.043464, - 0.039263, - -0.093607, - -0.026922, - -0.066235, - 0.0058058, - -0.024322, - -0.0037218, - 0.051807, - 0.065014, - -0.017676, - 0.038765, - -0.054417, - -0.003741, - -0.090633, - 0.049691, - 0.030081, - 0.0095316, - -0.062256, - -0.036278, - 0.049, - -0.10012, - -0.029177, - -0.084491, - 0.1225, - 0.033268, - -0.10982, - -0.077859, - 0.04982, - -0.0078943, - 0.014233, - -0.030494, - 0.050367, - -0.075532, - -0.0062536, - 0.055257, - 0.05358, - -0.023137, - -0.085325, - -0.0039905, - -0.14798, - 0.020187, - 0.04135, - -0.031448, - -0.092399, - -0.030886, - -0.052227, - -0.016608, - 0.035451, - -0.043684, - -0.034859, - 0.018866, - 0.10037, - 0.098864, - -0.039368, - -0.047092, - 0.071697, - 0.041319, - -0.042323, - -0.040067, - 0.057513, - 0.013128, - -0.036319, - 0.017323, - -0.053025, - 0.040551, - -0.007038, - -0.048419, - -0.019582, - 0.065724, - 0.15647, - 0.01493, - -0.0010301, - 0.028714, - 0.062542, - 0.016565, - 0.000030066, - -0.03444, - 0.038176, - 0.022303, - -0.050714, - 0.019746, - -0.10048, - 0.085079, - 0.0038444, - 0.043897, - -0.070371, - 0.0068483, - 0.020188, - -0.037016, - 0.028901, - 0.011804, - 0.04373, - -0.015385, - 0.045893, - -0.0017175, - 0.053696, - 0.066648, - 0.058047, - 0.031455, - -0.0072519, - 0.10161, - -0.019564, - -0.11589, - -0.016426, - -0.056153, - 0.027632, - 0.043018, - 0.084955, - 0.0048245, - 0.038692, - -0.033047, - -0.014873, - -0.017736, - 0.049763, - 0.038746, - 0.05331, - 0.054217, - 0.015864, - 0.042322, - -0.094872, - -0.0043166, - -0.023974, - -0.040944, - -0.0018306, - 0.033436, - -0.043324, - -0.022663, - 0.13012, - -0.06833, - -0.065644, - 0.011624, - 0.041191, - -0.073853, - 0.026845, - 0.0035233, - -0.0034126, - 0.030507, - -0.017367, - -0.0080852, - 0.057882, - -0.1435, - -0.045603, - -0.0081026, - -0.091177, - -0.10841, - 0.067209, - 0.045957, - -0.013367, - 0.052184, - -0.015334, - 0.094267, - 0.0075855, - -0.0047338, - -0.015233, - 0.11878, - 0.052607, - -0.0098776, - -0.0058613, - -0.015114, - -0.10009, - -0.020406, - 0.0058905, - -0.082355, - 0.074213, - -0.0048467, - -0.013478, - 0.010649, - 0.05075, - 0.044334, - -0.049091, - 0.00077819, - -0.041559, - -0.048174, - 0.0056267, - 0.024577, - 0.039752, - -0.0047346, - 0.033759, - 0.027445, - -0.043712, - 0.0052029, - 0.02972, - -0.069429, - 0.030298, - 0.046444, - 0.021594, - -0.059215, - -0.035005, - -0.052252, - 0.024786, - 0.016113, - 0.0095583, - -0.075502, - 0.013389, - 0.06817, - 0.014132, - 0.0085963, - 0.0563, - 0.058534, - -0.028826, - -0.012485, - 0.010985, - -0.02983, - 0.03029, - 0.020819, - 0.010235, - 0.010819, - 0.042599, - -0.063805, - 0.053112, - -0.045096, - 0.06077, - -0.077409, - -0.015638, - 0.052052, - -0.070909, - 0.035353, - 0.0036017, - -0.11587, - -0.0030783, - 0.07773, - -0.0096732, - -0.025959, - 0.030868, - -0.011533, - 0.046381, - 0.092081, - 0.023087, - -0.060388, - 0.027509, - 0.021257, - -0.008634, - -0.012041, - -0.060656, - -0.002174, - 0.0173, - 0.0042354, - 0.026618, - -0.0049102, - -0.072688 - ], - "pedagogy": [ - 0.051854, - -0.037522, - -0.016217, - 0.050949, - 0.020408, - -0.034713, - -0.011149, - -0.071291, - 0.00070403, - -0.079472, - 0.043724, - -0.051254, - 0.039285, - 0.0041174, - 0.020945, - 0.0042133, - 0.10004, - 0.06839, - 0.011947, - 0.018332, - -0.092506, - -0.021833, - 0.027053, - 0.078117, - -0.03323, - 0.05898, - -0.031198, - 0.052558, - 0.0012076, - 0.0002879, - 0.073014, - -0.040026, - -0.064929, - -0.058972, - -0.0030111, - 0.040411, - 0.0060307, - -0.016441, - -0.032464, - -0.045152, - -0.025251, - -0.14174, - -0.01542, - 0.0083803, - 0.045584, - -0.071717, - 0.036981, - 0.0069506, - -0.012182, - 0.0036565, - -0.027934, - -0.012346, - 0.01411, - 0.06043, - -0.058813, - 0.047263, - 0.023782, - 0.037913, - 0.028781, - 0.052952, - 0.0014362, - -0.0089308, - 0.077751, - 0.11243, - 0.072841, - -0.006313, - -0.01163, - 0.0028907, - 0.02269, - -0.062976, - 0.0085478, - -0.031029, - -0.025921, - 0.040628, - 0.041536, - -0.067554, - -0.02632, - -0.031598, - 0.045881, - -0.0077473, - -0.044303, - -0.014617, - -0.063982, - 0.032223, - -0.03901, - -0.025268, - -0.0018781, - 0.0042554, - -0.017398, - 0.070022, - 0.056481, - 0.0076576, - -0.067264, - 0.016311, - 0.013175, - 0.065197, - 0.082705, - -0.049205, - -0.039693, - -0.021458, - 0.021604, - 0.039566, - 0.005655, - -0.04099, - -0.025663, - -0.028032, - 0.085805, - 0.046005, - -0.0558, - -0.035362, - 0.022054, - 0.084337, - 0.020855, - 0.025475, - -0.060234, - -0.02333, - -0.02281, - 0.055487, - -0.046746, - -0.0043185, - 0.0086448, - -0.058609, - -0.017809, - -0.044689, - 0.06941, - 0.0098954, - -0.026503, - -0.06107, - -0.0058637, - 0.14099, - 0.013623, - -0.040366, - -0.013333, - 0.021744, - 0.021792, - 0.028737, - 0.056174, - -0.0013755, - 0.039945, - -0.041205, - -0.011506, - -0.023938, - 0.02898, - -0.0053843, - -0.018937, - -0.0934, - -0.038033, - 0.047561, - -0.037206, - -0.0095099, - 0.052432, - 0.04074, - 0.045656, - -0.087041, - -0.0001417, - 0.098293, - 0.047584, - 0.026036, - -0.01159, - -0.0063269, - 0.047899, - 0.038411, - -0.12919, - -0.0060849, - 0.0071258, - -0.03229, - 0.07476, - 0.016714, - -0.014444, - -0.10124, - 0.019614, - -0.0068845, - -0.038474, - -0.010735, - 0.051284, - 0.044468, - -0.023802, - 0.025242, - 0.0046334, - -0.042791, - -0.02494, - 0.026807, - -0.036531, - -0.012432, - -0.019409, - -0.026107, - -0.0029628, - 0.11661, - -0.036293, - 0.071124, - 0.044059, - 0.086612, - -0.018761, - -0.064072, - -0.0014302, - -0.032303, - 0.036903, - 0.091021, - 0.066711, - -0.0063122, - -0.15293, - -0.025696, - 0.040303, - -0.032474, - 0.0063986, - -0.030251, - -0.033666, - 0.0575, - -0.057893, - 0.0059438, - 0.087641, - 0.025275, - 0.0062359, - 0.012325, - 0.065427, - 0.076278, - 0.046436, - -0.079227, - -0.072928, - -0.032052, - -0.071096, - -0.017147, - 0.063971, - 0.087539, - -0.0065476, - -0.035023, - 0.078162, - 0.067173, - -0.035333, - -0.015124, - 0.056224, - -0.021802, - -0.059636, - -0.0067369, - 0.03478, - 0.056613, - 0.024755, - -0.037474, - -0.070409, - -0.029715, - 0.026504, - -0.014043, - 0.051762, - 0.030502, - 0.02805, - 0.065897, - -0.0897, - -0.0604, - -0.025381, - 0.029614, - 0.057829, - -0.014556, - -0.12533, - -0.066109, - -0.0035322, - -0.044394, - -0.028934, - 0.021817, - 0.032977, - -0.023145, - 0.054836, - -0.024223, - 0.069713, - 0.014405, - 0.021124, - 0.033815, - 0.005566, - 0.0069898, - -0.0035405, - 0.017467, - 0.043782, - 0.065481, - -0.063728, - -0.034288, - -0.0082547, - -0.020064, - -0.06631, - 0.029735, - 0.020722, - -0.019942, - 0.093814, - 0.014067, - 0.0061184, - -0.094734, - -0.02276, - -0.052346, - 0.027277, - 0.041151, - -0.022869, - 0.0089245, - -0.072839, - -0.035075, - -0.003839, - -0.059535, - 0.049198, - 0.05787, - 0.053186, - 0.040611, - 0.016948, - 0.029254 - ], - "revenues": [ - 0.027306, - -0.0069191, - 0.00053091, - -0.035238, - 0.082602, - -0.0050502, - -0.021112, - -0.091195, - 0.055041, - 0.041603, - 0.0024656, - -0.02342, - -0.0016442, - -0.0018751, - 0.010033, - 0.078857, - 0.032436, - -0.053897, - 0.064839, - -0.0093153, - 0.036796, - -0.078027, - -0.051611, - 0.06369, - 0.042358, - -0.012311, - -0.0037033, - -0.014069, - 0.11937, - -0.016093, - -0.038347, - 0.057858, - -0.081958, - -0.035583, - 0.010135, - 0.084614, - -0.070377, - 0.018591, - -0.039861, - -0.019966, - -0.016069, - -0.069934, - 0.021012, - 0.060033, - -0.021172, - -0.022577, - -0.033347, - -0.034804, - 0.0077748, - 0.0071252, - 0.0024199, - -0.034768, - 0.0078068, - 0.010144, - -0.11756, - -0.015404, - -0.058776, - 0.044562, - -0.0062581, - 0.0084224, - 0.019369, - -0.031186, - 0.1527, - 0.031815, - -0.019905, - 0.00095946, - 0.042564, - -0.036512, - 0.034283, - -0.055019, - 0.011758, - -0.059246, - 0.057114, - 0.032442, - 0.050698, - -0.009654, - 0.081902, - -0.03294, - 0.005825, - -0.10906, - -0.042535, - -0.066884, - -0.04089, - 0.067554, - 0.044158, - -0.0064936, - 0.038235, - -0.073503, - -0.047951, - -0.021084, - -0.062405, - -0.058229, - -0.096708, - 0.037608, - -0.094287, - 0.034933, - -0.0049506, - -0.068747, - 0.010965, - 0.05289, - -0.023125, - 0.015926, - -0.057872, - -0.049186, - 0.10247, - -0.031438, - -0.043805, - -0.0096634, - -0.078255, - 0.02846, - -0.0080252, - 0.076189, - 0.07805, - -0.041893, - 0.049337, - -0.044187, - -0.010686, - -0.0058838, - -0.023668, - 0.048946, - -0.028166, - 0.011543, - -0.024074, - -0.055291, - 0.11757, - 0.047635, - -0.047686, - -0.14943, - 0.015347, - 0.083859, - -0.013331, - -0.04772, - -0.051009, - 0.031569, - 0.028905, - -0.011833, - 0.011857, - 0.076381, - -0.061093, - 0.060061, - 0.0013196, - -0.040421, - 0.019635, - -0.024476, - -0.0335, - -0.10424, - 0.016222, - -0.021099, - -0.0048007, - -0.0080833, - 0.0070284, - 0.060919, - 0.048053, - -0.036497, - 0.057971, - -0.0286, - -0.0017214, - 0.051503, - -0.052631, - 0.0033173, - 0.097108, - 0.024509, - -0.044304, - 0.0035717, - -0.0025874, - 0.02036, - -0.0026347, - -0.013181, - 0.0033618, - -0.027026, - 0.01543, - 0.055425, - 0.018873, - -0.0068401, - -0.010571, - 0.028985, - -0.085029, - -0.029481, - -0.051109, - -0.026033, - -0.0055862, - -0.032646, - -0.0036902, - -0.073779, - -0.031287, - -0.0038217, - -0.010844, - 0.10819, - 0.0033654, - -0.042779, - -0.0084214, - 0.042718, - -0.044796, - 0.069445, - -0.018131, - -0.065292, - -0.06344, - 0.0041833, - 0.0058601, - -0.047988, - -0.13819, - 0.028845, - 0.039675, - 0.023852, - 0.06239, - 0.072765, - 0.027462, - 0.0032158, - -0.0089658, - -0.050172, - 0.073375, - -0.031184, - -0.036309, - -0.010547, - 0.006575, - -0.0035812, - -0.016555, - -0.018243, - 0.00217, - -0.029239, - 0.00098014, - -0.049174, - 0.042066, - 0.10353, - 0.072217, - -0.019648, - 0.017149, - 0.040342, - -0.009935, - -0.0087667, - 0.0045344, - -0.045465, - -0.1015, - 0.0473, - 0.084658, - -0.0063353, - -0.023853, - -0.0057821, - -0.026881, - -0.019384, - -0.039958, - 0.0077988, - -0.0027779, - -0.0051733, - -0.02038, - 0.0076329, - -0.025688, - -0.092356, - 0.025408, - -0.047946, - -0.036768, - 0.0059296, - 0.038743, - 0.067276, - -0.035158, - 0.026408, - -0.083244, - 0.048063, - -0.048673, - 0.07467, - 0.020712, - -0.038648, - -0.019887, - -0.032762, - 0.046188, - 0.028733, - 0.048642, - -0.041353, - 0.021263, - 0.13633, - 0.047139, - 0.077064, - -0.11612, - -0.052955, - -0.019046, - 0.0076191, - -0.016811, - 0.048583, - -0.044281, - 0.013668, - 0.0040951, - -0.036305, - -0.016544, - 0.021963, - 0.050668, - 0.0093023, - -0.058402, - 0.081606, - -0.08911, - 0.038455, - 0.053736, - 0.068197, - -0.041498, - 0.070151, - -0.020228, - -0.059716, - -0.047469, - -0.022989, - 0.0076753, - -0.027908 - ], - "dosage": [ - -0.10264, - -0.037913, - -0.065837, - -0.0053744, - 0.042559, - -0.0013957, - -0.076784, - -0.08885, - 0.012016, - -0.05156, - -0.067868, - -0.018424, - 0.053831, - 0.014336, - 0.021669, - -0.027133, - 0.013591, - -0.0033808, - 0.056007, - 0.01022, - -0.01567, - 0.01185, - 0.065906, - 0.07255, - -0.0032548, - -0.078546, - -0.038083, - 0.075766, - -0.0070369, - 0.10545, - -0.012294, - -0.023402, - 0.076624, - -0.089329, - -0.0061631, - 0.029876, - -0.016791, - -0.097737, - 0.070752, - -0.0055472, - -0.070323, - -0.16413, - -0.041324, - -0.053891, - 0.056103, - -0.053964, - 0.1037, - 0.096077, - -0.052022, - 0.10277, - -0.079657, - -0.00020598, - 0.03453, - -0.05244, - -0.052271, - 0.007229, - 0.098534, - 0.0606, - 0.017039, - 0.05319, - 0.060524, - 0.032995, - 0.15244, - 0.010787, - -0.0093152, - 0.0074529, - 0.11537, - -0.047918, - 0.0021851, - 0.019014, - 0.087452, - 0.077619, - -0.0036035, - 0.0053271, - -0.17985, - -0.08413, - -0.028148, - -0.05378, - -0.023395, - -0.099792, - -0.06757, - -0.10457, - 0.029368, - 0.055594, - -0.084674, - -0.05313, - 0.0069347, - -0.042042, - 0.01063, - -0.087827, - 0.091902, - -0.065804, - -0.090884, - -0.003367, - -0.081697, - 0.073072, - -0.023537, - 0.02098, - 0.064091, - -0.034631, - 0.047374, - 0.068273, - 0.017007, - -0.018825, - -0.040186, - -0.024171, - -0.0751, - -0.14475, - -0.037705, - 0.13865, - 0.08531, - 0.041097, - 0.073563, - -0.099351, - 0.0049768, - -0.012995, - 0.13839, - 0.03414, - -0.046401, - 0.06804, - -0.047046, - 0.1265, - 0.022854, - -0.024106, - 0.089927, - 0.069618, - -0.011023, - -0.13594, - 0.023836, - 0.10103, - -0.0086247, - -0.076589, - 0.011613, - -0.006377, - -0.11288, - -0.021493, - 0.012279, - 0.068928, - 0.044035, - -0.074013, - 0.089511, - 0.046637, - -0.1177, - 0.00093573, - -0.046564, - -0.069374, - -0.01869, - -0.012524, - 0.050877, - -0.049978, - -0.047693, - 0.070638, - -0.033375, - -0.067387, - 0.094838, - 0.12163, - 0.0073204, - 0.031935, - 0.076525, - 0.0027166, - 0.092947, - 0.053882, - -0.049665, - 0.077531, - 0.014261, - -0.049376, - -0.086151, - -0.029594, - 0.021839, - -0.084533, - -0.0066789, - 0.041956, - -0.020413, - 0.073336, - 0.074626, - 0.086047, - -0.057966, - -0.063122, - -0.035918, - -0.0067474, - 0.041082, - -0.067386, - -0.11943, - 0.0049391, - -0.0139, - -0.12586, - 0.092772, - 0.17149, - -0.00025891, - -0.064493, - 0.051796, - 0.0028271, - 0.04109, - -0.075913, - 0.0043774, - 0.040321, - -0.038533, - 0.10503, - -0.0083717, - 0.10191, - -0.16316, - 0.0014817, - 0.042116, - 0.074069, - -0.020846, - -0.020476, - 0.00082424, - 0.070269, - -0.059098, - -0.031716, - 0.15755, - -0.001315, - 0.013108, - 0.061531, - 0.081778, - -0.069699, - 0.054364, - 0.062635, - -0.059269, - -0.00014625, - -0.0031485, - 0.02746, - -0.0081102, - 0.094879, - 0.095516, - 0.041883, - -0.014257, - 0.04017, - 0.050437, - 0.023909, - -0.11128, - -0.074945, - -0.12563, - -0.03908, - 0.072355, - -0.062572, - -0.0048558, - -0.070379, - 0.041241, - -0.0014344, - 0.027324, - 0.079974, - -0.0081587, - -0.099077, - -0.0584, - -0.0020494, - 0.014267, - -0.073146, - 0.058933, - -0.085455, - 0.044746, - -0.015566, - 0.027296, - 0.024757, - 0.038895, - -0.090721, - 0.011465, - 0.048708, - 0.06501, - -0.026599, - 0.014726, - 0.020082, - 0.029633, - -0.091839, - -0.045909, - -0.072587, - -0.078955, - 0.0024734, - -0.039593, - 0.11079, - -0.085574, - 0.082655, - -0.099847, - -0.11212, - 0.043001, - -0.019639, - -0.021561, - -0.035487, - -0.050431, - 0.0096876, - 0.11964, - -0.011113, - -0.066569, - -0.029813, - 0.078154, - 0.17997, - -0.063735, - 0.13686, - -0.017354, - -0.15988, - 0.013985, - -0.0077141, - 0.012677, - -0.12441, - -0.065045, - -0.042012, - 0.062596, - -0.05551, - 0.0022532, - 0.029225 - ], - "history": [ - 0.0004994, - -0.11979, - 0.041664, - 0.018448, - 0.023055, - -0.014326, - 0.0055103, - -0.085149, - 0.036061, - -0.00033506, - 0.013825, - -0.096255, - 0.05702, - 0.020905, - 0.037631, - -0.010683, - 0.08268, - -0.028594, - 0.055064, - 0.01055, - -0.017453, - -0.00033261, - -0.049047, - 0.086538, - -0.015647, - -0.00039618, - -0.026524, - 0.022156, - 0.011583, - 0.035413, - 0.03093, - 0.0087268, - 0.0048869, - -0.096043, - 0.017574, - 0.028477, - 0.021691, - 0.042978, - -0.023558, - -0.026909, - -0.046762, - -0.1127, - 0.049743, - 0.03374, - 0.033511, - -0.015354, - 0.01956, - -0.02252, - -0.0205, - -0.0041239, - -0.028539, - 0.037673, - 0.037221, - -0.012247, - -0.0319, - 0.024293, - -0.019062, - -0.0069509, - -0.054359, - -0.0073019, - 0.037644, - -0.00247, - 0.11805, - -0.031454, - 0.043679, - -0.020713, - -0.04886, - 0.12027, - 0.074109, - 0.046989, - -0.053726, - -0.016919, - -0.022894, - 0.00089934, - 0.046411, - -0.0077484, - 0.013089, - -0.038993, - 0.039234, - -0.012358, - -0.0053718, - 0.022607, - -0.06743, - 0.072297, - -0.089247, - -0.013407, - -0.0013973, - -0.057331, - 0.021766, - 0.0034241, - 0.044444, - 0.069061, - -0.085875, - 0.023406, - 0.017008, - 0.03149, - -0.028678, - 0.0025108, - 0.081062, - -0.013622, - 0.0097292, - -0.023504, - 0.049491, - -0.01802, - 0.0026451, - -0.064925, - 0.0056327, - 0.026372, - 0.03798, - 0.048671, - 0.003918, - 0.039854, - 0.04018, - 0.0029997, - -0.038373, - 0.056854, - -0.0085902, - 0.027131, - -0.072598, - 0.033407, - -0.0043523, - -0.025547, - 0.043089, - 0.020404, - -0.0088056, - 0.052822, - -0.069589, - -0.057432, - 0.03704, - 0.16935, - 0.0033043, - -0.013597, - 0.007461, - 0.013175, - 0.0087714, - -0.053248, - 0.045602, - 0.027178, - 0.036243, - -0.072615, - 0.017141, - 0.035656, - -0.032794, - 0.034531, - 0.02132, - -0.0096112, - 0.030482, - -0.010215, - 0.042659, - -0.048409, - 0.042024, - 0.058682, - 0.0048399, - -0.066512, - -0.015829, - 0.0029612, - 0.068895, - 0.033066, - 0.016299, - -0.011087, - -0.011322, - 0.014816, - -0.074365, - 0.0049547, - 0.0020752, - 0.03545, - 0.028859, - -0.010917, - 0.0014234, - -0.03049, - 0.015061, - -0.049466, - -0.020262, - 0.011866, - 0.026172, - 0.053556, - 0.036681, - 0.0081459, - 0.0082253, - 0.054768, - -0.017547, - 0.029308, - 0.016513, - -0.047246, - 0.05302, - -0.012054, - 0.026939, - 0.099385, - 0.011731, - -0.0094518, - 0.04681, - 0.06861, - -0.044332, - 0.0022398, - -0.06042, - 0.031632, - -0.01882, - -0.029919, - 0.0019528, - 0.0097828, - -0.12607, - -0.010274, - -0.012805, - -0.10229, - -0.01618, - -0.047098, - 0.0067259, - -0.020047, - -0.00734, - 0.00090786, - 0.099569, - 0.013702, - 0.0093748, - 0.0044234, - 0.067044, - 0.030894, - -0.02242, - -0.042046, - 0.000040293, - -0.030414, - 0.029895, - -0.0053188, - -0.0043619, - 0.11472, - 0.021629, - 0.028493, - 0.064634, - 0.085868, - -0.063605, - -0.01307, - 0.038249, - -0.074251, - -0.075307, - 0.0065787, - 0.015832, - -0.018401, - -0.022612, - 0.020617, - 0.022032, - 0.0033398, - 0.039463, - 0.039235, - -0.016426, - 0.018139, - -0.020841, - -0.03792, - -0.055899, - -0.041626, - -0.03725, - -0.042068, - 0.076909, - -0.0017839, - 0.022935, - -0.008133, - -0.012377, - 0.02708, - -0.046204, - 0.054546, - 0.059847, - 0.03628, - 0.010191, - -0.0081062, - 0.01203, - -0.0085281, - 0.016217, - -0.05009, - 0.0089039, - 0.053074, - 0.081694, - -0.032151, - 0.036244, - 0.092418, - -0.10331, - -0.035571, - 0.048033, - -0.050096, - -0.025059, - 0.019187, - -0.032761, - -0.0017597, - 0.0788, - -0.056318, - 0.0024359, - -0.028305, - -0.0080326, - 0.003587, - -0.057725, - -0.0078825, - 0.0019196, - -0.0026957, - -0.014264, - 0.043341, - -0.029357, - -0.030363, - 0.035499, - 0.018092, - -0.0039921, - -0.014594, - 0.0060206, - 0.013024 - ], - "iconography": [ - -0.015233, - -0.026893, - 0.063912, - -0.0027451, - -0.02836, - -0.076559, - -0.020624, - -0.089062, - -0.0066232, - 0.011491, - 0.034382, - -0.032892, - 0.002347, - -0.0067697, - -0.031871, - 0.0054124, - 0.037822, - 0.015866, - 0.0064495, - -0.0035806, - -0.066196, - 0.028892, - 0.010254, - 0.046477, - 0.020502, - 0.024032, - -0.031166, - 0.001694, - 0.056328, - 0.038704, - -0.028587, - -0.001873, - 0.063776, - -0.067855, - -0.000043557, - -0.0057631, - 0.016733, - -0.0027717, - 0.029668, - -0.007033, - -0.0042031, - -0.086517, - 0.069012, - 0.030003, - 0.0032898, - -0.016062, - 0.028476, - -0.018091, - 0.044123, - 0.0094255, - -0.02098, - -0.06023, - -0.057059, - 0.030644, - -0.035473, - 0.052796, - 0.035576, - -0.0030165, - -0.04534, - -0.020966, - 0.0088109, - -0.085686, - 0.11219, - -0.0023849, - 0.039552, - 0.0065036, - -0.019367, - 0.014731, - 0.042039, - -0.013432, - -0.025738, - 0.070048, - -0.01986, - -0.017264, - -0.01866, - -0.012241, - 0.0050227, - -0.011198, - 0.026411, - -0.032072, - -0.036931, - 0.021154, - -0.010022, - 0.035575, - -0.039608, - -0.045816, - 0.0051934, - -0.0016473, - 0.0057766, - -0.024502, - -0.052177, - 0.0079299, - -0.054234, - 0.015177, - 0.057961, - 0.04734, - -0.072133, - -0.0081672, - 0.015838, - 0.016529, - 0.015697, - -0.014211, - 0.0087897, - -0.020535, - -0.024072, - -0.025828, - -0.012947, - 0.0051994, - -0.042559, - 0.028637, - -0.013891, - 0.098887, - 0.0088849, - -0.040169, - -0.056217, - -0.019551, - -0.042308, - 0.049241, - -0.023203, - 0.030508, - 0.047359, - 0.029191, - -0.06285, - -0.038759, - 0.074461, - 0.011017, - -0.022148, - 0.0059409, - 0.037662, - 0.14795, - -0.056805, - -0.0217, - -0.065685, - 0.029915, - 0.043304, - 0.0082232, - -0.049716, - 0.010734, - 0.052469, - -0.020516, - -0.0062452, - 0.020382, - -0.038341, - 0.097342, - -0.017608, - -0.068767, - 0.017405, - 0.019889, - 0.0048764, - -0.021861, - 0.022157, - -0.0050012, - 0.026124, - -0.038923, - -0.021046, - 0.039292, - -0.0138, - 0.028318, - -0.0056604, - 0.014656, - 0.026542, - -0.068974, - -0.071326, - 0.010234, - -0.015196, - -0.046799, - -0.0060778, - -0.025802, - 0.012237, - -0.027292, - 0.0024836, - 0.014197, - 0.0091232, - -0.044263, - 0.024683, - 0.035854, - 0.00019866, - 0.010409, - -0.053108, - -0.0087148, - -0.029928, - -0.0069767, - 0.03655, - -0.023643, - -0.013611, - 0.012005, - 0.027711, - 0.11998, - 0.036597, - -0.051305, - 0.003395, - 0.044744, - -0.026877, - 0.020233, - -0.034748, - 0.0016404, - -0.026011, - -0.030659, - 0.0037859, - -0.016451, - -0.15151, - 0.013268, - -0.0040347, - -0.065737, - -0.0094118, - 0.043404, - -0.0098597, - -0.043852, - 0.011182, - 0.0040013, - 0.042062, - 0.049189, - 0.011448, - 0.0091017, - 0.0039786, - 0.013178, - 0.0054946, - -0.031312, - -0.071962, - -0.010849, - -0.05264, - -0.043346, - 0.012857, - 0.10243, - 0.03004, - -0.011109, - 0.059246, - 0.048631, - 0.0017823, - -0.0017401, - -0.026006, - -0.00082125, - -0.029504, - -0.025694, - 0.015771, - 0.032088, - 0.012335, - -0.0058597, - 0.015212, - -0.048234, - 0.02292, - -0.0034673, - -0.10613, - -0.032012, - 0.020512, - 0.0058703, - -0.13969, - -0.010908, - -0.028438, - 0.012275, - 0.029554, - -0.064146, - -0.031366, - 0.0077139, - 0.0057415, - 0.034818, - -0.022877, - 0.036913, - 0.048089, - 0.0010128, - 0.045439, - 0.0053932, - 0.044986, - 0.011397, - 0.11236, - -0.022303, - 0.024564, - -0.026259, - -0.026874, - -0.0095584, - 0.024837, - 0.022642, - -0.066011, - -0.056712, - -0.0039312, - 0.022011, - -0.0060803, - 0.019822, - -0.061999, - -0.0071147, - 0.092942, - 0.019468, - 0.095371, - 0.0040889, - -0.02737, - -0.022509, - 0.02014, - 0.026227, - -0.0027756, - 0.013348, - -0.012838, - -0.01097, - -0.0022646, - -0.03715, - 0.031087, - 0.075406, - -0.0019132, - -0.022776, - 0.071616, - 0.041602 - ], - "prehistory": [ - -0.04038, - -0.080452, - -0.0078355, - -0.0032771, - 0.033414, - 0.023532, - 0.0023884, - -0.080943, - 0.033786, - 0.023248, - 0.032572, - -0.060135, - 0.013783, - 0.024897, - 0.049266, - -0.054922, - 0.076713, - -0.00076225, - 0.015148, - 0.041102, - -0.03581, - 0.020319, - -0.010317, - 0.062969, - 0.013536, - -0.01768, - -0.039461, - 0.043934, - 0.023516, - 0.041304, - 0.047319, - -0.012204, - 0.076209, - -0.059815, - 0.0040617, - -0.002445, - 0.059314, - 0.022444, - 0.043895, - -0.02012, - -0.038368, - -0.068802, - 0.058443, - 0.0078602, - 0.05248, - 0.01587, - 0.014352, - -0.044416, - 0.0015264, - -0.020228, - -0.032672, - 0.013317, - 0.0081825, - -0.041424, - -0.057106, - 0.020703, - 0.037324, - 0.026052, - -0.005683, - 0.0073026, - 0.032784, - 0.022417, - 0.044755, - 0.0024849, - 0.066025, - 0.011199, - -0.035591, - 0.029734, - 0.062912, - 0.046669, - -0.05565, - -0.016334, - 0.00040218, - -0.01267, - -0.042459, - 0.041748, - -0.020031, - 0.010352, - 0.039214, - 0.013945, - -0.01992, - 0.027116, - 0.011654, - 0.032106, - -0.059653, - -0.0081598, - 0.0073367, - -0.054118, - 0.01233, - 0.025177, - 0.0075129, - 0.035984, - -0.067634, - 0.041034, - 0.0028595, - 0.034721, - -0.042154, - 0.062673, - 0.0051737, - -0.046513, - 0.00070822, - 0.00766, - 0.021797, - 0.0072699, - 0.0078595, - -0.021113, - 0.046908, - 0.011074, - -0.0077149, - -0.040072, - -0.0028046, - 0.00861, - 0.032198, - -0.0072487, - -0.025654, - 0.048347, - -0.06948, - 0.047577, - -0.047102, - 0.049104, - -0.0011614, - -0.000050516, - -0.0075597, - -0.02562, - -0.026683, - -0.0086633, - -0.045647, - -0.078737, - 0.027779, - 0.10588, - 0.0066563, - 0.022591, - -0.080314, - 0.0092592, - -0.00082637, - -0.0349, - -0.0061794, - 0.024718, - 0.051407, - -0.020373, - -0.0067547, - 0.016046, - 0.076057, - 0.014649, - 0.025565, - -0.035228, - 0.026148, - -0.0029364, - 0.002434, - -0.065499, - 0.061051, - 0.046581, - -0.019419, - 0.017578, - 0.0094102, - 0.0022414, - 0.063601, - -0.021035, - -0.0050142, - -0.015682, - -0.0021764, - -0.012996, - -0.025557, - 0.031098, - 0.02484, - 0.021127, - -0.045764, - 0.043018, - 0.036927, - -0.043455, - -0.010662, - -0.06972, - 0.020162, - 0.029345, - 0.0077514, - 0.053985, - 0.064775, - 0.0076264, - -0.012391, - 0.028166, - -0.024214, - 0.037304, - 0.034753, - -0.030007, - 0.041054, - -0.020364, - 0.050849, - 0.089756, - 0.027953, - 0.030199, - 0.089091, - 0.029956, - -0.063186, - -0.019767, - -0.03257, - 0.04472, - -0.059153, - -0.013718, - 0.0061667, - 0.068442, - -0.1154, - -0.012527, - -0.038041, - -0.047062, - 0.0043725, - 0.10597, - -0.012705, - -0.025589, - -0.008033, - 0.022447, - 0.099807, - -0.019532, - -0.01156, - -0.016849, - 0.080985, - 0.049283, - 0.0153, - -0.024605, - -0.0038636, - -0.043811, - -0.012892, - 0.0071054, - -0.045155, - 0.086448, - -0.047456, - -0.012214, - 0.054164, - 0.065478, - -0.035476, - -0.02997, - 0.010114, - -0.017594, - -0.077213, - -0.019835, - 0.038243, - -0.010783, - 0.012878, - 0.0789, - 0.00026509, - -0.031292, - 0.018597, - 0.067814, - -0.054009, - 0.013201, - -0.0068695, - -0.03543, - -0.089167, - -0.03322, - -0.11548, - -0.05196, - 0.040593, - -0.020789, - 0.024818, - -0.010542, - -0.0061808, - 0.034038, - -0.041234, - 0.053399, - 0.075992, - -0.0097373, - 0.065369, - 0.017411, - -0.0074206, - -0.013408, - 0.043352, - -0.067786, - -0.028765, - 0.046786, - 0.023894, - -0.047436, - 0.039954, - 0.053219, - -0.073708, - -0.013401, - 0.017404, - -0.089389, - 0.030649, - 0.045811, - -0.018381, - -0.029902, - 0.029552, - -0.019106, - -0.028672, - -0.019862, - -0.033057, - 0.026793, - -0.019096, - -0.057216, - -0.022222, - -0.008799, - -0.023099, - 0.055956, - 0.0046591, - -0.096868, - 0.070796, - 0.05013, - -0.011056, - 0.03839, - -0.042002, - -0.040689 - ], - "nursing": [ - -0.028016, - -0.091655, - -0.036303, - -0.079105, - 0.062748, - -0.015201, - 0.0057943, - -0.10755, - 0.082808, - -0.027852, - -0.03708, - -0.080401, - -0.045728, - 0.063799, - -0.039628, - 0.025063, - 0.10111, - 0.034884, - 0.01945, - -0.066085, - 0.015287, - -0.031363, - 0.010429, - 0.053791, - 0.0099771, - -0.047427, - -0.05736, - 0.031315, - 0.0017988, - 0.0087326, - 0.014548, - -0.043384, - -0.0061065, - -0.024214, - 0.070188, - 0.085365, - 0.038514, - -0.019742, - 0.092255, - 0.033788, - 0.0042209, - -0.10645, - 0.035513, - -0.061556, - 0.076986, - -0.012942, - 0.025084, - 0.042768, - -0.0044756, - 0.0079925, - -0.028806, - 0.030077, - 0.029966, - 0.041751, - -0.071043, - 0.022584, - -0.018864, - 0.054247, - -0.0081495, - -0.03409, - -0.0041548, - -0.066145, - 0.094467, - 0.0036978, - 0.026322, - -0.0011838, - -0.075818, - -0.016895, - -0.065165, - -0.076954, - -0.017809, - 0.041366, - 0.094082, - -0.0269, - 0.053761, - -0.064077, - -0.046271, - 0.01052, - -0.022562, - 0.022631, - -0.011767, - 0.015746, - -0.054882, - 0.042295, - -0.11804, - 0.033903, - 0.067215, - -0.013786, - -0.045793, - -0.021191, - 0.073026, - 0.061555, - -0.089936, - 0.013106, - 0.056172, - 0.10189, - 0.085376, - 0.029065, - 0.034812, - -0.015718, - -0.0054125, - 0.020097, - -0.017393, - -0.010955, - 0.083953, - -0.14363, - 0.034368, - 0.012996, - -0.024429, - 0.055267, - 0.034317, - 0.10241, - 0.043816, - 0.063342, - 0.034085, - 0.028536, - -0.019256, - -0.049265, - -0.057321, - -0.064559, - -0.10783, - 0.025698, - 0.055398, - -0.010814, - 0.040046, - 0.070346, - -0.048955, - -0.071563, - 0.016284, - 0.089415, - -0.0039258, - 0.033579, - -0.047264, - -0.066283, - -0.01792, - 0.0021993, - -0.012991, - -0.0070056, - 0.059139, - -0.066229, - 0.032958, - -0.034701, - 0.014237, - -0.0015039, - 0.02813, - -0.032039, - -0.013101, - -0.016254, - 0.024083, - 0.023769, - 0.030672, - 0.061088, - 0.050995, - -0.073886, - 0.038289, - 0.02859, - 0.054572, - -0.0072533, - 0.0066224, - -0.029088, - 0.051251, - 0.031338, - -0.042109, - 0.065005, - -0.027987, - -0.066814, - -0.022906, - -0.039774, - -0.096962, - -0.035535, - 0.028181, - 0.0054587, - -0.076934, - -0.0033126, - 0.073673, - 0.053063, - -0.0022268, - 0.023979, - -0.026618, - 0.00021196, - 0.00072013, - 0.0062226, - -0.16191, - -0.016866, - -0.039263, - -0.038856, - 0.042809, - 0.085774, - 0.019627, - -0.10041, - 0.023737, - 0.080561, - 0.01554, - -0.063226, - 0.065648, - 0.018861, - 0.04779, - 0.005277, - -0.057467, - -0.086548, - -0.18957, - 0.059336, - -0.0074248, - -0.02699, - -0.019491, - -0.022558, - -0.05471, - -0.16018, - 0.017223, - -0.013996, - 0.1358, - 0.0080493, - -0.014658, - 0.075554, - -0.024878, - 0.094521, - 0.0081949, - -0.04038, - 0.019206, - -0.0097131, - -0.041988, - 0.0093307, - -0.0013071, - 0.099763, - -0.020446, - -0.0050488, - -0.060268, - 0.060847, - 0.010876, - -0.038279, - 0.060178, - -0.0037737, - -0.053405, - -0.019638, - -0.010682, - 0.036963, - -0.041286, - 0.054329, - 0.012278, - 0.010242, - 0.042781, - 0.011447, - -0.01738, - 0.0029882, - -0.057244, - 0.055484, - -0.067794, - -0.0039833, - -0.011496, - 0.074822, - 0.03251, - 0.041801, - 0.0092197, - -0.08418, - 0.0071955, - -0.028396, - -0.016469, - 0.047445, - 0.067625, - 0.028594, - -0.067582, - -0.074345, - -0.0013724, - 0.047015, - 0.068064, - 0.042521, - 0.054955, - 0.022593, - 0.0000016704, - 0.02725, - -0.050467, - 0.051146, - -0.10091, - -0.025939, - -0.037851, - -0.019581, - -0.0094278, - -0.009081, - 0.043709, - 0.081386, - 0.071698, - -0.0018754, - -0.04532, - 0.021374, - 0.0043728, - 0.06659, - 0.015594, - -0.039115, - -0.011775, - -0.0047431, - 0.041976, - 0.037396, - -0.044354, - -0.035802, - -0.021095, - 0.023878, - 0.031965, - 0.074095, - 0.066984, - 0.12271 - ], - "business-oriented": [ - -0.0052765, - -0.015224, - -0.009767, - -0.021609, - -0.031155, - -0.0035852, - 0.00031487, - -0.064098, - -0.005387, - 0.043139, - -0.0022349, - -0.041, - -0.061115, - 0.024052, - 0.0099085, - 0.029888, - 0.048523, - 0.0015464, - 0.054663, - 0.007137, - -0.0042998, - -0.0075612, - 0.017645, - 0.024573, - -0.019766, - 0.0091347, - 0.0025681, - 0.031515, - 0.012209, - 0.00008777, - -0.016494, - -0.059386, - -0.02417, - -0.051937, - 0.056146, - 0.016691, - 0.016974, - 0.0099222, - 0.036302, - 0.0202, - 0.012893, - -0.099706, - -0.0069751, - 0.036786, - -0.027151, - -0.02939, - 0.019895, - 0.0051404, - 0.0077655, - -0.029338, - -0.025122, - -0.022032, - -0.022301, - 0.039513, - 0.017911, - -0.0052949, - 0.025195, - 0.011487, - -0.013758, - 0.014166, - -0.0031326, - 0.021861, - 0.07377, - 0.027685, - 0.029741, - 0.0056916, - 0.017826, - 0.0087576, - 0.0053245, - 0.0022717, - 0.010176, - 0.001557, - 0.028756, - 0.015875, - -0.00029307, - -0.012073, - -0.014365, - -0.014688, - -0.0027673, - -0.016045, - -0.0018834, - 0.012912, - 0.0015017, - 0.0035389, - -0.011172, - -0.03802, - -0.020657, - 0.010325, - 0.024582, - 0.025551, - 0.029223, - -0.0049496, - -0.068991, - 0.030038, - 0.021679, - 0.058037, - -0.011244, - -0.037274, - -0.014908, - 0.04137, - 0.035856, - 0.010478, - -0.035046, - -0.047151, - -0.013428, - -0.052273, - 0.034117, - -0.0081524, - -0.013164, - -0.00025257, - -0.013506, - 0.034651, - 0.014664, - 0.01833, - -0.026791, - -0.033244, - -0.024511, - -0.023178, - -0.014728, - 0.014518, - -0.021962, - -0.018623, - 0.011046, - -0.027106, - 0.048966, - -0.00010371, - -0.033258, - 0.028542, - 0.021836, - 0.012308, - 0.0087633, - 0.052439, - -0.016897, - -0.013439, - -0.0039268, - 0.012309, - 0.055524, - 0.024739, - -0.00056117, - 0.011818, - 0.043742, - 0.0048706, - -0.023412, - -0.0035942, - -0.056039, - -0.0053967, - 0.017898, - -0.011125, - -0.0026078, - 0.0094163, - 0.035416, - 0.080493, - -0.010254, - -0.0024202, - 0.01991, - 0.034303, - -0.022704, - -0.0094349, - 0.0058843, - 0.0003702, - 0.023466, - 0.039873, - 0.001258, - 0.002402, - 0.00047678, - 0.02292, - 0.011126, - -0.0091549, - -0.010066, - 0.04539, - -0.026917, - -0.0071558, - 0.0020926, - 0.034814, - 0.017685, - 0.0066401, - -0.037197, - 0.0047904, - -0.031772, - 0.0051286, - -0.0066387, - -0.030586, - 0.012888, - 0.018767, - 0.023468, - -0.028784, - -0.011408, - 0.052419, - -0.038266, - -0.00053136, - -0.054506, - 0.054807, - 0.04191, - 0.0025513, - 0.014726, - -0.0014155, - 0.021911, - -0.015259, - 0.0054241, - -0.015683, - -0.06546, - 0.036365, - 0.017155, - -0.019408, - -0.018799, - 0.007462, - -0.036547, - 0.0026032, - 0.0056245, - 0.0015278, - 0.073932, - -0.0053921, - 0.015539, - -0.046835, - -0.026475, - 0.028593, - -0.016337, - -0.017033, - -0.039196, - 0.010236, - -0.016251, - -0.02899, - -0.022422, - 0.0574, - -0.025351, - -0.017462, - 0.045604, - 0.032509, - 0.014906, - -0.032695, - 0.014991, - -0.020908, - 0.0022376, - -0.0017279, - 0.0062526, - 0.0060056, - -0.01417, - -0.035281, - -0.015549, - -0.0078896, - 0.033454, - 0.019859, - 0.041283, - 0.020518, - -0.064472, - 0.0042479, - 0.00062295, - 0.0016459, - 0.016913, - -0.019757, - 0.028198, - 0.014831, - -0.039251, - 0.0049077, - -0.030832, - 0.018633, - -0.059897, - -0.013117, - 0.025927, - -0.000087552, - 0.0070087, - 0.053679, - -0.013791, - -0.00036113, - 0.01851, - 0.037941, - -0.010166, - 0.0060753, - -0.0057366, - 0.042043, - -0.038754, - 0.032253, - -0.050171, - -0.019903, - 0.013869, - -0.056667, - -0.0088449, - 0.026393, - 0.0019893, - 0.022647, - 0.070234, - 0.017681, - 0.008947, - 0.029508, - -0.025654, - -0.014315, - -0.010679, - -0.064436, - -0.023083, - -0.019828, - -0.034163, - 0.028543, - 0.013789, - 0.025791, - 0.0023792, - 0.024006, - -0.025109, - 0.017059, - -0.019188, - -0.0068074 - ], - "painkiller": [ - -0.09927, - -0.022423, - 0.0040033, - 0.018986, - 0.02333, - -0.038732, - -0.026803, - -0.068058, - 0.022328, - 0.021545, - -0.071222, - 0.028039, - 0.02847, - 0.01203, - -0.0037222, - -0.0089538, - 0.017745, - -0.042027, - 0.011426, - -0.019946, - -0.025777, - -0.016574, - 0.058787, - 0.00020969, - 0.083894, - -0.037693, - 0.06203, - 0.049236, - -0.0036271, - 0.027707, - -0.033274, - 0.01493, - 0.0077733, - -0.023375, - 0.015921, - 0.016077, - -0.015135, - -0.085549, - -0.016532, - 0.026638, - 0.026168, - -0.090358, - -0.038581, - 0.0022389, - 0.06223, - -0.011068, - 0.067485, - 0.087121, - 0.028159, - 0.044685, - -0.056824, - -0.023622, - 0.022152, - -0.021758, - -0.036518, - -0.018686, - 0.031176, - 0.019615, - -0.0065349, - 0.011223, - -0.060385, - -0.0046747, - 0.10505, - 0.0017768, - -0.097771, - 0.012502, - -0.00083594, - 0.018809, - -0.031768, - -0.031918, - 0.0053659, - 0.080106, - -0.0013778, - -0.028376, - -0.036223, - 0.021003, - 0.0053809, - -0.027394, - -0.021841, - -0.089625, - 0.016984, - 0.0040327, - -0.066755, - 0.054527, - -0.01103, - 0.039819, - 0.1119, - -0.004507, - 0.081678, - -0.0030621, - 0.064768, - -0.03042, - -0.1089, - -0.012913, - -0.0030378, - 0.080783, - 0.024473, - -0.0087162, - 0.041136, - -0.005775, - -0.029298, - 0.040079, - 0.013384, - 0.012462, - -0.014597, - -0.07269, - -0.06094, - -0.076441, - 0.018623, - 0.015458, - -0.0066535, - 0.062617, - 0.059883, - -0.022133, - 0.050197, - 0.092941, - -0.00162, - -0.03487, - -0.032067, - 0.033018, - -0.013254, - 0.014641, - -0.05015, - -0.093867, - 0.064215, - 0.058066, - -0.061723, - -0.0090461, - -0.012388, - 0.0088509, - -0.036032, - -0.056961, - -0.052399, - 0.0084719, - 0.009982, - -0.063735, - -0.066385, - 0.014619, - 0.04184, - -0.060248, - 0.08395, - 0.027416, - -0.057625, - -0.04454, - -0.0066795, - -0.045659, - 0.071307, - 0.009955, - 0.032764, - -0.041909, - 0.024098, - 0.028658, - 0.017898, - 0.0083659, - -0.015086, - -0.0050799, - 0.0073337, - 0.016039, - 0.067711, - -0.0065757, - 0.064194, - 0.029299, - -0.035444, - 0.035151, - 0.01125, - -0.050387, - -0.02396, - -0.02036, - 0.012576, - -0.055653, - -0.009814, - -0.034936, - 0.0016396, - 0.018439, - 0.0037832, - 0.055983, - -0.064384, - -0.045724, - -0.062654, - -0.048984, - 0.029566, - -0.054522, - -0.10109, - -0.039219, - 0.0052804, - -0.082798, - 0.031004, - 0.12572, - -0.00086689, - -0.10549, - 0.078875, - 0.045945, - 0.046503, - 0.012256, - -0.0015001, - -0.016226, - -0.00040932, - -0.017199, - 0.037278, - -0.0074142, - -0.097858, - 0.047819, - -0.070303, - 0.0025495, - 0.0074642, - -0.028685, - 0.027931, - 0.0034774, - 0.015795, - -0.044262, - 0.10628, - 0.043835, - 0.026936, - 0.053666, - 0.075448, - -0.014846, - 0.011611, - 0.011792, - 0.0053744, - -0.016761, - -0.034901, - -0.051328, - -0.010104, - 0.05436, - 0.032583, - -0.022131, - -0.054527, - -0.0048985, - -0.01221, - 0.00033741, - 0.0052403, - -0.0305, - -0.057768, - -0.060501, - 0.044089, - 0.0073949, - -0.06868, - -0.03851, - 0.031619, - -0.065336, - 0.064279, - 0.058129, - -0.012389, - -0.028612, - -0.017611, - -0.049683, - -0.066468, - 0.0059129, - 0.017597, - 0.041195, - -0.039772, - 0.017726, - 0.0066541, - -0.0039404, - -0.012467, - -0.030024, - 0.039676, - 0.046442, - 0.042852, - 0.0030498, - -0.01409, - -0.0011015, - -0.015852, - 0.018025, - -0.0010502, - -0.025099, - -0.0606, - -0.066262, - 0.035047, - 0.03164, - -0.054613, - 0.063603, - -0.10801, - -0.0057296, - -0.036661, - -0.042491, - -0.028336, - 0.004483, - 0.0050852, - 0.068775, - 0.11722, - 0.059727, - -0.11237, - 0.03802, - -0.056497, - 0.013391, - 0.003752, - 0.029178, - 0.017589, - -0.054495, - -0.012489, - -0.0078134, - 0.0073382, - 0.029124, - -0.028513, - 0.03991, - 0.0015517, - -0.0014485, - 0.046728, - -0.047293 - ], - "ferrets": [ - 0.016179, - 0.022082, - 0.019876, - -0.0042118, - -0.011799, - -0.01236, - -0.0028687, - -0.068933, - 0.004181, - 0.003331, - -0.0018043, - -0.0011063, - -0.072342, - -0.13221, - -0.029208, - 0.020331, - -0.0058681, - -0.0056782, - 0.04381, - -0.036465, - -0.027976, - -0.10636, - -0.041333, - -0.0019123, - 0.09136, - -0.0065442, - -0.0317, - 0.015301, - 0.10102, - 0.0132, - 0.044024, - -0.015833, - 0.01272, - 0.077848, - 0.053217, - 0.029425, - 0.010673, - -0.13555, - 0.058035, - -0.025064, - 0.010411, - -0.081944, - 0.0099625, - -0.011758, - 0.032331, - -0.0059719, - 0.036835, - 0.036923, - -0.0039972, - -0.043818, - 0.019083, - 0.035355, - 0.07027, - -0.11821, - -0.03456, - -0.016851, - -0.018415, - 0.010141, - -0.062133, - 0.069572, - 0.024881, - -0.045493, - 0.13201, - -0.011619, - -0.00365, - 0.027526, - -0.094219, - 0.033768, - -0.031105, - -0.043498, - 0.030508, - 0.027511, - 0.075881, - 0.046653, - -0.02395, - 0.11408, - -0.00053013, - -0.05005, - -0.000037572, - -0.062333, - 0.013826, - -0.054885, - 0.034934, - 0.0078119, - 0.01544, - 0.018001, - -0.06573, - 0.015013, - 0.03237, - 0.031079, - -0.029226, - -0.04816, - -0.066283, - 0.024054, - 0.05751, - 0.07169, - 0.02029, - 0.11318, - 0.051063, - 0.068291, - -0.035608, - 0.076455, - -0.025143, - 0.043226, - 0.03487, - -0.069468, - -0.011545, - -0.0055158, - 0.037923, - 0.000624, - 0.0084431, - 0.044034, - 0.065868, - 0.037899, - -0.058515, - 0.0031318, - -0.00014145, - -0.028246, - -0.095289, - 0.053871, - 0.025526, - 0.10783, - 0.05934, - -0.10643, - 0.14542, - -0.0040251, - 0.0034116, - -0.046613, - -0.062603, - 0.054107, - 0.043242, - 0.057911, - -0.02749, - 0.0010403, - 0.071316, - -0.058419, - -0.044386, - 0.10913, - 0.072921, - -0.027693, - 0.069249, - 0.0096764, - 0.0085376, - 0.012544, - -0.025075, - -0.076605, - -0.018108, - -0.036813, - -0.0099642, - -0.19695, - 0.015817, - 0.043114, - 0.017536, - -0.01091, - 0.03362, - -0.032564, - -0.037341, - -0.032849, - -0.023852, - -0.044925, - 0.050937, - 0.046302, - 0.0046795, - 0.0043602, - 0.042082, - -0.091752, - 0.047718, - 0.042329, - 0.0077823, - -0.0055328, - 0.025898, - 0.018565, - -0.064396, - 0.0076225, - -0.045583, - 0.050997, - 0.036393, - 0.006873, - -0.011442, - 0.013842, - 0.099716, - -0.094244, - 0.0075186, - -0.051806, - -0.0070364, - -0.050654, - 0.0054514, - 0.092937, - -0.030733, - -0.050453, - 0.021521, - 0.054171, - -0.15189, - -0.035416, - 0.0049914, - 0.064714, - -0.049975, - 0.11116, - 0.0045682, - -0.011941, - -0.1173, - 0.061649, - -0.071242, - 0.013589, - -0.020466, - 0.023462, - -0.039429, - 0.0091136, - 0.0036647, - -0.0542, - 0.090945, - 0.004483, - 0.079992, - -0.016012, - 0.038951, - 0.041747, - -0.037172, - -0.091488, - -0.03523, - 0.039438, - -0.022258, - -0.050711, - 0.015768, - 0.076202, - 0.065248, - -0.040549, - 0.044663, - 0.071442, - 0.031841, - -0.0014463, - -0.062863, - 0.0042918, - -0.08111, - -0.06335, - 0.042903, - -0.03709, - 0.16255, - 0.0004692, - 0.051194, - 0.0092613, - 0.0050956, - -0.0026619, - 0.10899, - 0.094563, - -0.035499, - 0.072844, - 0.026821, - 0.016179, - 0.010492, - 0.040821, - 0.0075259, - 0.020217, - 0.068773, - -0.063302, - 0.046956, - -0.002397, - -0.045711, - -0.01026, - -0.0040553, - -0.045224, - 0.0037172, - 0.025755, - 0.005088, - -0.083735, - -0.08995, - 0.08707, - 0.018327, - 0.016239, - -0.0067692, - 0.026156, - -0.045688, - 0.075277, - -0.066352, - -0.012764, - 0.013482, - -0.024771, - 0.016072, - -0.0099042, - -0.041458, - -0.031276, - 0.017235, - 0.041367, - 0.054713, - -0.027873, - -0.017097, - 0.001129, - 0.014248, - 0.062807, - -0.017916, - -0.01868, - 0.028632, - 0.030788, - -0.087355, - -0.093926, - -0.0096297, - -0.05482, - -0.033454, - 0.081801, - -0.020008, - 0.056986 - ], - "household": [ - -0.044512, - 0.000017832, - 0.0049894, - 0.062983, - -0.023603, - 0.000028235, - -0.010318, - -0.078346, - 0.066969, - 0.015506, - 0.0048611, - -0.063333, - -0.042765, - -0.055425, - -0.0077292, - 0.021626, - 0.080949, - -0.02083, - 0.06436, - 0.034034, - 0.010063, - 0.0057646, - 0.00022215, - 0.072781, - 0.051025, - -0.030942, - -0.018671, - -0.015016, - -0.0081665, - 0.0092998, - -0.021963, - -0.032586, - -0.01918, - -0.017766, - -0.020267, - 0.0094981, - -0.024867, - 0.048962, - 0.015947, - -0.00093199, - -0.033604, - -0.09654, - 0.059404, - -0.013712, - -0.028945, - -0.04844, - -0.068388, - -0.034112, - -0.062709, - -0.0030839, - 0.049475, - -0.013499, - 0.021007, - 0.0042245, - -0.02297, - 0.024331, - -0.032774, - 0.01877, - -0.030721, - -0.044944, - 0.037, - -0.072989, - 0.11516, - 0.034092, - 0.022026, - 0.021639, - -0.0027107, - -0.0052117, - -0.039966, - -0.062142, - 0.074659, - 0.016595, - 0.035732, - -0.10348, - -0.012294, - 0.056308, - 0.0013887, - 0.0012517, - 0.049383, - 0.0041197, - -0.010974, - 0.0085977, - -0.01544, - 0.065562, - -0.028789, - 0.028704, - -0.004888, - 0.00075397, - 0.022119, - -0.0058193, - 0.0049106, - 0.068545, - -0.097896, - 0.033831, - -0.071864, - 0.053842, - -0.068474, - 0.048617, - 0.085168, - -0.034848, - 0.037243, - -0.075199, - -0.014918, - -0.079618, - 0.039207, - -0.10012, - -0.0051772, - 0.037277, - 0.0061754, - -0.064266, - 0.0026751, - 0.059987, - 0.082876, - 0.01616, - -0.017083, - -0.099, - -0.0058551, - 0.0027527, - -0.038015, - -0.041351, - -0.060554, - 0.081902, - 0.095531, - 0.027784, - 0.037539, - -0.044395, - 0.023967, - -0.10254, - 0.003466, - 0.035264, - 0.0019274, - 0.04206, - 0.034435, - -0.011086, - -0.039388, - 0.027715, - -0.012734, - 0.024369, - -0.0030379, - 0.018018, - 0.034622, - -0.0026364, - 0.022823, - 0.01954, - -0.0039292, - -0.037085, - 0.022491, - 0.049998, - 0.0092607, - -0.079721, - 0.017586, - 0.083067, - -0.027423, - -0.068296, - 0.037496, - 0.022974, - -0.020048, - 0.057482, - 0.040649, - 0.010661, - 0.032192, - -0.030264, - -0.027503, - 0.044095, - 0.024474, - -0.026836, - 0.012995, - -0.084923, - 0.021018, - 0.026453, - -0.030138, - 0.041667, - -0.077071, - 0.03597, - -0.020605, - 0.021943, - 0.033402, - 0.068025, - -0.021806, - -0.010685, - 0.026783, - -0.017834, - 0.025011, - -0.00060665, - -0.05563, - -0.046101, - -0.02132, - 0.063756, - 0.027713, - -0.037829, - 0.020876, - 0.016399, - 0.03443, - -0.037492, - 0.013444, - 0.004355, - -0.036233, - 0.060597, - -0.032831, - 0.013273, - -0.10816, - 0.059558, - -0.016611, - -0.024909, - -0.014455, - 0.028494, - -0.026245, - -0.02233, - 0.0012859, - -0.007707, - 0.076614, - -0.024271, - -0.031012, - 0.022354, - -0.03833, - -0.0086579, - -0.076569, - -0.012952, - 0.013896, - 0.043621, - 0.079223, - -0.044836, - 0.018619, - 0.078139, - -0.015193, - -0.046179, - -0.0021326, - 0.015957, - 0.019949, - -0.069678, - 0.06056, - 0.0061599, - -0.055396, - -0.063989, - -0.0066165, - 0.077417, - 0.016017, - -0.067703, - -0.017098, - -0.12135, - 0.016456, - -0.040675, - 0.026748, - 0.0087851, - 0.0036822, - 0.048293, - -0.0028186, - -0.029717, - 0.0049385, - -0.03829, - -0.0028026, - -0.023112, - -0.033725, - 0.040738, - 0.007928, - -0.043567, - -0.0054578, - 0.015851, - 0.039347, - -0.04238, - 0.031905, - -0.0055503, - 0.011151, - -0.04586, - 0.03692, - 0.0076243, - -0.0079899, - 0.0062773, - -0.016407, - -0.0092673, - -0.056388, - 0.047962, - -0.08626, - -0.032638, - 0.0029121, - -0.015789, - 0.018898, - -0.031279, - -0.0064254, - 0.033379, - 0.088871, - 0.024687, - -0.00030677, - 0.0014743, - -0.01274, - 0.1051, - -0.028132, - -0.054418, - -0.030371, - 0.060014, - 0.046781, - 0.10294, - -0.032664, - 0.015404, - -0.021036, - 0.13023, - 0.013274, - 0.011378, - 0.028521, - 0.017119 - ], - "bioscience": [ - -0.068237, - -0.093171, - -0.0081439, - 0.011236, - -0.013856, - -0.022377, - 0.073465, - -0.0796, - 0.061309, - 0.030078, - -0.015887, - -0.029625, - 0.054189, - -0.0077495, - 0.024969, - 0.0082857, - 0.10992, - 0.062831, - 0.045345, - -0.023268, - 0.077945, - 0.042694, - 0.091515, - 0.048045, - -0.0023508, - -0.057748, - -0.015281, - 0.044378, - -0.018328, - 0.051215, - 0.0017481, - 0.0043403, - 0.0025913, - -0.061966, - 0.032342, - 0.039291, - 0.0065038, - -0.042898, - 0.060645, - 0.016702, - -0.056029, - -0.11782, - -0.031854, - -0.074807, - 0.035824, - -0.061554, - -0.0092508, - 0.033606, - 0.031426, - 0.037677, - -0.018706, - 0.023962, - 0.0044512, - 0.016807, - -0.037716, - 0.014468, - -0.041296, - 0.051795, - 0.012416, - 0.0058322, - -0.012211, - 0.03602, - 0.097506, - -0.0065458, - 0.077824, - -0.0038083, - 0.035422, - -0.029677, - 0.020469, - -0.030912, - 0.0084563, - -0.0108, - 0.019403, - 0.054795, - -0.045127, - 0.010746, - -0.026011, - -0.011516, - -0.010053, - 0.012781, - 0.026247, - 0.052814, - -0.034584, - -0.0049726, - -0.064979, - 0.027379, - 0.040739, - 0.0039166, - 0.026716, - 0.044568, - 0.052252, - 0.09152, - -0.07408, - 0.016163, - 0.00025387, - 0.080822, - 0.068572, - -0.0031423, - -0.026839, - 0.047942, - -0.053026, - 0.0069243, - 0.0028912, - -0.023968, - -0.0011891, - -0.057942, - -0.0015158, - 0.00074385, - 0.045509, - -0.002662, - -0.065658, - 0.068463, - 0.023234, - 0.021244, - 0.027295, - 0.040368, - -0.012762, - -0.069663, - -0.032627, - 0.033952, - -0.068029, - -0.025456, - -0.037398, - -0.043384, - 0.053364, - 0.02661, - -0.10565, - -0.074553, - 0.021256, - 0.12305, - 0.034975, - 0.031287, - -0.078138, - -0.009923, - 0.048738, - 0.0017154, - 0.021092, - 0.032252, - -0.057932, - 0.009941, - 0.027887, - 0.011785, - 0.0031123, - 0.052997, - -0.021095, - -0.015745, - 0.013357, - -0.0011406, - -0.041803, - -0.021074, - 0.068686, - 0.085051, - 0.077109, - -0.066954, - 0.067347, - 0.018599, - 0.030694, - 0.023843, - 0.0014807, - 0.018611, - 0.029517, - -0.020892, - -0.057644, - 0.034105, - 0.0061363, - 0.0061192, - -0.10371, - -0.01171, - -0.040676, - -0.0021035, - 0.023529, - 0.020916, - 0.017445, - -0.030958, - 0.04863, - 0.045788, - -0.022384, - -0.0050378, - -0.049513, - 0.0056264, - 0.0035045, - 0.013388, - -0.031481, - 0.024384, - 0.010728, - -0.031818, - -0.028056, - 0.080083, - -0.039305, - 0.076761, - -0.03659, - 0.046472, - -0.024842, - -0.017101, - -0.0060445, - -0.063239, - -0.064502, - -0.0084876, - -0.02476, - -0.084352, - -0.1174, - -0.0082805, - 0.024663, - 0.023292, - -0.066265, - 0.018416, - -0.041944, - -0.041997, - -0.011604, - 0.012163, - 0.10866, - 0.0058203, - -0.026771, - 0.0036645, - -0.019847, - 0.066127, - 0.029012, - 0.0039315, - 0.014331, - -0.028175, - -0.032954, - 0.032094, - -0.028495, - 0.085072, - -0.046326, - 0.0085286, - -0.019324, - 0.062565, - 0.043542, - -0.015742, - -0.098303, - -0.00011064, - -0.04023, - 0.0092039, - 0.020499, - 0.0074078, - 0.026912, - -0.035478, - -0.032665, - 0.018845, - 0.028761, - 0.011205, - 0.060366, - 0.041564, - -0.00026132, - -0.029109, - 0.0003879, - -0.0052963, - 0.017456, - 0.043569, - 0.037974, - -0.0047743, - -0.030141, - -0.10279, - -0.021561, - 0.044376, - -0.013261, - 0.0039203, - 0.070996, - 0.052035, - -0.0069993, - -0.0031856, - 0.031657, - -0.0088467, - -0.00013184, - -0.010933, - 0.042423, - 0.012044, - 0.018264, - -0.015676, - 0.0039708, - 0.084613, - -0.11104, - -0.025549, - -0.036679, - -0.011157, - 0.042368, - 0.0026592, - -0.0027056, - -0.047083, - 0.074707, - -0.030491, - -0.016434, - -0.027152, - -0.042318, - 0.013294, - -0.03976, - -0.02875, - -0.029518, - -0.0296, - -0.0042749, - 0.049926, - -0.0065602, - 0.002125, - -0.023906, - -0.020504, - -0.0052919, - 0.026619, - -0.0060781, - -0.014992 - ], - "facade": [ - 0.099584, - 0.0024046, - 0.06085, - -0.0473, - 0.0072537, - -0.099136, - -0.00078935, - -0.17817, - -0.088304, - 0.066271, - 0.028871, - -0.073239, - 0.06692, - 0.062684, - -0.09233, - -0.0064061, - 0.039389, - 0.06405, - 0.073802, - 0.0086098, - -0.040118, - 0.017947, - 0.038956, - 0.067222, - -0.020627, - -0.025184, - -0.00851, - 0.05277, - -0.012483, - 0.025913, - -0.10431, - -0.068481, - -0.037161, - -0.046161, - -0.0088852, - 0.050425, - 0.062018, - 0.044784, - 0.00012146, - -0.014197, - 0.059006, - -0.17328, - 0.086538, - 0.051194, - -0.029664, - -0.042747, - -0.013074, - 0.064164, - -0.040492, - 0.025905, - 0.036744, - -0.11527, - -0.053426, - 0.052343, - -0.046127, - -0.01644, - -0.018559, - -0.0467, - -0.031407, - 0.0091133, - -0.009887, - 0.0083811, - 0.16822, - -0.071969, - 0.059206, - 0.056946, - 0.017282, - -0.017501, - 0.085749, - 0.055568, - 0.012129, - -0.006303, - -0.040989, - -0.057649, - 0.046592, - 0.0062062, - -0.042764, - -0.091916, - -0.026553, - 0.011986, - -0.024842, - -0.011765, - -0.060622, - 0.090755, - 0.06951, - -0.086407, - -0.033899, - -0.086415, - -0.084777, - 0.11105, - -0.0053547, - 0.015187, - -0.104, - 0.014997, - 0.13184, - 0.10155, - 0.012838, - 0.0077763, - 0.051296, - 0.006891, - 0.063077, - 0.043417, - -0.12265, - 0.046462, - -0.036812, - -0.1257, - 0.04351, - 0.016533, - -0.081778, - 0.10757, - -0.028776, - 0.062683, - 0.083772, - -0.0021548, - -0.042344, - -0.11772, - -0.05184, - 0.059653, - -0.024525, - -0.017731, - 0.022231, - -0.066389, - -0.021052, - -0.010998, - 0.037712, - 0.069003, - 0.061478, - -0.086162, - 0.0033508, - 0.13556, - -0.052556, - -0.044405, - 0.070628, - 0.017761, - -0.028201, - 0.065619, - -0.013678, - 0.045775, - 0.016964, - -0.11923, - 0.058629, - 0.024509, - -0.060601, - 0.07562, - -0.0011888, - -0.043722, - 0.037556, - 0.03157, - 0.035102, - 0.043904, - -0.005452, - 0.036685, - 0.075721, - -0.038942, - -0.074292, - 0.055396, - 0.058403, - 0.00051437, - -0.027153, - -0.012394, - -0.012448, - -0.038691, - -0.065085, - 0.027935, - 0.038146, - 0.059883, - 0.022808, - 0.04398, - -0.026471, - 0.094556, - -0.030722, - -0.0038289, - -0.010976, - -0.017908, - 0.075938, - 0.029818, - 0.024668, - -0.040594, - -0.046517, - -0.0034072, - -0.050649, - -0.0031603, - 0.035168, - -0.030714, - -0.06161, - -0.037464, - 0.072178, - 0.10494, - 0.1032, - -0.012916, - 0.086234, - 0.051532, - -0.05722, - 0.055036, - 0.019467, - 0.0051845, - -0.034466, - -0.052136, - 0.028633, - -0.0047549, - -0.21376, - 0.041345, - -0.0050214, - -0.078099, - 0.038354, - -0.033309, - 0.066598, - -0.02871, - -0.0050081, - -0.034533, - 0.12727, - -0.039457, - 0.00059148, - 0.051079, - 0.015209, - -0.08502, - -0.033777, - 0.12153, - 0.04151, - -0.060197, - -0.005189, - 0.049259, - -0.04053, - 0.11765, - 0.024536, - 0.049072, - 0.075298, - 0.054136, - 0.042784, - -0.0018555, - 0.0037025, - -0.091057, - -0.0829, - -0.052944, - 0.061834, - -0.14592, - -0.017735, - -0.10385, - 0.020872, - 0.0078825, - 0.093491, - -0.0062383, - 0.025346, - 0.010968, - -0.029067, - 0.095842, - -0.086358, - -0.0052348, - 0.095539, - -0.0038467, - 0.014764, - -0.03781, - -0.034383, - -0.068395, - 0.025027, - 0.06207, - -0.033927, - 0.042914, - -0.079564, - 0.0010474, - 0.038218, - 0.040024, - 0.0044597, - -0.099423, - 0.069394, - -0.02687, - 0.10316, - -0.034439, - 0.0117, - -0.012219, - -0.07767, - 0.093375, - -0.11747, - -0.047313, - 0.064123, - 0.00083224, - 0.0053318, - -0.013505, - 0.046659, - 0.030105, - 0.092984, - -0.0083978, - 0.025461, - 0.077987, - -0.023002, - -0.0085388, - -0.032817, - 0.045754, - -0.031145, - 0.054618, - -0.065643, - 0.077596, - 0.056987, - 0.075885, - -0.057661, - -0.023021, - -0.023304, - 0.074646, - -0.1267, - 0.014916 - ], - "foods": [ - -0.12698, - -0.019735, - -0.04711, - -0.02046, - 0.045336, - -0.027343, - -0.0037409, - -0.089311, - 0.088558, - 0.058521, - -0.033323, - -0.038164, - -0.077657, - 0.01141, - 0.018609, - -0.0082502, - 0.068544, - -0.00081034, - 0.046666, - 0.049264, - 0.015233, - 0.039755, - 0.089845, - 0.061473, - -0.041122, - -0.057391, - -0.060356, - 0.076473, - 0.11141, - -0.058096, - 0.082689, - -0.11632, - 0.096808, - -0.0030869, - 0.098993, - -0.0021057, - -0.010085, - 0.019355, - 0.057326, - 0.10221, - -0.0084921, - -0.16737, - -0.060882, - -0.07332, - 0.10516, - -0.10327, - -0.023982, - -0.012916, - -0.044725, - -0.029665, - -0.088443, - 0.032289, - 0.061851, - -0.057714, - -0.13675, - 0.095777, - 0.0033532, - 0.0091969, - -0.013722, - -0.091876, - 0.0088589, - -0.11647, - 0.22527, - -0.03671, - 0.023654, - -0.0075898, - 0.12028, - 0.025134, - -0.040395, - -0.029625, - 0.029459, - -0.048681, - 0.04394, - -0.055541, - -0.048298, - 0.052395, - 0.03267, - -0.060236, - -0.0038267, - 0.024923, - -0.016753, - -0.027668, - 0.081868, - 0.058643, - -0.031222, - 0.032475, - -0.078123, - -0.025025, - -0.0076312, - -0.0043421, - -0.020814, - -0.063685, - -0.095222, - 0.12398, - -0.088878, - 0.10448, - 0.031044, - 0.14792, - 0.082636, - -0.07097, - -0.0060776, - -0.033754, - -0.035605, - -0.022499, - 0.037243, - -0.090889, - -0.13752, - 0.047317, - 0.062142, - 0.01741, - 0.053837, - 0.080275, - 0.07952, - 0.082397, - -0.0021447, - -0.056751, - -0.052002, - 0.02689, - -0.018742, - -0.014831, - -0.046078, - 0.037577, - -0.033744, - -0.13772, - 0.15213, - -0.085619, - -0.050913, - -0.02498, - 0.072896, - 0.12732, - 0.014899, - 0.10418, - 0.10401, - -0.037141, - 0.024095, - -0.03118, - -0.068656, - 0.053364, - -0.014278, - 0.05262, - 0.042813, - 0.019256, - -0.10918, - 0.020844, - 0.047862, - -0.040458, - 0.044852, - 0.045185, - 0.012737, - 0.01174, - -0.0078077, - 0.097876, - 0.0029325, - -0.044156, - 0.11038, - -0.0074819, - -0.082059, - 0.12213, - 0.029372, - 0.043513, - 0.059731, - -0.0018547, - -0.009992, - -0.024047, - 0.051516, - 0.012264, - -0.01227, - -0.11094, - 0.13737, - -0.040715, - -0.020529, - -0.057263, - 0.043945, - -0.0031204, - 0.00055476, - 0.10587, - 0.02038, - 0.069362, - -0.037488, - -0.05351, - 0.1147, - -0.047999, - 0.089405, - -0.15163, - 0.051767, - -0.11254, - 0.048433, - 0.20644, - -0.059747, - -0.15261, - 0.026459, - 0.059409, - -0.082449, - -0.071249, - 0.043367, - 0.073515, - -0.0016434, - -0.083865, - 0.01903, - 0.026381, - -0.19794, - 0.030575, - -0.021768, - -0.15459, - -0.032867, - 0.091958, - 0.0030117, - -0.03014, - 0.030324, - -0.031012, - 0.10528, - 0.018038, - 0.062628, - -0.0024027, - 0.10936, - 0.02224, - 0.067594, - 0.013185, - -0.10207, - -0.054902, - -0.035039, - -0.007407, - -0.023583, - 0.091308, - 0.031109, - 0.044171, - -0.0089636, - 0.012639, - -0.014012, - 0.052845, - -0.062759, - 0.026671, - -0.1462, - -0.09776, - 0.010333, - 0.033282, - -0.058347, - 0.0097169, - -0.0022967, - -0.12127, - -0.087782, - 0.03741, - -0.020493, - -0.037319, - 0.06373, - 0.09737, - 0.043909, - 0.0092852, - -0.013028, - -0.017154, - -0.0076172, - -0.11704, - -0.058152, - -0.05258, - -0.096662, - 0.042559, - -0.015497, - -0.014123, - 0.049098, - 0.027865, - 0.065981, - 0.099273, - 0.070457, - -0.075421, - -0.00032099, - 0.053412, - 0.0037106, - -0.089897, - 0.0013042, - 0.019208, - 0.031529, - 0.083054, - -0.12489, - -0.055594, - -0.068751, - -0.033538, - -0.038588, - -0.045928, - -0.071626, - 0.026573, - 0.11572, - -0.023123, - -0.0073084, - 0.044951, - -0.029762, - 0.090321, - -0.0065163, - 0.030314, - 0.046846, - -0.022396, - 0.023427, - 0.07435, - -0.032406, - -0.072592, - -0.051426, - -0.026804, - 0.0065922, - 0.0035063, - -0.046799, - 0.021457 - ], - "racing": [ - -0.028206, - -0.028236, - 0.081533, - 0.048289, - -0.022656, - 0.0019343, - -0.12648, - -0.10845, - 0.055292, - 0.047146, - -0.01009, - -0.07574, - -0.021562, - 0.028939, - -0.019437, - 0.04987, - 0.076056, - 0.064985, - 0.024863, - 0.024145, - 0.04785, - -0.070023, - 0.03412, - 0.051332, - 0.10212, - 0.017365, - 0.025149, - -0.0084567, - 0.0027224, - 0.072234, - -0.046169, - 0.059871, - 0.045972, - -0.039546, - 0.080617, - 0.024399, - -0.0066598, - -0.0097385, - 0.046043, - -0.0039114, - 0.064278, - -0.10822, - -0.050797, - 0.06331, - -0.017916, - -0.027931, - -0.026418, - 0.020839, - -0.024433, - -0.029131, - 0.020224, - 0.020637, - 0.031755, - 0.052137, - -0.10814, - -0.039708, - 0.034903, - -0.02889, - -0.058452, - -0.0105, - 0.024525, - 0.064761, - 0.10424, - 0.026952, - 0.07557, - -0.049524, - -0.12317, - -0.026584, - 0.019352, - 0.038799, - 0.016638, - -0.045572, - 0.079862, - 0.091215, - 0.05404, - 0.074941, - -0.055006, - -0.018148, - -0.055094, - 0.025763, - -0.034311, - -0.044066, - -0.069221, - 0.054376, - 0.011119, - -0.10415, - 0.09053, - -0.021469, - 0.031178, - -0.01982, - 0.085587, - 0.058744, - -0.1142, - 0.040428, - 0.083283, - 0.090842, - -0.0090369, - -0.073417, - 0.019021, - 0.0037409, - -0.081029, - -0.081162, - 0.025938, - -0.060129, - 0.052871, - -0.13253, - -0.12957, - 0.0090186, - 0.0035392, - 0.069132, - -0.003678, - 0.067585, - 0.042276, - 0.037593, - 0.017416, - -0.068356, - -0.035909, - -0.042987, - -0.043959, - -0.048472, - 0.065078, - 0.067192, - -0.070748, - 0.021422, - 0.07463, - 0.033637, - -0.024513, - -0.13381, - -0.021011, - 0.1405, - -0.013879, - 0.033906, - 0.074235, - 0.009672, - 0.021519, - -0.064, - 0.0039692, - 0.06109, - 0.02693, - -0.0012118, - 0.00032027, - 0.015869, - 0.099238, - 0.028896, - 0.002431, - 0.014953, - 0.030135, - -0.080222, - 0.021711, - -0.029911, - 0.032997, - 0.057781, - 0.0041044, - -0.10916, - 0.057377, - 0.010202, - 0.01698, - 0.012984, - 0.038087, - 0.0088383, - 0.0090293, - 0.014241, - -0.047247, - 0.051909, - -0.053372, - -0.043354, - -0.072832, - 0.040522, - -0.071284, - -0.052162, - 0.018859, - -0.12525, - 0.050029, - 0.055387, - 0.030937, - 0.051214, - -0.055306, - -0.018525, - -0.050713, - -0.031226, - 0.022218, - -0.06369, - -0.062292, - -0.064075, - -0.0051303, - -0.067918, - -0.040138, - 0.083598, - -0.0087572, - 0.013943, - -0.033321, - 0.066863, - -0.00056271, - -0.08658, - 0.013677, - 0.080741, - 0.018055, - 0.034466, - 0.028238, - 0.03267, - -0.2067, - 0.092284, - -0.017895, - -0.060663, - 0.0128, - -0.0061491, - -0.049284, - -0.014982, - 0.035934, - -0.015575, - 0.13403, - 0.016261, - 0.0056922, - 0.020992, - -0.010281, - -0.018762, - -0.078894, - 0.015128, - 0.04633, - -0.058174, - -0.0014243, - -0.094669, - -0.010369, - 0.11112, - -0.089213, - -0.016169, - -0.034214, - 0.10682, - -0.073374, - -0.029045, - 0.01406, - -0.02665, - -0.050492, - 0.01472, - 0.00049474, - 0.017574, - 0.035368, - 0.070544, - -0.039831, - -0.033414, - 0.058441, - 0.062728, - 0.021087, - -0.045236, - -0.069265, - 0.036081, - 0.10026, - -0.020952, - 0.05911, - 0.02355, - 0.061482, - -0.01061, - 0.028077, - 0.065623, - -0.015317, - 0.052686, - 0.00046011, - 0.057192, - 0.044315, - 0.033979, - 0.049361, - 0.059465, - 0.046192, - 0.1024, - 0.02145, - -0.012988, - -0.034995, - 0.026569, - 0.08909, - -0.0036668, - 0.0096284, - 0.072498, - -0.12669, - -0.016762, - -0.02476, - -0.083267, - 0.07011, - -0.024523, - -0.051061, - -0.0070213, - 0.036244, - 0.0648, - 0.0079394, - 0.067362, - 0.068842, - -0.034688, - 0.02531, - -0.077925, - -0.015678, - 0.073026, - 0.10547, - -0.11064, - -0.064005, - -0.10047, - -0.08406, - -0.039313, - -0.011151, - 0.010858, - -0.035029, - -0.05027 - ], - "rainstorm": [ - 0.093871, - -0.0068207, - -0.002411, - 0.042815, - 0.046005, - -0.024774, - 0.010442, - -0.083848, - 0.053736, - 0.041693, - 0.014921, - -0.021162, - -0.059102, - 0.085779, - -0.034254, - -0.00078241, - 0.038542, - 0.025867, - 0.018766, - -0.027739, - 0.043282, - -0.062096, - -0.099629, - 0.039858, - 0.098369, - -0.048805, - 0.0078965, - 0.047692, - -0.035403, - 0.0051638, - -0.010009, - 0.028588, - 0.03414, - -0.10988, - -0.0067966, - 0.023726, - 0.0054452, - -0.005471, - -0.029216, - -0.06204, - 0.0056508, - -0.075607, - 0.0077689, - 0.029413, - -0.011178, - 0.13245, - 0.086387, - -0.027516, - -0.043556, - 0.0089617, - 0.084762, - -0.032223, - -0.0023354, - -0.010399, - -0.040776, - 0.029438, - 0.10567, - -0.053039, - -0.037729, - 0.024663, - 0.012032, - 0.028077, - 0.015237, - -0.021108, - -0.090462, - 0.011974, - 0.034421, - 0.01284, - 0.017114, - 0.044855, - 0.077351, - 0.11324, - 0.00056182, - 0.058716, - -0.055784, - -0.072032, - -0.024734, - 0.0079135, - 0.003592, - 0.11322, - -0.028691, - -0.008141, - -0.0058788, - 0.024084, - 0.061099, - -0.092075, - 0.054051, - 0.020223, - 0.023414, - -0.032894, - -0.014073, - 0.0082435, - -0.074523, - -0.092306, - 0.019422, - 0.04113, - 0.081401, - 0.0088007, - 0.071732, - -0.019629, - 0.03674, - -0.071539, - 0.026708, - -0.0067125, - 0.016504, - -0.054101, - -0.019448, - 0.0022195, - 0.025292, - -0.0026477, - -0.018534, - 0.064382, - 0.062093, - 0.034876, - -0.023908, - -0.013696, - -0.012157, - 0.076226, - -0.040963, - -0.041087, - -0.0025665, - -0.016547, - 0.10126, - 0.044727, - 0.08382, - -0.036617, - 0.039653, - -0.021169, - -0.10299, - 0.060798, - 0.029266, - 0.01019, - -0.016625, - 0.014883, - 0.03524, - 0.045226, - 0.061782, - 0.081687, - 0.02912, - 0.030801, - 0.025028, - -0.023827, - 0.0010582, - -0.011733, - 0.0083469, - -0.036862, - 0.010159, - 0.00038069, - -0.064414, - 0.017973, - 0.036109, - 0.048132, - -0.011715, - -0.0002814, - 0.034447, - -0.0017698, - -0.0005052, - -0.046445, - -0.039404, - -0.028201, - 0.051839, - -0.02255, - -0.067922, - 0.069216, - 0.036724, - -0.0079675, - 0.014233, - -0.0016736, - 0.011804, - 0.064362, - 0.024015, - -0.0078087, - 0.028557, - 0.013724, - 0.073354, - 0.025995, - 0.034354, - -0.019694, - -0.032172, - -0.016043, - -0.025361, - 0.033183, - -0.015893, - -0.08201, - -0.045901, - -0.018648, - -0.05416, - 0.10034, - -0.022872, - -0.050966, - 0.026002, - -0.045928, - 0.023896, - -0.064037, - -0.011998, - -0.018638, - 0.048798, - 0.045822, - 0.0072618, - -0.024135, - -0.14555, - 0.014696, - -0.035047, - 0.024356, - 0.059383, - 0.04956, - -0.018492, - 0.036676, - 0.020958, - -0.051672, - 0.10201, - -0.014895, - 0.0021514, - 0.016888, - 0.07997, - 0.0076287, - -0.016134, - -0.06488, - 0.064227, - -0.080416, - 0.015902, - 0.018376, - -0.041777, - 0.0907, - -0.0041937, - 0.013295, - -0.029088, - 0.064853, - -0.067722, - -0.01375, - 0.023314, - -0.12132, - 0.013588, - -0.025475, - 0.023864, - 0.072839, - 0.049737, - 0.021568, - 0.018113, - -0.049065, - 0.086609, - -0.0037635, - -0.0021034, - -0.055795, - -0.063997, - 0.068452, - 0.045637, - 0.035271, - -0.032676, - -0.00094328, - 0.0066239, - -0.032293, - 0.033932, - 0.0070665, - -0.039978, - 0.0077497, - 0.031068, - 0.023225, - 0.062258, - 0.059256, - 0.061024, - 0.052885, - -0.038478, - -0.034093, - -0.006164, - -0.059391, - -0.057643, - 0.042521, - -0.030136, - -0.039715, - -0.058764, - 0.077101, - -0.098808, - -0.026084, - -0.026886, - -0.068261, - -0.030793, - -0.012317, - -0.040528, - 0.020079, - 0.033005, - -0.01613, - 0.030778, - -0.011828, - -0.066738, - 0.0082645, - 0.013719, - -0.014507, - 0.030585, - 0.034026, - -0.0094117, - -0.03048, - -0.049469, - 0.046041, - -0.0037804, - -0.046208, - 0.0086058, - 0.013651, - 0.057213, - -0.042778 - ], - "priorities": [ - 0.055339, - -0.042673, - -0.0064133, - 0.040957, - 0.0079213, - -0.01699, - -0.071192, - -0.075104, - -0.0045157, - 0.030595, - 0.0036123, - -0.060605, - 0.0027142, - 0.0085406, - 0.0089873, - 0.016633, - 0.057312, - 0.02935, - 0.057561, - 0.064983, - -0.068572, - 0.037814, - 0.039645, - 0.082443, - -0.0040647, - 0.0065731, - -0.028157, - 0.0034403, - 0.061583, - -0.013538, - 0.030907, - -0.01278, - -0.020877, - -0.041055, - -0.0032004, - 0.00082057, - -0.01989, - 0.041417, - 0.016973, - -0.040693, - -0.023271, - -0.070819, - 0.015072, - 0.015421, - -0.012394, - -0.024115, - -0.011677, - 0.02252, - -0.020429, - 0.00094865, - 0.0050692, - -0.0015315, - 0.029566, - 0.066638, - -0.056628, - 0.067422, - -0.020197, - 0.027523, - -0.026527, - 0.049213, - -0.020498, - -0.036529, - 0.11796, - -0.017862, - 0.052089, - -0.057172, - 0.023148, - -0.014104, - -0.017949, - -0.0071593, - 0.04533, - 0.028084, - 0.0017887, - -0.0028296, - 0.016355, - 0.035963, - 0.018384, - -0.04229, - 0.0082293, - 0.02483, - 0.002074, - 0.025665, - -0.0085182, - 0.084986, - 0.0045026, - 0.0088931, - 0.037319, - -0.0046558, - 0.040006, - -0.022101, - 0.084674, - 0.006642, - -0.070616, - 0.0096859, - -0.00844, - 0.000073664, - -0.0028763, - -0.020684, - -0.028432, - 0.033187, - 0.019112, - -0.051847, - -0.012395, - 0.019177, - -0.024242, - -0.029579, - 0.0090394, - -0.0017542, - -0.046267, - -0.014311, - 0.045063, - 0.049085, - 0.051359, - 0.08146, - 0.02956, - -0.03722, - -0.035949, - -0.031566, - -0.045122, - -0.0047947, - -0.012319, - -0.043706, - -0.0091276, - -0.024448, - 0.094175, - 0.017387, - -0.047376, - -0.086779, - -0.0067929, - 0.090496, - 0.025556, - 0.044772, - 0.063438, - 0.065615, - -0.072411, - -0.0071501, - -0.030118, - 0.047296, - -0.020306, - 0.098752, - 0.029008, - -0.0045255, - -0.0049989, - 0.048806, - -0.025313, - -0.016432, - 0.013584, - 0.0037667, - 0.0096921, - 0.0030185, - 0.036437, - 0.06357, - 0.00617, - -0.060633, - -0.0079378, - 0.02467, - -0.002585, - 0.020038, - -0.0037021, - -0.011709, - 0.089081, - 0.021089, - -0.0080954, - -0.007694, - -0.036033, - 0.0097307, - -0.019394, - -0.061741, - -0.046595, - -0.024176, - -0.058915, - -0.014446, - -0.010286, - -0.027579, - -0.022507, - 0.036904, - -0.074405, - 0.059433, - -0.042596, - -0.030114, - 0.023919, - 0.017334, - 0.039853, - -0.02597, - -0.024207, - -0.020173, - 0.018237, - 0.063478, - -0.040996, - -0.044096, - -0.0051847, - 0.07374, - -0.063353, - 0.019487, - 0.019088, - 0.004077, - -0.017645, - -0.018112, - 0.0060301, - 0.004697, - -0.1117, - -0.0050523, - 0.0087972, - -0.00064339, - -0.056524, - -0.0019516, - 0.021552, - -0.026154, - 0.0328, - -0.015682, - 0.076179, - 0.022084, - 0.0054255, - -0.016306, - -0.023613, - -0.019178, - 0.034072, - 0.010867, - -0.091374, - -0.075879, - -0.028519, - 0.019393, - 0.0015965, - 0.084797, - 0.097188, - -0.025282, - -0.013558, - 0.063385, - 0.046468, - -0.022255, - -0.044461, - -0.054437, - -0.09376, - 0.0070949, - 0.043096, - 0.0058889, - -0.010081, - 0.0021102, - -0.03679, - 0.083433, - -0.020776, - 0.023948, - 0.0085225, - 0.023198, - -0.005303, - -0.016785, - -0.031934, - -0.071934, - 0.006139, - -0.011975, - -0.0091624, - -0.010271, - 0.0014961, - -0.0021153, - 0.013078, - -0.030257, - -0.072934, - 0.050539, - 0.031323, - 0.074019, - -0.058942, - -0.032257, - -0.0013248, - -0.049468, - -0.013822, - 0.015878, - -0.014644, - 0.064948, - 0.017635, - 0.013267, - 0.030175, - 0.074273, - -0.12194, - -0.06448, - 0.10084, - -0.022668, - 0.024796, - 0.051181, - 0.027405, - -0.01283, - 0.037856, - -0.043068, - 0.033188, - 0.008159, - 0.077214, - 0.046482, - -0.050072, - 0.023884, - 0.011368, - -0.047104, - 0.02506, - 0.041208, - 0.01932, - 0.024079, - 0.042119, - -0.00025225, - -0.011106, - 0.051784, - -0.036867, - -0.035376 - ], - "overcast": [ - -0.0092906, - -0.0024063, - 0.067046, - -0.096486, - 0.0037845, - -0.095286, - 0.060221, - -0.094276, - 0.0092543, - -0.02492, - -0.051689, - -0.055913, - -0.0054112, - -0.0013523, - -0.017309, - -0.0016988, - 0.047619, - 0.0032819, - 0.0037221, - -0.01326, - 0.050028, - -0.049882, - -0.071765, - 0.044148, - 0.053257, - 0.022363, - 0.024351, - 0.021571, - 0.026158, - 0.0041857, - 0.012462, - 0.056508, - -0.018156, - -0.020104, - 0.027983, - 0.057735, - -0.013415, - 0.012861, - -0.0049086, - -0.068262, - -0.0084444, - -0.047353, - 0.017436, - -0.0039793, - -0.062428, - 0.028018, - 0.059707, - -0.063762, - 0.041599, - 0.074114, - -0.041637, - -0.014279, - -0.034667, - 0.040135, - -0.020653, - -0.033388, - 0.019045, - -0.11225, - -0.064501, - -0.021288, - -0.01916, - 0.021455, - 0.11658, - -0.095651, - -0.034283, - -0.065157, - -0.053806, - -0.026525, - -0.0062691, - 0.084376, - 0.075045, - 0.078941, - -0.041954, - 0.044448, - -0.029074, - -0.077438, - -0.072121, - 0.10312, - -0.061811, - 0.0011194, - 0.01167, - -0.0812, - 0.10045, - -0.0031535, - 0.00046476, - 0.018524, - 0.10912, - -0.031842, - 0.014458, - 0.017336, - 0.031292, - -0.0055531, - -0.10865, - 0.0031866, - 0.06396, - 0.023911, - -0.048706, - -0.043528, - -0.052586, - -0.059659, - 0.029068, - -0.042435, - 0.0068645, - 0.056595, - 0.018141, - -0.060815, - -0.009793, - 0.014649, - 0.091729, - 0.022464, - -0.065305, - 0.107, - 0.0074469, - 0.030571, - -0.032871, - -0.020384, - -0.046521, - 0.058153, - 0.0091392, - -0.010034, - 0.011082, - -0.013299, - -0.034493, - 0.023263, - 0.063258, - -0.0066926, - 0.062134, - -0.0313, - -0.056065, - -0.013497, - 0.033806, - 0.052762, - -0.0022615, - 0.03531, - -0.056097, - 0.046605, - -0.014944, - 0.07691, - -0.022162, - 0.046465, - 0.087077, - -0.038659, - -0.044614, - -0.057473, - 0.021308, - -0.00025739, - -0.048213, - -0.045293, - -0.035113, - -0.01381, - 0.010628, - -0.061593, - 0.012536, - 0.014466, - 0.022277, - 0.083406, - 0.024904, - -0.0046789, - 0.015631, - 0.017875, - 0.069892, - -0.055548, - -0.047061, - 0.073539, - -0.017568, - -0.0046419, - 0.020841, - 0.0005009, - -0.0093859, - 0.074528, - -0.14387, - -0.014285, - 0.0057109, - 0.081597, - 0.094344, - 0.039944, - 0.091894, - -0.014936, - -0.046144, - 0.054963, - -0.026377, - 0.026644, - -0.076663, - -0.11074, - -0.028666, - -0.031034, - -0.026255, - 0.14539, - -0.058397, - 0.027709, - 0.056113, - 0.0041459, - -0.023789, - -0.018891, - -0.0026195, - -0.074143, - -0.00121, - 0.068978, - 0.039508, - 0.003854, - -0.12014, - -0.031848, - -0.057927, - 0.02971, - 0.044454, - 0.067687, - -0.055936, - 0.064786, - -0.027721, - -0.060041, - 0.031097, - -0.068299, - -0.038588, - 0.068481, - 0.10205, - 0.0084304, - 0.0005114, - 0.033846, - -0.045326, - -0.11539, - -0.0022424, - 0.054136, - -0.069546, - 0.05447, - -0.074872, - 0.028552, - -0.047031, - 0.020896, - 0.053959, - 0.031447, - -0.0059545, - -0.039136, - -0.015391, - 0.083003, - 0.023431, - 0.041678, - -0.0058718, - 0.025769, - 0.058122, - -0.033447, - 0.12198, - -0.035946, - 0.014594, - -0.049128, - -0.1143, - 0.0163, - -0.043547, - -0.028508, - 0.039917, - -0.087323, - -0.00060445, - -0.081159, - -0.018902, - 0.085714, - -0.015406, - 0.021061, - 0.03671, - -0.041846, - 0.046751, - 0.010505, - -0.0089409, - 0.026664, - -0.0026196, - 0.062931, - -0.015762, - -0.049671, - 0.034389, - 0.0038346, - -0.04646, - -0.0051178, - -0.059622, - 0.082329, - -0.081543, - -0.047139, - 0.052155, - -0.1175, - -0.031993, - -0.01387, - -0.020199, - 0.026638, - 0.041726, - 0.00092182, - -0.0081624, - 0.056509, - -0.05568, - -0.041342, - 0.059113, - 0.028758, - 0.032029, - -0.0026736, - 0.063307, - -0.069141, - 0.095032, - 0.036532, - -0.00060819, - -0.067349, - 0.001511, - -0.0081578, - 0.042906, - -0.021445 - ], - "chic": [ - 0.032901, - -0.058673, - 0.058097, - 0.048855, - -0.032335, - 0.023718, - 0.083242, - -0.11131, - 0.064653, - -0.0079662, - -0.05849, - -0.019652, - -0.14353, - -0.010438, - -0.14591, - -0.077324, - 0.17512, - 0.013682, - 0.07828, - -0.0086019, - 0.10313, - 0.054298, - -0.074759, - 0.11993, - 0.12929, - 0.043622, - 0.064247, - 0.12324, - 0.045085, - 0.055365, - 0.046367, - -0.077379, - 0.074385, - -0.040847, - 0.15567, - 0.060073, - 0.16519, - 0.1437, - -0.0029232, - 0.034731, - 0.029336, - -0.17424, - -0.038875, - -0.022058, - 0.002292, - -0.061221, - 0.031251, - 0.04271, - -0.013938, - -0.088033, - 0.020046, - -0.10536, - -0.13857, - 0.047054, - -0.022376, - -0.026768, - 0.10194, - 0.0082478, - -0.067302, - 0.034354, - -0.0068519, - -0.088299, - 0.098831, - -0.079228, - 0.072577, - 0.10074, - 0.07821, - -0.11322, - -0.022076, - -0.046982, - 0.065289, - 0.10433, - -0.053653, - -0.12295, - 0.035764, - -0.0094887, - 0.0028369, - -0.055882, - -0.0030514, - 0.069466, - 0.063901, - 0.0037477, - 0.072071, - 0.054237, - -0.090551, - 0.049735, - -0.13806, - 0.052818, - 0.034723, - 0.028213, - -0.024596, - -0.09509, - -0.1738, - 0.032995, - 0.13452, - 0.1069, - -0.059314, - -0.030579, - -0.019354, - 0.10571, - 0.055382, - 0.13285, - -0.033977, - -0.030532, - -0.070731, - -0.25333, - -0.0075704, - 0.038162, - -0.010948, - 0.010486, - 0.024182, - 0.1066, - -0.012466, - -0.044188, - -0.17095, - -0.043288, - -0.027712, - 0.0043921, - -0.026273, - 0.10688, - 0.013285, - 0.021097, - -0.021115, - -0.055383, - 0.12375, - -0.052792, - 0.046939, - 0.0086362, - 0.032069, - 0.042505, - -0.0030328, - 0.094711, - 0.071074, - -0.15544, - -0.10454, - -0.10007, - -0.036377, - 0.044878, - -0.030221, - -0.18021, - 0.13334, - 0.004548, - 0.10996, - 0.087327, - 0.027109, - 0.012223, - 0.051832, - 0.068032, - -0.072602, - 0.015257, - 0.072546, - 0.18443, - -0.0036506, - 0.075508, - -0.048519, - 0.031517, - 0.0090351, - 0.12898, - 0.045438, - 0.060518, - 0.14683, - -0.03639, - -0.16553, - 0.08845, - -0.056173, - 0.09403, - 0.0072463, - -0.070454, - -0.020799, - 0.081567, - -0.039173, - -0.053847, - 0.0036395, - -0.081105, - -0.019967, - 0.063655, - 0.0047169, - 0.083054, - -0.033572, - 0.0040696, - -0.020389, - -0.063348, - -0.045238, - -0.16423, - 0.041175, - -0.066816, - -0.082216, - 0.12889, - -0.082498, - 0.034658, - 0.0020304, - 0.035674, - 0.049318, - -0.026969, - 0.037299, - 0.022281, - 0.056543, - 0.043658, - -0.001771, - 0.060173, - -0.17506, - 0.10256, - -0.022238, - 0.051384, - -0.022132, - 0.030984, - -0.076804, - -0.085204, - -0.022266, - -0.0089964, - 0.10928, - -0.063814, - 0.0022796, - 0.10842, - 0.14021, - 0.025436, - -0.076339, - 0.03566, - -0.049652, - -0.072445, - -0.095179, - -0.074752, - 0.064978, - 0.07177, - -0.050465, - 0.060699, - 0.073681, - 0.054259, - -0.030786, - 0.019889, - -0.018001, - -0.0185, - -0.053239, - 0.031108, - 0.069221, - -0.053077, - -0.062508, - -0.059569, - 0.020914, - -0.059576, - 0.089347, - -0.062907, - -0.057114, - -0.050014, - -0.13598, - 0.042747, - -0.034483, - -0.021739, - 0.001052, - -0.13841, - -0.0031405, - -0.068689, - -0.079403, - -0.034417, - -0.011527, - 0.033154, - -0.097016, - 0.080983, - 0.057651, - 0.043176, - 0.053672, - 0.014953, - 0.055683, - -0.032934, - 0.003716, - 0.015897, - -0.014052, - 0.0074211, - 0.0062637, - 0.059902, - -0.14539, - 0.075256, - -0.12599, - -0.02779, - 0.086557, - -0.21836, - -0.015933, - 0.070947, - -0.075545, - -0.086981, - 0.17694, - 0.13796, - 0.032717, - -0.035805, - -0.067628, - -0.098001, - -0.0000593, - -0.014356, - 0.083164, - 0.030484, - -0.064849, - -0.0082918, - 0.0056023, - 0.090466, - -0.051111, - -0.063201, - 0.097317, - 0.15715, - -0.064168, - -0.066483 - ], - "dress": [ - -0.042699, - -0.066204, - 0.092097, - 0.016855, - 0.10423, - -0.052589, - 0.082743, - -0.10493, - 0.018143, - -0.033182, - -0.028583, - 0.014001, - -0.08647, - -0.043959, - -0.04582, - 0.030128, - 0.14135, - 0.030569, - 0.06681, - 0.075612, - -0.057763, - -0.087229, - -0.034734, - 0.045455, - -0.050936, - 0.084215, - 0.019385, - 0.054436, - -0.10523, - -0.014816, - -0.05974, - -0.017174, - 0.02576, - 0.0056761, - 0.027021, - -0.019455, - 0.10494, - 0.16024, - -0.00079567, - 0.099226, - 0.078616, - -0.14015, - 0.030849, - -0.059913, - 0.0090859, - 0.011548, - 0.078222, - -0.086014, - -0.010443, - -0.044624, - -0.0035693, - -0.043901, - 0.013297, - 0.0038646, - -0.14574, - 0.03324, - 0.04945, - -0.053477, - -0.11091, - -0.076622, - -0.07086, - -0.014933, - 0.18254, - 0.0060848, - 0.043269, - 0.13392, - -0.023043, - 0.040052, - -0.0076133, - -0.040898, - -0.060303, - -0.015009, - 0.035493, - -0.13812, - -0.03926, - 0.06972, - 0.092462, - -0.035162, - -0.10711, - 0.063374, - -0.015126, - -0.096761, - 0.10358, - 0.079102, - -0.040473, - -0.022611, - -0.089881, - -0.0058666, - -0.02804, - 0.013875, - -0.06054, - -0.017405, - -0.093346, - -0.019177, - 0.12122, - 0.04308, - -0.052055, - 0.0083897, - 0.1627, - 0.014593, - 0.04261, - 0.06958, - -0.018002, - 0.051627, - 0.011642, - -0.12741, - 0.015702, - 0.016631, - -0.046478, - 0.022656, - 0.039511, - 0.012773, - 0.082543, - 0.034811, - -0.016181, - -0.15247, - 0.0049106, - -0.015121, - -0.06864, - -0.050185, - 0.053141, - 0.045875, - -0.041572, - -0.057191, - 0.11469, - -0.0062628, - -0.051047, - -0.056573, - -0.035199, - 0.1371, - -0.023997, - -0.03007, - 0.061693, - 0.071295, - -0.10325, - 0.026804, - -0.068554, - 0.073742, - 0.016045, - -0.065013, - 0.049555, - -0.048434, - -0.025996, - 0.057545, - -0.035133, - 0.063196, - -0.0089928, - 0.056636, - 0.043437, - -0.079219, - -0.044847, - 0.14596, - 0.00034639, - -0.081511, - -0.071981, - 0.041197, - 0.05878, - 0.011497, - -0.0030034, - -0.032714, - 0.05376, - -0.016619, - -0.10218, - 0.068318, - 0.012684, - 0.0386, - 0.027848, - -0.089462, - -0.0043115, - 0.020257, - -0.0087426, - -0.057153, - -0.062417, - -0.098871, - 0.046217, - 0.086625, - -0.072416, - 0.13828, - -0.020736, - -0.088508, - 0.017343, - 0.008047, - -0.0084313, - -0.031634, - -0.065025, - -0.057653, - -0.13471, - 0.11776, - -0.0018894, - -0.050617, - -0.01831, - 0.030322, - -0.030694, - -0.064455, - 0.038055, - 0.023408, - 0.044967, - -0.040032, - 0.032967, - -0.01688, - -0.19004, - 0.091683, - 0.090417, - 0.0050609, - 0.032101, - 0.095563, - 0.0075225, - -0.022528, - 0.096376, - -0.035056, - 0.10699, - -0.022984, - -0.017058, - 0.042579, - 0.04666, - 0.0028462, - -0.025458, - 0.07137, - -0.10774, - 0.012388, - -0.097856, - -0.058493, - -0.055622, - 0.11412, - 0.031394, - 0.0051305, - 0.0095223, - 0.052934, - -0.090399, - 0.033297, - 0.0016257, - -0.043246, - -0.12814, - -0.033424, - 0.0034075, - 0.043812, - 0.032761, - 0.0070575, - 0.10966, - 0.0081935, - 0.14987, - -0.032883, - -0.014309, - -0.087208, - -0.063041, - 0.014411, - -0.094811, - -0.057485, - 0.010777, - -0.077708, - 0.056434, - 0.0051476, - -0.040373, - -0.079775, - 0.049681, - 0.028733, - 0.07301, - -0.007528, - 0.055779, - 0.030497, - 0.038145, - -0.029835, - -0.061996, - -0.037816, - 0.0103, - 0.011689, - -0.0055736, - 0.021471, - -0.0926, - -0.013094, - 0.019812, - 0.12184, - -0.13087, - -0.031571, - -0.020453, - -0.036943, - 0.015637, - -0.049646, - -0.042585, - -0.083127, - 0.066928, - 0.023542, - 0.047166, - -0.069671, - -0.0038369, - 0.016423, - -0.042065, - 0.024598, - 0.029649, - 0.039718, - -0.053954, - 0.029407, - 0.013886, - -0.018936, - -0.062863, - -0.053225, - 0.04284, - 0.06457, - 0.03017, - -0.021302 - ], - "Finances": [ - 0.12303, - -0.015424, - -0.030834, - -0.065396, - 0.068266, - -0.014367, - -0.035371, - -0.040913, - 0.029476, - -0.0047307, - 0.02312, - -0.061302, - -0.051953, - -0.025473, - -0.042946, - 0.075446, - 0.023151, - -0.023164, - 0.07743, - 0.0027154, - -0.042354, - 0.054997, - -0.01908, - 0.05114, - 0.025733, - 0.036931, - -0.013849, - 0.014462, - 0.086607, - -0.013029, - -0.020708, - 0.0091186, - -0.05333, - 0.000053263, - 0.060265, - 0.041924, - -0.061863, - 0.023504, - -0.0066589, - -0.035317, - 0.016839, - 0.09963, - 0.084175, - 0.032818, - -0.030977, - 0.030994, - -0.059641, - -0.069539, - -0.031706, - -0.056888, - -0.01217, - -0.075573, - -0.0066887, - 0.044318, - -0.034951, - 0.00028905, - -0.093207, - -0.019993, - -0.092201, - 0.036551, - 0.075391, - -0.029765, - 0.011064, - 0.083352, - 0.019636, - -0.014142, - 0.0070199, - -0.052552, - -0.016113, - 0.029427, - 0.0046362, - -0.051292, - -0.0018733, - 0.014634, - 0.031937, - 0.022302, - 0.044172, - -0.096284, - 0.046604, - 0.012308, - -0.023339, - -0.00084401, - -0.037022, - -0.018848, - 0.073519, - 0.0043034, - -0.030418, - -0.084923, - 0.0074396, - -0.010752, - 0.079642, - -0.093416, - -0.029834, - 0.041225, - -0.12148, - 0.083371, - -0.047656, - -0.023321, - 0.061494, - -0.0012244, - -0.010615, - 0.0016333, - -0.0074471, - -0.045155, - 0.024826, - -0.058957, - 0.0062548, - -0.058905, - 0.019834, - 0.021643, - 0.009758, - 0.045726, - 0.069483, - 0.013799, - 0.027742, - -0.022963, - -0.010525, - 0.0029935, - 0.041805, - 0.040127, - -0.016347, - -0.0093292, - 0.10405, - 0.023818, - 0.10426, - 0.02311, - -0.05637, - -0.058532, - 0.046868, - 0.23431, - 0.0099814, - 0.069651, - 0.077718, - -0.028204, - -0.016587, - 0.048599, - -0.011349, - 0.0065593, - 0.0083988, - 0.058309, - -0.0066677, - 0.0034577, - -0.07626, - 0.034525, - 0.085342, - 0.057344, - -0.019121, - -0.023955, - 0.029077, - -0.068665, - 0.052638, - 0.054407, - 0.074661, - -0.049996, - 0.029252, - 0.043353, - 0.066524, - -0.00087284, - 0.030189, - -0.048099, - 0.057479, - -0.0050983, - -0.081612, - 0.03252, - 0.018041, - -0.053596, - -0.0042825, - -0.0939, - 0.065679, - 0.011417, - -0.054687, - -0.037278, - -0.028283, - -0.029462, - -0.037791, - 0.031097, - 0.0010964, - 0.0017359, - 0.036904, - -0.023464, - -0.033542, - 0.010313, - 0.013982, - -0.021827, - 0.037139, - 0.15157, - -0.043953, - 0.10805, - 0.018325, - -0.029966, - 0.0062608, - 0.12623, - -0.12552, - -0.0029671, - -0.025014, - -0.045263, - -0.021562, - -0.038557, - 0.011779, - -0.04788, - -0.024779, - 0.036375, - 0.026853, - 0.0048223, - 0.023085, - 0.025983, - -0.049626, - -0.092896, - -0.0057918, - 0.050217, - 0.14322, - 0.036946, - 0.047159, - 0.029656, - 0.096753, - 0.013231, - -0.012141, - 0.012924, - -0.088816, - 0.0073379, - 0.044238, - -0.014153, - -0.021198, - 0.092355, - 0.06469, - 0.0074632, - 0.010681, - 0.016016, - -0.00056576, - -0.01241, - -0.018194, - -0.064628, - -0.02529, - 0.030158, - 0.032967, - 0.0033719, - -0.012911, - -0.0054733, - -0.059867, - -0.09261, - -0.051108, - -0.006267, - -0.0016869, - -0.0060851, - 0.14854, - 0.038417, - 0.026902, - -0.043054, - 0.033845, - -0.1005, - -0.02079, - -0.0015267, - 0.0046774, - -0.007364, - -0.010312, - -0.07276, - -0.041747, - 0.021817, - 0.0078501, - 0.057425, - 0.0061238, - -0.028294, - 0.033579, - -0.033226, - -0.004717, - 0.087199, - -0.020381, - -0.024747, - 0.0088747, - -0.014444, - 0.018685, - 0.11184, - -0.049093, - 0.028548, - -0.013289, - -0.0019327, - -0.02014, - 0.064264, - 0.027661, - 0.018164, - 0.0053315, - -0.023806, - 0.047358, - -0.04314, - 0.086446, - 0.075469, - 0.080552, - 0.042032, - -0.10157, - -0.002159, - 0.046478, - 0.024969, - -0.010201, - 0.074976, - -0.02491, - -0.0046151, - -0.038752, - -0.024832, - -0.016233, - -0.04501 - ], - "biography": [ - 0.0069488, - -0.095443, - 0.059122, - 0.033499, - 0.02633, - 0.014835, - -0.022713, - -0.084355, - -0.0029328, - 0.0066731, - 0.004418, - -0.018655, - 0.049862, - -0.065921, - -0.0005992, - 0.0071987, - 0.061542, - -0.042988, - -0.0058505, - -0.00086805, - -0.0049091, - 0.02492, - 0.01586, - 0.065048, - 0.05168, - -0.025888, - -0.032432, - 0.050216, - 0.004019, - -0.00097875, - 0.0071642, - 0.031313, - -0.044036, - -0.09144, - 0.011228, - -0.015216, - -0.050593, - -0.024132, - 0.024662, - 0.029286, - -0.036768, - -0.099601, - 0.10008, - 0.042231, - 0.024611, - 0.035107, - 0.012744, - -0.023654, - -0.0051922, - -0.021294, - 0.000056125, - -0.0038839, - 0.017491, - 0.030908, - -0.024859, - 0.0014677, - -0.092091, - -0.0094064, - -0.036632, - -0.055764, - -0.020903, - 0.0078371, - 0.12547, - 0.0046735, - 0.052184, - -0.0045954, - -0.059899, - 0.039294, - -0.014847, - 0.025885, - 0.025709, - 0.0063471, - -0.019635, - -0.034268, - 0.019963, - 0.019271, - 0.038082, - -0.019037, - 0.028862, - -0.03179, - 0.0258, - -0.0011384, - 0.0021932, - 0.046355, - -0.048898, - -0.036408, - -0.0058697, - 0.007665, - 0.027749, - 0.057749, - 0.0088671, - 0.031142, - -0.043845, - 0.0093061, - 0.0067741, - 0.0517, - -0.051321, - 0.029393, - 0.094504, - -0.0039102, - -0.027806, - 0.025179, - 0.029723, - -0.012068, - -0.053276, - -0.069365, - 0.045303, - 0.003398, - 0.01218, - 0.068111, - -0.02119, - 0.0058449, - 0.020829, - -0.073523, - -0.0093585, - -0.015456, - 0.027176, - 0.011462, - -0.019953, - -0.01093, - 0.047369, - -0.046562, - -0.016802, - 0.017014, - 0.049396, - 0.011563, - -0.060202, - -0.0181, - 0.046211, - 0.10909, - -0.041168, - -0.027021, - 0.00061408, - -0.022645, - -0.034612, - 0.051526, - 0.083099, - 0.038233, - 0.027345, - -0.0095708, - 0.025739, - 0.0083083, - 0.028665, - -0.0024996, - -0.03802, - -0.034885, - -0.035018, - 0.024779, - 0.072448, - -0.01518, - -0.0037082, - 0.024498, - 0.018422, - -0.067022, - -0.014071, - 0.046834, - 0.056339, - 0.046146, - 0.05411, - 0.025293, - -0.0056053, - 0.08761, - -0.036709, - -0.014836, - -0.012504, - -0.029967, - 0.013876, - 0.038118, - -0.039999, - -0.017104, - -0.043057, - 0.0076036, - 0.0083132, - 0.0029612, - 0.06531, - 0.046562, - -0.014404, - -0.02095, - 0.029884, - 0.031605, - 0.0078579, - -0.0060997, - 0.025758, - -0.0059024, - 0.0064738, - 0.023874, - 0.0080638, - 0.070606, - 0.030319, - 0.012634, - -0.0028056, - 0.1029, - -0.045572, - -0.0048346, - -0.06831, - -0.019823, - -0.029118, - -0.060376, - -0.065864, - -0.012215, - -0.12821, - 0.074247, - -0.0026614, - -0.064698, - -0.049844, - 0.029505, - -0.021689, - 0.052285, - 0.008594, - -0.031775, - 0.10474, - -0.0044304, - -0.021451, - 0.031877, - -0.011788, - 0.054634, - 0.014365, - 0.022622, - -0.017315, - 0.030789, - -0.03044, - 0.028768, - 0.01036, - 0.094399, - 0.012561, - 0.045878, - 0.051229, - 0.076361, - -0.071727, - 0.022062, - -0.035869, - -0.090503, - 0.011215, - -0.0034524, - 0.019882, - -0.006982, - 0.041779, - -0.05122, - -0.0099477, - -0.013455, - 0.058569, - 0.0019665, - 0.015294, - -0.017315, - 0.0068641, - -0.068949, - -0.052305, - -0.02534, - -0.017797, - 0.01009, - 0.094019, - -0.035487, - -0.008838, - 0.03689, - 0.015916, - -0.005816, - -0.030283, - -0.021617, - 0.099129, - 0.029867, - 0.0082448, - -0.013212, - 0.079642, - -0.037554, - 0.014486, - -0.042532, - -0.08234, - -0.01767, - 0.070993, - -0.064149, - 0.064816, - 0.071774, - -0.065166, - -0.0051178, - -0.031942, - -0.0021368, - -0.021119, - -0.022359, - -0.0041799, - 0.016453, - 0.083082, - -0.022505, - 0.06859, - -0.072374, - -0.03332, - 0.012725, - -0.02151, - 0.012849, - -0.023846, - 0.023123, - -0.015946, - -0.012461, - 0.01245, - 0.0023736, - -0.027262, - 0.080848, - 0.0079109, - -0.018278, - -0.030445, - -0.016447 - ], - "babysitters": [ - 0.0041242, - -0.031726, - -0.016596, - -0.019987, - -0.05306, - -0.00082226, - 0.037102, - -0.066962, - 0.034315, - 0.0015822, - 0.029692, - 0.034239, - -0.039132, - -0.017221, - -0.051413, - -0.043304, - 0.051381, - 0.021424, - 0.035495, - -0.022835, - -0.0040763, - 0.0047947, - -0.025243, - 0.011324, - 0.043648, - 0.044395, - 0.0050458, - -0.0094538, - 0.076364, - -0.0052209, - 0.011186, - -0.024312, - -0.012973, - 0.022907, - 0.02563, - 0.029883, - -0.043855, - -0.0052264, - -0.031272, - -0.042199, - -0.07386, - -0.080356, - -0.0051918, - -0.013585, - 0.076349, - 0.01938, - 0.02053, - 0.021478, - -0.072392, - 0.0047042, - -0.017069, - 0.050641, - 0.065459, - -0.013251, - -0.032031, - -0.031845, - -0.019636, - -0.056554, - -0.041305, - -0.10295, - 0.0093267, - -0.03875, - 0.063374, - 0.069557, - -0.04067, - 0.037137, - -0.0095749, - -0.092231, - -0.074764, - -0.052793, - 0.060211, - 0.036523, - 0.08195, - -0.0069611, - -0.034774, - -0.0080196, - 0.059532, - -0.07544, - -0.0083857, - -0.060563, - -0.030999, - 0.0051855, - 0.042344, - 0.069827, - -0.017173, - -0.025312, - 0.079867, - 0.010141, - -0.0092819, - 0.0051216, - 0.012697, - 0.019612, - -0.075698, - -0.015496, - 0.0021098, - 0.067138, - 0.0082255, - 0.035027, - 0.0071244, - -0.071586, - 0.036621, - 0.029082, - -0.020811, - -0.070175, - 0.013083, - -0.039109, - 0.065927, - -0.04599, - -0.045783, - -0.037967, - 0.0069371, - 0.058171, - 0.044591, - 0.012358, - -0.035659, - -0.036191, - -0.0036675, - -0.020125, - -0.058248, - 0.0077123, - -0.072496, - 0.068788, - 0.053196, - -0.035332, - 0.12992, - -0.028672, - -0.0029528, - -0.0048393, - 0.018081, - 0.022648, - -0.020678, - 0.077976, - -0.047888, - -0.0042427, - -0.021846, - -0.021688, - -0.013532, - 0.014959, - -0.000046774, - -0.019731, - 0.010739, - -0.010759, - 0.0059727, - -0.033496, - -0.00096779, - 0.000082576, - 0.033629, - -0.022787, - 0.0084345, - -0.0071414, - 0.041827, - 0.068636, - -0.08504, - -0.014422, - 0.047092, - -0.025456, - 0.010581, - 0.060002, - 0.043723, - -0.025144, - 0.028666, - 0.027247, - 0.007017, - -0.0094483, - 0.047168, - 0.031366, - 0.010179, - 0.01332, - 0.022298, - -0.060504, - -0.058345, - -0.017037, - -0.004922, - -0.0015018, - -0.0003946, - 0.025374, - -0.015207, - 0.076536, - 0.025854, - 0.0034975, - 0.084076, - -0.032025, - -0.027424, - -0.02075, - -0.014161, - -0.039704, - 0.04779, - 0.075646, - -0.0027175, - 0.019405, - -0.027639, - 0.090371, - -0.075708, - -0.015032, - 0.051358, - 0.034879, - 0.06143, - 0.042985, - 0.035483, - 0.010846, - -0.10131, - 0.075332, - -0.028753, - 0.027558, - 0.077301, - 0.075666, - -0.037217, - -0.044152, - -0.055602, - -0.055079, - 0.062891, - 0.00044443, - 0.042461, - 0.052459, - -0.044362, - -0.027981, - -0.072853, - -0.03022, - -0.045975, - 0.013772, - 0.082668, - 0.011623, - -0.0030146, - 0.092802, - 0.079691, - -0.03934, - 0.014397, - 0.034231, - -0.013012, - -0.0068744, - 0.008106, - 0.0071508, - -0.042513, - 0.0021078, - 0.019003, - -0.021133, - 0.035824, - 0.031745, - -0.029738, - -0.011671, - 0.030254, - -0.0084355, - 0.010606, - -0.088321, - 0.039591, - 0.0048984, - -0.057941, - -0.0099888, - -0.02354, - 0.028237, - -0.039643, - 0.070305, - -0.015461, - 0.038333, - -0.0071435, - 0.0041633, - 0.0038244, - -0.017747, - 0.015156, - -0.020695, - -0.0002506, - -0.028283, - -0.01796, - 0.0057807, - 0.0025944, - 0.10215, - -0.033093, - -0.0027965, - -0.0056146, - 0.009719, - -0.048906, - 0.074882, - -0.073831, - -0.037952, - -0.022221, - 0.010929, - -0.039715, - 0.040258, - 0.022331, - 0.025132, - 0.026051, - 0.021669, - 0.066501, - -0.013184, - 0.020683, - 0.074583, - -0.043272, - -0.065105, - -0.02613, - -0.011657, - 0.036122, - -0.018452, - -0.066413, - -0.0072776, - -0.033119, - 0.030465, - 0.033783, - 0.069073, - 0.011795, - -0.021277 - ], - "educational": [ - -0.0060057, - -0.052752, - -0.012446, - 0.029484, - -0.02266, - -0.016077, - -0.012213, - -0.066676, - 0.010891, - -0.0014593, - 0.0055092, - -0.04284, - 0.0059429, - -0.016046, - 0.00033811, - -0.009287, - 0.037033, - 0.013233, - 0.028585, - -0.0031611, - -0.016897, - 0.023052, - 0.014466, - 0.087272, - -0.055305, - 0.028145, - -0.010854, - 0.016654, - 0.016484, - 0.018945, - 0.0010694, - -0.055219, - -0.011057, - -0.093019, - 0.06842, - 0.054194, - 0.013759, - -0.018787, - -0.0058391, - 0.024362, - 0.01827, - -0.095089, - 0.014899, - 0.022615, - 0.052751, - -0.013352, - -0.0097879, - -0.019449, - -0.018318, - 0.0095556, - -0.046785, - 0.018797, - -0.015891, - -0.015639, - 0.028539, - 0.034185, - -0.019698, - -0.0038974, - 0.010905, - -0.016068, - 0.016134, - 0.021036, - 0.12944, - 0.045915, - 0.068536, - -0.0029824, - -0.029579, - -0.017952, - 0.025982, - 0.010887, - 0.018725, - -0.04347, - 0.041362, - 0.033178, - 0.0044065, - -0.023373, - -0.033747, - -0.011939, - 0.030663, - 0.016654, - -0.015877, - 0.02318, - -0.027381, - 0.0059322, - -0.021137, - 0.030311, - -0.040448, - 0.013961, - -0.040164, - -0.019682, - 0.023118, - 0.035557, - -0.06961, - 0.015897, - -0.0038642, - 0.016791, - 0.03689, - 0.0061249, - 0.036249, - 0.026107, - 0.038081, - 0.01531, - 0.0068588, - -0.070285, - 0.021891, - -0.067852, - 0.040753, - -0.0032198, - -0.041146, - 0.0061765, - -0.02305, - 0.071819, - 0.024014, - 0.053641, - -0.0050245, - -0.020331, - -0.025898, - -0.012236, - -0.024347, - -0.0081366, - -0.016646, - -0.026155, - 0.0076415, - 0.0047674, - 0.081876, - -0.0023218, - 0.0053379, - -0.031999, - 0.007459, - 0.070536, - 0.013697, - -0.00017115, - 0.00075332, - -0.0060764, - -0.025666, - 0.024438, - -0.0091009, - 0.052797, - 0.0049413, - 0.0097763, - -0.0054941, - -0.011896, - -0.0014195, - 0.011711, - -0.039068, - -0.014898, - -0.037417, - 0.010041, - -0.025088, - 0.055492, - 0.03018, - 0.13139, - -0.024109, - -0.055466, - 0.041152, - 0.012073, - 0.0026946, - 0.028374, - 0.030602, - -0.012387, - 0.032759, - -0.0063721, - -0.057877, - 0.0042601, - -0.0118, - 0.038544, - 0.047744, - 0.0098988, - -0.0087796, - -0.043696, - 0.039272, - 0.013702, - 0.010884, - 0.02446, - -0.021416, - 0.053594, - -0.014599, - 0.036891, - -0.03241, - 0.022171, - -0.03152, - -0.017492, - -0.045196, - -0.017042, - -0.018405, - -0.034941, - -0.017229, - 0.081513, - 0.014866, - -0.01744, - 0.015861, - 0.067612, - 0.089802, - -0.034181, - -0.0038708, - -0.010851, - 0.023918, - 0.039543, - 0.041903, - -0.051664, - -0.11014, - 0.028177, - 0.027726, - -0.014916, - -0.0026872, - -0.0090213, - -0.020609, - 0.020079, - -0.0042579, - 0.00086957, - 0.12174, - -0.0024328, - -0.038955, - 0.012005, - -0.0078222, - 0.033199, - 0.0047599, - -0.022236, - -0.05927, - -0.020332, - -0.027041, - 0.012745, - -0.019241, - 0.058129, - 0.015922, - -0.047412, - 0.020552, - 0.066981, - 0.001006, - -0.013968, - 0.018935, - -0.038297, - -0.04598, - 0.019049, - 0.016903, - 0.037395, - 0.020858, - 0.01311, - -0.069351, - -0.00046807, - 0.030956, - -0.021652, - 0.027204, - -0.028743, - -0.12736, - 0.029854, - 0.0052384, - -0.032762, - -0.020467, - 0.0012983, - 0.0093864, - -0.0090995, - 0.016447, - -0.045551, - -0.057687, - 0.019989, - -0.041797, - 0.020866, - 0.0082598, - -0.022342, - 0.03658, - -0.0073108, - 0.0047724, - 0.01246, - 0.051212, - 0.0082535, - 0.021728, - 0.0027168, - 0.047512, - 0.043687, - 0.041026, - 0.039829, - -0.072815, - -0.022515, - 0.013124, - -0.068447, - -0.019969, - 0.026707, - -0.011784, - 0.016155, - 0.12638, - 0.0044717, - 0.01702, - -0.022991, - 0.022151, - 0.011075, - -0.014042, - -0.0015931, - -0.033819, - -0.0072511, - -0.038201, - 0.0084562, - 0.0087036, - 0.027382, - -0.0039439, - 0.035304, - -0.016274, - -0.015755, - 0.0083714, - -0.012046 - ], - "Smartphone": [ - -0.075045, - 0.02243, - -0.034839, - 0.017535, - -0.044318, - 0.048248, - -0.021293, - -0.01083, - 0.083225, - 0.020463, - 0.034399, - -0.024039, - -0.077713, - -0.018806, - 0.010404, - -0.0069639, - 0.030283, - 0.00093154, - 0.087107, - -0.067391, - 0.019349, - -0.016178, - 0.022738, - 0.082898, - 0.023386, - 0.019766, - -0.016766, - -0.002199, - -0.023025, - -0.0030234, - 0.0078486, - -0.02539, - 0.093932, - 0.032312, - 0.045453, - -0.0024505, - 0.024198, - 0.012277, - -0.018586, - -0.019516, - -0.0088797, - 0.061575, - -0.03072, - 0.017116, - 0.051005, - -0.015164, - -0.080235, - -0.043557, - -0.015518, - -0.0682, - 0.035919, - -0.020069, - -0.018346, - -0.054782, - -0.017107, - 0.019369, - -0.01751, - 0.03083, - -0.046971, - 0.017871, - 0.046282, - -0.013565, - -0.0087576, - 0.029063, - -0.0041654, - -0.0039265, - 0.053451, - 0.046479, - -0.064416, - 0.021128, - -0.09122, - -0.022947, - -0.033173, - 0.018368, - -0.11097, - 0.0018191, - 0.044318, - -0.065374, - 0.010155, - -0.059079, - -0.0084312, - -0.053091, - -0.078324, - -0.021314, - 0.038957, - -0.046272, - 0.0063188, - -0.019161, - -0.059366, - 0.012104, - 0.028345, - -0.00040023, - -0.012913, - 0.0025726, - -0.051805, - 0.11584, - -0.0084657, - -0.097172, - 0.0098046, - 0.020676, - 0.058328, - 0.034253, - 0.011261, - -0.014538, - -0.083215, - -0.094675, - -0.015974, - 0.086431, - 0.043797, - -0.021642, - 0.015625, - 0.02641, - 0.085295, - 0.054193, - -0.010338, - -0.0058529, - -0.057136, - -0.045225, - 0.025839, - -0.01434, - -0.010228, - 0.048306, - 0.032513, - -0.0041089, - 0.0060976, - 0.050647, - 0.009604, - -0.048906, - 0.056912, - 0.10907, - -0.01159, - 0.010097, - -0.01879, - -0.10146, - 0.033484, - -0.018014, - 0.023218, - -0.034878, - -0.072666, - 0.012861, - 0.06646, - 0.025326, - 0.034931, - -0.015722, - -0.0068174, - 0.040696, - -0.011494, - -0.0162, - 0.078904, - -0.020572, - -0.0135, - 0.049995, - 0.025716, - -0.055995, - -0.028878, - 0.094584, - -0.027509, - 0.018701, - -0.01127, - -0.066901, - 0.023803, - 0.028455, - -0.070656, - 0.010436, - 0.028619, - -0.023906, - 0.026727, - -0.046967, - 0.018709, - 0.0057513, - -0.080039, - 0.11349, - -0.020056, - 0.060534, - -0.070009, - 0.021764, - -0.054355, - -0.043451, - -0.011434, - -0.007899, - 0.011666, - -0.058421, - -0.0023012, - 0.0272, - -0.060639, - 0.043796, - 0.0030349, - 0.11174, - 0.00013765, - 0.030754, - 0.0070733, - 0.015735, - -0.028681, - 0.0050322, - -0.0013718, - -0.022017, - -0.045757, - -0.011837, - 0.051046, - 0.021911, - -0.005914, - 0.12938, - -0.061684, - 0.032487, - -0.025833, - 0.030459, - 0.0015321, - 0.009097, - -0.021905, - 0.017275, - 0.19001, - -0.014587, - -0.0044951, - 0.019655, - 0.041546, - -0.0015712, - -0.024914, - -0.0043138, - -0.0040421, - -0.026319, - 0.043907, - -0.052369, - -0.0087469, - 0.067439, - -0.023506, - -0.067074, - 0.012045, - -0.0036216, - -0.0026117, - -0.038118, - 0.012444, - -0.030121, - 0.0040692, - 0.0274, - 0.029778, - 0.072661, - 0.0097847, - -0.027365, - 0.041005, - -0.053825, - -0.031139, - 0.031533, - -0.0081321, - -0.034407, - 0.13142, - -0.037336, - 0.026097, - -0.019574, - -0.008012, - -0.10251, - -0.017634, - -0.0090049, - -0.1268, - 0.016669, - 0.051038, - -0.048726, - 0.0069239, - -0.0037607, - -0.012569, - 0.030147, - -0.030351, - 0.094182, - -0.017126, - -0.039251, - 0.030947, - -0.045419, - 0.0024483, - -0.0010748, - 0.039544, - 0.04787, - -0.015297, - 0.059918, - -0.032234, - 0.030781, - -0.047685, - -0.052587, - 0.040469, - 0.031226, - -0.009645, - -0.026772, - 0.056044, - -0.018551, - -0.026293, - 0.028207, - 0.023048, - -0.050123, - -0.039307, - -0.0088509, - 0.051027, - -0.029625, - -0.0049152, - -0.0477, - -0.061565, - 0.0084995, - 0.036112, - 0.012326, - 0.0072399, - 0.051235, - 0.021403, - 0.035457 - ], - "court": [ - -0.03845, - -0.10614, - 0.053431, - 0.03748, - 0.028318, - -0.083665, - -0.012027, - -0.12471, - 0.086322, - 0.040997, - 0.057815, - -0.13571, - 0.058229, - 0.083518, - -0.0033483, - 0.052521, - 0.14974, - -0.032166, - 0.092733, - 0.039637, - -0.051865, - -0.076305, - 0.014951, - 0.073149, - -0.027134, - 0.055164, - -0.018836, - 0.054204, - -0.067556, - -0.047675, - -0.025457, - -0.038862, - -0.08831, - -0.083999, - -0.032967, - 0.059814, - 0.016435, - -0.027987, - 0.051024, - -0.0026817, - -0.0033518, - -0.15291, - 0.042619, - 0.018013, - 0.049426, - 0.054032, - 0.039531, - 0.087501, - -0.076115, - 0.036392, - 0.12233, - 0.0014283, - 0.0042876, - 0.03881, - -0.096069, - 0.018636, - -0.041039, - 0.0000060011, - -0.061036, - -0.020633, - 0.0098291, - 0.0083045, - 0.11642, - -0.018964, - -0.0089082, - 0.0093364, - 0.024262, - -0.058383, - -0.0060132, - 0.01258, - 0.092827, - -0.061956, - 0.016608, - -0.095515, - 0.046589, - 0.06978, - 0.00026631, - -0.017965, - -0.0045724, - 0.0082153, - -0.050321, - 0.050628, - 0.041764, - 0.058811, - -0.057207, - -0.022178, - 0.041068, - -0.063318, - -0.0083673, - 0.045338, - -0.055264, - 0.036286, - -0.10137, - -0.027089, - 0.028828, - 0.074565, - -0.075299, - 0.030647, - 0.02865, - 0.021766, - 0.047409, - -0.011504, - 0.063132, - -0.034538, - 0.012887, - -0.12254, - 0.03063, - -0.028407, - -0.016621, - -0.0083856, - -0.038518, - 0.13577, - 0.076371, - 0.011017, - 0.0018427, - -0.043263, - 0.060445, - -0.089527, - -0.029998, - 0.015838, - 0.046567, - 0.045186, - 0.049042, - 0.086681, - 0.0000039505, - -0.0060459, - -0.020557, - -0.099116, - -0.042564, - 0.15579, - -0.053616, - 0.087773, - -0.098542, - -0.010642, - -0.056021, - -0.024948, - -0.034082, - 0.07271, - -0.0086986, - -0.14759, - 0.041837, - -0.033034, - -0.023369, - -0.0089617, - -0.075359, - 0.0043304, - 0.00086994, - -0.0015993, - -0.0319, - -0.020669, - 0.058242, - 0.080743, - 0.02664, - -0.069178, - -0.026613, - -0.020039, - -0.028603, - -0.047419, - 0.043318, - 0.015063, - 0.097918, - 0.02913, - 0.0091841, - 0.031377, - 0.049577, - 0.052624, - 0.055167, - 0.0094387, - 0.029047, - -0.023009, - 0.0093345, - 0.039314, - 0.055394, - -0.0073587, - 0.015407, - 0.023047, - -0.014688, - -0.0045511, - -0.086412, - -0.060808, - 0.019487, - -0.034779, - -0.072802, - -0.050541, - -0.043097, - 0.020991, - -0.044541, - 0.097123, - 0.10832, - 0.011926, - -0.064551, - 0.093928, - -0.024668, - -0.01725, - -0.016684, - -0.032774, - 0.033337, - 0.021025, - -0.043739, - 0.021236, - -0.1848, - 0.074857, - -0.018539, - 0.016125, - -0.071276, - 0.1, - 0.012377, - -0.043701, - 0.039694, - -0.06299, - 0.10417, - 0.021217, - 0.041992, - 0.029052, - -0.099359, - -0.0083974, - -0.0034228, - 0.022753, - 0.021799, - -0.059169, - 0.049025, - -0.029316, - 0.016361, - 0.10768, - 0.019022, - -0.0091939, - -0.047157, - 0.064479, - -0.073741, - 0.0027285, - -0.010442, - -0.1371, - 0.0052939, - 0.018662, - -0.0070473, - 0.042058, - -0.084281, - 0.0066385, - 0.069461, - -0.057829, - 0.10998, - -0.074828, - -0.049781, - 0.052104, - 0.013486, - 0.029957, - 0.0031335, - -0.014224, - -0.003983, - -0.0029174, - 0.0088134, - -0.030938, - 0.019443, - -0.031327, - 0.031979, - 0.036146, - -0.053527, - 0.06849, - -0.14974, - 0.033968, - -0.063368, - 0.062671, - -0.034928, - -0.024903, - -0.037231, - -0.044121, - -0.0012807, - 0.083636, - -0.030723, - -0.037708, - -0.0075205, - 0.071659, - -0.17285, - 0.012228, - 0.041515, - -0.004285, - -0.024435, - 0.085334, - -0.061811, - 0.00040892, - 0.023488, - -0.031584, - -0.0017104, - -0.013761, - 0.023168, - 0.049254, - -0.046397, - -0.10992, - 0.0047985, - 0.082839, - -0.026621, - -0.072816, - 0.084967, - 0.039565, - -0.0017478, - -0.10619, - -0.090029, - 0.028433, - 0.046204, - 0.019575 - ], - "winter": [ - 0.025486, - -0.053384, - 0.036956, - -0.079786, - 0.035411, - -0.08061, - -0.099585, - -0.092327, - 0.060143, - -0.0086424, - -0.087312, - -0.028085, - -0.026945, - -0.016657, - 0.016341, - -0.05288, - 0.11604, - -0.011946, - 0.013761, - 0.074714, - -0.078368, - -0.057988, - -0.093872, - 0.063293, - 0.181, - 0.018356, - -0.0068107, - 0.0761, - -0.025514, - 0.045916, - 0.023639, - -0.015499, - -0.0035671, - -0.16374, - 0.016281, - 0.019514, - 0.093442, - 0.029346, - 0.030029, - 0.01113, - 0.020394, - -0.034193, - -0.013265, - -0.058094, - 0.021762, - 0.053163, - -0.049154, - -0.010093, - -0.038799, - 0.011586, - 0.046575, - 0.030325, - -0.039201, - 0.049251, - -0.062937, - -0.01342, - 0.040751, - -0.013419, - -0.030094, - -0.013304, - -0.00535, - -0.018744, - 0.10672, - -0.01171, - -0.076508, - -0.046293, - -0.031984, - -0.064384, - -0.030263, - 0.04948, - -0.039487, - 0.062844, - -0.014539, - 0.031045, - 0.019036, - 0.045049, - 0.0021977, - 0.011866, - -0.099217, - -0.0053222, - 0.0055598, - -0.008965, - 0.049524, - 0.08294, - 0.015487, - 0.064399, - 0.067561, - -0.016404, - -0.068999, - -0.041025, - -0.012082, - -0.032037, - -0.087388, - 0.046294, - 0.040201, - 0.079881, - -0.0076964, - 0.11853, - 0.043591, - -0.037306, - 0.093964, - 0.044796, - 0.0096451, - 0.1453, - 0.010745, - -0.0011972, - -0.068044, - 0.02233, - -0.013189, - 0.035216, - -0.038484, - 0.0071148, - 0.048725, - 0.045973, - 0.034569, - -0.15018, - 0.057374, - 0.03904, - -0.038322, - -0.022753, - 0.028251, - 0.024005, - 0.0012911, - -0.01238, - -0.022537, - -0.037219, - -0.042413, - -0.12531, - -0.02355, - 0.030512, - 0.026095, - 0.022866, - 0.024883, - 0.065397, - 0.04228, - 0.032161, - 0.046353, - 0.0060894, - -0.048065, - 0.013689, - 0.055152, - -0.098074, - 0.0016272, - -0.023494, - 0.057011, - -0.045094, - 0.0052759, - 0.010678, - -0.035681, - -0.046622, - 0.043241, - 0.047012, - -0.031503, - -0.0010682, - 0.056987, - -0.01159, - -0.0076022, - 0.055745, - 0.010269, - 0.011591, - 0.039722, - -0.059999, - -0.044137, - 0.086173, - -0.0038201, - -0.017355, - 0.0071008, - 0.017161, - 0.048118, - 0.068004, - 0.026072, - -0.064436, - 0.017105, - 0.027392, - 0.01793, - 0.063809, - 0.032871, - 0.021601, - -0.023788, - -0.0062401, - -0.014696, - 0.039922, - -0.0044952, - -0.11381, - -0.0073536, - -0.023528, - -0.040552, - 0.10489, - -0.068164, - 0.040493, - 0.027143, - -0.041316, - -0.022508, - -0.006775, - 0.037937, - -0.055417, - 0.070465, - -0.01572, - 0.00030458, - -0.0098308, - -0.14666, - 0.047242, - -0.073031, - -0.0075279, - -0.0099929, - 0.028885, - -0.064926, - 0.084218, - -0.042871, - -0.05343, - 0.1704, - -0.055664, - 0.0046651, - 0.019691, - 0.089177, - 0.041456, - 0.037067, - -0.040999, - -0.0049972, - -0.1634, - 0.026802, - -0.0066562, - 0.0095106, - 0.11933, - -0.096603, - 0.036661, - -0.018314, - 0.05713, - -0.026556, - 0.053347, - 0.010544, - -0.16167, - -0.022683, - 0.0037457, - -0.035755, - -0.021672, - 0.029224, - -0.037728, - 0.0078235, - -0.085892, - 0.064329, - 0.034475, - 0.05735, - -0.048603, - -0.035998, - 0.026894, - 0.024988, - -0.060113, - -0.0035092, - -0.040152, - -0.0044835, - 0.019138, - -0.035155, - 0.030031, - -0.027096, - -0.0041978, - 0.052849, - 0.056566, - 0.04917, - 0.082191, - 0.030094, - -0.01784, - -0.052756, - -0.057039, - 0.030764, - 0.023654, - 0.019212, - -0.019078, - 0.029436, - -0.01372, - 0.028382, - 0.057359, - -0.11607, - -0.020677, - 0.018461, - -0.14657, - -0.029126, - -0.10421, - 0.015229, - 0.021297, - 0.027275, - -0.004934, - 0.050568, - -0.040634, - -0.013124, - 0.051181, - 0.017638, - -0.064369, - -0.078858, - 0.026958, - 0.024201, - 0.058311, - -0.023693, - -0.033236, - -0.0037216, - -0.12756, - -0.045551, - 0.035606, - 0.022633, - 0.049425 - ], - "democracy": [ - 0.026351, - -0.046308, - 0.0043857, - 0.0028082, - -0.084414, - 0.01795, - 0.035285, - -0.078313, - 0.075312, - -0.00091157, - 0.020771, - -0.045812, - 0.040544, - 0.034463, - 0.0089703, - 0.04293, - 0.12654, - -0.0037806, - 0.029753, - 0.0011764, - -0.019814, - -0.028119, - -0.012889, - 0.047305, - -0.0010631, - 0.030615, - 0.00087129, - -0.039018, - 0.024374, - -0.016972, - 0.02762, - -0.026705, - -0.04486, - -0.024953, - 0.011469, - 0.026993, - 0.022335, - -0.019511, - -0.018396, - -0.0016914, - -0.022696, - -0.097153, - -0.088492, - 0.02659, - 0.045297, - -0.057978, - -0.034926, - 0.0020547, - -0.012329, - -0.007482, - 0.017253, - 0.037308, - 0.0016525, - -0.037868, - -0.065994, - -0.0088276, - 0.042915, - -0.02203, - -0.051443, - 0.029147, - -0.031167, - 0.024879, - 0.024008, - 0.029934, - 0.051937, - 0.049396, - -0.0015699, - -0.053478, - 0.08769, - -0.015671, - -0.021948, - 0.00013341, - -0.02861, - -0.023924, - -0.020643, - -0.014488, - -0.044694, - -0.016089, - -0.064461, - 0.094444, - 0.023362, - 0.034511, - -0.05542, - 0.074442, - 0.012158, - -0.032382, - -0.076364, - -0.012554, - 0.0041298, - 0.044895, - -0.0025513, - 0.049185, - -0.098919, - -0.0016071, - -0.0021854, - 0.03698, - 0.093791, - 0.00060732, - 0.0083541, - -0.030356, - 0.074564, - -0.033069, - -0.017245, - -0.098758, - -0.061849, - -0.063685, - 0.064827, - -0.013217, - -0.074615, - -0.0018272, - -0.024965, - 0.091427, - 0.044363, - -0.011919, - -0.047006, - 0.030045, - 0.039715, - 0.00077499, - -0.035465, - 0.096332, - 0.0087492, - -0.093016, - 0.023741, - -0.015301, - 0.021437, - 0.0056568, - 0.0057345, - -0.075933, - -0.017335, - 0.094557, - 0.0047345, - -0.043685, - 0.060471, - 0.081731, - 0.042121, - -0.015316, - 0.016368, - -0.01118, - -0.012495, - -0.0061756, - 0.042798, - -0.082123, - 0.0043165, - 0.025611, - 0.034966, - -0.032931, - -0.010697, - -0.0096598, - 0.038925, - -0.049748, - 0.084823, - 0.029436, - 0.0076703, - -0.056969, - -0.032863, - 0.022796, - -0.057185, - -0.0036894, - -0.019684, - -0.089751, - 0.059507, - 0.0024378, - -0.10953, - 0.0085664, - -0.073332, - -0.025704, - 0.014882, - 0.03019, - -0.0072982, - 0.0032114, - -0.0098404, - 0.030624, - -0.04376, - 0.029254, - -0.055468, - 0.05409, - 0.050932, - 0.027466, - 0.012367, - 0.042478, - 0.026606, - 0.093188, - -0.0070472, - -0.0013359, - 0.0033978, - -0.019585, - 0.019076, - 0.099841, - -0.0018374, - -0.051011, - 0.041207, - 0.079976, - -0.030421, - -0.027223, - 0.028787, - 0.032361, - 0.057388, - 0.0063332, - -0.029733, - 0.022015, - -0.1374, - 0.06101, - 0.027631, - -0.027442, - -0.075612, - -0.027062, - 0.10179, - 0.025853, - 0.0078097, - 0.0049668, - 0.054617, - -0.029081, - -0.0074006, - 0.040206, - 0.043506, - 0.032181, - 0.039855, - -0.032084, - 0.010509, - -0.036631, - 0.018398, - 0.03031, - 0.024599, - 0.087144, - -0.019119, - 0.04617, - 0.014837, - 0.056386, - 0.016172, - -0.07272, - 0.016042, - -0.039027, - -0.068391, - -0.0083091, - 0.033467, - 0.0072661, - -0.064207, - -0.055798, - 0.0024674, - -0.034301, - 0.042049, - 0.0045019, - 0.042999, - 0.018927, - 0.021236, - -0.012113, - -0.037623, - -0.035296, - -0.022274, - -0.02595, - 0.059492, - 0.029137, - -0.068909, - 0.002892, - 0.038395, - 0.023651, - -0.02032, - 0.038039, - -0.021422, - -0.019714, - -0.036687, - 0.028351, - 0.062198, - 0.0087234, - 0.010389, - -0.031601, - 0.049928, - 0.0193, - 0.0053757, - 0.040139, - -0.020097, - 0.048205, - -0.11242, - -0.023193, - -0.049182, - -0.0074964, - -0.0031738, - 0.024953, - -0.031411, - -0.051733, - 0.08424, - -0.01718, - -0.009369, - 0.013195, - -0.032619, - 0.021972, - 0.0068778, - 0.025224, - -0.046032, - 0.016139, - -0.025844, - -0.040081, - -0.034522, - -0.010445, - -0.037618, - 0.020978, - -0.033897, - 0.027658, - -0.072837, - 0.023939 - ], - "flight": [ - -0.04043, - -0.03311, - 0.01216, - -0.057679, - 0.0086114, - -0.0098605, - 0.053536, - -0.12051, - 0.050301, - 0.10451, - 0.080327, - -0.1107, - -0.080043, - 0.022341, - 0.023148, - -0.013597, - 0.096883, - -0.050569, - 0.065976, - 0.13423, - 0.043311, - 0.037768, - -0.060686, - 0.047779, - -0.071957, - -0.035903, - 0.015324, - 0.024924, - -0.041209, - -0.013676, - 0.090263, - 0.030972, - -0.011153, - -0.090552, - 0.0050289, - 0.048599, - -0.056412, - -0.021949, - 0.02913, - -0.026134, - -0.046089, - -0.092915, - 0.12111, - -0.053541, - -0.12643, - 0.032873, - 0.12815, - -0.007981, - -0.08515, - -0.031658, - 0.02266, - 0.068076, - -0.037933, - -0.089278, - -0.10213, - 0.0049433, - 0.017911, - -0.046438, - -0.050913, - 0.051795, - 0.043537, - -0.021684, - 0.14014, - 0.033119, - 0.039104, - 0.008974, - -0.020165, - -0.05658, - -0.015663, - 0.0037764, - 0.013449, - 0.060244, - 0.0037517, - 0.011885, - -0.00017238, - 0.065712, - -0.02012, - -0.046809, - -0.070029, - 0.037919, - -0.040625, - -0.03691, - -0.047544, - 0.062241, - -0.021834, - -0.061491, - 0.040923, - -0.027609, - 0.0010155, - -0.03391, - 0.0048371, - 0.093921, - -0.10954, - 0.024092, - 0.0063196, - 0.06471, - -0.046145, - -0.038618, - 0.0093147, - -0.048858, - 0.055237, - 0.063233, - 0.020819, - 0.050461, - 0.012631, - -0.081809, - -0.063346, - -0.054299, - 0.044603, - 0.05501, - 0.071192, - 0.033543, - 0.093556, - 0.088724, - 0.0565, - -0.026028, - 0.0047203, - -0.0015711, - -0.067144, - 0.02012, - 0.094845, - -0.02243, - -0.079107, - 0.066905, - 0.049492, - -0.047497, - 0.11193, - -0.14351, - 0.0095496, - 0.078957, - -0.049036, - 0.022965, - 0.0083377, - 0.027452, - -0.012311, - -0.035118, - 0.032167, - 0.03471, - 0.0025894, - 0.0038121, - 0.037674, - 0.026725, - -0.036666, - -0.028329, - -0.050645, - 0.00111, - -0.017082, - -0.062291, - -0.06112, - -0.017986, - 0.028197, - 0.090373, - -0.10478, - -0.095334, - 0.050184, - 0.0025979, - -0.080707, - -0.0094991, - -0.1026, - -0.031303, - 0.046717, - 0.057044, - -0.04238, - -0.047768, - -0.029598, - 0.10131, - 0.058378, - 0.0075761, - 0.058394, - 0.05841, - 0.037811, - -0.0072988, - -0.016766, - -0.011868, - 0.077235, - 0.042905, - -0.027486, - -0.03991, - -0.016295, - 0.11173, - 0.05328, - -0.017697, - -0.021641, - -0.079548, - -0.025021, - -0.060298, - -0.071669, - 0.067593, - -0.087707, - -0.063434, - 0.022874, - 0.0028548, - 0.0082318, - -0.076507, - 0.018438, - 0.00077079, - -0.083164, - 0.059105, - -0.013241, - -0.050247, - -0.15066, - 0.11749, - 0.020068, - -0.042785, - -0.031426, - 0.0090302, - -0.037012, - -0.02694, - -0.024052, - -0.027093, - 0.16588, - -0.055161, - 0.0042529, - -0.013382, - 0.021096, - 0.023964, - 0.0054442, - 0.016712, - 0.010431, - -0.061986, - -0.057924, - -0.015828, - -0.062198, - 0.12443, - -0.021626, - -0.0028978, - -0.047385, - 0.058543, - -0.00666, - -0.026326, - -0.0096393, - -0.074102, - -0.023505, - 0.0090689, - 0.022959, - -0.054384, - 0.000026059, - 0.03143, - -0.010577, - 0.026766, - 0.04125, - 0.013386, - 0.06772, - -0.028893, - -0.04292, - 0.0094023, - 0.060897, - -0.035605, - -0.071121, - 0.0043127, - 0.086699, - -0.0043289, - -0.044788, - 0.011209, - 0.015007, - 0.032052, - 0.055483, - 0.06005, - 0.069359, - 0.03585, - 0.026519, - 0.011213, - 0.016964, - -0.051897, - 0.014145, - -0.018233, - 0.0033758, - 0.028416, - -0.02359, - 0.023683, - -0.014804, - 0.10462, - -0.11644, - -0.025979, - -0.010213, - -0.028116, - 0.0013688, - -0.017205, - 0.038155, - -0.14154, - 0.090202, - -0.091392, - 0.030726, - 0.00076426, - 0.041679, - -0.038095, - -0.08867, - 0.0074534, - -0.034477, - -0.070686, - 0.056093, - -0.022856, - -0.065817, - -0.026043, - -0.083546, - 0.030462, - 0.066149, - 0.02726, - 0.10137, - 0.066933 - ], - "clothing": [ - -0.082764, - -0.035548, - 0.045514, - 0.0067432, - 0.067829, - -0.052681, - 0.052384, - -0.072857, - 0.055921, - -0.001697, - -0.013006, - -0.037728, - -0.076219, - -0.061251, - -0.034064, - -0.030562, - 0.057279, - 0.067355, - 0.0094414, - 0.031204, - -0.011129, - -0.061583, - -0.044563, - 0.046785, - 0.014066, - 0.053921, - -0.0046351, - 0.041919, - 0.030836, - -0.025708, - -0.013883, - -0.020972, - 0.072139, - -0.043832, - 0.067668, - 0.022905, - 0.078777, - 0.042831, - -0.030707, - 0.094684, - 0.0096616, - -0.13294, - 0.031383, - -0.01258, - 0.01539, - -0.059787, - 0.0074635, - -0.056334, - -0.0038148, - -0.042105, - -0.024319, - 0.0065773, - -0.034793, - 0.010541, - -0.085549, - 0.092704, - 0.0064109, - -0.067817, - -0.022581, - -0.027248, - -0.081804, - -0.092313, - 0.12481, - 0.011808, - 0.074949, - 0.035453, - 0.035676, - -0.0090741, - -0.022042, - -0.025781, - -0.024334, - -0.0091365, - 0.027709, - -0.08019, - -0.045571, - 0.033401, - 0.045016, - -0.05408, - -0.019497, - -0.012199, - -0.0047954, - -0.069038, - 0.010806, - 0.013791, - -0.05932, - 0.0022535, - -0.059662, - -0.019238, - -0.012377, - -0.021906, - 0.0057724, - 0.035701, - -0.069321, - 0.0089077, - 0.025216, - 0.076232, - -0.084304, - 0.025805, - 0.06039, - -0.04253, - 0.038667, - 0.0034311, - 0.049653, - 0.045847, - 0.023453, - -0.089691, - -0.044152, - 0.010311, - 0.0080271, - 0.015534, - 0.018608, - 0.073531, - 0.054557, - 0.040436, - 0.00081067, - -0.051034, - -0.0058083, - -0.0049539, - -0.045402, - -0.0085626, - -0.017298, - 0.044322, - 0.0091219, - -0.080736, - 0.090288, - -0.048775, - -0.065438, - -0.04208, - 0.017928, - 0.098503, - -0.0014041, - -0.024381, - 0.059081, - 0.024774, - 0.028274, - 0.09563, - -0.026448, - -0.0006629, - 0.022867, - -0.068236, - 0.031745, - 0.020397, - 0.011476, - 0.026254, - -0.039236, - 0.079439, - -0.011882, - 0.023341, - 0.029738, - -0.056248, - 0.0085945, - 0.063739, - -0.026959, - -0.040202, - 0.011552, - 0.021866, - -0.0069888, - -0.019558, - 0.03742, - 0.0090348, - 0.025746, - -0.07198, - -0.058514, - 0.079223, - 0.023726, - 0.033742, - 0.012838, - -0.12422, - 0.0017871, - -0.0052648, - 0.016516, - -0.050842, - -0.0074065, - 0.0026209, - 0.0067324, - 0.042259, - -0.018243, - 0.15409, - -0.017635, - -0.011448, - 0.028839, - 0.021513, - -0.0053272, - -0.1049, - -0.035955, - -0.034331, - -0.029971, - 0.10259, - -0.051408, - -0.047615, - -0.016922, - 0.06817, - -0.0067344, - -0.026451, - 0.031166, - -0.024392, - -0.0052299, - -0.014682, - 0.013156, - -0.019799, - -0.13188, - 0.046595, - 0.0091604, - -0.047045, - 0.05648, - 0.027491, - -0.0085281, - -0.017028, - 0.048008, - -0.015218, - 0.10249, - 0.010521, - 0.00095662, - -0.017994, - 0.02529, - 0.047087, - -0.04383, - 0.017365, - -0.059135, - 0.0078595, - -0.079744, - -0.024669, - -0.014025, - 0.069162, - 0.041243, - 0.010348, - -0.03531, - 0.029191, - -0.046197, - -0.0065325, - -0.000080799, - -0.010906, - -0.09355, - -0.12872, - -0.01078, - 0.0094684, - -0.0027351, - -0.00074641, - 0.010308, - -0.082933, - 0.026442, - 0.0089103, - 0.027503, - -0.049378, - -0.013058, - 0.017995, - -0.026193, - -0.045979, - -0.030353, - -0.022427, - -0.0099338, - -0.027034, - 0.008652, - 0.022779, - 0.011489, - 0.020354, - 0.037247, - -0.019538, - 0.047145, - 0.035641, - 0.0030577, - -0.0378, - -0.045469, - -0.011049, - 0.027946, - -0.010108, - 0.0067233, - -0.03421, - -0.02446, - -0.021907, - 0.011786, - 0.064546, - -0.068784, - -0.03372, - -0.039153, - -0.010573, - 0.0021487, - -0.018776, - -0.093696, - 0.010784, - 0.091477, - 0.044944, - 0.04827, - -0.015313, - -0.041786, - 0.057768, - -0.11056, - 0.080115, - 0.0075696, - 0.037895, - -0.012419, - 0.073961, - -0.047906, - 0.0075759, - -0.0656, - -0.030132, - 0.015981, - 0.041558, - 0.047536, - -0.042703 - ], - "politcal": [ - 0.044336, - -0.10564, - 0.0020064, - 0.016495, - -0.031463, - -0.079659, - 0.011067, - -0.097354, - 0.057967, - 0.015799, - -0.019594, - -0.030727, - -0.024694, - 0.015894, - 0.01449, - 0.013254, - 0.091241, - -0.053917, - 0.064841, - -0.028516, - -0.037383, - 0.058916, - 0.085544, - 0.073089, - -0.060704, - -0.008036, - 0.10425, - -0.043802, - -0.016443, - -0.0031522, - -0.03491, - 0.0036431, - -0.056468, - -0.12254, - 0.022999, - 0.037272, - -0.0028415, - -0.0018475, - 0.011794, - 0.0535, - -0.059733, - -0.11214, - 0.00047365, - -0.021559, - 0.057422, - 0.03871, - -0.014698, - -0.042113, - -0.061955, - -0.014414, - 0.00072095, - -0.015379, - -0.021834, - -0.011614, - 0.037099, - -0.015724, - 0.071842, - 0.041201, - -0.055036, - 0.006951, - -0.028257, - -0.030661, - 0.081219, - -0.048873, - 0.074724, - 0.067493, - -0.018601, - 0.028042, - 0.028321, - 0.03556, - 0.03823, - -0.01101, - 0.033796, - 0.013205, - 0.038079, - -0.026804, - -0.004783, - -0.052806, - -0.0046202, - 0.03275, - -0.030095, - 0.033571, - -0.097224, - 0.080666, - 0.013205, - 0.030487, - -0.050834, - 0.0024043, - -0.0047543, - 0.001155, - 0.0084277, - 0.036891, - -0.071938, - -0.0052155, - 0.041382, - 0.043308, - 0.016215, - -0.026995, - -0.0074114, - 0.010389, - 0.049629, - 0.020311, - 0.032764, - -0.056504, - 0.021965, - -0.1119, - 0.015511, - -0.031668, - 0.029159, - 0.013067, - -0.054808, - 0.056048, - 0.05048, - -0.0031105, - -0.011323, - -0.038441, - -0.0074944, - -0.033441, - -0.038599, - 0.017788, - 0.032243, - -0.063638, - -0.0029321, - -0.016214, - 0.17724, - 0.020446, - -0.0063366, - -0.034518, - -0.056226, - 0.12075, - 0.040078, - 0.00019939, - 0.10325, - 0.014395, - 0.022764, - 0.047714, - 0.031552, - 0.07687, - -0.019241, - -0.021801, - -0.043298, - -0.041657, - 0.037356, - 0.036608, - -0.022725, - 0.036925, - -0.0035696, - 0.022714, - 0.022242, - -0.031328, - 0.077582, - 0.15374, - -0.034307, - -0.058105, - -0.0041335, - 0.042957, - 0.014853, - -0.0246, - -0.013821, - -0.03762, - 0.023099, - 0.059774, - -0.078863, - -0.034582, - -0.096708, - 0.070713, - 0.046945, - 0.01595, - -0.027131, - -0.043374, - -0.06238, - 0.0077161, - 0.055899, - 0.012567, - -0.044709, - 0.054291, - 0.014159, - 0.071832, - 0.073025, - -0.02973, - -0.09403, - 0.018138, - -0.019093, - 0.0082485, - 0.044428, - -0.081537, - -0.010762, - 0.1326, - 0.01866, - -0.042999, - 0.056046, - 0.089173, - 0.094379, - 0.065825, - 0.017754, - 0.0090291, - -0.06783, - -0.011211, - -0.09221, - 0.028471, - -0.15294, - -0.021697, - 0.011843, - -0.00012299, - -0.076884, - -0.04331, - -0.0073792, - 0.021096, - 0.0082727, - 0.027227, - 0.17542, - 0.023612, - 0.030243, - -0.015744, - 0.003006, - 0.035807, - -0.019573, - 0.019113, - -0.10139, - -0.067607, - -0.0038878, - 0.024725, - -0.0095484, - 0.077514, - 0.05411, - 0.050057, - 0.022411, - 0.10697, - -0.027065, - 0.013602, - -0.045833, - -0.037041, - -0.048675, - -0.013161, - 0.013977, - -0.062855, - 0.076946, - -0.002421, - -0.043152, - 0.0013195, - 0.053628, - -0.0069733, - -0.010647, - 0.080959, - -0.11823, - -0.018795, - 0.041249, - 0.019781, - -0.01652, - 0.018121, - 0.010387, - 0.072857, - 0.032369, - 0.058147, - -0.049293, - -0.027642, - 0.018141, - 0.030287, - -0.010387, - -0.012891, - 0.01934, - 0.04948, - 0.025839, - 0.030856, - 0.021212, - 0.023259, - -0.041123, - 0.04357, - 0.024088, - -0.015297, - -0.036432, - 0.080823, - -0.078949, - -0.041115, - 0.1232, - -0.13263, - 0.006912, - 0.022475, - -0.039196, - 0.01528, - 0.21232, - -0.010628, - -0.0048389, - -0.016022, - 0.072918, - 0.02511, - 0.026803, - -0.0071683, - -0.013927, - -0.017043, - -0.03411, - -0.017563, - -0.029248, - 0.045083, - -0.040014, - 0.024949, - -0.058449, - 0.0032095, - -0.014626, - -0.025286 - ], - "geology": [ - 0.017117, - -0.074844, - 0.033213, - 0.034956, - 0.026871, - -0.075491, - -0.00083502, - -0.11065, - 0.069781, - 0.029795, - 0.015501, - -0.086779, - -0.031667, - 0.099494, - 0.055092, - -0.085412, - 0.13008, - 0.13549, - 0.040129, - -0.047649, - 0.019373, - 0.037058, - -0.021521, - 0.074017, - 0.021583, - -0.0087512, - -0.038985, - 0.044999, - 0.012919, - -0.0070474, - 0.02494, - 0.0069965, - 0.040915, - -0.04227, - 0.023554, - 0.073605, - 0.044134, - -0.080019, - -0.0079181, - -0.080915, - -0.034939, - -0.1355, - 0.077826, - 0.015945, - -0.027663, - -0.016599, - -0.067248, - -0.083386, - -0.016404, - 0.06087, - -0.046917, - 0.019777, - 0.073493, - 0.031466, - -0.02986, - 0.059748, - -0.0056081, - 0.042341, - 0.011149, - 0.031071, - 0.033449, - 0.10131, - 0.11279, - 0.023749, - 0.042849, - 0.020197, - -0.011056, - 0.038819, - 0.10691, - 0.0084325, - 0.020962, - -0.030202, - 0.010748, - -0.012826, - 0.048006, - -0.067523, - -0.00015815, - -0.0067415, - 0.064056, - -0.043986, - -0.043219, - 0.063481, - -0.034181, - 0.035508, - -0.072586, - 0.028297, - 0.040026, - -0.054504, - 0.040869, - 0.029903, - 0.037777, - 0.016071, - -0.092502, - 0.021481, - -0.0011008, - 0.07775, - -0.029656, - 0.1382, - 0.025421, - -0.041712, - 0.056784, - 0.03552, - 0.025117, - 0.038152, - -0.033512, - -0.063451, - 0.028764, - 0.11076, - -0.013439, - -0.059922, - 0.04291, - 0.090559, - 0.047466, - 0.0053243, - 0.025254, - 0.048491, - 0.041404, - 0.0020287, - -0.028296, - 0.04818, - 0.016368, - -0.0095114, - -0.058025, - -0.067121, - 0.020177, - 0.071713, - -0.1425, - -0.062848, - -0.044801, - 0.1651, - 0.021644, - 0.0027379, - -0.13351, - 0.025117, - -0.010073, - 0.026074, - 0.016721, - 0.023665, - 0.019482, - 0.029318, - -0.030318, - -0.051228, - -0.026484, - 0.0014978, - 0.02405, - -0.016191, - 0.030467, - -0.021396, - -0.057929, - -0.10358, - 0.048202, - 0.067537, - 0.0076509, - -0.049743, - 0.031338, - 0.086342, - 0.020872, - 0.045967, - -0.047901, - 0.03565, - 0.009032, - -0.00071688, - -0.11777, - 0.043372, - 0.049727, - -0.037, - -0.036807, - 0.012687, - 0.060193, - 0.098488, - 0.016761, - -0.03146, - -0.057479, - -0.05094, - 0.06401, - 0.063379, - 0.013578, - 0.039863, - -0.02103, - -0.042102, - -0.08596, - 0.021597, - -0.038394, - -0.0065729, - 0.03606, - -0.047399, - 0.060254, - 0.12093, - 0.0043804, - 0.0080264, - 0.098076, - 0.086573, - -0.035531, - -0.0067258, - -0.078437, - 0.041722, - -0.04426, - -0.044445, - -0.034586, - -0.015804, - -0.15879, - -0.055029, - 0.031981, - -0.046555, - 0.054171, - 0.080172, - -0.013789, - -0.055623, - -0.11602, - 0.019153, - 0.14983, - 0.0107, - 0.014298, - -0.049888, - 0.065682, - 0.0065757, - -0.027473, - -0.084533, - -0.072273, - -0.026977, - -0.042401, - 0.073112, - -0.1298, - 0.10075, - -0.035745, - 0.087114, - 0.016775, - 0.090089, - -0.050931, - -0.04503, - 0.022371, - -0.036127, - -0.057386, - 0.055726, - 0.021197, - 0.08997, - 0.073231, - 0.069654, - -0.059079, - -0.014851, - 0.0073873, - 0.081715, - -0.033469, - 0.061981, - 0.0060846, - -0.025135, - 0.0019183, - -0.014036, - -0.11463, - 0.047811, - 0.080698, - -0.003185, - 0.026378, - -0.070168, - -0.0025249, - -0.028348, - -0.035846, - 0.071601, - 0.058071, - 0.078859, - 0.03227, - 0.060381, - -0.099448, - 0.017989, - 0.041602, - -0.081953, - -0.065686, - 0.038984, - 0.10774, - 0.039565, - -0.0041375, - 0.097065, - -0.10436, - -0.015485, - -0.0062085, - -0.020358, - -0.043929, - 0.03598, - 0.06137, - -0.046208, - 0.10387, - 0.01238, - 0.053858, - -0.0035223, - -0.038339, - -0.073942, - -0.041326, - -0.017083, - -0.063037, - 0.01086, - -0.045098, - 0.082304, - -0.040462, - 0.0034921, - -0.024577, - 0.019417, - -0.0016734, - 0.0028773, - -0.0017628, - -0.056104 - ], - "poetry": [ - -0.045058, - -0.071427, - 0.1602, - -0.016258, - 0.066136, - 0.015023, - -0.047841, - -0.10019, - 0.083115, - -0.032139, - 0.15057, - -0.081102, - 0.022578, - -0.016506, - -0.027052, - -0.11372, - 0.14948, - 0.01021, - 0.018295, - 0.0091032, - -0.026733, - 0.0092758, - 0.010881, - 0.055237, - 0.022523, - 0.037982, - 0.015814, - 0.029227, - 0.083894, - -0.10158, - 0.017756, - -0.028575, - -0.0026203, - -0.072496, - 0.061711, - 0.0014179, - 0.088806, - 0.067845, - 0.0119, - -0.0057773, - -0.058412, - -0.12978, - -0.0052588, - 0.09808, - 0.034227, - -0.018081, - -0.0054849, - -0.043372, - -0.035151, - -0.017589, - -0.00030753, - 0.01664, - 0.046583, - -0.011789, - -0.081749, - -0.024637, - -0.035408, - 0.1133, - -0.053339, - 0.020041, - -0.026574, - -0.079662, - 0.13151, - 0.0034791, - 0.037692, - -0.00095361, - 0.020145, - 0.062364, - 0.03526, - -0.056386, - 0.059063, - -0.0025373, - -0.017068, - 0.03374, - 0.022505, - -0.061976, - -0.012839, - -0.038157, - 0.03245, - -0.033068, - -0.034816, - -0.019717, - -0.055931, - 0.028707, - -0.044503, - -0.069175, - 0.048071, - 0.021069, - 0.017991, - 0.020374, - -0.023654, - 0.052756, - -0.12078, - 0.028039, - 0.050026, - 0.070935, - -0.010629, - 0.054655, - 0.069615, - 0.068737, - 0.090525, - 0.097448, - 0.0051056, - 0.0061549, - -0.024945, - -0.091538, - -0.097269, - 0.091926, - 0.049516, - 0.0018613, - 0.028736, - 0.076572, - 0.048109, - 0.0046172, - -0.072282, - 0.072167, - 0.047355, - -0.055706, - -0.030457, - 0.037401, - -0.037326, - -0.031782, - -0.15286, - -0.086638, - 0.064468, - -0.012259, - -0.038216, - -0.047239, - -0.018489, - 0.14803, - -0.059348, - 0.0029314, - 0.042448, - 0.015768, - 0.060539, - -0.016654, - 0.028321, - 0.014912, - 0.039417, - -0.019051, - 0.094849, - -0.057146, - 0.1008, - -0.04115, - 0.027369, - -0.13075, - -0.071077, - 0.078275, - -0.058345, - -0.0531, - 0.043697, - 0.056537, - 0.035333, - -0.068234, - -0.016338, - 0.034809, - 0.01856, - 0.038635, - 0.045481, - 0.041411, - 0.051174, - 0.069953, - -0.082699, - 0.026968, - -0.049817, - -0.0059779, - 0.11883, - 0.020861, - -0.0026206, - 0.08162, - 0.080475, - -0.00042715, - 0.094134, - -0.011227, - 0.083382, - 0.063077, - 0.046624, - 0.038881, - -0.056178, - -0.033579, - 0.050554, - 0.051456, - -0.0074167, - -0.040132, - -0.057496, - -0.00064641, - 0.078354, - 0.11941, - -0.040578, - 0.070485, - 0.04035, - 0.095198, - -0.025238, - -0.09217, - -0.0066088, - -0.04185, - -0.021944, - -0.0028756, - 0.035702, - -0.000095612, - -0.17159, - 0.04966, - 0.026578, - -0.0037807, - 0.014612, - -0.009586, - 0.028309, - 0.066479, - 0.013036, - -0.040959, - 0.15897, - 0.012425, - -0.012314, - -0.025762, - 0.048457, - 0.062434, - 0.028892, - -0.026718, - -0.051605, - -0.063992, - 0.019023, - -0.0080577, - 0.073617, - 0.10254, - 0.027695, - 0.061853, - 0.089948, - 0.085568, - -0.014434, - -0.018714, - 0.032365, - -0.054051, - -0.063796, - -0.028424, - 0.029582, - 0.064643, - 0.063673, - -0.094573, - 0.043926, - -0.061125, - 0.021703, - 0.011168, - -0.016389, - -0.028766, - 0.010854, - -0.061295, - -0.087121, - -0.035612, - 0.0082088, - 0.053525, - 0.11029, - -0.050838, - -0.01786, - 0.075664, - -0.0039007, - 0.01383, - -0.10912, - -0.018862, - -0.01642, - -0.017144, - 0.0042177, - -0.021836, - 0.042682, - -0.0091578, - -0.010341, - -0.062446, - -0.024219, - -0.01121, - 0.071754, - 0.0016594, - 0.086049, - 0.10267, - -0.092205, - -0.026726, - -0.061056, - -0.030127, - -0.052294, - 0.0078823, - -0.00045874, - 0.084433, - 0.097759, - -0.025694, - 0.033926, - -0.014943, - -0.048082, - -0.0085314, - 0.036862, - 0.042314, - -0.044237, - 0.017552, - 0.090162, - -0.052586, - -0.0014742, - -0.068773, - -0.030092, - 0.06711, - 0.10385, - -0.01448, - 0.048144, - 0.070351 - ], - "pseudo": [ - 0.034432, - -0.036245, - 0.0026976, - 0.0024465, - -0.083227, - -0.1244, - 0.022, - -0.053277, - 0.042066, - -0.061148, - -0.04435, - 0.02978, - -0.024734, - 0.0064786, - -0.053286, - -0.071462, - 0.098391, - 0.016087, - 0.07167, - 0.048225, - -0.0054331, - 0.056358, - 0.023789, - 0.068965, - -0.059266, - -0.0011821, - 0.021097, - 0.0019418, - 0.046381, - 0.042401, - 0.038084, - -0.069095, - 0.016638, - -0.019085, - 0.056962, - -0.0045942, - -0.00036597, - 0.022057, - 0.0054884, - 0.054393, - 0.025144, - -0.074268, - -0.080305, - -0.02824, - -0.04549, - 0.031163, - 0.012661, - 0.063765, - 0.027537, - -0.034008, - -0.062711, - -0.010819, - 0.027821, - -0.037302, - 0.030521, - 0.052732, - -0.026359, - 0.053107, - -0.067848, - 0.077419, - 0.025327, - -0.04535, - 0.096914, - -0.012251, - 0.057578, - 0.00015791, - 0.064566, - -0.0026709, - -0.023722, - -0.082784, - -0.028133, - -0.047726, - -0.0029089, - 0.033197, - 0.044061, - 0.018034, - -0.036377, - -0.051023, - 0.05087, - -0.035035, - 0.016793, - -0.013228, - 0.0068868, - 0.10601, - -0.026542, - -0.071694, - -0.0018694, - 0.020605, - 0.013736, - 0.025057, - 0.00093983, - -0.029422, - -0.091921, - -0.013686, - 0.10233, - 0.13771, - 0.067915, - -0.09521, - -0.026174, - 0.0185, - -0.010724, - 0.0012548, - -0.06254, - -0.014531, - -0.016762, - -0.11892, - 0.062282, - -0.026865, - -0.012396, - 0.036815, - -0.041352, - 0.015117, - 0.024232, - -0.038764, - 0.038733, - 0.039578, - -0.031452, - -0.013419, - -0.070652, - -0.046077, - 0.052456, - -0.015924, - -0.023612, - -0.076055, - 0.077993, - -0.011472, - 0.0025844, - 0.038405, - -0.052595, - 0.036334, - -0.074822, - 0.016922, - 0.066701, - -0.0065014, - -0.034698, - 0.045758, - -0.019846, - 0.038387, - -0.0026922, - -0.04076, - 0.0039863, - -0.03334, - -0.0057888, - 0.028871, - -0.0061725, - -0.098017, - -0.03793, - -0.0069035, - -0.031158, - 0.007503, - 0.034755, - 0.086077, - 0.011735, - 0.044251, - 0.042604, - -0.010829, - -0.0091989, - 0.11119, - -0.016284, - 0.0059118, - -0.025136, - 0.029575, - -0.081111, - -0.054347, - -0.037114, - 0.0066457, - -0.013235, - 0.13671, - -0.0041682, - 0.0052269, - -0.070878, - -0.013894, - -0.01232, - 0.0042642, - 0.0014368, - 0.071433, - -0.0022859, - -0.0038071, - 0.061855, - 0.0020885, - 0.05026, - 0.014978, - -0.056268, - 0.0096959, - 0.066991, - 0.0074981, - 0.0061479, - 0.12011, - 0.066219, - -0.034909, - 0.096376, - 0.050516, - 0.010163, - -0.026282, - -0.026574, - -0.043456, - -0.046427, - 0.02689, - 0.019706, - 0.04915, - -0.12889, - 0.04427, - 0.049523, - 0.05923, - 0.13145, - 0.063812, - 0.075027, - -0.011852, - -0.063665, - -0.011787, - 0.17347, - 0.019067, - -0.039837, - -0.0033959, - 0.069955, - 0.077035, - -0.065688, - 0.055633, - -0.048813, - -0.022597, - 0.0014874, - 0.039616, - -0.035093, - 0.044253, - 0.050418, - 0.0771, - 0.036066, - 0.095995, - 0.027417, - -0.077786, - -0.063443, - 0.0090763, - -0.021228, - -0.031092, - 0.0028573, - -0.055817, - 0.0018262, - -0.015104, - 0.030778, - -0.052204, - 0.04459, - -0.065277, - 0.021608, - 0.045811, - -0.099413, - 0.061461, - -0.014513, - 0.019356, - -0.027708, - 0.0052175, - 0.062657, - 0.048459, - 0.0076153, - -0.0052294, - 0.029516, - 0.022299, - -0.016904, - -0.012347, - 0.022321, - -0.018194, - 0.048115, - 0.076172, - 0.10814, - 0.0057498, - 0.0048219, - -0.033144, - 0.049535, - -0.01548, - 0.060438, - -0.038135, - -0.047644, - 0.045991, - -0.065304, - -0.001018, - 0.0026437, - -0.049833, - 0.046577, - 0.013471, - -0.051235, - -0.038527, - 0.20782, - -0.023353, - 0.029684, - 0.033222, - -0.091081, - 0.01075, - 0.020357, - -0.0061493, - -0.012829, - -0.027958, - -0.037797, - -0.040994, - 0.014123, - 0.014019, - 0.00074662, - 0.0018985, - 0.0045863, - 0.046139, - -0.10261, - 0.00049701 - ], - "Architectural": [ - 0.023061, - 0.01549, - 0.03935, - -0.0055566, - 0.031265, - -0.011965, - -0.00501, - -0.029594, - 0.020484, - -0.0081101, - 0.052233, - -0.016829, - -0.0048294, - 0.072553, - 0.026362, - 0.012759, - 0.012645, - 0.037773, - 0.011393, - -0.035516, - -0.04232, - 0.058631, - 0.024311, - 0.072313, - -0.0024898, - 0.00097783, - -0.016396, - 0.035418, - 0.028415, - 0.040973, - -0.018293, - -0.046757, - 0.0090658, - -0.033518, - 0.07264, - 0.055284, - 0.033232, - 0.039609, - -0.00077888, - 0.013891, - 0.016238, - 0.038981, - 0.017519, - 0.0067404, - -0.057494, - 0.011834, - -0.021131, - -0.01074, - -0.00033726, - -0.017488, - 0.012613, - -0.063557, - -0.039762, - 0.028974, - 0.023465, - -0.0097819, - -0.023826, - 0.010598, - -0.056357, - 0.0093299, - 0.04863, - 0.031359, - -0.083996, - -0.044099, - 0.059331, - 0.048676, - -0.068377, - 0.016999, - -0.019972, - 0.012032, - 0.032286, - 0.0046822, - -0.025295, - -0.027978, - 0.015214, - -0.06134, - -0.053838, - -0.077004, - -0.012108, - 0.0017884, - -0.024665, - 0.016111, - 0.022819, - -0.071652, - -0.010787, - -0.028276, - -0.020897, - -0.065652, - -0.054036, - 0.03943, - 0.0047389, - 0.014522, - -0.050719, - -0.029946, - -0.023491, - 0.070224, - -0.0023819, - 0.0062454, - 0.074287, - 0.024659, - 0.060064, - 0.020394, - 0.0166, - 0.04644, - -0.0051433, - -0.082832, - 0.011341, - 0.076019, - -0.008327, - 0.009142, - 0.0074817, - 0.048099, - 0.01827, - 0.062641, - -0.025362, - -0.024617, - -0.054474, - 0.023406, - 0.046701, - 0.071617, - -0.0030495, - -0.022889, - -0.038387, - 0.012821, - 0.070779, - 0.019783, - -0.026505, - 0.02023, - -0.0015176, - 0.16448, - -0.0091242, - 0.046059, - 0.0049321, - 0.0070168, - -0.023411, - 0.035499, - -0.015252, - 0.005772, - 0.012299, - -0.026694, - 0.034303, - 0.032598, - -0.020531, - 0.021954, - -0.0062859, - -0.035602, - 0.0039546, - -0.021726, - 0.056595, - -0.030442, - 0.050994, - 0.10195, - 0.003412, - -0.0030288, - 0.0026595, - 0.05572, - 0.055423, - 0.014063, - -0.0053165, - 0.0009438, - 0.014817, - -0.012505, - -0.073386, - -0.01512, - 0.0068971, - -0.00040085, - 0.020096, - -0.065788, - 0.015741, - 0.0071468, - 0.078132, - 0.029593, - 0.0075753, - -0.013051, - 0.003514, - 0.018758, - 0.0078589, - -0.028778, - -0.023488, - 0.0095886, - -0.031503, - -0.03808, - 0.035267, - 0.023475, - -0.051726, - 0.13053, - 0.020941, - 0.11895, - -0.01861, - -0.029382, - -0.023211, - 0.074895, - 0.056118, - 0.029227, - -0.015077, - 0.043251, - 0.027233, - -0.0028, - 0.05717, - -0.032969, - -0.0058002, - 0.016656, - -0.0030665, - -0.028909, - 0.020947, - -0.0048029, - -0.026341, - -0.031957, - -0.023423, - 0.043174, - 0.14339, - 0.031489, - -0.0027877, - 0.013597, - 0.00084519, - 0.036889, - 0.019796, - 0.0082885, - -0.05165, - -0.0062946, - -0.034067, - -0.011551, - 0.01568, - 0.037306, - 0.024654, - 0.0049485, - 0.021164, - 0.024027, - -0.02417, - -0.035857, - -0.022794, - -0.049806, - 0.033414, - 0.020013, - -0.037405, - -0.030739, - 0.012647, - -0.0065148, - -0.017769, - 0.024275, - -0.027447, - -0.0088488, - 0.0029056, - -0.013622, - 0.038921, - 0.017545, - -0.063524, - -0.023359, - -0.018612, - -0.10291, - -0.0079907, - -0.059495, - -0.021706, - -0.025417, - -0.045777, - -0.0061355, - -0.0076028, - 0.0021786, - 0.036495, - 0.020551, - -0.002332, - 0.037394, - -0.03725, - 0.029686, - 0.037596, - -0.046887, - 0.04336, - -0.011089, - 0.006525, - -0.0069196, - -0.0079577, - 0.049693, - -0.030212, - 0.012137, - -0.0019869, - -0.073082, - 0.052283, - 0.0015463, - 0.0061767, - -0.021668, - 0.099004, - 0.025654, - -0.02729, - 0.061651, - 0.036136, - 0.014322, - -0.042154, - -0.0069211, - -0.0042542, - 0.036267, - -0.045158, - -0.030138, - -0.0029944, - -0.030649, - 0.018866, - -0.025019, - -0.015973, - 0.032015, - -0.010425, - 0.027335 - ], - "dessert": [ - -0.027718, - -0.052133, - -0.053082, - -0.061183, - 0.012569, - 0.0037271, - -0.024905, - -0.076303, - -0.010285, - 0.056399, - 0.011295, - -0.0070586, - -0.044662, - 0.028143, - -0.028377, - 0.036259, - 0.058902, - -0.049495, - 0.035417, - 0.058224, - -0.0072005, - 0.096649, - -0.074084, - 0.052123, - -0.012462, - -0.00070565, - -0.0097497, - 0.11328, - -0.031512, - 0.0013265, - 0.010075, - -0.053172, - -0.0053585, - -0.024871, - 0.04051, - -0.020981, - 0.015033, - 0.036275, - 0.015388, - 0.0028544, - -0.090947, - -0.067896, - -0.1004, - -0.022649, - 0.04077, - 0.029765, - 0.017725, - -0.018757, - -0.044583, - 0.027914, - 0.026891, - 0.03138, - -0.040658, - -0.083691, - -0.062118, - -0.04035, - 0.013395, - -0.10781, - -0.037646, - -0.099566, - -0.066558, - -0.0056711, - 0.1323, - 0.079949, - -0.0020812, - 0.055366, - -0.0084041, - 0.031935, - -0.05893, - -0.028676, - 0.017585, - -0.054463, - 0.027959, - -0.020284, - -0.013535, - -0.025106, - -0.051276, - -0.019479, - -0.0025881, - 0.10973, - -0.014059, - 0.0028146, - 0.071515, - 0.070702, - -0.038259, - -0.031205, - -0.032199, - -0.038034, - -0.049026, - 0.054145, - 0.039336, - -0.0085322, - -0.074042, - -0.034731, - 0.022117, - 0.052887, - -0.0051237, - 0.069348, - 0.017822, - -0.0025393, - -0.011917, - 0.046266, - -0.0027554, - -0.042834, - 0.0024093, - -0.10932, - -0.076249, - 0.10283, - -0.020305, - -0.0046854, - 0.029636, - 0.048347, - 0.032982, - 0.11994, - 0.030399, - -0.030887, - -0.022328, - 0.032305, - -0.064826, - -0.024424, - 0.022642, - -0.036267, - -0.037843, - -0.016255, - 0.069876, - 0.043399, - 0.068096, - -0.081725, - -0.064254, - 0.054914, - -0.057512, - 0.0070936, - -0.12216, - -0.047296, - -0.031441, - 0.017655, - -0.040042, - 0.034046, - 0.00008731, - -0.040192, - 0.026529, - -0.037248, - -0.023368, - -0.096203, - 0.0048852, - 0.014293, - 0.031175, - 0.039573, - -0.032206, - 0.073197, - 0.039291, - 0.017018, - 0.023138, - 0.011364, - 0.073206, - 0.026019, - -0.13623, - 0.041658, - -0.070101, - -0.024468, - 0.031009, - 0.013746, - -0.059833, - 0.02438, - 0.018227, - 0.047721, - -0.11812, - 0.0047422, - 0.061854, - -0.015454, - 0.017415, - -0.040062, - 0.015589, - -0.003721, - -0.021165, - 0.053517, - -0.01585, - 0.028254, - -0.0078848, - -0.017947, - -0.0048722, - 0.071444, - 0.07613, - -0.11378, - 0.01337, - -0.0007444, - -0.0064402, - 0.089114, - 0.02591, - -0.048313, - 0.012697, - 0.057021, - -0.026622, - -0.016302, - -0.017378, - 0.13133, - 0.013835, - -0.068667, - -0.028502, - 0.02522, - -0.16263, - 0.059712, - 0.00082853, - 0.0094829, - 0.023429, - 0.019544, - 0.029875, - 0.023317, - 0.023615, - -0.0051367, - 0.086168, - -0.025295, - 0.024602, - 0.020723, - 0.018152, - 0.036018, - 0.0080545, - 0.023525, - 0.0071844, - -0.10277, - 0.03477, - 0.0038712, - -0.0255, - 0.09824, - -0.028135, - 0.03612, - 0.043024, - 0.037988, - -0.021156, - 0.043928, - -0.008714, - -0.078472, - -0.12453, - -0.028594, - -0.021329, - 0.049833, - -0.0073465, - -0.019738, - 0.017419, - -0.074688, - 0.093925, - -0.033499, - -0.062231, - -0.031827, - -0.030245, - 0.042344, - 0.067199, - 0.057879, - -0.014, - 0.010834, - 0.040689, - -0.036122, - -0.068668, - 0.0035822, - -0.037583, - 0.0064563, - -0.057938, - 0.032355, - 0.015895, - 0.080476, - 0.049203, - 0.018605, - 0.011915, - -0.026866, - 0.042907, - -0.017917, - -0.066815, - -0.055191, - 0.036537, - -0.013961, - 0.0025557, - 0.079771, - -0.087959, - -0.015553, - -0.017331, - -0.017619, - -0.042396, - -0.0027724, - -0.01021, - 0.012531, - 0.067122, - 0.032832, - -0.018004, - -0.0065995, - -0.0033804, - -0.022868, - -0.033396, - 0.024503, - -0.0024238, - -0.024719, - -0.073535, - -0.068388, - 0.016271, - -0.03607, - 0.034194, - -0.076258, - 0.055327, - 0.036209, - -0.049568, - 0.0475 - ], - "civilisation": [ - 0.0061651, - -0.059476, - 0.049961, - -0.032127, - 0.016843, - -0.021712, - 0.0066642, - -0.04327, - 0.055301, - 0.049985, - 0.0051935, - -0.020425, - 0.032141, - 0.0094343, - 0.041799, - 0.00099875, - 0.073861, - -0.014633, - 0.022709, - 0.039549, - -0.03472, - 0.021322, - -0.0052118, - 0.044955, - -0.017076, - 0.0028574, - 0.0048696, - 0.002384, - -0.0066059, - 0.0080054, - 0.03369, - 0.010233, - 0.034629, - -0.039762, - -0.011605, - 0.014796, - 0.038108, - 0.0012312, - -0.003425, - 0.025897, - -0.027288, - -0.065802, - -0.017149, - 0.032628, - 0.0024048, - -0.036956, - 0.01308, - -0.033582, - -0.0031943, - -0.024783, - 0.031757, - 0.019344, - -0.012285, - -0.054061, - -0.034162, - 0.047338, - 0.058705, - -0.055362, - -0.022536, - 0.0068262, - 0.054945, - 0.0067405, - 0.014391, - -0.0098353, - 0.049162, - 0.027374, - 0.0091613, - 0.013703, - 0.011341, - -0.031331, - 0.03872, - -0.030156, - -0.017817, - -0.013337, - -0.037264, - -0.0080108, - 0.00848, - 0.024485, - 0.010628, - 0.051085, - -0.015468, - 0.0097127, - -0.023123, - 0.098325, - -0.017227, - -0.019551, - -0.019633, - -0.026455, - -0.035378, - -0.0012348, - 0.012049, - 0.03339, - -0.050456, - 0.0049255, - -0.006065, - 0.048135, - 0.04041, - 0.0079033, - -0.0084355, - -0.026239, - 0.029649, - 0.02546, - 0.032908, - -0.060673, - -0.013385, - -0.075432, - 0.054302, - 0.028906, - -0.009606, - -0.037841, - 0.028273, - 0.051174, - 0.031617, - 0.01206, - -0.039498, - 0.020984, - 0.0098453, - 0.039429, - -0.029437, - 0.014935, - 0.045184, - -0.047106, - -0.06084, - 0.015413, - 0.017185, - -0.0026404, - -0.024473, - -0.082171, - -0.015449, - 0.089326, - 0.031489, - -0.0037718, - -0.017736, - 0.0098697, - 0.037699, - -0.03032, - -0.009612, - 0.034306, - -0.0081934, - -0.013451, - -0.036617, - -0.012895, - 0.039913, - -0.0060099, - 0.039718, - 0.0057247, - 0.0064115, - 0.011018, - -0.010703, - -0.020987, - 0.070358, - 0.044541, - -0.018555, - -0.01285, - -0.027219, - 0.0026761, - 0.015958, - 0.021443, - 0.0061143, - -0.057015, - 0.043383, - -0.10809, - -0.064422, - 0.0458, - -0.037161, - 0.018497, - -0.015621, - 0.034391, - 0.015723, - -0.010327, - 0.022022, - -0.014463, - -0.026106, - 0.018122, - 0.01998, - 0.021824, - 0.038642, - 0.012948, - 0.015374, - 0.035279, - -0.018541, - 0.067375, - -0.035419, - 0.01895, - 0.032055, - -0.023982, - 0.049787, - 0.072372, - -0.020414, - 0.0049471, - -0.013727, - 0.051404, - -0.013792, - -0.033476, - -0.0033027, - 0.02139, - -0.047409, - -0.023581, - -0.033896, - 0.058758, - -0.10792, - 0.024757, - -0.027756, - -0.020724, - -0.028248, - 0.077629, - 0.081083, - -0.045146, - 0.025094, - 0.021121, - 0.06875, - -0.043113, - -0.02335, - 0.0064572, - 0.046083, - 0.019465, - 0.011709, - 0.027712, - 0.032005, - -0.031216, - 0.011743, - 0.041891, - 0.023017, - 0.068766, - -0.012221, - 0.035093, - -0.00034072, - 0.043857, - 0.013528, - -0.04056, - 0.0060754, - -0.013566, - -0.06119, - -0.018053, - 0.040752, - -0.018668, - 0.0051096, - 0.022956, - 0.01933, - 0.0053741, - 0.015975, - 0.076031, - -0.0044939, - 0.035233, - 0.002297, - 0.025414, - -0.016025, - -0.047505, - -0.065689, - -0.02238, - 0.020773, - -0.028499, - -0.002365, - -0.042553, - -0.0071846, - 0.05963, - -0.037631, - 0.038415, - 0.043588, - 0.0043587, - -0.009993, - 0.011369, - 0.0099497, - -0.0066121, - 0.042741, - -0.056862, - 0.022894, - 0.026435, - 0.052526, - 0.019939, - -0.028109, - 0.044522, - -0.077517, - -0.011136, - -0.011424, - -0.023517, - 0.098398, - 0.056142, - -0.0096524, - -0.055047, - 0.069013, - 0.015886, - -0.046413, - -0.061757, - -0.005196, - 0.024058, - 0.023586, - 0.0060925, - 0.042702, - 0.047608, - -0.0061066, - 0.010984, - -0.044177, - -0.045472, - 0.0023172, - -0.013621, - 0.040425, - 0.009013, - -0.057778, - -0.011425 - ], - "dope": [ - -0.03642, - 0.087541, - -0.016738, - 0.1913, - -0.094533, - -0.19708, - 0.035584, - -0.075773, - 0.03031, - 0.075328, - -0.047799, - 0.061319, - 0.030335, - -0.021967, - 0.072333, - -0.1161, - 0.14093, - 0.038559, - 0.011672, - 0.047465, - 0.16648, - 0.023148, - -0.059911, - 0.01226, - 0.052984, - 0.0027624, - 0.092179, - 0.016131, - 0.025459, - 0.027317, - 0.05177, - 0.019436, - -0.015246, - 0.052155, - 0.022686, - -0.048631, - 0.04231, - -0.00042445, - -0.043554, - 0.11908, - -0.0041894, - -0.17069, - 0.033298, - -0.012245, - 0.04586, - -0.051865, - 0.066385, - 0.012879, - -0.030017, - 0.0070007, - -0.055563, - -0.053116, - 0.10917, - -0.052792, - -0.05059, - 0.051171, - -0.082869, - -0.013117, - -0.071281, - 0.049468, - 0.032523, - 0.023959, - 0.11025, - -0.035594, - -0.15569, - -0.045822, - 0.11774, - -0.10684, - 0.12937, - 0.036705, - 0.044359, - 0.0088791, - 0.054541, - -0.088817, - 0.09039, - 0.022244, - 0.055115, - -0.031599, - -0.031276, - -0.061635, - -0.055981, - -0.090364, - -0.12966, - 0.12184, - -0.070444, - -0.066421, - 0.097518, - -0.014019, - 0.15454, - 0.0068479, - 0.0032786, - -0.026732, - -0.14769, - -0.011247, - 0.082992, - 0.070267, - 0.0016605, - -0.10783, - 0.010424, - 0.12379, - 0.037192, - 0.016458, - 0.0080644, - 0.025562, - -0.040999, - -0.18038, - -0.042482, - -0.025578, - 0.14614, - 0.18839, - 0.02089, - 0.078092, - 0.13869, - -0.093041, - -0.017084, - -0.029274, - -0.059652, - -0.097784, - -0.089953, - 0.01848, - 0.1718, - 0.081995, - -0.14346, - -0.058443, - 0.12093, - -0.0089216, - 0.013955, - -0.061191, - -0.014277, - 0.08564, - 0.082736, - 0.018718, - 0.035534, - -0.085153, - 0.058223, - -0.038851, - -0.091857, - 0.056491, - 0.002342, - -0.027099, - 0.14236, - 0.075771, - -0.035989, - -0.044491, - -0.027489, - 0.011498, - -0.054713, - 0.040912, - 0.050739, - -0.11923, - 0.027308, - 0.098736, - 0.042669, - 0.0062662, - -0.028467, - -0.095105, - -0.0080495, - -0.014314, - 0.094029, - -0.0075978, - 0.051285, - 0.14183, - -0.069299, - -0.065737, - -0.035767, - -0.04556, - 0.056056, - 0.1045, - 0.013751, - -0.0093649, - -0.058633, - -0.0045369, - 0.052317, - 0.062715, - 0.067457, - 0.099066, - -0.0085273, - 0.050938, - 0.071633, - 0.0035429, - 0.010514, - 0.010976, - -0.13184, - -0.11073, - 0.087159, - -0.10234, - 0.014378, - 0.18328, - 0.051456, - 0.026064, - 0.039612, - 0.023586, - -0.032259, - 0.10258, - -0.019148, - -0.082313, - -0.011801, - 0.043923, - -0.013847, - -0.010223, - -0.1397, - 0.12087, - 0.052627, - 0.07036, - 0.023414, - -0.056046, - 0.051283, - 0.015556, - -0.032434, - -0.040766, - 0.098118, - 0.0045838, - 0.086156, - -0.036588, - 0.079245, - -0.094013, - -0.10375, - 0.077551, - -0.044746, - 0.029178, - 0.021886, - 0.0019786, - 0.031015, - 0.088067, - 0.043459, - 0.066607, - 0.029321, - 0.04355, - -0.0093217, - -0.031977, - -0.043196, - -0.012372, - -0.071923, - -0.016183, - 0.028978, - 0.030285, - 0.044477, - -0.1042, - -0.05624, - -0.17345, - 0.10602, - 0.054658, - 0.098181, - -0.090654, - -0.05657, - 0.076109, - 0.031573, - 0.061701, - 0.093548, - 0.067483, - -0.051485, - -0.0010826, - 0.028206, - -0.042841, - 0.07008, - 0.077523, - -0.0076289, - 0.0024537, - 0.066388, - -0.013422, - 0.046654, - 0.14408, - 0.083917, - -0.018573, - -0.020053, - -0.039533, - -0.032907, - -0.0023413, - 0.025184, - 0.041126, - -0.055035, - 0.10565, - -0.088906, - 0.00075078, - 0.048846, - -0.084131, - 0.040098, - 0.031105, - -0.086725, - -0.037835, - 0.10521, - 0.15838, - -0.13119, - -0.061203, - -0.12221, - 0.066775, - 0.082104, - -0.00091904, - 0.023837, - -0.050857, - 0.096521, - -0.078877, - -0.090893, - 0.00092524, - -0.175, - -0.037937, - 0.20833, - -0.073011, - -0.041633, - -0.057578 - ], - "sportsperson": [ - 0.023184, - -0.022083, - 0.052561, - -0.011538, - -0.032458, - -0.0070596, - 0.01273, - -0.068032, - 0.043148, - -0.049529, - 0.017543, - 0.019941, - -0.0087969, - -0.052348, - 0.02819, - 0.097182, - 0.053015, - 0.02724, - 0.018545, - -0.0072476, - 0.037214, - -0.073428, - 0.0093744, - 0.063074, - 0.02355, - -0.048487, - 0.010969, - -0.0051883, - -0.0056785, - -0.013824, - 0.048692, - 0.048502, - 0.013106, - 0.0034144, - 0.0035891, - 0.020922, - 0.0060137, - -0.021542, - 0.0045853, - 0.031013, - 0.044628, - -0.10953, - -0.0066024, - -0.012204, - 0.079339, - 0.016092, - 0.0073426, - -0.0067865, - 0.025026, - 0.0063134, - -0.0051349, - -0.042734, - 0.029436, - 0.015488, - -0.00025641, - -0.024833, - 0.010765, - 0.042895, - -0.051212, - -0.072383, - -0.012128, - -0.024868, - 0.054176, - 0.0080532, - 0.05518, - -0.056539, - 0.020555, - 0.022012, - 0.0099951, - -0.04606, - 0.032189, - -0.038917, - 0.084986, - -0.011932, - -0.02085, - 0.044233, - -0.022896, - -0.00096306, - -0.028513, - 0.0035907, - 0.020496, - 0.069078, - -0.02703, - 0.11349, - -0.0029186, - -0.097796, - -0.058744, - 0.0166, - -0.029459, - -0.039487, - -0.018129, - 0.042209, - -0.078535, - -0.014128, - -0.003281, - 0.1059, - -0.061108, - -0.0060909, - 0.070416, - 0.026173, - 0.011345, - -0.017878, - 0.016686, - -0.021546, - -0.066971, - -0.080439, - 0.00152, - 0.078922, - 0.0092419, - 0.03473, - -0.0056152, - 0.026986, - 0.060503, - -0.055489, - 0.025234, - -0.0084089, - -0.0078433, - 0.0058522, - -0.027187, - -0.0011642, - 0.058598, - -0.0011642, - -0.027021, - 0.0032738, - 0.057336, - -0.041882, - -0.012168, - -0.061833, - -0.04805, - 0.032171, - -0.027197, - 0.047597, - 0.015988, - -0.042186, - -0.059579, - 0.05262, - 0.015738, - 0.062685, - 0.0045042, - -0.010186, - 0.0042565, - -0.0034283, - 0.048063, - -0.012144, - -0.062566, - 0.016235, - -0.061443, - -0.027674, - 0.044087, - 0.016078, - 0.036107, - 0.034034, - -0.0466, - -0.037444, - -0.054404, - -0.028693, - 0.024044, - 0.035357, - 0.016831, - -0.056536, - -0.019645, - 0.0059364, - 0.0018687, - 0.035117, - -0.019201, - -0.014761, - 0.021341, - -0.0086449, - -0.058381, - -0.064015, - 0.020459, - 0.017144, - 0.038478, - 0.027968, - 0.03611, - 0.027372, - -0.019663, - 0.016488, - 0.014075, - -0.046259, - 0.015464, - -0.079344, - -0.019782, - -0.037025, - 0.000069389, - -0.084476, - -0.017132, - 0.077377, - 0.024949, - 0.048163, - -0.049706, - 0.055199, - -0.010433, - -0.023746, - -0.011412, - -0.051826, - -0.027698, - -0.0156, - 0.023319, - -0.0073475, - -0.10165, - 0.053658, - -0.01579, - -0.040446, - -0.043828, - 0.032981, - -0.046208, - 0.039731, - 0.042427, - -0.036483, - 0.092755, - -0.018224, - 0.022881, - 0.00061173, - -0.036857, - 0.024567, - -0.027941, - 0.011417, - 0.023331, - 0.0065553, - -0.073053, - 0.022144, - -0.036307, - 0.090053, - -0.026258, - 0.067923, - 0.027561, - 0.062715, - -0.034763, - 0.0040975, - -0.023307, - 0.0067939, - -0.04572, - 0.0084849, - -0.029947, - 0.046005, - -0.029054, - -0.021654, - -0.023913, - -0.025708, - 0.066983, - -0.0030274, - 0.0037134, - -0.0085981, - 0.04561, - -0.021416, - 0.011071, - -0.014635, - -0.043195, - -0.054765, - 0.0029235, - 0.014559, - 0.0062508, - -0.016328, - 0.050477, - -0.026404, - -0.019661, - -0.00081699, - 0.054731, - 0.051026, - -0.056901, - -0.0018576, - 0.032813, - 0.0091492, - 0.0016851, - -0.031051, - -0.070778, - -0.023174, - 0.12604, - -0.029409, - -0.024825, - 0.057601, - -0.063267, - 0.0029819, - -0.0042262, - -0.030145, - 0.036352, - -0.038182, - 0.054231, - -0.0028037, - 0.050975, - 0.035371, - -0.070681, - 0.0058625, - -0.0050928, - 0.0038894, - 0.011564, - -0.0708, - 0.0020127, - -0.040453, - 0.089608, - -0.062029, - -0.0073726, - -0.0051225, - -0.019513, - 0.02438, - -0.00079146, - 0.022598, - 0.025085, - -0.04048 - ], - "economy": [ - 0.028285, - -0.075185, - 0.013325, - 0.0020439, - -0.0030684, - 0.020875, - 0.014727, - -0.06922, - 0.039165, - 0.038835, - 0.015241, - -0.061428, - -0.032137, - 0.0041797, - -0.00071203, - 0.026158, - 0.14179, - -0.028999, - 0.075097, - 0.040734, - -0.0067434, - 0.0128, - -0.00017531, - 0.073101, - 0.016586, - -0.0033548, - 0.010401, - 0.0044691, - -0.015536, - 0.0084112, - 0.029217, - 0.027826, - -0.034246, - -0.021676, - -0.012526, - 0.03495, - 0.057186, - 0.051704, - 0.0096577, - -0.0031794, - -0.014956, - -0.12003, - 0.016022, - 0.032556, - -0.0031968, - -0.044809, - -0.10079, - -0.030624, - -0.06282, - 0.0074625, - -0.018453, - -0.019496, - 0.023509, - 0.021231, - -0.058456, - -0.035044, - -0.033946, - 0.0031268, - -0.021869, - 0.011796, - -0.036405, - 0.016682, - 0.064228, - 0.036423, - 0.090908, - 0.060018, - 0.0043613, - 0.0090643, - 0.043487, - -0.026668, - 0.017995, - -0.019793, - -0.039025, - -0.010556, - -0.018092, - 0.0090225, - -0.0085131, - 0.0089729, - 0.0057774, - -0.015827, - -0.0043222, - 0.024222, - -0.073265, - 0.1015, - 0.01944, - -0.014411, - -0.028175, - -0.098879, - 0.02346, - -0.025472, - 0.047642, - 0.10752, - -0.089663, - 0.043084, - -0.066592, - 0.075182, - -0.0070655, - -0.064146, - 0.055582, - 0.029818, - 0.067529, - -0.068586, - -0.017039, - -0.048704, - -0.027506, - -0.079453, - 0.048038, - -0.021395, - 0.021376, - -0.051966, - -0.012975, - 0.11244, - 0.067874, - 0.053593, - 0.012516, - -0.044758, - -0.0075296, - -0.0089776, - -0.065593, - 0.078492, - -0.056142, - -0.044626, - 0.0213, - -0.0078649, - 0.056477, - 0.044491, - -0.060889, - -0.16277, - 0.0082335, - 0.1045, - 0.034435, - -0.032714, - 0.06123, - 0.057347, - 0.031957, - 0.00672, - 0.028386, - 0.0088763, - -0.0094211, - 0.078534, - 0.057373, - -0.055314, - 0.016962, - -0.00016677, - 0.041511, - -0.035539, - 0.046242, - -0.019204, - 0.026319, - -0.03047, - 0.097461, - 0.043626, - 0.024109, - -0.0030134, - 0.0052352, - 0.0516, - -0.010567, - 0.0081211, - -0.036199, - -0.053732, - 0.082724, - -0.0025503, - -0.11468, - 0.029655, - -0.00059731, - 0.0042637, - 0.028902, - -0.020917, - 0.051711, - 0.046494, - 0.0036346, - 0.0045231, - -0.040054, - 0.004386, - -0.046264, - 0.049258, - -0.019301, - 0.038251, - -0.030527, - 0.065821, - -0.067157, - 0.055263, - -0.057198, - -0.0898, - 0.057365, - -0.047591, - 0.0029942, - 0.11752, - -0.026474, - -0.0042978, - -0.008722, - 0.035522, - -0.025564, - -0.015088, - 0.03251, - -0.033159, - -0.06155, - -0.052047, - -0.0064898, - -0.041751, - -0.12848, - 0.0050108, - -0.0083478, - -0.041088, - 0.0064012, - 0.067744, - 0.00069111, - -0.0075994, - 0.051396, - 0.019962, - 0.081765, - -0.029606, - 0.023624, - -0.01897, - 0.044191, - 0.0689, - 0.0085987, - 0.0032423, - 0.0027503, - 0.012552, - 0.025581, - -0.044589, - -0.033082, - 0.095955, - -0.073715, - 0.017946, - -0.066122, - 0.032234, - -0.020198, - -0.043999, - -0.018521, - -0.031095, - -0.093181, - -0.033518, - 0.072291, - -0.040055, - -0.021449, - -0.003201, - 0.024554, - -0.07195, - 0.0055671, - 0.097045, - 0.018007, - 0.058567, - 0.032721, - -0.0086312, - -0.008411, - -0.12202, - 0.05719, - -0.049168, - 0.10431, - -0.033098, - -0.0021113, - -0.032825, - 0.018673, - 0.048775, - -0.033952, - 0.028577, - 0.0048026, - 0.016613, - 0.022033, - -0.004054, - 0.08165, - -0.014558, - 0.0082981, - 0.084662, - 0.035074, - 0.0091343, - 0.03622, - 0.0581, - -0.040524, - 0.080543, - -0.13614, - -0.04057, - 0.032673, - -0.032915, - 0.036243, - 0.027283, - -0.03257, - -0.061722, - 0.10903, - 0.050659, - -0.015705, - 0.016941, - -0.017424, - 0.047683, - 0.062821, - -0.033303, - -0.062983, - 0.013819, - -0.014514, - 0.060599, - -0.029832, - 0.00069856, - -0.043628, - 0.03919, - 0.014993, - -0.032852, - 0.005769, - -0.027969 - ], - "criminal": [ - -0.0041087, - -0.038419, - 0.04554, - -0.015745, - -0.034003, - -0.038611, - 0.026092, - -0.080252, - 0.044192, - 0.046381, - 0.029997, - -0.030525, - -0.012484, - 0.0018385, - -0.04311, - -0.0075336, - 0.10123, - 0.0026736, - 0.048051, - 0.061353, - -0.0001829, - -0.024508, - -0.0025009, - 0.087303, - -0.014222, - 0.086931, - -0.01636, - -0.00086152, - 0.048376, - 0.03596, - 0.0065324, - -0.056021, - -0.10374, - -0.065852, - 0.049342, - 0.030053, - 0.0022385, - 0.065214, - 0.0064592, - -0.0043602, - -0.046067, - -0.11175, - 0.081707, - -0.041353, - 0.039082, - 0.0072294, - 0.068269, - 0.029228, - -0.024863, - -0.045453, - -0.026529, - 0.026267, - -0.0053964, - -0.038449, - 0.028367, - 0.02602, - -0.048814, - 0.0029609, - -0.060832, - -0.0044747, - -0.003335, - -0.024466, - 0.098822, - -0.0082004, - -0.023831, - -0.029361, - 0.059626, - -0.0013723, - 0.02641, - 0.074919, - 0.012406, - -0.0070123, - 0.014267, - -0.058211, - 0.019098, - -0.00129, - 0.018601, - -0.02328, - 0.041149, - 0.035431, - -0.023194, - 0.069584, - -0.079118, - 0.060348, - -0.017033, - -0.011491, - 0.057726, - 0.090409, - 0.023113, - 0.0061227, - 0.011464, - 0.053795, - -0.092635, - -0.0018995, - -0.0029963, - 0.037427, - -0.015773, - -0.033057, - 0.023567, - 0.022411, - 0.015806, - -0.052828, - -0.01979, - -0.043429, - 0.0082835, - -0.085217, - 0.026988, - 0.010196, - 0.077063, - 0.012435, - -0.027863, - 0.050475, - 0.052297, - -0.055106, - -0.0063934, - -0.027071, - -0.045485, - -0.079113, - -0.031204, - 0.029228, - 0.016088, - -0.023468, - 0.0017349, - -0.005591, - 0.11046, - 0.037672, - 0.03598, - -0.043345, - -0.04357, - 0.098881, - -0.032793, - 0.00537, - 0.021091, - -0.007914, - 0.0046623, - -0.044207, - 0.015979, - 0.059546, - 0.048977, - -0.062648, - -0.012182, - 0.038453, - -0.041531, - -0.040275, - -0.0094245, - -0.0096933, - 0.042068, - -0.042993, - 0.023298, - -0.033499, - 0.06464, - 0.15218, - 0.0062277, - -0.05082, - 0.017287, - -0.0024925, - -0.051099, - -0.037935, - 0.025908, - -0.033094, - 0.047218, - 0.032276, - -0.11803, - 0.065883, - -0.028411, - -0.034609, - 0.042557, - 0.087545, - -0.01693, - -0.014078, - 0.00012632, - 0.0075354, - 0.069748, - 0.046849, - 0.021196, - 0.077965, - 0.011508, - 0.024921, - -0.032293, - -0.019014, - -0.0076138, - -0.026307, - 0.0074632, - 0.013744, - -0.0075769, - -0.051298, - -0.005658, - 0.068212, - 0.060903, - 0.056419, - 0.0064826, - 0.047584, - 0.060589, - 0.015249, - -0.0057742, - 0.0038998, - 0.0072803, - 0.0047957, - -0.023026, - 0.0021512, - -0.14833, - 0.026412, - -0.0024432, - 0.0028226, - -0.070929, - 0.038161, - 0.050966, - -0.020282, - -0.018364, - 0.019979, - 0.13758, - 0.0012994, - -0.017397, - -0.0099269, - 0.0521, - -0.026681, - -0.022814, - 0.0066781, - -0.01942, - -0.059822, - -0.025222, - -0.068094, - -0.058411, - 0.068413, - -0.024675, - -0.0057879, - 0.005689, - 0.062698, - -0.021681, - -0.026605, - -0.013267, - -0.041382, - -0.05847, - -0.057619, - 0.017624, - -0.029903, - -0.020603, - -0.0046344, - -0.034322, - -0.0081292, - 0.026694, - -0.0051341, - -0.047392, - 0.052622, - -0.11805, - -0.040561, - -0.0052929, - -0.038114, - -0.04622, - -0.016807, - -0.015364, - -0.015831, - -0.013866, - -0.060033, - 0.021924, - 0.060541, - 0.03449, - 0.010393, - -0.028489, - -0.0023847, - -0.033956, - 0.0048532, - -0.0081289, - 0.0070695, - -0.072367, - -0.026809, - -0.0011668, - 0.064212, - 0.04557, - 0.0077132, - -0.033554, - 0.066038, - -0.10131, - -0.038002, - 0.03435, - -0.10288, - 0.037182, - 0.058899, - -0.027647, - -0.025515, - 0.15054, - 0.072488, - 0.0082188, - -0.054763, - -0.022047, - 0.032764, - -0.048727, - -0.041288, - 0.018631, - 0.0067581, - 0.023063, - 0.022993, - -0.026947, - -0.0023641, - -0.069349, - -0.018646, - -0.042246, - 0.038276, - -0.068866, - -0.012774 - ], - "buildings": [ - 0.051424, - -0.03321, - 0.023829, - -0.021398, - 0.026344, - -0.032089, - 0.020725, - -0.067807, - 0.040597, - 0.02095, - -0.015801, - -0.098717, - 0.049358, - 0.046421, - 0.0094931, - 0.021654, - 0.038305, - 0.056497, - 0.036707, - -0.043119, - -0.0030931, - 0.012291, - 0.059381, - 0.06449, - 0.020434, - -0.0015287, - -0.020865, - 0.028536, - 0.069029, - 0.027741, - -0.038815, - -0.023808, - -0.0037329, - -0.014927, - 0.039134, - 0.048966, - 0.017682, - 0.00085851, - -0.01862, - -0.010869, - 0.020361, - -0.095871, - 0.02305, - 0.047186, - -0.02565, - -0.026031, - 0.0089921, - 0.0084361, - 0.0036418, - 0.024995, - -0.010185, - -0.035879, - -0.069306, - 0.031454, - -0.098979, - 0.050173, - -0.012305, - -0.0081119, - -0.047449, - -0.041547, - 0.058154, - -0.00027781, - 0.1591, - -0.039186, - 0.10381, - 0.013649, - -0.0062233, - -0.014421, - -0.017262, - 0.061802, - 0.070329, - -0.037798, - 0.035578, - -0.02129, - -0.0042958, - -0.062468, - 0.0029919, - -0.043146, - -0.043284, - 0.051694, - 0.026966, - -0.020313, - -0.030773, - 0.028553, - 0.015699, - -0.0046054, - -0.027551, - -0.047945, - -0.0060343, - 0.0048787, - -0.058216, - -0.014805, - -0.0529, - 0.059414, - 0.028874, - 0.034349, - -0.034681, - 0.019125, - 0.040005, - 0.028724, - 0.080815, - 0.045485, - 0.0083373, - 0.047205, - 0.074282, - -0.066976, - 0.0045385, - 0.037825, - 0.030178, - 0.065053, - -0.0072295, - 0.047297, - 0.055601, - 0.091478, - -0.0035604, - -0.036494, - -0.066562, - 0.031968, - -0.019035, - -0.002875, - -0.024039, - -0.053889, - -0.015991, - -0.048197, - 0.071785, - 0.035277, - -0.018672, - -0.048393, - 0.0058497, - 0.089644, - 0.0014428, - 0.076593, - 0.037697, - 0.03065, - 0.033648, - 0.070878, - -0.030358, - 0.02727, - -0.039511, - -0.00083469, - -0.0088193, - 0.026326, - -0.0059454, - 0.041636, - 0.075915, - -0.023358, - 0.051345, - 0.017086, - 0.033932, - -0.036458, - 0.017253, - 0.059219, - 0.0083769, - -0.05478, - 0.022066, - 0.015295, - 0.02356, - 0.0023371, - -0.046085, - -0.02069, - 0.01293, - -0.050425, - 0.033492, - 0.035714, - 0.036865, - -0.001134, - 0.034845, - -0.033531, - 0.039229, - 0.026711, - 0.06401, - -0.016863, - 0.077726, - 0.0078264, - 0.0011071, - 0.059139, - -0.00099224, - 0.051336, - -0.038559, - 0.030926, - 0.027369, - -0.020075, - 0.022066, - -0.0014662, - -0.041936, - -0.019377, - 0.004733, - 0.085771, - 0.019624, - -0.03295, - -0.0071776, - 0.036219, - -0.069507, - 0.047661, - 0.003118, - -0.021479, - -0.041423, - 0.018526, - 0.04238, - -0.032024, - -0.12199, - 0.05157, - -0.043407, - -0.016847, - 0.041116, - -0.024704, - 0.011045, - -0.0077353, - -0.046241, - -0.035839, - 0.087244, - -0.017746, - 0.0079556, - 0.032741, - 0.0037509, - 0.0084098, - 0.038447, - 0.075037, - -0.0098952, - -0.033924, - 0.0036137, - 0.045346, - 0.011876, - 0.066179, - 0.00419, - 0.0070254, - -0.0057579, - 0.040602, - -0.025884, - 0.0095047, - -0.026324, - -0.0080554, - -0.077307, - -0.011612, - 0.025357, - 0.00034426, - 0.003195, - 0.021998, - -0.010866, - 0.015809, - -0.016468, - -0.0078533, - 0.061379, - 0.015781, - 0.010741, - 0.074544, - -0.046309, - 0.0072635, - -0.0029055, - 0.015315, - -0.069251, - -0.047594, - -0.0098325, - -0.058311, - -0.045556, - 0.025054, - -0.020454, - 0.0034705, - 0.026766, - 0.005598, - -0.02754, - -0.041966, - -0.041207, - -0.044286, - 0.032086, - -0.0083762, - 0.043248, - -0.00021499, - 0.025749, - -0.021191, - -0.029611, - 0.057943, - -0.089203, - -0.039915, - -0.0081128, - 0.016451, - 0.039113, - -0.0034506, - 0.026567, - -0.061865, - 0.029822, - -0.0095708, - -0.012015, - 0.049774, - 0.0097039, - 0.0075477, - -0.027432, - 0.024111, - -0.016278, - 0.071631, - 0.013805, - 0.035097, - 0.0069802, - 0.013375, - -0.00033436, - -0.015756, - -0.028137, - 0.030742, - 0.022705, - -0.039487 - ], - "beauty": [ - -0.016766, - -0.0064978, - 0.042537, - 0.034013, - -0.07767, - 0.023425, - -0.023784, - -0.097453, - 0.11729, - -0.023703, - 0.052803, - -0.055848, - 0.0051794, - 0.028372, - -0.047103, - -0.082072, - 0.094176, - 0.023054, - 0.04518, - 0.018807, - -0.033069, - -0.063133, - 0.052342, - 0.067162, - 0.019366, - -0.1064, - 0.039122, - 0.044921, - 0.078882, - -0.012156, - -0.05203, - -0.04003, - -0.013514, - -0.073123, - -0.012568, - -0.0073665, - 0.12403, - -0.013402, - -0.07889, - 0.024473, - 0.029152, - -0.14431, - -0.096158, - -0.032172, - 0.029746, - -0.035597, - 0.013981, - -0.07532, - -0.042334, - 0.021266, - 0.030111, - -0.086543, - -0.059113, - 0.0045956, - -0.039936, - -0.099602, - 0.0095675, - 0.028513, - -0.054585, - -0.021305, - -0.056201, - -0.043836, - 0.046498, - -0.043188, - 0.020858, - 0.043579, - -0.039328, - -0.012726, - -0.01315, - -0.034533, - 0.094721, - -0.042041, - 0.0055778, - -0.045293, - -0.011539, - -0.0053111, - -0.0034524, - -0.0066791, - -0.076611, - -0.01102, - -0.050017, - 0.014391, - 0.051081, - 0.063196, - 0.039346, - -0.043317, - 0.015334, - -0.041331, - 0.00060263, - -0.031481, - -0.050957, - 0.010991, - -0.077252, - -0.015061, - -0.012996, - 0.053087, - 0.02007, - 0.012345, - 0.080437, - 0.083262, - 0.068998, - 0.13417, - 0.01335, - 0.049787, - -0.020583, - -0.056101, - 0.023352, - 0.069217, - 0.032776, - -0.055215, - 0.088122, - 0.11035, - 0.040727, - -0.01447, - -0.09876, - 0.027542, - 0.01579, - 0.021023, - -0.032242, - 0.00636, - -0.059886, - 0.030893, - -0.1096, - -0.094557, - 0.075678, - -0.0011178, - -0.0083498, - -0.1333, - 0.060571, - 0.1576, - -0.032821, - -0.082331, - 0.019113, - -0.02712, - 0.014318, - -0.096907, - 0.026782, - 0.043984, - 0.0070622, - -0.061086, - 0.017758, - -0.059046, - 0.02033, - 0.051168, - 0.015865, - -0.00047809, - -0.039596, - -0.05055, - -0.015334, - 0.0058691, - 0.035755, - 0.054966, - 0.072092, - -0.043611, - -0.0076458, - 0.027522, - 0.025962, - 0.1038, - 0.0090107, - -0.012694, - 0.089409, - 0.0033566, - -0.17266, - 0.047702, - 0.027163, - 0.031838, - 0.017226, - 0.01584, - -0.065835, - 0.084081, - 0.021205, - -0.00071089, - -0.031679, - -0.043045, - 0.083395, - 0.084653, - 0.050564, - 0.098837, - -0.0021777, - 0.015354, - 0.0162, - -0.021314, - 0.022329, - -0.11627, - -0.049425, - -0.061867, - 0.035725, - 0.12096, - -0.032274, - 0.043319, - 0.063762, - 0.081425, - -0.027908, - -0.051651, - -0.02424, - -0.0048171, - 0.077543, - -0.015807, - 0.012335, - -0.0061685, - -0.16071, - 0.021761, - -0.008916, - -0.084591, - 0.12085, - -0.0018132, - 0.032785, - -0.035251, - 0.046884, - 0.020009, - 0.11395, - -0.0010267, - -0.017631, - 0.0092048, - 0.074271, - 0.00091709, - 0.015171, - -0.00045943, - -0.022153, - -0.012052, - -0.019765, - -0.049781, - -0.035619, - 0.084674, - 0.049304, - 0.044987, - -0.030083, - 0.098362, - 0.041839, - -0.032643, - 0.053477, - -0.054619, - -0.1347, - 0.015263, - 0.0010094, - 0.056276, - -0.069445, - -0.072599, - 0.02381, - -0.044721, - 0.028927, - -0.052323, - -0.025185, - -0.024844, - -0.084508, - 0.047534, - -0.024156, - -0.018084, - -0.0043749, - -0.019487, - 0.066349, - -0.041452, - -0.0261, - -0.036526, - 0.019046, - 0.078676, - -0.051146, - 0.06862, - 0.064339, - 0.039737, - -0.058641, - 0.054052, - 0.0095673, - -0.034954, - 0.081449, - -0.036405, - 0.027057, - 0.01069, - 0.096363, - -0.014792, - -0.049942, - 0.07833, - -0.095387, - -0.042948, - 0.066962, - -0.04955, - -0.022187, - -0.034785, - -0.045758, - -0.066125, - 0.15097, - 0.014, - 0.036621, - -0.049497, - 0.024768, - -0.025612, - -0.030837, - 0.060084, - -0.028607, - 0.030106, - -0.038466, - -0.00069412, - 0.019883, - 0.026431, - 0.0052055, - -0.026629, - 0.05058, - 0.030235, - -0.014061, - -0.0073658 - ], - "farm": [ - 0.0019254, - -0.053533, - -0.0043997, - 0.0035955, - -0.087056, - -0.076131, - -0.022103, - -0.14481, - 0.02205, - 0.00058787, - -0.087861, - -0.1498, - 0.011258, - -0.081345, - 0.023683, - -0.048364, - 0.20514, - -0.010798, - 0.064279, - 0.082098, - 0.10759, - -0.06302, - -0.02766, - 0.08201, - 0.05042, - -0.082586, - -0.056782, - 0.10712, - -0.062414, - 0.0037842, - 0.042194, - -0.027077, - 0.025374, - 0.015411, - 0.0042201, - 0.047835, - -0.0087154, - -0.080048, - 0.084127, - -0.015055, - -0.032305, - -0.22154, - -0.020375, - 0.015081, - 0.0021535, - -0.045486, - 0.0008463, - 0.00042609, - -0.10473, - -0.050006, - 0.10273, - 0.033167, - 0.038353, - 0.093371, - -0.14395, - -0.033156, - -0.031507, - 0.089674, - -0.059869, - -0.18836, - -0.031576, - -0.033121, - 0.18818, - 0.068902, - 0.11054, - -0.025598, - 0.074348, - -0.097379, - -0.049423, - 0.028587, - 0.036964, - -0.030554, - 0.033166, - -0.021234, - -0.015241, - 0.025563, - -0.12816, - -0.023879, - 0.031725, - -0.035719, - -0.030656, - -0.007648, - -0.0058003, - -0.0084444, - -0.038101, - -0.029321, - -0.074046, - -0.086764, - 0.024227, - -0.0077687, - -0.00043131, - 0.078552, - -0.15902, - 0.030826, - -0.022316, - 0.10245, - -0.039544, - 0.064366, - 0.088085, - -0.027113, - 0.034118, - -0.086361, - -0.05699, - -0.019951, - 0.058309, - -0.17476, - -0.014016, - 0.029854, - -0.05242, - 0.026989, - -0.015354, - 0.13724, - 0.098535, - 0.098213, - 0.097099, - 0.023442, - -0.067814, - 0.019471, - -0.04504, - -0.065583, - -0.17151, - -0.0037702, - 0.0015894, - -0.052369, - 0.10715, - 0.036524, - -0.047806, - -0.20081, - -0.064654, - 0.084339, - 0.11119, - 0.0026802, - 0.0059958, - -0.022884, - -0.021088, - -0.058454, - -0.0075869, - 0.034962, - -0.005927, - 0.042409, - -0.05959, - -0.014194, - -0.0098057, - 0.075546, - 0.0018378, - -0.029896, - 0.043071, - 0.10822, - -0.072351, - -0.19553, - -0.061874, - 0.080006, - -0.023477, - -0.10759, - 0.12387, - 0.003168, - 0.080577, - 0.045756, - -0.013886, - -0.030212, - 0.032693, - -0.010368, - -0.030121, - 0.078402, - 0.041951, - -0.034122, - 0.062715, - 0.06199, - 0.055717, - 0.10459, - -0.0036064, - -0.053088, - -0.082042, - 0.03807, - -0.025031, - 0.053594, - 0.025249, - 0.0030091, - -0.064945, - 0.051837, - -0.0039066, - -0.027134, - 0.035423, - 0.021354, - -0.11399, - -0.031198, - 0.042296, - 0.13151, - -0.0083578, - -0.11583, - 0.031343, - 0.011106, - 0.023372, - 0.0028872, - 0.0024371, - -0.1449, - 0.076931, - 0.12263, - 0.035122, - -0.0050315, - -0.2231, - 0.13288, - -0.063668, - -0.12488, - -0.031644, - -0.035764, - -0.12325, - 0.070072, - 0.033429, - -0.043481, - 0.15089, - -0.033964, - 0.050514, - -0.022937, - -0.027978, - 0.07983, - 0.013578, - 0.0519, - 0.060015, - -0.017672, - 0.037784, - -0.060751, - 0.081709, - 0.12967, - -0.056847, - -0.12063, - 0.0031518, - 0.069306, - -0.06292, - 0.0085452, - 0.056739, - -0.06638, - -0.090908, - -0.028994, - 0.044743, - 0.053201, - 0.081709, - 0.06439, - 0.024161, - -0.018438, - 0.053907, - 0.16431, - 0.076574, - 0.016233, - -0.0066901, - 0.0175, - 0.026771, - 0.026317, - 0.093167, - 0.095147, - -0.052804, - -0.059396, - 0.039188, - 0.0022719, - -0.016722, - -0.11371, - -0.072449, - 0.019802, - -0.017611, - 0.084276, - 0.016438, - 0.024527, - 0.054064, - -0.074588, - 0.052265, - -0.086077, - -0.03482, - 0.0012003, - -0.004236, - -0.032459, - -0.092108, - 0.11866, - -0.14675, - -0.033133, - 0.01582, - -0.015974, - 0.011199, - -0.022151, - 0.011354, - 0.011958, - 0.14192, - 0.057428, - 0.065436, - 0.027189, - -0.031342, - 0.069489, - 0.060127, - -0.064047, - -0.054364, - 0.010958, - 0.013149, - 0.094183, - -0.044465, - 0.038887, - -0.11479, - 0.036671, - -0.032174, - 0.01802, - -0.076811, - -0.11464 - ], - "ponies": [ - -0.0074231, - -0.090253, - -0.034736, - 0.0063334, - -0.032448, - 0.030779, - -0.12101, - -0.079231, - -0.0026843, - -0.042257, - -0.021253, - 0.0066101, - 0.040569, - -0.10006, - 0.020548, - -0.074333, - 0.061198, - 0.015015, - 0.065569, - -0.0028325, - 0.02727, - -0.12783, - 0.045763, - -0.016262, - 0.15688, - 0.033344, - 0.011923, - -0.033571, - 0.12129, - -0.00073196, - 0.012661, - -0.046025, - 0.027014, - 0.057861, - 0.017959, - -0.017943, - 0.02682, - -0.12278, - 0.027259, - -0.051675, - 0.0075921, - -0.11519, - -0.067046, - 0.024825, - 0.097014, - -0.061901, - -0.023401, - 0.036306, - -0.036715, - -0.026516, - 0.10195, - 0.059797, - 0.063383, - 0.030955, - -0.11036, - -0.044992, - 0.07287, - 0.032128, - -0.042119, - -0.033836, - 0.040979, - 0.02119, - 0.10142, - -0.012429, - 0.005936, - 0.078787, - -0.10776, - -0.12069, - 0.00062237, - 0.010031, - -0.045365, - -0.090092, - 0.043593, - 0.0012177, - -0.096604, - 0.17036, - -0.064955, - -0.080331, - -0.06108, - 0.00041729, - 0.056895, - -0.07783, - 0.092287, - 0.048451, - -0.003545, - -0.048069, - 0.019477, - -0.051563, - -0.0069702, - -0.074567, - 0.02068, - 0.0093083, - -0.087567, - 0.062459, - 0.031635, - 0.12415, - -0.066952, - 0.0053031, - 0.065148, - 0.082713, - -0.021122, - 0.05802, - -0.011858, - 0.024364, - 0.058326, - -0.098516, - -0.07489, - -0.12441, - -0.00050513, - -0.002911, - 0.029997, - 0.032365, - 0.069589, - -0.03603, - -0.0043601, - 0.025474, - 0.040753, - -0.012354, - -0.045228, - -0.048301, - 0.051087, - 0.071089, - -0.020746, - -0.18981, - 0.10884, - 0.023367, - 0.015525, - -0.030031, - -0.00025102, - 0.073982, - -0.021984, - 0.094974, - -0.04917, - 0.0034039, - 0.052936, - -0.061796, - -0.018551, - 0.021925, - -0.039141, - 0.023619, - -0.077698, - -0.083344, - 0.019957, - -0.032292, - 0.054896, - -0.039786, - 0.021564, - 0.024388, - 0.0094344, - -0.13587, - 0.028297, - 0.083288, - -0.030343, - 0.030939, - 0.032916, - -0.018958, - 0.010528, - 0.068238, - -0.0082129, - -0.0027463, - 0.064053, - -0.0061896, - 0.072728, - 0.0050279, - -0.046388, - -0.017514, - -0.042823, - 0.061737, - 0.0099711, - 0.029337, - 0.019022, - -0.055168, - 0.018818, - -0.047079, - -0.065221, - 0.094493, - 0.026987, - 0.055605, - -0.030056, - -0.015761, - 0.050003, - 0.020103, - -0.06148, - -0.0095096, - 0.11415, - -0.01861, - -0.0021765, - 0.17065, - 0.026817, - -0.065962, - 0.026189, - 0.031511, - -0.14246, - -0.068791, - 0.037782, - -0.01564, - 0.033677, - 0.062581, - 0.042709, - 0.045971, - -0.17977, - 0.064751, - -0.0018521, - -0.019447, - 0.16109, - 0.042464, - -0.041477, - 0.029827, - 0.10199, - -0.069918, - 0.076872, - 0.0021017, - 0.057542, - 0.084118, - 0.00062775, - -0.011584, - -0.070505, - 0.044601, - -0.012071, - 0.00099076, - 0.083059, - -0.078972, - 0.014951, - 0.061597, - 0.018746, - -0.042231, - 0.052349, - 0.088845, - -0.10574, - -0.015217, - -0.0044783, - 0.0027951, - -0.14478, - -0.04637, - 0.07235, - 0.13763, - 0.090498, - -0.011536, - -0.078449, - 0.010622, - 0.0087856, - 0.070164, - 0.0011541, - -0.090067, - 0.051042, - 0.11543, - 0.054553, - -0.018462, - 0.036048, - 0.050397, - 0.036719, - 0.056347, - -0.00015161, - 0.0651, - 0.0040943, - 0.031566, - -0.070874, - -0.064697, - 0.076654, - 0.063901, - -0.011828, - 0.003295, - -0.033171, - -0.061215, - 0.013461, - 0.0065564, - 0.028284, - -0.0092881, - 0.023748, - 0.03752, - -0.032843, - 0.097777, - -0.10781, - 0.0051695, - 0.036321, - 0.00017765, - 0.10338, - -0.02278, - -0.05943, - -0.11215, - 0.071008, - 0.074253, - 0.13996, - 0.060129, - -0.036969, - 0.017817, - 0.0087297, - 0.033038, - -0.046851, - -0.0047769, - 0.021269, - -0.0049696, - -0.11703, - -0.048338, - -0.085045, - -0.082875, - 0.025891, - 0.024601, - -0.044528, - 0.050139 - ], - "philosophy": [ - 0.0022782, - -0.063336, - -0.0025593, - -0.012191, - -0.015487, - -0.07564, - -0.029109, - -0.075856, - 0.0077602, - -0.010127, - -0.0019164, - -0.072092, - 0.044517, - -0.030811, - -0.030058, - -0.058601, - 0.10824, - 0.0051962, - 0.039484, - 0.011594, - -0.064568, - 0.018111, - 0.028235, - 0.039461, - -0.004475, - 0.033981, - -0.0001104, - 0.020107, - -0.0037451, - 0.0073037, - 0.036695, - -0.019225, - -0.02024, - -0.042233, - -0.00073048, - 0.032646, - 0.035166, - -0.02074, - 0.046061, - -0.028558, - -0.022921, - -0.094302, - -0.011795, - 0.039128, - -0.027837, - -0.017299, - -0.002629, - -0.059199, - 0.0065572, - -0.018124, - -0.01107, - 0.007904, - 0.027145, - 0.005076, - -0.027198, - 0.014902, - 0.0086575, - 0.05027, - -0.032502, - 0.051198, - 0.041012, - -0.064878, - 0.079394, - 0.022958, - 0.024801, - 0.011926, - 0.009217, - 0.041468, - 0.024755, - -0.0073846, - 0.013624, - -0.0028893, - -0.022101, - 0.033492, - 0.0024065, - -0.030087, - -0.0156, - -0.020871, - 0.028376, - 0.032185, - -0.019393, - 0.018819, - -0.021924, - 0.049072, - -0.050499, - -0.026147, - 0.026886, - -0.0045722, - 0.0095187, - 0.059977, - 0.079254, - 0.016602, - -0.085107, - 0.018474, - 0.035826, - 0.074172, - 0.017008, - -0.032063, - 0.0061881, - 0.02134, - 0.025001, - 0.01538, - 0.0023522, - 0.0014801, - -0.030153, - -0.050269, - 0.002914, - 0.059361, - -0.042678, - 0.0067583, - -0.036675, - 0.041514, - 0.042676, - 0.0017081, - -0.0094501, - 0.016676, - 0.012039, - -0.016697, - -0.0287, - 0.010812, - -0.016267, - -0.040243, - -0.032386, - -0.049192, - 0.04209, - 0.018653, - -0.083302, - -0.030568, - 0.032586, - 0.13834, - 0.011831, - -0.024221, - 0.03377, - 0.013677, - -0.021995, - 0.013775, - 0.035275, - 0.025006, - 0.011464, - -0.055193, - 0.0322, - -0.050839, - 0.0040772, - 0.024441, - -0.019743, - -0.042068, - -0.014449, - 0.0037398, - 0.0011259, - -0.029277, - 0.041508, - 0.04279, - -0.025083, - -0.054058, - -0.023119, - 0.067898, - -0.0062367, - -0.0018088, - 0.040904, - -0.0096439, - 0.021502, - 0.0085573, - -0.088473, - 0.028875, - 0.060611, - -0.019708, - 0.023421, - -0.010539, - -0.028338, - 0.0014376, - 0.022829, - -0.032399, - -0.0086718, - 0.015178, - 0.083414, - 0.024735, - -0.014959, - 0.071418, - -0.018722, - -0.0034574, - -0.0090365, - 0.008864, - 0.0096145, - -0.010588, - 0.056892, - -0.014042, - 0.044548, - 0.06085, - 0.0062114, - -0.032653, - 0.023904, - 0.092872, - -0.038464, - -0.020894, - 0.020178, - -0.049483, - -0.036915, - -0.018531, - 0.024244, - -0.026448, - -0.098103, - -0.010117, - 0.030671, - -0.035689, - -0.027775, - -0.047745, - 0.032044, - -0.018898, - 0.026561, - 0.0023406, - 0.10205, - 0.024376, - 0.0057803, - 0.006697, - 0.016157, - 0.061383, - 0.0081252, - -0.05047, - -0.03918, - -0.028762, - -0.020147, - 0.032315, - -0.0013085, - 0.081121, - 0.0027607, - 0.018009, - -0.035453, - 0.085816, - 0.0097564, - -0.020213, - 0.02661, - -0.037015, - -0.044181, - -0.039331, - 0.022543, - 0.0087317, - -0.018742, - -0.027179, - -0.0049595, - 0.040583, - 0.032304, - 0.0021506, - -0.00066574, - 0.01415, - 0.012308, - -0.0015784, - -0.032417, - -0.031818, - -0.039539, - 0.035943, - 0.070733, - -0.0042169, - -0.010624, - -0.027277, - 0.028638, - -0.026562, - -0.041288, - 0.022198, - 0.040214, - 0.013471, - 0.015469, - 0.05347, - 0.0021617, - 0.015173, - 0.013423, - 0.012643, - -0.011638, - 0.0283, - 0.011548, - 0.032705, - 0.017926, - 0.070685, - -0.074367, - -0.022251, - 0.043334, - -0.014349, - -0.025499, - 0.036011, - -0.0006127, - -0.0078073, - 0.080066, - -0.031218, - -0.0038613, - -0.060345, - -0.022572, - -0.028521, - -0.021013, - 0.0085063, - -0.0087268, - 0.025744, - -0.028326, - -0.0484, - 0.01887, - -0.050584, - -0.020827, - 0.0070898, - 0.026843, - 0.035619, - -0.043147, - 0.026308 - ], - "iPhones": [ - -0.067062, - 0.019023, - 0.0015718, - 0.041499, - -0.0046298, - 0.041986, - 0.023971, - -0.001818, - 0.074933, - 0.028563, - -0.029233, - -0.038001, - -0.10052, - -0.076449, - 0.0090856, - -0.032756, - 0.01374, - 0.023121, - 0.082291, - -0.085523, - 0.071519, - 0.011482, - -0.043045, - 0.02779, - 0.060433, - -0.071286, - 0.083421, - 0.030377, - 0.106, - -0.038787, - -0.051522, - -0.093161, - 0.055394, - 0.047311, - 0.06699, - 0.06341, - 0.011127, - -0.037428, - -0.11922, - -0.080838, - -0.06721, - 0.0046466, - -0.061047, - 0.0077362, - 0.051607, - 0.0037592, - -0.048396, - -0.064904, - -0.050255, - -0.057014, - -0.025653, - -0.037681, - -0.027604, - 0.011372, - -0.10454, - 0.046679, - 0.088131, - 0.012356, - -0.051505, - -0.0041833, - -0.00050717, - -0.040799, - 0.11505, - 0.11196, - -0.0067183, - -0.0052231, - 0.024687, - -0.049099, - -0.055213, - 0.075762, - -0.060539, - -0.0097732, - 0.033769, - -0.076943, - -0.17012, - 0.010769, - 0.11217, - -0.063855, - -0.01006, - -0.111, - 0.012913, - -0.086627, - -0.052257, - 0.085289, - 0.0046727, - -0.050698, - 0.011265, - -0.066466, - -0.014696, - -0.019486, - -0.019079, - -0.035543, - -0.078501, - 0.04461, - -0.0027332, - 0.077182, - -0.020359, - -0.15529, - 0.00048442, - 0.084197, - 0.11103, - 0.013681, - 0.013945, - 0.038077, - 0.0094574, - -0.042591, - -0.034668, - 0.10877, - 0.0094332, - -0.052921, - -0.0044192, - 0.082106, - 0.095134, - 0.057444, - -0.082443, - -0.069929, - -0.03016, - 0.037498, - -0.090419, - -0.039551, - 0.014775, - 0.031432, - 0.010321, - -0.067222, - 0.055274, - 0.088611, - 0.024236, - -0.0072136, - -0.0018332, - 0.041271, - 0.029072, - 0.103, - 0.014319, - -0.096837, - 0.1374, - -0.026873, - -0.0089525, - -0.016303, - -0.055424, - 0.03209, - 0.082848, - 0.01271, - 0.06052, - 0.025977, - 0.02923, - 0.0030737, - -0.063478, - -0.044747, - 0.039225, - -0.039053, - 0.0023589, - 0.086382, - 0.029882, - 0.021257, - -0.069727, - 0.02595, - -0.015526, - -0.037294, - -0.087266, - -0.056106, - 0.041307, - 0.00066797, - 0.000054847, - 0.017467, - 0.077103, - -0.0018429, - 0.047411, - 0.066993, - 0.039927, - -0.023303, - -0.04631, - 0.11899, - 0.065991, - 0.098475, - -0.056802, - 0.018917, - 0.022243, - 0.014113, - -0.014543, - -0.039361, - 0.094248, - -0.017267, - -0.022179, - -0.048161, - -0.021606, - -0.015968, - 0.027525, - 0.11438, - 0.00094488, - 0.068994, - -0.0014655, - 0.074509, - -0.1338, - -0.01915, - 0.021095, - -0.071362, - -0.026119, - 0.042019, - 0.04683, - 0.033775, - -0.10773, - 0.10845, - -0.054576, - 0.037972, - -0.018969, - 0.10094, - -0.0063095, - -0.043691, - -0.02578, - -0.07253, - 0.09346, - -0.028887, - 0.084255, - 0.087439, - 0.044821, - 0.0019636, - -0.10582, - -0.016454, - -0.03044, - 0.041168, - 0.10637, - -0.0092781, - 0.069626, - 0.097153, - 0.021098, - -0.054269, - 0.027209, - 0.073087, - -0.06195, - -0.038519, - -0.027459, - -0.046038, - -0.079528, - 0.047575, - 0.042777, - 0.076215, - 0.0070936, - -0.0085276, - 0.11503, - -0.059334, - -0.044627, - -0.016541, - 0.091058, - -0.065194, - 0.079596, - -0.019504, - 0.017886, - -0.059131, - -0.09395, - 0.018393, - -0.062225, - 0.013982, - -0.11786, - 0.030832, - -0.0077479, - -0.058534, - -0.00040375, - -0.039326, - 0.062643, - 0.0012818, - -0.053013, - 0.064613, - 0.027609, - -0.075408, - 0.10966, - 0.028665, - 0.000033653, - 0.0086063, - 0.032923, - 0.065562, - 0.046675, - 0.096561, - -0.1246, - 0.020237, - -0.018924, - -0.033701, - -0.072928, - -0.0027497, - 0.027162, - -0.015458, - 0.030955, - -0.027037, - -0.0027435, - -0.013177, - 0.0042992, - -0.10509, - -0.077607, - 0.027088, - 0.021865, - 0.048779, - -0.058083, - -0.065527, - -0.11763, - 0.038893, - -0.045087, - 0.032971, - -0.0059472, - -0.0064802, - 0.040062, - -0.01693 - ], - "mythos": [ - -0.10547, - -0.057789, - 0.070719, - 0.083751, - -0.12327, - -0.059555, - -0.067065, - -0.10336, - 0.011873, - 0.030214, - -0.018761, - -0.058774, - -0.060919, - -0.005114, - -0.017226, - 0.01259, - 0.13511, - -0.074935, - 0.044625, - 0.068833, - -0.052695, - 0.010987, - 0.029596, - 0.054181, - 0.082939, - -0.0083689, - 0.035179, - -0.007648, - 0.064574, - 0.067823, - -8.9556e-7, - -0.039398, - 0.034834, - 0.017783, - -0.014694, - -0.0057232, - -0.035881, - -0.0058482, - -0.010687, - -0.091024, - 0.017196, - -0.046905, - 0.06497, - 0.096361, - -0.0044175, - -0.0092814, - 0.040578, - 0.030199, - -0.036387, - -0.048384, - -0.038044, - 0.031611, - -0.022946, - -0.024634, - 0.053587, - 0.19353, - 0.058028, - -0.057843, - -0.0072354, - 0.022205, - -0.0038092, - -0.12194, - 0.080996, - -0.07779, - 0.090463, - -0.043875, - -0.042528, - 0.019017, - 0.014715, - -0.050772, - -0.0053502, - 0.0058526, - 0.037752, - 0.032341, - -0.033972, - -0.018214, - -0.028663, - -0.017222, - 0.0044965, - -0.015178, - -0.013468, - 0.030595, - -0.044074, - 0.09175, - -0.011363, - 0.091857, - -0.023797, - -0.026294, - 0.00027068, - -0.0031806, - 0.042875, - 0.044402, - -0.042249, - 0.042451, - 0.025476, - 0.10072, - 0.019145, - -0.12047, - 0.027902, - 0.042753, - 0.045859, - 0.022804, - 0.011983, - -0.014965, - -0.062604, - -0.092299, - -0.02883, - -0.029136, - -0.069663, - 0.1128, - 0.0021394, - 0.038949, - 0.037717, - -0.14123, - -0.0030882, - 0.020873, - -0.052866, - 0.0083498, - -0.0071319, - 0.012196, - -0.059783, - -0.02623, - -0.053346, - -0.078481, - 0.062987, - 0.081211, - 0.052491, - -0.020932, - -0.07285, - 0.17203, - 0.012453, - -0.0078132, - -0.08723, - 0.016389, - -0.015424, - -0.02715, - -0.058678, - 0.025753, - -0.015043, - -0.088252, - 0.010669, - -0.049931, - 0.052723, - 0.093089, - -0.016741, - -0.053927, - -0.0090217, - 0.02883, - -0.050682, - -0.055926, - 0.016724, - 0.014461, - -0.05945, - 0.034064, - 0.0029025, - -0.021379, - -0.0065398, - 0.0036121, - 0.069057, - 0.014309, - -0.025154, - 0.042457, - -0.10272, - 0.05587, - 0.028978, - -0.011183, - 0.014793, - 0.10146, - -0.010739, - -0.0028406, - -0.065933, - -0.098388, - -0.06872, - -0.13885, - -0.021919, - 0.047077, - 0.088533, - 0.12554, - -0.022919, - 0.0095502, - -0.02703, - 0.095953, - -0.015681, - 0.006735, - 0.024011, - -0.045442, - 0.026213, - 0.15364, - 0.047879, - -0.048868, - 0.043799, - 0.061375, - -0.025517, - 0.0055021, - 0.0032345, - 0.044453, - -0.047953, - -0.10746, - -0.075615, - 0.021406, - -0.17636, - -0.02251, - -0.12594, - -0.082311, - 0.063046, - 0.061941, - 0.018626, - 0.033591, - 0.044006, - -0.057047, - 0.10462, - 0.0034664, - -0.043961, - -0.009247, - 0.1054, - 0.044361, - -0.031999, - 0.0065142, - -0.018089, - 0.04354, - 0.00086816, - 0.019352, - 0.028206, - 0.085335, - 0.02815, - -0.0040217, - 0.15181, - 0.04364, - 0.076479, - 0.0053006, - -0.092932, - -0.025733, - -0.10364, - 0.0063913, - -0.049211, - 0.034973, - -0.087955, - 0.0093908, - 0.083085, - -0.044005, - 0.0043521, - 0.058522, - -0.056501, - -0.020985, - 0.047863, - -0.026177, - -0.1493, - 0.020269, - -0.13215, - 0.041837, - 0.093997, - -0.072745, - -0.063091, - 0.03643, - -0.03924, - 0.080548, - -0.066108, - 0.017377, - 0.081951, - -0.019227, - 0.071216, - -0.029584, - -0.054985, - -0.037425, - 0.090699, - 0.063117, - 0.0078689, - 0.023142, - 0.060076, - 0.00013413, - 0.048228, - 0.10236, - -0.073668, - -0.077367, - 0.10975, - -0.076032, - 0.019933, - -0.013438, - -0.034652, - 0.028003, - 0.12667, - -0.077723, - 0.054916, - -0.021812, - -0.058269, - -0.078316, - 0.047387, - -0.0024324, - -0.10194, - 0.0026492, - 0.10221, - -0.013906, - 0.0059962, - -0.048106, - 0.018929, - -0.055349, - 0.10872, - 0.03686, - 0.0034713, - 0.0011174 - ], - "entrepreneurship": [ - -0.0098746, - -0.059364, - 0.019495, - -0.01461, - -0.050276, - 0.026972, - 0.017225, - -0.058366, - 0.030565, - 0.036115, - 0.03065, - -0.034403, - -0.022336, - -0.035566, - 0.031023, - 0.023956, - 0.057364, - -0.025716, - 0.019524, - 0.038657, - 0.0082369, - 0.063956, - -0.004613, - 0.044944, - -0.032077, - 0.007318, - -0.0055109, - 0.010625, - 0.013042, - 0.012369, - 0.0024353, - -0.031148, - -0.02215, - -0.031677, - 0.010088, - 0.037452, - 0.064913, - -0.032677, - 0.0061057, - 0.023623, - -0.038335, - -0.062256, - -0.005913, - 0.014256, - -0.019702, - -0.0090436, - 0.020479, - -0.0014854, - 0.0093378, - -0.032341, - 0.013533, - 0.0025676, - -0.015178, - 0.021793, - -0.04769, - -0.00011276, - -0.016883, - 0.011299, - -0.018137, - 0.044479, - 0.0044764, - 0.015806, - 0.019748, - 0.027684, - 0.049703, - -0.0043402, - 0.041493, - -0.006859, - 0.015389, - -0.032159, - -0.027987, - -0.049129, - 0.010405, - 0.049319, - 0.016502, - -0.0013963, - -0.015656, - -0.012509, - -0.010928, - 0.029039, - -0.028991, - 0.0047373, - -0.013286, - 0.026362, - 0.0041064, - -0.020722, - -0.040756, - 0.0053368, - 0.044037, - 0.0092708, - 0.0087615, - 0.043207, - -0.054781, - -0.0032543, - 0.028598, - 0.026921, - 0.020004, - -0.026956, - -0.023083, - -0.0060729, - 0.02348, - -0.037061, - 0.014522, - -0.045328, - 0.0023176, - -0.022277, - -0.026058, - 0.029929, - -0.022366, - -0.022061, - -0.0010757, - 0.061693, - 0.02424, - 0.025377, - 0.0042185, - -0.0043934, - -0.045512, - -0.024517, - -0.03247, - 0.036166, - -0.040446, - -0.048791, - 0.03427, - -0.035543, - 0.02145, - -0.00089646, - -0.025735, - -0.051151, - 0.050277, - 0.067835, - 0.023665, - -0.021139, - -0.018793, - -0.0075522, - 0.00029949, - 0.0036081, - 0.040902, - -0.010721, - -0.013451, - -0.015585, - 0.037563, - -0.018503, - -0.0093295, - -0.010647, - 0.015164, - -0.020021, - -0.023317, - 0.011353, - 0.010519, - -0.014312, - 0.041909, - 0.031575, - 0.025307, - -0.034862, - 0.033762, - 0.051101, - 0.008793, - 0.037994, - 0.0068006, - -0.01766, - 0.033212, - 0.00494, - -0.08458, - 0.074659, - 0.017007, - -0.00025842, - -0.012475, - -0.03424, - 0.0032605, - 0.052435, - 0.03246, - 0.022494, - -0.027753, - 0.018834, - 0.007195, - 0.03936, - 0.017032, - 0.04023, - -0.045186, - 0.0059367, - 0.00041983, - -0.021408, - 0.0024759, - -0.026629, - 0.010568, - -0.057704, - -0.02234, - 0.065943, - 0.0093886, - 0.027625, - -0.028175, - 0.025915, - -0.015678, - 0.0020746, - -0.013056, - 0.0040399, - 0.030479, - -0.0084514, - 0.034842, - -0.046012, - -0.096824, - 0.020863, - 0.037286, - -0.013031, - -0.01871, - 0.019849, - 0.0035884, - -0.0080062, - 0.015846, - 0.0025289, - 0.063711, - 0.00034854, - 0.010545, - -0.024222, - 0.021865, - 0.034156, - -0.012656, - -0.017515, - -0.015643, - -0.0081281, - -0.0087282, - -0.04828, - -0.02512, - 0.042868, - 0.00020215, - -0.0015784, - 0.010208, - 0.045691, - 0.0091137, - -0.038802, - -0.0016976, - -0.0070991, - -0.035996, - -0.0067993, - 0.026544, - 0.021232, - 0.013262, - -0.035252, - -0.027391, - -0.0028767, - -0.0012952, - 0.037362, - 0.072078, - 0.001356, - 0.012607, - -0.04551, - 0.0042776, - -0.045397, - 0.040246, - 0.0018501, - 0.041338, - 0.012183, - -0.059179, - -0.046387, - 0.024779, - -0.010693, - -0.050801, - 0.02749, - 0.051862, - 0.015371, - 0.017732, - -0.013004, - 0.056553, - 0.028595, - 0.0085102, - 0.038776, - 0.0058502, - 0.0099762, - 0.030234, - 0.0073555, - -0.024632, - 0.020624, - -0.059172, - -0.026355, - -0.010616, - -0.010382, - 0.020524, - -0.0046135, - -0.043423, - -0.016726, - 0.05777, - 0.0019466, - -0.008587, - 0.0085024, - -0.0065631, - 0.012907, - 0.0164, - 0.018015, - -0.018805, - -0.00033715, - -0.013746, - -0.0032054, - -0.012322, - 0.0066299, - -0.054501, - 0.016529, - -0.0040146, - 0.0043091, - 0.015628, - -0.019947 - ], - "sustainability": [ - -0.0096777, - -0.064806, - -0.056005, - 0.03582, - -0.039576, - -0.0050998, - -0.0066756, - -0.062143, - 0.041305, - -0.0072771, - 0.026575, - -0.023995, - 0.00058438, - 0.0056647, - 0.038267, - 0.0074838, - 0.064134, - 0.036208, - 0.010582, - -0.0062713, - 0.0012432, - 0.012303, - 0.031301, - 0.043731, - 0.014046, - -0.044017, - -0.012598, - 0.039341, - 0.039876, - 0.017372, - 0.032301, - -0.0029863, - -0.024209, - -0.045171, - -0.0086203, - 0.015955, - 0.025144, - 0.015197, - -0.005668, - -0.016084, - 0.01816, - -0.06747, - -0.017934, - 0.0095393, - 0.013509, - -0.021954, - -0.025632, - -0.035551, - -0.00030166, - -0.0089756, - 0.0053851, - 0.0061385, - 0.0036819, - 0.0086987, - -0.055662, - -0.0031621, - -0.0070378, - 0.012718, - -0.0019044, - 0.025934, - 0.011285, - -0.043832, - -0.010202, - -0.0068095, - 0.093327, - -0.017759, - 0.037293, - -0.022663, - 0.014126, - -0.016341, - 0.044193, - -0.0042304, - -0.0038282, - -0.013102, - 0.051999, - -0.010042, - -0.020753, - -0.0047685, - 0.019634, - 0.007986, - 0.016844, - 0.011144, - -0.0038207, - 0.04165, - 0.026077, - 0.044314, - -0.024317, - -0.020696, - -0.0072257, - -0.026481, - 0.027086, - -0.0033718, - -0.06511, - 0.011441, - -0.0049436, - 0.0095634, - 0.02373, - -0.018311, - -0.040193, - 0.022894, - -0.040809, - -0.034825, - 0.027926, - -0.013725, - -0.04775, - -0.038895, - -0.00022198, - 0.016019, - -0.002809, - -0.02356, - 0.02533, - 0.073118, - 0.033772, - -0.027698, - -0.012247, - -0.000026458, - -0.031416, - 0.027889, - -0.027071, - 0.017592, - -0.030275, - -0.04261, - 0.011522, - -0.0029127, - 0.028647, - 0.026379, - -0.010019, - -0.080534, - 0.043162, - 0.077767, - 0.020141, - -0.053496, - 0.041814, - -0.0077722, - -0.017342, - 0.066021, - 0.038825, - -0.0017971, - -0.0083003, - 0.032509, - -0.014921, - -0.027757, - 0.0426, - 0.0034862, - -0.0070328, - -0.023612, - -0.0034123, - 0.01581, - -0.018505, - -0.019859, - 0.061525, - 0.038832, - -0.0025909, - -0.056359, - 0.018549, - 0.014914, - -0.0051943, - 0.019391, - 0.00099243, - -0.023949, - 0.047483, - 0.012236, - -0.074874, - 0.053163, - -0.012166, - 0.012991, - 0.017201, - -0.0057021, - 0.018898, - 0.079681, - 0.019662, - 0.0065547, - -0.047323, - -0.069872, - -0.021575, - 0.032387, - 0.00085571, - 0.012179, - -0.058908, - 0.025377, - 0.01784, - 0.035535, - 0.041901, - -0.031759, - -0.0029882, - -0.036903, - -0.015234, - 0.062256, - -0.027294, - -0.0034807, - 0.0075364, - 0.024498, - -0.012972, - -0.038869, - 0.043793, - -0.040069, - 0.024392, - -0.026035, - 0.034679, - -0.026941, - -0.11287, - 0.014536, - 0.00092118, - -0.062727, - -0.013255, - 0.022084, - -0.010199, - -0.0020026, - 0.003076, - 0.016275, - 0.038434, - -0.0002569, - 0.0025498, - 0.0033036, - 0.045534, - 0.02326, - 0.034917, - 0.017582, - -0.017622, - -0.019705, - 0.017733, - 0.013049, - -0.0081712, - 0.070054, - 0.021254, - 0.0077455, - -0.020614, - 0.050825, - 0.031948, - -0.052696, - 0.013227, - -0.04759, - -0.062947, - 0.013702, - 0.025037, - 0.030601, - -0.014155, - -0.015026, - -0.0030309, - 0.01607, - 0.015681, - 0.016537, - 0.042386, - -0.0042797, - -0.024922, - 0.052544, - -0.032977, - -0.053857, - 0.024043, - 0.0014466, - 0.030822, - -0.00017494, - -0.017197, - -0.076872, - 0.032683, - -0.023862, - -0.017083, - 0.027466, - 0.015472, - 0.011002, - 0.0062271, - -0.020234, - 0.016256, - -0.011286, - 0.033044, - -0.0031368, - 0.058032, - 0.052625, - 0.0037138, - 0.027008, - -0.014701, - 0.04619, - -0.071557, - -0.03328, - 0.0051694, - -0.0022524, - 0.0075612, - 0.030875, - -0.023339, - 0.01713, - 0.060451, - 0.0043863, - -0.050772, - 0.019671, - 0.01797, - -0.022, - -0.0046215, - 0.049118, - -0.0062845, - 0.017302, - -0.0087819, - -0.0081286, - 0.017016, - -0.019422, - -0.02313, - -0.022574, - -0.02616, - 0.026835, - -0.0423, - -0.012305 - ], - "leisure": [ - 0.032177, - -0.14208, - 0.000020766, - -0.031297, - -0.017352, - 0.072756, - -0.03549, - -0.067313, - 0.082596, - 0.017691, - -0.056564, - -0.042783, - -0.088092, - -0.091008, - 0.034804, - -0.033905, - 0.11264, - 0.025481, - 0.04067, - 0.031299, - -0.02505, - -0.0016218, - -0.046862, - 0.063081, - -0.013862, - 0.039208, - -0.0058569, - 0.050168, - -0.0099612, - -0.0050743, - 0.0026025, - -0.034157, - -0.009718, - -0.076731, - 0.044989, - -0.023831, - 0.05374, - 0.035996, - 0.035587, - 0.053351, - 0.055932, - -0.10076, - -0.0070669, - 0.038718, - -0.01498, - -0.093928, - 0.0013545, - -0.022029, - -0.046132, - 0.040016, - 0.0029416, - -0.044099, - 0.034979, - -0.023626, - -0.054643, - -0.04712, - -0.047738, - -0.0024091, - -0.00037525, - -0.054217, - -0.017113, - 0.0079004, - 0.087513, - 0.071494, - 0.072964, - 0.05162, - -0.069348, - -0.050236, - 0.015555, - -0.029361, - 0.082538, - -0.033695, - 0.050322, - 0.029262, - 0.033271, - -0.065446, - 0.010984, - -0.015116, - -0.076819, - -0.041611, - -0.093966, - 0.0065822, - -0.014202, - 0.006172, - -0.068305, - -0.052525, - -0.014865, - 0.0023083, - -0.037845, - 0.00065727, - 0.033152, - -0.006343, - -0.099232, - 0.00041281, - 0.037063, - 0.052178, - -0.043582, - -0.014232, - 0.042931, - 0.089568, - 0.018739, - 0.074987, - 0.034443, - -0.066484, - 0.055882, - -0.057578, - -0.027936, - 0.036032, - 0.047456, - -0.06458, - -0.050208, - 0.076679, - 0.083482, - 0.060493, - -0.030696, - -0.011703, - -0.018582, - -0.004211, - -0.059372, - 0.0020383, - 0.037444, - 0.087412, - -0.091259, - -0.010303, - 0.079844, - -0.021159, - -0.035077, - -0.13016, - -0.0026924, - 0.044427, - 0.094637, - 0.013198, - 0.12894, - 0.023089, - -0.063198, - -0.027692, - 0.082087, - 0.0067618, - -0.013555, - -0.013335, - 0.062531, - -0.043081, - 0.018492, - 0.027536, - 0.031226, - 0.011771, - 0.039396, - -0.079933, - -0.022773, - 0.031363, - 0.072751, - 0.10203, - -0.035147, - -0.067414, - 0.026713, - 0.023104, - -0.090011, - 0.10689, - 0.049873, - -0.01955, - 0.022839, - -0.033539, - -0.042552, - 0.053743, - -0.021731, - 0.093471, - 0.02155, - -0.10992, - -0.000019816, - -0.02821, - 0.047869, - -0.0060894, - -0.000024038, - -0.026305, - -0.038334, - 0.07895, - -0.052516, - 0.0056876, - -0.10415, - 0.10453, - -0.016387, - -0.045815, - -0.01638, - -0.019659, - -0.055123, - -0.020647, - -0.0026376, - 0.12426, - -0.030171, - 0.038406, - 0.024801, - 0.049959, - 0.063963, - -0.036829, - 0.00092282, - -0.041943, - -0.046313, - 0.0043165, - -0.0014889, - 0.0083602, - -0.10335, - 0.077049, - 0.031567, - -0.089575, - 0.033542, - 0.089099, - -0.024454, - -0.0029252, - 0.026999, - -0.037927, - 0.10297, - -0.027076, - 0.019169, - -0.0064359, - 0.0098681, - 0.096324, - -0.089438, - -0.062467, - -0.023096, - 0.020297, - -0.0021227, - -0.036172, - -0.00103, - 0.10312, - 0.05584, - -0.061724, - -0.012678, - 0.10719, - 0.013707, - -0.044261, - 0.0010192, - -0.08956, - -0.092534, - -0.026132, - 0.020479, - 0.027312, - -0.029848, - 0.012555, - 0.046893, - -0.084451, - 0.074001, - 0.064641, - -0.069962, - -0.05358, - -0.051157, - 0.067802, - -0.028091, - -0.024498, - -0.013744, - 0.0024866, - 0.024835, - -0.029855, - -0.083177, - 0.010613, - -0.0024848, - -0.013695, - -0.073447, - 0.028247, - 0.10469, - 0.018297, - -0.055698, - 0.0018686, - -0.0030197, - 0.0082444, - -0.031973, - 0.011458, - -0.002976, - 0.068329, - 0.052394, - -0.0087124, - 0.045791, - 0.070479, - -0.11196, - -0.034687, - -0.019476, - -0.049509, - 0.11689, - 0.04555, - -0.013586, - -0.027823, - 0.068094, - -0.010061, - 0.0058231, - -0.072265, - -0.021604, - 0.059107, - -0.066062, - 0.0073615, - 0.0030567, - 0.051968, - 0.1188, - 0.026835, - -0.033389, - -0.028354, - 0.0088879, - 0.10045, - -0.012446, - 0.08691, - -0.011081, - -0.003046 - ], - "apprenticeship": [ - -0.043113, - -0.043613, - 0.012433, - -0.032537, - -0.034905, - -0.066134, - -0.019383, - -0.085032, - 0.038628, - 0.002908, - -0.0020169, - -0.0045819, - -0.055632, - 0.025231, - -0.040907, - 0.017411, - 0.077558, - 0.034944, - 0.0348, - 0.031828, - -0.013691, - 0.027435, - -0.038743, - 0.052369, - -0.016427, - -0.021902, - -0.0056944, - -0.021117, - -0.0024021, - -0.020879, - -0.055849, - -0.04493, - -0.010135, - -0.041052, - 0.024523, - 0.025042, - 0.020127, - 0.027681, - -0.028705, - 0.012142, - -0.044709, - -0.076916, - -0.034633, - 0.046883, - -0.0040579, - 0.054608, - -0.010873, - -0.020258, - -0.011238, - -0.0055551, - -0.035133, - 0.031476, - 0.0075109, - -0.0081304, - -0.034168, - -0.03162, - -0.0093378, - -0.0063323, - -0.052263, - -0.048407, - 0.010928, - 0.014275, - 0.090606, - 0.01437, - -0.010922, - -0.042452, - -0.088823, - -0.065914, - 0.019452, - -0.02748, - -0.0029316, - -0.016437, - -0.00070101, - -0.004689, - -0.0012242, - -0.024796, - -0.043624, - -0.027988, - -0.018295, - -0.065032, - 0.012429, - -0.023704, - -0.02149, - 0.074791, - -0.069201, - 0.002582, - 0.014138, - 0.0063628, - -0.040454, - 0.039359, - 0.050236, - 0.067169, - -0.082211, - -0.0043319, - -0.030327, - 0.065956, - 0.028967, - 0.029437, - 0.013305, - -0.0022807, - 0.038053, - -0.056042, - 0.0066236, - 0.0298, - -0.033987, - -0.034591, - 0.057242, - 0.027301, - -0.020993, - 0.0007317, - 0.012563, - 0.049359, - 0.052451, - 0.05137, - -0.036764, - -0.018641, - -0.026708, - -0.0033262, - -0.042743, - 0.011409, - -0.00511, - -0.025991, - -0.063124, - 0.014088, - 0.024871, - 0.015928, - -0.013737, - -0.026873, - 0.029576, - 0.06679, - -0.0073632, - -0.0057954, - -0.056588, - -0.035121, - -0.055395, - 0.021611, - -0.024906, - 0.014389, - 0.040675, - -0.051902, - -0.024678, - 0.0092496, - -0.042324, - -0.0038211, - -0.0021197, - -0.048961, - -0.029011, - -0.022724, - -0.024524, - -0.023963, - 0.024435, - 0.028471, - -0.019693, - -0.023322, - 0.0085377, - 0.033966, - 0.034144, - 0.013201, - 0.0013439, - -0.0095522, - 0.016237, - -0.0073911, - -0.048536, - 0.036532, - 0.0053708, - 0.035946, - 0.019318, - -0.03023, - 0.014755, - -0.0097315, - 0.094375, - 0.046284, - -0.055581, - 0.0074, - 0.018812, - -0.0052042, - 0.015238, - 0.055466, - -0.0023201, - -0.011871, - -0.0078412, - -0.061348, - -0.030999, - 0.025852, - 0.027417, - -0.038025, - 0.016436, - 0.032905, - -0.013785, - 0.034349, - -0.014477, - 0.045177, - -0.0084272, - -0.031292, - 0.046215, - 0.030561, - 0.0042552, - 0.055989, - 0.038227, - 0.0045552, - -0.11062, - 0.066236, - -0.0086776, - -0.0019875, - -0.0081714, - 0.042884, - -0.013336, - 0.015974, - 0.0074074, - -0.030955, - 0.099517, - 0.037251, - 0.013578, - -0.053494, - 0.0075115, - 0.024083, - -0.012969, - -0.026132, - 0.022555, - -0.070095, - 0.0163, - 0.0045365, - 0.023945, - 0.088261, - 0.016738, - -0.043763, - -0.0098567, - 0.060915, - -0.0043487, - -0.035234, - -0.014124, - -0.071281, - -0.033228, - 0.01804, - -0.00093418, - -0.035784, - 0.015556, - 0.0014613, - -0.022307, - 0.030105, - 0.056601, - 0.031267, - 0.0094485, - -0.035207, - -0.0031276, - -0.015029, - -0.047003, - -0.041772, - 0.04566, - 0.048647, - -0.010338, - 0.0374, - -0.0024617, - -0.046977, - 0.0075632, - 0.005678, - 0.021657, - 0.0074278, - 0.0082512, - -0.0145, - 0.010988, - 0.0015991, - 0.063496, - 0.0078077, - 0.00017776, - 0.010683, - 0.018997, - -0.013807, - -0.017836, - -0.048485, - 0.04063, - 0.092474, - -0.060689, - -0.015482, - 0.0099211, - -0.019961, - 0.011688, - -0.0010435, - -0.023566, - 0.020897, - 0.082004, - 0.033134, - 0.021755, - -0.039036, - -0.018212, - 0.047528, - 0.001079, - -0.012431, - 0.0035795, - 0.020919, - 0.029681, - 0.027645, - 0.011786, - -0.044131, - -0.086981, - 0.08557, - -0.029258, - -0.011067, - -0.049886, - -0.041359 - ], - "ethics": [ - -0.040431, - -0.13473, - 0.093665, - 0.012459, - -0.013155, - -0.024778, - -0.046967, - -0.098099, - 0.046235, - 0.012878, - -0.087843, - -0.061163, - -0.10389, - -0.041552, - -0.03985, - 0.018683, - 0.11793, - -0.0053535, - 0.036845, - 0.057286, - 0.019526, - 0.039008, - 0.099226, - 0.077117, - 0.017749, - 0.011388, - -0.033807, - 0.065216, - 0.063101, - 0.03828, - 0.0062167, - 0.012808, - -0.080413, - -0.069581, - 0.013861, - 0.078034, - 0.044345, - -0.013184, - 0.061448, - 0.067345, - -0.055584, - -0.15471, - -0.012017, - 0.040185, - 0.021198, - -0.0043939, - 0.027123, - -0.068219, - 0.02465, - -0.063699, - 0.0256, - -0.057167, - 0.095386, - 0.023389, - -0.061014, - 0.049998, - 0.018021, - 0.034853, - -0.038208, - 0.041833, - -0.016272, - -0.11804, - 0.094622, - 0.047826, - 0.043684, - 0.04738, - 0.013957, - 0.015381, - 0.11762, - 0.019359, - 0.050781, - -0.015783, - -0.034773, - 0.086451, - -0.040718, - -0.0034934, - 0.016857, - -0.047243, - -0.012624, - -0.021749, - -0.029172, - 0.004383, - -0.0056562, - 0.07296, - -0.058902, - -0.027625, - 0.0050435, - -0.02622, - 0.056593, - 0.077823, - 0.030054, - 0.035952, - -0.10398, - 0.022485, - 0.026672, - 0.034883, - 0.11487, - -0.09454, - -0.024667, - 0.0069976, - -0.088471, - 0.03173, - 0.0055906, - -0.040531, - 0.012059, - -0.028198, - 0.12568, - 0.043638, - -0.028494, - -0.015611, - -0.010986, - 0.14645, - 0.071293, - -0.087199, - -0.021576, - 0.062323, - -0.058762, - -0.026255, - -0.067372, - -0.063773, - 0.03271, - -0.031973, - 0.0624, - -0.076722, - 0.096522, - 0.057516, - -0.06176, - -0.064468, - 0.051102, - 0.17866, - 0.030313, - -0.076919, - 0.041723, - 0.040029, - -0.023873, - 0.0086424, - 0.063705, - 0.023702, - -0.044356, - -0.0034499, - -0.016934, - 0.0044311, - -0.028904, - 0.031404, - -0.056266, - -0.076696, - -0.045746, - -0.032221, - 0.015662, - -0.092981, - 0.064283, - 0.088531, - 0.031284, - -0.069227, - -0.019603, - 0.12598, - 0.045942, - 0.0038718, - 0.12752, - -0.0048092, - 0.042484, - 0.077568, - -0.16671, - 0.041492, - -0.016057, - 0.009117, - -0.0093212, - 0.062948, - -0.024773, - -0.015869, - 0.019924, - -0.10784, - 0.029096, - -0.016882, - 0.0082672, - 0.08182, - 0.012551, - 0.10438, - -0.035705, - -0.063512, - -0.0061211, - 0.040908, - -0.0087415, - -0.014528, - -0.0051808, - -0.025096, - 0.11756, - 0.12567, - 0.055033, - -0.052215, - -0.088412, - 0.11146, - -0.035688, - -0.034607, - 0.056224, - -0.021998, - -0.025844, - -0.030762, - 0.022723, - -0.054047, - -0.16781, - -0.0025592, - 0.079217, - -0.049375, - 0.0094193, - -0.052161, - -0.015121, - -0.096829, - 0.069452, - 0.012761, - 0.14702, - 0.040199, - -0.010717, - 0.059432, - 0.034972, - 0.054913, - 0.036311, - -0.0010493, - -0.075643, - -0.059095, - -0.075231, - 0.040692, - -0.12142, - 0.095289, - 0.034211, - -0.034477, - 0.0023819, - 0.072808, - 0.0081144, - -0.068477, - 0.0074597, - -0.027677, - -0.081599, - 0.02317, - -0.0022439, - 0.09637, - -0.012447, - 0.019278, - 0.0094811, - 0.06132, - 0.011521, - 0.03247, - 0.05001, - -0.010836, - -0.0058932, - 0.03925, - 0.00062462, - -0.08503, - -0.082965, - 0.034575, - 0.10515, - 0.039934, - -0.089879, - -0.024603, - 0.043044, - 0.01009, - 0.051578, - 0.039386, - 0.021102, - 0.021322, - -0.015515, - -0.054314, - 0.024532, - 0.0047765, - 0.021132, - 0.049935, - 0.038901, - 0.052533, - -0.052015, - -0.031352, - 0.016415, - 0.093611, - -0.12185, - -0.066296, - -0.01549, - 0.006443, - 0.024872, - 0.054614, - -0.0027888, - -0.067251, - 0.13777, - 0.051095, - -0.1463, - -0.06557, - 0.017405, - -0.024251, - -0.033514, - 0.067895, - -0.0085692, - 0.0080136, - 0.01943, - -0.024757, - 0.03951, - -0.077234, - -0.026209, - 0.0039523, - -0.071465, - 0.072348, - -0.12272, - 0.046928 - ], - "law": [ - 0.0022974, - -0.10508, - 0.11924, - 0.0091814, - -0.0087516, - -0.078655, - 0.086215, - -0.18229, - 0.11021, - 0.012336, - 0.047957, - -0.080166, - 0.020372, - -0.010397, - -0.011077, - 0.048341, - 0.22264, - -0.0040635, - 0.092376, - 0.13101, - 0.057037, - -0.0028952, - 0.093641, - 0.10355, - 0.020274, - -0.016347, - -0.0080809, - 0.0049746, - 0.047189, - -0.020227, - 0.033955, - 0.00014291, - -0.15466, - -0.14075, - 0.062768, - 0.049403, - 0.025282, - -0.052318, - 0.025691, - -0.0029416, - -0.017784, - -0.25823, - 0.031232, - -0.021753, - -0.0072968, - -0.0091144, - -0.021246, - 0.0031212, - -0.026855, - 0.01864, - 0.032292, - -0.036798, - 0.1283, - 0.028827, - -0.11404, - 0.0026543, - 0.040136, - -0.012042, - -0.062409, - -0.05087, - 0.055806, - 0.058817, - 0.1182, - 0.14539, - -0.028793, - 0.018656, - -0.00076749, - -0.0095514, - 0.11408, - 0.044444, - -0.014249, - -0.044679, - -0.084368, - 0.011213, - -0.032719, - -0.087296, - -0.0063444, - -0.041708, - -0.027575, - 0.051585, - -0.019379, - 0.066958, - -0.044193, - 0.087495, - -0.076859, - 0.048416, - 0.10073, - -0.004008, - 0.10958, - 0.13609, - 0.071428, - 0.033855, - -0.18231, - -0.046, - 0.035935, - 0.071824, - -0.023062, - 0.027755, - 0.069176, - -0.04211, - 0.0066009, - -0.082002, - 0.042178, - -0.14214, - -0.06414, - -0.10469, - 0.074597, - 0.086126, - 0.031119, - -0.00092296, - -0.069333, - 0.10336, - 0.070015, - -0.038002, - 0.042639, - 0.10802, - 0.011023, - -0.043146, - -0.080172, - 0.084857, - 0.021276, - 0.028065, - 0.0198, - 0.0066416, - 0.053059, - 0.057437, - -0.06245, - -0.096708, - -0.04259, - 0.32826, - -0.03871, - 0.036795, - 0.012496, - 0.061763, - 0.02002, - -0.0094671, - 0.10119, - 0.0097275, - 0.095051, - -0.095353, - 0.079173, - -0.11809, - -0.080706, - 0.0056044, - -0.020331, - -0.024014, - -0.039423, - -0.031853, - -0.047588, - -0.091508, - 0.078467, - 0.052741, - 0.050146, - -0.067095, - 0.11245, - 0.16428, - -0.038546, - -0.083698, - 0.018412, - -0.053777, - 0.093991, - 0.062357, - -0.14954, - 0.071676, - 0.01578, - -0.02079, - 0.080546, - -0.0067975, - -0.0076195, - -0.024883, - -0.031886, - -0.055338, - 0.081168, - -0.014758, - -0.094867, - 0.082213, - -0.044109, - 0.13037, - -0.081529, - -0.090208, - -0.036777, - -0.059391, - -0.018757, - -0.050069, - -0.029851, - 0.059679, - 0.11265, - 0.19936, - 0.20396, - 0.11115, - -0.10402, - 0.19753, - -0.05927, - -0.02042, - -0.026281, - -0.034262, - 0.1034, - 0.033988, - -0.11115, - -0.029037, - -0.29108, - -0.0020316, - -0.0072693, - -0.057777, - -0.0045355, - 0.025425, - 0.15173, - -0.064057, - 0.037494, - -0.0020835, - 0.20056, - 0.052257, - -0.055685, - 0.033931, - -0.09476, - 0.088854, - 0.086946, - -0.086273, - -0.073444, - -0.12352, - 0.059979, - -0.11039, - -0.053808, - 0.16034, - 0.011014, - -0.026299, - 0.0069323, - 0.08326, - -0.011154, - -0.0089457, - 0.0054457, - -0.13001, - -0.04, - -0.062429, - -0.0075271, - -0.078423, - -0.056505, - -0.033459, - -0.030987, - 0.15034, - 0.085519, - -0.015786, - 0.02863, - -0.015341, - 0.045667, - -0.0016926, - -0.018663, - -0.043089, - -0.035944, - 0.069404, - 0.096218, - -0.082699, - -0.014346, - 0.037339, - 0.10404, - 0.05328, - 0.060027, - 0.11276, - -0.072975, - 0.04779, - -0.059771, - -0.040809, - -0.057765, - -0.016981, - -0.053641, - 0.016074, - 0.14839, - 0.033835, - -0.0031906, - -0.025103, - 0.034397, - 0.10926, - -0.19649, - -0.039781, - 0.019398, - -0.032213, - -0.074389, - 0.0573, - -0.050469, - -0.077164, - 0.16739, - 0.0082483, - -0.097626, - -0.038251, - -0.010375, - 0.071327, - -0.056194, - 0.019956, - 0.052823, - 0.068715, - -0.030354, - -0.030426, - 0.11494, - -0.039817, - -0.096394, - -0.060838, - -0.063925, - -0.055183, - -0.041773, - -0.024843 - ], - "concerns": [ - 0.0057206, - 0.020359, - 0.013244, - -0.018316, - -0.040048, - 0.050912, - -0.037473, - -0.094328, - -0.04371, - 0.0044383, - -0.053737, - -0.025159, - 0.014327, - 0.022824, - 0.0059119, - -0.005137, - 0.031634, - 0.05681, - 0.075118, - 0.044621, - -0.023325, - -0.01758, - 0.14538, - 0.079994, - 0.032441, - 0.026245, - -0.010158, - -0.016132, - 0.10056, - -0.030481, - -0.037205, - -0.017547, - -0.0051769, - -0.046163, - -0.019631, - -0.038673, - -0.031864, - 0.011757, - -0.015677, - -0.050654, - 0.026023, - -0.079928, - 0.0081937, - 0.011973, - 0.017811, - 0.046006, - 0.0045286, - 0.014903, - 0.0028562, - 0.00058429, - 0.048114, - -0.029715, - 0.024779, - 0.031723, - 0.020852, - 0.0022402, - -0.006015, - -0.011836, - -0.019568, - -0.018659, - 0.042854, - 0.022412, - 0.12303, - 0.0037491, - 0.075685, - -0.039207, - -0.0097945, - -0.0056765, - -0.017375, - -0.0040474, - 0.034939, - 0.046753, - 0.049238, - -0.033869, - 0.0093918, - 0.015314, - 0.029962, - -0.032481, - 0.041593, - -0.026801, - -0.0047009, - 0.061, - -0.045905, - 0.058661, - -0.020663, - 0.028162, - -0.023448, - -0.016356, - -0.077583, - -0.018791, - 0.020042, - -0.019598, - -0.083996, - -0.020012, - -0.060832, - -0.024053, - 0.014237, - -0.019786, - -0.06392, - 0.011996, - -0.049297, - -0.010715, - -0.036559, - 0.0029516, - 0.076796, - -0.024647, - 0.0098632, - -0.002992, - -0.015849, - -0.038725, - 0.0010278, - 0.03742, - 0.07111, - -0.0037902, - 0.0055458, - 0.014331, - -0.0099691, - -0.023368, - -0.04227, - -0.002655, - 0.0068159, - 0.013755, - -0.0022206, - -0.039846, - 0.15137, - -0.016189, - 0.062215, - -0.046167, - 0.047111, - 0.13974, - 0.015826, - 0.031561, - 0.042738, - 0.059552, - 0.039843, - 0.0071009, - 0.022529, - 0.13976, - -0.064613, - 0.075516, - 0.063113, - 0.014917, - 0.0050108, - 0.021796, - -0.04039, - -0.059111, - -0.0012446, - -0.039339, - -0.02833, - 0.0059826, - 0.031853, - 0.074527, - 0.022376, - -0.045664, - 0.0096127, - 0.019145, - 0.0089325, - -0.016314, - 0.030615, - -0.022317, - 0.041189, - 0.039764, - -0.037283, - 0.007774, - 0.018017, - 0.0074691, - 0.010929, - -0.014546, - -0.014662, - -0.024856, - -0.012583, - -0.034433, - 0.015299, - -0.0084522, - -0.0061857, - 0.036785, - -0.035269, - 0.016678, - -0.020106, - 0.0032726, - 0.028984, - 0.048576, - 0.036821, - -0.029689, - -0.0021725, - -0.057031, - 0.019971, - 0.090128, - 0.016079, - -0.027298, - -0.0017063, - 0.071919, - -0.11561, - -0.0092669, - 0.029083, - -0.0084449, - 0.033427, - 0.01148, - -0.029804, - -0.012604, - -0.10868, - -0.037701, - 0.04723, - -0.029315, - -0.022259, - -0.03303, - 0.0039437, - -0.024504, - 0.030274, - -0.015948, - 0.031647, - 0.046732, - 0.002035, - 0.0027508, - 0.02355, - 0.034589, - 0.045784, - -0.023661, - -0.085506, - -0.057762, - -0.0071748, - -0.020828, - -0.047286, - 0.11383, - 0.14056, - -0.0018504, - -0.013938, - 0.15756, - 0.034263, - -0.014073, - -0.016191, - -0.081699, - -0.099835, - 0.010419, - 0.096397, - 0.037448, - 0.0041845, - 0.046294, - 0.062991, - -0.021261, - 0.0048483, - 0.036956, - -0.00011045, - 0.017135, - -0.070919, - 0.027656, - -0.035287, - -0.038138, - -0.0025398, - -0.0031484, - 0.050595, - 0.02365, - -0.014543, - 0.019934, - -0.017001, - -0.064019, - -0.059675, - 0.089776, - -0.026935, - -0.0046591, - -0.0078995, - -0.043605, - -0.014842, - -0.042895, - 0.054103, - 0.016382, - -0.044137, - 0.066373, - -0.033383, - -0.042726, - -0.027969, - 0.092279, - -0.12582, - -0.047026, - 0.17261, - -0.050733, - 0.0096346, - 0.02315, - 0.009668, - 0.026825, - 0.021686, - -0.018976, - 0.034665, - -0.0018463, - 0.047745, - -0.014728, - 0.01053, - 0.049791, - 0.01289, - -0.0091969, - -0.012889, - 0.006786, - -0.065994, - -0.010722, - -0.025497, - -0.012202, - -0.034709, - 0.068993, - -0.042889, - -0.0095469 - ], - "carmaker": [ - 0.066731, - -0.038136, - 0.079028, - 0.0052386, - -0.021492, - 0.0073935, - -0.072379, - -0.096469, - 0.088533, - -0.052556, - 0.0075835, - -0.0015096, - 0.026868, - 0.092295, - -0.072191, - 0.095696, - 0.090668, - -0.03245, - 0.097076, - -0.006229, - 0.0135, - 0.024788, - -0.0029331, - 0.094497, - 0.058442, - 0.014976, - 0.066519, - 0.026611, - -0.02164, - -0.00020313, - 0.031277, - 0.0040359, - 0.055009, - 0.057557, - -0.021737, - -0.0077947, - -0.07765, - -0.015134, - 0.030212, - 0.046928, - -0.0041592, - -0.08066, - -0.016343, - 0.021546, - 0.094795, - 0.054228, - -0.065328, - -0.07187, - -0.017939, - -0.024319, - 0.015656, - -0.018913, - -0.077719, - 0.0073381, - 0.011138, - -0.14715, - -0.050507, - -0.016646, - 0.017899, - 0.054288, - 0.0036173, - -0.03116, - 0.079017, - 0.069162, - 0.083782, - -0.053014, - 0.025975, - -0.036132, - 0.049836, - -0.0080715, - 0.0058823, - -0.0095297, - 0.065706, - -0.0020173, - -0.039111, - 0.071343, - -0.033056, - -0.016544, - 0.014434, - -0.08317, - 0.026351, - 0.060581, - -0.074556, - 0.011625, - -0.031784, - -0.030565, - -0.056629, - -0.05826, - 0.082438, - -0.073083, - -0.018348, - -0.0024458, - -0.093637, - -0.074049, - -0.022062, - 0.11624, - 0.047107, - -0.027818, - -0.0026195, - -0.012753, - -0.029059, - -0.072522, - 0.020604, - 0.080482, - -0.028195, - -0.077196, - 0.014875, - -0.039911, - 0.0025155, - -0.056856, - 0.061189, - 0.06272, - 0.026925, - 0.059739, - 0.010043, - -0.10821, - 0.030701, - 0.070192, - -0.02532, - -0.0019333, - -0.031821, - -0.04612, - -0.029691, - 0.031637, - 0.051522, - 0.074573, - 0.0090538, - -0.091375, - 0.096769, - 0.051515, - -0.0038457, - 0.033842, - -0.021652, - -0.044629, - 0.072144, - -0.036997, - 0.064083, - 0.050671, - 0.027636, - -0.0014296, - -0.039852, - -0.0031835, - 0.046894, - 0.068316, - -0.071412, - -0.017713, - 0.046784, - -0.041089, - 0.013217, - -0.043049, - 0.029781, - 0.062163, - 0.034393, - -0.03636, - -0.011188, - -0.012383, - 0.043098, - -0.036123, - 0.058224, - -0.019135, - 0.064982, - -0.026987, - -0.0022498, - 0.037055, - 0.14779, - 0.038913, - 0.023356, - -0.035336, - 0.075975, - 0.0030898, - 0.0032026, - -0.08648, - -0.13213, - 0.089357, - 0.0083635, - 0.037525, - -0.05499, - -0.011959, - -0.083073, - -0.0075358, - -0.013748, - -0.0057649, - -0.041675, - -0.0048449, - 0.074615, - -0.078851, - -0.060248, - 0.10432, - 0.041105, - 0.032082, - -0.094637, - 0.061796, - -0.036043, - -0.048276, - 0.028548, - 0.069729, - -0.062768, - -0.046096, - 0.0012611, - -0.0026053, - -0.098852, - 0.022573, - -0.084339, - -0.068917, - -0.023521, - 0.010441, - -0.017495, - -0.0043476, - -0.041068, - -0.082617, - 0.067407, - 0.0044591, - 0.0035368, - -0.0075805, - -0.06332, - -0.01341, - -0.037077, - -0.053362, - 0.058413, - -0.0031112, - 0.012902, - -0.019651, - 0.071953, - 0.057023, - 0.013393, - -0.0043876, - -0.055686, - 0.02912, - 0.038696, - 0.0026612, - 0.02567, - -0.034817, - -0.032492, - 0.0058324, - 0.016782, - -0.019805, - -0.024107, - -0.04216, - 0.059844, - -0.0058507, - 0.061493, - -0.027776, - -0.074335, - 0.083103, - 0.058293, - -0.084079, - 0.035834, - 0.0038053, - -0.013871, - -0.046182, - -0.039076, - 0.011824, - -0.023546, - -0.017072, - 0.012814, - -0.025547, - -0.035415, - 0.01163, - -0.021725, - -0.0058076, - 0.059137, - 0.051882, - -0.065053, - 0.022741, - 0.011234, - 0.078877, - -0.017203, - 0.050371, - 0.029535, - 0.032032, - -0.011321, - 0.092452, - -0.17402, - 0.036493, - 0.0030732, - -0.00926, - -0.040203, - 0.13863, - -0.095735, - 0.038984, - 0.044323, - -0.0065087, - -0.0055156, - -0.041539, - -0.028744, - -0.01946, - 0.0056527, - -0.080752, - 0.075914, - 0.081605, - -0.012124, - -0.047945, - 0.038803, - -0.021508, - -0.020636, - -0.095037, - 0.035406, - 0.00047798, - 0.027552, - 0.00058223 - ], - "health-related": [ - -0.04092, - -0.01515, - -0.045399, - 0.038172, - 0.012454, - -0.03639, - 0.011458, - -0.053237, - 0.052733, - 0.010253, - -0.043191, - -0.07524, - -0.0049373, - -0.048249, - -0.019979, - 0.03058, - 0.045064, - 0.025735, - 0.0083829, - 0.0018085, - 0.0028011, - -0.00046561, - 0.042908, - 0.064951, - -0.030523, - -0.035244, - -0.047158, - 0.028525, - 0.062155, - -0.018216, - -0.021091, - -0.031191, - 0.02404, - -0.06703, - 0.07469, - 0.018549, - -0.013208, - -0.0025014, - 0.068855, - 0.04047, - 0.0097546, - -0.047432, - 0.010309, - 0.015401, - 0.041731, - -0.02704, - -0.039415, - 0.00057582, - 0.0090824, - 0.0083812, - -0.0086593, - 0.0042169, - 0.027222, - 0.0092687, - 0.00051202, - 0.050573, - -0.041108, - 0.036945, - 0.017976, - -0.017543, - 0.02294, - -0.014343, - 0.12092, - 0.04989, - 0.043905, - -0.021681, - 0.015999, - 0.02316, - -0.0324, - 0.010362, - 0.013053, - 0.034935, - 0.045167, - -0.0043964, - -0.00036467, - -0.0068695, - 0.0035243, - -0.016363, - -0.02236, - -0.0054945, - 0.015336, - 0.0084866, - -0.048303, - 0.029947, - -0.020422, - 0.0075079, - -0.0095868, - 0.014497, - -0.0098991, - 0.012867, - 0.021832, - 0.011951, - -0.056775, - 0.041001, - -0.050181, - -0.015026, - 0.0055496, - 0.047053, - 0.023675, - 0.016476, - -0.038049, - -0.0067494, - -0.022919, - -0.058156, - 0.022669, - -0.049761, - -0.0051998, - 0.01511, - 0.024361, - -0.0099726, - -0.0014571, - 0.041408, - 0.029402, - 0.0095446, - 0.01548, - 0.029843, - 0.0051368, - -0.03892, - -0.032875, - -0.0078693, - -0.022292, - 0.031954, - 0.032241, - -0.017399, - 0.093995, - -0.02829, - -0.042615, - -0.039687, - 0.041796, - 0.037678, - -0.026213, - 0.019396, - -0.025811, - -0.044366, - -0.021915, - 0.043909, - 0.00965, - 0.03698, - 0.0076349, - 0.0057669, - 0.0533, - -0.018454, - -0.031249, - 0.020183, - -0.05117, - -0.0051626, - -0.026798, - -0.016838, - 0.045541, - 0.026624, - 0.028365, - 0.10291, - -0.0020991, - -0.081587, - 0.0058958, - 0.017208, - -0.023027, - -0.012185, - 0.033196, - -0.026923, - 0.027749, - -0.017278, - -0.04084, - 0.020703, - -0.013918, - 0.030916, - -0.029664, - -0.0032339, - -0.037697, - -0.025528, - 0.019581, - -0.029296, - 0.002134, - 0.020746, - -0.0019749, - 0.039109, - -0.014993, - 0.00092129, - -0.038435, - 0.020943, - -0.00076031, - 0.0078739, - 0.0029534, - -0.010217, - 0.0049183, - -0.015528, - -0.0092429, - 0.075971, - -0.012935, - 0.013026, - -0.010184, - -0.0069644, - 0.016524, - -0.0087377, - 0.036319, - -0.014699, - 0.030104, - 0.0069175, - -0.011827, - -0.074441, - -0.090467, - 0.018594, - -0.0032354, - -0.017605, - 0.0093965, - 0.020281, - -0.0013394, - 0.0014949, - -0.023844, - 0.020013, - 0.061994, - 0.0040692, - -0.0038624, - 0.0053467, - 0.024647, - 0.024227, - 0.0042996, - -0.0011455, - -0.029824, - -0.0014468, - -0.032047, - 0.020492, - -0.058439, - 0.05677, - -0.013243, - -0.014562, - 0.013746, - 0.077769, - 0.035422, - -0.020801, - -0.019723, - -0.033742, - -0.051338, - 0.012165, - 0.016755, - 0.065008, - -0.040093, - -0.014176, - 0.0092313, - -0.029083, - -0.010983, - 0.025527, - 0.033019, - -0.014563, - -0.12375, - 0.041102, - 0.024229, - 0.01491, - -0.0073507, - 0.0090197, - 0.022589, - 0.01911, - 0.0076888, - -0.092546, - -0.035216, - -0.0061656, - -0.027126, - 0.0075488, - 0.03148, - -0.025018, - 0.013354, - -0.0088777, - -0.045656, - -0.022163, - 0.015616, - 0.0081055, - 0.024389, - 0.030072, - 0.041029, - 0.010861, - -0.0036011, - 0.031763, - -0.063521, - -0.036797, - 0.028935, - -0.07397, - -0.03306, - -0.010973, - -0.0071515, - -0.0059989, - 0.084623, - -0.0382, - -0.017272, - -0.00028252, - -0.00045065, - 0.029838, - -0.029601, - 0.0111, - 0.0074132, - -0.014966, - 0.044638, - 0.018478, - -0.025007, - 0.036959, - 0.0092984, - 0.026106, - -0.0085276, - 0.011746, - -0.011197, - 0.0073886 - ], - "rental": [ - 0.063437, - -0.016356, - 0.022377, - 0.12618, - 0.0022453, - 0.030997, - 0.033094, - -0.090904, - 0.061003, - -0.012048, - 0.047369, - -0.045277, - 0.042359, - -0.10803, - -0.063165, - -0.009317, - 0.086418, - 0.0044581, - 0.012936, - -0.028611, - 0.027143, - -0.070256, - -0.1179, - 0.059968, - 0.076778, - 0.044382, - -0.033938, - 0.034299, - 0.058429, - 0.057109, - -0.088524, - 0.049075, - -0.037126, - -0.06001, - 0.10284, - 0.081425, - -0.0045182, - 0.041658, - 0.021258, - 0.017886, - -0.0048177, - -0.12688, - -0.0025142, - -0.018161, - 0.039844, - 0.028034, - 0.0014955, - -0.02511, - -0.014964, - 0.020382, - -0.030015, - -0.050118, - -0.022849, - 0.0063554, - -0.06655, - -0.018989, - 0.0078536, - -0.012984, - -0.027304, - -0.053065, - 0.104, - 0.086821, - 0.16558, - 0.061694, - 0.051602, - -0.053116, - 0.024542, - -0.027086, - -0.0031567, - -0.028269, - 0.065654, - 0.0067849, - 0.10276, - 0.0020375, - 0.019733, - -0.07333, - 0.00052999, - -0.040802, - -0.043513, - -0.014443, - -0.021613, - -0.12793, - 0.031148, - 0.049423, - -0.11878, - 0.017173, - 0.075119, - -0.031617, - -0.068655, - 0.030565, - 0.0069466, - 0.035083, - -0.12805, - -0.067577, - -0.036927, - 0.052405, - -0.019987, - -0.019896, - 0.0054086, - -0.074745, - 0.0037478, - 0.072462, - -0.034832, - -0.03748, - 0.096772, - -0.18634, - -0.045, - 0.036016, - 0.023962, - -0.030831, - 0.017827, - 0.070256, - 0.048666, - 0.085687, - 0.079519, - -0.060634, - -0.0080417, - -0.080086, - -0.058115, - 0.050105, - -0.025236, - 0.13615, - 0.019949, - 0.011755, - 0.051963, - -0.039975, - 0.074067, - -0.10569, - 0.040639, - 0.04856, - 0.043039, - -0.084131, - 0.054525, - 0.0019713, - -0.015853, - 0.017136, - -0.052494, - 0.063673, - -0.024752, - -0.040683, - -0.060379, - 0.061853, - 0.069962, - -0.017271, - -0.036741, - -0.021206, - -0.03467, - -0.0033036, - 0.022542, - 0.019319, - 0.0256, - 0.15998, - -0.032797, - -0.088878, - 0.068691, - -0.0093059, - -0.0025984, - -0.00046584, - -0.01496, - 0.062134, - 0.067442, - -0.019794, - -0.075593, - 0.020023, - -0.0091226, - -0.051806, - 0.01879, - -0.044291, - 0.046391, - 0.11742, - 0.058452, - 0.0064371, - 0.068622, - 0.047027, - -0.075397, - 0.089308, - -0.071025, - 0.062664, - -0.022306, - 0.038842, - 0.039204, - -0.04679, - 0.028962, - -0.03214, - -0.048398, - -0.027716, - -0.061066, - 0.15221, - -0.094942, - -0.041312, - -0.014979, - 0.0034749, - 0.15619, - 0.0070594, - 0.0098216, - 0.0053119, - 0.010613, - 0.011604, - 0.023052, - 0.0044807, - -0.20505, - 0.064542, - -0.033876, - -0.055013, - 0.094718, - -0.021913, - -0.089242, - -0.016823, - -0.1045, - 0.02592, - 0.14643, - -0.027738, - -0.084954, - -0.037943, - 0.0087897, - 0.10323, - -0.0025243, - 0.018845, - 0.084849, - -0.034665, - 0.10357, - -0.020817, - 0.10044, - 0.090606, - 0.042133, - -0.056578, - 0.043542, - 0.0042418, - -0.091136, - -0.07896, - 0.049096, - -0.080248, - -0.015601, - 0.04907, - -0.022377, - -0.033726, - -0.00053201, - -0.035291, - -0.0371, - 0.052171, - 0.031138, - -0.058788, - 0.039545, - -0.050781, - -0.23501, - -0.0050741, - -0.032672, - -0.00023649, - -0.014745, - 0.027481, - -0.0092611, - -0.010776, - -0.0074168, - 0.1021, - -0.083348, - -0.067867, - 0.0095361, - -0.031869, - -0.019818, - 0.030329, - 0.051724, - -0.047979, - -0.11469, - 0.0086195, - 0.014574, - 0.076038, - 0.055587, - 0.010454, - -0.022536, - 0.054354, - -0.036668, - 0.093496, - -0.12867, - -0.036048, - -0.027919, - -0.14758, - 0.034902, - 0.071566, - 0.023956, - -0.021247, - 0.085084, - 0.011507, - -0.022837, - 0.0062299, - 0.052078, - 0.059925, - -0.074767, - 0.02299, - -0.055419, - 0.009152, - 0.014129, - -0.049942, - -0.010396, - -0.006063, - -0.070149, - 0.014377, - -0.0063305, - 0.014363, - 0.023328, - -0.051651 - ], - "wiretap": [ - 0.029415, - -0.0033924, - -0.10262, - 0.024735, - 0.011248, - -0.008017, - 0.01243, - -0.089868, - 0.0059597, - 0.011875, - -0.003255, - 0.02061, - -0.049088, - -0.0072372, - -0.040435, - 0.031201, - 0.062288, - -0.088745, - 0.045765, - 0.033337, - 0.047988, - -0.053962, - 0.11881, - 0.02684, - 0.014671, - 0.014601, - 0.050352, - 0.063386, - -0.0819, - -0.022141, - 0.0028488, - -0.087394, - -0.13093, - -0.053692, - 0.047747, - -0.072011, - 0.084178, - 0.1195, - 0.06629, - -0.090531, - -0.087948, - -0.10969, - 0.06199, - 0.025629, - 0.058056, - 0.064996, - 0.015435, - 0.024732, - -0.0085222, - -0.067831, - 0.029734, - 0.019034, - 0.00040869, - 0.051574, - -0.053287, - 0.0017341, - -0.04445, - -0.036317, - 0.013842, - 0.027547, - -0.11783, - -0.065093, - 0.17285, - -0.072439, - -0.10903, - -0.079638, - 0.088462, - 0.0090273, - -0.0089959, - -0.0018036, - 0.043514, - 0.10682, - 0.00874, - -0.062334, - -0.05204, - 0.021024, - 0.05463, - 0.0076081, - -0.032374, - 0.00054637, - 0.013571, - -0.0049706, - 0.027953, - -0.036286, - 0.019094, - -0.05964, - 0.014721, - 0.0034667, - 0.020519, - 0.1212, - 0.015564, - -0.05904, - -0.076902, - -0.0064208, - 0.030639, - 0.041599, - -0.022501, - -0.066133, - -0.048633, - -0.0054482, - 0.07408, - -0.029207, - -0.020003, - -0.042912, - -0.029285, - -0.05169, - 0.11404, - 0.046068, - 0.14466, - -0.022516, - -0.018422, - 0.011566, - 0.056332, - -0.0064854, - -0.033724, - 0.0069156, - -0.028662, - -0.0088498, - -0.068023, - -0.029461, - 0.11985, - 0.07712, - 0.04557, - 0.044141, - 0.045258, - -0.05866, - 0.046815, - -0.0055097, - -0.0398, - 0.099267, - -0.0073397, - -0.0090988, - 0.01183, - 0.015351, - 0.062565, - -0.12842, - 0.012627, - 0.0086182, - -0.048705, - 0.071555, - 0.072876, - 0.082435, - 0.0020325, - -0.01375, - -0.056847, - -0.035061, - -0.098721, - -0.055904, - 0.086915, - -0.060741, - -0.047751, - 0.024042, - 0.11642, - -0.052325, - 0.0289, - 0.0099056, - -0.0076634, - -0.056497, - 0.044275, - 0.013355, - 0.071559, - 0.19941, - -0.066942, - -0.023002, - 0.076961, - -0.045354, - 0.029432, - 0.042056, - 0.079729, - 0.00091825, - 0.037714, - 0.055406, - -0.033093, - 0.15557, - -0.067589, - 0.029517, - -0.028477, - 0.072641, - -0.023467, - -0.083249, - 0.020165, - 0.060626, - 0.072747, - 0.016963, - -0.027969, - -0.053829, - 0.00071977, - 0.12454, - 0.089383, - 0.0059821, - -0.046512, - 0.017355, - -0.026867, - 0.056666, - 0.014574, - 0.0023172, - -0.00040773, - 0.12262, - -0.011771, - 0.064668, - -0.1684, - 0.094512, - -0.10588, - 0.068631, - -0.0064258, - -0.065266, - 0.046349, - 0.012277, - -0.11794, - -0.044032, - 0.12174, - 0.0056807, - 0.014848, - 0.04064, - -0.0064653, - -0.055187, - -0.1034, - 0.0067316, - -0.0037752, - -0.0068795, - 0.0018361, - -0.00046138, - 0.12261, - 0.055608, - 0.074513, - -0.032571, - 0.0313, - 0.020848, - -0.066082, - 0.035655, - -0.042262, - -0.066993, - -0.027608, - -0.019628, - 0.028348, - -0.094979, - -0.023707, - 0.041547, - 0.0006896, - 0.0024014, - 0.10645, - -0.12354, - -0.011216, - -0.034258, - -0.034084, - 0.01124, - 0.0033746, - 0.027264, - -0.079817, - 0.036745, - 0.012396, - -0.093294, - -0.11992, - 0.011582, - 0.028793, - 0.033316, - -0.00010719, - 0.019457, - -0.11417, - 0.1006, - -0.02808, - 0.033961, - 0.010908, - -0.10194, - -0.063752, - -0.027121, - -0.085188, - 0.092486, - 0.012283, - 0.02735, - -0.042638, - 0.068837, - -0.093122, - -0.034742, - -0.10676, - 0.069296, - -0.047645, - 0.039955, - 0.053229, - -0.00073259, - 0.11654, - -0.083334, - -0.071804, - 0.024738, - -0.095992, - 0.0040474, - -0.11295, - 0.060679, - 0.046435, - -0.023064, - -0.0090302, - 0.0018652, - 0.016035, - 0.060311, - -0.039834, - -0.054227, - -0.11152, - -0.093997, - 0.037081, - 0.0031564 - ], - "communities": [ - 0.047944, - -0.047401, - 0.017604, - 0.013867, - -0.065693, - 0.0078885, - -0.012059, - -0.060652, - 0.037093, - 0.017802, - 0.024261, - -0.064448, - -0.037008, - -0.043117, - 0.015423, - 0.0014836, - 0.076328, - 0.027158, - 0.038848, - 0.011964, - -0.037797, - -0.018215, - 0.010923, - 0.07372, - -0.0060123, - -0.035528, - -0.029359, - 0.012924, - 0.024604, - 0.027078, - -0.010224, - -0.02954, - -0.023621, - -0.0080742, - 0.020477, - 0.054619, - 0.027811, - 0.015982, - -0.033405, - -0.035138, - -0.0091999, - -0.063156, - -0.0094663, - -0.0077598, - 0.016172, - -0.050294, - -0.018873, - 0.036109, - -0.021049, - 0.0012649, - -0.021816, - 0.017167, - 0.016567, - -0.006441, - -0.037071, - 0.018021, - 0.016544, - 0.011509, - -0.0075124, - -0.020469, - -0.020295, - -0.011004, - 0.081247, - -0.033056, - 0.084058, - -0.057852, - -0.012269, - -0.0078298, - 0.018863, - -0.052288, - 0.017271, - 0.00061687, - 0.042315, - -0.011682, - 0.028525, - -0.040526, - 0.018654, - -0.017239, - -0.0010332, - -0.0019373, - -0.00090658, - 0.031726, - -0.022717, - 0.065733, - -0.032841, - 0.028742, - -0.026932, - -0.017546, - 0.0058655, - -0.0015873, - -0.01336, - 0.010365, - -0.051857, - 0.030739, - -0.023014, - 0.059318, - 0.031595, - 0.010491, - 0.027548, - -0.016439, - 0.016107, - -0.034484, - -0.0015257, - -0.0030232, - 0.053962, - -0.067289, - 0.00111, - 0.023752, - 0.011434, - -0.02659, - -0.0056819, - 0.073614, - 0.047784, - 0.018144, - -0.011231, - -0.0085447, - -0.0089933, - -0.020855, - -0.025155, - 0.006884, - -0.035178, - -0.036401, - 0.013224, - -0.055069, - 0.057127, - -0.022898, - -0.010529, - -0.053333, - 0.02431, - 0.073874, - 0.037555, - 0.1097, - 0.019854, - 0.022747, - 0.032696, - 0.049907, - -0.0034272, - 0.036642, - -0.028061, - 0.0046643, - -0.0013714, - -0.033559, - 0.02397, - 0.020558, - 0.018355, - 0.013364, - -0.0021362, - 0.0056901, - -0.009837, - -0.020888, - 0.058431, - 0.056392, - 0.021156, - 0.0059311, - 0.050638, - 0.0039904, - 0.016112, - 0.053976, - -0.0090974, - -0.0083097, - 0.013511, - -0.0069995, - 0.045382, - 0.012938, - -0.020009, - 0.063746, - 0.041244, - 0.019209, - -0.0096178, - -0.00010791, - 0.0087, - 0.0081383, - 0.00346, - 0.0096122, - -0.033524, - 0.044866, - 0.013218, - 0.045036, - -0.038739, - -0.039159, - 0.0069896, - 0.028325, - 0.019097, - 0.0092519, - -0.02642, - -0.02513, - -0.011525, - 0.073735, - -0.0086244, - -0.038903, - -0.036625, - 0.056137, - -0.066859, - 0.0031768, - 0.025213, - -0.010568, - -0.010539, - -0.0094717, - -0.0016458, - -0.030721, - -0.13098, - 0.011156, - -0.0098519, - 0.024039, - -0.010617, - 0.011821, - 0.030462, - 0.035539, - -0.0046333, - -0.0056166, - 0.037439, - -0.025414, - 0.041436, - -0.014637, - -0.018153, - -0.0058266, - 0.021713, - -0.0072378, - -0.002571, - 0.0087463, - 0.0077364, - -0.069371, - -0.010618, - 0.070287, - 0.0039683, - -0.014976, - -0.030789, - 0.029689, - -0.018445, - 0.010307, - -0.003896, - 0.0062225, - -0.062386, - 0.025487, - 0.010331, - 0.057506, - 0.0078295, - 0.049009, - -0.029364, - 0.012308, - -0.0064911, - -0.017115, - 0.022827, - 0.02249, - 0.03288, - 0.025105, - -0.019038, - -0.019451, - -0.0029432, - -0.039265, - 0.021015, - -0.0074734, - 0.0058853, - -0.059481, - -0.028923, - 0.035, - -0.01052, - 0.036351, - 0.014351, - -0.020624, - -0.0026327, - 0.0092997, - -0.014672, - -0.047211, - 0.0082342, - -0.012331, - 0.048973, - 0.0061209, - -0.015915, - 0.023279, - -0.022948, - 0.034164, - -0.092038, - -0.039596, - 0.046917, - -0.018632, - -0.0060558, - 0.021131, - -0.034577, - 0.023997, - 0.0052614, - -0.029978, - -0.051273, - 0.00075957, - 0.0020081, - 0.014856, - 0.016663, - -0.068647, - -0.0047081, - -0.013952, - 0.027752, - 0.026453, - -0.055378, - -0.013096, - 0.038416, - 0.028802, - 0.034902, - 0.00019318, - -0.032573, - 0.0065067 - ], - "traveler": [ - -0.097337, - 0.030731, - 0.0028752, - 0.043946, - -0.031109, - -0.030624, - -0.036192, - -0.097238, - 0.026219, - 0.06936, - 0.01869, - -0.0053678, - -0.072003, - -0.072695, - -0.041464, - -0.01869, - 0.02487, - -0.057644, - 0.008171, - 0.039303, - -0.0010888, - -0.017829, - -0.040446, - 0.082008, - 0.0007596, - 0.051732, - -0.022792, - 0.071123, - -0.04989, - -0.021878, - -0.01363, - 0.012448, - 0.032225, - 0.021759, - -0.02459, - -0.00031043, - 0.018415, - 0.1043, - 0.035976, - 0.0077463, - 0.024755, - -0.12118, - -0.038426, - -0.00065605, - -0.026803, - 0.031326, - 0.050375, - 0.0028066, - -0.013535, - 0.038559, - 0.037935, - 0.010786, - -0.062243, - -0.065007, - 0.0065907, - 0.0088019, - -0.0092129, - 0.063167, - -0.023043, - -0.021732, - 0.04084, - -0.026232, - 0.090203, - 0.005624, - 0.0055523, - -0.0018515, - -0.030584, - 0.010851, - -0.025658, - 0.02886, - 0.031325, - -0.036431, - 0.11163, - -0.03107, - 0.049988, - 0.044342, - 0.02922, - -0.027957, - -0.019936, - -0.058276, - -0.016897, - 0.060413, - 0.039086, - 0.040405, - -0.010154, - -0.078649, - 0.040854, - 0.064856, - -0.016729, - -0.03208, - 0.03177, - 0.045745, - -0.08539, - -0.10686, - -0.059226, - 0.089501, - -0.016865, - -0.042843, - -0.012294, - -0.010157, - 0.051239, - 0.094018, - 0.0096202, - -0.034546, - -0.0046304, - -0.11262, - 0.011825, - -0.0087361, - 0.012631, - 0.033976, - 0.015216, - 0.02621, - 0.037676, - 0.015891, - -0.06808, - 0.0044021, - -0.020877, - -0.0057832, - -0.044822, - 0.078797, - 0.061744, - -0.030912, - -0.059863, - 0.048958, - 0.10511, - -0.045216, - 0.019049, - -0.047908, - 0.015056, - 0.071168, - 0.011483, - 0.018718, - -0.058154, - -0.066803, - -0.035808, - 0.0067302, - 0.065277, - 0.10063, - 0.0052823, - -0.023426, - 0.050393, - -0.061938, - -0.024342, - -0.003817, - -0.0011, - 0.027687, - -0.015518, - 0.0145, - -0.0071047, - -0.054403, - 0.06188, - 0.056665, - -0.068667, - -0.097125, - 0.050833, - -0.017646, - -0.064089, - -0.02449, - -0.051085, - -0.093494, - 0.044033, - -0.021379, - -0.040658, - -0.025469, - 0.042144, - -0.0016217, - 0.054954, - -0.15233, - 0.093802, - 0.062272, - -0.061247, - 0.019338, - -0.032297, - -0.010545, - 0.0047366, - 0.055225, - -0.036214, - -0.033711, - -0.037474, - 0.017722, - -0.044377, - 0.050868, - 0.050455, - -0.062991, - -0.067467, - -0.12785, - 0.063443, - 0.05999, - -0.0090628, - -0.065332, - 0.031442, - 0.034545, - -0.025359, - 0.023328, - -0.050339, - 0.013011, - -0.018826, - -0.0017176, - 0.006538, - 0.0010797, - -0.12794, - 0.077119, - 0.044263, - -0.024366, - 0.027137, - 0.0068447, - -0.075189, - 0.045094, - -0.01647, - -0.037907, - 0.060041, - -0.02329, - -0.016515, - -0.041913, - -0.067818, - 0.025273, - 0.032644, - -0.039258, - 0.036775, - 0.044089, - -0.025048, - 0.03159, - 0.002677, - 0.079115, - 0.048701, - 0.015681, - -0.02518, - 0.11154, - -0.04211, - 0.015911, - -0.02554, - -0.013296, - -0.030731, - -0.079625, - -0.0068138, - -0.063033, - 0.024389, - 0.022751, - -0.020716, - -0.041461, - 0.042844, - 0.059873, - 0.049467, - -0.063622, - -0.0050304, - 0.026148, - 0.11087, - -0.028783, - -0.025052, - -0.070844, - 0.078552, - -0.00038494, - -0.014936, - -0.01283, - 0.079553, - 0.0058358, - -0.026425, - 0.089187, - 0.011022, - 0.06295, - -0.021242, - 0.015357, - -0.093031, - 0.011828, - -0.015809, - -0.057485, - 0.075206, - 0.029128, - 0.060296, - 0.012183, - -0.038274, - 0.062515, - -0.10962, - -0.01477, - 0.019614, - -0.0025758, - -0.03852, - -0.065692, - -0.023499, - -0.020416, - 0.027079, - -0.017721, - -0.025363, - -0.045068, - -0.0061975, - 0.010153, - -0.057207, - -0.11297, - -0.025281, - -0.026993, - 0.10847, - -0.0026981, - -0.036682, - 0.0062677, - 0.0029897, - 0.037384, - 0.063367, - 0.078179, - -0.031807, - -0.060973 - ], - "personnel": [ - 0.012045, - -0.055591, - -0.0025848, - -0.0035294, - -0.0012388, - -0.012071, - 0.027719, - -0.060186, - 0.072261, - 0.027582, - -0.045603, - -0.034907, - -0.0037958, - 0.0063259, - -0.021261, - 0.032453, - 0.061558, - 0.036582, - 0.050884, - 0.022506, - -0.0058375, - -0.057181, - -0.0023073, - 0.076733, - -0.028476, - 0.015249, - -0.061348, - 0.016001, - 0.041369, - -0.021535, - 0.011486, - 0.020482, - 0.0069277, - -0.012858, - 0.046318, - 0.072372, - -0.029599, - 0.03587, - 0.083195, - -0.037434, - 0.019804, - -0.085869, - 0.04707, - -0.019308, - 0.022525, - 0.0042737, - 0.052509, - -0.030954, - -0.021391, - -0.027154, - -0.032636, - -0.01219, - 0.046542, - 0.032845, - -0.039165, - 0.084221, - -0.050439, - -0.01125, - -0.028508, - 0.012497, - 0.048865, - -0.0048453, - 0.12824, - -0.013623, - 0.015572, - 0.004409, - -0.018439, - -0.097119, - 0.010872, - 0.018247, - 0.030861, - 0.0025068, - 0.11014, - 0.013538, - 0.031265, - -0.0060335, - 0.054978, - -0.034027, - 0.011883, - -0.027254, - -0.018466, - 0.031793, - 0.000091579, - 0.042705, - -0.030737, - -0.021334, - 0.011178, - -0.052439, - 0.011714, - -0.019988, - -0.0026048, - -0.002797, - -0.067437, - 0.01589, - -0.02066, - 0.066225, - -0.040092, - -0.0093893, - 0.017254, - 0.00012732, - 0.031509, - -0.015623, - 0.025516, - -0.012366, - 0.053687, - -0.060326, - 0.019065, - -0.011031, - -0.05265, - 0.028794, - 0.001498, - 0.10812, - 0.053033, - 0.022128, - 0.019347, - -0.039953, - -0.0029045, - 0.0064408, - -0.034144, - 0.0099649, - -0.01777, - -0.019071, - 0.016173, - -0.013421, - 0.11771, - 0.049683, - -0.025295, - -0.042813, - 0.024935, - 0.084577, - 0.0085942, - 0.070775, - 0.049587, - -0.0067948, - -0.0055244, - -0.042115, - 0.0025706, - 0.028711, - -0.049983, - 0.02924, - -0.07301, - 0.004188, - -0.020268, - 0.018493, - -0.05096, - 0.0046513, - -0.037929, - 0.025154, - 0.010729, - 0.006724, - 0.021387, - 0.075571, - -0.0076631, - -0.09893, - 0.032046, - 0.0085031, - -0.061103, - -0.0037912, - -0.046986, - -0.00041228, - 0.019069, - 0.007557, - 0.008707, - 0.011827, - 0.039422, - 0.033355, - 0.0156, - -0.017068, - -0.022782, - -0.029822, - 0.04487, - 0.023031, - 0.015199, - -0.0029633, - 0.025167, - 0.045493, - -0.033085, - 0.055398, - -0.041805, - 0.038399, - -0.024904, - 0.010728, - -0.014616, - 0.016251, - -0.012026, - -0.067581, - 0.011477, - 0.064953, - 0.033125, - 0.016144, - -0.024421, - 0.055833, - -0.027715, - -0.03461, - 0.0078041, - 0.01693, - -0.03033, - -0.0030079, - 0.0058232, - -0.016068, - -0.12221, - 0.019446, - -0.047948, - 0.098004, - -0.024836, - -0.05716, - -0.042793, - -0.0052389, - 0.014066, - -0.045948, - 0.093248, - -0.0033618, - 0.020117, - 0.078122, - -0.078005, - 0.0011277, - 0.021492, - 0.034767, - -0.0106, - 0.030035, - -0.010043, - -0.0029385, - -0.023432, - 0.086841, - 0.091328, - -0.010377, - 0.0017228, - 0.011561, - -0.0089481, - 0.0079169, - -0.0063046, - 0.0071048, - -0.074718, - -0.031472, - 0.0090756, - -0.023693, - 0.0055288, - 0.039997, - 0.010467, - 0.001392, - 0.00096887, - 0.0015651, - 0.032669, - -0.030586, - 0.038824, - -0.0062751, - -0.024995, - -0.032226, - -0.030398, - 0.018682, - -0.0059207, - 0.076681, - 0.066425, - -0.012954, - -0.012711, - 0.0065884, - 0.072857, - 0.034204, - 0.046093, - -0.01942, - -0.016493, - -0.048504, - -0.014543, - -0.0043747, - 0.0090623, - -0.0069939, - -0.036395, - 0.035605, - -0.074296, - -0.0071332, - -0.015376, - 0.063352, - -0.095411, - -0.045032, - -0.011291, - 0.0021096, - -0.028088, - 0.016492, - -0.0039973, - -0.018123, - 0.014726, - -0.0096232, - 0.031332, - 0.0026065, - 0.010597, - 0.0023983, - -0.01849, - -0.020551, - -0.052611, - -0.008106, - -0.018091, - 0.029529, - -0.026933, - 0.043925, - -0.0093745, - -0.0024959, - -0.012868, - 0.023625, - 0.010283, - -0.021602 - ], - "eats": [ - -0.023842, - 0.01081, - -0.0013811, - -0.089874, - -0.0028151, - -0.059859, - -0.033735, - -0.14391, - 0.015341, - 0.039371, - 0.0076729, - -0.050809, - 0.018164, - -0.045535, - -0.10521, - 0.020458, - 0.13369, - -0.052566, - 0.086961, - -0.018884, - 0.015015, - 0.11387, - -0.086266, - 0.037273, - 0.023242, - 0.031839, - 0.043646, - 0.057607, - 0.16333, - -0.0178, - 0.094232, - -0.1133, - -0.021193, - 0.13695, - 0.020474, - -0.072892, - -0.030498, - 0.048911, - 0.046341, - -0.027762, - -0.020144, - -0.1393, - -0.078093, - -0.014059, - 0.048288, - -0.066385, - 0.033556, - -0.1012, - -0.0097759, - 0.036942, - 0.045094, - 0.1047, - 0.17617, - -0.11922, - -0.076512, - -0.0014575, - -0.029054, - -0.024542, - -0.055751, - -0.091575, - -0.098683, - -0.094539, - 0.24191, - 0.037237, - -0.14701, - 0.056727, - 0.084853, - 0.087157, - -0.010524, - -0.14229, - 0.11229, - 0.016345, - 0.18575, - -0.061055, - -0.19021, - -0.021592, - 0.037512, - -0.012518, - -0.042466, - 0.019582, - -0.041611, - -0.095567, - 0.040735, - 0.072786, - 0.044557, - 0.011764, - -0.049641, - 0.0056599, - 0.14702, - 0.044304, - 0.05623, - -0.035303, - -0.088675, - 0.078593, - 0.012809, - 0.024993, - 0.086278, - -0.0027289, - 0.079889, - -0.043762, - -0.00081589, - 0.087209, - 0.093625, - -0.00243, - 0.1362, - -0.21185, - -0.096848, - 0.066899, - -0.04324, - 0.059297, - -0.090131, - 0.048574, - 0.13832, - 0.086871, - 0.043677, - -0.017721, - -0.099399, - 0.11787, - -0.019092, - 0.099454, - -0.055712, - 0.023445, - -0.052437, - -0.079081, - 0.20471, - -0.071896, - 0.11587, - -0.16101, - 0.023767, - 0.13003, - 0.10208, - -0.017646, - 0.043712, - -0.052022, - 0.041925, - -0.081492, - -0.026778, - 0.11193, - 0.051636, - 0.072224, - 0.084231, - -0.12828, - 0.043345, - 0.035197, - 0.011417, - -0.063824, - 0.1114, - 0.0063027, - -0.049122, - -0.10716, - 0.036287, - 0.0064372, - -0.071252, - -0.071229, - -0.00031834, - -0.041087, - -0.12184, - -0.01023, - -0.0055926, - -0.044675, - 0.063834, - -0.0070743, - -0.072052, - -0.01291, - 0.028903, - 0.040512, - -0.1079, - -0.075985, - 0.016286, - 0.023943, - -0.058821, - -0.04554, - 0.016389, - 0.04845, - -0.039672, - 0.11639, - 0.059981, - -0.083805, - -0.0049292, - -0.11067, - 0.042008, - -0.037732, - 0.023563, - -0.15743, - -0.0089272, - -0.10899, - 0.05972, - 0.23427, - 0.042115, - -0.049732, - 0.056894, - -0.057043, - -0.16703, - -0.020482, - 0.040979, - 0.032004, - -0.070199, - -0.051465, - -0.0028236, - 0.052781, - -0.19771, - 0.022439, - 0.11982, - -0.20656, - -0.051148, - -0.024618, - -0.053839, - 0.052157, - 0.051634, - -0.12896, - 0.095231, - -0.08513, - -0.10233, - -0.054391, - 0.01559, - -0.062213, - 0.091762, - 0.064847, - 0.030213, - 0.069448, - 0.033581, - 0.10933, - -0.075915, - 0.1471, - 0.14735, - -0.015857, - 0.032251, - 0.11691, - -0.11073, - 0.1069, - -0.13487, - -0.042048, - -0.18209, - -0.027171, - -0.031185, - -0.013467, - -0.020515, - -0.012234, - 0.089743, - -0.11523, - 0.0060916, - -0.00077988, - 0.040473, - -0.08822, - 0.0071085, - 0.19619, - 0.035431, - -0.019349, - -0.015717, - -0.091478, - -0.025822, - -0.000055475, - -0.096664, - -0.11792, - 0.062774, - -0.046723, - -0.037978, - -0.079095, - -0.038987, - 0.00050353, - 0.083081, - -0.049368, - 0.048853, - -0.031507, - 0.11743, - 0.06064, - -0.07874, - -0.14835, - 0.047018, - 0.03128, - -0.067755, - 0.13173, - -0.13999, - -0.062039, - -0.061991, - 0.0072508, - -0.011738, - -0.037899, - 0.035603, - 0.016706, - -0.041401, - 0.12424, - 0.08877, - -0.02791, - -0.12158, - 0.10958, - -0.017532, - 0.035164, - 0.096016, - -0.019451, - 0.019909, - 0.042407, - -0.15715, - -0.10332, - 0.034324, - -0.069045, - 0.01076, - 0.013364, - -0.023112, - 0.036236 - ], - "folktale": [ - -0.056057, - -0.017937, - 0.013637, - 0.020325, - -0.046335, - -0.044581, - -0.040499, - -0.081742, - -0.02078, - 0.025454, - 0.095994, - -0.021001, - 0.02762, - -0.018008, - 0.020726, - -0.035662, - 0.095843, - -0.10354, - 0.041496, - 0.081815, - -0.0056401, - -0.00094481, - -0.04251, - 0.040363, - 0.051848, - -0.010296, - -0.057191, - 0.061175, - 0.056376, - -0.018304, - -0.040713, - -0.066299, - 0.017638, - -0.069237, - 0.016622, - -0.011329, - 0.033816, - 0.021576, - 0.029953, - 0.027992, - 0.10943, - -0.1418, - 0.041374, - -0.013836, - 0.055447, - 0.037176, - 0.024786, - -0.0104, - -0.0096658, - -0.051606, - -0.0045869, - 0.090916, - -0.067196, - -0.061365, - 0.018724, - 0.049649, - 0.068462, - -0.055684, - -0.047353, - -0.036672, - -0.075333, - -0.11014, - 0.073019, - 0.031279, - 0.086977, - 0.0098121, - -0.012979, - 0.11679, - 0.0043224, - 0.032056, - -0.022744, - -0.058727, - 0.0044785, - -0.022679, - -0.023643, - 0.052183, - -0.010136, - -0.033755, - 0.041717, - -0.069848, - 0.023441, - 0.061519, - 0.050695, - 0.0036085, - -0.02041, - -0.017875, - -0.003933, - 0.00067166, - -0.018278, - 0.05267, - -0.065047, - 0.068461, - -0.05312, - -0.018557, - 0.00014098, - 0.12144, - 0.050776, - 0.073237, - 0.0046033, - 0.04295, - 0.023742, - -0.057164, - -0.044108, - 0.0022142, - -0.10621, - -0.060877, - -0.01492, - 0.064942, - -0.054957, - 0.040937, - -0.010987, - 0.055211, - 0.017089, - -0.065489, - -0.076351, - 0.041698, - -0.072569, - 0.059026, - -0.039912, - -0.030505, - -0.016285, - -0.001709, - -0.074008, - -0.058483, - 0.092181, - 0.10503, - 0.021189, - 0.027846, - -0.010956, - 0.12414, - -0.040172, - 0.038417, - -0.08593, - 0.0027267, - 0.0106, - -0.013875, - 0.046225, - 0.0555, - 0.051295, - -0.033063, - -0.0029877, - -0.0031881, - 0.056199, - -0.0050792, - -0.038176, - -0.13324, - -0.040666, - 0.048075, - -0.079715, - -0.094789, - 0.04172, - 0.016124, - -0.015639, - -0.00124, - -0.006231, - -0.014108, - -0.044834, - -0.0056204, - 0.00078142, - 0.028646, - 0.028957, - 0.07189, - -0.073859, - -0.0048267, - 0.050762, - -0.017639, - 0.083619, - 0.04187, - 0.020155, - -0.011821, - -0.036242, - -0.053422, - -0.022878, - -0.040291, - -0.037471, - 0.033189, - -0.0087322, - 0.032942, - -0.011757, - -0.0084881, - -0.026564, - 0.061899, - 0.0055278, - -0.026135, - -0.08925, - -0.036389, - -0.028052, - 0.093404, - 0.017007, - -0.00018573, - -0.0049455, - 0.14848, - -0.048871, - -0.063066, - -0.052872, - 0.12817, - 0.0028793, - -0.019901, - 0.035815, - 0.030622, - -0.14105, - 0.0034319, - -0.019428, - -0.078135, - 0.060554, - 0.082967, - -0.036838, - 0.025919, - 0.010132, - -0.026597, - 0.13361, - -0.023093, - -0.025403, - -0.023319, - 0.030558, - -0.016592, - 0.0058003, - -0.016341, - -0.013492, - 0.062009, - 0.059039, - -0.018359, - 0.051493, - 0.090464, - -0.0044108, - -0.026648, - 0.082585, - 0.053173, - -0.037132, - 0.046387, - 0.069308, - -0.054694, - -0.030952, - 0.062109, - -0.023835, - 0.068961, - 0.0063768, - 0.00083993, - 0.11955, - -0.011369, - 0.061236, - 0.042083, - -0.05358, - -0.038662, - 0.0089358, - 0.020726, - -0.023015, - 0.0030201, - -0.027192, - 0.044038, - 0.057699, - -0.041961, - -0.025364, - 0.023992, - -0.021433, - 0.080812, - -0.050672, - 0.054399, - -0.020081, - 0.029782, - 0.039101, - -0.067162, - -0.00076065, - -0.034265, - -0.0063348, - -0.0069967, - -0.0089067, - 0.0223, - 0.027074, - -0.009029, - -0.024695, - 0.066559, - -0.01212, - -0.014656, - 0.033716, - -0.049184, - 0.035666, - -0.083835, - -0.052826, - 0.0015239, - 0.097681, - -0.10296, - 0.044655, - -0.0079215, - -0.049142, - 0.097581, - 0.038968, - -0.023259, - -0.042026, - -0.065794, - 0.018713, - 0.061886, - 0.036361, - -0.057574, - -0.0030654, - 0.020215, - 0.16362, - 0.0085963, - 0.042495, - -0.056922 - ], - "geosciences": [ - 0.00036598, - -0.076816, - -0.002722, - 0.019905, - 0.036654, - 0.020491, - -0.058984, - -0.10399, - 0.043082, - 0.017349, - 0.014455, - -0.029621, - -0.048146, - 0.0647, - 0.029971, - 0.0074962, - 0.078197, - 0.12347, - 0.019274, - -0.019554, - -0.008483, - -0.015397, - 0.043891, - 0.069212, - 0.027193, - -0.015682, - -0.017597, - 0.016068, - 0.056755, - -0.011053, - 0.00014289, - -0.0034675, - 0.024763, - -0.024223, - -0.015024, - 0.045729, - 0.039239, - -0.037655, - -0.027576, - -0.019232, - -0.06614, - -0.081981, - 0.009824, - -0.015853, - -0.0083193, - -0.030741, - -0.043051, - -0.035196, - 0.015795, - 0.026751, - -0.038619, - -0.039658, - 0.031724, - 0.064812, - -0.046742, - 0.057288, - -0.020837, - 0.022202, - 0.026514, - 0.033455, - 0.00030191, - 0.088191, - 0.075034, - 0.00026327, - 0.036062, - 0.023381, - -0.0132, - 0.010593, - 0.078181, - 0.05397, - 0.024498, - -0.0072807, - 0.036356, - -0.032586, - 0.05538, - -0.0055059, - 0.019514, - -0.021424, - 0.075424, - 0.022734, - -0.018942, - 0.050337, - -0.033715, - -0.074847, - -0.054332, - 0.055721, - -0.014306, - 0.0048637, - -0.0018794, - 0.054475, - 0.026471, - 0.0053256, - -0.078013, - 0.038761, - 0.02454, - 0.097436, - -0.0097511, - 0.042197, - -0.0017179, - -0.041244, - 0.01497, - -0.043039, - -0.029455, - -0.053013, - 0.019602, - -0.026537, - 0.01331, - 0.062312, - 0.032639, - -0.072817, - -0.00056687, - 0.066639, - 0.014306, - 0.028155, - 0.03121, - -0.015003, - -0.0033836, - -0.038715, - -0.033887, - 0.030528, - -0.023763, - -0.015855, - -0.062065, - -0.0040477, - 0.054257, - 0.028058, - -0.083, - -0.057399, - -0.042246, - 0.10818, - 0.011573, - 0.048829, - -0.078227, - 0.053863, - 0.019617, - 0.016556, - 0.015224, - 0.0023859, - -0.038899, - 0.025318, - -0.027633, - -0.02704, - 0.0065361, - -0.029674, - -0.010046, - -0.0038298, - -0.034004, - -0.039612, - -0.014351, - -0.032359, - 0.046107, - 0.054109, - 0.018083, - -0.041872, - 0.058256, - 0.03811, - 0.010011, - 0.031806, - -0.02211, - 0.00090881, - 0.0094234, - 0.0032807, - -0.055217, - 0.016891, - -0.024141, - -0.026105, - -0.097268, - 0.035226, - 0.0082597, - 0.0026795, - 0.016425, - -0.059975, - -0.026115, - -0.015457, - 0.0027345, - 0.038688, - 0.017664, - 0.045434, - -0.0049073, - -0.034081, - -0.024647, - 0.032148, - 0.027753, - 0.0022788, - -0.0099737, - -0.037678, - -0.013162, - 0.075252, - -0.017174, - 0.083837, - -0.004119, - 0.11616, - -0.057244, - 0.0094058, - -0.0057161, - -0.0021866, - -0.057607, - -0.073884, - -0.034936, - -0.052019, - -0.11429, - -0.077009, - 0.036543, - 0.014138, - 0.050443, - 0.035984, - -0.045359, - -0.0085899, - -0.04806, - 0.0047375, - 0.097836, - 0.0066014, - -0.013485, - -0.032045, - 0.028279, - 0.034193, - 0.030177, - 0.0079155, - -0.036399, - 0.018223, - -0.053257, - 0.053066, - -0.046246, - 0.07915, - -0.0060873, - 0.065537, - -0.032946, - 0.055885, - -0.013911, - -0.00089939, - 0.06606, - -0.0071206, - -0.049129, - 0.01698, - 0.014944, - 0.022203, - 0.0157, - 0.013683, - -0.050254, - -0.0064958, - -0.016046, - 0.027579, - 0.017421, - 0.015376, - 0.024205, - 0.01624, - -0.046355, - -0.030369, - -0.050968, - 0.019095, - 0.052397, - 0.030463, - 0.011233, - -0.092417, - -0.028898, - -0.022463, - -0.012054, - 0.031854, - 0.047946, - 0.032951, - 0.00040606, - 0.021212, - -0.087804, - -0.0016205, - -0.029779, - -0.036294, - 0.037652, - 0.052589, - 0.073417, - 0.034561, - 0.0063245, - 0.050789, - -0.079759, - -0.021148, - -0.011662, - -0.012614, - -0.027671, - 0.028209, - 0.0015201, - 0.0083535, - 0.033442, - -0.040461, - -0.013592, - -0.0078979, - -0.057596, - -0.035285, - -0.039143, - -0.018826, - -0.038871, - -0.03886, - -0.047554, - 0.085556, - -0.017872, - 0.031839, - -0.00094424, - 0.0049616, - -0.039703, - -0.0068682, - 0.034425, - 0.031177 - ], - "tale": [ - -0.07981, - -0.085388, - 0.080334, - 0.084296, - -0.12978, - -0.051443, - -0.066696, - -0.12076, - -0.068441, - 0.10063, - -0.05255, - -0.014555, - -0.012359, - 0.023615, - -0.011715, - -0.071972, - 0.12744, - -0.11884, - 0.043273, - 0.060456, - 0.010662, - 0.013482, - -0.088721, - 0.052058, - 0.078593, - -0.059239, - 0.042609, - 0.085319, - 0.018361, - -0.03913, - -0.087898, - -0.059505, - -0.023832, - -0.11725, - 0.01209, - -0.045548, - -0.0054597, - 0.044647, - -0.035143, - -0.0023937, - 0.060086, - -0.14331, - 0.064451, - 0.081838, - -0.0049468, - 0.027795, - 0.032643, - -0.033466, - -0.040746, - -0.059147, - 0.085633, - 0.15363, - -0.087137, - -0.086946, - 0.026671, - 0.016928, - 0.054425, - -0.087864, - -0.061483, - -0.10352, - -0.12503, - -0.039143, - 0.15613, - -0.014235, - 0.14135, - 0.037181, - -0.03211, - 0.15126, - -0.0004917, - 0.076979, - -0.046186, - -0.096379, - -0.017843, - 0.016729, - 0.066906, - 0.095175, - -0.016194, - -0.023485, - -0.051075, - -0.13372, - -0.059177, - -0.012223, - 0.053503, - 0.026966, - -0.089233, - -0.0064834, - -0.010578, - 0.014503, - -0.06431, - -0.021621, - 0.003599, - 0.057658, - -0.16184, - -0.0079085, - 0.0010227, - 0.080495, - 0.080947, - -0.032127, - -0.030605, - 0.10678, - -0.063014, - -0.038241, - -0.11099, - -0.023283, - -0.12162, - -0.09738, - 0.010929, - -0.026576, - 0.015619, - 0.093361, - -0.0065592, - -0.019442, - 0.036548, - -0.032971, - -0.077183, - 0.085079, - -0.0080723, - 0.10637, - -0.050837, - 0.0020124, - 0.034661, - -0.081454, - -0.04355, - 0.021069, - 0.11831, - 0.13266, - 0.061785, - -0.065063, - 0.0099111, - 0.12209, - -0.05453, - -0.035288, - -0.051386, - -0.00371, - 0.027207, - -0.061457, - 0.019287, - 0.15359, - 0.036627, - -0.088435, - 0.024384, - 0.021358, - 0.076522, - 0.0062159, - -0.082911, - -0.10939, - -0.018963, - 0.040357, - -0.12087, - -0.086562, - 0.015657, - 0.02965, - 0.050118, - -0.053205, - 0.0038096, - -0.078472, - 0.0010999, - 0.035588, - -0.0075434, - 0.031404, - 0.055366, - 0.098977, - -0.064287, - 0.046028, - -0.015423, - 0.0072095, - 0.047923, - 0.086047, - -0.01892, - -0.019741, - -0.077581, - 0.000099107, - -0.083844, - -0.024074, - 0.031902, - 0.032457, - 0.064224, - -0.025273, - -0.0038597, - 0.034695, - -0.013475, - 0.040257, - -0.014132, - 0.0082311, - -0.099614, - -0.1704, - 0.079573, - 0.15267, - 0.089523, - 0.039265, - 0.014004, - 0.15055, - -0.054694, - -0.10905, - -0.015695, - 0.097013, - -0.0022451, - 0.024616, - -0.0087572, - 0.10087, - -0.18448, - 0.11419, - -0.063682, - -0.10375, - 0.087881, - -0.016851, - -0.010584, - 0.000099032, - 0.083315, - -0.062355, - 0.12065, - -0.029797, - -0.068955, - 0.023166, - 0.097169, - -0.033752, - 0.072871, - -0.018702, - -0.065382, - 0.079197, - 0.065764, - -0.039844, - 0.033533, - 0.14171, - 0.076813, - -0.056546, - 0.11797, - 0.050552, - -0.04481, - -0.043814, - 0.054528, - -0.13291, - -0.050696, - 0.070036, - 0.12766, - 0.032105, - 0.029422, - -0.05174, - 0.1003, - -0.084184, - 0.049969, - 0.040388, - -0.051792, - -0.044382, - -0.039447, - 0.031307, - -0.0583, - -0.022833, - -0.063426, - 0.072054, - 0.10154, - 0.0076388, - -0.015845, - 0.02327, - -0.012586, - 0.091191, - -0.012948, - 0.092367, - 0.034466, - 0.061966, - 0.066588, - -0.077627, - -0.027545, - -0.046869, - -0.034185, - -0.036969, - -0.0021646, - 0.042058, - 0.048399, - -0.0010699, - -0.068327, - 0.10406, - -0.14468, - -0.014055, - 0.18848, - -0.091918, - 0.041113, - -0.056993, - -0.015563, - 0.034265, - 0.091769, - -0.093793, - 0.02689, - -0.068923, - -0.04016, - 0.077427, - 0.10476, - 0.0086662, - -0.04169, - -0.040018, - 0.082984, - 0.068004, - 0.051125, - -0.039929, - -0.024728, - -0.046772, - 0.1474, - 0.032468, - 0.057532, - -0.028107 - ], - "e-commerce": [ - -0.080971, - -0.067345, - -0.036366, - -0.062111, - -0.061821, - -0.0062332, - -0.0031029, - -0.079646, - 0.03479, - 0.074219, - 0.006903, - -0.031231, - -0.080294, - -0.032323, - -0.028912, - 0.091344, - 0.091008, - -0.020472, - 0.044129, - 0.043259, - -0.031212, - 0.0055539, - 0.043794, - 0.057244, - 0.0079717, - -0.0016074, - 0.0096991, - 0.032015, - 0.016689, - -0.028544, - 0.040033, - -0.038661, - -0.02619, - -0.027732, - 0.042087, - 0.049307, - 0.01301, - 0.021069, - -0.023276, - -0.035909, - -0.10192, - -0.076936, - -0.027185, - -0.05026, - -0.044962, - -0.013198, - -0.041853, - 0.047101, - -0.0013073, - 0.008952, - -0.017177, - -0.12722, - 0.0011192, - 0.028126, - -0.030451, - 0.00062255, - -0.012653, - -0.0052783, - 0.001421, - 0.0035916, - -0.019215, - 0.043771, - 0.050792, - 0.066787, - 0.026031, - 0.024189, - 0.033913, - -0.028156, - -0.024625, - -0.010404, - -0.076126, - -0.012942, - -0.0021474, - 0.0057341, - -0.010029, - -0.055054, - 0.01483, - -0.0033395, - 0.0047452, - -0.022493, - 0.0099056, - 0.016137, - -0.10651, - -0.020944, - 0.023287, - -0.024121, - -0.055393, - -0.007327, - 0.029806, - 0.00067509, - 0.036383, - 0.054781, - -0.072453, - 0.01197, - -0.0090263, - 0.045941, - 0.03502, - -0.037951, - -0.036702, - -0.035635, - -0.050609, - 0.011054, - -0.077542, - -0.076568, - -0.012145, - -0.04865, - 0.011986, - 0.036228, - -0.036466, - -0.013825, - -0.011119, - 0.091624, - 0.011852, - -0.016963, - -0.018605, - 0.015547, - -0.056748, - -0.0055644, - -0.027694, - 0.008128, - -0.038215, - 0.031839, - 0.047067, - -0.00019953, - 0.025833, - -0.042232, - -0.03207, - -0.067338, - 0.039245, - 0.076234, - -0.010265, - 0.014878, - -0.033227, - 0.020301, - 0.019712, - -0.0029328, - 0.088829, - -0.00027543, - -0.017357, - 0.0084805, - 0.027264, - -0.030178, - 0.0047407, - 0.0046634, - -0.020263, - 0.049192, - -0.024981, - -0.029053, - -0.0064172, - -0.00864, - 0.051494, - 0.063284, - 0.019859, - -0.049193, - 0.039162, - 0.034779, - -0.044995, - 0.015198, - 0.073991, - -0.010611, - 0.026064, - -0.035989, - -0.077294, - 0.053547, - 0.034761, - -0.021656, - 0.030673, - -0.072114, - -0.029887, - 0.021325, - 0.010099, - 0.0071994, - -0.028463, - 0.01041, - -0.040881, - 0.040337, - -0.05061, - 0.002048, - -0.053666, - 0.0012057, - 0.0048185, - -0.011615, - -0.0090321, - -0.027137, - -0.023878, - -0.02281, - -0.083828, - 0.11192, - -0.065045, - -0.0059529, - -0.054982, - 0.039295, - 0.0048912, - -0.023432, - 0.009866, - -0.01234, - 0.029907, - -0.046807, - 0.020431, - -0.024822, - -0.1129, - 0.032762, - -0.0060381, - 0.013775, - -0.017132, - 0.076536, - 0.0050776, - -0.025142, - 0.035319, - 0.0064957, - 0.099609, - -0.0047346, - -0.0030203, - -0.057431, - 0.040633, - 0.045634, - 0.0095068, - 0.0068296, - -0.0042339, - -0.064023, - 0.036531, - -0.065184, - 0.024791, - 0.053978, - -0.034592, - -0.029886, - 0.033809, - 0.011295, - -0.063162, - -0.034664, - -0.013525, - -0.021313, - -0.037508, - -0.027155, - 0.054626, - -0.030946, - -0.004665, - 0.021523, - 0.027905, - -0.037936, - -0.0041594, - -0.0019343, - 0.060007, - -0.04003, - 0.012019, - -0.01101, - -0.03261, - -0.040714, - -0.0054982, - 0.033185, - 0.014601, - -0.016263, - -0.05611, - 0.035348, - 0.016755, - 0.068611, - -0.075213, - 0.027456, - 0.04417, - 0.036901, - 0.022017, - 0.041466, - 0.0035549, - 0.0047378, - -0.028466, - 0.019433, - 0.092452, - 0.0086413, - 0.026138, - -0.0085485, - -0.015311, - 0.043724, - -0.062558, - -0.023984, - -0.032699, - -0.020212, - 0.065717, - 0.033379, - -0.04835, - -0.051282, - 0.099043, - 0.013423, - -0.010645, - -0.0044624, - -0.019919, - -0.066255, - -0.02046, - -0.0075406, - -0.090948, - -0.020353, - -0.040974, - -0.0011586, - -0.023162, - -0.005685, - -0.038899, - -0.043909, - 0.013439, - 0.0073834, - 0.011773, - 0.009501 - ], - "Weather": [ - 0.033412, - 0.046791, - -0.0019697, - -0.014125, - -0.0039041, - -0.080174, - 0.040959, - -0.025552, - 0.059531, - 0.063373, - -0.031908, - -0.030753, - -0.088429, - -0.017597, - -0.0079666, - -0.041987, - 0.08203, - -0.0094394, - 0.050075, - 0.043537, - 0.031175, - 0.04233, - 0.020488, - 0.001125, - 0.058205, - 0.014777, - 0.021267, - 0.0010636, - 0.062265, - 0.027272, - -0.0088391, - 0.034299, - 0.042387, - 0.069128, - 0.13716, - -0.00023058, - -0.03344, - 0.0301, - 0.0011825, - -0.01225, - -0.034126, - 0.10414, - 0.029456, - -0.013939, - -0.039274, - -0.0083487, - 0.05594, - -0.044255, - -0.048753, - -0.0556, - -0.065045, - 0.043442, - 0.0079143, - 0.034183, - -0.001068, - 0.11243, - 0.069021, - -0.0068197, - -0.11984, - -0.00042406, - -0.070802, - 0.036557, - -0.07855, - -0.038464, - -0.030754, - -0.029789, - 0.052289, - 0.042113, - 0.028917, - 0.11726, - 0.11456, - 0.10136, - -0.026441, - -0.016895, - -0.0064237, - -0.082295, - 0.01599, - -0.072758, - -0.08483, - -0.015702, - 0.0017938, - 0.00017133, - -0.029514, - -0.022341, - 0.10744, - -0.0080769, - 0.088481, - -0.12257, - -0.043865, - -0.062553, - 0.069597, - 0.027258, - -0.071556, - -0.07557, - -0.048567, - 0.12148, - 0.029004, - 0.10156, - -0.036894, - -0.030134, - 0.019898, - -0.041986, - 0.049027, - 0.0018935, - -0.077111, - -0.21667, - -0.016748, - 0.026858, - 0.060056, - 0.03178, - -0.049177, - 0.020201, - 0.05806, - 0.062538, - -0.051318, - -0.083401, - -0.025252, - 0.023086, - 0.089299, - 0.052046, - -0.0024795, - 0.024816, - 0.019879, - -0.0026283, - 0.066193, - 0.060102, - 0.0052486, - -0.063982, - -0.073234, - 0.25531, - -0.026407, - 0.072963, - 0.03834, - 0.037893, - 0.018908, - 0.059422, - 0.072224, - 0.025236, - -0.034223, - 0.022763, - 0.044874, - -0.029427, - -0.041482, - -0.095798, - -0.023382, - 0.033143, - 0.0033387, - -0.037733, - 0.021368, - -0.0088148, - 0.051557, - 0.063814, - -0.026807, - -0.037787, - 0.0072427, - 0.088438, - 0.089442, - 0.030732, - -0.073158, - 0.070992, - 0.039143, - -0.066089, - -0.048524, - 0.085846, - -0.036956, - -0.018945, - -0.040318, - -0.021975, - 0.03945, - 0.1049, - -0.061715, - -0.014296, - 0.059967, - -0.038899, - 0.021803, - 0.019544, - 0.039464, - 0.042461, - -0.014632, - -0.00075314, - -0.095053, - -0.0024421, - -0.0058931, - -0.022954, - -0.016196, - 0.16238, - -0.07069, - 0.17662, - 0.00052839, - -0.053652, - 0.050443, - 0.087436, - -0.035151, - -0.010171, - -0.059069, - -0.056515, - 0.0019888, - 0.075916, - 0.027858, - -0.036993, - -0.00075179, - 0.15276, - -0.074205, - -0.0056949, - 0.017082, - 0.071767, - -0.025761, - 0.026305, - -0.051595, - 0.044403, - 0.14659, - 0.018414, - -0.0394, - 0.020721, - 0.046528, - 0.00065307, - 0.011444, - -0.018115, - -0.087073, - -0.018586, - -0.033643, - 0.001761, - 0.005275, - 0.079152, - 0.0054241, - 0.020698, - -0.0036088, - 0.027511, - -0.023138, - -0.027132, - 0.068739, - -0.049743, - 0.012317, - 0.053209, - -0.010617, - 0.10062, - 0.070218, - 0.021571, - 0.071995, - -0.038689, - 0.01619, - 0.018489, - 0.018361, - -0.048129, - 0.10653, - 0.051086, - -0.013972, - -0.023575, - 0.027539, - -0.077014, - 0.058111, - 0.0049854, - 0.1001, - 0.12187, - -0.030929, - 0.017316, - 0.10227, - -0.01577, - 0.028007, - 0.01122, - 0.071497, - 0.019785, - -0.024961, - -0.020363, - -0.074607, - -0.088997, - 0.0024658, - 0.013498, - 0.045714, - -0.01227, - -0.027006, - 0.095328, - -0.08318, - 0.023591, - 0.042847, - -0.11303, - -0.051842, - -0.04285, - -0.054465, - -0.086699, - 0.016772, - -0.023478, - 0.089182, - 0.0057243, - 0.10585, - -0.039951, - 0.035419, - -0.0089915, - -0.067465, - 0.028651, - -0.014916, - 0.0006862, - -0.06506, - 0.047649, - -0.0058692, - -0.016065, - -0.054243, - 0.047676, - 0.10132, - -0.074867 - ], - "telephones": [ - 0.034545, - 0.022873, - 0.012189, - -0.019443, - 0.037134, - 0.011446, - 0.067594, - -0.050819, - 0.080862, - -0.0010084, - 0.017281, - -0.028856, - -0.056507, - -0.0051574, - -0.036056, - -0.0013516, - -0.0019455, - -0.029742, - 0.032598, - -0.0081107, - -0.017845, - -0.051926, - 0.085293, - 0.037244, - 0.022349, - -0.037204, - -0.037451, - 0.021501, - 0.048204, - 0.0054152, - -0.061113, - 0.026539, - -0.017535, - 0.012465, - 0.043799, - 0.0036457, - 0.027614, - 0.01606, - 0.022486, - -0.047363, - -0.041855, - -0.065848, - 0.01288, - 0.038347, - 0.048976, - 0.0035236, - 0.0070525, - -0.079623, - -0.033188, - -0.00041723, - -0.023639, - 0.023898, - 0.020089, - 0.027595, - -0.066169, - 0.071151, - 0.0050467, - -0.022247, - -0.0071581, - -0.020747, - -0.057343, - 0.0046137, - 0.086076, - 0.020798, - 0.0058565, - 0.014091, - -0.021593, - -0.055967, - -0.051515, - 0.052251, - 0.013371, - -0.021084, - 0.063069, - -0.041263, - -0.093527, - 0.038325, - 0.033215, - -0.061615, - -0.031017, - 0.05642, - -0.023884, - -0.06591, - -0.059204, - 0.014313, - 0.0091525, - -0.057858, - -0.00051578, - -0.0039934, - -0.053035, - -0.008763, - -0.045067, - -0.041829, - -0.047161, - 0.020088, - 0.024434, - 0.075977, - -0.024024, - -0.009191, - -0.017621, - -0.034861, - 0.048241, - 0.028854, - -0.075457, - -0.03927, - 0.033545, - -0.077794, - 0.036979, - 0.0043495, - 0.030228, - -0.042804, - 0.049885, - 0.052316, - 0.068967, - 0.047482, - -0.087429, - -0.014873, - -0.067002, - -0.0040353, - -0.024318, - -0.058032, - 0.018778, - 0.041597, - 0.016225, - -0.020251, - 0.076128, - -0.013268, - 0.012498, - 0.0054016, - -0.00050015, - 0.064789, - 0.0078146, - 0.046781, - -0.040112, - -0.011653, - 0.058033, - -0.040467, - 0.041729, - -0.031476, - -0.049732, - 0.042666, - 0.10085, - 0.016726, - 0.040007, - 0.031658, - 0.016619, - -0.0048163, - -0.0092076, - 0.061416, - 0.01087, - -0.028652, - -0.025576, - 0.056812, - 0.0034198, - -0.010101, - -0.012237, - 0.018826, - -0.013863, - -0.013339, - 0.0040299, - 0.0040685, - 0.05095, - 0.0094527, - -0.0066475, - 0.03675, - 0.037863, - -0.052319, - 0.0081626, - -0.022951, - 0.083692, - 0.0056254, - 0.014097, - 0.052929, - 0.04038, - 0.10512, - -0.015785, - 0.031591, - -0.016862, - 0.10026, - -0.011892, - 0.011471, - 0.076506, - 0.029166, - 0.011336, - -0.046134, - -0.022929, - -0.03583, - -0.065785, - 0.10238, - 0.040978, - -0.025604, - -0.032289, - 0.045197, - -0.050258, - 0.027128, - 0.047252, - 0.0044242, - -0.05455, - 0.0055552, - -0.0048402, - 0.055107, - -0.093602, - 0.026075, - -0.047096, - 0.034292, - 0.0090634, - 0.017305, - 0.018975, - -0.027091, - -0.13064, - -0.062043, - 0.071539, - 0.011779, - 0.056274, - 0.096789, - -0.021766, - -0.031931, - -0.039874, - -0.034229, - -0.026114, - 0.0020303, - -0.00068088, - -0.050448, - 0.021234, - 0.056024, - 0.052762, - -0.0056707, - 0.035789, - 0.0281, - -0.0039238, - 0.0037706, - -0.001812, - -0.02746, - -0.059225, - -0.032107, - 0.027889, - 0.034056, - 0.022069, - 0.036147, - 0.010878, - -0.048253, - 0.0049649, - -0.015836, - 0.049825, - 0.026155, - 0.039779, - -0.025582, - 0.0049677, - 0.0092616, - -0.0095106, - -0.00099788, - -0.027849, - 0.042962, - -0.00096482, - 0.040886, - -0.013602, - 0.028026, - -0.044314, - -0.045275, - -0.039643, - -0.017169, - -0.00094805, - -0.056425, - 0.03484, - -0.021379, - 0.025236, - -0.0045842, - -0.011688, - 0.013947, - 0.018451, - 0.027073, - -0.08254, - 0.062296, - -0.069847, - 0.0042727, - -0.031517, - -0.0008502, - 0.036048, - 0.059653, - 0.0046923, - -0.024864, - 0.022815, - -0.040992, - -0.062085, - -0.019298, - -0.060936, - 0.0093326, - -0.085467, - 0.040004, - -0.010069, - 0.014685, - 0.032552, - 0.060631, - -0.099098, - 0.011088, - -0.0027539, - 0.048698, - -0.049876, - 0.0074453, - 0.055232, - 0.00012112 - ], - "methadone": [ - 0.064433, - -0.0089151, - 0.0064422, - 0.034994, - 0.014501, - 0.015931, - -0.0061176, - -0.093539, - -0.019242, - 0.01581, - -0.0438, - -0.025645, - 0.085058, - 0.017327, - 0.089717, - -0.032695, - 0.099031, - 0.00041123, - 0.031208, - 0.0029792, - -0.05161, - 0.065753, - 0.015638, - -0.0097362, - -0.018465, - -0.023903, - 0.037925, - 0.053286, - 0.1126, - 0.096482, - -0.068327, - 0.032723, - -0.071973, - 0.02148, - 0.041247, - 0.050938, - -0.0036744, - -0.058591, - -0.041121, - -0.0087688, - -0.020655, - -0.10893, - -0.010554, - 0.056092, - 0.024118, - -0.023397, - 0.0474, - 0.069538, - 0.025947, - 0.07984, - -0.079403, - 0.0023936, - 0.039009, - -0.062246, - -0.078861, - -0.055833, - 0.011178, - 0.076778, - -0.093332, - 0.013616, - 0.075781, - -0.0024705, - 0.11024, - -0.021822, - -0.070281, - 0.0034534, - 0.024526, - -0.072693, - -0.024363, - -0.029105, - 0.0014834, - 0.086965, - 0.015393, - -0.10647, - 0.050662, - -0.043803, - 0.0082449, - -0.04136, - 0.020815, - -0.032159, - -0.01137, - -0.065073, - 0.0012367, - 0.031258, - -0.032249, - 0.042162, - 0.047015, - -0.044418, - 0.0060519, - 0.023781, - 0.055832, - 0.035366, - -0.11607, - -0.00063002, - -0.018505, - 0.059274, - 0.027027, - 0.0033761, - 0.042464, - 0.040563, - 0.042638, - -0.034836, - -0.071527, - 0.059753, - 0.048115, - -0.10728, - -0.017152, - -0.099234, - -0.0022605, - 0.023721, - 0.032592, - 0.087066, - 0.019136, - -0.021923, - -0.000028647, - -0.013448, - 0.05194, - -0.021125, - -0.0087605, - 0.019309, - -0.035905, - 0.098743, - -0.023912, - -0.065347, - 0.003511, - 0.071891, - 0.0027403, - -0.048932, - 0.087588, - 0.036297, - 0.00083533, - -0.048755, - 0.0010908, - -0.043261, - -0.043956, - -0.037845, - -0.082507, - 0.026237, - 0.025838, - -0.070526, - 0.01737, - 0.01269, - -0.01472, - -0.01527, - -0.0060925, - -0.038627, - 0.059738, - 0.054848, - 0.05542, - 0.026559, - 0.013845, - -0.0041537, - -0.035613, - -0.019321, - -0.065971, - -0.017221, - -0.059289, - 0.0075665, - 0.055377, - 0.024991, - 0.040806, - 0.11612, - -0.05298, - 0.061674, - -0.022721, - -0.037681, - 0.024118, - 0.03072, - -0.022374, - -0.030713, - 0.010395, - 0.018041, - 0.027305, - 0.01151, - 0.02983, - 0.038633, - -0.017185, - -0.028955, - -0.0088793, - 0.033179, - 0.024427, - -0.035198, - -0.097149, - -0.045354, - 0.041682, - -0.000033308, - 0.05093, - 0.15314, - 0.036198, - -0.073155, - 0.085318, - 0.008894, - 0.010454, - 0.054516, - 0.062799, - -0.053455, - -0.072135, - -0.0067462, - -0.0026546, - -0.033863, - -0.12296, - 0.060504, - -0.032741, - 0.0073255, - -0.0054685, - 0.050295, - 0.042888, - 0.024811, - -0.01321, - -0.024015, - 0.11284, - 0.0074156, - 0.035113, - 0.05758, - 0.035875, - -0.082374, - 0.017199, - 0.0088558, - 0.0093272, - -0.0091448, - 0.049552, - -0.072545, - 0.010489, - 0.10097, - -0.0081188, - 0.069837, - -0.04563, - 0.014764, - 0.093108, - -0.015143, - -0.047806, - -0.02819, - -0.017348, - -0.056385, - 0.079094, - 0.028161, - 0.0081539, - -0.033992, - 0.0028473, - 0.026146, - 0.048364, - 0.018886, - 0.03731, - -0.058817, - -0.0087378, - -0.060439, - -0.068826, - -0.01207, - 0.025378, - 0.024267, - -0.0109, - 0.072408, - 0.044813, - 0.015151, - 0.014383, - -0.0044416, - 0.0083892, - 0.036251, - -0.010394, - -0.051206, - -0.028623, - -0.0027339, - -0.028363, - -0.0081218, - 0.023134, - -0.037813, - -0.022388, - -0.10241, - 0.051361, - 0.085861, - -0.05036, - 0.068975, - -0.073875, - -0.00067156, - -0.085887, - -0.0012385, - -0.018378, - 0.022033, - -0.028055, - 0.0031874, - 0.066432, - -0.0083699, - -0.038103, - -0.03525, - -0.019936, - 0.085569, - 0.0099458, - 0.024826, - 0.047751, - -0.042038, - 0.0025955, - -0.081554, - -0.026399, - 0.0040681, - -0.098551, - 0.090701, - 0.027356, - -0.0054025, - -0.033339, - 0.0064104 - ], - "healthcare": [ - -0.0092295, - -0.04214, - -0.031493, - -0.0061902, - -0.0023955, - 0.00081049, - 0.041801, - -0.060917, - 0.072772, - -0.026628, - 0.001152, - -0.025776, - 0.014165, - -0.03842, - -0.065399, - 0.023509, - 0.079376, - 0.031093, - 0.049205, - 0.0049578, - -0.01362, - 0.044491, - 0.06302, - 0.051982, - -0.045141, - -0.00018569, - 0.018873, - 0.0059999, - 0.0012517, - 0.022546, - -0.0051679, - -0.036456, - -0.0056006, - -0.034554, - 0.071692, - 0.055428, - 0.0036636, - 0.0071242, - 0.083725, - 0.063512, - -0.053306, - -0.11734, - 0.028061, - -0.0013883, - 0.029903, - -0.026831, - -0.065795, - -0.0019403, - -0.010421, - 0.037585, - -0.044542, - -0.023548, - 0.005172, - -0.02304, - -0.057259, - 0.040791, - -0.047928, - 0.018584, - -0.017729, - -0.024206, - -0.032143, - -0.075517, - 0.071535, - 0.019558, - 0.053423, - 0.065096, - -0.028705, - -0.065826, - 0.014908, - 0.0074343, - -0.055371, - 0.0065805, - 0.044831, - -0.024207, - -0.031052, - -0.018853, - -0.0048882, - -0.0022213, - -0.030399, - 0.0069656, - -0.0046518, - 0.024242, - -0.068897, - 0.06932, - -0.052001, - 0.043938, - -0.030644, - -0.039049, - -0.042425, - -0.044549, - 0.059506, - 0.044088, - -0.086206, - 0.022505, - -0.063075, - 0.069682, - 0.03877, - -0.036961, - -0.016778, - 0.031892, - 0.014388, - -0.022017, - 0.015919, - -0.034435, - 0.023033, - -0.069004, - 0.037668, - 0.00074803, - 0.030508, - -0.0097528, - -0.0059915, - 0.084919, - 0.07648, - 0.050597, - 0.012545, - 0.042443, - -0.036882, - -0.015709, - -0.048766, - 0.0099787, - -0.033079, - -0.0094567, - 0.04878, - -0.017267, - 0.045278, - 0.0074454, - -0.061757, - -0.059347, - 0.044024, - 0.073454, - 0.022884, - 0.00054533, - -0.0031948, - -0.078652, - 0.009955, - 0.0088463, - 0.032716, - 0.00041051, - -0.022128, - -0.0057346, - 0.018607, - -0.072907, - -0.014899, - 0.066016, - -0.059836, - -0.019386, - -0.00044807, - 0.0044044, - 0.039553, - -0.0049681, - 0.059236, - 0.067814, - 0.033393, - -0.075093, - 0.015688, - 0.0093651, - -0.022644, - -0.015838, - 0.039589, - -0.035846, - 0.062565, - 0.022477, - -0.080403, - 0.029685, - -0.050579, - -0.0099341, - -0.037116, - -0.024171, - -0.003025, - -0.07685, - -0.0059437, - 0.013071, - -0.016234, - -0.013131, - -0.022907, - 0.055976, - -0.05039, - 0.048748, - -0.057807, - -0.024726, - -0.009071, - -0.00653, - -0.029374, - 0.00079605, - -0.0098678, - -0.041517, - 0.026479, - 0.070967, - -0.028393, - 0.0035999, - -0.014833, - 0.07794, - 0.010712, - -0.019257, - -0.0038877, - -0.05434, - -0.033354, - -0.025227, - 0.0064435, - -0.10698, - -0.12051, - 0.02535, - 0.025521, - 0.020737, - -0.017883, - -0.016644, - -0.021772, - -0.043486, - -0.031273, - -0.001618, - 0.093814, - -0.011808, - -0.0087035, - 0.066926, - -0.031666, - 0.025308, - 0.024554, - -0.021912, - -0.0086393, - -0.037677, - 0.014835, - -0.010241, - -0.035579, - 0.076184, - -0.0040116, - 0.032114, - -0.033864, - 0.051421, - 0.013742, - -0.021879, - 0.014573, - -0.0020339, - -0.045476, - -0.037137, - 0.036092, - 0.018137, - -0.027649, - 0.04646, - -0.0056256, - -0.058554, - 0.008892, - 0.031553, - 0.020132, - -0.025545, - -0.028092, - -0.023079, - 0.044036, - -0.018537, - 0.010741, - 0.011488, - 0.027596, - -0.0012468, - -0.051707, - -0.035622, - -0.017588, - 0.0012319, - -0.062825, - 0.021029, - 0.036711, - 0.042107, - -0.027777, - -0.00076701, - -0.049955, - 0.0090548, - 0.026762, - -0.0062233, - 0.030834, - 0.035155, - 0.0074957, - 0.026155, - -0.058859, - 0.055711, - -0.099435, - -0.0083327, - -0.029318, - -0.029072, - 0.009537, - -0.017545, - -0.024314, - 0.0423, - 0.08032, - 0.014322, - -0.050579, - 0.024736, - 0.006872, - 0.051377, - -0.0074404, - -0.013732, - -0.0058571, - -0.0024549, - 0.055162, - 0.018387, - -0.018557, - 0.012677, - -0.020978, - -0.023193, - -0.011815, - 0.069323, - 0.021826, - 0.000983 - ], - "militarist": [ - 0.03246, - -0.013234, - 0.027375, - -0.020513, - -0.061451, - -0.029371, - -0.014127, - -0.088111, - 0.056861, - 0.06317, - 0.014929, - -0.014222, - 0.022059, - 0.068802, - 0.0034804, - 0.025958, - 0.094127, - -0.036712, - 0.042323, - -0.00011642, - 0.021107, - -0.0032413, - -0.061546, - 0.081281, - -0.02312, - 0.084294, - 0.039328, - -0.012668, - -0.0093386, - -0.010145, - 0.0035035, - -0.046309, - -0.022212, - -0.022088, - 0.00073579, - 0.043648, - -0.0090795, - 0.011583, - 0.11222, - 0.026957, - -0.014265, - -0.11446, - 0.023917, - 0.013645, - 0.016225, - 0.021927, - -0.0022931, - -0.017278, - -0.036797, - -0.075071, - -0.0013765, - 0.0284, - -0.034692, - -0.01467, - 0.036738, - 0.013646, - 0.0098337, - 0.0053307, - -0.019115, - 0.045915, - -0.015494, - -0.015283, - 0.047614, - -0.030422, - 0.0092216, - -0.01249, - 0.022835, - 0.0059812, - 0.058751, - -0.011253, - 0.034214, - -0.062431, - 0.030118, - 0.038948, - 0.012613, - -0.033813, - 0.037562, - 0.015957, - -0.020248, - 0.071281, - 0.0047992, - 0.016186, - -0.05053, - 0.055484, - 0.013087, - -0.018852, - -0.0055159, - 0.09144, - -0.039233, - 0.025186, - 0.022004, - 0.03012, - -0.10707, - 0.011419, - 0.049044, - 0.085019, - -0.056261, - -0.086438, - 0.0039461, - 0.00028523, - 0.054209, - 0.012612, - 0.046326, - -0.055785, - -0.053292, - -0.045134, - 0.083404, - -0.0010179, - -0.044235, - 0.03936, - -0.065117, - 0.077321, - 0.0073294, - -0.029599, - -0.020414, - 0.0079251, - 0.022946, - 0.019549, - -0.016813, - 0.01834, - -0.010665, - -0.011853, - -0.019992, - -0.01859, - 0.094034, - 0.04109, - 0.030732, - 0.00091264, - -0.00069675, - 0.084878, - -0.038959, - 0.059019, - 0.07722, - 0.055969, - -0.02795, - -0.0068401, - 0.0018523, - 0.046377, - -0.0090026, - -0.016226, - 0.0019318, - -0.055608, - 0.014174, - 0.045569, - -0.017378, - 0.00074645, - 0.03681, - 0.043533, - 0.034569, - -0.029546, - 0.035569, - 0.095172, - -0.060408, - -0.016579, - -0.025473, - 0.029397, - -0.014672, - -0.017838, - 0.022537, - -0.040364, - 0.056872, - -0.045546, - -0.10057, - -0.01052, - -0.037693, - 0.010793, - 0.0068367, - 0.012952, - -0.006799, - -0.042578, - -0.023321, - 0.007143, - -0.064686, - -0.02249, - -0.031273, - 0.040632, - -0.047286, - -0.024997, - -0.015855, - -0.013455, - -0.03386, - 0.0085291, - -0.0069586, - 0.019001, - 0.054901, - -0.040803, - 0.0092944, - 0.10885, - 0.031918, - -0.016152, - 0.064562, - 0.050996, - 0.0092677, - -0.020459, - 0.0081349, - 0.035004, - 0.0022012, - 0.012934, - -0.02212, - 0.093256, - -0.13284, - -0.047367, - -0.024505, - -0.013347, - -0.014273, - -0.036499, - -0.015923, - 0.049094, - -0.00086713, - -0.034201, - 0.084059, - 0.0060136, - 0.002971, - -0.021783, - -0.028064, - 0.025008, - 0.0034854, - 0.014161, - -0.0032987, - -0.055407, - -0.030088, - 0.0016839, - -0.0020895, - 0.06957, - -0.022268, - 0.043849, - 0.046846, - 0.042819, - 0.004491, - -0.039941, - 0.003524, - 0.015736, - -0.032782, - -0.024388, - -0.0071897, - -0.01892, - -0.018247, - -0.033696, - 0.047096, - -0.051966, - 0.026516, - 0.039579, - 0.044776, - 0.014251, - -0.017155, - 0.0011637, - -0.023238, - -0.018836, - -0.023862, - 0.0011228, - 0.054657, - -0.03568, - -0.023465, - 0.0056664, - 0.026429, - 0.026922, - 0.0065282, - 0.018974, - 0.060924, - -0.0074119, - 0.025475, - 0.0087571, - 0.037348, - 0.010117, - 0.0090464, - 0.020613, - 0.011849, - 0.057914, - 0.0048458, - -0.0017816, - -0.0053225, - 0.058337, - -0.052935, - -0.030045, - 0.054099, - -0.04287, - 0.016435, - 0.00098062, - -0.014738, - 0.014049, - 0.11812, - 0.055497, - 0.025316, - 0.017911, - -0.034754, - -0.025357, - -0.0040295, - -0.12294, - 0.032851, - 0.011915, - -0.033, - 0.048273, - 0.02428, - 0.051386, - 0.0044968, - 0.018204, - -0.0042197, - 0.055664, - -0.042257, - -0.0088498 - ], - "Politics": [ - 0.075561, - -0.022668, - 0.058987, - -0.025968, - 0.054347, - 0.013313, - 0.034757, - -0.064744, - 0.038319, - 0.031578, - 0.01195, - -0.070247, - -0.028275, - 0.0060591, - 0.0084773, - -0.030666, - 0.066018, - -0.0012508, - 0.059603, - 0.0026508, - -0.010176, - 0.062714, - 0.023397, - 0.030683, - 0.073998, - -0.0027994, - -0.00019, - -0.011872, - 0.071501, - -0.0025465, - 0.036429, - -0.00216, - -0.083637, - 0.010421, - 0.069103, - 0.016959, - 0.024885, - 0.010026, - 0.028518, - 0.034996, - -0.074265, - 0.053196, - -0.040975, - 0.010721, - 0.024597, - 0.018108, - -0.015988, - -0.058704, - -0.011229, - -0.064249, - -0.039984, - -0.0018267, - 0.049133, - -0.0080394, - -0.022147, - 0.0068918, - 0.032417, - 0.026007, - -0.064619, - 0.012651, - -0.032215, - -0.034555, - -0.069711, - 0.0051293, - 0.0082163, - 0.026106, - -0.010601, - 0.060414, - 0.032205, - 0.049113, - 0.011612, - 0.012061, - -0.024486, - 0.0095899, - 0.019327, - -0.071048, - -0.017609, - -0.088468, - -0.015566, - -0.0073677, - 0.0017866, - 0.028221, - -0.035514, - 0.0050542, - 0.017287, - -0.02907, - -0.027723, - -0.11376, - 0.037046, - 0.05324, - 0.072959, - 0.013743, - -0.044478, - 0.020914, - -0.0031632, - 0.12581, - -0.014907, - -0.0028687, - 0.04852, - -0.019619, - 0.024706, - -0.00029402, - 0.013812, - -0.085648, - 0.01464, - -0.091098, - 0.054987, - 0.031748, - 0.034658, - -0.02962, - -0.020806, - 0.089652, - 0.040815, - -0.045253, - -0.0064098, - -0.005835, - 0.052479, - -0.0046632, - 0.057979, - 0.083976, - 0.046961, - -0.037513, - 0.027826, - -0.049986, - 0.051811, - 0.040695, - -0.12676, - -0.065962, - -0.024834, - 0.26069, - -0.000080313, - 0.047215, - 0.11695, - 0.0045944, - 0.047244, - -0.041373, - 0.024249, - 0.00086211, - 0.017034, - 0.00071928, - 0.036713, - -0.091236, - 0.046121, - -0.053625, - 0.029602, - -0.051258, - -0.012149, - -0.005828, - -0.00072618, - -0.049336, - 0.093035, - 0.068213, - -0.039819, - -0.015106, - -0.057386, - 0.11466, - 0.014276, - 0.0037662, - 0.0036771, - -0.049277, - 0.036664, - 0.032928, - -0.11422, - 0.028817, - -0.069219, - 0.0032015, - 0.031603, - -0.0079572, - 0.0050722, - -0.033849, - -0.025974, - -0.035128, - 0.030487, - -0.025654, - -0.023448, - 0.034281, - -0.018471, - -0.010006, - 0.015063, - -0.029371, - -0.032929, - 0.030768, - 0.020555, - -0.014252, - 0.030118, - 0.13487, - 0.020837, - 0.16148, - 0.052504, - -0.060325, - 0.0039504, - 0.10772, - -0.082381, - 0.029397, - 0.02204, - 0.049049, - -0.012487, - -0.009963, - -0.0099271, - -0.029451, - -0.026323, - 0.07684, - 0.0034753, - -0.090039, - -0.10185, - -0.028327, - -0.0091299, - 0.0143, - 0.049527, - 0.048486, - 0.14756, - 0.010403, - -0.0002718, - 0.013265, - 0.086981, - 0.024534, - -0.0059531, - -0.039089, - -0.0097759, - 0.032528, - -0.025468, - 0.015943, - -0.039998, - 0.093482, - -0.035264, - 0.0075011, - 0.033197, - 0.041162, - -0.051051, - 0.00414, - -0.0020033, - -0.023216, - 0.044625, - -0.038838, - -0.011137, - -0.0018905, - 0.028417, - -0.072639, - -0.04573, - -0.051181, - -0.032728, - -0.014179, - -0.019369, - 0.050426, - 0.15766, - -0.0028891, - -0.054027, - -0.019683, - 0.059056, - -0.069667, - 0.032746, - 0.027917, - -0.076647, - 0.021989, - -0.010049, - -0.02332, - -0.03993, - 0.0055446, - 0.055382, - 0.012066, - -0.018706, - 0.0086814, - 0.041004, - 0.022135, - -0.043171, - 0.040552, - -0.035845, - -0.0095431, - -0.0006922, - 0.010229, - 0.034931, - 0.084625, - -0.061183, - 0.056557, - -0.0048792, - -0.054702, - -0.016279, - 0.069253, - -0.067994, - -0.039045, - 0.011781, - -0.014211, - 0.029469, - -0.03311, - 0.045938, - 0.038998, - 0.063194, - -0.021116, - 0.0026596, - 0.0067636, - -0.0091698, - -0.013105, - -0.035608, - 0.021433, - -0.068931, - 0.05157, - -0.052343, - -0.013752, - 0.017131, - -0.026098 - ], - "addiction": [ - 0.03076, - -0.022698, - 0.015974, - 0.048405, - -0.053955, - 0.028166, - -0.035683, - -0.080748, - 0.045629, - 0.031565, - -0.020766, - -0.02228, - 0.032336, - -0.066455, - 0.02083, - -0.053132, - 0.062175, - 0.015171, - 0.017853, - 0.026203, - 0.01537, - 0.062948, - 0.045299, - 0.035411, - -0.0067147, - -0.042224, - 0.01203, - 0.098028, - 0.063156, - -0.0059339, - -0.068306, - 0.049749, - -0.057585, - -0.047673, - -0.0036782, - 0.013879, - 0.017742, - -0.0442, - -0.020571, - 0.029983, - -0.0563, - -0.062529, - 0.0049638, - 0.061814, - 0.018248, - 0.022287, - -0.028291, - 0.050712, - 0.017855, - -0.0071514, - -0.00040339, - 0.014598, - 0.03728, - -0.062972, - -0.040687, - -0.045899, - 0.0040034, - -0.018767, - -0.062083, - -0.024553, - -0.0023478, - -0.054687, - 0.021959, - -0.011041, - -0.032931, - -0.047196, - 0.018513, - -0.014527, - 0.040178, - -0.0017647, - 0.011226, - 0.041977, - 0.0052279, - -0.050509, - 0.017231, - -0.016952, - -0.0037797, - -0.0033472, - 0.015172, - -0.042101, - -0.0079007, - -0.0017357, - -0.094014, - 0.064346, - -0.015014, - 0.027868, - 0.044725, - 0.013691, - 0.06403, - -0.0048051, - 0.099796, - 0.025787, - -0.075774, - -0.022151, - 0.007705, - 0.034217, - -0.00075944, - -0.020006, - 0.0037528, - 0.051599, - -0.019397, - -0.000038662, - -0.02436, - -0.033071, - 0.02777, - -0.041277, - -0.072468, - -0.058136, - -0.02414, - -0.059811, - -0.0025879, - 0.071626, - 0.032737, - -0.029008, - 0.020928, - 0.011603, - 0.020049, - -0.094266, - -0.039049, - 0.0086793, - -0.026662, - 0.043622, - -0.0051444, - -0.039455, - 0.082591, - 0.064571, - -0.06271, - -0.082422, - 0.072351, - 0.080763, - 0.01687, - -0.059023, - -0.00072708, - -0.039379, - 0.065905, - -0.024064, - -0.093278, - 0.037465, - 0.042996, - -0.0068435, - 0.11251, - 0.032789, - -0.023149, - 0.016974, - -0.00034621, - -0.021647, - 0.034335, - -0.052066, - 0.066959, - 0.0045795, - 0.026175, - 0.020965, - 0.0020519, - -0.030068, - -0.023773, - 0.010353, - -0.037686, - 0.071672, - 0.069616, - -0.038535, - 0.035165, - 0.052433, - -0.10546, - -0.0015103, - -0.056526, - -0.049967, - -0.038045, - 0.0071482, - -0.0052184, - -0.012465, - -0.0050252, - 0.046506, - 0.0076213, - -0.0017482, - 0.072704, - 0.052381, - -0.021121, - 0.038434, - 0.025408, - 0.007465, - -0.0093961, - -0.048594, - -0.095536, - -0.023573, - 0.085003, - -0.012826, - 0.0045409, - 0.092203, - -0.012599, - -0.0011737, - 0.038881, - 0.039262, - -0.023783, - 0.054798, - 0.02165, - -0.0088927, - -0.048798, - -0.021619, - 0.0012684, - -0.02861, - -0.13432, - 0.027368, - -0.054236, - -0.0062903, - 0.010906, - 0.053312, - 0.083687, - -0.035485, - 0.018636, - -0.0016519, - 0.10943, - 0.040228, - 0.041468, - 0.010212, - 0.065564, - 0.0085408, - 0.026817, - 0.04035, - 0.022333, - -0.084109, - -0.02039, - -0.042744, - -0.069416, - 0.088725, - 0.0040529, - -0.02009, - 0.012464, - 0.077014, - -0.042992, - -0.018947, - -0.033492, - -0.023638, - -0.07821, - -0.021445, - 0.057125, - 0.032176, - 0.028545, - 0.019845, - 0.039284, - -0.023986, - 0.039065, - -0.053126, - 0.037135, - -0.047722, - -0.01476, - -0.0039181, - -0.034649, - -0.074742, - 0.023682, - 0.06005, - -0.0062198, - 0.05486, - 0.050452, - -0.043014, - 0.040087, - 0.011791, - 0.020921, - 0.0068516, - -0.002046, - 0.023969, - 0.017145, - -0.0097114, - 0.0060364, - -0.0049416, - 0.042266, - -0.043406, - -0.03373, - 0.0078304, - 0.06847, - 0.094908, - -0.050938, - 0.065292, - -0.090941, - -0.024599, - 0.027601, - -0.062353, - 0.026495, - 0.08725, - -0.035558, - 0.027038, - 0.095326, - 0.064228, - -0.032404, - -0.066564, - -0.013383, - 0.0056025, - -0.011738, - 0.040316, - -0.0061562, - -0.065318, - 0.0381, - -0.043788, - -0.057507, - 0.0050382, - -0.036428, - 0.030989, - 0.0483, - -0.0017427, - 0.0056006, - 0.039604 - ], - "democratic": [ - 0.019273, - -0.043438, - 0.0014471, - -0.0022859, - -0.067427, - -0.0000091039, - 0.046179, - -0.083947, - 0.041373, - -0.017827, - 0.007428, - -0.035535, - 0.02241, - 0.016817, - 0.0013895, - 0.039549, - 0.095815, - -0.0083235, - 0.053591, - -0.010833, - -0.019571, - -0.023831, - -0.023435, - 0.062576, - -0.02918, - 0.032315, - 0.016318, - -0.033862, - 0.035732, - -0.0098251, - 0.01108, - -0.040375, - -0.032949, - -0.066669, - 0.049411, - 0.062153, - 0.00085193, - -0.0023032, - -0.023551, - 0.019227, - -0.016516, - -0.13094, - -0.047962, - 0.011696, - 0.046138, - -0.03876, - -0.026006, - 0.016641, - -0.0093073, - -0.02616, - -0.014753, - -0.0058401, - 0.0029835, - -0.0023239, - 0.0076001, - -0.033307, - 0.035556, - -0.031169, - -0.034419, - 0.037164, - -0.031454, - 0.0073886, - 0.10109, - 0.007549, - 0.071565, - 0.029694, - -0.013874, - -0.030432, - 0.054353, - -0.031779, - -0.014097, - -0.0045153, - 0.0062656, - -0.019243, - -0.014235, - -0.0080788, - -0.060268, - -0.0058064, - -0.04209, - 0.067722, - 0.016046, - 0.049047, - -0.027446, - 0.070676, - 0.027193, - -0.023733, - -0.041951, - -0.017391, - 0.011766, - 0.03467, - -0.0057848, - 0.0087378, - -0.086147, - 0.010589, - -0.045366, - 0.046562, - 0.048497, - -0.019197, - 0.0046642, - -0.0085983, - 0.067452, - -0.025534, - -0.0086152, - -0.074763, - -0.048473, - -0.093118, - 0.076865, - -0.010695, - -0.10446, - 0.022053, - -0.032507, - 0.082516, - 0.035944, - 0.0022442, - -0.036696, - -0.0079393, - 0.023754, - 0.0069523, - -0.037286, - 0.051555, - 0.0066934, - -0.056934, - -0.0033555, - 0.0069017, - 0.053371, - -0.0089172, - 0.010447, - -0.019405, - -0.0077904, - 0.046392, - 0.00089438, - 0.016731, - 0.073239, - 0.046768, - 0.0087728, - -0.0056757, - 0.0093528, - 0.029836, - -0.0074434, - 0.00896, - 0.035377, - -0.066819, - 0.013555, - 0.010367, - 0.042918, - -0.022233, - 0.013457, - -0.0052836, - 0.030589, - -0.0086797, - 0.059731, - 0.11611, - 0.01513, - -0.031906, - -0.0047545, - 0.028855, - -0.030591, - -0.02472, - -0.033037, - -0.052686, - 0.048107, - 0.0071056, - -0.07124, - 0.012244, - -0.070051, - 0.025377, - 0.073324, - 0.023356, - -0.012827, - -0.011625, - -0.0097747, - 0.010191, - -0.036581, - 0.026422, - -0.060756, - 0.052893, - 0.029247, - 0.050691, - 0.015899, - -0.03094, - -0.0299, - 0.061884, - -0.017246, - 0.00015989, - -0.0259, - -0.03749, - 0.010055, - 0.073902, - -0.011388, - -0.016998, - 0.070605, - 0.075875, - 0.075788, - 0.00077423, - 0.020052, - 0.013771, - 0.043575, - 0.0045934, - 0.000017668, - 0.031847, - -0.13432, - 0.023439, - 0.061431, - -0.014811, - -0.075047, - -0.035591, - 0.047932, - 0.038335, - -0.020575, - 0.022347, - 0.096083, - -0.020438, - -0.0108, - 0.035605, - 0.001457, - -0.0076252, - 0.030854, - -0.009199, - -0.020826, - -0.034268, - 0.0050717, - 0.054697, - 0.01997, - 0.06512, - -0.037592, - 0.054385, - -0.005878, - 0.05364, - 0.0011729, - -0.053413, - 0.019481, - -0.028764, - -0.063664, - 0.0044035, - 0.025974, - 0.0083701, - -0.039453, - -0.024925, - -0.017389, - 0.002384, - 0.072603, - 0.014301, - 0.060664, - 0.03999, - -0.11398, - -0.018928, - -0.044783, - -0.043669, - -0.043914, - -0.041472, - 0.058616, - 0.025748, - -0.055691, - 0.00096006, - -0.011719, - 0.040219, - -0.032006, - 0.028456, - -0.010449, - -0.0082153, - -0.0028172, - 0.034439, - 0.05201, - 0.0059797, - -0.00382, - -0.020684, - 0.030635, - 0.022879, - 0.0035568, - 0.038437, - -0.0075815, - 0.048959, - -0.092459, - -0.026118, - -0.0077271, - -0.081207, - -0.024524, - 0.0057587, - -0.012854, - -0.015612, - 0.12427, - -0.012645, - -0.0050225, - 0.0029776, - -0.023262, - 0.014628, - 0.0091677, - -0.048274, - -0.0072582, - 0.026439, - -0.017798, - 0.0012378, - 0.046981, - -0.023845, - -0.037739, - 0.037646, - -0.025138, - 0.011873, - -0.080872, - 0.0074899 - ], - "athletes": [ - -0.036497, - -0.055059, - 0.11194, - 0.026697, - -0.067038, - -0.068903, - -0.047901, - -0.080178, - 0.04955, - -0.0079466, - 0.0025418, - -0.013054, - 0.015042, - 0.0050181, - 0.10145, - 0.002818, - 0.050705, - -0.0063199, - 0.052597, - 0.0059214, - 0.068583, - -0.095216, - 0.01162, - 0.070974, - 0.026641, - -0.043353, - 0.051597, - -0.0048424, - 0.080191, - -0.011145, - 0.026973, - 0.029493, - 0.0018713, - 0.032225, - 0.03562, - 0.055875, - 0.063004, - -0.043635, - 0.0095831, - 0.015746, - 0.017978, - -0.058294, - -0.067017, - 0.025716, - 0.10683, - 0.0091677, - 0.063355, - 0.00097533, - 0.0029852, - -0.014624, - -0.032517, - -0.036982, - 0.046263, - 0.0070262, - -0.043882, - 0.08947, - 0.0090603, - 0.022655, - -0.037287, - -0.090457, - 0.047576, - -0.016691, - 0.11065, - -0.0023733, - 0.054879, - -0.10622, - 0.047489, - -0.057768, - 0.058459, - -0.013995, - 0.0079897, - -0.026664, - 0.13384, - 0.04614, - 0.0045651, - 0.057724, - 0.042798, - -0.070845, - -0.048313, - -0.035553, - 0.020381, - 0.070788, - 0.041882, - 0.054229, - -0.0049451, - -0.041908, - -0.043021, - -0.011796, - -0.013096, - -0.040015, - -0.033606, - 0.019244, - -0.094835, - -0.0028731, - 0.000037794, - 0.075223, - -0.073629, - -0.057708, - 0.10558, - 0.031854, - 0.053337, - 0.0088085, - 0.0078357, - 0.003311, - 0.045335, - -0.042883, - -0.050485, - 0.0072416, - -0.038765, - 0.10447, - -0.02618, - 0.11362, - 0.087206, - -0.015601, - 0.12188, - -0.043114, - -0.056512, - 0.07416, - -0.051376, - -0.031741, - 0.11145, - -0.017632, - 0.013499, - -0.085112, - 0.12227, - -0.065074, - -0.0068637, - -0.062493, - -0.00019841, - 0.046192, - -0.021923, - 0.14603, - 0.039517, - -0.024166, - -0.006316, - -0.0020318, - 0.0016128, - 0.045717, - -0.030255, - -0.014281, - 0.070634, - -0.042108, - -0.035037, - -0.039411, - 0.015307, - 0.03393, - -0.03125, - -0.057957, - 0.036586, - 0.013739, - 0.090619, - 0.091605, - 0.011019, - -0.010463, - 0.030723, - -0.018077, - 0.015226, - 0.068404, - 0.022245, - -0.052638, - 0.027334, - 0.063132, - 0.047763, - 0.075599, - 0.023086, - 0.021035, - -0.00032268, - 0.031196, - -0.042154, - -0.18228, - 0.041633, - -0.046808, - 0.035737, - 0.023924, - 0.074527, - 0.066263, - -0.026126, - -0.0010578, - -0.044921, - 0.031142, - 0.040273, - -0.051046, - -0.0096161, - -0.013072, - -0.010791, - -0.097529, - -0.078891, - 0.089215, - -0.014553, - 0.062619, - -0.039054, - 0.052115, - -0.11477, - -0.033084, - 0.013438, - -0.056079, - 0.033324, - -0.074715, - 0.059045, - 0.0038108, - -0.11299, - 0.074162, - 0.0034129, - -0.041827, - 0.032765, - 0.002627, - -0.011906, - -0.015675, - -0.01153, - -0.054071, - 0.063496, - -0.020349, - 0.088195, - 0.010912, - -0.080888, - 0.0090124, - 0.020566, - 0.045696, - -0.0098851, - -0.017278, - -0.076466, - 0.010482, - -0.061736, - 0.10187, - 0.034591, - 0.094666, - -0.027997, - 0.064369, - -0.040294, - -0.014612, - -0.07111, - 0.019174, - -0.099247, - -0.024312, - 0.034415, - 0.045515, - -0.024476, - -0.050193, - -0.03084, - -0.005053, - -0.026348, - 0.018279, - 0.062147, - -0.055596, - 0.039861, - 0.085603, - -0.0072759, - -0.080212, - 0.0093475, - -0.036403, - 0.078153, - 0.087779, - -0.030703, - -0.034177, - 0.014365, - 0.013973, - -0.049951, - 0.030206, - 0.054525, - 0.015722, - -0.069801, - -0.037477, - 0.081344, - -0.0094342, - 0.067487, - 0.011371, - -0.048401, - 0.029346, - 0.024807, - -0.020869, - 0.014262, - 0.085058, - -0.10505, - -0.028726, - -0.028471, - -0.0003817, - -0.059007, - -0.0319, - 0.017484, - 0.009094, - -0.0070548, - 0.038361, - -0.042198, - 0.053262, - 0.0084288, - -0.015866, - 0.013605, - -0.085978, - -0.021976, - 0.0028244, - 0.11698, - -0.1085, - -0.090396, - -0.0047553, - -0.0034537, - 0.0082411, - 0.025707, - 0.0032539, - 0.013957, - -0.032378 - ], - "archaeology": [ - -0.018592, - -0.046039, - -0.0070317, - 0.0082483, - 0.011878, - -0.014062, - 0.0014937, - -0.079949, - 0.045543, - -0.0014398, - -0.0064775, - -0.052218, - -0.040942, - 0.022027, - 0.070282, - -0.027773, - 0.066426, - -0.024555, - 0.017155, - 0.026503, - -0.046874, - 0.041674, - 0.011478, - 0.048342, - 0.048105, - 0.0059924, - -0.014566, - 0.06861, - 0.018686, - 0.04342, - 0.027422, - -0.0085514, - 0.030693, - -0.043071, - 0.032235, - 0.036846, - 0.054355, - 0.017047, - -0.014348, - -0.049048, - -0.021481, - -0.077703, - 0.027804, - 0.047351, - 0.030182, - -0.02019, - -0.017009, - -0.047691, - 0.012712, - 0.016666, - -0.012068, - -0.025776, - 0.020807, - 0.029324, - -0.047757, - 0.012894, - -0.013365, - 0.075436, - -0.019952, - 0.041909, - 0.075128, - 0.048417, - 0.04874, - -0.013369, - 0.025235, - 0.041618, - -0.036973, - 0.029201, - 0.061226, - 0.018832, - -0.031078, - 0.011944, - 0.003427, - 0.017273, - 0.062537, - 0.016637, - -0.0092714, - -0.0055171, - 0.076294, - -0.0077709, - -0.030472, - 0.041323, - -0.048971, - 0.0066862, - -0.069306, - 0.0014197, - 0.0065538, - -0.018955, - 0.0042419, - 0.012346, - -0.010795, - 0.056182, - -0.063324, - 0.019916, - 0.023002, - 0.039763, - -0.033966, - 0.067103, - 0.012011, - -0.083345, - 0.043002, - -0.013706, - -0.009447, - -0.0084322, - 0.0029641, - -0.032433, - 0.082452, - 0.054552, - -0.037041, - -0.013562, - -0.018478, - 0.097333, - 0.021521, - 0.054447, - -0.0090752, - 0.016741, - -0.039148, - 0.0056033, - -0.02986, - 0.040417, - -0.024481, - -0.016759, - -0.045695, - -0.02166, - 0.017983, - -0.063643, - -0.087662, - -0.056835, - -0.0039695, - 0.11927, - -0.037463, - 0.013171, - -0.039555, - 0.067944, - -0.0066974, - -0.017434, - -0.027315, - -0.0033224, - 0.008021, - -0.069723, - -0.047467, - -0.036769, - 0.049142, - 0.0098383, - -0.016891, - -0.032148, - -0.0026738, - -0.01504, - -0.0099852, - -0.067478, - 0.075622, - 0.039115, - 0.041605, - -0.043015, - -0.0090311, - 0.061864, - 0.058537, - 0.027232, - 0.010345, - -0.00976, - 0.0068394, - -0.038049, - -0.07498, - 0.044329, - -0.006516, - -0.019167, - -0.034551, - 0.030077, - 0.037263, - -0.024937, - 0.036615, - -0.056057, - -0.0059665, - -0.02195, - 0.011632, - 0.049389, - 0.035988, - 0.00034155, - -0.031736, - 0.0065994, - -0.026994, - 0.0098427, - 0.033228, - -0.017953, - 0.026059, - -0.014193, - 0.060433, - 0.079824, - 0.018496, - 0.011936, - -0.0071306, - 0.063737, - -0.042585, - -0.022768, - -0.045655, - 0.067295, - -0.039643, - 0.011943, - -0.0011232, - 0.0084591, - -0.10205, - -0.012169, - -0.0081694, - -0.052927, - 0.015446, - 0.074459, - -0.02522, - -0.011682, - -0.010377, - 0.0098232, - 0.092218, - 0.0073686, - -0.010255, - -0.025708, - 0.028267, - 0.035437, - 0.0040257, - -0.023966, - -0.025132, - -0.012255, - -0.0050215, - 0.02583, - -0.069418, - 0.075597, - -0.012129, - -0.0299, - 0.00043129, - 0.071692, - -0.044254, - -0.019468, - -0.0086667, - -0.013793, - -0.026034, - -0.05313, - 0.012592, - 0.030165, - 0.034916, - 0.035693, - -0.026775, - -0.018189, - 0.0079779, - 0.01524, - -0.010283, - 0.013599, - 0.035466, - 0.05168, - -0.10584, - -0.0238, - -0.06525, - 0.0096337, - 0.046407, - -0.029721, - 0.026603, - -0.010617, - 0.0062676, - 0.024897, - -0.03348, - 0.029241, - 0.069025, - -0.0012343, - 0.012954, - 0.035427, - -0.040064, - 0.0025762, - 0.033516, - -0.049504, - 0.026384, - 0.022525, - 0.0084305, - 0.015876, - 0.022588, - 0.066266, - -0.082999, - -0.0096523, - -0.026553, - -0.0074606, - 0.081088, - 0.022241, - -0.0091179, - -0.062622, - 0.062749, - 0.01277, - -0.0098255, - 0.021003, - -0.026907, - -0.0066695, - -0.017589, - -0.0073916, - -0.055888, - -0.013689, - 0.017319, - 0.01199, - -0.017424, - -0.040319, - 0.077984, - 0.03094, - -0.042823, - 0.0013697, - -0.031222, - -0.048884 - ], - "wind": [ - -0.044768, - 0.0043765, - -0.021359, - 0.0067512, - -0.030859, - -0.10424, - -0.0076211, - -0.12131, - 0.050966, - -0.0011837, - 0.015233, - -0.0089067, - 0.079718, - 0.029992, - 0.049273, - -0.0063143, - 0.13048, - 0.034663, - 0.063984, - 0.011431, - 0.022833, - -0.022237, - -0.12687, - 0.059859, - 0.10999, - -0.083639, - -0.0058841, - 0.077388, - 0.0089541, - -0.024166, - -0.055041, - 0.0015408, - -0.011266, - -0.011944, - -0.041503, - 0.029746, - 0.03091, - -0.14521, - 0.085992, - -0.053416, - -0.051065, - -0.18845, - 0.014719, - -0.036143, - -0.12231, - 0.01491, - 0.018901, - 0.022388, - -0.062797, - -0.11175, - 0.11254, - -0.017235, - -0.039707, - 0.14926, - -0.13569, - 0.026404, - 0.10088, - 0.0021949, - -0.081197, - 0.068335, - -0.031387, - 0.057842, - 0.1283, - -0.090388, - -0.043748, - -0.0081296, - -0.045502, - -0.063696, - 0.049583, - 0.074747, - 0.12749, - 0.076329, - 0.092804, - 0.0051059, - -0.050776, - -0.15704, - -0.045075, - -0.024874, - -0.13672, - -0.038776, - -0.095807, - -0.10046, - -0.047079, - 0.10401, - 0.1558, - -0.023195, - 0.050094, - -0.03685, - -0.054516, - -0.1295, - -0.019069, - -0.0033943, - -0.15157, - -0.064992, - -0.026352, - 0.037396, - -0.021452, - 0.061849, - -0.036141, - -0.052178, - 0.064526, - 0.0039352, - 0.039123, - 0.03046, - 0.081653, - -0.16282, - -0.12163, - -0.034364, - 0.12687, - 0.079771, - -0.043381, - 0.10946, - 0.068563, - 0.010205, - 0.027675, - -0.032648, - -0.03612, - 0.13077, - -0.052957, - -0.065462, - 0.023303, - -0.023426, - 0.025486, - -0.0016464, - 0.098802, - -0.023314, - -0.063464, - -0.12034, - -0.063958, - 0.13895, - -0.0054484, - -0.02152, - 0.090923, - 0.086155, - 0.065618, - 0.057986, - 0.10663, - 0.079811, - -0.082267, - -0.03642, - 0.0084442, - -0.020808, - 0.070314, - -0.043932, - 0.056088, - 0.0088414, - -0.014441, - 0.00045272, - -0.092069, - -0.088891, - 0.041393, - 0.10677, - -0.0081751, - -0.051207, - 0.18131, - 0.014194, - 0.1171, - -0.15973, - -0.14295, - -0.0051787, - 0.064408, - -0.044641, - -0.097615, - 0.043213, - -0.0040291, - -0.043098, - 0.07124, - -0.010578, - 0.025527, - 0.12103, - -0.096266, - 0.0003313, - -0.062882, - -0.036502, - 0.037486, - 0.085543, - 0.043341, - 0.041979, - -0.057239, - -0.0041953, - -0.10229, - 0.073651, - -0.035225, - -0.079201, - -0.049343, - -0.078403, - -0.055401, - 0.11025, - 0.067224, - 0.0017193, - 0.015784, - -0.066245, - -0.055204, - 0.011934, - -0.11234, - -0.019803, - 0.089404, - 0.13873, - 0.021362, - -0.012675, - -0.23515, - 0.04971, - 0.076641, - -0.024398, - 0.16848, - 0.059422, - 0.14264, - 0.10343, - 0.017484, - -0.048717, - 0.13377, - -0.015178, - 0.081465, - -0.052731, - 0.080024, - 0.023525, - 0.05827, - -0.03805, - 0.0054307, - -0.10237, - 0.035987, - -0.032609, - 0.075917, - 0.12155, - 0.038221, - 0.083668, - -0.036149, - 0.075453, - 0.0010347, - -0.019718, - 0.015878, - -0.064744, - -0.063582, - 0.0067866, - -0.0045107, - 0.080544, - -0.0075917, - -0.047138, - 0.11921, - -0.054172, - 0.10899, - 0.033973, - 0.046667, - -0.076618, - -0.10498, - -0.0045094, - -0.015158, - -0.0053374, - 0.077123, - -0.00053593, - 0.099142, - -0.065105, - 0.0067899, - -0.020452, - -0.0013671, - 0.015312, - 0.039758, - -0.02148, - -0.077657, - 0.0082469, - 0.095784, - 0.0069202, - 0.017688, - -0.054887, - -0.048078, - -0.10564, - 0.017278, - 0.005904, - 0.082904, - -0.015066, - -0.047622, - 0.13062, - -0.16887, - -0.069015, - 0.035865, - -0.096604, - -0.019083, - -0.021148, - 0.0013951, - -0.088154, - 0.12106, - 0.010218, - 0.14575, - 0.032907, - 0.022667, - -0.016683, - 0.076685, - 0.061998, - -0.002657, - -0.010742, - 0.1511, - 0.031501, - -0.11149, - -0.053376, - -0.018548, - 0.045842, - -0.072594, - -0.029277, - 0.088967, - -0.15878 - ], - "wine": [ - -0.083497, - -0.050797, - 0.025973, - -0.038268, - 0.038244, - -0.037843, - 0.075956, - -0.11713, - 0.075017, - 0.07189, - -0.0045275, - -0.022566, - 0.032539, - -0.086472, - 0.049334, - -0.031069, - 0.13853, - -0.069586, - 0.027472, - 0.027034, - -0.042197, - 0.089377, - 0.0044612, - 0.034351, - 0.062104, - -0.14302, - 0.044671, - 0.23501, - 0.039526, - -0.016446, - 0.0041034, - 0.036327, - -0.0051841, - 0.000096407, - 0.078611, - -0.039513, - 0.030331, - 0.073159, - -0.046483, - 0.021349, - -0.014912, - -0.17258, - -0.086889, - 0.0016776, - -0.1209, - -0.031789, - 0.022641, - -0.0020682, - -0.045055, - 0.097806, - -0.087128, - -0.012624, - 0.096335, - -0.060435, - -0.11173, - 0.01346, - 0.033234, - -0.025455, - -0.10361, - -0.064644, - 0.047287, - 0.0012071, - 0.16247, - 0.068022, - -0.0051683, - 0.062222, - -0.072986, - 0.037736, - 0.059453, - -0.10581, - 0.090277, - -0.0062659, - 0.082131, - 0.060626, - -0.013252, - -0.038558, - -0.064814, - -0.0047407, - 0.035347, - 0.11307, - -0.079481, - -0.098574, - -0.058236, - 0.10079, - -0.16381, - -0.18542, - 0.15968, - -0.062741, - -0.12315, - -0.032134, - 0.030995, - 0.054008, - -0.14989, - -0.033372, - -0.028004, - 0.12552, - -0.017896, - 0.16651, - 0.039791, - 0.034659, - -0.12097, - -0.048699, - -0.056945, - 0.060047, - 0.0033179, - -0.17779, - -0.065875, - 0.11454, - 0.0002184, - 0.077535, - 0.123, - 0.1283, - 0.094575, - 0.077483, - 0.14405, - -0.18212, - 0.08044, - -0.11544, - -0.075741, - 0.1113, - -0.041774, - 0.031486, - 0.053957, - -0.14231, - 0.12212, - -0.090407, - -0.059139, - -0.12708, - -0.076268, - 0.10864, - 0.019766, - 0.020794, - -0.078661, - -0.043247, - -0.003048, - -0.082587, - -0.091195, - 0.063284, - 0.092401, - 0.035427, - 0.13791, - -0.090301, - -0.01958, - -0.048239, - 0.086093, - 0.0098669, - 0.018948, - 0.036274, - -0.13031, - -0.059334, - 0.026523, - 0.086127, - 0.19458, - -0.025454, - -0.0042383, - -0.038433, - -0.073682, - 0.051302, - -0.071943, - -0.023191, - 0.051, - 0.036534, - -0.079365, - -0.0987, - 0.089963, - 0.071607, - -0.064526, - -0.076489, - 0.028698, - -0.045898, - 0.058444, - -0.10937, - -0.034032, - 0.020908, - 0.05506, - 0.10897, - -0.052116, - 0.068995, - -0.021384, - -0.059738, - -0.048785, - 0.12786, - 0.058009, - -0.15859, - -0.02206, - -0.05021, - 0.046366, - 0.16487, - 0.10099, - -0.07807, - 0.01153, - 0.062268, - 0.0094216, - 0.059472, - 0.084842, - 0.026304, - 0.085912, - 0.0028657, - -0.020832, - 0.011894, - -0.22108, - 0.042916, - -0.026444, - -0.046518, - -0.0047644, - 0.12699, - 0.012569, - 0.074538, - -0.0032235, - -0.054399, - 0.176, - 0.0096282, - 0.028004, - 0.01312, - 0.030768, - 0.036925, - -0.078789, - 0.029373, - 0.043942, - -0.0073771, - 0.040836, - -0.068199, - 0.013985, - 0.12161, - -0.017753, - -0.024038, - -0.045926, - 0.046775, - -0.029629, - -0.036631, - 0.003577, - -0.014752, - -0.11568, - -0.065971, - 0.0033538, - -0.094694, - -0.13181, - -0.043122, - 0.11784, - -0.15092, - 0.054414, - 0.11933, - 0.01304, - -0.032234, - -0.019018, - -0.0031399, - 0.039379, - 0.017413, - 0.075373, - -0.03325, - 0.057073, - -0.10335, - -0.11016, - 0.04014, - -0.019559, - -0.053112, - -0.070097, - -0.030765, - -0.0081018, - 0.13973, - 0.034111, - -0.01732, - 0.14118, - -0.046233, - -0.082138, - -0.12625, - 0.064511, - -0.052376, - 0.086071, - 0.019595, - 0.057028, - 0.1146, - -0.15466, - -0.033604, - -0.06409, - -0.052274, - -0.037068, - 0.10512, - -0.087194, - -0.035472, - 0.14123, - 0.18431, - 0.0046588, - -0.066852, - -0.079979, - -0.10929, - 0.024055, - 0.041489, - 0.045554, - -0.012696, - -0.032556, - 0.1038, - -0.067106, - 0.0069003, - -0.04206, - 0.0049549, - 0.055975, - -0.036925, - -0.098601, - -0.034601 - ], - "operations": [ - 0.0054408, - -0.044162, - 0.0052151, - -0.022702, - -0.012685, - -0.039547, - 0.023535, - -0.063863, - 0.027674, - -0.028901, - 0.0051923, - -0.090195, - -0.033372, - 0.037299, - -0.023048, - 0.012269, - 0.068457, - -0.0094957, - 0.056286, - 0.032352, - -0.0010889, - -0.022322, - 0.0073716, - 0.055924, - 0.0069669, - 0.038775, - -0.021971, - -0.014416, - 0.040049, - -0.01397, - -0.0088078, - -0.029008, - -0.0026193, - -0.040352, - 0.032094, - 0.053107, - -0.014943, - 0.010803, - 0.048655, - -0.090996, - 0.0064828, - -0.085877, - -0.00058752, - -0.0075442, - -0.040009, - -0.001395, - 0.032375, - -0.016651, - 0.0020282, - -0.033375, - 0.0011688, - -0.00010596, - 0.0023762, - 0.018143, - -0.11355, - 0.027658, - -0.03746, - 0.020364, - -0.014433, - 0.012634, - -0.016453, - 0.014369, - 0.14057, - -0.015325, - 0.029717, - -0.055019, - 0.02994, - -0.029807, - 0.016982, - -0.021538, - -0.0002155, - -0.019262, - 0.012777, - 0.036531, - 0.047593, - -0.010472, - 0.030412, - 0.0067272, - -0.045548, - -0.024307, - -0.0080563, - -0.0043404, - -0.082348, - 0.038799, - 0.021471, - 0.01936, - 0.012012, - -0.037566, - 0.043487, - -0.018265, - -0.0093213, - 0.043418, - -0.060113, - 0.038393, - 0.0016025, - 0.023211, - -0.039762, - 0.0078586, - -0.039111, - 0.0059499, - 0.014195, - 0.0069761, - -0.023865, - 0.025646, - 0.052095, - -0.042391, - -0.042065, - 0.0056463, - -0.0058411, - 0.0006471, - -0.012664, - 0.029424, - 0.070889, - -0.0068377, - -0.004412, - -0.040851, - -0.013391, - 0.016428, - -0.043027, - 0.0082462, - -0.029409, - -0.024876, - -0.0078679, - 0.03958, - 0.097753, - 0.047117, - 0.0086172, - -0.04572, - 0.034238, - 0.11407, - 0.021072, - 0.03136, - 0.016338, - 0.0060173, - 0.01917, - -0.04864, - 0.027657, - 0.016829, - 0.0078516, - 0.079468, - -0.049523, - 0.0049077, - -0.047418, - 0.033819, - 0.0076426, - -0.019811, - 0.007946, - -0.054266, - -0.004607, - 0.00044117, - 0.011349, - 0.045807, - 0.012524, - -0.10836, - 0.026838, - 0.0048889, - -0.065309, - 0.014941, - 0.020035, - 0.029653, - 0.024564, - 0.021513, - -0.020935, - 0.026826, - 0.017887, - 0.014701, - 0.014633, - 0.00089677, - -0.030643, - 0.026271, - 0.063941, - -0.0067068, - -0.035256, - 0.03698, - 0.00013034, - 0.021851, - -0.041241, - 0.018206, - -0.044185, - 0.036551, - 0.0098469, - 0.026875, - 0.0059672, - 0.02041, - 0.005936, - -0.031748, - 0.028709, - 0.065731, - 0.035393, - -0.035906, - 0.010928, - 0.02722, - -0.044137, - -0.034609, - 0.016422, - -0.044748, - -0.030232, - -0.0066363, - 0.011988, - -0.051362, - -0.13096, - 0.056289, - -0.0032107, - 0.0066034, - 0.0034752, - -0.027345, - -0.026795, - -0.0067554, - -0.0097293, - -0.023517, - 0.093525, - 0.021509, - 0.011201, - 0.038615, - 0.020954, - 0.00031205, - 0.021058, - -0.020522, - -0.037539, - 0.0033473, - 0.021971, - -0.011655, - 0.011499, - 0.082325, - 0.0053594, - 0.019072, - -0.027811, - 0.034575, - -0.019025, - 0.015829, - 0.013994, - -0.028871, - -0.032707, - -0.014894, - 0.047462, - -0.025558, - 0.027057, - 0.0095304, - 0.033456, - 0.005453, - -0.013323, - -0.019958, - 0.014981, - -0.0052332, - 0.015634, - 0.010581, - -0.029074, - -0.080217, - 0.026452, - 0.039733, - -0.0091577, - 0.023957, - 0.064386, - 0.046716, - -0.014408, - 0.02437, - 0.021231, - 0.028994, - 0.010263, - 0.029515, - -0.0015837, - 0.016137, - -0.016918, - -0.021725, - -0.019287, - 0.0047293, - -0.0084249, - 0.0016097, - -0.014325, - 0.033696, - -0.033214, - 0.064433, - -0.087634, - -0.035556, - -0.0053955, - 0.012542, - 0.0017215, - 0.022189, - 0.024773, - -0.023295, - 0.03011, - -0.026667, - -0.026334, - 0.012831, - 0.010586, - -0.019443, - -0.0081682, - -0.0041992, - 0.013376, - 0.0061086, - -0.039473, - 0.062543, - -0.03434, - 0.0024758, - 0.030457, - -0.018821, - -0.023233, - 0.018643, - -0.071963, - -0.014266 - ], - "politicization": [ - 0.013663, - 0.012368, - 0.013326, - -0.0013944, - -0.0095431, - 0.025742, - 0.023233, - -0.06676, - 0.0079048, - -0.0020773, - -0.01294, - -0.0033145, - -0.049056, - 0.043776, - -0.011115, - -0.0092611, - 0.026784, - 0.011822, - 0.021591, - 0.024189, - -0.0037916, - -0.0048917, - 0.0059162, - 0.042441, - -0.024604, - 0.007786, - 0.028482, - 0.04218, - 0.0053922, - -0.011757, - 0.0094954, - -0.054938, - -0.020189, - -0.055857, - -0.023099, - 0.016489, - 0.041666, - 0.032408, - 0.0057461, - 0.0066061, - -0.043076, - -0.046948, - -0.0088905, - 0.019047, - 0.05632, - 0.014336, - -0.028681, - -0.0045822, - 0.0015408, - 0.0042286, - 0.019336, - 0.0042943, - 0.0070363, - 0.0049341, - -0.0070603, - 0.025388, - 0.0033935, - 0.025758, - -0.0273, - 0.027672, - 0.026067, - 0.0061241, - -0.0070825, - -0.059908, - 0.038402, - -0.0046002, - 0.013197, - -0.034512, - 0.038995, - 0.035556, - 0.02328, - -0.028894, - -0.039613, - 0.011386, - 0.039293, - 0.016664, - 0.024452, - 0.0053769, - 0.027914, - -0.026649, - -0.073537, - 0.018502, - -0.048784, - 0.0095636, - 0.019358, - 0.0031623, - -0.018709, - 0.0079353, - 0.0024895, - 0.016538, - -0.044938, - 0.0042515, - -0.048701, - -0.0036101, - 0.022801, - 0.012373, - -0.01129, - -0.014594, - 0.019314, - 0.0095905, - -0.030556, - -0.049229, - -0.0031885, - -0.026085, - 0.012877, - -0.00012275, - 0.033708, - -0.023013, - -0.038267, - -0.0090994, - -0.0050956, - 0.018284, - 0.0091191, - -0.012342, - -0.002971, - -0.0078445, - 0.045728, - 0.0076776, - -0.025499, - 0.030261, - -0.0056406, - -0.055037, - 0.039153, - 0.036751, - 0.064569, - -0.005188, - -0.013629, - -0.027656, - 0.016243, - 0.11354, - -0.020046, - -0.036407, - 0.035974, - 0.030642, - -0.011864, - -0.01078, - -0.027475, - 0.029495, - 0.039081, - -0.010137, - -0.00049019, - -0.060317, - -0.01565, - 0.017715, - -0.013321, - -0.03896, - -0.011935, - 0.033719, - 0.0051394, - 0.0059376, - 0.032836, - 0.027644, - -0.0034869, - -0.031955, - 0.015854, - 0.026963, - -0.0030287, - 0.040464, - -0.016629, - 0.019824, - 0.036488, - 0.043174, - -0.10488, - -0.053193, - -0.031192, - 0.020897, - 0.0092294, - 0.056873, - 0.035445, - -0.035421, - 0.018444, - -0.012009, - -0.0031163, - 0.017289, - 0.030157, - 0.040722, - -0.020319, - 0.034004, - 0.01217, - 0.0035253, - -0.036816, - 0.048248, - 0.018725, - 0.021359, - 0.010772, - -0.045005, - 0.015013, - 0.075435, - 0.0090935, - -0.010963, - -0.012497, - 0.038011, - -0.0618, - -0.0028646, - 0.00019, - 0.0083279, - 0.036984, - 0.012459, - -0.037496, - 0.00453, - -0.11557, - -0.0042595, - 0.016495, - -0.045471, - -0.02214, - -0.020141, - 0.01206, - 0.00098161, - 0.024684, - 0.017802, - 0.054652, - 0.030995, - 0.027963, - 0.0035717, - 0.057983, - 0.031559, - 0.042804, - 0.0023524, - 0.0029626, - -0.055023, - -0.060733, - 0.012229, - -0.058552, - 0.052653, - 0.0015489, - 0.031197, - -0.0027644, - 0.048916, - 0.0016726, - -0.026612, - -0.0071171, - -0.022031, - -0.016785, - 0.00083242, - 0.045088, - 0.0028589, - 0.0010634, - -0.023426, - 0.015617, - -0.078764, - 0.020865, - -0.02558, - 0.00053497, - 0.027405, - -0.055612, - 0.0071824, - -0.02889, - -0.035435, - 0.00033593, - -0.02256, - 0.013716, - -0.00080723, - -0.043947, - 0.019044, - 0.029043, - -0.0027898, - -0.011911, - 0.0043164, - 0.0099617, - -0.0036671, - 0.000033072, - -0.031314, - 0.0067585, - 0.018146, - 0.014139, - 0.047656, - -0.013164, - 0.0069693, - 0.0093576, - -0.0096754, - -0.018548, - 0.033632, - -0.066478, - -0.0084395, - 0.011533, - -0.06467, - -0.016738, - 0.034577, - -0.026932, - -0.035228, - 0.07192, - -0.028642, - 0.0085917, - 0.011892, - 0.016959, - 0.042137, - -0.0046833, - 0.032948, - -0.037955, - -0.028195, - -0.014678, - -0.028199, - -0.013587, - -0.0063137, - -0.011671, - 0.043499, - -0.047906, - 0.012402, - 0.032007, - -0.0056691 - ], - "boxing": [ - 0.083686, - -0.074208, - 0.046626, - -0.004497, - -0.0038979, - -0.082841, - 0.06962, - -0.10402, - 0.077533, - 0.0084798, - 0.074602, - -0.043748, - -0.02039, - -0.030489, - 0.048993, - -0.042259, - 0.13354, - -0.090269, - 0.0084541, - 0.022608, - 0.064763, - -0.029115, - 0.040524, - 0.067981, - 0.013628, - -0.030408, - 0.015009, - -0.094754, - 0.010171, - 0.068337, - -0.0064602, - 0.0033691, - 0.07504, - -0.046616, - 0.09615, - 0.026924, - 0.057523, - -0.029793, - -0.076732, - 0.052861, - 0.071857, - -0.11653, - 0.047933, - 0.036334, - -0.046966, - 0.014294, - 0.16458, - -0.013581, - -0.015256, - 0.034036, - -0.097109, - 0.060871, - 0.10599, - 0.048355, - -0.080456, - -0.016474, - -0.0053255, - 0.0093351, - -0.053611, - -0.023343, - -0.015415, - 0.037319, - 0.10475, - 0.061188, - 0.009727, - -0.066701, - -0.031942, - -0.022379, - 0.072603, - 0.0082918, - 0.028945, - -0.092651, - 0.027811, - -0.018815, - 0.063678, - 0.068064, - -0.033121, - -0.0078591, - -0.050636, - -0.012829, - -0.0083463, - -0.0093795, - -0.11628, - 0.069145, - -0.069984, - -0.052823, - -0.019422, - -0.030937, - 0.033164, - -0.011322, - -0.058593, - 0.046945, - -0.11147, - 0.049386, - 0.087348, - 0.089851, - 0.018465, - -0.0050856, - 0.12631, - 0.027564, - -0.05882, - -0.030894, - 0.0038815, - -0.022265, - 0.0057268, - -0.11816, - -0.069553, - -0.0066359, - -0.0085172, - 0.05351, - -0.078508, - 0.064751, - 0.049765, - -0.032547, - -0.020883, - 0.032701, - -0.088274, - -0.0096331, - -0.042574, - -0.028651, - 0.033104, - -0.019869, - -0.1208, - 0.015978, - 0.055118, - -0.025949, - -0.045249, - -0.080933, - 0.020187, - 0.14721, - -0.037375, - 0.049794, - 0.029992, - -0.011493, - -0.010851, - -0.071654, - -0.066581, - -0.0021019, - 0.066006, - -0.039531, - 0.078092, - 0.074994, - 0.019812, - 0.036165, - -0.030162, - -0.071735, - -0.01841, - -0.073745, - -0.0019004, - -0.013504, - 0.045224, - 0.10599, - -0.055971, - -0.08249, - -0.065723, - -0.02034, - -0.030965, - 0.082817, - 0.06966, - -0.032662, - 0.019927, - 0.079458, - -0.07703, - 0.033986, - -0.1587, - -0.052556, - 0.012484, - -0.11234, - -0.074944, - -0.01283, - 0.092897, - 0.11185, - 0.045697, - 0.08416, - 0.04875, - 0.055693, - 0.017145, - 0.0017247, - -0.025075, - -0.068659, - 0.018778, - -0.15241, - 0.082091, - -0.059883, - 0.03836, - -0.014967, - 0.010937, - 0.1076, - -0.025653, - -0.031852, - -0.038634, - 0.060224, - 0.0039079, - -0.15996, - -0.032655, - -0.008991, - -0.065255, - 0.045136, - 0.066919, - 0.048627, - -0.19083, - 0.064916, - -0.0010527, - 0.013537, - -0.021625, - 0.055618, - 0.065526, - 0.0766, - 0.014887, - -0.012315, - 0.14656, - 0.023995, - 0.0054609, - -0.044613, - 0.0028033, - 0.015828, - -0.033696, - 0.039479, - 0.015544, - -0.053588, - 0.010647, - -0.047464, - -0.063898, - 0.099364, - -0.01579, - 0.0097467, - 0.016065, - 0.096844, - -0.025646, - 0.027466, - 0.049611, - -0.058924, - -0.053834, - -0.025514, - -0.029006, - 0.039774, - -0.13292, - -0.045208, - -0.018062, - -0.035532, - 0.036384, - -0.092795, - 0.042734, - -0.027842, - -0.050627, - 0.09663, - 0.0012289, - 0.026288, - 0.022845, - 0.021887, - 0.043278, - 0.044595, - 0.0021013, - 0.026527, - 0.016992, - 0.048843, - -0.061075, - -0.019992, - 0.046555, - 0.043807, - 0.022124, - -0.0025363, - 0.14337, - 0.0041999, - 0.020078, - 0.025079, - -0.04744, - -0.0017107, - -0.02125, - -0.084014, - -0.012609, - 0.10192, - -0.11474, - -0.0042933, - -0.033531, - -0.062216, - -0.13985, - 0.021503, - 0.081487, - -0.030585, - 0.11579, - -0.089895, - -0.035141, - -0.0022484, - 0.022067, - 0.056879, - 0.0064197, - -0.046172, - 0.038396, - -0.041485, - 0.13067, - -0.096139, - -0.016257, - -0.011971, - -0.015516, - -0.066582, - -0.038692, - 0.12595, - -0.029164, - -0.024267 - ], - "cryptographic": [ - -0.0092371, - -0.027053, - -0.066719, - 0.014185, - -0.030458, - 0.0046598, - 0.041292, - -0.064279, - -0.0038138, - 0.030371, - -0.00040685, - -0.023024, - -0.084816, - 0.049363, - -0.050852, - 0.020551, - 0.065366, - -0.013675, - 0.02207, - -0.0075205, - 0.0057889, - 0.039691, - 0.016896, - 0.037302, - 0.021745, - 0.070963, - -0.0030575, - -0.044027, - 0.026097, - -0.058473, - 0.003054, - -0.046438, - -0.029462, - -0.062621, - 0.077007, - 0.0069258, - -0.0097406, - -0.020421, - 0.00665, - 0.0065912, - 0.0097579, - -0.097706, - -0.010219, - -0.024787, - -0.029083, - -0.073744, - -0.065194, - 0.016057, - 0.0066569, - 0.012413, - -0.041822, - -0.021102, - 0.016656, - 0.0059054, - 0.0061311, - -0.00058563, - 0.010495, - 0.033362, - 0.012212, - -0.0076526, - -0.019802, - -0.083933, - 0.081934, - -0.0066127, - -0.023832, - 0.0089509, - 0.0059531, - 0.0072461, - -0.00053718, - 0.012046, - -0.024899, - 0.013589, - 0.023968, - 0.034548, - -0.015808, - -0.025687, - -0.00058913, - -0.043713, - 0.05031, - -0.029587, - -0.027413, - -0.0016954, - -0.011513, - -0.0015126, - -0.036712, - 0.011418, - -0.0088125, - -0.028058, - 0.016429, - 0.03569, - 0.029214, - -0.012457, - -0.061796, - -0.0073943, - -0.02191, - 0.030432, - 0.017563, - -0.048191, - 0.041583, - 0.079626, - 0.0064806, - 0.036446, - 0.0046773, - 0.025332, - 0.014213, - -0.056446, - 0.029838, - 0.058416, - 0.016487, - 0.0011653, - 0.0064607, - 0.042174, - 0.014699, - 0.011685, - -0.015319, - 0.0013989, - 0.052093, - 0.09723, - -0.021267, - 0.014535, - 0.08085, - 0.015959, - -0.065751, - -0.024364, - 0.081101, - -0.052043, - -0.029014, - -0.021217, - -0.03004, - 0.068038, - 0.0021677, - -0.008233, - -0.0044961, - 0.016051, - 0.037927, - -0.025005, - 0.0081864, - 0.031622, - 0.0054555, - 0.043293, - 0.056399, - 0.062248, - -0.024951, - -0.0038158, - -0.025865, - -0.028074, - -0.069746, - -0.0554, - -0.0041508, - -0.030134, - 0.026533, - 0.1191, - 0.013032, - -0.042223, - 0.084893, - 0.031289, - -0.010023, - 0.0051988, - 0.015566, - 0.023062, - 0.03013, - 0.0053228, - -0.071919, - -0.010643, - 0.0017352, - -0.10441, - 0.010153, - 0.0019046, - 0.03834, - -0.020523, - 0.051484, - 0.067066, - -0.013164, - 0.021487, - -0.038212, - 0.043007, - 0.009105, - 0.037589, - -0.048919, - -0.0062134, - -0.0077829, - 0.018301, - -0.0081674, - -0.029017, - 0.012862, - -0.026249, - -0.037652, - 0.11684, - 0.042731, - 0.03022, - -0.0034857, - 0.02555, - 0.074392, - -0.029265, - 0.03744, - 0.014652, - -0.021634, - -0.04829, - -0.052568, - 0.0088648, - -0.086799, - -0.024012, - -0.022268, - 0.066477, - -0.027227, - -0.050498, - 0.046793, - -0.0066092, - -0.011589, - 0.022154, - 0.096684, - 0.019422, - 0.0031329, - 0.0043335, - 0.0092582, - 0.086001, - -0.05623, - -0.015353, - -0.050839, - -0.00033331, - 0.032961, - -0.034852, - -0.029241, - 0.068498, - 0.0091763, - -0.0069952, - 0.0095151, - 0.033499, - 0.024358, - -0.013139, - -0.042548, - -0.025066, - -0.024875, - -0.067885, - -0.000428, - -0.10484, - -0.043953, - 0.01357, - 0.031074, - -0.028227, - 0.014755, - -0.060828, - 0.046219, - -0.031761, - -0.086057, - 0.047304, - -0.06042, - 0.033055, - 0.017384, - 0.050892, - -0.020993, - 0.02286, - -0.0050656, - -0.010397, - -0.010192, - 0.040341, - 0.030936, - -0.0012439, - -0.015027, - -0.035801, - 0.015282, - 0.0096015, - -0.016878, - -0.001521, - 0.023687, - -0.10947, - 0.066647, - 0.011194, - 0.025226, - -0.019086, - 0.014507, - 0.056126, - -0.052988, - -0.0079516, - -0.0036947, - -0.044494, - 0.089278, - -0.010338, - 0.049773, - -0.019239, - 0.13372, - -0.018023, - -0.038624, - 0.026777, - 0.005778, - -0.042359, - 0.007292, - 0.0089672, - -0.033761, - -0.0066698, - -0.070253, - 0.01175, - -0.020345, - -0.0046212, - 0.033169, - 0.007749, - 0.027658, - -0.051517, - -0.10162, - 0.023889 - ], - "office": [ - -0.029737, - -0.082066, - 0.030906, - -0.046028, - 0.058912, - -0.087411, - 0.045662, - -0.11105, - 0.067684, - -0.0025367, - -0.054353, - -0.10116, - -0.0010398, - 0.041861, - -0.032796, - 0.028527, - 0.1419, - 0.0015177, - 0.064029, - -0.030505, - 0.0011719, - 0.022158, - 0.024387, - 0.057714, - 0.023109, - -0.022709, - -0.014998, - 0.024318, - -0.059627, - 0.022651, - -0.033997, - 0.020039, - -0.076259, - -0.05863, - -0.023119, - 0.045066, - -0.020467, - -0.0064295, - 0.026024, - -0.076512, - -0.025001, - -0.11023, - 0.010468, - 0.012465, - -0.0046127, - 0.052619, - 0.023835, - -0.029611, - -0.023937, - 0.029265, - 0.05253, - -0.03185, - -0.026293, - 0.035538, - -0.12674, - 0.048528, - -0.050493, - -0.043787, - -0.06555, - -0.002188, - 0.011782, - 0.074673, - 0.1697, - 0.0094226, - -0.013281, - -0.021614, - -0.0082043, - -0.045337, - -0.021493, - 0.0028181, - 0.043497, - -0.033617, - 0.025891, - 0.0024708, - -0.017681, - 0.016509, - 0.013182, - -0.010318, - 0.0062301, - 0.062034, - -0.012041, - -0.020721, - -0.029478, - 0.047174, - -0.020178, - -0.05474, - -0.047457, - -0.081788, - 0.024425, - -0.0014934, - -0.042051, - 0.02056, - -0.10408, - 0.023748, - 0.013861, - 0.1139, - -0.0026332, - 0.035081, - 0.079179, - 0.019474, - 0.050047, - 0.022466, - 0.011667, - -0.053466, - 0.042096, - -0.083844, - 0.04847, - -0.037025, - 0.016774, - -0.062412, - -0.046282, - 0.16866, - 0.082479, - 0.12282, - -0.029755, - -0.01939, - 0.017848, - -0.06431, - -0.014514, - -0.010664, - 0.034363, - -0.056692, - 0.032732, - 0.019055, - 0.025689, - 0.024412, - 0.01336, - -0.075158, - 0.0264, - 0.096588, - -0.042831, - -0.0021819, - 0.036458, - -0.0095759, - -0.0472, - -0.052444, - -0.00094102, - 0.023468, - -0.027527, - -0.031614, - 0.062992, - -0.0037043, - 0.028208, - -0.0046542, - -0.024876, - 0.00096629, - -0.016205, - -0.026956, - 0.0017251, - -0.020516, - 0.022352, - 0.055054, - -0.0044794, - -0.10676, - 0.0040248, - 0.030885, - -0.047627, - -0.032083, - -0.040414, - 0.063163, - 0.046218, - 0.026478, - -0.018126, - -0.036031, - 0.015472, - -0.064752, - -0.0249, - -0.099816, - -0.039888, - 0.042249, - 0.03937, - -0.013862, - 0.02359, - -0.00015029, - -0.016413, - 0.036565, - -0.0076708, - 0.019695, - -0.058036, - 0.025141, - -0.043466, - -0.031457, - 0.035078, - -0.049963, - -0.066651, - 0.031522, - -0.020361, - 0.095999, - 0.035739, - -0.020907, - -0.050855, - 0.078847, - 0.00021896, - 0.084161, - 0.04037, - -0.032868, - -0.0042801, - -0.0051455, - -0.01701, - 0.039782, - -0.16625, - 0.056106, - -0.0020931, - 0.01974, - -0.045547, - -0.10443, - -0.0070745, - -0.043849, - -0.070604, - -0.060865, - 0.13393, - 0.0019823, - -0.032089, - 0.062903, - -0.12581, - 0.0059556, - -0.0014892, - -0.029503, - 0.054147, - -0.047064, - 0.0057061, - -0.027511, - -0.015684, - 0.10965, - 0.050069, - -0.013141, - 0.020315, - 0.025718, - -0.013212, - -0.0098202, - 0.0086767, - -0.081943, - -0.0077208, - 0.022044, - -0.034836, - 0.004433, - 0.011914, - -0.054662, - -0.022008, - -0.028825, - 0.14122, - -0.0082552, - -0.015286, - 0.00029537, - 0.01467, - 0.018895, - 0.0034517, - -0.04834, - -0.03535, - 0.04648, - -0.05867, - 0.031333, - -0.0048189, - 0.05766, - 0.058027, - -0.028072, - 0.01571, - 0.071158, - -0.017739, - -0.039841, - -0.025498, - 0.0064405, - -0.044471, - 0.018592, - 0.016559, - -0.0019828, - 0.011957, - -0.01717, - -0.061604, - -0.03696, - -0.097568, - 0.084175, - -0.14102, - -0.038384, - 0.028604, - -0.01927, - 0.0092754, - 0.048295, - -0.045608, - -0.026661, - 0.043255, - 0.013255, - -0.042054, - -0.0025479, - 0.030912, - 0.058147, - -0.060002, - -0.049946, - -0.061089, - -0.0030979, - 0.017787, - 0.10925, - 0.095132, - 0.069992, - -0.02916, - 0.067521, - -0.10465, - 0.03652, - 0.0010115, - -0.039303 - ], - "private-equity": [ - 0.065846, - -0.033906, - 0.018104, - 0.016239, - -0.024625, - -0.010321, - -0.011243, - -0.05803, - 0.014609, - 0.024244, - 0.011076, - 0.0026878, - 0.025073, - 0.025917, - -0.050715, - 0.024665, - 0.10173, - 0.051076, - 0.043573, - 0.0053548, - 0.038315, - 0.03846, - -0.055387, - 0.045048, - 0.0070372, - -0.0018001, - 0.019933, - 0.0075673, - 0.024388, - -0.01907, - -0.042997, - -0.012897, - -0.073163, - -0.022626, - 0.049497, - 0.031171, - -0.023144, - -0.025486, - 0.040005, - 0.08009, - -0.023824, - -0.091268, - -0.0038641, - 0.031131, - -0.036963, - 0.009496, - -0.027467, - -0.0043491, - -0.01153, - -0.0090804, - 0.025706, - 0.023586, - -0.010118, - -0.030269, - 0.012119, - -0.063648, - -0.031645, - -0.0082978, - -0.0066047, - 0.01682, - 0.0053029, - -0.031894, - 0.018935, - -0.0038938, - 0.017035, - -0.011185, - -0.028252, - -0.060183, - -0.01658, - -0.030501, - -0.031481, - 0.0075585, - 0.043935, - 0.042391, - -0.04769, - -0.032942, - -0.022509, - 0.012695, - -0.0010766, - 0.031627, - -0.019268, - 0.017306, - 0.00013827, - 0.018528, - -0.0097556, - -0.0035252, - -0.012739, - 0.0046137, - 0.033769, - -0.030952, - 0.0019744, - 0.036677, - -0.075139, - 0.014622, - 0.0094908, - 0.040846, - -0.042184, - -0.024541, - -0.014502, - -0.0018529, - -0.029292, - -0.035509, - 0.0055576, - -0.017095, - 0.029608, - -0.085708, - -0.024219, - 0.0085344, - -0.038148, - 0.021782, - -0.016499, - 0.075622, - -0.0068017, - 0.034204, - -0.0044407, - -0.0055014, - 0.0040817, - 0.036365, - -0.013694, - 0.056094, - 0.020901, - -0.025891, - 0.038467, - 0.011493, - 0.070338, - -0.010813, - -0.014931, - -0.022797, - 0.0035292, - 0.055286, - 0.012493, - 0.029379, - -0.0037249, - -0.0031963, - 0.019351, - -0.027067, - 0.045918, - 0.017479, - -0.0078958, - 0.0069381, - -0.022308, - -0.050874, - -0.035882, - 0.04072, - -0.019192, - -0.088072, - 0.051986, - -0.053092, - 0.0035776, - -0.080969, - 0.065662, - 0.11961, - 0.0035756, - -0.008471, - -0.015976, - -0.01897, - 0.0085439, - -0.035621, - 0.031491, - 0.0039604, - 0.010338, - 0.013846, - -0.020404, - 0.037278, - 0.0099295, - 0.017353, - -0.026036, - -0.04488, - 0.0038981, - -0.007518, - -0.035608, - -0.041268, - -0.028594, - 0.019163, - -0.026829, - 0.017685, - -0.05589, - -0.016094, - -0.060582, - -0.026968, - 0.025505, - -0.034644, - -0.00090406, - 0.056778, - 0.02021, - -0.042587, - -0.023534, - 0.084984, - -0.0085084, - 0.042458, - -0.053207, - 0.042383, - 0.029637, - 0.038249, - -0.018058, - 0.0021462, - 0.030778, - 0.0081053, - 0.02586, - -0.066428, - -0.10952, - 0.045834, - 0.00029207, - -0.045254, - 0.031936, - -0.013558, - 0.0059859, - -0.013245, - -0.016954, - -0.013393, - 0.11587, - -0.012954, - -0.013561, - -0.041021, - -0.035538, - 0.03624, - -0.021437, - -0.029969, - 0.026765, - 0.0076512, - 0.029185, - -0.013905, - 0.029337, - 0.045433, - 0.0064534, - 0.0062705, - 0.0098836, - -0.011361, - -0.002578, - -0.081062, - -0.00034917, - -0.007918, - -0.009721, - -0.0056948, - 0.030831, - -0.015464, - -0.017109, - -0.025177, - -0.010556, - 0.012212, - 0.012348, - -0.026753, - 0.026063, - -0.015008, - -0.027868, - 0.0037099, - -0.026437, - -0.0037159, - -0.012074, - 0.012445, - -0.016159, - -0.037691, - -0.035905, - -0.013984, - -0.041309, - 0.047823, - -0.060075, - 0.0060303, - 0.042938, - 0.025997, - 0.057844, - -0.024311, - 0.031452, - -0.0076532, - -0.0067553, - 0.064155, - -0.018183, - 0.018302, - -0.043314, - 0.03709, - -0.039295, - 0.046318, - -0.066576, - 0.0016449, - 0.0014069, - -0.048246, - 0.0044503, - -0.046305, - -0.019125, - -0.060907, - 0.097946, - -0.018407, - -0.017293, - 0.024914, - -0.032922, - -0.044717, - 0.0047806, - -0.024992, - -0.042041, - 0.028097, - -0.018567, - 0.01173, - -0.032151, - 0.014291, - 0.019293, - -0.03789, - -0.025967, - 0.021101, - 0.0057534, - -0.015997 - ], - "telecom": [ - 0.026255, - -0.083192, - -0.0099469, - -0.01965, - -0.014748, - -0.053773, - 0.12613, - -0.096989, - 0.13718, - -0.0064548, - 0.031011, - 0.0081045, - -0.073625, - 0.051023, - 0.012777, - 0.0032472, - 0.13499, - 0.00082231, - 0.04627, - 0.0023225, - -0.028293, - -0.055692, - 0.055905, - 0.084237, - 0.0094317, - -0.0674, - 0.086797, - 0.021856, - -0.050756, - -0.020991, - 0.041478, - -0.02453, - -0.085137, - -0.0040653, - 0.082152, - 0.0128, - 0.0083922, - 0.09384, - 0.070983, - 0.041114, - -0.13612, - -0.1382, - -0.012061, - 0.032648, - -0.048163, - 0.016352, - -0.11412, - -0.026617, - -0.034995, - -0.023935, - 0.058322, - -0.037999, - 0.077474, - -0.042862, - 0.0008253, - 0.040859, - -0.048082, - 0.022675, - 0.024697, - 0.099756, - -0.02096, - 0.080067, - 0.098317, - -0.041594, - 0.094916, - 0.0082444, - -0.028749, - -0.11985, - -0.033149, - -0.016388, - -0.056109, - -0.071012, - 0.033386, - 0.025301, - -0.019366, - -0.020817, - 0.0047227, - -0.0034053, - -0.075855, - -0.057388, - -0.050612, - 0.016936, - -0.037672, - -0.018452, - -0.011285, - -0.016298, - -0.10273, - -0.011701, - -0.044521, - -0.04133, - 0.086172, - 0.079052, - -0.11257, - -0.041878, - -0.0083137, - 0.10772, - -0.0067945, - -0.09593, - -0.010774, - -0.0016748, - 0.022548, - 0.027927, - -0.054654, - -0.082849, - 0.013139, - -0.13462, - 0.0027957, - -0.00025248, - 0.096417, - 0.024735, - -0.007627, - 0.092948, - 0.036527, - 0.018826, - -0.028888, - -0.013795, - -0.11458, - 0.0045668, - 0.0029586, - -0.0025334, - -0.009404, - 0.057105, - 0.059495, - -0.020907, - 0.038904, - 0.0075607, - 0.001122, - -0.087795, - 0.041763, - 0.04899, - 0.062923, - 0.015297, - -0.071603, - -0.020015, - 0.036617, - -0.018631, - 0.055021, - -0.036728, - -0.039031, - 0.080092, - 0.03853, - -0.0031353, - -0.0088674, - 0.046035, - -0.068868, - -0.084926, - -0.040093, - -0.0069773, - 0.035327, - -0.12428, - 0.045846, - 0.12357, - 0.033202, - -0.050486, - -0.002418, - -0.040153, - -0.043109, - -0.049261, - -0.0072333, - -0.019279, - 0.037904, - 0.058212, - -0.067803, - 0.0049501, - 0.0044102, - 0.004832, - -0.037179, - -0.063901, - -0.0080451, - -0.0050878, - 0.027908, - 0.12406, - 0.013053, - 0.15455, - -0.032029, - 0.051206, - -0.062025, - 0.071974, - -0.037831, - -0.011712, - -0.017045, - -0.01545, - -0.10903, - 0.026108, - -0.038602, - -0.012804, - -0.059653, - 0.16433, - 0.018227, - 0.059132, - -0.039164, - -0.0048838, - 0.062408, - 0.050464, - 0.062272, - 0.0044763, - -0.014118, - 0.0091268, - 0.018307, - 0.0020177, - -0.14787, - -0.043371, - 0.0035699, - 0.033779, - 0.015543, - 0.030465, - 0.034669, - -0.022686, - -0.072534, - 0.02077, - 0.14172, - -0.0040134, - -0.021829, - 0.004931, - -0.048925, - 0.043947, - 0.0030345, - -0.059797, - 0.033059, - -0.060324, - 0.037941, - -0.029149, - 0.022858, - 0.066699, - -0.053064, - 0.023559, - 0.033769, - 0.044177, - 0.012314, - -0.020048, - -0.0024252, - 0.0055635, - -0.055619, - -0.0038292, - 0.0083191, - -0.07597, - 0.022748, - 0.015229, - 0.035789, - -0.088416, - 0.048466, - -0.053609, - 0.096458, - -0.022471, - -0.0044573, - 0.0049455, - -0.0090602, - 0.068908, - -0.04012, - 0.0085002, - 0.024783, - -0.064905, - -0.050976, - 0.068375, - 0.0084848, - 0.10558, - -0.087105, - 0.026551, - -0.025648, - 0.086741, - -0.0065759, - 0.069473, - 0.02838, - 0.015971, - -0.0049907, - 0.013322, - 0.0083791, - 0.025702, - 0.050516, - -0.069417, - -0.026731, - 0.056606, - -0.071286, - 0.047435, - -0.041255, - 0.01041, - 0.033106, - 0.013814, - -0.026895, - 0.0080975, - 0.13155, - 0.014536, - 0.0018369, - 0.04887, - -0.055457, - -0.08489, - -0.070858, - -0.080355, - -0.049404, - -0.049304, - -0.0021484, - 0.00086086, - -0.018974, - 0.049307, - 0.047674, - -0.038733, - -0.042712, - 0.042601, - 0.12256, - -0.054523 - ], - "geopolitics": [ - 0.035901, - -0.10061, - 0.010521, - 0.029569, - 0.0045086, - -0.0096214, - -0.025321, - -0.054707, - 0.043689, - 0.06995, - 0.0063569, - -0.0621, - -0.013807, - 0.023214, - 0.058988, - -0.04194, - 0.077264, - 0.019033, - 0.05078, - -0.010397, - -0.015634, - 0.034884, - 0.069063, - 0.043814, - 0.012106, - 0.029076, - 0.018977, - -0.031725, - 0.044793, - 0.034349, - 0.045228, - 0.0074565, - -0.027018, - -0.043094, - 0.0053169, - 0.044358, - 0.021449, - 0.045654, - 0.083564, - 0.0050182, - -0.086522, - -0.088249, - -0.028841, - -0.015794, - -0.015455, - -0.018096, - -0.01809, - -0.0329, - -0.026649, - -0.0063825, - -0.03833, - -0.028429, - 0.0047052, - 0.048676, - -0.031807, - 0.023975, - 0.039953, - 0.03715, - -0.016509, - 0.046724, - -0.019452, - -0.0060087, - 0.049273, - 0.0030886, - 0.01333, - 0.0045452, - 0.023659, - 0.046045, - 0.050962, - 0.023385, - 0.028921, - -0.02545, - -0.012404, - -0.010455, - 0.054103, - 0.032893, - 0.028987, - -0.035496, - -0.015295, - -0.023891, - -0.034836, - -0.014683, - -0.051636, - 0.10069, - -0.027768, - -0.0097319, - -0.0065562, - -0.018445, - 0.034006, - 0.043809, - 0.054373, - 0.012102, - -0.067698, - 0.035508, - 0.013793, - 0.039174, - -0.054605, - -0.049087, - -0.026425, - -0.063782, - 0.047879, - 0.049855, - -0.022456, - -0.042833, - -0.0034893, - -0.045361, - -0.0084156, - 0.059233, - -0.013703, - -0.046647, - -0.030541, - 0.059715, - 0.012023, - -0.048066, - -0.026028, - -0.010611, - 0.011026, - 0.033158, - -0.038015, - 0.099548, - 0.02044, - -0.034506, - 0.0061044, - -0.00047148, - 0.036278, - 0.023079, - -0.065931, - -0.032149, - -0.020481, - 0.14586, - -0.0014846, - 0.0053641, - 0.0013165, - 0.044385, - -0.0073926, - 0.01428, - 0.039433, - 0.029078, - 0.022491, - 0.05329, - 0.021563, - -0.064711, - -0.00087221, - 0.024937, - 0.020037, - -0.065313, - 0.025153, - -0.024065, - 0.017551, - -0.0065165, - 0.031725, - 0.063948, - -0.030865, - -0.042571, - -0.017111, - 0.035394, - 0.0055314, - 0.0261, - -0.026394, - 0.004539, - 0.041578, - -0.010105, - -0.11013, - 0.0052113, - -0.11048, - -0.003272, - -0.0024626, - -0.013151, - 0.041692, - -0.035181, - -0.044351, - 0.040743, - -0.056466, - -0.00095549, - -0.027233, - 0.043545, - -0.024022, - -0.0090131, - -0.0074897, - 0.046173, - -0.011725, - 0.055258, - 0.040244, - -0.036902, - 0.01109, - -0.051048, - -0.01402, - 0.085199, - 0.067638, - 0.0011974, - 0.018045, - 0.06063, - -0.058827, - -0.016364, - 0.021402, - 0.045619, - -0.0075234, - 0.032603, - -0.018181, - 0.064982, - -0.10911, - -0.029504, - -0.017856, - -0.094555, - -0.0054813, - 0.0096948, - -0.0063833, - -0.015569, - 0.014722, - 0.0088655, - 0.071636, - 0.017206, - 0.0142, - -0.011413, - 0.035191, - 0.078808, - 0.016494, - -0.091564, - -0.079328, - -0.03952, - 0.011069, - 0.018186, - -0.090825, - 0.058375, - -0.022377, - 0.050818, - 0.027098, - 0.059924, - -0.018373, - -0.0094993, - 0.015331, - -0.026851, - -0.046092, - -0.032974, - -0.011403, - -0.014557, - 0.012287, - 0.0082388, - 0.038731, - -0.057977, - -0.019025, - 0.050637, - -0.028584, - 0.018819, - 0.013143, - 0.016451, - -0.055608, - -0.028605, - 0.016008, - 0.0057602, - 0.032438, - -0.032837, - -0.080105, - 0.0029298, - 0.0057321, - 0.029705, - -0.014745, - 0.041326, - 0.016239, - 0.04041, - 0.011471, - -0.00072359, - -0.0080659, - 0.0033777, - 0.013716, - 0.017544, - 0.006286, - 0.027093, - 0.065804, - 0.0098854, - -0.022811, - 0.049024, - -0.088264, - -0.0005927, - 0.021646, - -0.042207, - -0.0084622, - -0.01012, - -0.035316, - -0.014828, - 0.045718, - 0.015012, - 0.0034897, - -0.014082, - 0.0053648, - -0.029036, - 0.018352, - -0.0045471, - -0.026906, - -0.045438, - -0.03397, - 0.016393, - -0.031576, - 0.039849, - 0.013485, - -0.00068344, - 0.028498, - 0.066347, - -0.045325, - 0.013422 - ], - "foreclosure": [ - 0.050508, - -0.021111, - 0.049303, - 0.059024, - 0.0016957, - -0.015055, - -0.041823, - -0.045752, - 0.025926, - 0.00034492, - 0.012976, - -0.030378, - -0.042105, - 0.019357, - -0.032138, - -0.042527, - 0.081289, - -0.045144, - 0.031491, - -0.055655, - 0.015511, - -0.041406, - -0.044991, - 0.067792, - -0.016827, - -0.0036249, - -0.0081417, - 0.05039, - 0.01567, - -0.013074, - -0.019463, - -0.06759, - -0.042047, - -0.069157, - 0.01002, - 0.0073016, - 0.00039465, - 0.053217, - -0.05638, - -0.0055605, - 0.022574, - -0.093996, - -0.0095999, - 0.016254, - 0.0042102, - 0.036145, - -0.034777, - 0.056382, - -0.046883, - -0.010827, - 0.041316, - -0.0032084, - -0.0099689, - -0.035991, - -0.072726, - -0.082068, - -0.087235, - 0.002849, - -0.0090411, - -0.023772, - 0.016335, - 0.012921, - 0.0044832, - -0.031794, - -0.028297, - -0.059767, - -0.040074, - -0.019232, - 0.0088142, - -0.012419, - -0.05015, - 0.015182, - -0.014751, - -0.047067, - 0.032509, - -0.0039513, - -0.12595, - -0.019296, - -0.013234, - -0.016704, - 0.011216, - 0.016246, - -0.0327, - 0.033235, - -0.0084512, - 0.008369, - 0.0050768, - 0.002662, - 0.076852, - -0.0005725, - -0.020946, - 0.014692, - -0.071481, - 0.012163, - -0.06497, - 0.0087605, - -0.071025, - -0.096829, - -0.021088, - -0.027569, - -0.020463, - -0.033887, - -0.039431, - 0.018278, - 0.042738, - -0.027057, - -0.045589, - 0.063346, - 0.043601, - -0.064327, - -0.025545, - 0.030612, - 0.053585, - 0.072349, - 0.047453, - -0.031757, - 0.01377, - -0.017982, - -0.025593, - -0.057418, - -0.088006, - -0.045148, - 0.12949, - 0.033832, - 0.039617, - -0.018761, - 0.00072295, - -0.072494, - 0.0020264, - 0.055055, - 0.047163, - -0.020767, - 0.025653, - 0.025685, - 0.011849, - 0.035313, - 0.010238, - 0.0079821, - 0.0068178, - -0.049749, - 0.037674, - 0.013057, - -0.036262, - -0.012616, - -0.022746, - -0.065185, - 0.0054297, - -0.0080897, - -0.016319, - -0.0064221, - 0.0073125, - 0.03767, - -0.015917, - -0.048637, - 0.0052947, - 0.021125, - 0.045459, - -0.03129, - 0.069822, - -0.019148, - 0.067156, - 0.064274, - -0.087496, - -0.0072827, - 0.061813, - -0.02232, - 0.015948, - -0.064742, - 0.021294, - 0.052196, - -0.016669, - 0.00043757, - 0.069304, - -0.03566, - -0.055845, - 0.035785, - 0.049811, - -0.0093136, - -0.031014, - -0.041601, - 0.050675, - -0.12098, - -0.016603, - -0.013758, - -0.036117, - -0.01121, - -0.043752, - 0.085985, - 0.018961, - -0.036494, - -0.03934, - -0.024096, - -0.0068353, - -0.0017074, - 0.012483, - -0.0099444, - 0.052632, - 0.050422, - 0.041337, - 0.011598, - -0.14987, - 0.062424, - -0.038915, - -0.0026727, - 0.090119, - -0.058277, - 0.068793, - -0.11573, - -0.01487, - -0.0044059, - 0.082778, - -0.0024533, - 0.021778, - -0.017352, - 0.097004, - 0.034962, - 0.087278, - 0.051536, - 0.026427, - -0.13972, - 0.034111, - -0.01051, - -0.021438, - 0.041266, - -0.012887, - -0.043787, - -0.010265, - 0.051324, - -0.070912, - -0.016044, - -0.0044487, - -0.050367, - -0.00037412, - 0.016527, - 0.037871, - 0.0090047, - -0.031105, - 0.027063, - 0.027159, - 0.024842, - 0.028495, - 0.052317, - 0.0097594, - -0.015937, - -0.047185, - -0.0069116, - -0.013653, - -0.014569, - 0.0034377, - 0.041143, - -0.0062282, - -0.056152, - 0.051439, - 0.0013895, - -0.0054953, - -0.0058583, - 0.032738, - 0.010676, - -0.025203, - -0.0208, - 0.033211, - -0.00345, - -0.0030951, - -0.0041191, - 0.010738, - -0.058003, - -0.0049487, - 0.032667, - 0.023123, - -0.0077359, - -0.10905, - 0.064472, - -0.11995, - -0.031377, - -0.029579, - -0.013657, - -0.031178, - 0.11528, - 0.04297, - -0.060985, - 0.084817, - -0.0052011, - 0.0072426, - 0.033868, - -0.0045369, - 0.027682, - 0.018617, - 0.042905, - -0.055233, - 0.038376, - -0.007663, - -0.02371, - -0.0091815, - 0.04099, - -0.00557, - 0.035528, - -0.026689, - 0.014866, - -0.034849, - 0.010751 - ], - "kitten": [ - 0.036319, - -0.029746, - -0.0091097, - -0.066206, - -0.051475, - 0.051337, - 0.064773, - -0.096837, - -0.0085167, - 0.042471, - -0.012696, - 0.04167, - 0.077377, - -0.03956, - -0.088137, - -0.022606, - 0.022166, - -0.025575, - -0.0016764, - -0.0073718, - 0.066238, - -0.044728, - -0.028448, - 0.047182, - 0.14214, - 0.030845, - 0.007327, - 0.031122, - 0.026203, - -0.043033, - -0.015475, - -0.087399, - 0.045337, - 0.042428, - -0.0017562, - -0.077914, - 0.0050472, - -0.12102, - 0.017789, - -0.033338, - -0.045352, - -0.093049, - -0.05688, - 0.0082417, - 0.079587, - 0.045596, - -0.0003763, - 0.02156, - 0.057415, - 0.026075, - 0.092784, - 0.038837, - 0.055672, - -0.046676, - 0.0099076, - -0.11546, - 0.082793, - -0.059475, - -0.055973, - 0.031209, - -0.013284, - -0.17155, - 0.13325, - -0.018818, - 0.005941, - 0.034076, - 0.02078, - -0.00009196, - -0.059713, - -0.11996, - 0.010692, - 0.028074, - 0.10559, - -0.01242, - -0.0046863, - 0.058185, - -0.049198, - -0.065027, - -0.060096, - -0.067181, - 0.053135, - -0.061747, - 0.11208, - 0.011393, - 0.03164, - -0.032403, - -0.042126, - -0.035514, - 0.088837, - 0.019058, - 0.0071965, - 0.010184, - -0.12637, - -0.027134, - 0.080875, - 0.067152, - 0.10446, - 0.095994, - 0.0051537, - 0.028231, - -0.016202, - 0.024285, - -0.059212, - 0.037436, - -0.011023, - -0.1368, - -0.0093059, - -0.01376, - -0.0060236, - -0.0080261, - -0.051265, - 0.048059, - -0.012053, - 0.032129, - -0.070142, - 0.044891, - 0.055589, - -0.0024517, - -0.0027999, - -0.0041802, - -0.077406, - 0.11436, - 0.019836, - -0.084364, - 0.082994, - 0.066294, - 0.044522, - -0.11296, - -0.041137, - -0.0072169, - -0.053575, - -0.035716, - -0.012299, - 0.057612, - -0.0042234, - -0.055005, - -0.024416, - 0.097826, - 0.094023, - -0.078398, - -0.0077185, - 0.059947, - 0.020312, - -0.028488, - 0.055078, - 0.0020255, - 0.049476, - -0.070421, - 0.0087486, - -0.079204, - -0.045394, - 0.038111, - -0.013346, - -0.053478, - -0.090301, - -0.037582, - 0.033871, - -0.067112, - -0.045586, - -0.03669, - 0.055248, - -0.11181, - -0.01516, - 0.067133, - 0.0048249, - -0.020922, - -0.01488, - 0.0069008, - -0.05927, - 0.047693, - -0.066096, - 0.15492, - -0.096049, - 0.018306, - 0.029468, - 0.097851, - 0.032278, - 0.040693, - 0.014149, - -0.02859, - -0.010685, - -0.082851, - -0.078297, - -0.048431, - -0.064428, - -0.078846, - -0.03675, - 0.16643, - -0.025024, - -0.097027, - -0.017122, - -0.0028307, - -0.025389, - -0.093148, - 0.052386, - 0.038483, - -0.004365, - 0.054113, - 0.026554, - 0.0369, - -0.15194, - 0.13312, - 0.027733, - -0.037206, - -0.021703, - -0.054072, - -0.057512, - -0.029424, - 0.035658, - -0.10211, - 0.10286, - -0.025114, - -0.064378, - -0.022406, - 0.042024, - -0.0050891, - 0.033403, - -0.024089, - 0.063734, - 0.032903, - -0.0095444, - 0.04198, - -0.0090712, - 0.076433, - 0.075722, - -0.010296, - -0.010822, - 0.12814, - 0.057098, - -0.0022037, - -0.015323, - -0.094375, - -0.045147, - -0.015868, - 0.043475, - 0.012956, - 0.048498, - -0.033344, - -0.078626, - -0.096379, - 0.056717, - -0.0026119, - 0.031061, - -0.059066, - -0.017304, - 0.083035, - 0.027378, - 0.040637, - -0.069257, - -0.037184, - 0.037349, - 0.016749, - -0.022274, - 0.037393, - 0.041704, - -0.055025, - 0.038303, - -0.043331, - 0.0044235, - 0.029011, - -0.023865, - -0.061672, - 0.042119, - -0.025228, - 0.018295, - -0.0060183, - 0.015175, - -0.04136, - 0.03922, - 0.071863, - -0.084569, - 0.073738, - -0.12544, - -0.021786, - 0.028785, - -0.03936, - 0.00046549, - -0.03656, - -0.018291, - -0.013149, - 0.053962, - 0.0074417, - 0.092818, - -0.034873, - -0.069228, - 0.037555, - -0.085177, - -0.0037184, - 0.030184, - 0.036267, - -0.0266, - 0.025308, - -0.13243, - -0.045275, - 0.030876, - -0.018302, - 0.075297, - 0.048814, - -0.0088107, - 0.115 - ], - "trade": [ - -0.038156, - -0.017359, - 0.02176, - -0.050184, - -0.059475, - -0.064991, - 0.028681, - -0.12616, - 0.14449, - 0.044457, - -0.07001, - -0.068248, - -0.062066, - 0.0089456, - 0.061199, - 0.02732, - 0.14441, - -0.047758, - 0.090869, - 0.018819, - -0.016782, - 0.011571, - 0.054601, - 0.062947, - -0.11624, - -0.062722, - -0.023334, - -0.041213, - -0.032303, - -0.013732, - -0.028692, - 0.08211, - 0.0015764, - -0.047512, - 0.050825, - 0.069258, - 0.058131, - 0.055097, - -0.0020131, - 0.095671, - -0.021281, - -0.16174, - 0.010041, - 0.034649, - -0.0036378, - 0.0136, - -0.049318, - 0.093831, - -0.0092321, - 0.019779, - -0.047939, - -0.019443, - 0.007303, - -0.065139, - -0.11589, - 0.018685, - -0.013242, - 0.0069187, - -0.042966, - -0.048943, - -0.075077, - -0.028385, - 0.16824, - 0.019287, - -0.0022436, - -0.070127, - -0.0033519, - -0.045835, - 0.13278, - -0.061097, - -0.040722, - -0.0097596, - 0.083124, - -0.032317, - 0.033292, - 0.13413, - 0.0060629, - 0.0019651, - 0.036261, - -0.064076, - 0.0077753, - -0.02308, - -0.1189, - 0.066998, - -0.030162, - -0.05005, - 0.0037867, - -0.0098566, - -0.0085405, - -0.026977, - 0.019948, - 0.093571, - -0.13191, - -0.011723, - -0.011375, - 0.042122, - 0.057723, - 0.022964, - 0.033638, - -0.04233, - 0.016233, - -0.048506, - -0.07009, - -0.035473, - 0.054724, - -0.12214, - 0.0070133, - 0.0011318, - 0.02422, - -0.0069535, - -0.055098, - 0.075443, - 0.091165, - 0.087083, - -0.044596, - -0.0057211, - 0.013085, - 0.065937, - -0.088209, - 0.052643, - 0.066735, - -0.037251, - -0.035318, - 0.0019167, - 0.10609, - -0.011501, - -0.043193, - -0.072485, - 0.011954, - 0.14248, - 0.028248, - -0.007477, - -0.06986, - 0.017036, - 0.018988, - 0.013013, - -0.050947, - 0.028044, - -0.0071281, - 0.055055, - -0.00027991, - 0.069687, - -0.033471, - 0.011481, - 0.045564, - -0.028979, - 0.029009, - -0.0825, - 0.054936, - -0.055003, - -0.0068704, - 0.14803, - -0.032376, - -0.1371, - 0.069681, - -0.006797, - -0.0022124, - -0.078987, - -0.048713, - -0.009159, - 0.061753, - -0.040598, - -0.11236, - 0.042066, - 0.0048969, - 0.015084, - 0.079349, - -0.06107, - -0.0047607, - 0.015046, - 0.055553, - 0.058722, - -0.022734, - 0.025968, - -0.0083609, - 0.05026, - -0.066905, - 0.061384, - -0.049224, - 0.056086, - -0.01978, - 0.038798, - 0.052223, - 0.02094, - 0.043546, - -0.083154, - -0.025467, - 0.10626, - 0.022215, - -0.002531, - -0.10938, - 0.0526, - -0.0033885, - 0.00048758, - 0.0028818, - -0.020401, - 0.011483, - 0.087336, - 0.024968, - 0.084047, - -0.23407, - 0.060591, - 0.033465, - -0.049488, - 0.000089033, - 0.11964, - -0.08275, - -0.0054006, - 0.13566, - -0.008492, - 0.14502, - 0.031992, - -0.0000055405, - -0.046471, - 0.029612, - 0.082055, - -0.030532, - 0.014761, - 0.032807, - -0.055079, - 0.047141, - -0.055056, - -0.029781, - 0.13037, - -0.020283, - -0.0057002, - -0.0069886, - 0.072095, - 0.053924, - -0.034707, - -0.02869, - -0.06481, - -0.063941, - -0.076682, - 0.0078097, - -0.092486, - -0.029128, - 0.027861, - 0.048998, - -0.014741, - 0.094494, - 0.096656, - 0.042657, - -0.088481, - -0.057174, - 0.024507, - -0.05271, - -0.041036, - 0.09949, - 0.024804, - 0.061123, - -0.099819, - -0.0049094, - 0.010511, - 0.040916, - -0.047384, - -0.08886, - 0.015497, - 0.0043422, - -0.017089, - 0.013685, - 0.065358, - 0.027816, - -0.040756, - -0.02585, - 0.11247, - 0.076632, - 0.035822, - -0.015076, - -0.0032792, - 0.0053812, - 0.12973, - -0.13797, - -0.05466, - -0.058793, - -0.0071642, - -0.0090546, - 0.01206, - -0.06224, - -0.049083, - 0.1259, - 0.13449, - -0.020419, - -0.044958, - -0.032205, - 0.044637, - -0.013009, - 0.029248, - -0.077785, - 0.0082422, - -0.05123, - 0.096937, - -0.035174, - -0.0049664, - -0.073891, - -0.034043, - -0.00063592, - 0.011095, - -0.055134, - -0.074063 - ], - "principles": [ - -0.01579, - -0.03359, - -0.019958, - 0.025441, - -0.030032, - -0.054953, - 0.0050838, - -0.072216, - -0.012304, - 0.0082187, - 0.0074037, - -0.050949, - 0.015138, - -0.03512, - 0.036999, - -0.021572, - 0.070778, - 0.029932, - 0.055449, - 0.046304, - -0.013414, - 0.0233, - 0.086663, - 0.056375, - -0.029712, - -0.018552, - -0.040722, - -0.0099952, - 0.091011, - -0.0082698, - 0.01152, - -0.015773, - 0.0099244, - -0.063871, - 0.025096, - -0.0064178, - -0.033651, - 0.0031788, - -0.0054177, - 0.011774, - 0.0041982, - -0.10855, - -0.030896, - 0.0093895, - -0.030111, - -0.060414, - -0.029211, - -0.04523, - 0.021407, - -0.049043, - 0.022624, - 0.015349, - 0.01073, - 0.01923, - -0.048623, - 0.014484, - 0.044221, - -0.0062599, - -0.044371, - 0.042307, - 0.0069906, - -0.0069645, - 0.13278, - -0.0095748, - 0.045124, - 0.0096136, - -0.020828, - 0.0045123, - 0.019405, - 0.014956, - 0.00043636, - 0.011383, - -0.01879, - 0.0059778, - -0.0031739, - -0.015243, - -0.016717, - -0.055431, - -0.051665, - 0.0034407, - -0.0069216, - -0.00036616, - -0.012482, - 0.066845, - 0.0079852, - -0.0017631, - 0.016952, - 0.0039492, - 0.037244, - 0.047085, - 0.012971, - -0.040032, - -0.088675, - 0.026422, - -0.019976, - 0.02975, - 0.018802, - -0.016674, - -0.010748, - 0.027258, - 0.041333, - 0.012291, - 0.00099638, - -0.024844, - -0.040711, - -0.02008, - 0.061951, - 0.036734, - -0.072656, - -0.023792, - -0.015086, - 0.01389, - 0.049411, - -0.046833, - 0.046971, - -0.017716, - -0.02215, - 0.0067879, - -0.025798, - -0.039406, - 0.0057207, - -0.044232, - 0.016238, - -0.07655, - 0.076904, - 0.041634, - -0.0030871, - -0.017356, - 0.010825, - 0.14518, - 0.029755, - 0.034088, - 0.018144, - 0.026742, - -0.044947, - 0.0045196, - 0.039326, - 0.030473, - -0.030987, - -0.04213, - 0.0043893, - -0.0040287, - -0.01945, - 0.034794, - 0.0078087, - -0.00017212, - 0.019307, - -0.012981, - 0.012373, - -0.044802, - 0.030021, - 0.069515, - 0.0066988, - -0.051237, - 0.04015, - 0.074394, - 0.00033854, - -0.012476, - 0.012863, - -0.0043992, - 0.045692, - 0.0022428, - -0.045363, - 0.038384, - 0.00051705, - -0.048006, - 0.043593, - -0.021224, - -0.030412, - -0.00267, - -0.002264, - 0.006859, - 0.0063216, - 0.007124, - -0.019219, - 0.041099, - -0.046367, - 0.057258, - -0.045662, - -0.00939, - 0.0067019, - 0.0040714, - 0.025035, - 0.0092215, - 0.035086, - -0.025332, - 0.037346, - 0.08367, - -0.0042251, - -0.015955, - -0.012403, - 0.10858, - -0.06524, - -0.035929, - 0.021547, - -0.019919, - 0.024474, - 0.010874, - -0.019419, - 0.0019583, - -0.10802, - 0.0016941, - 0.040193, - -0.025759, - -0.028778, - -0.0016613, - 0.046672, - -0.045246, - 0.0022041, - -0.0079234, - 0.076879, - 0.040975, - 0.024307, - 0.0043982, - -0.0026065, - 0.059172, - 0.079923, - -0.011746, - -0.10049, - -0.054473, - -0.022478, - -0.00946, - 0.0078985, - 0.072418, - 0.096627, - 0.030502, - 0.026093, - 0.06286, - 0.0044021, - -0.012215, - 0.032174, - -0.035857, - -0.08585, - 0.021139, - 0.010821, - 0.010102, - -0.047325, - -0.028914, - -0.0099924, - 0.11638, - -0.0084612, - 0.0049551, - 0.031943, - 0.023524, - -0.017833, - -0.023905, - -0.026625, - -0.047333, - -0.018618, - 0.051965, - 0.019059, - 0.01737, - 0.0049316, - -0.019907, - 0.0094612, - -0.014896, - 0.0087219, - 0.066534, - -0.044754, - 0.029714, - -0.01271, - 0.063611, - 0.018579, - -0.040908, - 0.045329, - 0.012269, - 0.034583, - 0.033091, - -0.043991, - 0.000078028, - 0.042252, - 0.069387, - -0.097586, - -0.077088, - 0.078684, - -0.0069672, - 0.0052451, - 0.050489, - 0.052585, - -0.03891, - 0.071142, - -0.041027, - -0.04155, - -0.032986, - 0.016499, - -0.017086, - -0.059482, - 0.054296, - -0.015616, - 0.057661, - -0.0021667, - 0.03743, - 0.071029, - -0.093878, - -0.027256, - -0.013829, - 0.029319, - 0.011069, - -0.08052, - 0.024558 - ], - "foodstuff": [ - -0.034037, - -0.037243, - -0.040633, - 0.0041687, - 0.011821, - -0.079351, - -0.0092878, - -0.066378, - 0.010137, - 0.0043051, - -0.038149, - -0.0035184, - -0.019159, - -0.012636, - 0.046481, - 0.023596, - 0.020664, - 0.032869, - 0.012091, - 0.047578, - 0.053953, - 0.010081, - 0.060414, - 0.030278, - -0.015482, - -0.056009, - -0.023101, - 0.071484, - 0.057983, - -0.046339, - 0.086208, - -0.018668, - 0.082736, - -0.081961, - 0.026911, - 0.024968, - 0.018372, - 0.010837, - 0.031436, - 0.024591, - -0.0095698, - -0.12058, - -0.017577, - 0.011726, - 0.093207, - -0.053827, - -0.057682, - -0.075637, - 0.0068546, - -0.032156, - -0.032115, - -0.0071068, - 0.011423, - -0.039115, - -0.061861, - 0.089308, - 0.042585, - -0.007696, - -0.019457, - -0.076464, - 0.0062443, - -0.03122, - 0.14952, - 0.033444, - 0.019479, - 0.019828, - 0.069471, - 0.047847, - -0.0186, - -0.044479, - 0.020995, - 0.006133, - -0.02849, - -0.043995, - -0.051274, - 0.011512, - -0.037848, - -0.046378, - -0.0026282, - -0.0089134, - 0.017426, - 0.012693, - -0.014683, - 0.085401, - -0.025167, - 0.034118, - -0.045462, - -0.031399, - 0.024928, - -0.0020405, - -0.0011345, - -0.03345, - -0.05378, - 0.054297, - -0.023626, - 0.040314, - -0.0069214, - 0.043969, - 0.027982, - 0.0047495, - -0.055991, - -0.013054, - -0.031814, - 0.032523, - -0.062638, - -0.069611, - -0.089816, - 0.056406, - 0.052558, - 0.036947, - 0.029098, - 0.10042, - 0.040211, - 0.057808, - 0.018445, - -0.011939, - 0.0078794, - 0.015565, - -0.047886, - -0.019676, - -0.059897, - 0.06117, - -0.043685, - -0.090878, - 0.077124, - 0.0012286, - 0.012131, - -0.026788, - 0.041969, - 0.0424, - 0.014645, - -0.011543, - -0.0083979, - -0.030868, - 0.0097009, - -0.026508, - -0.063551, - 0.033188, - 0.063785, - 0.026302, - -0.031903, - 0.016291, - -0.011983, - 0.014933, - -0.00204, - -0.0053813, - 0.025017, - 0.058051, - -0.021872, - 0.01017, - 0.0046671, - 0.0353, - -0.040827, - -0.062157, - 0.074849, - -0.025833, - -0.11478, - 0.025659, - -0.027219, - 0.033801, - 0.0532, - -0.054157, - -0.057578, - 0.021063, - -0.015978, - -0.0063632, - -0.028295, - -0.0079383, - 0.11275, - -0.0019426, - 0.02341, - 0.035398, - -0.010389, - 0.018946, - -0.041447, - 0.035982, - -0.0080117, - 0.061747, - 0.0013581, - 0.050128, - -0.0060563, - 0.0045866, - 0.022319, - -0.085907, - 0.022355, - -0.078863, - 0.016036, - 0.080583, - -0.0095626, - -0.10413, - 0.039569, - 0.11015, - -0.029689, - -0.029917, - 0.0071796, - 0.056521, - 0.00068845, - -0.030681, - -0.039796, - 0.052729, - -0.12951, - 0.047565, - -0.014591, - -0.031113, - -0.048736, - 0.0085962, - -0.0026058, - -0.001747, - 0.024119, - -0.016242, - 0.061786, - -0.021841, - -0.0048181, - -0.017126, - 0.070988, - 0.024653, - -0.025346, - 0.026331, - 0.0034031, - 0.032341, - 0.01352, - 0.0048841, - 0.014178, - 0.076256, - 0.0017242, - 0.033528, - 0.053604, - 0.035878, - -0.029709, - 0.012993, - -0.051366, - -0.0020936, - -0.062298, - -0.060352, - 0.019714, - -0.044834, - -0.052401, - 0.017713, - 0.039547, - -0.099366, - -0.0046498, - 0.017834, - -0.007646, - -0.019723, - -0.017671, - 0.002074, - -0.012212, - 0.04933, - -0.013389, - 0.0098219, - -0.013164, - -0.053747, - 0.021079, - 0.0082428, - -0.069057, - 0.021036, - 0.011244, - -0.015937, - 0.071339, - 0.0054839, - 0.0066624, - -0.046999, - 0.026754, - -0.034083, - 0.018806, - 0.010186, - -0.031464, - -0.077078, - -0.022071, - 0.047995, - -0.0013569, - 0.061768, - -0.055066, - -0.052379, - -0.016923, - -0.023429, - 0.021949, - -0.034216, - -0.063956, - -0.0069616, - 0.092512, - 0.045838, - -0.037084, - 0.0070628, - -0.053114, - 0.10213, - -0.0096472, - 0.011165, - 0.020248, - 0.0036261, - 0.01895, - 0.061715, - -0.029826, - -0.016731, - -0.031763, - -0.039969, - 0.0046203, - -0.0087709, - -0.050896, - 0.00061834 - ], - "fashioning": [ - -0.0087951, - -0.049506, - -0.0086829, - -0.01435, - -0.0039122, - -0.033949, - -0.02905, - -0.086897, - -0.044629, - 0.0054221, - 0.013927, - -0.025589, - -0.068121, - 0.022407, - 0.0060909, - -0.0001208, - 0.05808, - 0.03484, - 0.041156, - 0.071678, - 0.018592, - 0.0082591, - -0.018126, - 0.041171, - 0.038001, - -0.024844, - 0.026525, - 0.035711, - 0.0055975, - -0.037345, - -0.021831, - -0.045699, - 0.028735, - -0.078598, - 0.020713, - 0.03884, - -0.0044099, - 0.022717, - 0.016698, - 0.020503, - -0.025075, - -0.067054, - -0.013432, - 0.036984, - 0.00080171, - -0.054437, - 0.018269, - 0.011788, - -0.044115, - -0.023454, - -0.02025, - 0.00042357, - -0.049351, - 0.061406, - -0.057195, - -0.033935, - 0.040413, - -0.027273, - 0.0025954, - -0.015736, - -0.055914, - -0.021393, - 0.067697, - -0.028044, - 0.085314, - 0.0082873, - -0.024079, - 0.026264, - -0.0096226, - -0.0097751, - -0.014947, - -0.024089, - 0.033164, - -0.055479, - -0.0013777, - 0.0073392, - 0.039197, - -0.055137, - -0.011834, - 0.018192, - -0.014043, - -0.042775, - -0.0090868, - 0.044261, - 0.036004, - 0.0056906, - -0.014883, - -0.04326, - -0.013931, - 0.0018103, - 0.059053, - -0.040392, - -0.054874, - 0.077358, - 0.027884, - 0.025308, - -0.028261, - -0.021297, - 0.077934, - 0.019075, - 0.02596, - 0.0047542, - 0.041329, - 0.051934, - -0.032361, - -0.028513, - 0.0062386, - 0.030242, - -0.030573, - -0.042006, - 0.00097321, - 0.018503, - 0.041398, - -0.002827, - -0.046592, - 0.0005215, - -0.011055, - -0.0014885, - -0.059498, - 0.032592, - -0.031662, - -0.0078118, - -0.0063735, - -0.022256, - 0.02172, - -0.021802, - 0.0017387, - -0.0028976, - 0.064678, - 0.078974, - 0.025872, - -0.00099637, - -0.020089, - 0.026687, - -0.0072255, - -0.010101, - -0.01624, - -0.037869, - 0.0081394, - -0.029933, - 0.038991, - -0.020982, - 0.01276, - 0.053133, - -0.0010093, - -0.018772, - 0.00052708, - 0.01804, - 0.04085, - -0.017531, - 0.038175, - 0.0002998, - 0.013372, - -0.093782, - -0.016555, - -0.021134, - 0.042789, - -0.0358, - 0.026065, - -0.019773, - 0.015664, - 0.01015, - -0.014116, - 0.045659, - 0.015281, - 0.035883, - 0.031009, - -0.034625, - -0.036636, - -0.032901, - 0.036052, - 0.026263, - -0.034744, - -0.06898, - -0.026399, - 0.0032545, - 0.0076929, - 0.065677, - -0.028335, - -0.0018703, - 0.0051096, - 0.0252, - -0.017227, - -0.048906, - -0.010919, - -0.034317, - 0.020122, - 0.086512, - 0.013118, - 0.021144, - 0.021512, - 0.01942, - -0.029591, - -0.016625, - 0.0030679, - 0.026017, - 0.015753, - 0.016613, - 0.019964, - -0.0097657, - -0.15169, - 0.083393, - 0.068861, - 0.056186, - -0.0028908, - 0.041285, - 0.032885, - 0.038024, - 0.035086, - 0.0073935, - 0.04553, - 0.025658, - 0.05465, - 0.036132, - 0.0024946, - 0.0099536, - 0.0053553, - -0.054264, - -0.024673, - 0.0093084, - -0.058632, - -0.0031755, - -0.0068355, - 0.075287, - -0.013981, - -0.012022, - 0.047195, - 0.048401, - -0.01021, - 0.02841, - -0.025796, - -0.012956, - -0.027727, - -0.020693, - 0.0030029, - -0.0078352, - -0.031734, - -0.044869, - 0.040364, - -0.027167, - 0.07463, - 0.01386, - -0.041654, - 0.051592, - -0.073289, - 0.038882, - -0.060304, - -0.038752, - -0.048188, - -0.0028992, - 0.0037334, - -0.023416, - -0.020302, - 0.0090019, - 0.02245, - 0.079514, - -0.0097612, - 0.033706, - -0.0099788, - 0.018147, - 0.0029681, - -0.038013, - 0.032567, - 0.064825, - 0.0095852, - -0.015105, - 0.0088777, - 0.021745, - -0.015701, - 0.0014295, - -0.034249, - 0.053378, - -0.0637, - -0.01188, - -0.061019, - -0.038709, - -0.00060297, - 0.017077, - -0.048573, - 0.035109, - 0.092602, - 0.061996, - 0.0000098317, - -0.028359, - 0.032524, - -0.01158, - 0.012684, - -0.051266, - 0.0083501, - 0.061594, - 0.0026974, - 0.0047274, - -0.0071564, - -0.038296, - -0.032521, - -0.019562, - 0.018372, - -0.006653, - 0.011894, - -0.040549 - ], - "fable": [ - -0.13313, - -0.061522, - -0.0016381, - 0.022059, - -0.091014, - -0.033788, - -0.093372, - -0.11416, - -0.014041, - 0.037569, - -0.02433, - -0.023634, - 0.038519, - -0.0087213, - 0.023818, - -0.16913, - 0.091245, - -0.080366, - 0.03595, - 0.067555, - -0.0011582, - 0.037862, - -0.017467, - 0.062933, - 0.085819, - 0.023037, - 0.033406, - 0.075257, - 0.079438, - -0.035594, - -0.097375, - 0.0035662, - -0.028182, - -0.08846, - 0.015447, - -0.010499, - -0.010308, - -0.04879, - -0.016291, - -0.029433, - 0.017681, - -0.10835, - 0.041351, - 0.058451, - -0.0071292, - 0.037705, - -0.055604, - -0.03876, - -0.026501, - -0.061653, - 0.01708, - 0.11975, - -0.065909, - -0.055833, - 0.043371, - -0.016298, - 0.092751, - -0.10399, - -0.041401, - -0.0020727, - -0.11446, - -0.14852, - 0.084099, - -0.0059511, - 0.16845, - 0.033015, - -0.048933, - 0.12269, - 0.06996, - 0.011642, - 0.010441, - -0.030883, - -0.061809, - 0.016271, - 0.047398, - 0.048925, - -0.035623, - -0.060566, - -0.015927, - -0.089743, - 0.013899, - -0.008569, - 0.049451, - 0.055445, - -0.012545, - 0.0048807, - -0.084848, - 0.032715, - -0.06252, - -0.0053027, - -0.0037346, - 0.022502, - -0.094401, - -0.065173, - 0.0043438, - 0.11024, - 0.053868, - -0.033541, - -0.024622, - 0.062665, - -0.010547, - -0.00059917, - -0.086083, - 0.04524, - -0.083895, - -0.12919, - 0.041407, - 0.035819, - -0.038411, - 0.0036874, - -0.081186, - 0.045703, - 0.015461, - -0.074922, - -0.01789, - 0.036014, - 0.022056, - 0.10652, - -0.084216, - -0.019868, - 0.052555, - -0.011446, - -0.091936, - -0.043079, - 0.077176, - 0.088115, - 0.035281, - -0.047254, - -0.032465, - 0.11407, - -0.09678, - -0.018553, - -0.0019314, - 0.067667, - 0.016718, - -0.010847, - 0.0090354, - 0.12077, - 0.11989, - -0.061995, - 0.022059, - -0.030161, - 0.047133, - 0.02433, - -0.070465, - -0.075998, - -0.001295, - 0.0045392, - -0.12016, - -0.12945, - 0.044256, - 0.058531, - 0.031492, - -0.0054558, - -0.013232, - -0.011786, - -0.012023, - -0.0031007, - -0.01039, - 0.051466, - 0.050538, - 0.069453, - -0.097483, - -0.00071015, - 0.090569, - -0.025664, - 0.049627, - 0.071019, - 0.030851, - -0.027882, - -0.08261, - -0.032006, - -0.047638, - 0.018008, - 0.011234, - 0.062725, - 0.018289, - -0.019202, - 0.012633, - 0.028037, - -0.023332, - 0.076279, - 0.021849, - -0.081772, - -0.11909, - 0.015029, - 0.070528, - 0.13639, - 0.058426, - 0.0035499, - 0.015967, - 0.13164, - -0.00007813, - -0.098922, - -0.059244, - 0.054299, - -0.0018143, - 0.068131, - 0.002187, - 0.10507, - -0.19109, - 0.089021, - 0.064942, - -0.071369, - 0.054492, - 0.0032174, - -0.0029862, - -0.025576, - 0.036292, - -0.025076, - 0.13583, - -0.018023, - -0.085427, - 0.0010393, - 0.06257, - 0.031622, - 0.03384, - -0.022823, - -0.05055, - 0.062381, - 0.039768, - 0.038469, - 0.11645, - 0.094434, - 0.020719, - -0.077187, - 0.14898, - 0.083175, - -0.031408, - 0.0043417, - 0.001817, - -0.11669, - -0.031565, - 0.040543, - 0.039469, - -0.0049948, - -0.02808, - -0.046144, - 0.11531, - -0.031698, - 0.1104, - 0.061616, - -0.083889, - -0.084729, - -0.095223, - 0.031802, - -0.041028, - 0.0022819, - -0.055522, - 0.01512, - 0.08464, - -0.029871, - -0.0010055, - 0.003553, - -0.070599, - 0.090983, - -0.032857, - 0.044215, - 0.024257, - 0.085684, - 0.099632, - -0.040024, - 0.043481, - -0.059129, - 0.010614, - 0.029112, - 0.0072109, - -0.018109, - -0.014041, - 0.023499, - -0.030294, - 0.061961, - -0.059254, - 0.023615, - 0.071505, - -0.12479, - 0.073894, - -0.0038669, - -0.034136, - -0.030754, - 0.0961, - -0.059628, - 0.024448, - -0.10532, - -0.022045, - 0.08238, - 0.011814, - 0.0090345, - -0.0080756, - 0.0036679, - 0.02618, - 0.020311, - 0.008592, - -0.010732, - -0.017218, - 0.0098861, - 0.14063, - 0.019767, - -0.026128, - 0.015267 - ], - "hack": [ - -0.063542, - 0.0040674, - -0.041303, - 0.080915, - -0.097052, - -0.030801, - -0.036234, - -0.14069, - 0.015596, - -0.042131, - -0.13488, - -0.023827, - -0.17052, - -0.062342, - -0.12792, - 0.0077282, - 0.15003, - -0.060887, - 0.079953, - 0.0021412, - 0.032301, - 0.089909, - -0.04428, - 0.024251, - 0.019565, - 0.039044, - 0.13162, - 0.016017, - -0.064138, - -0.0090712, - 0.015736, - -0.07913, - -0.097699, - 0.0045407, - -0.020703, - -0.067298, - 0.048682, - 0.038165, - -0.072315, - -0.014037, - -0.04571, - -0.15382, - 0.0070928, - -0.053142, - -0.068477, - 0.13186, - 0.077046, - -0.041298, - -0.015528, - -0.061824, - 0.017318, - 0.038685, - 0.04517, - -0.039218, - -0.1212, - 0.025001, - 0.13828, - 0.0058423, - -0.087023, - 0.053899, - 0.0043674, - -0.15946, - 0.089198, - 0.020086, - 0.073149, - 0.096743, - 0.0018673, - 0.055855, - 0.029853, - 0.088822, - -0.032134, - 0.0038813, - 0.02501, - 0.082635, - -0.064799, - -0.041276, - -0.0032153, - -0.016484, - 0.0066912, - -0.10246, - -0.072326, - -0.056701, - -0.13043, - 0.091651, - 0.014682, - -0.041595, - -0.040656, - 0.014892, - -0.014173, - 0.096675, - 0.06926, - -0.0038547, - -0.13972, - -0.016761, - 0.063549, - 0.013258, - 0.025012, - -0.099321, - 0.1055, - 0.084658, - 0.069015, - 0.07179, - 0.063559, - 0.1061, - -0.069065, - -0.16919, - 0.035543, - -0.027362, - -0.023743, - -0.13319, - -0.032986, - 0.030391, - 0.11559, - -0.031769, - -0.023328, - -0.043888, - -0.080614, - 0.043533, - -0.080548, - -0.040968, - 0.030103, - -0.033103, - -0.052446, - -0.0027893, - 0.10003, - 0.055649, - -0.080596, - -0.072869, - -0.12343, - 0.11992, - 0.0064189, - 0.067938, - 0.0040869, - -0.0402, - 0.098087, - -0.085116, - 0.06506, - 0.057492, - -0.032811, - -0.020905, - 0.020776, - -0.08053, - 0.029227, - -0.020922, - -0.085897, - 0.047633, - -0.07579, - -0.054565, - 0.021896, - -0.083939, - -0.0014184, - 0.16171, - -0.063488, - -0.0017795, - 0.015613, - -0.060933, - 0.0087263, - -0.0014935, - 0.001952, - -0.084262, - 0.044151, - 0.015712, - -0.064419, - -0.0466, - -0.066543, - 0.010543, - 0.087731, - 0.11297, - -0.06338, - 0.02186, - 0.010006, - 0.02021, - 0.10393, - 0.071681, - 0.034534, - 0.066738, - -0.0042703, - 0.0074366, - -0.01659, - 0.029691, - -0.035925, - 0.0018624, - -0.099056, - 0.0050994, - -0.041673, - -0.14995, - -0.060469, - 0.10087, - 0.037249, - 0.11006, - -0.020016, - 0.015642, - -0.026206, - 0.013459, - -0.027218, - -0.039895, - -0.091725, - -0.10142, - -0.020414, - 0.068668, - -0.20389, - 0.10489, - -0.014, - 0.059218, - -0.067371, - -0.016802, - -0.019273, - 0.029696, - -0.017416, - -0.067209, - 0.094431, - 0.034861, - 0.03648, - 0.056279, - 0.082743, - 0.015627, - -0.13516, - 0.12849, - 0.0037692, - 0.024632, - -0.058456, - -0.048535, - -0.10659, - 0.16323, - 0.011037, - -0.027574, - 0.049699, - 0.073388, - -0.096016, - 0.029754, - -0.06286, - -0.12288, - -0.003831, - -0.073795, - 0.0099086, - -0.068652, - 0.024508, - -0.04484, - 0.039412, - -0.035454, - 0.1265, - -0.070379, - 0.077831, - 0.0028289, - -0.035088, - 0.075615, - -0.044568, - 0.056975, - -0.081008, - 0.0621, - -0.034105, - -0.0051818, - -0.13416, - 0.12037, - 0.06927, - 0.035235, - -0.019675, - 0.032195, - 0.0032816, - 0.038969, - 0.059045, - 0.024669, - -0.0010552, - -0.021762, - -0.018845, - -0.012888, - -0.075414, - 0.047324, - 0.030246, - -0.011196, - -0.12829, - 0.13928, - -0.12706, - -0.036965, - 0.0037871, - -0.069755, - 0.12266, - -0.012316, - 0.11584, - -0.0087547, - 0.11575, - 0.057654, - 0.080193, - 0.034174, - -0.084928, - -0.053779, - -0.019525, - -0.068577, - -0.026808, - 0.074194, - -0.066423, - -0.062058, - -0.083034, - 0.043654, - 0.057711, - 0.011824, - -0.11305, - 0.050508, - -0.078824, - -0.12091 - ], - "existence": [ - 0.053479, - -0.056955, - 0.032328, - 0.011288, - -0.048768, - -0.013045, - 0.017831, - -0.09444, - 0.044275, - 0.010904, - 0.024847, - -0.091482, - -0.011604, - 0.010521, - 0.0055996, - -0.025365, - 0.024915, - 0.012135, - 0.040171, - 0.032314, - -0.0063788, - 0.029536, - 0.032361, - 0.070323, - -0.025813, - 0.033193, - -0.013346, - -0.0023211, - 0.052597, - 0.0025193, - 0.0014495, - 0.0126, - -0.0053534, - -0.089367, - -0.037713, - 0.059295, - 0.0015587, - -0.04554, - -0.011891, - -0.011103, - 0.020615, - -0.060892, - -0.045836, - 0.036741, - -0.021507, - 0.002775, - -0.0040997, - -0.0089013, - 0.016064, - 0.025501, - 0.024142, - -0.010039, - 0.017773, - 0.025771, - -0.072363, - 0.0083177, - -0.045884, - 0.016283, - -0.022104, - 0.020005, - 0.032902, - -0.03104, - 0.087903, - -0.025843, - 0.022375, - -0.066707, - -0.0073866, - 0.0077156, - -0.0046321, - -0.0030433, - 0.031317, - -0.0038708, - -0.046851, - -0.044151, - 0.033674, - 0.0040558, - 0.0077664, - 0.0025533, - 0.0077312, - 0.0026962, - 0.0436, - -0.021761, - 0.01665, - 0.067124, - -0.0029593, - -0.02749, - -0.03192, - -0.051939, - -0.01621, - 0.026233, - 0.024372, - 0.011521, - -0.062826, - 0.009249, - -0.0070297, - -0.0044597, - 0.020367, - -0.013705, - 0.031298, - 0.031957, - -0.045041, - 0.022853, - 0.037532, - 0.0028499, - 0.0027982, - -0.020529, - 0.002561, - 0.017324, - 0.0417, - 0.0050445, - 0.021525, - 0.034927, - 0.040862, - -0.0073129, - -0.038874, - 0.039362, - 0.013952, - 0.016369, - -0.057984, - 0.016069, - -0.039839, - 0.020688, - -0.0068819, - 0.030871, - -0.0042467, - 0.0058849, - 0.04083, - -0.11762, - 0.030268, - 0.070715, - 0.024261, - -0.014172, - -0.030526, - -0.019522, - -0.0040921, - -0.030947, - 0.017433, - 0.031891, - 0.024009, - -0.028401, - 0.0075969, - -0.011692, - 0.0082566, - -0.0013207, - 0.041577, - 0.0052581, - -0.0066511, - 0.0014447, - -0.029676, - 0.02954, - 0.0014832, - 0.021884, - -0.013401, - -0.056132, - 0.0025776, - -0.01728, - 0.0090976, - 0.0002532, - -0.0014813, - -0.0076261, - 0.00054357, - -0.015443, - -0.048833, - 0.017563, - 0.018708, - -0.015292, - 0.014921, - 0.038503, - 0.037319, - 0.0007215, - -0.000042004, - -0.019569, - -0.071163, - 0.0072816, - -0.017752, - 0.032015, - 0.02219, - 0.027196, - 0.017016, - -0.038813, - -0.014832, - 0.026906, - 0.029649, - -0.0088908, - -0.012062, - -0.060633, - 0.034431, - 0.067841, - 0.014352, - -0.027612, - 0.042505, - 0.050227, - -0.041703, - 0.012562, - -0.0039409, - -0.02208, - -0.019319, - 0.017912, - -0.025286, - 0.013499, - -0.14733, - 0.094775, - -0.096057, - -0.023529, - 0.024523, - 0.013749, - 0.029801, - -0.020765, - -0.0076135, - -0.017878, - 0.091873, - 0.0029163, - -0.035796, - 0.028441, - 0.078854, - 0.009354, - 0.0017708, - -0.01042, - 0.062082, - 0.0057911, - 0.032517, - -0.020354, - -0.015547, - 0.10808, - 0.03569, - -0.00026199, - 0.027776, - 0.043672, - -0.023265, - -0.076981, - -0.0030305, - -0.062247, - -0.10275, - 0.0099536, - 0.019705, - -0.061939, - -0.0041456, - 0.0041804, - 0.020159, - 0.01742, - 0.045321, - 0.016866, - 0.03087, - 0.04324, - -0.053043, - -0.033817, - -0.03339, - -0.098595, - -0.059458, - -0.060371, - -0.0193, - -0.0047442, - 0.039253, - 0.0070136, - 0.024812, - 0.037398, - 0.053242, - 0.053338, - 0.033134, - 0.04935, - 0.033434, - -0.0056728, - 0.011238, - -0.049118, - 0.041706, - 0.014986, - 0.019222, - 0.019363, - 0.036835, - -0.01309, - -0.041319, - 0.098523, - -0.079572, - -0.04322, - 0.074746, - -0.067476, - -0.0097312, - 0.0070826, - -0.029623, - 0.0041866, - 0.073834, - 0.0024771, - -0.00098705, - -0.018891, - 0.017311, - -0.0066694, - -0.0028419, - -0.021492, - -0.041861, - 0.06086, - 0.030808, - 0.014382, - -0.036522, - -0.0819, - -0.0094345, - 0.020064, - -0.0055105, - -0.032538, - -0.065924, - 0.051345 - ], - "astrobiology": [ - -0.0073204, - -0.060758, - -0.019643, - -0.0084085, - 0.010978, - -0.032865, - 0.067846, - -0.093353, - -0.0010188, - 0.027696, - 0.025447, - -0.027972, - -0.037872, - -0.0027617, - -0.00025565, - -0.037497, - 0.044236, - 0.076268, - 0.026276, - 0.010625, - 0.0049944, - 0.040038, - 0.056785, - 0.052372, - 0.026, - -0.0055985, - 0.020081, - 0.027802, - 0.0093194, - 0.020297, - 0.051411, - -0.0018958, - 0.011441, - -0.02464, - -0.0045974, - 0.0085555, - 0.025455, - -0.055515, - 0.043458, - 0.033584, - -0.099114, - -0.046673, - 0.00062258, - -0.030204, - 0.02247, - -0.04196, - -0.038014, - -0.041211, - 0.031582, - -0.0021577, - 0.0045514, - 0.055517, - 0.0040875, - -0.011859, - -0.019555, - 0.014739, - -0.065085, - 0.026989, - 0.00033243, - 0.080386, - 0.047824, - 0.064992, - 0.037675, - -0.018821, - 0.067211, - 0.012083, - 0.02321, - 0.0037223, - 0.0066692, - -0.027021, - 0.0060772, - 0.014878, - 0.0086143, - 0.041765, - 0.027464, - 0.026428, - -0.00023698, - -0.020739, - 0.036775, - 0.013374, - -0.026903, - 0.050323, - 0.027733, - 0.002641, - -0.017759, - 0.060623, - 0.015439, - -0.0019438, - 0.022964, - 0.03903, - 0.031998, - 0.050127, - -0.049316, - 0.011621, - 0.020425, - 0.068736, - 0.0076773, - 0.02591, - -0.037109, - -0.038192, - -0.051612, - -0.01402, - -0.00019386, - -0.02932, - -0.010717, - -0.020875, - -0.021597, - 0.03357, - 0.053885, - -0.00051728, - -0.0021664, - 0.079784, - 0.0017384, - 0.034898, - 0.021121, - 0.0062458, - -0.021826, - -0.029717, - -0.061387, - -0.015931, - -0.070626, - -0.054241, - -0.079944, - 0.0071534, - -0.014599, - -0.01046, - -0.017496, - -0.051172, - 0.0095992, - 0.087062, - -0.024321, - 0.0033199, - -0.058611, - 0.025714, - 0.0064902, - -0.04152, - -0.013692, - 0.00095496, - 0.014114, - 0.025625, - 0.017443, - -0.00332, - 0.012541, - -0.016144, - -0.030722, - 0.0082717, - -0.027406, - 0.01338, - -0.045407, - -0.0066863, - 0.023569, - 0.0092835, - -0.019858, - -0.05368, - 0.019534, - 0.040119, - -0.0225, - 0.012515, - 0.055914, - -0.0002947, - 0.010914, - 0.037414, - -0.055978, - 0.043929, - 0.010462, - -0.039932, - -0.080298, - -0.00030556, - 0.027006, - 0.014838, - 0.012814, - -0.064435, - -0.020531, - -0.063493, - 0.032636, - 0.015606, - 0.009961, - 0.0048815, - -0.033253, - -0.030911, - -0.017674, - 0.073574, - 0.024493, - 0.0026858, - 0.03248, - 0.0047415, - 0.038578, - 0.052018, - -0.022824, - 0.038295, - 0.021113, - 0.089008, - -0.032462, - -0.048312, - -0.027103, - -0.091029, - -0.085131, - 0.010414, - 0.0035024, - -0.013561, - -0.083743, - -0.014674, - -0.014076, - -0.00031003, - -0.028919, - -0.0063005, - -0.0047843, - -0.0047307, - -0.044934, - -0.013803, - 0.091819, - 0.013208, - 0.027566, - -0.031236, - 0.057139, - 0.023734, - -0.029778, - -0.017981, - -0.0072488, - -0.017888, - -0.034574, - 0.054488, - -0.065383, - 0.052381, - -0.020534, - 0.022683, - 0.026091, - 0.1051, - -0.0020733, - -0.030332, - -0.014407, - -0.047972, - -0.043899, - 0.026699, - 0.010581, - 0.018654, - 0.0055568, - 0.01149, - -0.06133, - 0.00057024, - 0.0044802, - -0.013961, - 0.025239, - -0.042442, - 0.02215, - 0.03645, - -0.029279, - -0.034717, - -0.031151, - 0.020241, - 0.021543, - -0.0062531, - -0.030091, - -0.082205, - -0.015297, - 0.00117, - -0.0051774, - 0.034388, - -0.0064823, - -0.011978, - 0.07744, - 0.028172, - -0.011357, - 0.024106, - 0.039981, - -0.033984, - -0.028661, - 0.031416, - 0.068517, - 0.015511, - 0.019767, - 0.071905, - -0.072716, - 0.0012697, - 0.014253, - -0.0000012452, - -0.027894, - -0.0094981, - 0.021213, - -0.022668, - 0.036859, - -0.041493, - 0.027633, - -0.052905, - -0.060513, - -0.072381, - -0.021958, - -0.034273, - -0.050307, - -0.024435, - 0.038323, - -0.0060235, - 0.0044028, - -0.052656, - -0.0039887, - 0.020341, - -0.019783, - 0.024891, - -0.0095294, - 0.06178 - ], - "vocation": [ - 0.055001, - -0.045981, - 0.069653, - -0.093683, - -0.041442, - -0.021812, - -0.021233, - -0.07028, - 0.078284, - -0.045456, - -0.0099477, - -0.042003, - -0.098298, - -0.016877, - -0.0034811, - -0.0076041, - 0.04082, - 0.067875, - 0.013352, - 0.02537, - 0.011913, - -0.0024911, - 0.063439, - 0.068419, - -0.060193, - 0.0030446, - -0.029414, - 0.059409, - -0.046854, - 0.00025831, - -0.00039203, - 0.038111, - -0.016938, - -0.097855, - -0.045018, - 0.069567, - 0.01965, - 0.047437, - 0.024529, - -0.0050532, - 0.020527, - -0.093503, - -0.0055853, - 0.008639, - 0.0068009, - -0.044477, - -0.034108, - -0.064918, - -0.036581, - -0.0076163, - -0.0092663, - 0.0052098, - 0.015917, - 0.02014, - -0.067659, - 0.001655, - -0.063625, - 0.030371, - 0.0003256, - 0.030066, - -0.025461, - 0.036238, - 0.090185, - -0.0060572, - 0.048156, - -0.069016, - -0.019975, - -0.0368, - 0.009152, - -0.068766, - 0.09323, - 0.0099806, - -0.052378, - 0.034887, - 0.087587, - 0.050578, - 0.020942, - -0.021293, - 0.058107, - -0.037382, - 0.0096694, - 0.023944, - 0.039253, - 0.051725, - -0.12192, - -0.022116, - -0.012282, - -0.0036485, - -0.045064, - -0.033127, - 0.051576, - -0.025413, - -0.053847, - 0.010568, - 0.0020855, - 0.062539, - -0.0032388, - 0.00092235, - 0.042533, - 0.0072201, - 0.015624, - -0.0039819, - 0.074872, - -0.00019914, - -0.027485, - -0.045549, - 0.08771, - 0.038138, - -0.051572, - -0.0021946, - 0.033427, - 0.031096, - 0.032814, - 0.084938, - 0.01149, - 0.065698, - -0.05468, - -0.0072529, - -0.045222, - 0.039763, - -0.0087211, - -0.019801, - -0.00083053, - 0.0073056, - 0.11793, - 0.02568, - 0.030999, - -0.092696, - 0.01404, - 0.049023, - 0.019101, - -0.075129, - -0.010779, - -0.0054222, - -0.053744, - -0.0062824, - -0.023058, - 0.028784, - 0.062393, - -0.024173, - 0.021747, - -0.043222, - -0.013273, - 0.08327, - -0.072873, - 0.0046889, - -0.032215, - -0.012552, - 0.0067024, - -0.015362, - 0.0042832, - -0.021728, - -0.055206, - -0.14695, - 0.049463, - 0.060206, - -0.10387, - 0.044752, - -0.034908, - -0.095474, - 0.045931, - 0.071461, - -0.069581, - 0.023042, - -0.012374, - -0.030926, - -0.027791, - 0.0073333, - -0.032719, - 0.020647, - 0.052094, - 0.0049708, - 0.0082681, - 0.0086677, - 0.02684, - 0.033465, - 0.048861, - 0.10535, - -0.019192, - -0.023166, - 0.031654, - -0.0048719, - -0.05048, - -0.0074465, - -0.042466, - -0.074889, - 0.026148, - 0.094908, - -0.0042467, - -0.018961, - 0.0053285, - 0.094705, - -0.012849, - 0.0036926, - -0.0088087, - 0.021762, - -0.015253, - 0.060432, - 0.043985, - 0.056705, - -0.14412, - 0.051235, - 0.016853, - -0.02074, - 0.0063504, - 0.046007, - 0.058306, - -0.056464, - 0.021764, - -0.0091959, - 0.075201, - -0.0094592, - 0.030548, - 0.0044123, - -0.029387, - 0.078721, - 0.024194, - -0.08934, - -0.040061, - 0.023354, - -0.047859, - -0.0035844, - -0.052377, - 0.081679, - 0.017844, - -0.063799, - -0.0017475, - 0.058091, - 0.056159, - 0.050475, - 0.054634, - -0.040236, - -0.094477, - -0.045001, - 0.0054971, - 0.027244, - 0.028919, - -0.0751, - -0.045252, - -0.004562, - 0.063148, - 0.012706, - 0.030644, - 0.022256, - -0.057904, - -0.084951, - -0.064438, - -0.030894, - 0.031392, - 0.040884, - 0.015733, - 0.0038545, - -0.018584, - -0.10577, - 0.029655, - 0.0016743, - -0.028672, - 0.030245, - 0.042833, - 0.053772, - 0.0018545, - 0.0066834, - 0.046316, - 0.0029148, - 0.0044257, - 0.0098934, - 0.0069996, - 0.00029239, - 0.020832, - -0.095592, - 0.054486, - 0.062985, - -0.098351, - -0.0019902, - 0.0070875, - 0.0099603, - 0.010315, - 0.07642, - 0.027794, - 0.027963, - 0.074392, - 0.026744, - -0.0022274, - -0.0884, - 0.031329, - -0.0048137, - 0.0021225, - 0.041118, - -0.01648, - 0.025928, - 0.034602, - 0.032591, - -0.030457, - 0.063998, - -0.031018, - 0.12249, - 0.075667, - 0.030713, - -0.04379, - -0.049229 - ], - "birds": [ - -0.020698, - -0.035734, - 0.013332, - -0.17739, - -0.0058538, - -0.026041, - -0.0077498, - -0.11542, - 0.12108, - 0.069693, - 0.073437, - -0.055244, - -0.059714, - 0.04057, - 0.11079, - -0.086613, - 0.047992, - 0.09443, - 0.077381, - 0.079895, - 0.031102, - -0.089686, - -0.000898, - 0.045533, - -0.0074891, - -0.12751, - -0.015091, - 0.092442, - 0.18184, - 0.038907, - 0.096066, - -0.045611, - 0.025767, - 0.054365, - 0.02033, - 0.044086, - -0.03227, - -0.10917, - 0.058044, - -0.048836, - 0.0084825, - -0.09871, - -0.04786, - -0.043979, - -0.071971, - -0.0064195, - 0.014235, - -0.04157, - -0.068989, - -0.015972, - -0.050731, - 0.098834, - 0.0056898, - -0.0084737, - -0.09389, - -0.056805, - -0.002886, - 0.033315, - -0.026544, - -0.0089748, - -0.060059, - -0.13927, - 0.11342, - -0.06188, - 0.0039296, - 0.02341, - -0.028567, - -0.015315, - -0.084589, - 0.05139, - 0.030388, - 0.055489, - 0.14386, - -0.021118, - 0.015411, - 0.10193, - 0.011918, - -0.040771, - -0.077117, - 0.01555, - 0.0038042, - 0.0087724, - 0.037338, - 0.044647, - 0.015127, - -0.052985, - 0.10081, - -0.060962, - -0.024873, - -0.026822, - -0.0486, - 0.0066718, - -0.11835, - -0.0029396, - -0.001532, - 0.064942, - -0.010375, - 0.098791, - 0.13886, - -0.047046, - 0.06839, - 0.024033, - -0.018347, - 0.14817, - 0.056493, - -0.069847, - -0.056283, - -0.036203, - -0.046377, - 0.034848, - 0.012817, - 0.14612, - 0.089563, - 0.037358, - -0.0006834, - 0.024147, - -0.013186, - 0.085967, - -0.095235, - -0.020936, - 0.079894, - 0.10174, - -0.1082, - -0.12309, - 0.13067, - -0.02275, - 0.033411, - -0.11703, - -0.06875, - 0.048691, - -0.062666, - 0.15667, - 0.04365, - 0.045448, - 0.02815, - 0.00027722, - -0.099378, - 0.046456, - 0.038286, - 0.050892, - 0.010307, - -0.018701, - 0.058933, - 0.003422, - 0.10487, - -0.14614, - 0.048933, - 0.0035429, - -0.13783, - -0.15334, - 0.033566, - 0.12992, - -0.11078, - -0.021005, - 0.02369, - 0.0057975, - -0.046405, - -0.087591, - -0.062421, - -0.06222, - -0.00022245, - -0.0277, - 0.025685, - 0.071177, - 0.049427, - -0.010698, - 0.037982, - 0.063162, - 0.0058201, - 0.061502, - -0.02294, - 0.037836, - 0.14332, - 0.11571, - -0.059454, - 0.079391, - 0.0069138, - -0.0040668, - -0.022146, - 0.064067, - 0.079729, - 0.014499, - 0.054598, - -0.063656, - -0.14237, - -0.11043, - 0.14624, - 0.11957, - -0.093106, - -0.016286, - -0.011594, - 0.048387, - -0.19875, - -0.040937, - -0.02727, - 0.0016438, - 0.08006, - 0.081632, - 0.001526, - -0.026481, - -0.16912, - 0.10393, - -0.028276, - -0.047618, - -0.014546, - 0.054066, - 0.0025605, - -0.13167, - -0.031183, - -0.083441, - 0.10776, - -0.031296, - 0.09683, - -0.049339, - 0.044254, - 0.018478, - 0.063623, - -0.026259, - -0.030179, - -0.057212, - 0.00050125, - -0.070648, - -0.023629, - 0.11829, - 0.044264, - -0.009879, - 0.008295, - 0.058753, - -0.028693, - -0.052865, - -0.074078, - 0.018964, - -0.13114, - 0.018409, - 0.041372, - -0.021284, - 0.056138, - 0.052691, - 0.021712, - -0.044823, - -0.071332, - -0.085976, - -0.031859, - -0.049737, - 0.048506, - 0.064612, - 0.014572, - 0.012176, - -0.036597, - 0.0082624, - 0.049165, - -0.037502, - -0.038814, - -0.068662, - -0.035511, - -0.026715, - -0.033286, - 0.0088629, - 0.061039, - -0.019436, - -0.010755, - 0.030546, - 0.040039, - -0.079576, - 0.081794, - 0.0065501, - 0.01247, - 0.044908, - 0.024571, - -0.01401, - -0.026111, - 0.11084, - -0.13905, - -0.028197, - 0.022559, - -0.060004, - -0.023363, - -0.037732, - 0.034155, - -0.13268, - 0.012119, - -0.020483, - 0.08427, - -0.044625, - -0.052569, - -0.058848, - 0.028823, - 0.0028332, - -0.015074, - -0.04893, - 0.042635, - 0.070708, - -0.14552, - -0.083538, - -0.010943, - -0.019615, - -0.014621, - 0.011281, - 0.10542, - 0.041031 - ], - "food-related": [ - -0.081565, - -0.043882, - -0.012538, - -0.0019294, - 0.00002194, - -0.0091012, - 0.001154, - -0.052005, - 0.038798, - 0.038816, - -0.02416, - -0.08535, - -0.042174, - -0.0076246, - 0.024596, - -0.013988, - 0.044253, - 0.039314, - 0.022097, - -0.037479, - 0.026907, - 0.048487, - 0.046854, - 0.052845, - -0.019888, - -0.00578, - -0.052306, - 0.058632, - 0.065559, - -0.053421, - 0.040563, - -0.036467, - 0.061158, - -0.069591, - 0.082868, - -0.0081646, - -0.023575, - 0.045421, - 0.03458, - -0.0011908, - -0.028206, - -0.028869, - -0.032555, - 0.024194, - 0.087119, - -0.032655, - 0.010796, - -0.019168, - 0.026787, - -0.01207, - 0.0063061, - 0.0087048, - 0.038951, - 0.0042682, - -0.014365, - 0.0071191, - -0.031406, - -0.0051471, - 0.0030652, - -0.050763, - -0.023309, - -0.064409, - 0.11703, - -0.0027132, - 0.038832, - -0.017603, - 0.030783, - 0.03967, - -0.0040584, - -0.00064967, - -0.0052126, - -0.001016, - 0.053192, - -0.0067283, - 0.010641, - 0.00049103, - -0.041228, - 0.0071661, - 0.021367, - 0.013593, - -0.021156, - 0.050501, - -0.019539, - 0.013226, - -0.021173, - 0.035811, - -0.024481, - 0.023884, - 0.033536, - 0.0054907, - 0.018949, - 0.0017936, - -0.076707, - 0.060132, - -0.069387, - 0.0011786, - -0.030593, - 0.063962, - 0.060836, - -0.015344, - -0.038596, - -0.021985, - -0.067543, - -0.04358, - 0.043393, - -0.04799, - -0.079811, - 0.030351, - 0.040776, - -0.0099309, - -0.010655, - 0.057151, - 0.0051744, - 0.03883, - 0.034054, - -0.036878, - -0.053786, - -0.00077577, - -0.036737, - -0.028401, - -0.06726, - 0.015331, - -0.032974, - -0.032639, - 0.12446, - -0.035803, - -0.014577, - -0.029002, - 0.021828, - 0.040447, - -0.015943, - 0.031461, - 0.015637, - -0.066775, - 0.020505, - 0.033239, - -0.039152, - 0.057433, - 0.040181, - 0.035529, - 0.036106, - -0.0046462, - -0.025594, - 0.020962, - -0.067483, - -0.052278, - 0.0057165, - 0.018443, - 0.016258, - -0.013364, - 0.02166, - 0.11367, - -0.031081, - -0.083045, - 0.020772, - 0.0024171, - -0.040227, - 0.061636, - -0.023108, - 0.03484, - 0.014744, - -0.041378, - -0.033651, - 0.022737, - 0.027953, - 0.0049734, - -0.031377, - -0.04706, - 0.017343, - -0.011873, - 0.023063, - -0.013549, - 0.00085372, - -0.024082, - -0.036821, - 0.040803, - -0.017326, - 0.0082263, - -0.014084, - -0.0067089, - 0.040605, - -0.015357, - 0.042499, - -0.042601, - -0.014427, - -0.035909, - 0.011278, - 0.084836, - -0.018527, - -0.048775, - 0.0082621, - 0.00082185, - 0.00552, - -0.029772, - 0.030568, - 0.029556, - 0.035214, - -0.002457, - -0.010432, - -0.038625, - -0.10706, - 0.042536, - -0.015337, - -0.035799, - -0.04181, - 0.023714, - -0.036448, - 0.010975, - 0.022419, - 0.0033482, - 0.084364, - 0.024967, - 0.0093249, - -0.011747, - 0.050235, - 0.030071, - 0.010921, - 0.01493, - -0.018899, - -0.013213, - -0.024764, - 0.0099095, - -0.030795, - 0.052054, - -0.025351, - 0.0010273, - 0.021092, - 0.078887, - 0.041209, - -0.022328, - -0.031198, - -0.023324, - -0.054386, - -0.017812, - 0.026609, - 0.015388, - -0.013336, - -0.0056155, - 0.0085786, - -0.050054, - -0.03607, - 0.013426, - 0.0019375, - -0.0086387, - -0.1545, - 0.021936, - 0.031182, - 0.024015, - -0.0089309, - 0.017937, - -0.006422, - -0.019707, - -0.018402, - -0.019683, - -0.037455, - 0.0043394, - 0.0011242, - -0.016798, - 0.028698, - 0.010146, - 0.049122, - -0.036014, - 0.027624, - -0.0070205, - 0.019907, - 0.036033, - -0.0033122, - 0.044578, - 0.022311, - -0.02764, - 0.0014304, - 0.040317, - -0.074238, - -0.026093, - -0.00501, - -0.092458, - -0.04602, - -0.041262, - -0.031728, - 0.0076713, - 0.070691, - 0.0064721, - -0.013329, - 0.0072388, - -0.029709, - 0.046262, - -0.01035, - 0.012779, - 0.0056866, - -0.013583, - 0.0025874, - 0.043369, - -0.039864, - -0.012924, - 0.0051285, - 0.012, - -0.002942, - 0.021794, - -0.0095284, - 0.035473 - ], - "cardiovascular": [ - -0.05281, - -0.048329, - -0.032458, - -0.0028931, - 0.0010252, - -0.0342, - -0.0081351, - -0.059712, - 0.04772, - 0.010202, - -0.035961, - -0.005667, - 0.064786, - -0.023291, - 0.01835, - 0.0012532, - 0.040505, - -0.024038, - 0.058892, - -0.022172, - -0.013477, - -0.0025138, - 0.049435, - 0.061867, - 0.0019003, - 0.0045351, - 0.0027122, - -0.053516, - 0.012969, - 0.015371, - -0.02453, - -0.024726, - 0.024472, - -0.040456, - 0.029221, - 0.045553, - 0.015174, - 0.0095733, - 0.037057, - 0.022681, - 0.0047057, - -0.060961, - 0.011118, - 0.0029641, - -0.00032307, - -0.028808, - -0.0070564, - 0.0015199, - -0.029565, - -0.018075, - -0.031686, - 0.05204, - 0.007784, - 0.0013901, - 0.002392, - 0.01671, - -0.018978, - 0.033106, - 0.0064515, - 0.020661, - 0.018607, - 0.026308, - 0.063506, - 0.042849, - -0.009879, - 0.038245, - 0.016388, - 0.024924, - -0.024838, - -0.013451, - 0.0050795, - -0.011218, - 0.025996, - -0.0097179, - 0.0056021, - -0.0027179, - -0.031538, - -0.029622, - -0.068822, - -0.030494, - -0.011539, - 0.051828, - -0.066312, - -0.0085009, - 0.0029757, - -0.003154, - -0.039663, - 0.0078141, - 0.02409, - -0.028849, - 0.0044471, - 0.016306, - -0.064764, - 0.0013222, - -0.031791, - 0.051626, - -0.012592, - 0.058838, - 0.013023, - 0.0048417, - 0.010836, - -0.0099746, - 0.017605, - -0.050764, - 0.050896, - -0.054932, - -0.022479, - -0.028878, - -0.030759, - 0.039952, - -0.025586, - 0.043392, - 0.023423, - 0.022197, - 0.018156, - 0.05355, - -0.017752, - -0.0042538, - -0.026474, - 0.037179, - 0.066511, - 0.0090282, - 0.0096543, - 0.0077618, - 0.059498, - 0.026542, - 0.029707, - -0.051665, - 0.029785, - 0.035487, - 0.016287, - -0.02291, - -0.010687, - -0.0070687, - -0.008427, - 0.0052298, - 0.041301, - 0.023263, - 0.007058, - 0.00057694, - 0.052696, - 0.0090023, - -0.048574, - -0.021311, - -0.021002, - -0.050675, - -0.014697, - -0.016933, - 0.028872, - 0.03165, - 0.023073, - 0.095897, - 0.026395, - -0.058151, - 0.018791, - 0.022455, - -0.023018, - 0.0091831, - 0.049417, - 0.0085851, - 0.02607, - 0.0014311, - -0.10399, - -0.034116, - -0.023386, - 0.013511, - -0.063362, - -0.0062772, - -0.034207, - -0.036416, - 0.040084, - -0.029486, - 0.067592, - 0.012022, - -0.00046749, - 0.0388, - 0.013965, - -0.047104, - -0.03571, - -0.0018811, - 0.0079208, - -0.025968, - -0.011791, - 0.0010789, - -0.015668, - -0.030954, - 0.028905, - 0.076431, - 0.0002314, - 0.079264, - -0.042972, - -0.037434, - 0.025768, - -0.024516, - 0.019858, - -0.049251, - -0.018002, - 0.042258, - 0.029247, - -0.036715, - -0.091869, - 0.022744, - -0.021977, - -0.025981, - 0.011926, - -0.021912, - 0.012906, - -0.010434, - -0.071422, - 0.031891, - 0.10348, - -0.015047, - 0.026241, - 0.029886, - 0.039847, - 0.04999, - 0.010567, - 0.005774, - -0.019694, - -0.0088929, - -0.094748, - 0.0080226, - -0.031405, - 0.057359, - -0.014958, - 0.016188, - 0.023262, - 0.054562, - 0.026364, - -0.027178, - -0.057649, - -0.021498, - -0.028914, - -0.0095973, - 0.02442, - 0.018052, - -0.052852, - 0.042422, - -0.0093705, - 0.0085378, - -0.0012749, - 0.032244, - -0.021133, - -0.024883, - -0.078564, - 0.0052507, - -0.018649, - -0.0023398, - 0.049597, - -0.022271, - -0.011256, - 0.036246, - -0.050455, - -0.043422, - -0.027037, - -0.00051836, - 0.027804, - -0.030186, - 0.054834, - -0.024768, - -0.0032644, - 0.029283, - 0.024888, - 0.0070859, - 0.010285, - -0.013174, - -0.010186, - 0.040874, - 0.046069, - 0.020256, - -0.021863, - 0.045545, - -0.06783, - -0.0058633, - 0.00050614, - -0.064453, - -0.015177, - 0.050758, - 0.058604, - 0.010568, - 0.089515, - -0.0072416, - -0.0059046, - 0.042858, - -0.010342, - -0.02496, - -0.0016514, - -0.0023371, - 0.019859, - 0.010264, - 0.067211, - 0.02816, - -0.047445, - -0.014122, - 0.00314, - -0.017305, - 0.035979, - 0.029662, - 0.025007, - 0.030356 - ], - "industries": [ - 0.0064451, - -0.065963, - 0.018662, - -0.017771, - -0.041042, - -0.023469, - 0.047428, - -0.069999, - 0.038119, - 0.013078, - 0.0053994, - -0.051269, - -0.04592, - -0.000519, - 0.024717, - 0.030381, - 0.032567, - 0.017734, - 0.046363, - -0.022232, - 0.032299, - 0.0003687, - -0.0017281, - 0.055458, - -0.021076, - -0.060901, - -0.0034569, - 0.013695, - 0.071213, - 0.0012912, - -0.011665, - -0.035261, - -0.0091209, - 0.0063196, - 0.065425, - 0.027718, - -0.011791, - 0.021683, - -0.015594, - 0.070211, - -0.047709, - -0.06356, - -0.0084789, - 0.00050061, - 0.00018802, - -0.050846, - 0.010513, - -0.0045201, - -0.0091328, - -0.0062454, - -0.0035719, - 0.0043117, - 0.022335, - -0.008565, - -0.073561, - 0.00035347, - 0.019687, - 0.042345, - 0.0069931, - -0.036552, - -0.0071356, - 0.020107, - 0.14179, - -0.009404, - 0.094206, - 0.013916, - -0.03319, - -0.031666, - 0.072218, - -0.0078064, - 0.01723, - -0.041403, - 0.052655, - 0.03684, - -0.0063698, - -0.058282, - -0.0002282, - -0.012585, - 0.019936, - -0.052251, - -0.01043, - 0.012875, - -0.054697, - 0.079597, - -0.007241, - -0.008301, - -0.032767, - -0.010289, - -0.015586, - -0.027766, - 0.0079569, - 0.00032643, - -0.049494, - 0.00037479, - -0.029472, - 0.065411, - -0.010083, - -0.029202, - -0.0018873, - 0.025294, - 0.0072765, - -0.053621, - -0.0086856, - -0.036135, - 0.062691, - -0.067634, - 0.026419, - 0.029238, - 0.05818, - -0.0043642, - -0.0017935, - 0.073435, - 0.058213, - 0.047466, - -0.012508, - -0.031386, - -0.017392, - 0.0048384, - -0.02761, - -0.00017608, - -0.081578, - 0.020984, - -0.022494, - -0.058253, - 0.091081, - 0.016851, - -0.04829, - -0.021415, - -0.0058581, - 0.076472, - 0.045167, - 0.093526, - -0.02119, - -0.0076794, - 0.021401, - 0.012586, - -0.0057134, - 0.023207, - -0.023263, - 0.078155, - 0.0051415, - 0.02768, - 0.029862, - 0.060883, - 0.016369, - -0.0040529, - 0.016937, - -0.056347, - 0.023007, - 0.001066, - 0.050524, - 0.091778, - 0.020115, - -0.021378, - 0.039034, - 0.0028075, - -0.024334, - 0.010012, - 0.0023471, - 0.0074931, - 0.057575, - -0.066031, - 0.046822, - 0.020856, - 0.04164, - 0.014564, - -0.048629, - -0.034265, - -0.0054304, - -0.026884, - 0.043551, - 0.060221, - -0.023801, - 0.040352, - -0.010342, - 0.053706, - -0.057899, - 0.071974, - -0.030474, - 0.068301, - -0.010627, - -0.013515, - -0.005321, - 0.012442, - -0.0083848, - -0.016723, - 0.013313, - 0.081653, - -0.050396, - 0.023853, - -0.066015, - 0.071717, - -0.045216, - 0.015661, - 0.047858, - 0.0238, - -0.032613, - -0.050804, - -0.013996, - -0.036539, - -0.10243, - 0.0024927, - 0.0037107, - -0.024877, - 0.02809, - 0.032019, - 0.013416, - 0.0054659, - 0.021627, - -0.017923, - 0.039098, - 0.0015389, - 0.048242, - 0.0048949, - -0.047081, - 0.035273, - 0.021742, - -0.0093573, - 0.001639, - -0.016739, - -0.0063769, - -0.071148, - 0.0052755, - 0.071708, - -0.023459, - -0.00045497, - -0.0020684, - 0.031556, - -0.0027989, - 0.029245, - 0.017097, - 0.019788, - -0.10225, - 0.0098266, - 0.01122, - -0.020672, - 0.0069646, - 0.014845, - 0.013477, - -0.046883, - -0.028393, - 0.034817, - -0.0044589, - 0.020856, - 0.037709, - -0.022665, - -0.0064241, - -0.016507, - 0.045066, - 0.00068222, - 0.014639, - -0.034012, - 0.0023376, - -0.017893, - -0.068754, - 0.068935, - -0.013075, - 0.034292, - 0.0093989, - 0.019414, - 0.00022278, - 0.019152, - 0.018656, - -0.019855, - -0.0077806, - 0.042425, - -0.0078687, - 0.010457, - -0.023229, - -0.0070625, - -0.020904, - 0.055357, - -0.075473, - -0.0044525, - 0.041562, - -0.03207, - 0.02126, - 0.051364, - -0.03064, - 0.0097026, - -0.018162, - 0.043431, - -0.0036622, - 0.010675, - -0.00043576, - 0.048229, - -0.014316, - -0.045328, - 0.013552, - 0.0037621, - -0.019339, - 0.069169, - -0.041315, - -0.0058041, - -0.0087436, - 0.00039327, - -0.0086063, - -0.026982, - 0.012939, - -0.023107 - ], - "linguistics": [ - 0.009048, - -0.05141, - -0.014079, - -0.018487, - 0.013069, - -0.017855, - 0.035851, - -0.069423, - 0.031915, - -0.018592, - 0.019624, - -0.04952, - -0.058009, - 0.027686, - 0.021994, - -0.040602, - 0.08474, - -0.012271, - 0.021082, - 0.037735, - -0.062114, - 0.002901, - 0.064534, - 0.057893, - 0.024598, - 0.034375, - -0.042362, - 0.060004, - 0.027409, - -0.03008, - 0.049304, - 0.0053337, - 0.0029757, - -0.050176, - 0.035812, - 0.030789, - 0.051533, - 0.043108, - 0.029305, - -0.040327, - -0.048457, - -0.064534, - 0.036391, - -0.032198, - 0.058422, - -0.0091752, - -0.080228, - -0.022159, - 0.024827, - -0.0068245, - -0.0057183, - 0.022074, - 0.011623, - 0.0047236, - -0.026917, - 0.046896, - -0.0015992, - 0.030388, - -0.0076341, - 0.031892, - 0.035168, - -0.02967, - 0.044872, - 0.054927, - 0.01304, - 0.0074262, - 0.034326, - 0.031561, - -0.002411, - 0.0077609, - -0.0081783, - 0.0075883, - 0.036053, - -0.043726, - 0.036621, - -0.067277, - 0.034527, - -0.033791, - 0.048295, - -0.022815, - -0.042721, - 0.016171, - -0.051292, - 0.016074, - -0.058318, - -0.059035, - 0.016844, - -0.020807, - -0.0099156, - 0.037479, - 0.057713, - 0.020314, - -0.040969, - 0.029431, - 0.045, - 0.055783, - -0.0028058, - 0.024717, - 0.012189, - 0.013051, - 0.025128, - -0.0019489, - -0.074537, - 0.017953, - 0.015459, - -0.049607, - 0.016352, - 0.044212, - -0.00052557, - -0.041947, - -0.035701, - 0.06531, - 0.028902, - -0.0031086, - -0.045122, - 0.011229, - -0.018397, - -0.010267, - -0.013641, - 0.032176, - 0.011579, - -0.022302, - -0.040612, - -0.035189, - 0.051311, - -0.0033567, - -0.054457, - -0.032626, - -0.048233, - 0.14101, - 0.0061141, - 0.038273, - -0.062048, - -0.023387, - 0.012761, - 0.037285, - -0.024062, - 0.018962, - 0.024107, - -0.016979, - -0.033101, - -0.011337, - 0.034082, - 0.030731, - -0.024428, - -0.064986, - -0.031628, - 0.035329, - -0.078244, - -0.017413, - 0.046423, - 0.069589, - 0.0013017, - -0.045709, - -0.012214, - 0.066275, - 0.053613, - -0.011894, - 0.028142, - 0.035078, - 0.027845, - 0.0079943, - -0.081439, - -0.063797, - -0.030973, - -0.023566, - -0.01895, - 0.001045, - -0.035451, - 0.012816, - 0.042357, - -0.050208, - 0.011075, - 0.060313, - 0.036541, - 0.045831, - 0.0015437, - 0.072739, - -0.015815, - -0.020857, - -0.048577, - 0.035515, - -0.024018, - -0.021974, - 0.090082, - -0.020881, - -0.019741, - 0.08964, - -0.0073004, - 0.066164, - 0.012677, - 0.095782, - -0.031497, - -0.054852, - -0.03324, - 0.029034, - -0.03737, - -0.0014004, - -0.016711, - 0.004829, - -0.10589, - -0.047032, - -0.0043825, - -0.042307, - -0.007769, - 0.012904, - -0.0019839, - -0.040543, - -0.034278, - 0.010084, - 0.085504, - 0.00029804, - -0.024933, - -0.05566, - 0.017839, - 0.039021, - -0.0090956, - -0.04598, - -0.048377, - -0.017828, - -0.02503, - -0.024568, - -0.0077177, - 0.07759, - 0.017544, - -0.031499, - 0.0049907, - 0.09314, - -0.0045874, - -0.016026, - 0.011595, - -0.01317, - -0.018381, - -0.010903, - -0.0054816, - -0.02559, - 0.0091083, - -0.035038, - -0.055014, - 0.035424, - -0.0026937, - -0.017268, - -0.014921, - 0.012174, - 0.027713, - -0.062266, - 0.0029011, - -0.011673, - -0.032143, - 0.0060491, - 0.029244, - 0.01581, - -0.012517, - 0.0088203, - -0.036916, - -0.0041689, - -0.031121, - 0.036293, - 0.031037, - -0.036946, - 0.03402, - -0.0003314, - -0.015488, - 0.0086894, - -0.0099282, - 0.0076583, - -0.01486, - 0.038366, - 0.0049548, - 0.02461, - 0.03184, - 0.057048, - -0.064692, - -0.02854, - 0.0022213, - -0.0301, - 0.01315, - 0.042837, - -0.0012448, - -0.042088, - 0.050873, - -0.01586, - -0.023514, - -0.051085, - -0.0079662, - 0.0016534, - -0.011333, - -0.0084518, - -0.038467, - -0.014231, - -0.032907, - -0.027334, - -0.030572, - -0.042859, - 0.055528, - -0.0073451, - -0.015811, - 0.0018358, - 0.016532, - 0.0098167 - ], - "style": [ - 0.00057386, - -0.036626, - 0.0081291, - -0.014724, - 0.0015968, - -0.040432, - -0.068835, - -0.093999, - -0.0095623, - 0.002952, - 0.015568, - -0.067689, - 0.026229, - 0.030125, - -0.0068922, - 0.068315, - 0.14937, - 0.13448, - 0.0667, - 0.013248, - -0.0057908, - -0.037219, - 0.025901, - 0.07105, - -0.01417, - 0.036758, - 0.013517, - 0.033809, - -0.020257, - 0.0074019, - -0.11853, - -0.068048, - 0.03243, - -0.11602, - 0.02335, - 0.00076556, - -0.012399, - 0.043689, - -0.036649, - 0.025304, - 0.020051, - -0.21118, - 0.025032, - 0.0095711, - -0.079025, - -0.055354, - 0.019153, - -0.097432, - -0.010863, - -0.0037524, - 0.016594, - -0.035709, - 0.029571, - 0.05196, - -0.067393, - -0.0042576, - 0.074947, - -0.02937, - -0.014599, - -0.020515, - 0.0059371, - -0.043148, - 0.15893, - -0.008302, - 0.033136, - 0.073069, - -0.022092, - 0.04494, - -0.014921, - -0.011608, - 0.027732, - 0.018935, - -0.059724, - -0.015117, - 0.082731, - 0.026693, - -0.047177, - 0.010011, - -0.075691, - -0.013788, - -0.023731, - -0.043195, - 0.043999, - 0.095205, - -0.0021179, - -0.10993, - -0.01387, - -0.0051772, - 0.025502, - 0.038494, - 0.0018969, - -0.0051088, - -0.085124, - 0.034766, - 0.028512, - 0.090432, - -0.079187, - -0.012055, - 0.039655, - 0.013723, - 0.046536, - 0.053416, - 0.020993, - 0.013967, - -0.043465, - -0.097611, - -0.02834, - 0.021892, - -0.042012, - 0.038366, - -0.01427, - 0.040407, - 0.076878, - 0.046751, - -0.1555, - -0.064105, - -0.015374, - -0.036504, - -0.061576, - 0.02098, - 0.098517, - -0.022521, - 0.0024034, - -0.070591, - 0.16405, - 0.0042062, - -0.050073, - -0.030086, - -0.010562, - 0.13632, - -0.044977, - -0.094477, - -0.0049154, - -0.026717, - -0.090719, - 0.02132, - -0.015159, - 0.022719, - 0.043454, - -0.094296, - 0.068393, - -0.017073, - 0.057255, - 0.084273, - -0.070799, - -0.046673, - 0.10109, - 0.037564, - 0.014775, - -0.064227, - 0.036767, - 0.096927, - 0.040114, - -0.063031, - -0.029008, - 0.13316, - 0.070276, - 0.067168, - -0.00070072, - 0.034917, - 0.014721, - 0.023467, - -0.1339, - 0.0016078, - 0.018104, - 0.05738, - 0.032341, - -0.090578, - -0.069089, - 0.0077242, - -0.02185, - 0.0028697, - 0.049977, - -0.032398, - 0.023695, - 0.11198, - -0.044922, - 0.067547, - 0.0013032, - 0.02013, - 0.049449, - -0.042475, - -0.0014505, - 0.0086191, - 0.086773, - -0.0015288, - 0.056049, - 0.10495, - -0.064108, - -0.061594, - 0.062846, - 0.11147, - 0.014878, - -0.041416, - -0.072081, - 0.0062682, - 0.054204, - -0.079033, - 0.020739, - 0.038179, - -0.21554, - 0.004776, - -0.017218, - 0.0095516, - -0.039953, - -0.027426, - 0.00068085, - 0.065447, - -0.043399, - -0.029109, - 0.16196, - -0.069765, - -0.030507, - 0.04826, - 0.013758, - -0.034488, - -0.010327, - 0.068926, - -0.068204, - 0.047487, - -0.10899, - -0.060931, - 0.042944, - 0.1741, - 0.0016325, - 0.044107, - 0.034775, - 0.080784, - -0.0078688, - -0.0064613, - -0.015884, - -0.091545, - -0.093055, - 0.020047, - 0.025186, - 0.040418, - -0.0088386, - -0.073065, - 0.073926, - 0.055101, - 0.025034, - -0.023209, - 0.012931, - 0.020918, - -0.049241, - 0.0051078, - -0.041741, - -0.047371, - 0.06397, - 0.059001, - 0.099354, - -0.0076067, - -0.031455, - 0.0044348, - 0.070161, - 0.0017577, - 0.0049029, - 0.022673, - -0.034545, - 0.040277, - 0.063632, - -0.0069621, - 0.072772, - -0.023305, - 0.063273, - 0.0056625, - -0.0086692, - 0.019302, - -0.071645, - -0.021727, - -0.025511, - 0.11879, - -0.15248, - -0.061486, - 0.058335, - -0.078567, - 0.020957, - -0.014269, - 0.011025, - 0.046977, - 0.12549, - 0.014444, - 0.05692, - -0.051546, - -0.011929, - -0.014292, - 0.054662, - 0.086578, - 0.044376, - 0.014759, - -0.065391, - -0.068914, - 0.052493, - -0.061704, - 0.042065, - -0.0098533, - 0.053021, - 0.041143, - -0.0084123, - -0.06177 - ], - "roundtrip": [ - -0.049157, - 0.040543, - 0.021283, - 0.043403, - 0.056953, - 0.033375, - 0.010261, - -0.076972, - 0.009444, - -0.028985, - 0.046414, - -0.091107, - -0.061347, - -0.034429, - 0.016967, - -0.042804, - 0.060396, - -0.074127, - 0.027291, - 0.024245, - -0.016134, - 0.049122, - -0.04165, - 0.033722, - 0.020348, - 0.055003, - -0.0024015, - 0.019916, - -0.072907, - 0.037853, - -0.056609, - 0.077437, - -0.0097566, - -0.12473, - -0.041237, - 0.068587, - 0.0056599, - 0.079682, - 0.024101, - -0.0032908, - -0.015346, - -0.073136, - -0.033868, - -0.0045554, - -0.044155, - 0.021397, - 0.021395, - 0.059036, - -0.069064, - 0.054177, - -0.01198, - 0.035963, - -0.0043074, - -0.039762, - -0.067795, - -0.0044815, - 0.042322, - -0.0045977, - -0.045821, - -0.022102, - -0.0026159, - 0.0071771, - 0.073961, - 0.00011086, - 0.017396, - -0.017756, - 0.030447, - -0.0018144, - -0.048741, - -0.0058605, - 0.025319, - 0.028747, - 0.016326, - -0.026423, - -0.017454, - 0.019707, - -0.030163, - -0.023076, - -0.051661, - -0.017358, - -0.050538, - -0.10496, - 0.012591, - -0.0038365, - -0.025736, - -0.063334, - 0.0079135, - 0.018995, - 0.019688, - -0.042864, - 0.080666, - 0.076081, - -0.086029, - 0.044593, - -0.060832, - 0.04588, - -0.00080391, - 0.0263, - -0.088489, - -0.050663, - 0.067284, - 0.044114, - -0.011967, - -0.027236, - -0.022592, - -0.022741, - -0.046461, - -0.050535, - -0.027434, - -0.054392, - 0.09411, - -0.01379, - 0.019142, - 0.037313, - -0.0038044, - -0.01741, - -0.014101, - -0.033309, - -0.040462, - 0.063512, - 0.10384, - -0.011681, - -0.0060193, - 0.02013, - 0.014727, - -0.037641, - 0.020803, - -0.088162, - 0.044741, - 0.021082, - 0.0063333, - 0.057701, - -0.046267, - -0.039092, - 0.023907, - -0.012351, - 0.057001, - 0.00021124, - -0.0057651, - -0.043986, - -0.009175, - -0.009262, - -0.0096841, - 0.00010081, - -0.071972, - 0.03749, - -0.090458, - -0.06546, - -0.061587, - -0.038988, - 0.010804, - 0.048227, - -0.081456, - -0.0032214, - 0.051613, - 0.0057788, - -0.061035, - -0.0013625, - -0.068168, - -0.089461, - 0.034358, - 0.024247, - 0.014682, - -0.084432, - -0.017667, - 0.040733, - 0.05025, - -0.014139, - 0.05834, - 0.042496, - 0.060891, - -0.028595, - -0.060485, - -0.005055, - 0.020081, - 0.017671, - -0.029263, - -0.009829, - -0.031588, - 0.021271, - 0.023617, - -0.0020243, - -0.009283, - -0.056393, - -0.027155, - -0.027366, - -0.07936, - 0.1331, - 0.02444, - 0.0069247, - 0.086474, - -0.022563, - -0.029937, - -0.037199, - -0.043071, - 0.031861, - -0.021252, - 0.014024, - 0.060187, - -0.0056894, - -0.094167, - 0.055005, - 0.072116, - -0.038011, - 0.041233, - -0.015645, - -0.091717, - 0.0014302, - 0.080992, - -0.017059, - 0.11988, - -0.10776, - 0.010106, - -0.082788, - 0.06396, - -0.0078202, - -0.0016725, - -0.026893, - 0.044875, - -0.039917, - 0.016312, - 0.027982, - -0.038684, - 0.058259, - -0.010421, - 0.029216, - 0.020715, - 0.057751, - -0.019155, - 0.015461, - -0.00058669, - -0.063988, - 0.049814, - 0.010993, - 0.051326, - -0.04605, - 0.017473, - 0.038745, - 0.036348, - 0.051157, - 0.03727, - 0.012807, - 0.078764, - -0.12755, - -0.049719, - 0.038342, - 0.092729, - -0.040283, - 0.032811, - 0.023633, - 0.028173, - 0.0094717, - -0.035903, - -0.000040418, - 0.034403, - -0.001508, - 0.0068008, - 0.021845, - 0.042748, - 0.038211, - 0.0225, - 0.049696, - -0.034391, - -0.12406, - 0.038809, - 0.018835, - -0.0063759, - -0.038413, - 0.010785, - 0.049756, - 0.011695, - 0.064919, - -0.074707, - -0.0094961, - -0.11214, - -0.039865, - -0.011425, - -0.03609, - 0.040548, - -0.020368, - 0.075551, - -0.0097629, - -0.054411, - -0.03416, - -0.054966, - -0.029315, - -0.052351, - 0.078391, - -0.058466, - -0.085838, - 0.022439, - -0.0041287, - -0.0059229, - -0.045293, - 0.11229, - 0.046893, - 0.011768, - -0.041119, - -0.0221, - -0.026204 - ], - "group": [ - 0.10223, - -0.021284, - -0.017715, - 0.032971, - -0.033726, - -0.025824, - 0.025657, - -0.11566, - 0.021397, - -0.034355, - -0.034955, - -0.066677, - 0.042277, - -0.014, - -0.011588, - 0.019342, - 0.13917, - 0.0030935, - 0.090534, - 0.013075, - -0.019165, - 0.033802, - -0.0099105, - 0.12313, - -0.02272, - -0.0091661, - -0.025206, - -0.015066, - -0.0091318, - -0.042605, - -0.030947, - -0.013152, - -0.012874, - -0.055339, - -0.0052148, - 0.040024, - -0.050313, - 0.010621, - 0.0049046, - -0.048459, - -0.047662, - -0.093668, - -0.050915, - -0.047597, - 0.063158, - 0.040923, - 0.021618, - 0.025365, - -0.046437, - -0.058923, - 0.088064, - 0.037424, - -0.035412, - 0.01944, - 0.037479, - 0.068771, - -0.026289, - -0.016837, - -0.057006, - 0.037574, - -0.031354, - -0.058999, - 0.12725, - 0.034995, - 0.10922, - 0.011946, - 0.038535, - -0.010514, - 0.00078105, - -0.017694, - 0.026759, - 0.011484, - 0.027969, - -0.046905, - 0.08928, - -0.01828, - -0.016834, - -0.031755, - 0.091616, - -0.034467, - -0.029979, - 0.069064, - -0.0098585, - 0.040156, - -0.04775, - -0.047437, - 0.024981, - -0.021854, - 0.067912, - -0.019613, - 0.0016959, - 0.091246, - -0.093544, - -0.0036309, - 0.020836, - 0.10861, - -0.0043332, - 0.035534, - 0.10967, - 0.025287, - 0.012429, - -0.0015969, - 0.10115, - 0.043769, - 0.0061641, - -0.10499, - -0.031044, - -0.02955, - 0.011648, - 0.054214, - -0.031861, - 0.084178, - 0.087767, - -0.006045, - 0.024727, - 0.010251, - 0.0042444, - -0.008018, - -0.05856, - 0.029279, - 0.01056, - 0.060759, - 0.049741, - -0.0054563, - 0.10487, - -0.044829, - 0.059054, - -0.11535, - 0.0051831, - 0.079879, - 0.055872, - 0.03707, - -0.016385, - 0.0075343, - 0.010444, - 0.029619, - 0.023426, - 0.074084, - 0.0076458, - 0.036102, - -0.03472, - 0.02123, - -0.054634, - -0.0072843, - -0.019907, - -0.014617, - -0.0032135, - -0.0019436, - -0.04362, - 0.013802, - 0.057652, - 0.080531, - -0.037353, - -0.098945, - 0.02626, - 0.0251, - -0.024627, - 0.025019, - 0.035127, - -0.00051116, - -0.030802, - 0.010535, - -0.031086, - 0.015673, - 0.043967, - 0.059144, - -0.049845, - -0.05901, - 0.00010804, - 0.010354, - -0.0091242, - -0.023828, - 0.051052, - 0.059021, - -0.069332, - 0.066858, - -0.043407, - 0.055518, - -0.036382, - -0.025924, - -0.068198, - -0.001413, - 0.011754, - 0.13436, - 0.0096624, - -0.058723, - -0.069473, - 0.08869, - -0.014903, - -0.038376, - 0.00534, - 0.065891, - -0.033148, - -0.012029, - -0.025648, - -0.0081797, - 0.0036944, - -0.0025635, - -0.025845, - -0.019688, - -0.18194, - 0.064769, - 0.010783, - 0.02774, - 0.014144, - 0.0046958, - -0.037489, - -0.0035664, - 0.072326, - -0.075226, - 0.18192, - -0.050928, - 0.020751, - -0.00046644, - -0.10369, - -0.006819, - 0.023999, - 0.022032, - 0.05555, - 0.012399, - -0.0049249, - -0.0030675, - -0.021951, - 0.11852, - -0.040565, - 0.027461, - 0.057832, - 0.048814, - 0.0295, - 0.0085906, - 0.053104, - -0.033408, - -0.037043, - -0.029138, - 0.016815, - -0.0069834, - 0.039393, - -0.0085552, - -0.0093466, - -0.041929, - 0.065461, - -0.0020643, - 0.059081, - 0.030926, - 0.040762, - 0.018359, - -0.02854, - 0.060939, - -0.017374, - -0.043752, - 0.032016, - 0.083327, - 0.016202, - 0.035315, - -0.0043106, - -0.025002, - -0.083544, - 0.1221, - 0.027024, - -0.047043, - 0.025357, - 0.038048, - 0.0060827, - -0.02519, - 0.013168, - -0.019765, - -0.053, - 0.033674, - -0.027753, - 0.073704, - -0.015301, - 0.11958, - -0.15284, - 0.001137, - 0.052693, - -0.0059598, - 0.035768, - 0.0085645, - -0.066977, - 0.04457, - 0.053753, - -0.02249, - 0.0024898, - 0.066146, - 0.018627, - -0.087423, - 0.04572, - -0.078681, - 0.04814, - 0.010666, - 0.02237, - 0.030458, - -0.0014566, - -0.068025, - 0.0091216, - 0.029521, - 0.015334, - 0.066177, - -0.074645, - -0.0075103 - ], - "antipsychotic": [ - 0.0015916, - -0.0019284, - -0.065366, - 0.046298, - 0.012523, - 0.024594, - -0.016806, - -0.060348, - -0.032753, - 0.010976, - -0.015913, - 0.00063141, - 0.02262, - -0.015518, - 0.021047, - 0.01589, - 0.038142, - -0.001198, - 0.042592, - -0.026054, - -0.056192, - -0.0031197, - 0.023943, - 0.032091, - -0.018059, - -0.016482, - -0.017952, - 0.010022, - 0.053813, - 0.046918, - 0.000047697, - -0.019272, - -0.014718, - -0.026685, - 0.037641, - 0.0097982, - 0.019522, - -0.032746, - 0.027779, - 0.010956, - -0.019358, - -0.050994, - 0.019662, - -0.012252, - -0.0014878, - 0.02045, - 0.0041913, - 0.13434, - 0.018907, - 0.041703, - -0.086583, - -0.013046, - -0.016406, - 0.015765, - 0.013464, - -0.085033, - 0.041431, - -0.0046991, - -0.023114, - 0.016802, - -0.0056243, - -0.020619, - 0.086576, - 0.026084, - -0.066919, - -0.015226, - 0.05575, - -0.014141, - -0.0024888, - 0.0097386, - -0.010708, - 0.033731, - 0.018731, - -0.062867, - -0.053963, - -0.031062, - -0.011626, - -0.024573, - -0.0088222, - -0.015998, - 0.044122, - 0.00202, - -0.0011226, - 0.01559, - -0.048003, - 0.034949, - 0.07829, - -0.029636, - 0.01572, - -0.063333, - 0.029221, - 0.022925, - -0.082532, - -0.0063222, - -0.041464, - 0.03724, - -0.020255, - -0.070924, - 0.013801, - 0.035979, - 0.02815, - 0.050959, - -0.017279, - -0.015038, - -0.034698, - -0.077746, - 0.023089, - -0.063491, - -0.0053682, - 0.080904, - -0.013234, - 0.04851, - 0.036412, - 0.013009, - -0.0094951, - -0.025752, - -0.0034717, - -0.024487, - -0.047038, - -0.0041874, - 0.0015519, - 0.041817, - -0.0064341, - -0.078896, - 0.067973, - -0.00063623, - 0.037346, - 0.027224, - 0.016956, - 0.02016, - 0.005733, - -0.00319, - -0.016931, - -0.016284, - 0.011099, - 0.021602, - 0.0046353, - 0.068072, - 0.0071965, - -0.033549, - 0.029214, - 0.024366, - -0.05523, - -0.0025712, - -0.015884, - -0.047316, - 0.039038, - 0.02773, - 0.0091869, - 0.045864, - 0.063789, - 0.098322, - 0.00012189, - 0.010341, - 0.013631, - 0.038131, - -0.0077427, - 0.03019, - 0.045472, - 0.0087301, - -0.0064681, - 0.059973, - -0.023141, - -0.0077062, - -0.048126, - -0.025657, - 0.035705, - -0.053642, - -0.0072996, - -0.070553, - 0.0082573, - -0.047249, - 0.028287, - 0.006134, - -0.017342, - 0.021543, - -0.042888, - -0.044462, - -0.019124, - -0.063993, - 0.025605, - -0.071946, - -0.053233, - 0.0028107, - 0.016465, - -0.03402, - -0.007758, - 0.07394, - -0.04857, - -0.0051408, - 0.075233, - 0.059056, - 0.040834, - -0.01337, - -0.015736, - -0.01266, - -0.002006, - 0.026566, - 0.0026332, - 0.034472, - -0.091979, - 0.033947, - -0.063104, - -0.0052138, - 0.011961, - 0.033839, - 0.012468, - -0.02906, - -0.05032, - 0.014249, - 0.13001, - 0.0094308, - 0.033624, - 0.028001, - 0.036598, - -0.00037351, - -0.032742, - 0.019836, - 0.0064487, - -0.019213, - -0.037873, - 0.013977, - 0.017148, - 0.080581, - 0.016411, - -0.0050178, - 0.024135, - 0.053694, - 0.027424, - -0.044385, - -0.008746, - -0.046708, - -0.037777, - -0.0026737, - 0.058951, - -0.030424, - -0.00052838, - -0.065907, - 0.054372, - -0.012041, - 0.017622, - 0.015785, - -0.041221, - -0.0091071, - -0.092239, - -0.037468, - -0.00090131, - -0.0071477, - 0.017507, - 0.0094445, - -0.039367, - 0.018642, - 0.010699, - -0.021784, - -0.013307, - -0.025409, - 0.015493, - 0.0096911, - 0.0044024, - -0.068849, - 0.050328, - 0.0019097, - -0.01825, - -0.0030119, - -0.020506, - -0.011819, - -0.029975, - -0.0026454, - 0.0053663, - 0.02978, - -0.02472, - 0.066405, - -0.061067, - -0.037161, - -0.01921, - -0.077649, - 0.0089769, - 0.016728, - -0.054094, - -0.0039373, - 0.084423, - -0.05384, - -0.069283, - 0.007523, - 0.012445, - 0.041519, - -0.015676, - -0.00022868, - -0.0063749, - -0.025673, - 0.001588, - -0.040534, - 0.012281, - -0.081702, - -0.065755, - -0.012909, - -0.0035913, - 0.040211, - 0.0058484, - 0.042714 - ], - "story-telling": [ - -0.023384, - -0.029809, - 0.0012934, - 0.034005, - -0.058062, - -0.020186, - -0.034223, - -0.065248, - -0.0097672, - 0.019982, - 0.026879, - -0.023081, - 0.015936, - -0.0068982, - 0.028695, - 0.0013758, - 0.027318, - 0.00061733, - 0.0066056, - 0.016006, - -0.011, - 0.010692, - 0.0070372, - 0.013482, - -0.018793, - 0.017337, - 0.029788, - 0.021925, - -0.017238, - -0.021952, - -0.055411, - -0.045099, - 0.043592, - -0.094843, - 0.056198, - -0.0094437, - 0.033941, - 0.0053007, - -0.036941, - -0.0038275, - -0.024619, - -0.089017, - 0.054113, - 0.044811, - 0.01873, - -0.058728, - 0.02119, - -0.020278, - -0.023639, - -0.024352, - -0.03185, - 0.035734, - -0.0069451, - -0.015384, - -0.0032326, - 0.015104, - 0.01683, - -0.061012, - -0.030183, - -0.0017458, - -0.051725, - -0.025201, - 0.034019, - -0.026246, - -0.0016033, - 0.02297, - -0.0027274, - 0.04508, - -0.019548, - 0.0043321, - 0.0019202, - -0.01832, - 0.010442, - 0.036841, - 0.020126, - 0.033777, - 0.015261, - -0.0088335, - 0.0062297, - -0.022907, - -0.039764, - -0.044993, - -0.0041345, - 0.044973, - 0.0005193, - -0.044015, - 0.0095659, - 0.011059, - -0.0035548, - 0.017868, - 0.0014261, - 0.032086, - -0.079268, - -0.012432, - -0.0013089, - 0.04677, - 0.012387, - 0.042523, - -0.0035305, - 0.024126, - 0.033065, - -0.0099284, - -0.025446, - 0.026335, - -0.014141, - -0.053673, - -0.00095023, - -0.011765, - -0.027745, - 0.03267, - -0.042194, - 0.022457, - 0.050291, - 0.020487, - -0.071267, - 0.040635, - -0.015333, - 0.011463, - -0.046486, - 0.016417, - 0.0012096, - -0.01759, - -0.030252, - -0.0067874, - 0.058355, - 0.02576, - -0.0033435, - -0.048247, - 0.014264, - 0.072173, - 0.01792, - -0.0004052, - -0.076813, - -0.029174, - 0.037683, - -0.022454, - 0.0161, - 0.028696, - -0.0063401, - 0.0047926, - 0.025295, - -0.024896, - 0.020357, - 0.0026791, - 0.023993, - -0.092741, - -0.025158, - 0.0079108, - -0.0051539, - 0.024004, - 0.041398, - 0.063483, - -0.0070207, - -0.039523, - -0.029255, - 0.048605, - 0.0166, - 0.038672, - 0.033298, - 0.0080133, - 0.024099, - 0.085485, - -0.067698, - 0.034784, - -0.01202, - 0.057583, - 0.035418, - 0.0083215, - -0.03064, - -0.016651, - 0.033553, - -0.020632, - 0.036023, - -0.021883, - 0.028487, - 0.027417, - 0.028818, - 0.050562, - -0.03637, - 0.0047567, - 0.0024401, - -0.0097479, - -0.014437, - -0.029058, - -0.04273, - -0.025237, - 0.055363, - 0.066998, - 0.0053691, - -0.023067, - 0.024745, - 0.049985, - 0.011487, - -0.048952, - -0.023813, - 0.046531, - 0.024645, - -0.027538, - -0.017096, - 0.029438, - -0.10015, - 0.023076, - 0.014757, - 0.0083552, - 0.022763, - 0.029736, - -0.03209, - 0.0055176, - 0.018829, - 0.031921, - 0.060585, - -0.0093388, - -0.0021331, - -0.0084007, - -0.0027298, - 0.01788, - -0.0072162, - -0.0034445, - -0.04136, - 0.00096776, - 0.0015899, - -0.00046269, - 0.0095616, - 0.071471, - -0.011564, - -0.050957, - 0.050771, - 0.043984, - -0.035027, - 0.010533, - 0.032553, - -0.036896, - -0.041939, - -0.0067446, - 0.023675, - 0.060685, - 0.016867, - -0.031258, - 0.040982, - -0.030616, - 0.030647, - 0.0020775, - -0.0053303, - -0.013598, - -0.06819, - 0.010187, - -0.036809, - -0.023948, - 0.013045, - 0.045182, - 0.030188, - -0.016775, - -0.0061648, - 0.064445, - 0.02167, - 0.029312, - -0.034185, - 0.021477, - -0.017285, - 0.030584, - 0.028587, - 0.023513, - -0.0011485, - 0.02095, - 0.011249, - -0.0037131, - 0.053048, - 0.0053371, - -0.00006986, - -0.01446, - 0.0066068, - 0.026354, - -0.04832, - -0.010655, - -0.00086831, - -0.0449, - 0.037402, - -0.026558, - -0.0092297, - 0.029003, - 0.032311, - -0.04463, - -0.0036097, - -0.023069, - 0.0093605, - 0.01749, - 0.024542, - 0.01673, - -0.01205, - -0.016501, - 0.022844, - 0.018722, - 0.017844, - -0.05258, - 0.032113, - 0.061175, - 0.025442, - -0.0080557, - -0.0016115, - 0.014317 - ], - "warfighting": [ - -0.010323, - -0.03069, - -0.0065704, - -0.026314, - -0.033684, - 0.032154, - 0.0091223, - -0.06007, - 0.0085284, - 0.079823, - 0.002679, - -0.039937, - -0.028208, - 0.027207, - -0.049991, - 0.026528, - 0.068952, - 0.010285, - 0.090727, - -0.0045319, - 0.02104, - -0.033092, - 0.0055501, - 0.028693, - -0.029777, - 0.011988, - 0.023952, - -0.051716, - 0.011379, - -0.024865, - 0.030682, - -0.023899, - 0.025326, - -0.057028, - 0.076005, - 0.029525, - -0.0055144, - 0.021522, - 0.10153, - -0.019655, - -0.07059, - -0.071408, - 0.04057, - -0.0072379, - -0.045689, - -0.068396, - 0.0036653, - -0.01977, - -0.011931, - -0.052703, - 0.016163, - 0.010132, - 0.010813, - -0.012165, - -0.029078, - 0.022293, - 0.011231, - -0.020426, - 0.024045, - 0.034551, - -0.0077572, - 0.0047571, - 0.083799, - -0.032844, - -0.0046653, - -0.042662, - -0.06615, - 0.032226, - 0.019608, - -0.02507, - 0.041583, - 0.019064, - -0.00085674, - 0.01596, - 0.047648, - -0.024571, - 0.038162, - 0.016567, - -0.0052509, - 0.042576, - 0.023138, - -0.01536, - 0.0055865, - 0.013128, - -0.051315, - 0.03176, - -0.04578, - -0.0095387, - 0.024786, - 0.027658, - 0.012896, - 0.055164, - -0.050422, - 0.007299, - 0.031324, - 0.041033, - -0.062035, - -0.032431, - -0.014997, - 0.018408, - 0.023931, - -0.03331, - 0.058613, - -0.020039, - -0.0056673, - -0.037679, - -0.010336, - 0.042413, - -0.035322, - -0.042423, - 0.023778, - 0.016648, - 0.0019269, - -0.014716, - 0.0027698, - -0.040459, - -0.059093, - 0.039643, - -0.037435, - -0.017686, - -0.068864, - -0.046613, - -0.042285, - 0.016106, - 0.085044, - 0.05423, - -0.011092, - -0.097571, - 0.03289, - 0.10606, - -0.0088691, - 0.0043984, - 0.063665, - 0.0075125, - 0.054667, - -0.015628, - 0.038858, - 0.066179, - -0.0046337, - 0.0028872, - -0.0055781, - -0.071936, - -0.043698, - 0.014201, - -0.07091, - 0.0091658, - 0.035116, - -0.010558, - 0.02536, - 0.069092, - 0.04199, - 0.061321, - -0.03618, - -0.063377, - -0.014537, - 0.030151, - -0.051358, - 0.019646, - 0.039934, - -0.011261, - 0.071251, - 0.023542, - -0.090251, - -0.05072, - -0.068738, - -0.02181, - -0.031531, - 0.0078649, - 0.0030062, - -0.02684, - 0.060975, - -0.00955, - -0.043691, - -0.037241, - -0.031871, - 0.01635, - -0.02967, - -0.0049978, - -0.042704, - -0.058691, - -0.010563, - 0.0496, - -0.056539, - -0.0076917, - 0.028187, - -0.050442, - -0.017056, - 0.12833, - -0.028071, - 0.012497, - 0.042373, - 0.037101, - -0.010824, - -0.076921, - -0.0091677, - -0.053332, - -0.055827, - 0.066365, - 0.0015381, - 0.034404, - -0.1095, - -0.020548, - -0.020701, - 0.057613, - -0.040344, - -0.047032, - -0.010885, - 0.059762, - 0.023858, - 0.052787, - 0.078118, - -0.019428, - 0.013178, - 0.01248, - -0.013648, - 0.086749, - 0.037414, - 0.0067682, - -0.054396, - 0.010237, - 0.027682, - 0.0013899, - 0.059167, - 0.085558, - -0.053778, - -0.038825, - -0.021316, - 0.04195, - -0.023927, - -0.02243, - -0.030543, - -0.0097069, - -0.057552, - -0.009193, - 0.030325, - 0.022732, - -0.072215, - 0.0052066, - 0.0031717, - -0.0082965, - 0.022268, - 0.0050464, - -0.010312, - -0.019635, - -0.052598, - 0.066918, - -0.033627, - -0.069614, - 0.083752, - 0.035133, - 0.011328, - 0.077333, - 0.043066, - 0.021267, - 0.028894, - 0.052946, - 0.042976, - 0.033416, - 0.01595, - 0.01875, - -0.019274, - 0.000013466, - -0.064513, - 0.014936, - -0.014701, - 0.033858, - 0.064553, - 0.010848, - -0.0096554, - -0.0078727, - -0.011886, - 0.042569, - -0.04556, - -0.050863, - 0.011536, - -0.01796, - 0.010118, - 0.047853, - 0.014966, - -0.046927, - 0.089899, - 0.010685, - 0.0051507, - 0.020103, - 0.021015, - -0.068235, - -0.027863, - -0.005, - -0.007017, - -0.04041, - -0.033447, - 0.055156, - -0.027573, - -0.018493, - 0.065745, - -0.065508, - 0.0056247, - 0.044126, - -0.050638, - -0.049778 - ], - "troubles": [ - 0.046679, - -0.044463, - 0.076991, - -0.048336, - -0.017975, - 0.0066574, - -0.0019051, - -0.064583, - 0.036525, - 0.030181, - -0.056356, - -0.050978, - 0.0047432, - -0.026095, - 0.00083456, - -0.029559, - 0.098599, - -0.021664, - 0.072016, - -0.018879, - -0.01799, - -0.00079196, - 0.023565, - 0.072098, - 0.040471, - -0.003273, - 0.033355, - -0.0095564, - 0.094728, - -0.02044, - -0.016676, - 0.041922, - -0.034387, - -0.043145, - -0.015179, - 0.01445, - -0.031163, - 0.020379, - -0.021617, - -0.040023, - 0.03391, - -0.081183, - -0.017952, - 0.049233, - -0.032756, - 0.035298, - 0.0012515, - -0.045262, - 0.012693, - -0.028578, - 0.004768, - -0.017942, - 0.013301, - 0.019582, - -0.038348, - -0.035891, - -0.038682, - -0.060454, - -0.035397, - -0.0025989, - 0.0134, - -0.014267, - 0.10101, - -0.02473, - 0.03198, - -0.020545, - 0.0061567, - -0.029905, - 0.0061151, - -0.0054833, - -0.015402, - -0.0013976, - -0.0019168, - -0.0088705, - -0.010589, - -0.0027887, - 0.038591, - -0.039088, - 0.0022778, - -0.061463, - -0.014728, - 0.059694, - -0.10595, - 0.058302, - 0.057207, - 0.028142, - 0.016904, - -0.023148, - -0.040624, - -0.091284, - 0.064044, - -0.01953, - -0.093294, - 0.013089, - -0.037388, - 0.015604, - -0.015383, - -0.05541, - 0.0062054, - 0.00040658, - -0.016267, - 0.023532, - 0.015601, - -0.037059, - 0.16162, - -0.012395, - -0.024566, - -0.035669, - 0.035089, - -0.022136, - -0.00011211, - 0.027708, - 0.053518, - 0.047814, - 0.03113, - 0.01055, - -0.0054022, - -0.034404, - -0.040121, - 0.00094065, - 0.013036, - -0.06407, - 0.03769, - 0.088002, - 0.10738, - 0.018993, - 0.0064307, - -0.079987, - -0.03762, - 0.1295, - -0.018194, - 0.048723, - -0.0036032, - 0.014724, - 0.011036, - -0.05075, - 0.014379, - 0.037584, - -0.01883, - 0.015966, - 0.091669, - 0.016901, - -0.059878, - 0.042805, - -0.034012, - -0.0074701, - 0.044114, - 0.015398, - -0.00051209, - -0.044178, - 0.048301, - 0.07347, - 0.046728, - -0.035534, - 0.047001, - -0.024216, - 0.042845, - 0.011764, - -0.025476, - -0.061445, - 0.055117, - 0.048274, - -0.033219, - -0.0033997, - -0.014952, - -0.0082839, - 0.0094779, - 0.0028505, - -0.005312, - 0.044476, - 0.0092773, - -0.019202, - 0.031114, - 0.029017, - 0.015047, - 0.040358, - -0.0067011, - -0.01871, - 0.0041664, - -0.015415, - 0.0090025, - -0.0045553, - -0.0072855, - -0.073913, - 0.055395, - -0.015148, - -0.00084678, - 0.076093, - 0.034629, - -0.010006, - -0.0016059, - 0.014085, - -0.088165, - -0.0041294, - 0.00090403, - 0.057477, - 0.027743, - 0.061046, - 0.014821, - 0.0082261, - -0.079108, - -0.010125, - 0.051697, - -0.0078301, - 0.010655, - -0.0041, - -0.0012664, - -0.0045365, - 0.022899, - -0.048218, - 0.066878, - 0.066671, - 0.014954, - 0.034474, - 0.088555, - -0.010933, - -0.016491, - -0.014461, - -0.0018242, - -0.095033, - 0.03779, - -0.0068179, - -0.021097, - 0.097169, - 0.10533, - -0.037493, - -0.014457, - 0.12666, - -0.0028985, - -0.023246, - 0.014038, - -0.06841, - -0.076742, - -0.01774, - 0.10667, - -0.0068745, - 0.0042444, - -0.016154, - 0.057666, - -0.039303, - 0.029503, - 0.024536, - -0.0062215, - -0.0032627, - -0.033067, - 0.015571, - -0.0086776, - -0.018523, - -0.077907, - 0.010745, - -0.0047534, - 0.047115, - 0.014939, - 0.048439, - -0.056719, - 0.0039792, - 0.016043, - 0.068162, - 0.0055992, - 0.0039506, - 0.013455, - -0.0036761, - -0.0087209, - -0.024343, - -0.01484, - -0.019269, - -0.030339, - 0.087911, - -0.027033, - -0.039523, - -0.011525, - 0.10253, - -0.11422, - -0.029903, - 0.099239, - -0.071373, - -0.020818, - 0.013687, - -0.0060214, - 0.055122, - 0.040214, - -0.006338, - 0.051143, - -0.031592, - -0.0083444, - 0.0011053, - -0.0034365, - 0.012979, - -0.020836, - 0.026631, - 0.0057027, - 0.028237, - -0.14148, - 0.0080445, - -0.04284, - -0.032549, - 0.037056, - 0.057447, - -0.035103, - 0.05152 - ], - "handheld": [ - -0.06107, - 0.0026491, - -0.036492, - 0.027341, - 0.0021598, - -0.031496, - 0.0037401, - -0.083812, - 0.040014, - 0.037694, - -0.043384, - -0.012569, - 0.020698, - 0.00025743, - 0.028933, - 0.00072474, - 0.096573, - 0.017828, - 0.071187, - -0.028589, - 0.041365, - -0.078436, - 0.022754, - 0.047585, - 0.0079389, - -0.0061843, - -0.011956, - 0.0050019, - 0.015668, - -0.023952, - -0.026409, - -0.025878, - 0.062741, - -0.013772, - 0.051599, - -0.0037477, - -0.0086312, - 0.013408, - -0.02388, - -0.1027, - -0.0063267, - -0.10399, - -0.0010192, - 0.033895, - 0.042668, - -0.031247, - -0.037489, - -0.072395, - 0.0036032, - -0.0034062, - -0.017121, - 0.040385, - -0.061762, - -0.0053698, - -0.044387, - 0.027344, - 0.016248, - 0.010947, - 0.0022154, - -0.019009, - 0.015937, - -0.075899, - 0.14241, - 0.0069194, - 0.012657, - 0.016183, - 0.0041564, - 0.014085, - -0.085071, - 0.024846, - 0.0048873, - 0.014886, - 0.037772, - 0.081071, - -0.050285, - 0.054716, - -0.020847, - -0.045764, - 0.037059, - 0.022992, - 0.025796, - -0.093004, - -0.082291, - 0.012294, - -0.019739, - -0.042237, - -0.020987, - 0.0098413, - -0.029283, - -0.039233, - 0.068363, - 0.0073022, - -0.051794, - 0.0031861, - 0.025222, - 0.09087, - -0.01328, - -0.10103, - 0.024592, - 0.0074456, - 0.050889, - 0.054102, - 0.059018, - -0.070671, - -0.03124, - -0.10631, - -0.038486, - 0.067748, - -0.019358, - 0.08473, - -0.0063783, - 0.078296, - 0.07344, - 0.028795, - -0.029828, - 0.077966, - -0.050807, - -0.035735, - -0.049391, - -0.031518, - -0.031234, - 0.040331, - 0.015858, - -0.0090368, - 0.061071, - 0.04541, - -0.046013, - -0.054644, - 0.024677, - 0.028052, - -0.022505, - 0.011479, - -0.056105, - -0.063966, - 0.0499, - -0.093974, - 0.080282, - 0.012198, - -0.05022, - -0.055472, - 0.05792, - 0.038308, - 0.07376, - -0.04077, - -0.021798, - 0.017611, - -0.039054, - -0.035372, - 0.020378, - -0.0035649, - 0.060653, - 0.090024, - 0.023241, - -0.057519, - 0.0068785, - 0.051606, - -0.033427, - 0.018095, - 0.023266, - -0.030896, - 0.016849, - 0.047079, - -0.023016, - 0.006725, - 0.050219, - -0.0093581, - -0.045349, - -0.033244, - -0.0067323, - -0.0060867, - -0.050162, - 0.066823, - -0.018704, - 0.044537, - -0.050566, - 0.049277, - -0.015938, - -0.077249, - -0.048333, - 0.0041038, - 0.056101, - -0.068579, - 0.0033469, - -0.058612, - -0.031252, - -0.0090076, - 0.040623, - 0.13737, - -0.054133, - -0.078093, - -0.011492, - 0.020973, - 0.004821, - -0.031192, - -0.012601, - -0.015049, - -0.038041, - -0.010028, - 0.017944, - 0.02484, - -0.11892, - 0.086869, - 0.0088176, - 0.067445, - -0.014458, - 0.025394, - 0.017225, - 0.013121, - -0.077648, - -0.029991, - 0.14014, - 0.015215, - 0.05422, - 0.13558, - -0.026951, - 0.03336, - -0.028574, - -0.028641, - -0.02294, - 0.032732, - 0.015466, - -0.019545, - 0.014638, - 0.10893, - -0.037485, - -0.054538, - -0.022167, - 0.053739, - 0.00056994, - -0.040958, - -0.036896, - -0.032159, - -0.018445, - -0.048822, - 0.041991, - 0.071718, - 0.049023, - 0.0090438, - 0.013703, - -0.049388, - 0.049945, - 0.037993, - -0.010669, - -0.017807, - -0.055275, - -0.0045711, - -0.069415, - 0.047337, - -0.022491, - -0.038197, - -0.0099931, - 0.0081862, - -0.048848, - 0.069874, - 0.045238, - -0.013102, - 0.039941, - -0.024977, - 0.0012898, - 0.010129, - -0.011958, - 0.054089, - -0.054695, - 0.013327, - -0.05453, - 0.021826, - 0.00040193, - -0.051853, - -0.061629, - 0.059096, - -0.048249, - 0.056135, - -0.058431, - -0.015652, - -0.070853, - -0.033172, - -0.024921, - 0.0091143, - 0.059018, - 0.0063011, - 0.10584, - -0.0014365, - -0.027963, - 0.046049, - -0.042524, - -0.049942, - -0.11432, - -0.048972, - -0.022801, - -0.053401, - -0.009423, - 0.0281, - -0.10722, - 0.012006, - 0.11224, - 0.056637, - -0.0094864, - -0.0085938, - 0.083247, - 0.048833 - ], - "hedge-fund": [ - 0.062992, - -0.080962, - -0.01758, - 0.044248, - -0.06803, - -0.0088822, - -0.0099694, - -0.071564, - 0.0658, - -0.0050375, - -0.018934, - 0.0034086, - 0.016657, - 0.010318, - 0.023841, - -0.039903, - 0.085165, - 0.02211, - 0.047797, - 0.0033065, - 0.045278, - 0.04272, - -0.074974, - 0.04675, - 0.053973, - 0.0033268, - 0.018068, - 0.059264, - -0.048292, - -0.023125, - -0.044469, - -0.038214, - -0.079195, - -0.01165, - 0.070438, - 0.036851, - -0.037148, - -0.04516, - 0.02141, - 0.030867, - -0.060725, - -0.15077, - -0.030686, - 0.061026, - -0.027337, - 0.032173, - 0.015515, - 0.0032751, - 0.00022904, - -0.0090642, - -0.010453, - -0.0045204, - 0.0065493, - -0.034247, - 0.022827, - -0.096944, - -0.012995, - -0.036919, - -0.030424, - -0.016675, - -0.029354, - -0.022153, - 0.031746, - 0.023253, - 0.019618, - 0.0057885, - 0.025651, - -0.060738, - 0.053548, - -0.046902, - 0.0099054, - 0.050177, - 0.078141, - 0.059415, - -0.028449, - 0.11175, - -0.0057998, - -0.03079, - 0.018775, - 0.017626, - 0.0054014, - 0.034677, - -0.038805, - 0.051229, - 0.0083741, - -0.020272, - 0.013006, - 0.006695, - 0.020706, - -0.047552, - 0.011325, - 0.030883, - -0.11065, - -0.049298, - -0.015403, - 0.096411, - -0.056678, - -0.016765, - -0.019855, - 0.0096527, - -0.051263, - -0.034921, - -0.017433, - 0.0053017, - -0.0060322, - -0.09595, - -0.020979, - -0.013818, - -0.037953, - 0.043421, - -0.028254, - 0.077962, - -0.020207, - -0.0034709, - -0.043954, - -0.020572, - -0.023896, - 0.0551, - -0.021097, - 0.05329, - 0.060034, - -0.069178, - 0.054985, - 0.025568, - 0.099501, - -0.073831, - 0.0010245, - -0.0098022, - -0.025462, - 0.062268, - -0.00019838, - 0.07712, - -0.04839, - 0.026657, - 0.012535, - -0.014051, - 0.003226, - 0.031749, - 0.0022344, - -0.031871, - -0.024547, - -0.041388, - -0.044163, - 0.062184, - -0.018282, - -0.08849, - 0.04263, - -0.041813, - 0.027545, - -0.067456, - 0.05089, - 0.1258, - -0.020068, - -0.03607, - -0.026429, - -0.045969, - 0.063165, - 0.018337, - 0.0092932, - 0.0057648, - 0.059861, - 0.058928, - -0.026269, - 0.0046639, - -0.00025196, - -0.002389, - -0.062013, - -0.053536, - -0.014651, - 0.028873, - -0.08458, - -0.069475, - -0.0019804, - 0.03164, - -0.0024478, - 0.040954, - -0.056025, - -0.037283, - -0.015786, - -0.028859, - 0.05448, - 0.028231, - -0.004442, - 0.020177, - -0.0027253, - -0.044916, - -0.00060681, - 0.16197, - 0.025251, - 0.058613, - -0.044011, - 0.02315, - 0.028073, - 0.013314, - -0.017014, - -0.065521, - -0.0050472, - 0.062305, - 0.0085117, - -0.039932, - -0.13277, - 0.029137, - -0.019741, - -0.012471, - 0.068903, - -0.00065783, - -0.020912, - -0.028353, - 0.026476, - 0.000052195, - 0.13352, - 0.007006, - 0.0065693, - 0.014319, - -0.039947, - 0.033401, - -0.058165, - -0.012257, - 0.066745, - 0.025435, - 0.016933, - -0.030677, - 0.027543, - 0.050277, - -0.012218, - -0.044461, - 0.053532, - 0.00075779, - -0.0062713, - -0.05843, - -0.024025, - -0.013632, - -0.044562, - 0.019366, - 0.014566, - -0.063161, - 0.030713, - 0.014407, - -0.019926, - 0.024636, - 0.046969, - 0.0088924, - 0.032101, - 0.027011, - -0.044343, - -0.020266, - 0.011358, - 0.049488, - 0.0069756, - -0.0087479, - 0.003927, - -0.088291, - -0.071573, - -0.05137, - 0.021324, - 0.061034, - -0.042481, - 0.0052094, - 0.048035, - 0.053565, - 0.054627, - 0.011812, - 0.022304, - -0.012932, - -0.056635, - 0.047732, - -0.060672, - 0.014085, - -0.034878, - 0.040894, - -0.098561, - 0.053435, - -0.053846, - -0.023983, - -0.045405, - -0.030521, - 0.057979, - 0.017053, - 0.030646, - -0.10586, - 0.13533, - 0.0011438, - -0.024248, - -0.029049, - -0.028472, - -0.039652, - -0.034787, - -0.035627, - -0.026643, - -0.032621, - -0.0014913, - 0.0072178, - 0.0073132, - 0.012263, - -0.05592, - -0.11738, - -0.030026, - 0.039004, - -0.011839, - -0.018392 - ], - "environmentalism": [ - -0.0022386, - -0.031434, - 0.017486, - 0.035359, - -0.022642, - 0.039135, - -0.012798, - -0.057465, - 0.036868, - 0.013325, - 0.014576, - -0.018498, - -0.011864, - 0.010115, - 0.0064587, - -0.0028894, - 0.067342, - 0.024586, - 0.0079912, - 0.012662, - -0.012827, - 0.0010313, - 0.024967, - 0.037692, - 0.0039889, - -0.050993, - 0.0093432, - 0.068684, - 0.031879, - 0.032422, - 0.0093737, - -0.028647, - -0.02082, - -0.024164, - 0.015206, - 0.04252, - 0.0036473, - -0.020939, - 0.0048842, - -0.042847, - 0.0040691, - -0.053193, - -0.024102, - 0.043059, - 0.024382, - -0.0031194, - -0.037593, - -0.0052337, - -0.0019963, - -0.033027, - -0.027128, - 0.067751, - 0.012552, - 0.045294, - -0.006197, - 0.017419, - 0.017789, - 0.021973, - 0.0013707, - 0.007264, - -0.0014673, - -0.030583, - 0.012942, - -0.036341, - 0.0074665, - 0.0078005, - 0.035264, - -0.011056, - 0.0565, - 0.022754, - 0.033464, - 0.0041287, - -0.010683, - 0.0024089, - 0.012972, - -0.0060232, - 0.0009294, - -0.032462, - 0.0096842, - 0.028203, - -0.01439, - 0.029138, - -0.029806, - 0.046481, - -0.014685, - 0.012317, - -0.045652, - 0.0082904, - 0.0076292, - 0.016346, - -0.0014226, - 0.035122, - -0.042273, - 0.031306, - 0.040605, - 0.028214, - 0.019628, - -0.032964, - -0.03012, - 0.017649, - -0.04176, - -0.012324, - 0.025639, - -0.011604, - -0.02838, - -0.028137, - 0.012431, - 0.013025, - 0.010968, - -0.057671, - -0.0011024, - 0.052546, - 0.020135, - -0.015522, - -0.013823, - 0.040474, - -0.0040917, - -0.0038431, - -0.025118, - 0.0060144, - -0.039877, - -0.011499, - -0.026736, - -0.056474, - 0.046108, - -0.026705, - -0.018881, - -0.021417, - 0.025808, - 0.066592, - 0.0093967, - -0.047476, - 0.040199, - 0.021545, - -0.0061116, - 0.055851, - 0.057234, - 0.0078061, - -0.0078763, - 0.0044518, - 0.0074859, - -0.020846, - 0.04362, - 0.055035, - 0.0040306, - -0.029627, - 0.032726, - 0.0010597, - -0.0080088, - -0.051347, - 0.051216, - 0.024571, - -0.046371, - -0.015282, - -0.011016, - 0.044269, - 0.00012974, - -0.0035922, - 0.040504, - -0.035008, - 0.020199, - -0.028595, - -0.076434, - 0.0081195, - -0.00063101, - -0.0033085, - 0.006832, - 0.0076842, - 0.0080372, - 0.039654, - -0.014655, - -0.018167, - 0.0038659, - -0.013404, - -0.017392, - 0.035088, - -0.0053502, - 0.027871, - -0.014491, - 0.018606, - -0.019203, - 0.0428, - 0.033535, - -0.01065, - 0.025451, - -0.038035, - 0.0054656, - 0.063161, - -0.044232, - -0.033688, - -0.0039355, - 0.033662, - -0.021223, - -0.0025901, - 0.01891, - -0.033553, - 0.036792, - -0.01156, - -0.012848, - -0.011878, - -0.10236, - 0.0038754, - 0.038432, - -0.061808, - 0.014521, - 0.013193, - 0.01225, - 0.0074408, - 0.040512, - 0.014063, - 0.052429, - 0.019704, - 0.005554, - -0.018946, - 0.06275, - 0.054389, - -0.011602, - -0.041398, - -0.016193, - -0.042909, - -0.024274, - 0.025492, - -0.049403, - 0.050775, - -0.022309, - 0.020937, - 0.027389, - 0.030508, - -0.0052255, - -0.0094372, - 0.018431, - -0.023948, - -0.037393, - -0.015674, - 0.010945, - 0.013424, - 0.018655, - -0.035071, - 0.018746, - 0.02065, - -0.0164, - 0.037036, - -0.011566, - 0.0001749, - 0.012345, - 0.0358, - 0.018149, - -0.044327, - 0.029267, - -0.0010301, - 0.069904, - -0.019056, - -0.071398, - -0.013109, - 0.015082, - -0.01941, - -0.01287, - 0.013732, - 0.028785, - -0.014464, - 0.015796, - 0.00897, - 0.0010467, - 0.022855, - 0.011363, - -0.0060529, - 0.010584, - 0.014541, - 0.041742, - 0.011618, - -0.015798, - 0.047654, - -0.037857, - 0.0062911, - -0.0046384, - -0.01833, - -0.013646, - 0.080349, - -0.035861, - -0.0089677, - 0.065243, - -0.0026933, - 0.018221, - -0.0030613, - -0.0075425, - -0.021821, - 0.0037933, - 0.034629, - 0.018275, - 0.0062523, - -0.0051359, - 0.023803, - -0.00014142, - 0.0023385, - -0.031208, - 0.014359, - -0.012459, - 0.071338, - -0.00005955, - -0.0075179 - ], - "biomedical": [ - -0.067573, - -0.068641, - -0.035423, - 0.028826, - -0.024186, - -0.0043366, - 0.049959, - -0.070285, - 0.047922, - 0.011664, - -0.040586, - -0.024756, - 0.033102, - -0.075242, - -0.039135, - 0.010704, - 0.065184, - 0.054922, - 0.028009, - 0.022668, - 0.0779, - -0.017362, - 0.098862, - 0.088471, - -0.00429, - -0.017189, - -0.030703, - 0.01989, - 0.026287, - 0.012997, - 0.0025032, - -0.040793, - 0.025588, - -0.062021, - 0.067659, - 0.048474, - -0.010558, - -0.020162, - 0.063589, - 0.058661, - -0.016563, - -0.092146, - 0.032922, - -0.01786, - -0.012741, - -0.04084, - -0.022031, - 0.00093968, - -0.010379, - -0.0112, - -0.016691, - 0.025345, - -0.019864, - 0.019044, - 0.029455, - 0.0024537, - -0.048819, - 0.035859, - 0.004286, - 0.017315, - 0.023175, - 0.033265, - 0.09181, - 0.025277, - 0.1083, - 0.00041039, - 0.051531, - -0.028587, - 0.0019839, - -0.010608, - 0.0043024, - 0.042683, - 0.049027, - -0.025751, - -0.053442, - 0.012834, - -0.0004598, - -0.034595, - 0.0020714, - -0.0096168, - -0.022161, - 0.040339, - -0.04942, - -0.021302, - -0.069773, - 0.014459, - -0.021112, - 0.032456, - -0.014362, - -0.012079, - -0.00748, - 0.040466, - -0.081449, - 0.026922, - 0.0038596, - 0.059736, - 0.028805, - -0.0046878, - 0.0004469, - 0.060072, - -0.014698, - -0.016558, - -0.0029484, - -0.045774, - -0.0029338, - -0.086022, - -0.015379, - 0.010544, - 0.0086519, - -0.024116, - -0.017283, - 0.07641, - 0.03413, - -0.0017406, - 0.013247, - 0.071761, - 0.011496, - -0.075084, - -0.014278, - 0.021779, - 0.00068015, - -0.0075253, - -0.032197, - -0.02398, - 0.065076, - -0.016324, - -0.074395, - -0.028878, - 0.019553, - 0.081777, - 0.0022782, - 0.032088, - -0.022623, - -0.047514, - 0.055309, - 0.012424, - -0.018296, - 0.039005, - -0.0036729, - 0.045232, - -0.0095095, - -0.01435, - -0.036066, - 0.053096, - -0.090853, - -0.043028, - -0.015338, - 0.020973, - 0.038195, - -0.004833, - 0.091809, - 0.14578, - 0.060375, - -0.024723, - 0.021209, - -0.0024039, - -0.03, - -0.0044767, - 0.049198, - 0.015505, - 0.030383, - 0.0359, - -0.086311, - -0.028459, - -0.038466, - 0.01888, - -0.057492, - 0.012757, - -0.02765, - -0.049017, - 0.054292, - -0.0078169, - -0.0079302, - -0.022375, - 0.017951, - 0.039472, - -0.030861, - 0.030998, - -0.028409, - -0.016944, - 0.01338, - 0.019458, - -0.024888, - -0.036659, - -0.014578, - -0.040931, - -0.0066278, - 0.10587, - -0.078776, - 0.036003, - -0.035279, - 0.076293, - 0.061073, - -0.012535, - 0.015533, - 0.0010229, - -0.071824, - 0.013424, - 0.0097509, - -0.070243, - -0.10984, - -0.028096, - 0.0071046, - -0.019279, - -0.011395, - -0.0067147, - -0.037563, - -0.065838, - -0.036632, - 0.029695, - 0.1425, - 0.0045182, - -0.043475, - 0.021501, - 0.017319, - 0.035787, - 0.044167, - -0.0028545, - -0.049359, - -0.020409, - -0.042468, - 0.017547, - -0.091283, - 0.073705, - -0.029817, - 0.033577, - -0.0014987, - 0.087555, - 0.036155, - -0.032277, - -0.083197, - -0.048216, - -0.018038, - -0.013042, - -0.0029359, - 0.018868, - -0.026818, - 0.0089711, - -0.031363, - -0.025043, - -0.015468, - 0.0010934, - 0.039835, - 0.023388, - -0.085422, - 0.0077338, - -0.0086137, - -0.0015595, - -0.010523, - 0.034879, - 0.014101, - 0.027475, - -0.0085119, - -0.1096, - -0.055925, - 0.081412, - 0.035949, - 0.017615, - 0.057554, - -0.023651, - 0.010664, - -0.0049993, - 0.012095, - 0.0094734, - 0.028877, - -0.016188, - 0.05944, - 0.031618, - 0.060427, - 0.010286, - 0.036222, - 0.051993, - -0.059921, - -0.01717, - 0.0096856, - -0.10089, - 0.012514, - 0.0163, - 0.022449, - -0.026445, - 0.14579, - -0.034016, - -0.042202, - -0.023499, - -0.007996, - 0.012297, - -0.058184, - -0.031719, - 0.04292, - -0.00012618, - 0.02853, - 0.039854, - -0.020711, - -0.013456, - -0.026633, - 0.00030615, - 0.0064789, - -0.003749, - -0.005561, - 0.056308 - ], - "hometown": [ - 0.025409, - 0.0019459, - 0.03297, - -0.012286, - -0.036149, - -0.087404, - 0.014212, - -0.076746, - 0.028991, - 0.018167, - -0.014747, - -0.088511, - -0.045761, - 0.0641, - -0.032155, - 0.059181, - 0.098501, - -0.0036726, - 0.028189, - 0.04072, - 0.080047, - -0.014474, - 0.0012501, - 0.11163, - 0.048191, - -0.033641, - 0.025716, - 0.034287, - -0.036651, - 0.028138, - -0.030719, - -0.0137, - -0.03522, - -0.016911, - -0.058202, - 0.11496, - -0.0040461, - 0.011956, - -0.018653, - -0.011251, - 0.025259, - -0.11233, - 0.01188, - -0.0070765, - 0.070097, - 0.0076528, - -0.027796, - 0.00084017, - -0.038135, - 0.08484, - -0.0092997, - 0.0038652, - -0.013505, - -0.0074868, - -0.061792, - 0.0064349, - 0.010197, - 0.020217, - -0.016568, - -0.047277, - -0.010155, - -0.0075823, - 0.083657, - 0.015711, - 0.11194, - -0.0069929, - -0.021915, - -0.0010378, - -0.011866, - -0.043716, - -0.0031071, - 0.022261, - 0.012006, - -0.020577, - 0.02751, - 0.064052, - 0.023189, - -0.021049, - 0.021613, - 0.0059982, - -0.038688, - 0.099722, - 0.0080873, - 0.029015, - -0.077638, - -0.069581, - -0.030688, - -0.05715, - 0.031059, - 0.0079024, - -0.0050182, - -0.012186, - -0.11977, - 0.034303, - 0.07839, - 0.13382, - 0.0050682, - 0.01986, - 0.0080022, - 0.030986, - 0.083453, - -0.06534, - -0.027701, - -0.02126, - 0.052064, - -0.098573, - -0.063478, - -0.02454, - 0.055946, - 0.027328, - 0.0046749, - 0.10855, - 0.017352, - 0.027632, - 0.0083363, - 0.032104, - -0.018674, - -0.050686, - -0.0053065, - -0.001027, - -0.055002, - -0.02675, - -0.026781, - -0.05078, - 0.0031439, - -0.023576, - -0.019647, - -0.06159, - -0.0029694, - 0.03048, - 0.024555, - -0.014056, - 0.019829, - -0.028991, - 0.0068602, - 0.020391, - 0.11285, - 0.025962, - -0.013208, - -0.05215, - -0.017369, - -0.024241, - 0.010543, - 0.021576, - -0.035294, - 0.027195, - 0.019999, - -0.0031148, - 0.020692, - -0.046032, - -0.03988, - 0.029187, - -0.012789, - 0.0021234, - 0.0041037, - -0.030608, - 0.033094, - 0.1058, - 0.014064, - -0.036474, - 0.033891, - -0.057247, - 0.004846, - -0.0059733, - -0.022314, - 0.017624, - 0.010851, - -0.023607, - -0.020817, - 0.02935, - -0.010724, - 0.030805, - 0.0065011, - 0.026009, - 0.083989, - 0.026218, - 0.031975, - -0.0099294, - -0.027369, - -0.01993, - 0.08311, - -0.048536, - 0.024933, - -0.0077117, - 0.014764, - 0.0053471, - 0.02575, - 0.072591, - 0.017885, - -0.0096715, - 0.0090346, - 0.12033, - -0.043655, - 0.019503, - 0.017137, - 0.031325, - 0.058985, - -0.025284, - 0.072233, - -0.015413, - -0.12242, - 0.07727, - 0.035826, - -0.044401, - -0.035199, - 0.034089, - -0.03203, - 0.027673, - -0.014843, - 0.012302, - 0.11875, - -0.054243, - -0.034497, - -0.025176, - -0.0075673, - 0.0061349, - 0.041798, - -0.0073564, - 0.045661, - -0.064988, - 0.039052, - -0.06691, - -0.0046631, - 0.095921, - -0.010931, - 0.024715, - 0.032149, - 0.072257, - -0.041864, - -0.10393, - -0.0022919, - -0.019287, - -0.070527, - 0.0074423, - 0.037233, - 0.0015961, - 0.021172, - 0.021112, - 0.0020159, - 0.0049198, - 0.060019, - -0.041286, - 0.042278, - -0.036203, - 0.0079122, - -0.062464, - -0.023821, - -0.050205, - -0.039507, - 0.011746, - 0.045058, - -0.056345, - 0.012781, - -0.01131, - 0.015669, - -0.063587, - -0.0066965, - 0.015692, - -0.0082397, - -0.018003, - -0.060617, - 0.040225, - 0.034908, - -0.016612, - 0.030438, - 0.0040391, - -0.032699, - -0.00095827, - 0.029379, - -0.018712, - -0.01177, - 0.065282, - -0.12044, - -0.027382, - 0.070164, - -0.031537, - -0.07098, - -0.035962, - -0.017636, - 0.058121, - 0.074282, - -0.031785, - 0.0058019, - -0.022188, - 0.025207, - -0.0096848, - 0.028551, - -0.056327, - -0.052594, - -0.02997, - 0.091416, - 0.10189, - 0.019497, - 0.054677, - 0.032309, - 0.063502, - 0.040689, - -0.0019789, - -0.007983, - -0.059461 - ], - "policy": [ - 0.04653, - -0.10687, - -0.06437, - 0.030723, - -0.066144, - -0.024389, - 0.023088, - -0.091874, - -0.043818, - 0.019572, - -0.055178, - -0.12057, - 0.044243, - -0.011779, - -0.031023, - 0.0049966, - 0.1421, - -0.025522, - 0.086666, - 0.026785, - -0.034736, - 0.02637, - 0.065525, - 0.09494, - 0.0071399, - 0.038526, - -0.044418, - -0.025609, - 0.033103, - -0.04653, - 0.00098657, - -0.013281, - -0.0035317, - -0.17455, - 0.061192, - 0.024864, - -0.025906, - 0.029656, - 0.010926, - -0.022991, - 0.0060675, - -0.15937, - -0.038877, - 0.0081179, - -0.028729, - -0.014611, - 0.023957, - -0.03634, - -0.048058, - 0.004936, - 0.041693, - -0.00050368, - 0.047599, - -0.016612, - -0.030395, - 0.016029, - 0.06575, - 0.060233, - -0.056547, - 0.012185, - 0.05732, - 0.018621, - 0.11166, - 0.0096079, - 0.025777, - 0.00096484, - -0.0070318, - -0.0086534, - 0.029554, - 0.055413, - -0.00064008, - 0.039897, - -0.07886, - 0.035043, - 0.020033, - 0.014392, - 0.049847, - -0.039526, - -0.008875, - -0.065693, - -0.02618, - 0.032681, - -0.0090416, - 0.11234, - -0.053634, - 0.036613, - -0.033214, - -0.030923, - 0.034173, - 0.017112, - 0.065517, - 0.033783, - -0.10052, - 0.032002, - -0.02158, - -0.001371, - -0.014926, - 0.0080707, - 0.013694, - 0.00091558, - 0.024832, - -0.04043, - 0.041875, - -0.050292, - -0.04653, - -0.068514, - 0.0023401, - -0.0088053, - -0.039385, - -0.052807, - -0.013431, - 0.046209, - 0.05066, - -0.024249, - -0.039936, - -0.022771, - 0.015781, - -0.029978, - -0.056439, - 0.0063026, - -0.010312, - 0.005498, - 0.070935, - -0.0012363, - 0.10644, - -0.0091685, - -0.03349, - -0.047458, - 0.00886, - 0.2087, - -0.011053, - -0.018609, - 0.06496, - 0.064866, - -0.0039413, - 0.058219, - -0.096129, - 0.030644, - -0.036583, - 0.02362, - 0.030385, - -0.020464, - -0.0037852, - -0.02338, - -0.066315, - -0.033238, - 0.014931, - 0.082903, - 0.047421, - -0.047294, - 0.061701, - 0.08393, - 0.025164, - -0.10191, - 0.068509, - 0.072509, - 0.02315, - -0.056297, - -0.060277, - 0.039683, - 0.011403, - -0.0060285, - -0.10738, - -0.003476, - -0.050144, - -0.0078228, - 0.064058, - -0.011073, - -0.032379, - -0.018002, - -0.034313, - 0.013126, - -0.040883, - 0.0021379, - -0.0095513, - 0.045218, - -0.11195, - 0.060496, - -0.019851, - 0.040058, - 0.0020054, - 0.032739, - -0.039388, - 0.059335, - 0.047004, - 0.013793, - 0.016196, - 0.13139, - 0.10588, - -0.019347, - -0.046136, - 0.11376, - 0.033389, - -0.017419, - -0.026666, - -0.066112, - 0.047184, - -0.035552, - -0.046374, - -0.013306, - -0.14919, - 0.0097043, - 0.0093779, - -0.050765, - -0.082295, - 0.019251, - -0.027986, - 0.014729, - 0.031083, - 0.0018355, - 0.06021, - 0.05756, - 0.0066826, - 0.0011129, - -0.033689, - 0.0080417, - 0.079417, - -0.062918, - -0.062258, - -0.12659, - -0.0095736, - -0.018701, - -0.012471, - 0.112, - 0.065373, - 0.01451, - 0.032106, - 0.1036, - 0.010259, - -0.022191, - -0.011444, - -0.11012, - -0.036983, - -0.029337, - 0.012012, - -0.034042, - -0.034682, - -0.035574, - 0.035708, - 0.084006, - 0.044233, - -0.0015727, - 0.069158, - 0.015263, - -0.003536, - 0.021107, - 0.035379, - -0.05133, - 0.046703, - 0.041587, - 0.068852, - -0.031851, - 0.021554, - -0.069291, - 0.098996, - -0.017402, - 0.05533, - 0.050822, - 0.042411, - 0.0022696, - 0.0091423, - -0.035898, - -0.0099081, - 0.0088285, - 0.065987, - 0.020062, - 0.0093068, - 0.051689, - -0.012125, - -0.018347, - -0.0042896, - 0.082918, - -0.1178, - -0.060446, - 0.040893, - -0.0048288, - -0.015829, - 0.024207, - -0.015699, - 0.009667, - 0.10411, - -0.0037268, - -0.01375, - 0.0023141, - 0.0072598, - 0.0060537, - 0.008292, - 0.044851, - 0.028495, - -0.016, - -0.029747, - -0.018298, - 0.045654, - 0.0042572, - -0.039857, - -0.0064648, - -0.012662, - -0.010376, - -0.043187, - -0.012999 - ], - "hobby": [ - 0.027086, - -0.095539, - 0.037564, - -0.10177, - -0.12473, - -0.01012, - -0.042362, - -0.091374, - 0.036833, - -0.0085483, - -0.098517, - -0.006605, - -0.18281, - -0.11049, - 0.012605, - 0.066505, - 0.1327, - 0.050663, - -0.0041939, - -0.0076607, - 0.025657, - 0.047427, - 0.042583, - 0.05904, - 0.020249, - -0.016017, - 0.051951, - -0.030629, - -0.058794, - 0.0070679, - 0.050936, - -0.11357, - 0.068688, - -0.090559, - -0.010043, - -0.020192, - 0.048361, - -0.0044903, - 0.015019, - 0.0059614, - 0.01108, - -0.13881, - -0.048096, - 0.031381, - 0.017579, - -0.023182, - -0.049461, - -0.071561, - -0.071135, - 0.040621, - -0.0050019, - 0.081814, - -0.036228, - 0.026733, - -0.043488, - -0.089864, - -0.0013398, - 0.11414, - -0.043317, - 0.0056491, - 0.043941, - -0.037725, - 0.11807, - 0.065443, - 0.0080532, - -0.02726, - -0.13817, - 0.044252, - 0.024777, - 0.0051484, - 0.16021, - -0.06441, - 0.014759, - -0.0037925, - 0.10971, - 0.089771, - -0.038705, - -0.028115, - 0.031415, - -0.039368, - -0.014132, - -0.022957, - -0.072106, - 0.059276, - -0.083373, - -0.11156, - 0.057151, - 0.036446, - -0.077246, - 0.039903, - 0.11371, - 0.04124, - -0.12796, - -0.038778, - 0.087707, - 0.093369, - -0.068317, - 0.037452, - 0.11108, - 0.042366, - -0.078038, - 0.040162, - 0.014222, - -0.055096, - -0.062414, - -0.13281, - -0.057363, - -0.013489, - -0.028031, - -0.024804, - -0.049202, - 0.039051, - 0.053703, - 0.11331, - 0.014528, - -0.038374, - -0.090421, - -0.12668, - -0.065287, - -0.071805, - -0.094102, - 0.1402, - -0.10088, - -0.026132, - 0.12766, - -0.044394, - -0.0077071, - -0.099942, - -0.015395, - 0.046909, - -0.017622, - 0.01364, - -0.003689, - 0.042263, - -0.013868, - -0.088272, - 0.017476, - 0.034348, - 0.035011, - -0.014162, - 0.024969, - 0.041298, - 0.065765, - 0.064001, - 0.0033692, - -0.053874, - -0.021805, - -0.11787, - 0.066606, - -0.096402, - 0.13538, - 0.039072, - -0.15134, - -0.099457, - -0.027202, - 0.072226, - -0.037575, - 0.11883, - 0.063082, - -0.083485, - 0.038819, - 0.10744, - -0.050428, - 0.066319, - -0.063734, - -0.062872, - -0.01458, - -0.0033743, - -0.018601, - 0.06496, - 0.069271, - 0.056636, - 0.097777, - 0.037741, - -0.011122, - 0.055305, - -0.028731, - 0.050435, - 0.012721, - 0.0036359, - -0.061586, - -0.06251, - -0.061775, - -0.078255, - -0.014033, - -0.059723, - 0.049037, - 0.11382, - -0.011086, - -0.082309, - -0.010814, - 0.069493, - 0.054377, - -0.022003, - -0.0034833, - 0.091183, - -0.054055, - 0.028757, - -0.0043305, - 0.06518, - -0.13993, - 0.10254, - -0.015198, - -0.078369, - 0.08138, - 0.1171, - 0.05424, - 0.026772, - 0.039046, - -0.049243, - 0.091485, - 0.01588, - 0.021727, - -0.030242, - -0.0034644, - 0.033239, - -0.083726, - -0.053787, - -0.05099, - -0.026203, - 0.049706, - -0.081133, - -0.023835, - 0.087642, - -0.015195, - -0.026708, - 0.049734, - 0.1262, - 0.01046, - 0.0046306, - 0.018856, - -0.11025, - -0.062347, - 0.032528, - 0.043392, - -0.00030784, - 0.11346, - 0.050387, - -0.10042, - -0.086619, - 0.082488, - -0.087461, - 0.11605, - -0.070081, - -0.033176, - 0.033807, - -0.070479, - -0.027341, - 0.018859, - 0.095252, - -0.014019, - 0.029445, - 0.0054349, - 0.028417, - 0.040688, - -0.064, - -0.060803, - -0.0030046, - 0.028434, - -0.032628, - -0.017092, - 0.074727, - -0.013698, - -0.014821, - -0.059839, - -0.05315, - -0.062931, - -0.0031373, - 0.053439, - -0.041319, - -0.0070432, - 0.08676, - -0.1204, - -0.039484, - 0.083942, - -0.072643, - 0.027406, - 0.040396, - -0.039508, - 0.00023622, - 0.11751, - 0.090277, - 0.089975, - -0.014907, - -0.037682, - -0.041314, - -0.016671, - -0.053782, - -0.067993, - 0.012944, - 0.016134, - 0.006918, - -0.068339, - -0.027003, - -0.030254, - 0.038591, - 0.016383, - 0.002472, - -0.048607, - -0.07887 - ], - "travelling": [ - -0.046783, - 0.02262, - 0.0032245, - -0.013798, - -0.017997, - -0.029965, - -0.049066, - -0.082579, - 0.039929, - -0.0096198, - -0.022725, - -0.096835, - -0.027368, - -0.054651, - 0.019325, - -0.0067528, - 0.017257, - -0.029743, - 0.018599, - 0.00061087, - -0.026474, - 0.0097454, - -0.031675, - 0.027264, - 0.036671, - 0.039165, - 0.0059784, - 0.028457, - 0.015407, - -0.0035786, - -0.028491, - 0.040875, - 0.0054985, - -0.0016025, - 0.013157, - -0.026675, - -0.0095348, - -0.0050648, - 0.011291, - -0.017459, - 0.020035, - -0.063615, - 0.0078063, - -0.031109, - -0.0098008, - -0.0087572, - 0.019618, - -0.055177, - 0.0032689, - 0.050244, - 0.017999, - 0.012006, - -0.017587, - 0.018005, - -0.10953, - 0.0408, - -0.012753, - 0.0037542, - -0.056822, - -0.0025221, - 0.01126, - 0.014761, - 0.051113, - 0.068069, - -0.013069, - 0.009654, - -0.024106, - -0.046612, - -0.045261, - 0.038274, - 0.010206, - -0.016553, - 0.085017, - 0.0091428, - 0.028571, - 0.067208, - 0.016043, - -0.020209, - -0.0052299, - -0.015735, - -0.053612, - -0.024785, - -0.00001203, - 0.095413, - -0.0042166, - -0.044493, - 0.023063, - 0.0051509, - -0.000016355, - -0.018007, - -0.00098406, - 0.037527, - -0.071666, - -0.016465, - 0.039297, - 0.04255, - -0.0091499, - 0.037068, - 0.011166, - -0.037483, - 0.044334, - 0.03589, - -0.00060849, - -0.010763, - 0.062604, - -0.089015, - 0.0027734, - -0.02441, - 0.046265, - 0.029693, - 0.019659, - 0.014627, - 0.046775, - 0.047267, - -0.0055082, - 0.0058435, - 0.032131, - -0.0050611, - -0.030203, - 0.012496, - 0.06333, - -0.019445, - -0.063656, - 0.0099285, - 0.044387, - -0.040495, - -0.010582, - -0.099429, - -0.0083238, - 0.055728, - 0.029586, - 0.050772, - -0.017254, - -0.04776, - 0.00051595, - 0.017673, - 0.0020499, - 0.04014, - 0.0015177, - 0.024714, - -0.014115, - -0.0080802, - 0.017433, - 0.028166, - 0.00086687, - 0.040299, - -0.028628, - 0.0034533, - -0.046323, - -0.027213, - 0.046581, - 0.013351, - -0.060675, - -0.079936, - -0.00014457, - 0.016336, - -0.05666, - 0.04205, - -0.046959, - -0.088419, - 0.03825, - 0.013689, - -0.012115, - 0.042547, - -0.024483, - -0.0012837, - 0.079034, - -0.044542, - 0.01878, - 0.013384, - 0.024474, - 0.00084362, - -0.033643, - -0.0075633, - 0.016817, - 0.038556, - -0.049571, - 0.012132, - -0.03181, - -0.0030349, - 0.032091, - -0.0037488, - -0.0049353, - -0.017714, - -0.018393, - -0.062308, - 0.036491, - 0.06931, - 0.013813, - -0.03464, - 0.038124, - 0.036124, - -0.033496, - -0.014623, - -0.020426, - 0.056388, - 0.0052554, - 0.0031351, - -0.0042401, - 0.041144, - -0.1116, - 0.057098, - 0.047724, - 0.035513, - 0.00090365, - 0.040108, - -0.037393, - 0.021177, - 0.065256, - -0.02537, - 0.060408, - -0.038317, - 0.021258, - -0.049108, - -0.024258, - 0.031988, - 0.0064533, - -0.044128, - 0.063939, - -0.028493, - 0.0039728, - -0.0040834, - 0.01184, - 0.086711, - -0.030498, - 0.018637, - -0.051506, - 0.096508, - -0.015138, - -0.01365, - 0.0074547, - 0.025623, - -0.03071, - -0.045228, - 0.0042917, - -0.026427, - 0.038533, - 0.025983, - 0.010426, - 0.0070158, - 0.088885, - 0.021633, - 0.024335, - -0.052612, - -0.072333, - 0.018629, - 0.038372, - -0.03628, - -0.0075959, - -0.001855, - 0.061923, - 0.0037019, - 0.02548, - -0.00028051, - 0.0096935, - -0.0024761, - -0.048775, - 0.038147, - -0.0062045, - 0.044649, - -0.0035316, - -0.0078215, - -0.061882, - 0.072538, - 0.0041086, - -0.0037401, - 0.021162, - -0.0042268, - -0.0058728, - 0.01295, - -0.028677, - 0.050812, - -0.089446, - -0.01991, - 0.0051345, - -0.053016, - 0.058941, - -0.013625, - -0.016949, - 0.032548, - 0.017441, - -0.020207, - -0.050291, - -0.047771, - 0.018106, - 0.00066664, - 0.005382, - -0.065796, - 0.051304, - 0.02031, - 0.063294, - 0.012133, - -0.063249, - -0.055671, - -0.0080048, - 0.0021881, - -0.015921, - 0.023142, - 0.030159, - -0.02933 - ], - "homestead": [ - -0.022314, - -0.0041595, - 0.014765, - 0.027671, - -0.018703, - 0.022317, - 0.014654, - -0.086795, - -0.035468, - 0.037144, - -0.029291, - -0.080487, - -0.008878, - -0.0098256, - -0.018922, - 0.040166, - 0.082321, - -0.073435, - 0.015665, - 0.034517, - 0.039353, - -0.048921, - 0.0019348, - 0.044309, - 0.10667, - -0.0059739, - 0.0022479, - 0.067145, - -0.041892, - -0.017364, - 0.0079256, - -0.013809, - -0.026071, - -0.034055, - -0.025951, - -0.01129, - 0.031432, - -0.026002, - -0.022613, - 0.025971, - -0.007169, - -0.10206, - 0.020592, - 0.029769, - -0.035246, - -0.011546, - -0.044233, - 0.072091, - -0.12697, - -0.0042346, - 0.034938, - 0.072569, - -0.053982, - 0.05083, - -0.02305, - 0.010393, - 0.0064571, - -0.033528, - -0.020203, - -0.10061, - 0.050555, - 0.00053068, - 0.11338, - 0.047606, - -0.011179, - -0.031628, - -0.027621, - 0.00015084, - -0.1139, - 0.051613, - 0.022575, - -0.023199, - 0.062182, - -0.025764, - 0.0028412, - 0.016086, - -0.037873, - 0.00068748, - 0.011248, - 0.059679, - 0.027242, - 0.019247, - 0.049502, - 0.0075699, - -0.04725, - -0.0089115, - -0.015534, - -0.0004939, - 0.034521, - 0.030088, - -0.010263, - 0.042885, - -0.083077, - 0.063754, - 0.024104, - 0.09137, - -0.095917, - 0.071835, - 0.0090404, - -0.040109, - 0.058661, - -0.0075764, - -0.025196, - -0.024807, - -0.021902, - -0.078015, - 0.017179, - 0.070753, - -0.019747, - -0.05378, - -0.009838, - 0.056033, - 0.059659, - 0.043447, - 0.015075, - 0.014614, - -0.046096, - -0.059953, - -0.0051166, - -0.026648, - -0.067005, - -0.018664, - 0.06718, - 0.013919, - -0.0025428, - -0.0036237, - -0.0029014, - -0.076208, - -0.029792, - 0.02324, - 0.11481, - -0.0077973, - -0.037078, - 0.0026108, - -0.015404, - -0.038982, - 0.03955, - 0.0075233, - -0.00042086, - -0.038993, - -0.043087, - -0.0088446, - 0.02064, - 0.010323, - 0.014842, - -0.014761, - 0.043443, - 0.091916, - -0.026488, - -0.071229, - -0.0045132, - 0.052795, - -0.023293, - -0.020061, - 0.079592, - -0.010798, - 0.066693, - 0.018489, - -0.013227, - -0.0084705, - 0.035759, - -0.032269, - -0.025744, - -0.014003, - -0.0032264, - -0.014592, - 0.031221, - -0.0075536, - 0.0010876, - 0.043254, - -0.0082613, - -0.022958, - -0.0078471, - 0.015388, - -0.018194, - 0.01759, - 0.030285, - 0.022737, - -0.040033, - 0.007517, - -0.0032636, - -0.029143, - -0.011897, - -0.0010332, - -0.056135, - -0.002228, - 0.029776, - 0.06482, - 0.011597, - -0.031297, - 0.017001, - 0.038232, - -0.020971, - 0.038001, - -0.044004, - -0.068803, - 0.071384, - 0.045921, - 0.017391, - 0.050335, - -0.16417, - 0.10487, - -0.060477, - -0.11709, - 0.018438, - -0.044236, - 0.03558, - -0.037548, - 0.029855, - -0.023663, - 0.073271, - -0.015957, - -0.028449, - 0.011386, - -0.046635, - 0.071198, - 0.0054639, - 0.055498, - 0.023634, - -0.050282, - 0.0057221, - -0.042822, - 0.071754, - 0.065234, - 0.0044357, - -0.026179, - 0.043424, - 0.025833, - -0.047365, - -0.0098351, - 0.091242, - -0.033762, - -0.030454, - -0.015644, - 0.0039472, - 0.019797, - 0.0086918, - 0.02606, - -0.045913, - 0.0033131, - 0.0076941, - 0.071993, - 0.060597, - 0.001973, - -0.051302, - 0.017127, - -0.028076, - -0.015379, - -0.02703, - 0.017135, - -0.027777, - -0.068217, - 0.020231, - -0.0050985, - -0.01113, - -0.045223, - 0.00076348, - -0.017815, - 0.0028234, - -0.0041151, - -0.011533, - -0.0031262, - 0.0021166, - -0.013778, - 0.091786, - -0.055037, - 0.019581, - -0.02766, - 0.028215, - -0.0043322, - -0.068955, - 0.068259, - -0.096716, - 0.012432, - -0.0098741, - -0.027305, - 0.047581, - -0.031993, - 0.007797, - 0.0020759, - -0.004338, - 0.006063, - 0.016802, - 0.016192, - 0.0024655, - 0.024983, - 0.013941, - -0.044625, - 0.0022841, - 0.023762, - 0.024636, - 0.064186, - 0.042988, - 0.033967, - -0.030215, - 0.053934, - -0.0085791, - -0.041576, - -0.041555, - -0.0016456 - ], - "hacks": [ - -0.042793, - -0.014989, - -0.012765, - 0.070765, - -0.090951, - -0.096074, - -0.045532, - -0.12813, - 0.017872, - -0.045376, - -0.070607, - -0.072046, - -0.19495, - -0.065151, - -0.10464, - -0.0016303, - 0.091137, - -0.025515, - 0.083962, - -0.029908, - 0.0071791, - 0.10283, - 0.012537, - 0.037347, - 0.017123, - -0.00013339, - 0.11486, - -0.023162, - 0.11826, - -0.052201, - -0.020886, - -0.15996, - -0.057359, - -0.018821, - 0.05824, - 0.0505, - -0.016429, - 0.0455, - -0.053905, - -0.027432, - -0.048454, - -0.13902, - -0.046641, - 0.013271, - -0.034432, - 0.075287, - 0.066381, - -0.013979, - 0.0032625, - -0.080183, - -0.0081088, - 0.014467, - 0.016342, - 0.0061023, - -0.04141, - 0.073423, - 0.092081, - 0.045853, - -0.08143, - 0.055434, - 0.044161, - -0.14308, - 0.11138, - 0.047163, - 0.042931, - 0.079004, - -0.0091346, - 0.022339, - 0.059081, - 0.081788, - -0.019036, - 0.034645, - 0.097951, - 0.049491, - -0.04281, - -0.061887, - 0.0061295, - -0.087289, - -0.013178, - -0.083789, - -0.06844, - -0.01569, - -0.074748, - 0.083239, - 0.08166, - -0.033902, - -0.019613, - 0.046519, - 0.0056224, - 0.092621, - -0.0075345, - -0.038377, - -0.10508, - 0.018519, - 0.056026, - 0.049372, - 0.022375, - -0.095273, - 0.066577, - 0.040963, - 0.064853, - 0.091166, - 0.0010979, - 0.083552, - 0.12273, - -0.10373, - 0.086723, - -0.032207, - -0.045855, - -0.079776, - -0.029615, - -0.0069073, - 0.12648, - -0.001715, - -0.0096676, - -0.050261, - -0.075712, - 0.026272, - -0.085707, - -0.0080189, - 0.015176, - -0.036723, - -0.012678, - -0.055433, - 0.17281, - 0.055783, - -0.062634, - -0.037563, - -0.08736, - 0.12982, - 0.031279, - 0.13686, - -0.00012671, - 0.0058264, - 0.077652, - -0.081287, - 0.050418, - 0.076491, - -0.11507, - 0.009272, - 0.028183, - -0.069359, - 0.0076589, - -0.017845, - -0.010841, - 0.029019, - -0.036813, - -0.020743, - 0.016446, - -0.11403, - 0.03835, - 0.10968, - -0.027721, - -0.044586, - 0.019441, - -0.063192, - 0.0038423, - 0.059735, - -0.034621, - -0.026756, - 0.043003, - 0.042564, - 0.041799, - -0.053049, - -0.063967, - -0.0060288, - 0.019668, - 0.060885, - -0.054753, - 0.0049845, - 0.028233, - 0.062751, - 0.11411, - 0.042764, - 0.017541, - 0.058523, - -0.0050847, - -0.03068, - 0.015031, - -0.016895, - 0.039567, - 0.00035514, - -0.071162, - -0.0039571, - -0.0061985, - -0.10429, - -0.038035, - 0.11392, - 0.034447, - 0.085577, - -0.0047439, - 0.032908, - -0.10491, - -0.0032996, - 0.017102, - -0.0021469, - -0.071103, - -0.11494, - -0.035112, - 0.05069, - -0.17704, - 0.069604, - 0.0084482, - 0.061228, - -0.060622, - -0.061881, - -0.054264, - 0.054461, - -0.014347, - -0.10321, - 0.079538, - 0.058179, - 0.06923, - 0.064156, - 0.062105, - -0.033803, - -0.13722, - 0.098491, - -0.032244, - -0.017359, - -0.023487, - -0.070549, - -0.062146, - 0.12393, - 0.045744, - -0.031218, - 0.07907, - 0.061352, - -0.11495, - 0.021435, - -0.08731, - -0.014617, - -0.043936, - -0.029206, - 0.02611, - -0.061074, - -0.0013436, - -0.060843, - 0.023438, - -0.017165, - -0.031681, - -0.073025, - 0.10475, - -0.00060752, - 0.028239, - 0.098955, - -0.027704, - -0.0081067, - -0.075555, - 0.01662, - -0.01122, - 0.03238, - -0.10262, - 0.096966, - 0.032785, - 0.029097, - -0.006311, - -0.018163, - 0.0058645, - 0.079883, - 0.051855, - 0.036458, - 0.014895, - -0.032658, - 0.013911, - -0.004723, - -0.039038, - 0.032826, - 0.065821, - -0.031057, - -0.10979, - 0.1117, - -0.096106, - -0.020579, - 0.0035167, - -0.045455, - 0.1092, - 0.020462, - 0.072594, - -0.033864, - 0.03304, - 0.070742, - 0.089616, - 0.043181, - -0.025522, - -0.013212, - -0.0067404, - -0.012952, - -0.035966, - 0.083935, - -0.04855, - -0.025865, - -0.096476, - 0.018772, - 0.039267, - -0.01576, - -0.078363, - 0.037908, - -0.083721, - -0.064148 - ], - "travellers": [ - -0.060725, - -0.013245, - -0.011883, - -0.0080436, - -0.089845, - -0.026965, - -0.049787, - -0.069921, - 0.036003, - 0.044761, - 0.03291, - -0.054576, - -0.048812, - -0.1027, - 0.031151, - -0.02903, - 0.011198, - -0.028715, - 0.032102, - 0.013835, - -0.032835, - -0.0098849, - 0.0081592, - 0.048397, - 0.03189, - 0.0058352, - 0.0058309, - 0.016719, - 0.047106, - -0.025636, - -0.0015122, - 0.034744, - -0.028336, - 0.041199, - 0.002404, - 0.017949, - 0.0060312, - 0.041665, - -0.030364, - -0.016075, - 0.023738, - -0.065921, - -0.060257, - 0.013457, - -0.0041391, - 0.027396, - 0.040914, - -0.013043, - -0.0080698, - -0.010748, - 0.0023315, - 0.0050612, - -0.029716, - -0.037174, - -0.076303, - 0.053161, - -0.0067492, - 0.020114, - -0.037394, - -0.061072, - 0.050115, - -0.017454, - 0.08913, - 0.054555, - 0.013685, - -0.0037058, - -0.027989, - -0.024865, - -0.050806, - 0.07466, - -0.0047325, - -0.032232, - 0.13449, - 0.013784, - 0.024585, - 0.047243, - 0.046182, - -0.048517, - -0.028844, - -0.050577, - -0.026142, - 0.035046, - 0.081483, - 0.069563, - -0.0004787, - -0.032419, - 0.040318, - -0.0036118, - -0.043005, - -0.046783, - -0.0024961, - 0.039992, - -0.075982, - -0.052022, - 0.0098903, - 0.039037, - -0.0076975, - 0.026182, - 0.00029501, - -0.037987, - 0.015878, - 0.056852, - 0.0034823, - -0.019594, - 0.060048, - -0.053223, - 0.02335, - -0.020112, - 0.042593, - 0.045581, - 0.0018238, - 0.023957, - 0.064058, - 0.025997, - -0.039929, - -0.000078347, - 0.024873, - 0.023727, - -0.054743, - 0.052785, - 0.071635, - -0.02157, - -0.041476, - -0.0097024, - 0.12045, - -0.033633, - -0.01107, - -0.03771, - 0.014365, - 0.07494, - 0.011305, - 0.11542, - -0.054185, - -0.0496, - 0.013721, - -0.00133, - 0.016048, - 0.065573, - -0.026464, - 0.0087541, - -0.010096, - -0.029608, - -0.016388, - -0.00032027, - 0.040138, - 0.017396, - 0.025406, - 0.034412, - -0.042878, - -0.020325, - 0.090485, - 0.082394, - -0.038059, - -0.026513, - 0.077805, - -0.017338, - -0.062776, - 0.0070938, - -0.060772, - -0.058964, - 0.042902, - -0.031589, - 0.039253, - 0.043743, - 0.00064043, - 0.035163, - 0.089257, - -0.034184, - 0.043584, - 0.044937, - -0.039589, - -0.025013, - -0.0138, - -0.016909, - 0.024058, - 0.044981, - -0.073756, - -0.01741, - -0.041237, - 0.025076, - -0.0080339, - 0.029753, - 0.017753, - -0.016804, - -0.030032, - -0.10932, - 0.055512, - 0.082198, - -0.029986, - -0.069749, - -0.0029118, - 0.046101, - -0.10431, - 0.008281, - -0.037348, - 0.044663, - -0.024327, - -0.014116, - -0.00051214, - 0.037354, - -0.094393, - 0.1076, - 0.022912, - 0.037534, - 0.022804, - 0.027606, - -0.0084308, - 0.033037, - -0.0049202, - -0.052885, - 0.044022, - -0.024592, - 0.058716, - -0.01261, - -0.059759, - 0.028939, - -0.022649, - -0.0049274, - -0.018629, - -0.034066, - 0.010412, - -0.03327, - 0.031154, - 0.076676, - 0.038784, - 0.022048, - -0.084936, - 0.069189, - 0.027502, - -0.014046, - -0.011396, - 0.046189, - -0.033393, - -0.042694, - 0.053972, - -0.044552, - 0.028567, - 0.051884, - 0.025188, - -0.03933, - -0.0011705, - 0.028515, - 0.010411, - -0.061996, - 0.033737, - 0.026809, - 0.038877, - -0.043465, - -0.059244, - -0.033516, - 0.06571, - 0.033282, - 0.013889, - 0.0084693, - 0.025357, - 0.0046961, - -0.037901, - 0.055692, - 0.041224, - 0.046477, - -0.014239, - -0.0035151, - -0.049217, - 0.022144, - 0.029676, - -0.012705, - 0.047155, - -0.00054109, - 0.028588, - 0.017411, - -0.03404, - 0.071899, - -0.11452, - -0.014478, - -0.012094, - 0.023673, - 0.070101, - -0.016211, - -0.045132, - -0.041177, - -0.013652, - 0.00045109, - -0.051787, - -0.03794, - 0.0066064, - 0.03497, - -0.032405, - -0.10417, - 0.050795, - 0.0096997, - 0.068023, - 0.0077863, - -0.051089, - 0.0064091, - -0.019345, - 0.036113, - 0.038681, - 0.078603, - -0.037655, - -0.025194 - ], - "decryption": [ - 0.0095959, - -0.013745, - -0.034789, - 0.05929, - -0.0077921, - 0.025962, - 0.038264, - -0.083278, - -0.072646, - 0.0036855, - 0.026694, - 0.0077651, - -0.084364, - 0.00082113, - -0.058888, - 0.018156, - 0.044412, - -0.034716, - 0.026637, - 0.02003, - -0.0067631, - 0.023816, - -0.029719, - 0.0209, - -0.041654, - 0.044634, - 0.019902, - -0.0083688, - 0.046381, - -0.027138, - -0.036081, - -0.066483, - -0.032786, - -0.077167, - 0.031772, - -0.029986, - -0.028655, - 0.0011652, - 0.026666, - -0.030404, - 0.015648, - -0.078532, - 0.01156, - -0.020726, - 0.047203, - -0.019975, - -0.034309, - 0.015519, - 0.027052, - 0.032163, - -0.045003, - -0.045943, - -0.0012998, - -0.025358, - -0.019706, - -0.037061, - 0.035397, - 0.01977, - 0.036375, - -0.027332, - -0.051781, - -0.051436, - 0.094379, - 0.002939, - -0.067723, - -0.028109, - 0.053, - 0.026346, - 0.029523, - -0.027648, - -0.03502, - 0.016333, - -0.010195, - 0.063769, - -0.022402, - -0.020698, - -0.014692, - 0.0072106, - 0.0016294, - -0.022921, - -0.031375, - -0.021213, - 0.014269, - 0.033778, - -0.0046428, - 0.059589, - 0.037378, - 0.0067936, - 0.081076, - 0.057187, - 0.00079636, - -0.026005, - -0.031567, - -0.024993, - -0.032374, - 0.025436, - 0.025183, - -0.02312, - -0.047069, - 0.080189, - -0.01488, - -0.012568, - 0.040322, - 0.063027, - 0.00033884, - -0.050754, - 0.049331, - 0.042083, - 0.038443, - -0.041089, - -0.025878, - 0.03125, - 0.039456, - 0.013284, - -0.0082312, - -0.044951, - 0.09071, - 0.064067, - -0.034444, - 0.0076266, - 0.13194, - 0.054687, - -0.044962, - 0.045083, - 0.066631, - -0.063661, - 0.0051036, - -0.052732, - -0.011199, - 0.067987, - -0.015259, - -0.025424, - 0.037991, - 0.013002, - 0.031186, - -0.066298, - 0.020584, - 0.0032651, - 0.036253, - -0.0092076, - 0.017672, - 0.086966, - 0.0030057, - 0.0088667, - -0.083025, - -0.022347, - -0.11108, - -0.08997, - -0.0088223, - 0.02064, - 0.026489, - 0.023249, - 0.010408, - -0.11235, - 0.084445, - -0.010398, - -0.025764, - -0.0096679, - -0.003337, - 0.022837, - 0.034845, - -0.018594, - -0.04707, - 0.027341, - 0.008507, - -0.10078, - -0.023804, - 0.056894, - 0.049825, - -0.0042409, - 0.12529, - 0.071119, - -0.019366, - -0.0023026, - 0.000048093, - 0.050172, - 0.030788, - -0.018406, - -0.036921, - 0.052534, - -0.027984, - -0.038928, - -0.013389, - -0.017911, - 0.0014718, - -0.037765, - -0.046698, - 0.093496, - 0.071208, - 0.055884, - 0.023192, - 0.0027179, - -0.033059, - -0.025362, - 0.011702, - 0.07456, - -0.01979, - -0.019728, - -0.079577, - 0.02418, - -0.10863, - 0.049635, - -0.02718, - 0.098809, - -0.030092, - -0.053098, - 0.080139, - 0.0028654, - -0.019338, - 0.010305, - 0.090464, - 0.046061, - 0.04285, - 0.035919, - -0.0030965, - 0.005268, - -0.067038, - 0.022372, - -0.054921, - -0.012804, - 0.082676, - 0.014088, - -0.020298, - 0.085325, - 0.042887, - -0.066073, - 0.041173, - 0.048426, - 0.0029631, - 0.0084069, - -0.0011232, - -0.063846, - -0.049646, - -0.088756, - 0.065022, - -0.098696, - -0.029913, - 0.018508, - 0.014, - 0.045532, - 0.071161, - -0.062869, - -0.017044, - 0.0079662, - -0.090314, - 0.030796, - -0.017223, - -0.0039224, - 0.0016916, - 0.082173, - 0.020717, - -0.0082117, - -0.00010772, - 0.046155, - 0.030888, - 0.04221, - -0.0071209, - 0.0026476, - -0.078118, - -0.02604, - -0.010368, - -0.021782, - -0.021233, - -0.011791, - 0.011556, - -0.082699, - 0.034555, - -0.020107, - 0.016379, - 0.0091689, - 0.031174, - 0.066784, - -0.055903, - -0.019588, - -0.045208, - -0.050984, - 0.058967, - -0.021012, - 0.019214, - -0.026206, - 0.025764, - -0.017649, - -0.039754, - 0.023084, - 0.024459, - -0.033203, - -0.00076181, - 0.043894, - -0.0037766, - 0.023355, - -0.045373, - -0.016257, - -0.034232, - 0.018004, - 0.031625, - -0.027301, - -0.01453, - -0.07231, - -0.035831, - 0.019681 - ], - "designs": [ - -0.035831, - -0.00034134, - 0.03371, - -0.023475, - 0.022408, - -0.046072, - -0.02838, - -0.086939, - -0.02533, - 0.041603, - 0.060354, - -0.080723, - -0.029588, - 0.028576, - -0.014796, - 0.028881, - 0.067963, - 0.082081, - 0.071186, - -0.012878, - -0.0043218, - 0.049252, - 0.01231, - 0.062368, - 0.080611, - -0.0011563, - -0.047264, - -0.043495, - 0.10661, - 0.0025161, - -0.077846, - -0.081602, - 0.035039, - -0.049861, - 0.038206, - 0.020694, - 0.017863, - 0.01367, - -0.0037383, - 0.0072979, - 0.010676, - -0.10309, - -0.06376, - -0.048226, - -0.10126, - -0.0091928, - 0.054679, - 0.046273, - 0.022166, - -0.026675, - -0.05635, - 0.0079698, - -0.090137, - 0.099581, - -0.083373, - 0.020011, - 0.042791, - -0.0031172, - -0.027746, - 0.03792, - -0.0492, - -0.032008, - 0.17581, - -0.013384, - 0.10334, - 0.049788, - -0.086635, - 0.014346, - -0.024401, - 0.01009, - 0.038028, - -0.045546, - 0.0070627, - -0.07123, - -0.0034043, - -0.014168, - 0.019043, - -0.04501, - -0.030835, - 0.026683, - 0.058812, - -0.0011178, - -0.042709, - 0.045859, - 0.0345, - -0.015833, - -0.041152, - 0.0164, - -0.046574, - 0.007842, - 0.00030569, - -0.045747, - -0.097317, - 0.064289, - -0.00029758, - 0.00993, - -0.020864, - -0.02304, - 0.016431, - 0.017783, - 0.041358, - 0.0057665, - 0.049895, - 0.052503, - 0.027528, - -0.073344, - -0.00076988, - 0.041196, - -0.00037138, - 0.070865, - 0.011279, - 0.033184, - 0.078199, - 0.066871, - 0.011363, - -0.058549, - -0.062859, - 0.010118, - -0.028142, - -0.024047, - 0.0060098, - -0.0017943, - -0.080319, - 0.004584, - 0.14315, - 0.016609, - 0.020333, - -0.0065194, - 0.033848, - 0.1528, - -0.035087, - 0.045045, - 0.024559, - -0.020064, - 0.010359, - 0.028465, - 0.015074, - 0.033801, - -0.036139, - 0.006588, - 0.020975, - 0.037093, - -0.0024049, - 0.046731, - 0.067208, - -0.022329, - 0.0092137, - 0.031457, - 0.037434, - -0.056594, - 0.036771, - 0.082982, - 0.0071419, - -0.086397, - 0.010475, - 0.033233, - 0.056234, - -0.029288, - 0.016213, - 0.040017, - 0.012696, - -0.033659, - 0.009716, - 0.00087456, - 0.020621, - -0.03373, - 0.047108, - -0.069775, - 0.027229, - -0.0034306, - 0.045877, - 0.015665, - 0.029821, - -0.090258, - -0.047422, - 0.032699, - -0.032208, - -0.0030547, - -0.050503, - 0.010576, - 0.068313, - -0.022554, - -0.008816, - -0.046522, - 0.022716, - -0.011616, - -0.0044255, - 0.078361, - 0.015921, - -0.035696, - -0.017679, - 0.067452, - -0.076606, - -0.054872, - -0.00032602, - 0.014448, - 0.0068453, - 0.041264, - 0.015101, - 0.032702, - -0.17889, - 0.065006, - 0.031818, - -0.073533, - -0.0020298, - -0.015675, - -0.032148, - 0.010044, - -0.0246, - -0.061615, - 0.090599, - 0.082269, - 0.060674, - 0.060342, - 0.0062322, - -0.057153, - 0.0091336, - -0.027403, - -0.044768, - 0.00019435, - -0.075428, - -0.04178, - 0.034016, - 0.096743, - 0.068901, - -0.0497, - 0.0047665, - 0.030324, - 0.058225, - 0.062649, - -0.049664, - -0.06856, - -0.12761, - -0.048083, - 0.0602, - 0.0036839, - -0.0095466, - -0.021838, - 0.0012966, - 0.033132, - -0.027681, - 0.026238, - -0.040077, - 0.0047266, - 0.0014857, - 0.05548, - -0.029969, - -0.053685, - 0.010877, - 0.038831, - -0.01126, - 0.0033255, - 0.019886, - -0.021575, - -0.026102, - 0.053356, - -0.039151, - 0.038256, - -0.018081, - -0.020979, - 0.049838, - 0.06931, - -0.05978, - -0.026703, - 0.088421, - -0.071159, - 0.032475, - 0.0088495, - -0.036982, - 0.00055127, - -0.0024038, - 0.077233, - -0.12353, - -0.070563, - -0.014419, - -0.02558, - 0.012696, - 0.039411, - -0.017097, - 0.030409, - 0.0052642, - 0.025209, - 0.022782, - 0.028831, - -0.012328, - -0.045765, - -0.098831, - 0.03991, - -0.0078372, - 0.051792, - -0.083194, - -0.022679, - 0.0098015, - -0.043902, - 0.013304, - -0.054577, - 0.045267, - -0.0056654, - -0.04168, - 0.027018 - ], - "Judaism": [ - 0.049188, - -0.032324, - 0.12842, - -0.021699, - -0.0031028, - 0.043684, - -0.0070987, - -0.086964, - 0.051546, - -0.065332, - -0.028328, - -0.096568, - -0.0038467, - -0.011671, - 0.043877, - -0.03828, - 0.093091, - -0.058134, - 0.033447, - -0.018944, - -0.037257, - 0.073094, - 0.0081603, - 0.046997, - 0.0087656, - 0.071563, - 0.0030119, - 0.068008, - 0.065012, - 0.022712, - -0.025017, - 0.023354, - -0.043421, - 0.047266, - 0.040001, - 0.050775, - -0.028293, - -0.045073, - -0.032684, - -0.014468, - -0.0082674, - -0.029622, - -0.042796, - -0.026503, - -0.039299, - -0.032738, - -0.034531, - -0.053394, - -0.014936, - -0.10173, - -0.014675, - -0.031261, - 0.014148, - 0.03847, - -0.081513, - -0.073582, - 0.054456, - -0.027475, - -0.03557, - -0.036665, - 0.052774, - 0.047172, - 0.034041, - -0.033735, - -0.014631, - 0.011372, - 0.06945, - 0.056061, - 0.050809, - -0.053205, - 0.06267, - 0.024989, - -0.0004659, - 0.0053866, - -0.11521, - -0.057512, - 0.0076513, - -0.014979, - 0.12064, - 0.03289, - 0.0018152, - 0.057823, - -0.086293, - 0.02947, - -0.046164, - -0.07845, - 0.0043885, - -0.059587, - -0.010671, - 0.033473, - 0.017709, - 0.038127, - -0.06807, - 0.017708, - -0.013401, - 0.058544, - -0.011088, - -0.049154, - 0.047339, - -0.109, - -0.031927, - 0.019437, - 0.011254, - 0.018114, - -0.038041, - -0.080171, - 0.043214, - 0.027905, - -0.091843, - 0.035896, - 0.062301, - 0.091009, - 0.025295, - -0.025118, - -0.014287, - 0.03856, - 0.061141, - -0.035823, - 0.0080038, - -0.013074, - -0.081195, - -0.043956, - 0.091097, - -0.074136, - -0.046151, - -0.09529, - -0.082374, - -0.02397, - 0.0038143, - 0.18678, - 0.0015387, - 0.0014735, - -0.029832, - 0.043229, - -0.031117, - 0.025432, - -0.035537, - -0.014745, - 0.024367, - -0.19417, - 0.042618, - -0.0076627, - -0.0063163, - 0.062901, - 0.017799, - -0.018913, - -0.051819, - 0.0048496, - -0.050807, - 0.012671, - 0.076893, - 0.018587, - -0.10056, - -0.027054, - -0.077909, - 0.067932, - 0.012189, - -0.09642, - 0.061082, - -0.0092842, - 0.019925, - 0.073191, - -0.10217, - 0.02968, - 0.075205, - -0.046359, - 0.046662, - -0.024972, - -0.033609, - -0.054088, - -0.013349, - -0.064193, - -0.004007, - 0.073606, - -0.021114, - 0.051287, - 0.04369, - -0.037481, - 0.0078332, - -0.096707, - -0.0039317, - 0.02895, - 0.024869, - 0.035823, - 0.018179, - 0.0055592, - 0.0029412, - 0.14127, - -0.025877, - -0.075526, - -0.085298, - 0.081476, - -0.094538, - 0.041673, - 0.051468, - 0.064141, - -0.10414, - 0.0016735, - -0.013784, - -0.089505, - -0.12611, - 0.049367, - -0.0080443, - -0.11705, - -0.057444, - 0.03604, - 0.15298, - -0.0012737, - 0.028909, - 0.002944, - 0.09674, - 0.0024577, - -0.018711, - 0.048336, - 0.11681, - 0.083325, - -0.022458, - -0.071799, - 0.0040557, - -0.039266, - -0.077295, - 0.048596, - -0.025413, - 0.092512, - -0.056377, - -0.036741, - 0.062905, - 0.073841, - 0.014803, - -0.064587, - 0.010599, - -0.056797, - -0.078658, - -0.048888, - 0.022885, - -0.023077, - 0.024648, - 0.088549, - -0.065847, - 0.004445, - 0.0069975, - -0.037779, - -0.022187, - 0.005499, - 0.096052, - 0.058746, - -0.0043859, - -0.0040884, - 0.056163, - -0.057719, - 0.038672, - -0.12246, - -0.099113, - 0.061569, - 0.020923, - 0.039333, - 0.022761, - 0.045989, - 0.054942, - 0.017897, - 0.03569, - 0.0050943, - 0.092735, - -0.0026835, - 0.010845, - 0.01106, - 0.056, - -0.0059307, - 0.030157, - -0.0046883, - 0.054486, - 0.082356, - -0.084308, - -0.0012165, - -0.01369, - -0.052101, - -0.033205, - 0.011403, - -0.043091, - -0.096847, - 0.029329, - -0.023738, - 0.035581, - -0.066571, - -0.021174, - 0.0016734, - 0.056113, - 0.011689, - 0.0028796, - 0.0068228, - 0.052914, - 0.026685, - -0.0076608, - -0.076415, - 0.049335, - 0.042783, - 0.07298, - 0.056387, - -0.075729, - -0.020001 - ], - "finance": [ - 0.090698, - -0.062528, - -0.032133, - -0.027663, - 0.017119, - -0.091539, - 0.002477, - -0.1062, - 0.080111, - 0.017708, - 0.055247, - 0.009581, - -0.0035217, - 0.0019072, - 0.0072735, - -0.018606, - 0.12662, - -0.034603, - 0.059926, - 0.0040656, - 0.029307, - 0.042656, - 0.021775, - 0.062676, - -0.011406, - 0.01778, - -0.035176, - 0.038982, - -0.031713, - -0.019308, - -0.041012, - 0.038004, - -0.066818, - -0.021349, - 0.03248, - 0.065309, - 0.00044034, - 0.018245, - -0.028483, - 0.005413, - -0.058377, - -0.16934, - 0.058829, - 0.015151, - -0.024163, - 0.0073962, - -0.04186, - -0.039809, - 0.010746, - 0.022505, - -0.0061076, - -0.056838, - 0.029331, - 0.0029044, - -0.12869, - 0.0081432, - -0.071936, - -0.017315, - -0.010842, - 0.037162, - 0.033815, - -0.022457, - 0.083105, - 0.099988, - 0.052739, - -0.031184, - 0.039133, - -0.094531, - 0.0038714, - 0.033887, - 0.0196, - -0.0386, - 0.042551, - 0.020357, - 0.050711, - 0.034803, - 0.005524, - -0.00052452, - 0.0048154, - 0.021721, - -0.0038763, - -0.013217, - -0.099497, - 0.067823, - -0.023699, - 0.033762, - 0.0023165, - -0.03691, - 0.0023035, - 0.0024011, - 0.028758, - -0.010203, - -0.095973, - 0.027459, - -0.06317, - 0.0047851, - -0.041452, - -0.042247, - -0.032794, - -0.0085967, - 0.0074353, - -0.038202, - -0.0036451, - -0.065151, - -0.0091479, - -0.073458, - -0.029785, - -0.059905, - 0.026124, - 0.00024296, - -0.013413, - 0.09716, - 0.068566, - 0.0064042, - 0.007574, - 0.0026372, - -0.021169, - -0.017222, - -0.030045, - 0.01999, - -0.0046606, - -0.0033494, - 0.016668, - -0.043876, - 0.083465, - -0.0062215, - -0.12216, - -0.072493, - 0.02923, - 0.13494, - 0.025732, - -0.022944, - 0.013133, - -0.014577, - 0.033314, - 0.022774, - 0.022465, - -0.047308, - -0.014879, - 0.021862, - -0.0041842, - 0.0037568, - -0.018936, - 0.11882, - -0.0038486, - -0.066788, - -0.0067248, - -0.042688, - 0.0054094, - -0.081603, - 0.053691, - 0.11632, - 0.041571, - -0.12887, - 0.022048, - -0.021738, - 0.046006, - 0.025753, - -0.020412, - -0.018312, - 0.063671, - -0.016391, - -0.098856, - 0.063559, - -0.0046876, - 0.0075951, - -0.017836, - -0.10115, - 0.036526, - 0.080466, - 0.019407, - -0.030022, - -0.034677, - -0.0080397, - -0.00088417, - 0.053515, - -0.022456, - 0.05322, - -0.039994, - 0.014548, - -0.037499, - 0.0044421, - -0.014121, - 0.021144, - 0.033539, - -0.050921, - -0.051549, - 0.10129, - 0.081783, - 0.0053865, - -0.0583, - 0.056875, - -0.028251, - 0.0034907, - -0.023743, - -0.052223, - -0.004794, - -0.002241, - 0.010454, - -0.044696, - -0.16903, - 0.04084, - 0.040895, - -0.000022457, - 0.0013657, - 0.005338, - -0.040365, - -0.10034, - -0.014599, - -0.0049857, - 0.11923, - 0.027077, - 0.0019985, - 0.022378, - 0.025617, - 0.053795, - -0.024493, - -0.014548, - -0.051057, - 0.023266, - 0.033292, - -0.031387, - -0.0032213, - 0.11559, - 0.01945, - 0.022237, - 0.028918, - 0.075299, - 0.021463, - 0.012108, - 0.003727, - -0.046838, - -0.044896, - -0.021025, - 0.028584, - -0.019445, - -0.086872, - 0.014067, - -0.071436, - -0.049644, - 0.093733, - -0.015224, - 0.030927, - 0.010289, - -0.026289, - 0.0046165, - -0.011851, - -0.10361, - 0.063955, - 0.1111, - 0.051144, - 0.031648, - -0.024547, - 0.032576, - 0.026124, - 0.050157, - -0.04667, - 0.065693, - 0.030705, - 0.04708, - 0.045705, - -0.028321, - -0.029539, - -0.033711, - -0.027328, - 0.034124, - -0.025563, - 0.019384, - 0.017801, - 0.031713, - 0.0063646, - 0.097306, - -0.12245, - -0.040435, - -0.082771, - 0.027997, - -0.0014058, - 0.025094, - -0.020738, - -0.017396, - 0.094774, - 0.031257, - -0.03414, - 0.0051469, - -0.051898, - -0.018946, - 0.040307, - 0.020111, - -0.073631, - 0.033284, - 0.033659, - 0.019675, - 0.00054941, - 0.048691, - -0.035382, - -0.0039501, - -0.036452, - 0.0072114, - -0.057219, - -0.029077 - ], - "non-military": [ - -0.0064465, - -0.046532, - 0.018542, - -0.024589, - -0.023419, - -0.0041028, - -0.0022908, - -0.06518, - 0.043044, - 0.06099, - -0.021792, - -0.019111, - -0.022253, - 0.044844, - 0.016052, - 0.083485, - 0.072454, - 0.00061855, - 0.037297, - 0.028354, - 0.048924, - -0.01375, - 0.0029242, - 0.031451, - -0.0098674, - 0.015142, - 0.010395, - 0.014415, - 0.0048916, - -0.0049407, - 0.0027963, - -0.057006, - -0.00561, - -0.04472, - 0.058437, - 0.044619, - -0.020416, - 0.04969, - 0.054478, - 0.037452, - -0.020764, - -0.11758, - 0.022113, - -0.020104, - 0.0032729, - -0.03822, - -0.014007, - -0.038603, - -0.030824, - -0.014574, - -0.031709, - 0.0072051, - 0.017322, - -0.011859, - 0.051045, - -0.00034045, - -0.059841, - 0.0078657, - 0.013448, - 0.022193, - 0.0049494, - -0.013785, - 0.12376, - -0.002123, - 0.031492, - -0.073166, - 0.027776, - -0.05399, - 0.011271, - 0.035702, - 0.035291, - -0.034129, - 0.059194, - -0.005956, - 0.0019101, - -0.026955, - 0.008604, - 0.0047991, - 0.031744, - 0.00933, - 0.0037004, - 0.0166, - -0.016605, - 0.044471, - 0.00098876, - 0.023738, - -0.023899, - 0.0042962, - -0.03426, - 0.031922, - -0.035462, - 0.017342, - -0.061458, - 0.0035882, - -0.033535, - 0.038027, - -0.065951, - -0.050034, - -0.013052, - 0.015511, - 0.043427, - -0.0014657, - 0.029077, - -0.051679, - -0.0018096, - -0.068119, - 0.043423, - 0.055189, - -0.037157, - -0.013624, - -0.02974, - 0.055584, - 0.036913, - 0.029735, - 0.00029714, - -0.016796, - 0.010336, - 0.028426, - -0.030427, - 0.015714, - -0.019623, - 0.0024092, - -0.07034, - -0.02659, - 0.059118, - 0.040001, - -0.010734, - -0.022419, - -0.028187, - 0.016145, - -0.05169, - 0.050827, - 0.01373, - 0.065004, - 0.0093721, - 0.015534, - 0.0031445, - 0.0308, - -0.01179, - 0.0035251, - -0.016646, - -0.047836, - -0.031774, - 0.011308, - -0.02815, - 0.040108, - 0.0095846, - 0.040425, - 0.035426, - -0.0040602, - 0.04455, - 0.10281, - -0.033894, - -0.048881, - -0.012266, - 0.030111, - -0.047615, - -0.029954, - 0.0111, - -0.013429, - 0.025014, - -0.03968, - 0.022009, - -0.0041898, - -0.068302, - 0.037586, - 0.027416, - -0.028787, - 0.0028321, - -0.048584, - 0.031527, - -0.0099652, - 0.012092, - 0.0052016, - -0.037412, - 0.036005, - -0.017103, - 0.02089, - -0.023759, - 0.0019423, - 0.0019848, - 0.0066008, - 0.017048, - 0.0070004, - 0.037166, - -0.10308, - 0.0046449, - 0.074033, - 0.047049, - -0.027529, - -0.0054648, - 0.035077, - 0.078366, - -0.028344, - -0.030077, - 0.022802, - -0.055607, - 0.010593, - -0.050096, - 0.014769, - -0.11313, - 0.051487, - -0.025685, - 0.041515, - -0.018497, - -0.014685, - -0.024132, - 0.061589, - 0.016692, - -0.0054237, - 0.088085, - -0.016615, - 0.014771, - 0.029823, - 0.0073814, - 0.069012, - -0.024389, - 0.0019888, - -0.03407, - -0.0087462, - 0.024754, - -0.032149, - -0.039075, - 0.070677, - -0.026264, - 0.032635, - 0.013191, - 0.041887, - 0.039365, - -0.029719, - -0.0075173, - -0.012975, - -0.063842, - -0.051698, - 0.020489, - 0.0011805, - -0.015615, - -0.0037859, - -0.001789, - -0.055395, - 0.010599, - 0.03828, - 0.037778, - -0.025269, - -0.12508, - 0.019853, - -0.019489, - -0.0053953, - -0.01132, - -0.011412, - -0.042323, - 0.076225, - 0.013278, - -0.031703, - -0.039999, - -0.0068677, - 0.043624, - 0.033593, - 0.0030658, - -0.054503, - -0.028173, - -0.044056, - 0.0086217, - 0.030418, - 0.0035107, - 0.0063839, - 0.0073042, - -0.00973, - 0.036785, - 0.01983, - -0.010179, - 0.063085, - -0.062404, - -0.021908, - 0.020223, - -0.089919, - 0.0079133, - -0.036496, - -0.0029064, - -0.035949, - 0.11068, - 0.0046217, - -0.00026425, - 0.04673, - 0.0044288, - -0.027267, - -0.033959, - -0.030339, - 0.0070819, - -0.030883, - -0.00014634, - 0.047762, - -0.016205, - -0.00024338, - -0.0021087, - 0.0084862, - -0.014808, - -0.021631, - -0.017303, - -0.030735 - ], - "civilian": [ - -0.0027039, - -0.030504, - 0.032581, - -0.034494, - -0.011677, - -0.0050769, - 0.013409, - -0.092155, - 0.093157, - 0.068769, - -0.050167, - 0.014568, - -0.068678, - 0.054526, - -0.034586, - 0.10248, - 0.078704, - 0.023311, - 0.046738, - 0.06421, - 0.031457, - -0.031431, - 0.0098285, - 0.058218, - -0.024576, - 0.0088716, - 0.0027391, - -0.0014926, - 0.03426, - 0.023529, - 0.0026357, - -0.080461, - 0.017628, - 0.004087, - 0.03709, - 0.01829, - -0.00050022, - 0.076898, - 0.069663, - 0.049106, - -0.037946, - -0.1337, - 0.029932, - -0.014502, - 0.028125, - -0.018397, - 0.01725, - -0.054345, - -0.034923, - 0.027959, - -0.015218, - 0.020607, - -0.014857, - -0.0081857, - 0.040034, - -0.002342, - -0.025625, - 0.0051728, - -0.032705, - 0.0091175, - -0.0088825, - -0.0050087, - 0.1448, - -0.032332, - 0.05152, - -0.025904, - -0.00060914, - -0.077611, - 0.00033089, - 0.01503, - 0.027355, - -0.038799, - 0.091724, - -0.030379, - -0.014185, - -0.018853, - 0.03439, - 0.019921, - 0.044841, - -0.0015357, - 0.009707, - 0.031833, - -0.023977, - 0.032131, - -0.041017, - 0.04413, - -0.0018099, - 0.021721, - -0.010113, - 0.022777, - -0.031681, - 0.031944, - -0.11322, - -0.014163, - -0.021305, - 0.092501, - -0.036823, - -0.07498, - 0.050905, - -0.012009, - 0.056622, - 0.019493, - 0.0043786, - -0.047355, - 0.028346, - -0.12223, - 0.083177, - 0.041267, - -0.040019, - 0.007392, - -0.037945, - 0.10185, - 0.059766, - 0.047026, - -0.0063505, - -0.059645, - 0.01808, - 0.030949, - -0.035737, - 0.0037056, - -0.038418, - -0.018324, - -0.078027, - -0.01315, - 0.06196, - 0.081852, - 0.034394, - -0.085115, - 0.019368, - 0.015505, - -0.070358, - 0.041387, - 0.025361, - 0.010781, - 0.024514, - 0.022416, - 0.014328, - 0.048126, - -0.035945, - -0.044927, - -0.082669, - -0.041237, - -0.045084, - -0.0061468, - -0.0021539, - 0.06328, - -0.013165, - 0.017241, - 0.012866, - -0.027334, - 0.068457, - 0.13374, - -0.029377, - -0.012563, - 0.014663, - 0.03041, - -0.039037, - 0.0037686, - -0.015729, - -0.04393, - 0.020337, - -0.026825, - -0.0095758, - 0.032421, - -0.075094, - 0.041092, - 0.011422, - -0.0094467, - 0.012819, - -0.03751, - 0.011468, - -0.055212, - 0.042548, - -0.015359, - -0.037491, - 0.064942, - -0.015415, - 0.022415, - -0.0020754, - -0.0061846, - 0.029338, - 0.056742, - -0.0079849, - -0.0060925, - 0.0019906, - -0.078229, - 0.022372, - 0.094308, - -0.0055504, - -0.013529, - -0.016634, - 0.066057, - 0.060756, - -0.019022, - 0.0084932, - 0.056103, - -0.082003, - 0.005906, - -0.044406, - 0.031773, - -0.14094, - 0.047135, - -0.033763, - 0.0078532, - -0.03133, - -0.00042615, - -0.01406, - 0.051804, - 0.028259, - 0.023473, - 0.16519, - -0.0079579, - -0.015962, - 0.067251, - -0.073005, - 0.044097, - -0.015389, - 0.01072, - 0.01469, - 0.021716, - 0.003644, - -0.066957, - -0.013651, - 0.094966, - -0.017947, - 0.04694, - 0.0044595, - 0.053604, - 0.029358, - -0.083173, - 0.0080609, - -0.010032, - -0.085682, - -0.074878, - 0.027956, - 0.001278, - -0.063582, - 0.02823, - -0.0015885, - -0.040041, - 0.019426, - 0.010762, - 0.031683, - -0.0093961, - -0.098033, - -0.0017525, - -0.031837, - -0.025726, - -0.023665, - -0.073003, - 0.00019565, - 0.083932, - 0.057853, - -0.055824, - 0.034737, - 0.0051429, - 0.11723, - 0.040393, - -0.0092591, - -0.01404, - -0.074768, - -0.046906, - -0.0067391, - 0.0008512, - -0.055519, - 0.0092527, - -0.010659, - 0.018308, - 0.014155, - -0.027851, - -0.028484, - 0.072264, - -0.095994, - -0.022775, - 0.012259, - -0.076904, - 0.028085, - -0.018308, - 0.043566, - -0.037417, - 0.14311, - 0.018349, - -0.022168, - 0.053415, - -0.0071991, - -0.0015882, - -0.055645, - -0.079721, - 0.0065377, - -0.02179, - -0.0072933, - 0.019145, - -0.025008, - 0.00059768, - 0.013625, - 0.0016909, - -0.029324, - -0.014973, - 0.014654, - -0.029105 - ], - "food": [ - -0.077189, - -0.06709, - -0.019792, - -0.033031, - 0.046813, - 0.0028462, - -0.035712, - -0.13529, - 0.12946, - 0.075788, - -0.014512, - 0.020746, - -0.028559, - 0.013063, - 0.025863, - -0.078705, - 0.14224, - 0.06043, - 0.061426, - 0.040817, - 0.06241, - 0.046038, - 0.066874, - 0.019757, - -0.05293, - -0.021952, - -0.040887, - 0.053962, - 0.070189, - -0.060109, - 0.085066, - 0.0008145, - 0.088995, - -0.06283, - 0.093212, - -0.0065136, - 0.053469, - 0.03711, - 0.037588, - 0.041203, - -0.054934, - -0.19747, - 0.011475, - -0.025891, - 0.1047, - -0.11163, - 0.016, - -0.10829, - -0.036016, - 0.0010766, - -0.037611, - 0.080053, - 0.11307, - -0.1096, - -0.095643, - 0.064707, - -0.025858, - -0.059379, - -0.080499, - -0.10734, - -0.040478, - -0.14054, - 0.16888, - 0.037753, - 0.04164, - 0.058923, - 0.10525, - -0.073178, - -0.019698, - -0.032298, - 0.039163, - 0.0103, - 0.098415, - -0.056274, - -0.026741, - 0.020901, - -0.02432, - -0.05449, - 0.0079034, - 0.0071208, - -0.04407, - -0.056004, - 0.019046, - 0.075707, - -0.077781, - 0.045147, - -0.018472, - -0.06531, - 0.011505, - 0.015295, - 0.0087814, - 0.024952, - -0.15291, - 0.014287, - -0.10252, - 0.07491, - 0.044219, - 0.12538, - 0.0083558, - -0.036496, - 0.0066092, - -0.01498, - 0.012691, - -0.003405, - 0.017617, - -0.16661, - -0.18481, - 0.044876, - 0.1299, - 0.03944, - 0.015029, - 0.1426, - 0.077022, - 0.074525, - 0.056858, - -0.064605, - -0.026577, - 0.032196, - -0.08338, - -0.05644, - -0.062501, - 0.055355, - -0.04452, - -0.11883, - 0.10624, - -0.090696, - -0.072122, - -0.13979, - 0.074615, - 0.11299, - 0.03695, - -0.031601, - 0.073402, - -0.077497, - 0.067417, - 0.019395, - -0.13314, - 0.034851, - 0.02354, - 0.050014, - 0.059018, - -0.063291, - -0.014534, - -0.02338, - -0.0090477, - -0.015305, - 0.039103, - 0.064147, - -0.0090173, - -0.018576, - 0.08197, - 0.1205, - -0.027537, - -0.090232, - 0.10948, - -0.037873, - -0.11361, - 0.030797, - 0.0012746, - -0.017812, - 0.062136, - -0.037169, - -0.12285, - 0.052091, - 0.028656, - 0.062325, - -0.062049, - -0.066616, - 0.12877, - 0.044581, - 0.040919, - -0.05746, - 0.015317, - -0.00055708, - -0.032417, - 0.086493, - -0.062578, - 0.09667, - -0.032867, - -0.058629, - -0.030606, - -0.0023957, - 0.05941, - -0.21019, - -0.034007, - -0.086045, - 0.05061, - 0.18527, - -0.080772, - -0.14101, - 0.042072, - 0.088919, - 0.075894, - -0.053675, - 0.056126, - 0.021776, - -0.021426, - -0.057443, - 0.021866, - 0.021327, - -0.21798, - 0.069355, - -0.010617, - -0.10089, - -0.033687, - 0.049815, - -0.020503, - -0.065454, - 0.031474, - -0.0084022, - 0.15896, - 0.0075004, - -0.0029195, - 0.015713, - 0.052765, - 0.022308, - 0.060779, - 0.013211, - -0.020622, - -0.033752, - 0.0076105, - -0.020859, - -0.090844, - 0.14297, - 0.08051, - 0.026978, - 0.033914, - 0.07809, - -0.022696, - -0.033306, - -0.065706, - -0.050049, - -0.1091, - -0.088444, - -0.035807, - -0.014509, - -0.0597, - 0.0056786, - 0.036249, - -0.16095, - 0.025791, - 0.021744, - 0.009111, - -0.050126, - -0.085745, - 0.09973, - 0.045177, - -0.0082636, - -0.0042895, - 0.041597, - 0.0037267, - -0.064991, - -0.077147, - 0.0016568, - -0.026445, - 0.030574, - -0.013019, - 0.01829, - -0.0010348, - 0.10429, - 0.023285, - -0.032906, - 0.084714, - -0.018617, - 0.045257, - 0.048263, - 0.038163, - -0.029633, - -0.043193, - 0.039957, - -0.013698, - 0.088564, - -0.12836, - -0.084536, - -0.086874, - -0.060962, - -0.049691, - -0.060659, - -0.063428, - 0.040593, - 0.19276, - 0.037416, - -0.011142, - 0.033648, - -0.021352, - 0.14327, - -0.056625, - 0.078097, - 0.059682, - -0.012889, - 0.026614, - 0.11027, - -0.063746, - -0.053616, - -0.022895, - -0.04652, - 0.017303, - 0.050834, - -0.10258, - 0.033772 - ], - "auto": [ - 0.050735, - -0.026908, - 0.11211, - 0.042649, - -0.093272, - -0.077388, - -0.07398, - -0.12486, - 0.13714, - -0.049054, - 0.018441, - 0.047817, - 0.020385, - 0.0027717, - -0.091433, - 0.035614, - 0.09456, - 0.024367, - 0.12089, - -0.022493, - 0.022804, - 0.035834, - -0.0015494, - 0.099482, - 0.050392, - -0.036671, - 0.029335, - 0.088498, - 0.0088232, - 0.059385, - 0.0070331, - 0.081682, - 0.12773, - -0.029531, - 0.078027, - 0.023048, - 0.014619, - 0.15245, - -0.07513, - 0.083144, - 0.060772, - -0.23459, - -0.036494, - 0.024252, - 0.00004052, - 0.012197, - -0.088948, - 0.031843, - -0.043805, - -0.014274, - -0.0093103, - -0.025029, - 0.099502, - 0.015088, - -0.080101, - -0.22531, - -0.053113, - 0.07995, - -0.058002, - -0.040885, - -0.016922, - -0.10092, - 0.12191, - 0.035795, - 0.12317, - 0.003593, - -0.0062319, - -0.047623, - 0.050007, - 0.040571, - 0.0061699, - -0.0032524, - 0.066233, - -0.028477, - 0.019458, - -0.04418, - -0.12634, - -0.024828, - -0.00031115, - -0.078575, - -0.07459, - -0.048941, - -0.13878, - 0.026594, - -0.064364, - -0.089718, - 0.014525, - 0.042396, - 0.066774, - -0.099024, - 0.030377, - 0.051066, - -0.1784, - -0.053469, - -0.065221, - 0.097714, - -0.075659, - -0.073029, - -0.12948, - -0.11229, - 0.041068, - -0.029862, - 0.07029, - -0.047574, - 0.0608, - -0.17122, - -0.016446, - -0.10923, - 0.095142, - -0.024714, - 0.11624, - 0.18978, - 0.041173, - 0.046755, - 0.03833, - -0.09164, - -0.061659, - 0.017201, - -0.039007, - 0.050445, - -0.089155, - 0.11641, - -0.065132, - 0.086953, - 0.14105, - 0.12844, - -0.030258, - -0.095798, - 0.11675, - 0.09336, - 0.026271, - -0.011069, - 0.043225, - 0.0043047, - 0.064068, - -0.0093223, - 0.071924, - -0.052279, - -0.054039, - -0.083218, - 0.00064736, - 0.060939, - 0.061604, - 0.14846, - -0.12294, - -0.034238, - -0.080927, - 0.013596, - 0.048225, - -0.066325, - 0.036308, - 0.18896, - 0.11882, - 0.01175, - 0.097485, - -0.03604, - 0.041239, - -0.0020754, - 0.021934, - 0.082339, - -0.011811, - 0.036519, - -0.10575, - -0.016542, - 0.058601, - -0.081767, - 0.030872, - 0.0018875, - -0.031391, - -0.010591, - 0.016994, - -0.050997, - -0.039789, - 0.14365, - -0.051105, - 0.10103, - 0.041306, - -0.012376, - -0.031755, - 0.053814, - 0.099608, - -0.13673, - -0.05692, - 0.065366, - -0.011512, - -0.066208, - 0.0089235, - 0.10998, - -0.024489, - 0.059138, - -0.097999, - 0.049798, - 0.029027, - -0.025541, - 0.096598, - 0.00077938, - -0.041175, - -0.11733, - -0.019698, - 0.032876, - -0.19221, - 0.067988, - -0.081911, - -0.094318, - 0.068155, - 0.063778, - -0.053801, - 0.029467, - -0.068928, - -0.017364, - 0.2211, - -0.052233, - 0.042583, - 0.021369, - 0.0032925, - -0.019871, - -0.10019, - -0.0099217, - 0.031192, - 0.020668, - 0.048043, - -0.14509, - -0.021542, - 0.13356, - -0.024698, - 0.030846, - -0.013889, - 0.10917, - -0.046682, - -0.002054, - -0.090819, - -0.058756, - -0.005982, - -0.001661, - 0.092454, - -0.1221, - 0.05975, - 0.0012805, - 0.065134, - -0.017095, - 0.087897, - 0.049636, - -0.061263, - -0.0042595, - -0.05622, - -0.055274, - 0.16179, - -0.064176, - 0.033987, - 0.016526, - 0.06168, - -0.021834, - -0.13617, - 0.054041, - -0.016245, - -0.052768, - 0.051566, - -0.046393, - 0.058045, - 0.030779, - 0.099954, - 0.054053, - -0.029285, - 0.0028878, - 0.0030064, - 0.077548, - 0.024913, - 0.00015117, - 0.075464, - -0.021089, - -0.073465, - 0.12749, - -0.12117, - -0.0079288, - -0.064614, - -0.070176, - -0.069311, - 0.10665, - 0.097708, - -0.022945, - 0.23784, - 0.025727, - -0.017508, - -0.036554, - -0.036053, - -0.033057, - 0.0040287, - 0.04124, - 0.086282, - 0.071875, - 0.019172, - -0.062622, - -0.037199, - 0.067006, - 0.021186, - 0.0072164, - 0.028843, - 0.001509, - 0.089538, - -0.13398 - ], - "gadget": [ - -0.053051, - -0.031474, - 0.022029, - -0.017896, - -0.091021, - 0.0074061, - 0.022843, - -0.11715, - -0.020267, - 0.070649, - -0.065723, - 0.00014314, - -0.036401, - -0.03385, - -0.0094916, - -0.035425, - 0.12648, - -0.008589, - 0.090616, - 0.021113, - 0.12119, - 0.053838, - -0.049297, - 0.035848, - 0.13032, - -0.068095, - 0.10122, - 0.019804, - 0.016003, - -0.042305, - -0.054853, - -0.14414, - 0.16673, - -0.08703, - 0.026767, - -0.030679, - 0.048301, - 0.054115, - -0.10297, - -0.051628, - 0.0028471, - -0.16013, - -0.15085, - 0.01266, - 0.023641, - 0.0083453, - -0.01579, - -0.0062786, - -0.0011571, - -0.0032765, - 0.03988, - 0.018808, - 0.034221, - 0.022072, - -0.042594, - 0.062714, - 0.0427, - 0.025641, - -0.056952, - 0.024016, - -0.014651, - -0.059858, - 0.11584, - 0.10672, - 0.032568, - 0.020282, - 0.051226, - 0.071277, - -0.026117, - -0.0071174, - -0.00062651, - -0.026669, - -0.014668, - -0.026226, - -0.14957, - 0.062124, - -0.023397, - -0.069124, - -0.051164, - -0.058907, - 0.0096218, - -0.0076837, - -0.07024, - 0.037279, - -0.038066, - -0.0041998, - -0.023176, - -0.0021551, - 0.037876, - -0.041537, - 0.081241, - 0.025651, - -0.1184, - -0.021377, - -0.0128, - 0.040988, - -0.020445, - -0.033617, - -0.024395, - 0.084605, - 0.049642, - 0.048531, - 0.062501, - -0.037396, - -0.050472, - -0.13754, - 0.065393, - 0.075851, - 0.029752, - -0.08255, - -0.0061562, - 0.056225, - 0.058817, - 0.055964, - -0.0054704, - 0.007128, - -0.08782, - -0.028726, - -0.07335, - 0.017568, - -0.0038549, - 0.038011, - -0.052629, - 0.017396, - 0.10431, - 0.058787, - -0.064667, - -0.075359, - 0.10377, - 0.076546, - -0.0018697, - 0.055903, - 0.014146, - -0.09353, - 0.094568, - -0.074799, - -0.034539, - 0.062124, - 0.0086038, - -0.0059631, - 0.081555, - 0.011297, - 0.086965, - 0.052645, - -0.079115, - 0.047304, - -0.11963, - 0.025887, - 0.028043, - 0.071304, - 0.027983, - 0.067459, - -0.045347, - -0.083784, - -0.087325, - 0.02762, - 0.030311, - 0.047384, - 0.046909, - -0.045707, - -0.018457, - 0.011284, - -0.058562, - -0.026454, - 0.0090683, - -0.0046995, - -0.045912, - -0.074911, - -0.01248, - 0.0029697, - -0.065115, - 0.055338, - -0.10066, - 0.04225, - -0.065182, - 0.056776, - -0.023207, - 0.026506, - -0.019661, - -0.0024398, - 0.051804, - -0.050655, - -0.017725, - -0.0872, - -0.068526, - -0.038579, - -0.045485, - 0.12754, - 0.032529, - 0.06849, - 0.0018589, - 0.084967, - -0.0096385, - -0.037616, - -0.032543, - 0.010656, - -0.014728, - 0.02267, - -0.0035239, - 0.11741, - -0.14571, - 0.076122, - -0.087059, - 0.013629, - 0.03162, - 0.10667, - -0.023039, - 0.043712, - -0.094201, - -0.04588, - 0.10122, - 0.0086212, - -0.025178, - 0.068658, - 0.026458, - 0.0077274, - -0.10145, - 0.09713, - 0.017587, - 0.043086, - 0.061663, - -0.046223, - -0.010293, - 0.11653, - 0.018363, - -0.055058, - 0.011265, - 0.080898, - 0.041371, - -0.01046, - -0.095223, - -0.1227, - -0.052062, - -0.041367, - 0.0094942, - 0.0084206, - -0.0064145, - -0.070879, - 0.018075, - -0.048927, - 0.042721, - 0.023099, - 0.017474, - -0.054102, - 0.010679, - 0.04252, - 0.056378, - 0.072023, - -0.085335, - 0.01126, - 0.00401, - 0.018831, - -0.18363, - 0.02084, - 0.004775, - -0.040947, - 0.047893, - 0.028434, - -0.046312, - 0.012065, - 0.1035, - 0.064509, - -0.07864, - -0.051556, - -0.095628, - -0.068529, - 0.024888, - -0.00089634, - -0.0077995, - 0.035238, - -0.020533, - 0.1095, - -0.12343, - -0.029295, - -0.0051927, - -0.041733, - 0.045145, - 0.052121, - 0.090772, - -0.087814, - 0.11322, - -0.051244, - 0.044438, - 0.00069881, - -0.067978, - -0.06651, - -0.078185, - 0.0024087, - 0.077591, - 0.026896, - -0.043603, - -0.046491, - -0.056985, - 0.035767, - -0.0086402, - -0.052673, - 0.00024081, - 0.0054388, - 0.032731, - -0.040991 - ], - "practice": [ - 0.0033379, - -0.011874, - 0.016656, - -0.016803, - -0.031336, - -0.037111, - 0.012752, - -0.098288, - 0.0034175, - -0.058725, - -0.05016, - -0.053555, - -0.0066169, - -0.034432, - 0.0036308, - 0.059176, - 0.12188, - 0.023714, - 0.069943, - 0.031083, - -0.026029, - 0.020547, - 0.0028171, - 0.053349, - -0.034197, - -0.032483, - -0.045454, - 0.012341, - -0.037931, - 0.010629, - 0.0043448, - -0.015807, - -0.021247, - -0.070703, - 0.027036, - 0.0010034, - 0.017671, - -0.007849, - 0.038319, - -0.017109, - 0.036952, - -0.10444, - -0.049653, - -0.033047, - -0.0015588, - -0.045367, - 0.027791, - 0.012632, - 0.0010085, - 0.015679, - -0.016906, - -0.010609, - -0.018849, - 0.000095941, - -0.099938, - 0.037887, - 0.0055752, - 0.035442, - -0.022352, - -0.031835, - 0.043125, - 0.0056996, - 0.11748, - 0.0063964, - -0.0072119, - -0.0020091, - -0.0095778, - 0.0079104, - 0.059295, - -0.04334, - 0.020249, - 0.0059967, - 0.0059554, - 0.011723, - 0.0040703, - -0.019213, - 0.035483, - 0.0027838, - -0.046761, - -0.0092217, - -0.032858, - 0.019735, - -0.016576, - 0.052688, - -0.051109, - -0.026879, - 0.03848, - 0.0043697, - 0.015515, - 0.053807, - -0.012767, - 0.020017, - -0.11107, - -0.010452, - 0.034687, - 0.01167, - -0.0010965, - -0.0032255, - 0.037669, - -0.036844, - -0.030681, - -0.005496, - 0.045541, - -0.049455, - 0.010112, - -0.04982, - 0.035778, - 0.019837, - -0.018966, - -0.0018546, - -0.02071, - 0.060523, - 0.060426, - 0.055905, - -0.0027354, - -0.011731, - -0.021692, - -0.0036779, - -0.054472, - -0.036251, - 0.057629, - -0.014599, - 0.025226, - -0.014819, - 0.068837, - 0.018108, - 0.0022277, - -0.063759, - -0.00093583, - 0.13317, - 0.05137, - 0.012481, - 0.018561, - -0.0085243, - -0.016913, - -0.017464, - 0.010148, - -0.023696, - 0.052533, - -0.062298, - -0.018921, - -0.029281, - -0.030048, - 0.025988, - 0.00096122, - -0.036391, - 0.0017126, - 0.014033, - 0.078201, - -0.047519, - 0.092883, - 0.062426, - -0.016898, - -0.081292, - 0.010835, - 0.055843, - 0.0141, - -0.003448, - 0.010119, - 0.020218, - 0.0082447, - 0.041758, - -0.06349, - 0.057565, - -0.0028147, - -0.027815, - 0.04268, - -0.001796, - -0.016193, - -0.028291, - 0.029204, - 0.016887, - -0.0063392, - 0.062728, - 0.027286, - 0.03423, - -0.038918, - 0.027905, - -0.077051, - -0.024056, - 0.025394, - -0.016383, - -0.015738, - -0.0019006, - 0.017072, - -0.064942, - 0.01085, - 0.050511, - -0.0002845, - -0.014764, - -0.033475, - 0.10146, - -0.021403, - -0.040196, - -0.022268, - -0.034048, - 0.03027, - 0.026424, - -0.013184, - -0.021826, - -0.14364, - 0.056206, - -0.01117, - 0.014205, - -0.0054645, - 0.0033382, - 0.01966, - -0.024388, - 0.047478, - -0.016007, - 0.056744, - 0.049805, - 0.0029719, - 0.018335, - 0.025587, - 0.020485, - 0.065852, - -0.05086, - -0.037466, - -0.057979, - -0.009163, - -0.034439, - -0.012689, - 0.12483, - 0.019384, - -0.025905, - 0.024228, - 0.093742, - 0.0060629, - 0.023498, - 0.016008, - -0.066165, - -0.060427, - 0.0049695, - 0.035395, - 0.060599, - 0.023414, - 0.02576, - 0.0073516, - 0.0086474, - 0.077734, - -0.001366, - -0.012466, - -0.0053574, - -0.013329, - 0.029801, - -0.076931, - -0.081406, - -0.00193, - 0.034006, - 0.04515, - 0.01668, - -0.012646, - 0.029592, - 0.03777, - -0.0082869, - 0.021906, - 0.070454, - -0.0592, - 0.021658, - 0.035334, - 0.025553, - 0.021786, - 0.014399, - 0.026137, - 0.03182, - 0.076364, - 0.017713, - -0.070038, - -0.021361, - -0.006809, - 0.068924, - -0.10253, - -0.054649, - 0.016717, - -0.042331, - 0.015216, - 0.00099608, - -0.0013224, - -0.029899, - 0.071094, - 0.03086, - -0.063807, - 0.0031431, - -0.011189, - 0.0016016, - -0.0082734, - -0.026446, - 0.015446, - 0.0057036, - 0.020122, - -0.054104, - 0.037136, - -0.072956, - -0.0031619, - 0.041256, - -0.013376, - 0.002007, - -0.034531, - 0.012498 - ], - "recreation": [ - 0.086224, - -0.079704, - 0.02054, - 0.019019, - -0.0062118, - 0.017325, - -0.050291, - -0.058529, - 0.037252, - 0.020406, - -0.050579, - -0.037211, - 0.012701, - 0.0028592, - 0.026746, - -0.025349, - 0.050555, - 0.020627, - 0.00091175, - -0.0050233, - -0.019016, - -0.049977, - 0.0016739, - 0.047647, - -0.015291, - 0.0066388, - -0.024523, - 0.048407, - -0.0084037, - 0.051552, - -0.004363, - -0.0032116, - 0.024441, - -0.086341, - 0.038556, - 0.025506, - 0.043121, - -0.030429, - -0.0011228, - -0.003862, - 0.042671, - -0.11557, - -0.00023388, - 0.021603, - -0.0087947, - -0.00017118, - 0.010181, - 0.013086, - -0.038928, - 0.052167, - -0.00097184, - 0.050425, - 0.052008, - -0.0041887, - -0.03657, - -0.033229, - -0.011952, - -0.03564, - -0.02376, - -0.061729, - 0.024601, - -0.014229, - 0.063502, - -0.018438, - 0.055242, - -0.0067958, - -0.029754, - -0.0044432, - -0.024482, - 0.028152, - 0.089701, - -0.02643, - 0.036298, - 0.013418, - 0.056036, - -0.014625, - 0.026067, - -0.020216, - -0.031477, - -0.057302, - 0.0028977, - -0.023853, - -0.0049005, - -0.0011551, - -0.052454, - -0.0011744, - -0.032116, - 0.00062698, - -0.0051375, - -0.012995, - 0.019911, - 0.01833, - -0.05939, - -0.0094002, - -0.017282, - 0.05151, - -0.014606, - 0.026623, - 0.0030536, - 0.050422, - 0.037738, - 0.043757, - 0.038169, - -0.027963, - 0.0093629, - -0.063845, - -0.020046, - 0.054165, - -0.038912, - -0.01227, - -0.036094, - 0.074716, - 0.051134, - 0.018687, - 0.062154, - 0.039746, - -0.0087125, - -0.029501, - -0.045282, - -0.035542, - -0.044537, - 0.080004, - -0.068525, - -0.016012, - 0.061344, - -0.020969, - 0.0080515, - -0.075938, - -0.022471, - 0.089437, - 0.038396, - -0.0034541, - 0.038653, - 0.056307, - -0.011728, - -0.01531, - 0.015149, - -0.012103, - -0.0030937, - -0.049532, - -0.0058483, - 0.044599, - 0.013322, - -0.0078386, - 0.035144, - 0.021907, - 0.021163, - -0.066575, - 0.037299, - 0.033233, - 0.056215, - 0.037637, - -0.015131, - -0.098612, - 0.087823, - 0.021909, - -0.070077, - 0.085087, - 0.049247, - -0.0070712, - 0.0089582, - -0.0037677, - -0.05967, - 0.059382, - 0.019086, - 0.0026482, - 0.0086289, - 0.016627, - 0.018736, - -0.0034751, - 0.063451, - 0.030449, - 0.0083385, - -0.012493, - 0.035346, - 0.058835, - -0.022551, - 0.035798, - 0.0024267, - 0.052233, - -0.015454, - 0.003404, - 0.0095568, - -0.024564, - -0.018527, - -0.044272, - -0.0089764, - 0.076133, - -0.0086696, - 0.023197, - -0.023703, - 0.076286, - -0.016565, - 0.011876, - -0.058189, - -0.060374, - -0.022289, - -0.043501, - -0.034214, - -0.032154, - -0.13072, - 0.047931, - 0.0061987, - -0.0017271, - 0.035264, - 0.0025299, - -0.037729, - 0.076798, - 0.036286, - -0.0068949, - 0.062182, - -0.0025721, - 0.0020512, - 0.037941, - 0.023186, - 0.026813, - -0.04032, - -0.054552, - -0.016625, - -0.015142, - -0.027927, - -0.038235, - -0.068086, - 0.08636, - 0.0089289, - 0.016222, - 0.031159, - 0.060016, - -0.019793, - 0.0073653, - -0.022605, - -0.030379, - -0.0089737, - -0.0041309, - 0.016243, - 0.023626, - -0.024547, - 0.033909, - 0.028379, - -0.037616, - 0.028862, - 0.067916, - -0.032471, - -0.016558, - -0.044944, - 0.057297, - -0.02486, - -0.015483, - -0.0067163, - 0.053127, - 0.039583, - -0.0061959, - -0.014256, - 0.017706, - 0.031849, - 0.027492, - -0.058109, - 0.038939, - 0.045085, - 0.042198, - -0.0095654, - -0.0062237, - -0.00041698, - 0.0038379, - 0.045133, - 0.030388, - 0.019803, - -0.026727, - 0.086975, - 0.0080762, - 0.028815, - 0.065774, - -0.085609, - -0.031664, - -0.029931, - -0.0045528, - 0.026549, - 0.05735, - -0.061469, - -0.026845, - 0.080805, - -0.065909, - -0.026815, - 0.022732, - -0.010445, - 0.05044, - -0.045204, - 0.015555, - -0.007562, - -0.01833, - 0.040807, - 0.01305, - -0.028533, - 0.027655, - 0.027035, - 0.075526, - -0.034642, - 0.067909, - -0.019269, - -0.020794 - ], - "history.": [ - 0.019545, - -0.11461, - 0.058674, - 0.059422, - -0.0063078, - -0.023616, - 0.01711, - 0.0062812, - -0.026026, - -0.019939, - 0.037134, - -0.099292, - 0.06572, - 0.026858, - 0.067652, - -0.036961, - 0.096968, - -0.051588, - -0.028059, - 0.0095666, - -0.049122, - 0.030098, - -0.055655, - 0.031352, - -0.025586, - -0.033356, - 0.027164, - 0.038551, - -0.010421, - 0.012911, - 0.027173, - 0.0063921, - -0.023454, - -0.12156, - 0.03308, - -0.014603, - 0.044827, - 0.037651, - -0.0016048, - 0.041794, - -0.03858, - -0.067654, - 0.06564, - -0.055001, - 0.053716, - -0.051928, - 0.017636, - -0.030454, - -0.076111, - 0.0039104, - -0.00011159, - -0.0020503, - 0.0018951, - -0.027386, - 0.033718, - -0.012517, - -0.054655, - 0.043219, - -0.013102, - 0.031315, - 0.028788, - -0.023129, - 0.10379, - -0.047854, - 0.031776, - -0.0083706, - -0.063171, - 0.072187, - 0.12346, - -0.0044916, - -0.073364, - -0.056449, - 0.013154, - -0.0060657, - 0.011655, - -0.037645, - 0.019574, - 0.040518, - -0.019768, - 0.0031356, - 0.017364, - -0.014201, - -0.086961, - 0.11012, - -0.047129, - -0.0016122, - -0.065785, - 0.048205, - -0.01261, - -0.009449, - -0.041397, - 0.082714, - 0.063733, - -0.0053615, - 0.046509, - 0.0074585, - -0.033846, - -0.03345, - 0.030341, - -0.045315, - 0.031167, - -0.037029, - 0.049981, - -0.011407, - -0.0074256, - 0.015842, - -0.061053, - -0.013327, - 0.061378, - 0.050905, - -0.067033, - 0.05298, - -0.02353, - 0.018268, - -0.02389, - 0.040342, - -0.020735, - 0.019407, - -0.057187, - 0.063867, - -0.074191, - -0.025189, - 0.030346, - 0.034663, - 0.0005805, - 0.073428, - -0.084502, - -0.029115, - 0.021828, - 0.12224, - 0.032247, - -0.030405, - 0.013143, - 0.040839, - -0.0068371, - -0.02647, - 0.08575, - 0.018884, - 0.019506, - -0.086564, - -0.035448, - 0.044831, - -0.021065, - 0.019247, - -0.0036928, - 0.019677, - 0.024709, - -0.051678, - 0.022961, - -0.013656, - 0.02485, - 0.016487, - 0.039122, - -0.026927, - -0.031541, - -0.068956, - 0.083458, - -0.038315, - 0.062214, - -0.017419, - -0.0045592, - 0.032971, - -0.066544, - 0.010234, - 0.019843, - 0.038654, - 0.021993, - -0.02123, - -0.020859, - -0.0020326, - 0.0058817, - -0.065939, - 0.0030852, - -0.038439, - -0.0192, - 0.044518, - 0.0575, - 0.02596, - -0.00024101, - 0.01443, - 0.007306, - 0.030023, - -0.077388, - -0.06181, - 0.0020862, - -0.020049, - 0.028812, - 0.12333, - -0.016568, - -0.012545, - 0.045795, - 0.082263, - -0.038358, - 0.041507, - -0.047214, - 0.033383, - -0.019688, - -0.10818, - -0.073361, - 0.015986, - -0.062069, - -0.023131, - -0.054922, - -0.086468, - -0.0079025, - -0.060028, - 0.0018277, - -0.056214, - 0.015425, - -0.02397, - -0.031682, - 0.00091349, - 0.016841, - 0.028344, - 0.037702, - 0.0051272, - -0.010848, - -0.0251, - 0.020231, - 0.02328, - 0.0023138, - -0.0075493, - -0.01775, - 0.043175, - -0.011409, - 0.063434, - 0.054332, - 0.076227, - -0.092467, - -0.0024921, - -0.016814, - -0.097341, - -0.077228, - 0.064258, - 0.051195, - -0.063495, - -0.0010608, - 0.0081531, - 0.018361, - 0.0037404, - 0.0054929, - 0.028923, - -0.03154, - -0.092852, - -0.064131, - 0.0031835, - -0.037767, - -0.02708, - -0.027892, - -0.037658, - 0.058742, - -0.018867, - 0.04452, - 0.064134, - 0.025127, - -0.0095716, - -0.019332, - 0.061497, - 0.041457, - -0.012627, - 0.0069832, - 0.016119, - 0.039593, - -0.034957, - 0.01066, - -0.041061, - 0.017323, - 0.052421, - 0.065134, - 0.0067139, - 0.040414, - 0.050198, - 0.0024827, - -0.022077, - 0.049521, - 0.012616, - -0.012955, - 0.023769, - -0.018694, - 0.0060213, - 0.07649, - -0.04615, - -0.045287, - -0.023038, - -0.074448, - 0.042444, - -0.059607, - -0.042832, - 0.015664, - 0.018029, - -0.047214, - 0.035135, - -0.029866, - 0.002154, - 0.019479, - 0.0065363, - -0.0053226, - 0.032283, - 0.022397, - -0.017979 - ], - "nation": [ - 0.010591, - -0.091424, - 0.07689, - 0.036054, - -0.026903, - -0.020336, - 0.015573, - -0.10819, - 0.013607, - 0.067362, - -0.045466, - -0.034932, - 0.018909, - 0.044263, - 0.016687, - 0.04095, - 0.08709, - -0.049788, - 0.044836, - 0.037444, - -0.0023813, - -0.00409, - 0.024174, - 0.067763, - 0.028283, - 0.0043841, - -0.007433, - -0.044272, - -0.011458, - -0.031731, - 0.051569, - 0.0098815, - -0.025126, - -0.040957, - -0.024996, - -0.015565, - 0.016974, - 0.057795, - -0.010942, - 0.026253, - -0.037777, - -0.11432, - -0.016016, - -0.022672, - 0.037727, - -0.02486, - -0.08606, - -0.000091426, - -0.050701, - 0.001363, - 0.052491, - 0.033302, - -0.023546, - 0.052264, - -0.039665, - 0.0080121, - 0.045595, - 0.0074878, - -0.024262, - 0.0074387, - -0.026173, - -0.011058, - 0.093189, - -0.069951, - 0.0065172, - -0.066787, - -0.038462, - 0.084361, - 0.089834, - -0.025417, - 0.027805, - -0.029014, - -0.004599, - -0.050045, - 0.0060483, - -0.011429, - -0.0097964, - 0.027932, - 0.075072, - 0.024263, - 0.0035161, - 0.073348, - -0.034704, - 0.083454, - -0.0044308, - -0.0084601, - -0.05583, - -0.067092, - -0.038284, - -0.043989, - -0.006144, - 0.05988, - -0.059291, - 0.0017951, - -0.01548, - 0.097664, - -0.03587, - -0.023208, - 0.097342, - 0.012609, - 0.054904, - -0.020328, - 0.069714, - -0.036108, - -0.0085325, - -0.1346, - -0.012536, - 0.029031, - 0.0051166, - -0.059302, - 0.021856, - 0.030195, - 0.020138, - 0.0078796, - 0.05473, - 0.004104, - -0.0099764, - -0.0092525, - -0.066658, - 0.074178, - -0.019692, - -0.024767, - -0.0053758, - 0.0068999, - 0.014925, - 0.02517, - -0.028798, - -0.15907, - -0.052389, - 0.070959, - -0.038076, - 0.041885, - 0.027181, - 0.011963, - 0.046297, - -0.022926, - 0.027843, - 0.06839, - -0.0024396, - 0.035073, - 0.0072064, - -0.036437, - -0.024442, - -0.012893, - 0.029625, - 0.026086, - -0.0099212, - 0.04484, - 0.035649, - -0.035739, - 0.10594, - 0.037082, - -0.016286, - -0.057692, - 0.059202, - -0.043193, - 0.034158, - 0.013082, - -0.012425, - -0.066485, - 0.021654, - -0.012964, - 0.001322, - 0.014547, - -0.0076872, - -0.0044835, - -0.0061809, - 0.012987, - -0.039659, - -0.032764, - -0.010118, - -0.022918, - -0.036259, - 0.027088, - -0.081196, - 0.054418, - -0.01282, - 0.049605, - -0.052054, - 0.059529, - -0.010287, - 0.018977, - 0.0030228, - -0.010729, - 0.017674, - -0.05151, - -0.017614, - 0.078345, - -0.0099871, - -0.0058234, - 0.072468, - 0.094781, - -0.06524, - -0.026925, - 0.027305, - -0.013692, - 0.029317, - 0.0045246, - -0.034501, - -0.070184, - -0.16924, - 0.019167, - 0.023728, - -0.03501, - -0.045997, - -0.023752, - 0.062144, - -0.05841, - -0.013107, - -0.011206, - 0.077409, - -0.11546, - -0.014297, - 0.055606, - -0.054874, - -0.076141, - 0.091073, - -0.040413, - 0.078975, - 0.0087934, - -0.063885, - 0.0031506, - -0.023827, - 0.093749, - -0.060669, - 0.023591, - -0.006982, - 0.046138, - 0.0027767, - -0.035638, - -0.041207, - -0.0038734, - -0.085877, - -0.010329, - 0.020724, - 0.021303, - -0.011634, - 0.041898, - 0.032312, - -0.0176, - 0.08038, - -0.015029, - 0.039004, - 0.03513, - 0.0084326, - -0.038726, - 0.0099405, - -0.019356, - -0.016204, - -0.054554, - 0.042227, - -0.045478, - 0.056424, - 0.012662, - 0.0080964, - 0.089086, - -0.076598, - 0.070616, - 0.023237, - 0.020824, - -0.047106, - -0.001952, - 0.017656, - -0.046095, - 0.028474, - 0.039139, - 0.060766, - 0.031017, - 0.058448, - 0.040064, - -0.0031793, - 0.069242, - -0.11543, - -0.0021368, - 0.07482, - 0.0017664, - -0.014509, - 0.044308, - -0.013672, - 0.0027734, - 0.029056, - 0.016355, - -0.019113, - -0.00054391, - -0.041867, - 0.03003, - 0.033731, - -0.13773, - 0.0000017047, - 0.0063334, - 0.057009, - 0.022581, - -0.042381, - -0.036442, - -0.038825, - -0.0056371, - 0.057419, - 0.0050927, - -0.0059452, - -0.033424 - ], - "educating": [ - -0.0077233, - -0.077802, - -0.008751, - 0.016479, - -0.022243, - 0.031438, - -0.040361, - -0.083176, - -0.026961, - 0.0070225, - 0.040051, - -0.047275, - 0.013849, - -0.01663, - -0.01897, - -0.015635, - -0.024377, - 0.0040237, - 0.034185, - -0.0043759, - -0.009773, - 0.049433, - 0.054361, - 0.017715, - -0.038, - 0.01842, - 0.0084551, - 0.003109, - 0.076278, - 0.016609, - 0.011572, - -0.059552, - 0.024381, - -0.01199, - 0.03201, - 0.024948, - -0.053196, - -0.054147, - -0.016664, - -0.065205, - 0.022042, - -0.06297, - -0.0020598, - 0.026771, - 0.042099, - -0.042021, - 0.0042768, - 0.021431, - -0.061562, - 0.059983, - -0.043765, - 0.010863, - 0.0017718, - -0.0046006, - -0.067047, - 0.048496, - -0.10195, - 0.043078, - 0.008614, - -0.02919, - 0.044113, - -0.00055434, - 0.023534, - 0.057594, - -0.084714, - -0.015906, - -0.01601, - 0.034522, - 0.074575, - -0.003041, - -0.017015, - -0.053813, - 0.095255, - 0.049585, - 0.0025072, - 0.0065616, - -0.046637, - -0.060353, - -0.016797, - -0.022829, - -0.024334, - 0.015919, - 0.022573, - 0.063844, - -0.049059, - 0.03416, - -0.035135, - -0.0092254, - -0.05654, - -0.057004, - 0.031476, - -0.0054011, - -0.065546, - -0.0096408, - 0.023753, - -0.0039876, - 0.013706, - 0.018133, - 0.071428, - 0.013129, - 0.027662, - -0.017555, - 0.026443, - -0.010584, - -0.0036681, - -0.059846, - 0.043824, - 0.0091377, - -0.062117, - 0.013146, - -0.0012508, - 0.14391, - 0.04447, - -0.0050248, - -0.0037901, - -0.046954, - -0.044011, - -0.012343, - -0.03562, - 0.010723, - -0.037127, - -0.076003, - 0.013442, - -0.00209, - 0.012024, - 0.018498, - 0.010995, - -0.17731, - 0.017334, - 0.067188, - 0.0041015, - 0.068155, - 0.044113, - 0.0092928, - -0.01144, - -0.020599, - -0.0039767, - 0.0037796, - 0.039227, - 0.0046032, - 0.029027, - -0.021453, - -0.0097081, - 0.050434, - -0.079274, - -0.013887, - -0.068834, - 0.056845, - -0.0028086, - -0.0038918, - 0.069863, - -0.0017249, - -0.038942, - -0.077646, - 0.027303, - 0.019476, - 0.058884, - 0.04735, - 0.0066731, - -0.043774, - 0.048835, - 0.029599, - 0.027274, - 0.025954, - -0.0032534, - 0.0024507, - 0.044109, - 0.031926, - -0.027375, - -0.031221, - 0.023497, - -0.0090783, - 0.0034001, - -0.0098061, - -0.0047598, - 0.051843, - 0.048744, - 0.060417, - -0.024767, - -0.010717, - -0.040893, - 0.030122, - -0.050482, - 0.011649, - -0.0086996, - -0.12244, - 0.031461, - 0.14345, - 0.0014644, - -0.0173, - 0.00076937, - 0.032697, - -0.049691, - -0.015725, - 0.04969, - 0.010589, - 0.041247, - 0.02233, - 0.033726, - -0.053526, - -0.11946, - 0.074753, - 0.073192, - 0.064345, - 0.030858, - 0.020499, - -0.031033, - 0.034679, - 0.010528, - 0.020915, - 0.032571, - -0.031795, - 0.059161, - -0.039257, - -0.091128, - 0.023761, - 0.047076, - -0.080247, - 0.050823, - 0.0085544, - -0.031871, - 0.0047713, - -0.019667, - 0.072032, - -0.026615, - -0.026822, - 0.014874, - 0.096053, - 0.022293, - -0.049997, - 0.049083, - 0.0066213, - -0.056317, - 0.012346, - 0.12822, - 0.031173, - 0.00094761, - 0.05057, - -0.0086487, - -0.056293, - 0.027809, - -0.027734, - 0.031421, - -0.032589, - -0.13575, - 0.067593, - -0.0062805, - -0.014059, - -0.028516, - -0.031515, - 0.086991, - 0.026394, - -0.013898, - -0.057566, - 0.030929, - 0.037524, - -0.063609, - 0.08875, - -0.031089, - -0.0056553, - -0.055013, - -0.0114, - 0.025224, - 0.090936, - 0.0082707, - 0.013019, - 0.040193, - 0.034439, - 0.017218, - 0.028451, - -0.017915, - 0.043514, - -0.089155, - 0.0028724, - -0.0076682, - -0.040543, - -0.035969, - 0.046136, - -0.02162, - -0.013607, - 0.010476, - 0.014917, - 0.00074839, - -0.023083, - 0.086388, - 0.0033083, - 0.048704, - -0.033657, - 0.022015, - 0.053461, - -0.020349, - 0.054782, - -0.011401, - -0.012585, - -0.022151, - -0.022772, - -0.0003228, - 0.021387, - 0.01445, - -0.033662 - ], - "terrain": [ - 0.067209, - -0.034342, - 0.052465, - 0.02506, - -0.014757, - 0.0031644, - 0.0018666, - -0.060736, - 0.0006516, - 0.032769, - 0.010021, - -0.070175, - -0.060287, - 0.063383, - -0.054786, - -0.00041341, - 0.099796, - 0.049832, - 0.05781, - -0.026769, - 0.041105, - -0.067717, - 0.063001, - 0.074306, - 0.045926, - 0.011083, - 0.0074516, - 0.016542, - 0.039591, - 0.003928, - -0.04605, - 0.11234, - -0.024647, - -0.047355, - 0.020597, - 0.013637, - 0.083454, - -0.076394, - 0.032719, - -0.0097747, - 0.012491, - -0.13567, - 0.083696, - -0.010815, - -0.027694, - -0.053829, - 0.040861, - -0.016258, - -0.057076, - -0.033869, - 0.012438, - -0.0034657, - 0.0050871, - 0.0050852, - -0.040307, - 0.045244, - 0.015741, - -0.015737, - -0.040159, - 0.000502, - -0.025905, - -0.041633, - 0.1421, - 0.011479, - 0.08001, - -0.080742, - 0.056179, - 0.0040808, - -0.0040807, - 0.084656, - 0.043761, - -0.0022855, - -0.031232, - 0.077454, - 0.0077232, - -0.01678, - -0.035859, - -0.0054293, - -0.08089, - -0.057565, - -0.018897, - 0.0062169, - 0.012856, - 0.047551, - 0.014696, - -0.050582, - 0.013292, - -0.040803, - 0.0022318, - 0.026581, - 0.032965, - -0.023532, - -0.091771, - 0.035918, - -0.017285, - 0.076672, - -0.11234, - 0.01678, - 0.044516, - -0.07335, - 0.12335, - -0.042414, - 0.036613, - -0.0056793, - 0.0019694, - -0.069052, - 0.005706, - 0.082076, - -0.0056835, - 0.027103, - 0.018863, - 0.065974, - 0.11043, - 0.017352, - 0.013712, - -0.02923, - 0.0038572, - 0.048652, - -0.037624, - 0.0065659, - 0.09418, - 0.010088, - -0.023454, - -0.015318, - 0.069293, - -0.00382, - -0.0023116, - -0.065269, - 0.05163, - 0.10242, - -0.0045081, - -0.024987, - 0.003794, - 0.042143, - 0.014323, - -0.050688, - 0.0065849, - 0.050225, - -0.02544, - 0.015738, - -0.10658, - -0.11003, - -0.025386, - 0.0034757, - -0.023179, - 0.066942, - 0.023336, - -0.019033, - -0.015196, - -0.044759, - 0.020971, - 0.025691, - 0.03794, - -0.034817, - 0.10599, - 0.062472, - -0.020578, - 0.019019, - -0.015397, - 0.053657, - 0.036749, - -0.057304, - -0.079261, - -0.0085457, - -0.068909, - -0.015796, - 0.032504, - -0.018292, - 0.053068, - 0.090208, - -0.070656, - -0.01676, - -0.0039919, - 0.0093925, - 0.023963, - 0.075711, - 0.050799, - 0.072109, - -0.094629, - 0.0040586, - -0.0064331, - 0.035295, - -0.074828, - -0.037958, - 0.0090705, - -0.057069, - 0.0024986, - 0.13105, - -0.073325, - -0.02299, - 0.083324, - 0.018242, - -0.0223, - -0.0070326, - -0.036846, - 0.063338, - -0.06963, - 0.01904, - 0.020576, - 0.021645, - -0.126, - -0.049909, - 0.045038, - -0.037462, - 0.027066, - 0.059207, - 0.0086258, - 0.11859, - -0.032683, - 0.0079738, - 0.068233, - -0.022707, - 0.052237, - -0.01795, - 0.11988, - -0.0099709, - 0.025749, - -0.017056, - -0.074361, - -0.096173, - -0.040501, - 0.036316, - -0.044127, - 0.071007, - -0.012114, - -0.050056, - 0.02867, - 0.057704, - -0.089726, - 0.0056222, - -0.042748, - -0.031225, - -0.10591, - -0.0045713, - 0.013995, - 0.02845, - 0.025747, - 0.071294, - 0.003877, - -0.03534, - -0.0087373, - 0.11594, - -0.0057031, - 0.041437, - -0.031669, - 0.069018, - 0.0012613, - -0.035552, - -0.027045, - -0.021308, - 0.0079857, - -0.012223, - 0.028871, - -0.03225, - -0.028904, - 0.10221, - -0.01412, - 0.043615, - 0.054117, - 0.10414, - 0.050161, - 0.065668, - -0.060759, - -0.054886, - -0.020476, - -0.062258, - -0.034566, - 0.010306, - -0.005744, - -0.0018284, - -0.086207, - 0.06647, - -0.11496, - -0.033379, - 0.090116, - -0.065034, - -0.029606, - 0.044347, - 0.018558, - -0.0070121, - 0.093799, - 0.015464, - -0.02131, - 0.012218, - -0.020878, - -0.034549, - -0.031455, - 0.016758, - -0.036661, - -0.0074199, - -0.071636, - -0.098982, - -0.0023917, - -0.0080385, - 0.049245, - -0.0158, - 0.0036154, - 0.042929, - -0.0086562, - -0.048448 - ], - "iPhone": [ - -0.081996, - 0.042173, - -0.0022271, - 0.1362, - -0.010277, - 0.063762, - 0.042325, - -0.059409, - 0.05899, - 0.037077, - -0.018962, - -0.062781, - -0.11479, - -0.030516, - 0.025676, - -0.0086124, - 0.056628, - 0.00018679, - 0.072754, - -0.10917, - 0.090562, - 0.02838, - 0.02751, - 0.045119, - 0.036367, - -0.04755, - 0.071037, - 0.040323, - 0.053172, - -0.0040078, - -0.046282, - -0.11127, - 0.088859, - 0.01201, - 0.045462, - 0.035356, - 0.017035, - -0.049546, - -0.11421, - -0.081135, - -0.030135, - -0.022992, - -0.054907, - -0.046924, - 0.042029, - 0.046333, - -0.11646, - -0.059297, - -0.023101, - -0.051297, - 0.029305, - -0.031491, - 0.0082488, - -0.034606, - -0.048676, - 0.052859, - 0.06418, - 0.016363, - -0.049128, - 0.046171, - -0.048092, - -0.01467, - 0.076078, - 0.11756, - -0.021337, - -0.037137, - 0.023161, - 0.022626, - -0.095063, - 0.037607, - -0.036709, - -0.0068439, - -0.011619, - -0.082192, - -0.1553, - -0.0023388, - 0.052754, - -0.030773, - 0.0099497, - -0.12361, - 0.016524, - -0.027015, - -0.059987, - 0.06608, - 0.029648, - -0.042154, - 0.047277, - -0.06938, - -0.033788, - 0.028852, - 0.021262, - 0.057341, - -0.096401, - -0.0036502, - 0.0010464, - 0.093098, - -0.0054112, - -0.18933, - 0.03005, - 0.07112, - 0.067993, - 0.03496, - 0.014105, - 0.050787, - -0.049037, - -0.08625, - -0.049672, - 0.099566, - 0.011307, - -0.04698, - -0.054715, - 0.095024, - 0.08114, - 0.078299, - -0.022514, - -0.058572, - -0.025293, - 0.012165, - -0.032858, - -0.025469, - 0.0011679, - 0.038365, - 0.027922, - -0.01437, - 0.0073525, - 0.12641, - 0.021807, - -0.10094, - -0.015721, - 0.033397, - 0.0038697, - 0.0022389, - -0.037352, - -0.11077, - 0.093046, - -0.030514, - 0.01827, - 0.021721, - -0.058862, - 0.011527, - 0.054563, - 0.011811, - 0.11006, - -0.018462, - -0.025364, - 0.036033, - -0.077142, - -0.05901, - 0.13154, - -0.019835, - 0.002641, - 0.08687, - 0.064891, - -0.041705, - -0.063766, - 0.086503, - 0.0095146, - -0.052685, - -0.084818, - -0.046193, - 0.027501, - 0.030247, - -0.041306, - -0.015461, - 0.10285, - -0.0045006, - 0.073464, - 0.02148, - -0.0071207, - 0.014236, - -0.051524, - 0.16184, - 0.0039455, - 0.043725, - -0.030781, - 0.045667, - -0.015542, - -0.07915, - -0.016389, - -0.04099, - 0.032467, - -0.07368, - -0.024647, - -0.032703, - -0.02937, - 0.0023174, - -0.014516, - 0.093217, - 0.017251, - 0.059515, - -0.0052713, - 0.041631, - -0.041657, - -0.012208, - 0.0094239, - -0.11134, - 0.024398, - 0.048949, - 0.071285, - 0.027069, - -0.12961, - 0.14375, - -0.05559, - 0.015036, - -0.058083, - 0.081263, - -0.0093139, - -0.0015429, - -0.051669, - -0.046074, - 0.16796, - -0.052465, - -0.0013673, - 0.041634, - 0.02358, - 0.043309, - -0.043073, - 0.013549, - 0.022685, - -0.024216, - 0.06896, - -0.022475, - 0.050757, - 0.10762, - -0.0069675, - -0.042732, - 0.017454, - 0.054104, - -0.051189, - -0.050875, - 0.028609, - -0.092314, - -0.038925, - 0.049665, - 0.048951, - 0.063426, - -0.023479, - -0.069909, - 0.11031, - -0.014618, - 0.016615, - 0.018185, - 0.043647, - -0.033559, - 0.024594, - -0.035339, - 0.043669, - -0.054757, - -0.08123, - -0.0060691, - -0.010328, - -0.019126, - -0.10556, - 0.088745, - 0.048439, - -0.053768, - -0.0049431, - -0.0075528, - 0.026476, - 0.057597, - -0.035417, - 0.10102, - 0.036328, - -0.056603, - 0.10666, - -0.021813, - -0.039369, - 0.0032628, - 0.063897, - 0.043878, - 0.024774, - 0.082514, - -0.13081, - 0.025761, - -0.02281, - -0.046758, - -0.06388, - -0.0038987, - 0.030505, - -0.027387, - 0.078227, - -0.053175, - 0.057685, - -0.034244, - 0.0037009, - -0.10587, - -0.1244, - -0.027831, - -0.055557, - -0.012117, - -0.068005, - -0.072863, - -0.084988, - 0.030904, - -0.043203, - 0.011641, - -0.029064, - 0.041332, - 0.059001, - -0.054759 - ], - "legendary": [ - -0.023234, - -0.059077, - 0.028652, - 0.033624, - -0.018172, - -0.062961, - -0.020385, - -0.074556, - 0.061025, - 0.036806, - -0.014742, - 0.025991, - 0.011602, - 0.039684, - 0.023013, - 0.017526, - 0.063356, - -0.05161, - 0.041381, - 0.035543, - 0.0434, - 0.075239, - -0.03221, - 0.085487, - 0.030431, - -0.025829, - -0.015013, - -0.012167, - 0.079463, - 0.010574, - -0.0064942, - -0.0079618, - 0.015562, - -0.045353, - 0.0047505, - 0.056486, - -0.019376, - 0.01427, - 0.0045883, - 0.04594, - 0.052181, - -0.11472, - 0.035821, - 0.030603, - 0.034249, - 0.069981, - 0.034821, - -0.019793, - -0.048514, - 0.0161, - -0.0072667, - 0.064871, - -0.0066296, - -0.012848, - 0.044948, - 0.039106, - -0.010498, - 0.018241, - -0.042407, - -0.01473, - 0.0033211, - -0.046969, - 0.088271, - -0.014118, - 0.03793, - 0.001408, - -0.048381, - 0.017653, - 0.028604, - -0.019565, - 0.020767, - -0.020997, - -0.033051, - 0.010986, - 0.017039, - 0.055809, - -0.024426, - -0.051434, - 0.0048124, - -0.0065264, - 0.005909, - 0.033729, - -0.010363, - 0.070527, - 0.038219, - -0.055403, - -0.040946, - -0.0086929, - 0.02881, - -0.050078, - -0.03015, - -0.03272, - -0.062577, - -0.038553, - 0.021246, - 0.084313, - -0.0040096, - 0.020886, - 0.0088621, - 0.023499, - 0.016719, - -0.038605, - 0.040234, - 0.02013, - -0.062849, - -0.040701, - 0.015984, - -0.015002, - -0.0039453, - 0.062976, - -0.00017937, - 0.034274, - 0.033264, - -0.030221, - -0.016726, - 0.046533, - 0.010975, - 0.050409, - -0.021239, - 0.018842, - 0.026174, - -0.019635, - -0.018392, - -0.062315, - 0.02046, - -0.00094615, - 0.024925, - -0.0013218, - -0.004526, - 0.086185, - 0.0037225, - 0.02475, - -0.079306, - -0.056653, - 0.013178, - -0.033257, - 0.021271, - 0.097736, - -0.0021482, - -0.02994, - -0.01523, - -0.01633, - 0.031874, - 0.052352, - -0.027111, - -0.053191, - 0.031799, - 0.00013363, - -0.049491, - -0.028631, - -0.0081094, - 0.070902, - -0.0009411, - -0.036538, - -0.031676, - -0.02975, - 0.025211, - 0.073161, - -0.0014467, - 0.0075942, - 0.024038, - 0.05784, - -0.05777, - 0.030959, - -0.016607, - -0.0081, - 0.00145, - 0.0038383, - -0.01612, - 0.024499, - 0.014683, - -0.032497, - -0.018285, - 0.027863, - 0.057929, - 0.031018, - 0.025698, - 0.043261, - -0.011652, - 0.031935, - 0.0025805, - 0.017673, - 0.00037947, - -0.015025, - 0.011704, - -0.013493, - -0.047324, - 0.089325, - 0.038909, - 0.021651, - 0.037232, - 0.08298, - -0.068745, - 0.0084571, - -0.036406, - 0.028664, - 0.038366, - 0.024015, - 0.029734, - 0.012779, - -0.13533, - 0.049524, - -0.088064, - -0.028261, - -0.0092578, - 0.0029034, - -0.0087177, - 0.021413, - -0.0089002, - 0.0020765, - 0.13101, - 0.013172, - 0.016441, - 0.047603, - -0.01137, - -0.0065734, - -0.012956, - -0.0021951, - -0.039251, - 0.021891, - 0.015502, - -0.026826, - 0.027457, - 0.090471, - 0.026268, - 0.014886, - 0.056826, - 0.048152, - -0.055697, - -0.037753, - -0.017811, - 0.00013646, - -0.045023, - -0.0097069, - 0.0016779, - -0.013661, - -0.051244, - -0.00061541, - 0.04492, - 0.074208, - 0.066549, - -0.00044626, - -0.0087852, - -0.046804, - -0.063702, - 0.0056315, - -0.005674, - -0.012271, - -0.055803, - -0.0079084, - 0.0101, - -0.015784, - 0.0075105, - 0.048004, - 0.041158, - 0.031026, - -0.038211, - 0.00986, - 0.059159, - 0.045738, - 0.047416, - -0.0087259, - 0.023623, - 0.0063465, - -0.0038782, - 0.0029619, - 0.013488, - -0.073945, - 0.020917, - -0.087757, - -0.009113, - 0.06619, - -0.090751, - -0.022157, - 0.070246, - -0.063001, - -0.051892, - 0.0071746, - -0.046688, - 0.0062107, - 0.17275, - -0.0054771, - -0.010554, - -0.0067504, - 0.011369, - -0.051381, - -0.0099459, - -0.038059, - -0.043917, - -0.0085055, - 0.031051, - 0.0088982, - -0.0011516, - -0.034687, - 0.029252, - 0.012882, - 0.053014, - 0.048756, - -0.02434, - -0.011286 - ], - "chronicling": [ - -0.016613, - -0.10439, - 0.063336, - 0.050746, - 0.0014602, - -0.02191, - -0.035322, - -0.088453, - 0.018693, - 0.035754, - 0.01076, - -0.092718, - -0.0029584, - 0.037471, - 0.017264, - -0.0012343, - 0.03403, - -0.053635, - 0.0112, - 0.029343, - 0.019683, - 0.054251, - -0.039006, - 0.04172, - -0.019871, - 0.0093459, - -0.01657, - 0.029337, - 0.066339, - 0.012682, - -0.025337, - -0.030939, - 0.0063428, - -0.020994, - 0.0037922, - 0.019793, - 0.012706, - 0.053973, - -0.0075, - -0.022251, - 0.0080218, - -0.03674, - 0.033467, - 0.068775, - 0.016816, - 0.038416, - 0.020963, - 0.0097606, - -0.02109, - 0.009263, - -0.027881, - -0.0040001, - -0.026746, - 0.018488, - -0.022551, - -0.0026556, - -0.036116, - -0.012074, - -0.025632, - -0.010839, - 0.023844, - -0.015588, - 0.014356, - -0.049301, - 0.054678, - -0.038792, - -0.016006, - 0.074609, - 0.05016, - 0.049051, - -0.017054, - 0.012045, - 0.074986, - 0.0010422, - 0.028664, - 0.055316, - 0.0035202, - -0.038452, - 0.010099, - -0.024098, - 0.00093784, - -0.0019453, - -0.034803, - 0.011838, - -0.024732, - -0.00798, - 0.011706, - -0.00049556, - 0.053155, - 0.040802, - 0.012064, - -0.0059356, - -0.051541, - -0.068801, - 0.019156, - 0.01532, - -0.0074119, - 0.017307, - 0.080384, - -0.005982, - -0.030563, - -0.011057, - -0.0073816, - 0.012678, - 0.040173, - -0.023876, - 0.019043, - -0.020932, - 0.0056174, - 0.052152, - 0.012751, - 0.010288, - 0.011461, - -0.0057906, - -0.033513, - 0.020776, - 0.015399, - 0.0018444, - -0.032787, - 0.0001851, - -0.014139, - -0.039673, - 0.065695, - 0.025489, - 0.03351, - -0.028607, - 0.019632, - -0.087058, - 0.056575, - 0.084367, - 0.036719, - 0.027125, - 0.0020859, - -0.025587, - 0.057684, - -0.040882, - 0.011888, - 0.0173, - 0.054803, - -0.036327, - 0.037633, - -0.027228, - 0.00061844, - 0.012211, - -0.05275, - -0.018809, - -0.0064236, - -0.0083008, - 0.015662, - -0.027119, - 0.02596, - -0.0030823, - -0.010395, - -0.083966, - -0.012811, - -0.0082396, - 0.018419, - 0.072123, - 0.016283, - -0.019951, - -0.00059959, - 0.061916, - -0.03281, - 0.010041, - -0.078536, - 0.030473, - 0.013799, - 0.011085, - 0.021442, - -0.0010366, - 0.039387, - 0.020239, - 0.024494, - 0.023036, - 0.00052376, - 0.00068421, - -0.042631, - -0.021176, - -0.022905, - 0.01344, - -0.0096766, - -0.00025988, - -0.021592, - -0.010701, - -0.016261, - -0.050133, - 0.064036, - 0.085535, - -0.016865, - -0.019145, - 0.010184, - -0.027736, - -0.033283, - -0.0036222, - -0.026492, - 0.014351, - -0.017716, - 0.0020903, - 0.017127, - 0.0047252, - -0.11026, - 0.072497, - 0.024679, - -0.03882, - -0.020341, - 0.031496, - -0.020475, - 0.059383, - 0.019911, - -0.021476, - 0.055164, - 0.021171, - -0.0089287, - 0.007843, - 0.047305, - -0.018835, - -0.0045415, - -0.016194, - 0.026653, - 0.028942, - 0.0011685, - 0.003655, - 0.00011122, - 0.060414, - -0.0461, - 0.011638, - 0.078073, - 0.069117, - -0.049181, - 0.0091915, - 0.012554, - -0.051019, - -0.0098713, - 0.050978, - 0.08195, - 0.015676, - 0.040304, - 0.015241, - 0.022386, - 0.00067631, - 0.093853, - 0.015103, - -0.0049193, - -0.03832, - -0.13985, - -0.043484, - -0.022917, - -0.023038, - -0.0099921, - -0.003286, - 0.027674, - -0.010402, - 0.043942, - -0.0021018, - -0.011987, - 0.0062364, - -0.0087548, - 0.051305, - 0.059252, - 0.044687, - -0.013537, - 0.023152, - 0.014652, - 0.040427, - 0.063677, - -0.0619, - -0.016151, - 0.060694, - 0.046969, - -0.013641, - 0.025224, - 0.056244, - -0.083719, - 0.03209, - -0.019581, - -0.081996, - -0.037621, - -0.0046004, - 0.000041673, - 0.035514, - 0.033279, - 0.018483, - 0.047018, - -0.0070139, - 0.018354, - -0.0081967, - -0.035791, - 0.005579, - -0.050629, - 0.032103, - 0.031676, - 0.029351, - -0.019134, - -0.0058851, - -0.028624, - -0.010059, - 0.0045879, - 0.051451, - 0.020583, - 0.049903 - ], - "schools": [ - 0.061629, - -0.090555, - 0.066885, - 0.0030515, - -0.045286, - -0.065725, - 0.0052641, - -0.090652, - 0.07628, - -0.026531, - 0.029349, - -0.10896, - 0.034482, - 0.039302, - 0.028509, - 0.009697, - 0.13508, - 0.035429, - 0.070688, - 0.040274, - -0.01718, - 0.0019764, - -0.0091662, - 0.092901, - -0.059345, - 0.035337, - 0.016777, - -0.016588, - 0.041569, - 0.061853, - 0.021439, - 0.0031618, - -0.029362, - -0.022005, - 0.049347, - 0.059828, - 0.065234, - -0.040294, - 0.036778, - -0.032384, - -0.013207, - -0.099644, - 0.0068215, - 0.067454, - 0.048577, - -0.06351, - -0.020746, - 0.031057, - -0.016249, - 0.02247, - -0.047557, - 0.031509, - 0.013266, - -0.01442, - -0.099039, - 0.05882, - -0.023633, - 0.00036811, - -0.0040685, - -0.021295, - 0.021927, - -0.025846, - 0.11322, - 0.043376, - 0.056274, - -0.060029, - -0.03798, - -0.048794, - 0.040106, - -0.024757, - -0.0536, - -0.067002, - 0.059921, - -0.0065878, - -0.014645, - -0.071077, - 0.084407, - -0.032666, - 0.0085214, - 0.057133, - -0.02171, - 0.015705, - -0.051006, - 0.045439, - -0.054761, - 0.046991, - -0.082849, - -0.036493, - -0.023539, - -0.0098382, - -0.026683, - 0.0046668, - -0.084035, - 0.05354, - -0.015233, - 0.072739, - 0.00025037, - 0.027931, - 0.0059596, - 0.042337, - 0.094451, - -0.0014602, - 0.055338, - -0.018985, - 0.10475, - -0.072586, - 0.055611, - 0.027899, - 0.00047107, - 0.094509, - 0.043861, - 0.11205, - 0.061321, - 0.10595, - 0.013894, - -0.040267, - -0.031078, - -0.0032339, - -0.033516, - -0.034287, - -0.048951, - -0.058066, - 0.004486, - -0.045808, - 0.047265, - -0.0016722, - -0.085983, - -0.097535, - -0.056899, - 0.10697, - -0.02587, - 0.17114, - 0.052234, - 0.0353, - 0.015187, - 0.021588, - -0.013225, - 0.034423, - 0.0013658, - -0.011822, - 0.055184, - -0.013714, - 0.023971, - -0.0037642, - 0.010562, - -0.071022, - 0.014021, - -0.010409, - -0.021013, - -0.015954, - 0.053929, - 0.096922, - 0.0013442, - -0.0090151, - 0.055358, - 0.041134, - 0.037747, - 0.052115, - -0.032386, - 0.023809, - 0.030885, - -0.04647, - 0.057653, - -0.0013323, - 0.013739, - 0.037916, - 0.1206, - 0.052532, - 0.043648, - -0.084122, - 0.034004, - -0.023911, - -0.009912, - 0.032897, - 0.024952, - 0.060781, - -0.020646, - 0.062248, - -0.042566, - -0.037541, - 0.06836, - -0.057472, - 0.0079723, - -0.017239, - 0.042482, - -0.024787, - -0.0090481, - 0.11196, - -0.011307, - -0.025377, - -0.045846, - 0.081536, - -0.10179, - -0.030223, - 0.029133, - -0.018263, - 0.073352, - 0.0092742, - 0.081839, - -0.059079, - -0.1655, - 0.020612, - -0.012765, - 0.062438, - 0.010211, - -0.00096038, - 0.011253, - -0.038382, - 0.013082, - -0.032296, - 0.071245, - -0.013689, - 0.030547, - 0.049874, - -0.079956, - -0.011722, - 0.019017, - -0.064214, - -0.0081398, - -0.025699, - 0.025653, - -0.033543, - -0.020578, - 0.10603, - 0.0072092, - -0.069099, - -0.0106, - 0.045924, - 0.020352, - -0.015566, - -0.0091399, - 0.0016098, - -0.075626, - 0.014744, - 0.011434, - 0.094741, - 0.047488, - 0.0016703, - -0.072157, - 0.034703, - -0.0017893, - -0.094618, - 0.074371, - -0.042974, - 0.051514, - 0.097111, - 0.0089667, - -0.034592, - -0.066907, - -0.013582, - -0.021239, - -0.030301, - -0.014958, - -0.083937, - -0.053935, - 0.025577, - -0.066071, - 0.023083, - -0.017004, - 0.021819, - 0.0018475, - -0.016888, - 0.032473, - -0.062656, - -0.015099, - 0.077911, - 0.028028, - -0.010862, - 0.013801, - 0.072252, - -0.0032014, - 0.056724, - -0.1365, - -0.039605, - 0.0079921, - 0.0053869, - -0.019836, - -0.010805, - 0.0023787, - 0.00067886, - 0.0068249, - -0.029573, - 0.014411, - -0.018814, - 0.0061547, - 0.026437, - 0.010765, - -0.076578, - -0.014811, - 0.021983, - -0.010618, - -0.00091237, - 0.0035296, - 0.014455, - -0.013654, - 0.02071, - 0.033918, - 0.0062542, - 0.01588, - -0.018902 - ], - "judaism": [ - 0.014433, - -0.095578, - 0.081835, - -0.057161, - -0.018698, - 0.024468, - 0.013036, - -0.062112, - 0.033924, - -0.11258, - 0.0020643, - -0.068095, - 0.017247, - -0.076631, - 0.079316, - -0.019653, - 0.18954, - -0.062539, - 0.038529, - 0.0037877, - -0.090739, - 0.096291, - 0.024051, - 0.022824, - 0.0099075, - 0.017979, - 0.058276, - 0.01279, - 0.0092685, - 0.045194, - 0.044037, - 0.010095, - -0.020644, - 0.028291, - 0.0044319, - 0.052727, - -0.018134, - -0.013493, - -0.015251, - 0.020252, - -0.0077013, - -0.10471, - -0.055001, - -0.047744, - -0.0089468, - -0.03945, - -0.014277, - -0.02035, - 0.0057168, - -0.11721, - -0.010172, - -0.07746, - -0.018764, - -0.023203, - -0.072709, - -0.055705, - 0.023509, - -0.023286, - -0.036327, - -0.0078973, - -0.0040375, - 0.013985, - 0.084541, - -0.032542, - 0.0022644, - 0.027769, - 0.062742, - 0.0022406, - 0.042967, - -0.060315, - 0.060285, - -0.038206, - -0.014787, - -0.004983, - -0.082194, - -0.061413, - -0.00060039, - 0.0075643, - 0.07567, - 0.10201, - 0.026944, - 0.040289, - -0.06709, - 0.10848, - -0.03678, - -0.031534, - -0.03697, - 0.019525, - -0.054712, - 0.082326, - 0.016163, - 0.095669, - -0.050707, - 0.075906, - 0.065668, - 0.048295, - -0.030769, - -0.087175, - 0.0015088, - -0.071231, - -0.030536, - -0.033822, - 0.059239, - 0.0027466, - -0.024708, - -0.041774, - 0.036748, - -0.0032582, - -0.051356, - 0.082795, - -0.012677, - 0.065383, - 0.030405, - -0.019786, - 0.011063, - 0.024992, - 0.0079033, - -0.050274, - -0.056409, - 0.033976, - -0.10099, - -0.020975, - 0.055786, - -0.0032674, - 0.019065, - -0.049827, - -0.032312, - 0.017608, - -0.029, - 0.11196, - 0.026576, - -0.0048344, - 0.039246, - 0.025034, - -0.061394, - 0.025734, - 0.020112, - 0.02056, - 0.027844, - -0.19029, - 0.014892, - 0.02397, - -0.0062231, - 0.12629, - -0.027218, - -0.0091641, - -0.055787, - 0.040288, - -0.057722, - -0.017974, - 0.027544, - 0.046452, - -0.035962, - -0.057898, - -0.038249, - 0.031457, - 0.0073138, - -0.11385, - 0.061414, - 0.058553, - 0.022137, - 0.051658, - -0.074487, - -0.048389, - 0.059931, - -0.01882, - 0.06513, - 0.06182, - -0.065441, - -0.027571, - 0.0084863, - -0.082403, - -0.0073197, - 0.037627, - -0.0092342, - 0.072309, - 0.026875, - -0.037701, - -0.0056649, - -0.13476, - -0.018924, - 0.039735, - -0.054263, - 0.054343, - 0.014572, - -0.034675, - 0.051332, - 0.12106, - -0.048783, - -0.076374, - -0.058672, - 0.10794, - -0.084791, - 0.090905, - 0.060405, - 0.046337, - -0.11377, - -0.014379, - -0.054147, - 0.021785, - -0.16674, - -0.036953, - 0.013105, - -0.09584, - -0.034088, - 0.012885, - 0.13059, - -0.0308, - 0.012108, - -0.0058506, - 0.05963, - -0.015839, - 0.025065, - 0.0055639, - 0.035691, - 0.10605, - -0.027677, - 0.024186, - 0.069463, - -0.021444, - -0.029148, - 0.062944, - -0.020099, - 0.093117, - -0.034974, - 0.024431, - 0.061077, - 0.13586, - -0.0075484, - -0.042409, - 0.036136, - -0.011957, - -0.071613, - -0.032704, - 0.094391, - -0.051201, - 0.0024414, - 0.11402, - -0.07204, - 0.026023, - 0.015316, - -0.014327, - -0.025017, - -0.060212, - 0.031507, - 0.058732, - 0.076957, - -0.038414, - -0.0035189, - -0.0061975, - 0.043788, - -0.11649, - -0.10417, - 0.056853, - -0.01236, - -0.023226, - -0.033809, - 0.021851, - 0.025541, - -0.011837, - 0.074137, - 0.029995, - 0.121, - -0.0049995, - 0.017987, - -0.028265, - 0.028167, - 0.035447, - 0.056643, - 0.042469, - 0.041715, - 0.057096, - -0.018826, - -0.036952, - -0.03332, - -0.0064002, - -0.016091, - -0.020268, - -0.047831, - -0.10852, - 0.087433, - -0.0079466, - 0.025351, - -0.049803, - -0.046446, - 0.040931, - 0.083342, - -0.0040845, - -0.021718, - 0.0066039, - 0.017398, - 0.0093912, - 0.014325, - -0.068178, - 0.049658, - -0.012842, - 0.034222, - 0.085296, - -0.019303, - -0.038631 - ], - "strategic": [ - 0.036547, - -0.084712, - -0.07777, - 0.011473, - -0.03691, - 0.0026715, - -0.039186, - -0.0898, - -0.033903, - 0.075008, - 0.046752, - -0.087291, - 0.03345, - 0.060205, - -0.0025263, - -0.0080762, - 0.043155, - -0.032378, - 0.060979, - -0.003338, - -0.051227, - 0.035959, - 0.03719, - 0.083173, - -0.052233, - 0.0073531, - -0.012591, - -0.031079, - 0.024392, - -0.017484, - 0.013954, - 0.015065, - -0.039504, - -0.12741, - 0.030346, - 0.038753, - 0.0039831, - 0.027711, - 0.054908, - 0.0037492, - -0.02663, - -0.092795, - -0.013137, - -0.021812, - 0.01975, - -0.052655, - 0.03601, - -0.043123, - -0.025137, - 0.024561, - 0.034046, - -0.071084, - -0.043536, - -0.0030416, - 0.024135, - 0.0075714, - 0.023468, - 0.025596, - -0.0078548, - 0.066442, - -0.027867, - -0.028983, - 0.090504, - -0.019132, - 0.033029, - -0.02633, - -0.011787, - 0.014005, - 0.046758, - -0.010447, - 0.042446, - -0.018366, - -0.0084233, - 0.045543, - -0.018743, - -0.019989, - 0.026239, - -0.086625, - -0.0036551, - -0.026057, - -0.023755, - 0.024734, - -0.055748, - 0.032371, - -0.020696, - 0.031057, - 0.0058709, - 0.011452, - 0.035192, - -0.030121, - 0.04985, - -0.0183, - -0.09799, - 0.00092958, - 0.022358, - 0.025562, - -0.045058, - -0.027203, - -0.027224, - 0.011648, - 0.024839, - 0.023019, - 0.0015792, - -0.0080763, - -0.0038395, - -0.087318, - -0.0054556, - 0.061025, - -0.058648, - 0.019224, - -0.0030861, - 0.048032, - 0.049794, - 0.024682, - -0.025583, - -0.022392, - -0.018212, - 0.022099, - -0.039372, - 0.041064, - -0.0066541, - -0.038961, - 0.0030825, - -0.022735, - 0.092017, - 0.047126, - -0.01651, - -0.041875, - 0.016607, - 0.072219, - 0.0096187, - -0.009085, - 0.011398, - 0.01843, - -0.021619, - 0.022103, - 0.012033, - 0.046122, - -0.042161, - 0.056781, - 0.00052769, - -0.063025, - -0.028941, - 0.0057947, - -0.044948, - -0.021715, - 0.073413, - -0.0066862, - 0.013672, - 0.040629, - 0.024409, - 0.1529, - 0.047946, - -0.080198, - 0.0070455, - -0.0066898, - -0.023937, - -0.043216, - 0.012951, - 0.032652, - 0.061414, - -0.0039726, - -0.076378, - 0.0078425, - -0.044935, - 0.061879, - 0.023764, - -0.033643, - 0.020988, - -0.0098129, - 0.052445, - 0.019588, - -0.061979, - -0.0047584, - -0.036178, - 0.055483, - 0.0014051, - 0.0062449, - -0.049381, - 0.049211, - 0.054377, - 0.0046769, - 0.0079694, - -0.0062384, - -0.015173, - -0.02881, - -0.029192, - 0.083336, - -0.005042, - 0.0068632, - -0.01397, - 0.053028, - 0.10797, - -0.014519, - 0.00036662, - -0.0034883, - 0.0030254, - 0.019487, - -0.0022169, - 0.015573, - -0.12672, - 0.059257, - -0.016231, - 0.036467, - -0.063125, - 0.010022, - -0.054218, - 0.013652, - 0.0054746, - -0.0072476, - 0.10957, - 0.019399, - -0.016542, - 0.011131, - 0.017808, - 0.030311, - 0.033106, - -0.03801, - -0.068704, - -0.048009, - -0.026385, - 0.0011439, - 0.028926, - 0.083427, - 0.016966, - -0.028371, - 0.020218, - 0.05574, - 0.032017, - -0.021684, - -0.021012, - -0.064439, - -0.044547, - -0.010822, - -0.022403, - -0.0085027, - -0.0026867, - -0.022373, - -0.031537, - 0.0059819, - 0.05749, - 0.021123, - -0.00049341, - 0.043897, - -0.16467, - 0.017015, - -0.05841, - -0.00024545, - 0.062325, - -0.0015518, - -0.010429, - -0.034918, - 0.0065514, - -0.019978, - -0.0088292, - 0.017402, - 0.005005, - 0.034746, - 0.069522, - 0.054689, - -0.00011104, - 0.044152, - -0.025297, - 0.010866, - 0.0098185, - 0.030063, - -0.015256, - -0.0039656, - 0.013343, - -0.0061419, - -0.019466, - 0.073284, - -0.097088, - -0.03365, - 0.052843, - -0.12104, - 0.024757, - 0.020858, - -0.024847, - -0.023543, - 0.16001, - -0.029237, - -0.026416, - 0.009442, - 0.0039869, - -0.033139, - -0.017146, - 0.0019421, - -0.032876, - -0.049607, - -0.0098165, - 0.027057, - 0.0050473, - 0.031832, - 0.062471, - -0.044833, - -0.010082, - 0.0059341, - -0.044919, - -0.0053758 - ], - "provision": [ - 0.044981, - 0.00015454, - -0.029245, - -0.025043, - -0.0066073, - 0.0089031, - 0.0070457, - -0.091666, - -0.040647, - -0.023458, - -0.035936, - -0.035691, - 0.016294, - -0.020138, - 0.0018281, - 0.040369, - 0.051995, - 0.021721, - 0.044474, - 0.0075104, - -0.01501, - -0.063952, - 0.027464, - 0.013963, - 0.0016664, - -0.0098087, - -0.038034, - -0.00086756, - 0.055146, - -0.054891, - 0.0030588, - -0.034719, - -0.072717, - -0.091415, - 0.024908, - -0.011362, - 0.054834, - -0.009996, - 0.00072697, - 0.028966, - -0.022501, - -0.090575, - 0.037707, - -0.0014123, - -0.027666, - -0.01815, - -0.018295, - -0.019257, - -0.0080457, - 0.049055, - -0.044564, - 0.0043942, - 0.037709, - -0.0013348, - -0.045803, - 0.0086015, - -0.03603, - -0.028303, - -0.0045612, - -0.031673, - -0.03287, - 0.023788, - 0.071853, - 0.037794, - 0.023664, - -0.02859, - -0.025665, - -0.032053, - 0.002825, - 0.00026219, - -0.0079981, - -0.0062804, - -0.030353, - 0.018498, - -0.022514, - -0.027037, - 0.032168, - -0.071546, - -0.02697, - 0.017592, - -0.0013801, - -0.020417, - 0.0057864, - 0.042325, - -0.010174, - 0.078462, - 0.0036734, - -0.018258, - -0.025791, - -0.000044652, - 0.025088, - -0.023119, - -0.070148, - -0.037216, - -0.027135, - 0.025446, - -0.0022629, - 0.036568, - -0.03237, - 0.0021627, - -0.029951, - -0.034097, - 0.010456, - 0.011633, - -0.043871, - -0.052752, - 0.031376, - 0.039153, - -0.0034665, - -0.0075426, - -0.021403, - 0.031874, - 0.047521, - 0.011225, - 0.0057379, - 0.011718, - 0.024441, - -0.0067773, - -0.067784, - -0.0050741, - 0.0032786, - 0.056004, - 0.023664, - -0.016929, - 0.047614, - 0.018982, - -0.0098194, - -0.018354, - 0.066597, - 0.10857, - -0.0081573, - -0.025054, - -0.080612, - 0.020446, - 0.0054061, - 0.0054958, - -0.018079, - -0.0086951, - 0.015439, - 0.0026322, - 0.0066392, - 0.0020834, - 0.0071604, - -0.007186, - -0.043264, - 0.0034364, - -0.0016384, - 0.01379, - -0.0017111, - 0.049459, - 0.021728, - 0.011892, - 0.02968, - -0.097176, - 0.074086, - 0.034326, - -0.050641, - -0.012252, - -0.038482, - -0.017937, - 0.051327, - -0.024696, - -0.046069, - 0.040834, - 0.01728, - -0.017752, - 0.081411, - -0.0092357, - 0.024696, - -0.014185, - 0.02447, - -0.0030881, - -0.0048782, - 0.039479, - -0.025919, - 0.020278, - -0.00051221, - 0.055402, - -0.043369, - -0.0020481, - -0.030381, - -0.02936, - 0.027264, - -0.023469, - -0.017356, - -0.022769, - 0.010327, - 0.056156, - 0.0023147, - 0.030981, - -0.033677, - 0.10119, - -0.03647, - -0.038003, - -0.030803, - -0.03285, - 0.033805, - 0.0060508, - -0.00086432, - -0.025555, - -0.11326, - 0.038703, - -0.012499, - 0.0088511, - -0.026865, - 0.0025632, - -0.0054274, - -0.042385, - -0.020214, - -0.034536, - 0.06812, - -0.0024471, - 0.013949, - 0.0096695, - -0.0072118, - 0.032067, - 0.023402, - -0.0055426, - -0.029201, - -0.035054, - 0.040202, - -0.0097673, - 0.066517, - 0.10441, - 0.057425, - 0.0024467, - 0.034419, - 0.020075, - 0.011915, - 0.0013466, - -0.055158, - -0.07554, - -0.015534, - -0.047994, - 0.021484, - -0.0078092, - -0.0080116, - 0.0137, - -0.0070708, - 0.017796, - 0.067196, - -0.01563, - 0.020015, - 0.0037842, - -0.022585, - 0.086727, - -0.021101, - 0.027545, - -0.021707, - 0.0029537, - 0.066953, - 0.0082949, - 0.027827, - 0.030664, - 0.021866, - -0.0033262, - 0.029851, - 0.046602, - -0.036804, - 0.038865, - 0.0095375, - -0.056491, - -0.053637, - -0.033519, - 0.04249, - 0.017304, - -0.034749, - -0.025518, - 0.0089019, - 0.0175, - 0.011402, - 0.065868, - -0.096884, - -0.02361, - -0.0095548, - 0.0090019, - 0.03684, - 0.048069, - -0.039279, - -0.01298, - 0.064761, - -0.011705, - -0.0062398, - 0.018713, - -0.036259, - 0.031557, - -0.042732, - 0.077785, - 0.037963, - 0.033789, - 0.048898, - -0.0028305, - 0.04461, - -0.045033, - -0.021467, - -0.011944, - -0.0080549, - -0.029246, - 0.0050155, - -0.01177 - ], - "literacy": [ - -0.079672, - -0.055435, - -0.015739, - 0.0027057, - -0.048817, - 0.026491, - -0.025352, - -0.073656, - 0.096815, - 0.018351, - 0.11349, - -0.030683, - -0.0060683, - -0.025258, - 0.010544, - 0.020458, - 0.11127, - 0.042016, - 0.032737, - -0.0073631, - -0.10744, - -0.029175, - 0.024101, - 0.057202, - -0.082229, - -0.016318, - -0.0059884, - 0.0361, - 0.043733, - -0.0066922, - 0.041034, - 0.048166, - 0.03057, - -0.065397, - 0.024284, - 0.077302, - 0.050656, - -0.022104, - -0.10799, - -0.014303, - -0.041105, - -0.11714, - 0.027567, - 0.053909, - 0.12824, - -0.037682, - -0.049569, - 0.048111, - -0.014596, - 0.036572, - -0.0086939, - 0.08423, - -0.0084104, - -0.039823, - -0.023739, - 0.10442, - 0.011207, - -0.056989, - 0.0031047, - -0.0017216, - -0.0082523, - -0.076061, - 0.05297, - 0.059787, - 0.048468, - -0.032607, - -0.023294, - 0.0058056, - 0.030899, - -0.056085, - -0.057373, - -0.047536, - 0.021517, - 0.02682, - -0.0026647, - 0.011484, - -0.019194, - -0.0054335, - 0.0021713, - -0.00097765, - -0.044639, - 0.013154, - -0.10583, - 0.010954, - -0.039682, - 0.041558, - -0.047545, - 0.0079175, - -0.029229, - 0.049914, - 0.012937, - 0.046873, - -0.090081, - -0.012679, - -0.052413, - 0.04617, - 0.045304, - 0.060247, - -0.065999, - 0.0075814, - 0.038825, - -0.033104, - -0.032517, - -0.047273, - -0.0020174, - -0.047854, - 0.029441, - 0.059131, - 0.010156, - -0.064705, - 0.0058946, - 0.084134, - 0.054103, - -0.0093435, - -0.10854, - -0.022259, - -0.004508, - -0.0094006, - -0.027363, - -0.01414, - 0.013889, - -0.039548, - 0.0083988, - -0.024754, - 0.067651, - 0.0010973, - -0.0039112, - -0.090519, - -0.065797, - 0.09684, - 0.043024, - -0.082046, - 0.0084055, - 0.0076651, - -0.050361, - -0.002473, - -0.0020124, - 0.020271, - -0.0031709, - 0.023312, - 0.03389, - 0.0074828, - 0.054438, - 0.064024, - -0.054448, - -0.051476, - -0.055449, - 0.022558, - -0.020884, - 0.028701, - 0.062807, - 0.050309, - 0.02648, - -0.093734, - -0.0028736, - 0.023012, - 0.0067241, - 0.034108, - 0.050387, - -0.0049019, - 0.072831, - 0.027903, - -0.13699, - 0.0081986, - -0.071618, - -0.0077252, - 0.019627, - -0.082977, - 0.0025533, - 0.026413, - 0.024468, - -0.041698, - 0.016227, - 0.049581, - 0.011345, - 0.085063, - 0.018505, - 0.014697, - -0.028828, - 0.12626, - 0.0059992, - -0.033884, - -0.045527, - 0.011514, - -0.02438, - -0.018186, - 0.005917, - 0.1217, - -0.010685, - 0.037149, - 0.024457, - 0.0042869, - 0.024363, - -0.05089, - 0.057856, - -0.052592, - 0.0012462, - 0.030623, - -0.06288, - -0.044949, - -0.13647, - -0.020353, - 0.030575, - 0.044206, - -0.0098108, - 0.057897, - 0.060994, - -0.00013956, - -0.017399, - 0.017495, - 0.087613, - -0.023189, - -0.035769, - 0.010901, - 0.032046, - 0.034471, - -0.023526, - 0.041041, - -0.040945, - -0.011869, - -0.00551, - 0.014784, - 0.028079, - 0.068118, - 0.037996, - -0.076856, - 0.1085, - 0.079406, - 0.044262, - -0.013794, - 0.027788, - -0.050321, - -0.071228, - -0.010065, - 0.025258, - 0.10721, - 0.075032, - 0.033215, - -0.044668, - -0.025868, - 0.015569, - -0.016238, - 0.090894, - -0.0080512, - -0.018785, - 0.01977, - -0.0080055, - -0.039692, - -0.020681, - -0.052795, - 0.098646, - -0.012508, - -0.057432, - 0.032546, - 0.040208, - 0.036233, - -0.038586, - 0.032883, - 0.018736, - -0.014016, - -0.011804, - -0.0063504, - 0.040675, - 0.0011226, - 0.034571, - 0.013898, - 0.013883, - 0.02056, - 0.007115, - 0.023465, - 0.0091854, - 0.063682, - -0.08625, - -0.02613, - -0.0095598, - -0.0055351, - -0.0094947, - 0.021653, - -0.05389, - 0.0052647, - 0.11907, - -0.0069887, - 0.0097009, - -0.032685, - 0.035147, - 0.068606, - 0.0052888, - 0.070341, - -0.048867, - -0.003606, - 0.0061933, - -0.0021363, - -0.013072, - -0.018717, - 0.037316, - 0.074431, - 0.028507, - -0.047706, - 0.012217, - 0.053835 - ], - "spiritualism": [ - 0.023357, - -0.04556, - 0.040828, - -0.030379, - -0.026154, - -0.041354, - -0.031467, - -0.058195, - 0.03163, - -0.023429, - 0.022736, - -0.036993, - 0.011889, - -0.073515, - -0.025878, - -0.039646, - 0.092747, - -0.02729, - 0.00019615, - -0.032333, - -0.055223, - -0.040626, - 0.032803, - 0.029634, - -0.032212, - -0.053926, - 0.032585, - 0.060542, - 0.034514, - 0.049481, - 0.0092186, - -0.019764, - -0.018259, - -0.031402, - 0.0075563, - 0.039706, - 0.011951, - 0.0045748, - 0.013776, - 0.024528, - -0.0039416, - -0.079436, - -0.029198, - 0.030113, - 0.0058414, - -0.018368, - -0.014119, - -0.033688, - -0.013321, - -0.037637, - -0.061487, - 0.028898, - -0.0038828, - 0.043793, - -0.029787, - 0.044829, - -0.01469, - -0.029992, - -0.01123, - 0.031858, - 0.054589, - 0.0073965, - -0.012063, - -0.015671, - -0.012422, - -0.0031042, - -0.060298, - -0.016829, - -0.014514, - -0.035829, - 0.0025727, - 0.0066386, - -0.03472, - -0.01312, - -0.0078414, - 0.0097135, - -0.032279, - -0.027146, - 0.021919, - 0.051483, - -0.027371, - 0.0044185, - -0.063582, - 0.022879, - -0.047282, - -0.03037, - 0.0051987, - 0.021484, - 0.030772, - -0.017631, - -0.049, - 0.025226, - -0.076074, - 0.023121, - 0.035103, - 0.037126, - -0.010731, - -0.018882, - -0.046771, - -0.022478, - -0.038961, - 0.0599, - 0.004089, - -0.060388, - -0.030837, - -0.038182, - 0.021404, - 0.046929, - -0.0030162, - 0.028004, - -0.01654, - 0.06174, - 0.043546, - -0.057611, - -0.039943, - 0.071512, - 0.036537, - -0.024565, - -0.041782, - -0.020359, - -0.019709, - -0.039802, - -0.070129, - -0.089997, - 0.065651, - 0.0237, - -0.052468, - -0.0054968, - 0.080034, - 0.10392, - 0.035232, - -0.04707, - -0.018861, - -0.016099, - -0.0054549, - 0.018104, - 0.021333, - 0.003948, - -0.028753, - -0.01072, - 0.061387, - -0.00019858, - 0.0062277, - 0.058037, - -0.0022003, - -0.03861, - -0.042106, - 0.014738, - -0.031965, - -0.005308, - 0.049949, - 0.034713, - -0.056456, - 0.0021573, - -0.032454, - 0.025252, - -0.046988, - -0.012709, - 0.032676, - 0.017431, - 0.039674, - 0.023289, - -0.097241, - 0.0042396, - 0.016047, - -0.041124, - 0.0054031, - 0.069949, - 0.0029492, - 0.0093157, - 0.0017659, - -0.023949, - -0.0079776, - 0.044557, - 0.051576, - 0.030801, - 0.023241, - 0.032063, - -0.0039233, - -0.018952, - -0.018635, - -0.013093, - 0.010484, - 0.012966, - 0.026295, - -0.019207, - 0.011643, - 0.072806, - -0.041676, - -0.081335, - 0.056838, - 0.057456, - -0.048007, - -0.037965, - 0.018724, - -0.0076111, - 0.014351, - -0.000040281, - -0.0101, - 0.029304, - -0.1297, - -0.0081028, - 0.0036174, - -0.0059184, - 0.048949, - 0.036262, - 0.025591, - -0.0025312, - 0.045468, - 0.0095053, - 0.056898, - 0.024661, - -0.0077837, - -0.025107, - 0.07001, - 0.074407, - -0.014303, - -0.027982, - -0.015277, - -0.025387, - -0.051161, - 0.019217, - -0.070475, - 0.069499, - 0.01762, - 0.012501, - 0.019163, - 0.078508, - -0.036008, - -0.033378, - 0.020182, - -0.014068, - -0.050891, - -0.049209, - 0.031451, - 0.074028, - -0.015018, - 0.0065164, - 0.0061502, - -0.0065408, - 0.018151, - -0.012991, - -0.0072315, - -0.00015766, - -0.0021399, - 0.02162, - -0.021432, - -0.04838, - -0.019081, - -0.010905, - 0.040862, - -0.064105, - -0.057903, - 0.018776, - 0.036549, - -0.018651, - -0.042927, - 0.016313, - -0.010137, - -0.020033, - 0.076556, - 0.025825, - 0.020964, - 0.038639, - -0.0043298, - -0.04601, - 0.0218, - -0.015599, - 0.066149, - 0.039289, - 0.0068413, - 0.041641, - -0.068272, - -0.0068442, - -0.0061349, - -0.039292, - 0.064578, - -0.0082114, - -0.044407, - 0.02422, - 0.069418, - -0.012319, - 0.0002504, - -0.052899, - -0.021099, - -0.013514, - 0.016482, - 0.036329, - -0.089155, - 0.055991, - 0.014866, - -0.015058, - -0.016766, - -0.036425, - -0.086321, - 0.057186, - 0.051797, - 0.035518, - 0.011083, - 0.046043 - ], - "comms": [ - 0.04144, - -0.049964, - -0.031779, - 0.066816, - 0.024731, - -0.019779, - 0.030924, - -0.086733, - 0.103, - -0.0083137, - -0.057448, - -0.04252, - -0.10695, - -0.030341, - 0.059985, - 0.11999, - 0.13823, - -0.033367, - 0.014392, - 0.01562, - -0.12255, - 0.10395, - 0.214, - -0.022322, - 0.03608, - 0.055842, - 0.17106, - -0.058796, - -0.019886, - -0.068524, - 0.045193, - 0.055479, - 0.0020222, - -0.032554, - 0.11171, - -0.11564, - 0.084239, - 0.066688, - 0.043161, - -0.13276, - -0.19757, - -0.14531, - 0.10501, - 0.090271, - 0.014006, - -0.075481, - 0.07709, - -0.14453, - -0.0014707, - 0.049391, - 0.052596, - -0.0024792, - 0.17313, - -0.1432, - 0.015914, - 0.13819, - -0.21598, - -0.023169, - -0.050428, - 0.11747, - -0.041717, - -0.0039757, - 0.16431, - -0.09898, - 0.048941, - 0.023352, - 0.015672, - -0.076489, - -0.020499, - 0.0037866, - -0.038539, - 0.084413, - 0.10147, - 0.0032545, - -0.13945, - -0.064187, - 0.059672, - -0.00031997, - -0.025955, - -0.023078, - -0.06254, - -0.10813, - -0.07679, - 0.18115, - 0.0032882, - 0.054766, - -0.069272, - -0.024672, - -0.021269, - -0.085684, - 0.051791, - 0.043957, - -0.062269, - -0.014119, - 0.077934, - 0.10825, - -0.1139, - -0.0087878, - -0.080282, - 0.023273, - 0.059684, - -0.054946, - -0.050947, - 0.079552, - -0.065033, - -0.1544, - -0.0098668, - -0.043483, - 0.15608, - -0.020542, - 0.00034146, - 0.079716, - 0.047068, - 0.15009, - -0.011271, - -0.06346, - -0.11757, - -0.014788, - 0.058359, - -0.13117, - 0.10959, - 0.04238, - -0.034994, - 0.10769, - 0.15078, - 0.033981, - -0.070635, - -0.024859, - -0.051448, - 0.065936, - -0.0085796, - -0.022562, - 0.041178, - -0.016968, - 0.062074, - -0.01901, - -0.080938, - -0.00073651, - -0.084977, - 0.058933, - -0.10361, - 0.070139, - -0.10803, - -0.011617, - -0.071915, - -0.090391, - -0.019047, - -0.085473, - -0.033448, - -0.012507, - 0.046586, - 0.092681, - 0.00235, - -0.13471, - -0.013852, - -0.057362, - -0.023373, - -0.097041, - 0.026972, - 0.092246, - 0.019004, - -0.0045846, - -0.084476, - 0.084131, - -0.13736, - -0.0763, - 0.0050085, - 0.01418, - 0.027451, - 0.065065, - 0.077528, - 0.040831, - -0.15056, - -0.067232, - -0.010446, - 0.028566, - 0.01484, - 0.058835, - 0.044328, - 0.0098673, - -0.018142, - 0.061476, - -0.070189, - -0.054908, - -0.033831, - -0.087498, - -0.015755, - 0.14679, - 0.077351, - 0.011237, - -0.14908, - 0.012379, - 0.042353, - -0.062817, - -0.0341, - -0.084388, - -0.013074, - 0.026265, - -0.13432, - 0.115, - -0.13571, - -0.029314, - -0.11435, - 0.21574, - -0.064897, - -0.039157, - 0.052611, - -0.028295, - -0.033413, - -0.047624, - 0.10628, - 0.023832, - -0.027344, - -0.049117, - -0.087976, - 0.056307, - -0.133, - -0.023207, - 0.0053803, - 0.023579, - 0.042567, - -0.067037, - 0.033794, - 0.086838, - 0.11514, - -0.020294, - 0.030529, - 0.016744, - 0.013801, - -0.076585, - -0.0096532, - 0.0001458, - -0.052504, - 0.0078684, - 0.054316, - -0.10982, - 0.0095363, - 0.076192, - 0.027227, - -0.0296, - 0.037719, - 0.076191, - 0.078802, - 0.089944, - -0.018768, - 0.040947, - -0.033909, - 0.094129, - -0.074781, - 0.029092, - 0.043771, - 0.13005, - -0.026592, - 0.1085, - 0.094425, - 0.0055089, - 0.034135, - -0.0034803, - 0.028611, - 0.063504, - 0.0053715, - 0.018551, - -0.0056381, - -0.049761, - 0.007992, - -0.10559, - 0.12061, - 0.0053421, - -0.069013, - 0.0022912, - -0.051335, - 0.070182, - -0.096424, - -0.11672, - -0.026455, - 0.10769, - 0.13284, - -0.012157, - -0.0077761, - 0.038091, - 0.14314, - -0.14271, - -0.00084976, - 0.010142, - -0.16278, - -0.13986, - -0.10339, - -0.0058332, - 0.089812, - -0.064216, - -0.12809, - 0.034582, - -0.16715, - -0.042677, - 0.036006, - -0.077867, - -0.12813, - 0.019354, - -0.036454, - 0.028654 - ], - "rhetoric": [ - 0.028089, - 0.00892, - 0.0095215, - 0.037238, - 0.033597, - -0.037396, - -0.01706, - -0.076684, - -0.01085, - 0.013774, - 0.035486, - -0.050047, - -0.018226, - 0.04198, - -0.043243, - -0.019507, - 0.08825, - 0.0078539, - 0.038128, - 0.049007, - -0.056605, - 0.042212, - 0.038623, - 0.042497, - -0.039014, - 0.014919, - 0.011138, - 0.039694, - 0.031459, - -0.058727, - 0.016647, - -0.019477, - -0.015701, - -0.066207, - 0.028152, - 0.011844, - 0.048393, - 0.023488, - -0.028251, - -0.045913, - -0.084156, - -0.14191, - 0.04566, - 0.053487, - 0.029358, - 0.023022, - -0.067398, - 0.014951, - 0.021787, - 0.019605, - -0.034878, - -0.020843, - 0.019478, - -0.042471, - -0.023595, - 0.022522, - 0.00074956, - 0.055197, - -0.041177, - 0.086347, - -0.011147, - -0.04818, - 0.1056, - -0.017911, - -0.034226, - -0.018565, - 0.015862, - 0.011384, - 0.064151, - -0.01338, - -0.0078408, - 0.017634, - -0.010088, - 0.048576, - 0.047833, - -0.012415, - -0.021639, - -0.010008, - -0.022595, - -0.00052769, - -0.083516, - -0.049482, - -0.042275, - 0.080921, - -0.026885, - -0.058798, - -0.048214, - 0.023217, - -0.01113, - 0.021973, - -0.015716, - -0.011742, - -0.090251, - 0.008347, - 0.082461, - 0.061009, - 0.0065312, - -0.058842, - 0.017514, - 0.0087878, - 0.047972, - -0.018268, - 0.010001, - 0.042185, - 0.0026594, - -0.081237, - 0.043456, - -0.029632, - -0.0017614, - -0.019884, - -0.044934, - 0.053105, - 0.055368, - -0.039881, - -0.040273, - -0.024422, - 0.034227, - -0.027201, - -0.082003, - 0.00030403, - 0.0014328, - -0.026978, - -0.030158, - -0.091391, - 0.079253, - 0.01238, - -0.043233, - -0.01212, - -0.049618, - 0.13864, - -0.033166, - -0.028445, - 0.018687, - 0.094495, - 0.035571, - -0.0045558, - 0.00081874, - 0.07316, - -0.040703, - -0.047597, - 0.040437, - -0.052854, - 0.011554, - 0.052774, - -0.034853, - -0.028419, - 0.068916, - 0.033673, - -0.01407, - -0.030652, - 0.0035023, - 0.06125, - -0.013079, - -0.034683, - -0.032222, - 0.072139, - 0.013656, - 0.01192, - 0.022483, - 0.042866, - 0.042224, - 0.047029, - -0.09472, - 0.0088895, - -0.051642, - -0.029978, - 0.065961, - -0.028871, - -0.020318, - -0.075085, - -0.063074, - -0.058746, - 0.027968, - -0.0031871, - 0.048239, - 0.038547, - -0.0074481, - 0.049606, - -0.029672, - 0.077865, - -0.034844, - 0.028462, - 0.035825, - -0.026574, - 0.036689, - -0.032091, - 0.041422, - 0.08642, - 0.02777, - 0.0082541, - 0.048045, - 0.064493, - -0.0026418, - -0.052583, - -0.023348, - -0.013238, - 0.021263, - 0.03466, - -0.051026, - 0.010384, - -0.11837, - -0.026314, - 0.045044, - -0.0279, - 0.019987, - -0.056861, - -0.044786, - 0.010393, - -0.015446, - -0.016885, - 0.09724, - 0.031892, - -0.027829, - -0.0090979, - 0.059258, - 0.077919, - 0.041857, - -0.058704, - -0.050728, - -0.091042, - -0.067436, - 0.030741, - 0.036171, - 0.073113, - 0.052051, - -0.034288, - -0.0034902, - 0.05722, - -0.000089436, - 0.0036133, - 0.047284, - -0.069369, - -0.018619, - -0.063651, - 0.040455, - -0.02703, - 0.0051029, - -0.13843, - 0.0081755, - -0.089055, - 0.032458, - 0.021645, - 0.00034741, - 0.052924, - -0.044616, - 0.022719, - -0.087916, - -0.057139, - 0.0064964, - 0.039573, - 0.0486, - -0.034813, - -0.10681, - -0.041512, - 0.0006504, - -0.0011568, - -0.042342, - 0.017238, - 0.024118, - -0.037264, - 0.035426, - 0.015265, - 0.020113, - 0.030206, - 0.067637, - 0.030559, - 0.063838, - 0.043127, - -0.042094, - 0.020143, - 0.0053836, - 0.065032, - -0.095206, - -0.025886, - 0.063148, - -0.093124, - -0.020685, - 0.045826, - -0.0092553, - 0.051108, - 0.094622, - -0.0034371, - -0.035066, - 0.012319, - 0.00058735, - 0.022027, - -0.006249, - 0.052978, - 0.021496, - 0.01223, - 0.0074264, - -0.071467, - 0.0070099, - 0.022811, - -0.019755, - 0.019138, - 0.018329, - -0.0090332, - -0.0040106, - 0.014282 - ], - "meat": [ - -0.098465, - 0.059345, - -0.035464, - -0.064257, - 0.029398, - -0.14335, - -0.018338, - -0.14005, - -0.003116, - 0.07638, - -0.13768, - 0.0065871, - -0.023513, - -0.06743, - 0.016238, - -0.077577, - 0.10781, - 0.052832, - 0.035048, - 0.071661, - 0.056372, - 0.00058564, - 0.014455, - 0.0069468, - 0.0071614, - 0.063856, - -0.0083743, - 0.084329, - 0.096838, - 0.049581, - -0.030965, - -0.012186, - -0.024929, - 0.0042993, - 0.059061, - -0.068804, - 0.012739, - 0.096148, - 0.031836, - 0.20662, - 0.032525, - -0.15692, - -0.053622, - 0.011859, - 0.022835, - -0.069687, - 0.032401, - -0.19889, - 0.050956, - -0.012928, - 0.023455, - -0.017282, - 0.093693, - -0.096245, - -0.12538, - 0.048131, - 0.067402, - 0.0022441, - -0.094858, - -0.098191, - -0.084263, - -0.037847, - 0.17814, - 0.01354, - -0.012083, - -0.0011145, - -0.0084025, - -0.020395, - 0.021617, - -0.080856, - -0.041936, - -0.10964, - 0.090605, - -0.086462, - -0.07913, - 0.036692, - -0.061893, - -0.02414, - 0.016856, - -0.066306, - -0.068707, - -0.13285, - -0.009062, - 0.090891, - -0.019507, - 0.054835, - -0.097788, - -0.073721, - 0.0054951, - 0.073578, - -0.070683, - -0.010388, - -0.14521, - -0.0079329, - -0.061663, - 0.087148, - -0.026127, - 0.19726, - 0.044621, - 0.014427, - -0.18897, - -0.035892, - 0.043925, - 0.10374, - 0.014165, - -0.20016, - -0.055226, - 0.031099, - -0.068184, - 0.0034991, - -0.015779, - 0.10872, - 0.076567, - 0.020696, - -0.011352, - 0.018854, - 0.0016145, - 0.056284, - -0.08061, - -0.033651, - -0.038592, - 0.034789, - -0.035395, - -0.15452, - 0.098103, - 0.01085, - -0.066386, - -0.15979, - 0.062884, - 0.10774, - 0.10384, - -0.024771, - 0.07554, - -0.076999, - 0.013496, - -0.038259, - -0.092176, - 0.093268, - 0.057625, - 0.085016, - -0.038012, - 0.053615, - -0.008764, - -0.080705, - 0.074757, - -0.10447, - 0.051686, - 0.04131, - -0.076332, - -0.13807, - 0.0010754, - 0.064107, - 0.0022016, - -0.067242, - 0.083947, - -0.036464, - -0.076942, - -0.056005, - -0.068373, - -0.0363, - 0.041954, - 0.0062586, - -0.11094, - -0.052949, - 0.038813, - -0.016373, - 0.032894, - 0.12122, - 0.022706, - -0.029657, - 0.04332, - -0.12018, - -0.024824, - 0.060762, - -0.011718, - 0.073154, - -0.015828, - 0.016583, - -0.0069982, - -0.079261, - -0.023574, - -0.0050807, - 0.035715, - -0.14767, - -0.033256, - -0.089409, - 0.11217, - 0.18255, - -0.046407, - -0.048793, - 0.07137, - 0.042353, - 0.0077337, - -0.032405, - 0.11506, - 0.035229, - -0.028004, - -0.0074356, - 0.019909, - 0.033276, - -0.24956, - 0.061421, - -0.12939, - -0.075932, - 0.0046103, - -0.032648, - -0.050147, - -0.01676, - 0.01597, - -0.039305, - 0.16418, - -0.010666, - 0.025228, - -0.06102, - 0.097491, - 0.068669, - 0.068674, - -0.043095, - 0.00071535, - -0.042513, - -0.097758, - -0.0019012, - -0.05536, - 0.1416, - 0.074947, - 0.011877, - -0.036155, - 0.046692, - -0.062431, - -0.035909, - -0.029888, - -0.044055, - -0.12565, - -0.052793, - -0.029271, - -0.061562, - -0.074159, - 0.0047516, - -0.0034313, - -0.17832, - 0.093776, - -0.00078453, - -0.061788, - -0.043435, - -0.089146, - 0.13434, - -0.013354, - 0.051467, - 0.032596, - 0.0010833, - -0.04441, - -0.083249, - -0.066198, - 0.043377, - -0.030495, - -0.052579, - -0.040746, - -0.0090762, - -0.0069355, - 0.025976, - -0.025434, - 0.015061, - 0.10452, - -0.028308, - 0.098764, - 0.11159, - 0.021412, - -0.018703, - -0.01652, - -0.078946, - -0.0031498, - 0.15022, - -0.15271, - -0.088634, - -0.073041, - -0.10474, - -0.056936, - -0.0061968, - -0.026382, - -0.071696, - 0.13676, - 0.15915, - 0.0042332, - -0.012491, - -0.05768, - 0.013814, - 0.11529, - 0.075484, - 0.11249, - -0.048042, - 0.002339, - 0.10845, - -0.096657, - 0.029276, - 0.018659, - -0.01731, - -0.0092702, - 0.020442, - -0.086579, - -0.038951 - ], - "constitutionalism": [ - 0.0092849, - -0.0054148, - 0.01069, - 0.0030385, - -0.039131, - 0.0043294, - 0.028685, - -0.052457, - 0.033684, - 0.038892, - 0.036281, - -0.040147, - 0.023923, - 0.012629, - 0.033728, - 0.040959, - 0.06154, - -0.018349, - 0.008431, - -0.0076182, - -0.012796, - -0.0060159, - 0.012917, - 0.040378, - 0.013089, - 0.019346, - -0.0016601, - -0.00022769, - 0.030307, - 0.00087536, - 0.011314, - -0.056504, - -0.032055, - -0.013034, - -0.0012503, - 0.020731, - 0.042843, - 0.00014625, - -0.009495, - 0.027538, - 0.0081756, - -0.084312, - -0.0022199, - 0.035506, - 0.005114, - -0.0048928, - -0.01165, - 0.021794, - 0.034771, - -0.026652, - -0.0015207, - 0.015113, - 0.00013533, - 0.029063, - -0.020856, - -0.034525, - 0.038457, - 0.0092557, - -0.010663, - 0.015559, - 0.025949, - 0.019577, - -0.00024867, - 0.033743, - 0.0073309, - 0.0087068, - -0.0045864, - 0.016435, - 0.00062804, - 0.018136, - -0.011978, - -0.0037469, - -0.0026891, - -0.023302, - -0.018666, - -0.034841, - -0.024974, - -0.021368, - -0.040435, - 0.055705, - 0.0041791, - 0.0097229, - 0.0012267, - 0.011832, - 0.014895, - 0.0034251, - -0.013623, - 0.018136, - 0.0070605, - 0.061176, - -0.019058, - 0.016277, - -0.062798, - 0.0063736, - 0.020031, - 0.013594, - 0.0039249, - -0.058781, - -0.0023687, - -0.031425, - 0.049859, - 0.0051277, - -0.017993, - -0.044464, - -0.029871, - -0.03024, - 0.036769, - -0.0041858, - -0.056409, - -0.017125, - 0.0036491, - 0.053683, - 0.041633, - -0.020056, - -0.0063229, - 0.057582, - 0.03918, - 0.01143, - -0.019897, - 0.061231, - 0.035644, - -0.051566, - 0.026949, - -0.04474, - 0.0407, - 0.049354, - -0.00079163, - -0.016908, - -0.0062562, - 0.08134, - 0.014534, - -0.016446, - 0.042315, - -0.0019017, - 0.0073326, - -0.0072156, - 0.012641, - -0.0065133, - 0.02026, - -0.0034244, - 0.061139, - -0.05559, - -0.0091856, - 0.035117, - 0.0073567, - -0.031269, - 0.017382, - 0.033325, - -0.0026153, - -0.030592, - 0.043858, - 0.028001, - -0.00079419, - -0.02136, - -0.01399, - 0.025805, - -0.029407, - -0.033407, - -0.005976, - -0.025553, - 0.034669, - 0.02352, - -0.069262, - 0.0023272, - -0.012378, - -0.02031, - 0.016419, - -0.00041389, - -0.019907, - -0.014097, - -0.0040352, - 0.0045988, - -0.036651, - -0.031092, - -0.019348, - 0.010463, - 0.0076594, - 0.0078905, - -0.02517, - -0.012528, - -0.025838, - 0.045227, - 0.029209, - 0.0050049, - 0.043825, - -0.010713, - 0.022745, - 0.074915, - 0.023815, - -0.02148, - 0.019764, - 0.028195, - -0.019015, - -0.042847, - -0.014722, - -0.0048485, - 0.068256, - -0.0075756, - -0.021182, - -0.012012, - -0.11882, - -0.018569, - 0.026307, - -0.047889, - -0.058251, - -0.03403, - 0.059798, - 0.017342, - 0.0012897, - 0.011306, - 0.048568, - 0.0074966, - -0.0046643, - -0.0098099, - 0.024753, - 0.042397, - 0.012095, - 0.0044027, - 0.0046816, - -0.028635, - -0.02224, - 0.009421, - 0.014343, - 0.053202, - -0.015863, - 0.024259, - 0.028878, - 0.027708, - -0.0017939, - -0.048072, - -0.0066841, - -0.0074732, - -0.043131, - 0.0027879, - 0.023831, - -0.016213, - -0.0068749, - -0.020241, - -0.021744, - 0.019826, - 0.015851, - -0.010512, - -0.0079922, - 0.0048476, - 0.00022359, - -0.017094, - -0.038965, - -0.028495, - -0.029216, - -0.02983, - 0.027603, - -0.0092987, - -0.032266, - 0.010742, - -0.01428, - 0.027303, - -0.017194, - 0.025971, - -0.019579, - -0.017571, - -0.01583, - -0.019177, - 0.0065969, - 0.02269, - 0.017869, - -0.010216, - 0.0048226, - 0.00025875, - -0.0061405, - -0.0067145, - 0.018454, - 0.04573, - -0.030429, - -0.015145, - -0.0058871, - -0.025127, - 0.0064326, - 0.03015, - 0.004419, - 0.0096864, - 0.043968, - -0.020289, - -0.01755, - -0.014003, - -0.019309, - -0.027051, - -0.0066513, - 0.019328, - -0.011777, - 0.034669, - -0.026844, - -0.037033, - 0.010332, - -0.028421, - -0.010677, - 0.0049713, - -0.053962, - 0.012957, - -0.018069, - 0.015731 - ], - "university": [ - -0.0078759, - -0.055731, - 0.04376, - 0.0099658, - 0.0018867, - -0.057111, - 0.017396, - -0.085429, - 0.060645, - 0.023968, - -0.048958, - -0.065445, - 0.05437, - 0.02442, - -0.023669, - 0.045085, - 0.1065, - 0.0059253, - 0.026857, - 0.026895, - 0.00027517, - 0.062683, - -0.0042409, - 0.062265, - 0.0056898, - 0.017213, - -0.001485, - 0.029947, - -0.016867, - 0.011624, - 0.02366, - 0.0036689, - -0.032356, - -0.020836, - 0.0023855, - 0.047571, - 0.014323, - 0.0024917, - 0.0051947, - 0.031562, - 0.024858, - -0.094236, - 0.02961, - 0.022602, - 0.029877, - -0.0094993, - 0.02407, - -0.062402, - -0.027996, - 0.024481, - 0.01564, - -0.038122, - 0.021636, - 0.033813, - -0.031678, - 0.047007, - -0.020741, - 0.042665, - 0.0055662, - 0.010019, - 0.051142, - 0.043606, - 0.063068, - 0.082521, - 0.0045247, - -0.033398, - 0.0099477, - -0.022351, - 0.027573, - -0.0033501, - 0.03881, - -0.04841, - 0.022293, - 0.030025, - 0.0036632, - -0.026709, - -0.0026222, - 0.0087143, - 0.03769, - 0.0054327, - -0.0094692, - 0.041547, - -0.040735, - 0.0072651, - -0.060742, - -0.0022743, - -0.057936, - -0.046111, - -0.034295, - 0.00028009, - -0.0055594, - 0.01412, - -0.055638, - 0.0063007, - 0.032092, - 0.061089, - 0.033465, - -0.0041182, - 0.043805, - 0.018683, - 0.0464, - 0.03428, - 0.027581, - -0.0099793, - 0.020548, - -0.057796, - -0.04011, - 0.018491, - -0.0010745, - 0.033315, - -0.035153, - 0.075469, - 0.024418, - 0.035854, - 0.035124, - 0.01989, - -0.015591, - 0.0088002, - -0.028048, - 0.00046719, - -0.00028227, - -0.041929, - -0.011934, - 0.015184, - -0.0043615, - 0.022605, - -0.044328, - -0.076707, - -0.037863, - 0.05524, - -0.0061966, - 0.043734, - -0.016351, - 0.0067634, - -0.0084357, - 0.032077, - 0.0039357, - 0.01426, - 0.011405, - -0.024961, - 0.014745, - -0.01982, - 0.01306, - -0.019835, - -0.031988, - -0.010548, - 0.010138, - 0.026325, - -0.059279, - 0.0096102, - 0.028441, - 0.044241, - 0.00036307, - -0.037219, - 0.053796, - 0.0017293, - 0.0050209, - 0.026932, - 0.0020976, - -0.021242, - 0.014587, - -0.016042, - 0.004436, - -0.007802, - 0.016733, - -0.018241, - 0.018403, - 0.0016519, - -0.0047708, - -0.023254, - 0.017593, - -0.035756, - -0.015984, - -0.016312, - 0.01632, - 0.044071, - -0.020646, - 0.050129, - -0.025946, - -0.010417, - 0.0016426, - 0.038178, - -0.029274, - 0.023293, - -0.04497, - -0.02437, - -0.027498, - 0.064871, - 0.033761, - -0.0035205, - -0.0024754, - 0.061626, - -0.017244, - -0.0080545, - -0.0060634, - 0.0026298, - 0.0058835, - -0.034495, - 0.014243, - -0.037716, - -0.10084, - 0.026791, - -0.013673, - -0.018142, - -0.066681, - 0.011088, - -0.025339, - -0.031744, - -0.038746, - -0.025051, - 0.078264, - -0.0082632, - 0.0125, - -0.0026879, - -0.059393, - -0.0031513, - 0.037818, - -0.029217, - 0.04228, - -0.043302, - -0.020401, - -0.0019564, - -0.0092265, - 0.087991, - -0.019958, - 0.0061782, - 0.0054503, - 0.046086, - 0.0066652, - -0.035329, - -0.031085, - -0.037095, - -0.03371, - 0.025005, - -0.0051128, - -0.017599, - 0.045544, - -0.032068, - -0.033503, - 0.007694, - 0.045105, - -0.030365, - 0.058734, - 0.049563, - 0.025378, - 0.021007, - -0.028372, - -0.0053017, - -0.0031551, - -0.0071038, - -0.0097372, - 0.021668, - -0.019846, - -0.075881, - 0.0167, - -0.00069158, - -0.044674, - 0.036152, - 0.018371, - 0.004948, - -0.024725, - -0.017753, - -0.011648, - -0.032632, - -0.010072, - 0.02295, - 0.015469, - 0.025073, - 0.037048, - 0.050681, - 0.0071826, - 0.059117, - -0.083137, - -0.0043084, - 0.019391, - 0.010257, - -0.020554, - 0.023062, - 0.028841, - 0.033261, - 0.047116, - -0.026643, - 0.0086081, - -0.0088386, - -0.0076153, - -0.028444, - -0.02358, - -0.056127, - -0.028995, - 0.030386, - -0.0037424, - 0.029363, - 0.013486, - 0.0016749, - -0.012976, - 0.042573, - -0.017849, - 0.01345, - 0.0017204, - -0.04415 - ], - "philology": [ - -0.051014, - -0.053416, - 0.05662, - -0.031243, - 0.041132, - -0.067157, - -0.0037185, - -0.10177, - 0.028839, - -0.038119, - 0.037682, - -0.034436, - -0.015034, - -0.036273, - 0.042542, - -0.054868, - 0.11905, - -0.052486, - -0.0012997, - 0.049949, - -0.066787, - 0.045256, - -0.017156, - 0.053213, - 0.03846, - 0.059924, - -0.011358, - 0.072017, - -0.030977, - -0.0013619, - 0.083928, - -0.024555, - 0.0071908, - -0.028537, - 0.027038, - 0.046665, - 0.077936, - 0.080703, - 0.023914, - -0.045593, - -0.0062572, - -0.10864, - 0.078943, - 0.035326, - 0.019941, - -0.037178, - -0.079834, - -0.086356, - 0.02703, - 0.0099124, - 0.0070147, - -0.019799, - -0.028336, - -0.0051119, - -0.030151, - 0.034406, - -0.009088, - 0.091977, - -0.040605, - 0.052405, - 0.094909, - 0.028492, - 0.051821, - 0.067608, - 0.018476, - 0.034288, - 0.014319, - 0.013813, - 0.053886, - -0.027592, - -0.026623, - -0.043962, - 0.047755, - 0.025946, - 0.04222, - -0.021973, - 0.0010314, - -0.03533, - 0.050227, - -0.054478, - -0.037059, - 0.015556, - -0.048129, - 0.010808, - -0.064591, - -0.085107, - 0.042494, - -0.033796, - -0.0047174, - 0.012498, - 0.035974, - 0.026977, - -0.052214, - 0.029521, - 0.082072, - 0.078513, - -0.015052, - 0.034971, - -0.010819, - 0.092629, - 0.025713, - 0.0033896, - -0.059505, - 0.035872, - -0.025172, - -0.058338, - 0.075418, - 0.042834, - -0.043611, - -0.013065, - -0.0075076, - 0.07368, - 0.022987, - 0.04611, - -0.043212, - 0.048476, - 0.048919, - -0.0025364, - -0.039112, - 0.0010413, - -0.039981, - -0.046299, - -0.069087, - -0.051473, - 0.025305, - 0.027804, - -0.081622, - 0.019598, - -0.034217, - 0.17109, - -0.012155, - 0.00012408, - -0.096234, - 0.0073178, - 0.014762, - -0.022894, - 0.0027376, - 0.016917, - 0.05289, - -0.035856, - 0.041837, - -0.027075, - -0.045169, - 0.05749, - -0.0046439, - -0.065684, - -0.0025722, - 0.053729, - -0.044196, - -0.036457, - 0.043723, - 0.038831, - 0.0016815, - 0.0021168, - 0.025523, - 0.07401, - 0.094444, - -0.058381, - 0.046141, - 0.075666, - 0.028666, - -0.0033678, - -0.10967, - 0.001447, - 0.041922, - -0.035393, - -0.032854, - 0.00058583, - -0.042282, - -0.0012886, - 0.050147, - -0.072004, - 0.0060141, - 0.022626, - 0.0517, - 0.053714, - 0.024451, - 0.040285, - -0.020591, - -0.059606, - -0.07484, - 0.099959, - -0.033331, - -0.0080536, - 0.034452, - -0.059737, - 0.036468, - 0.12073, - 0.0032702, - 0.12928, - 0.045291, - 0.085023, - -0.017736, - -0.065739, - -0.026825, - 0.04515, - -0.077248, - 0.0058707, - 0.014001, - 0.018221, - -0.1042, - -0.059926, - 0.0023683, - -0.089468, - -0.0069162, - 0.01678, - 0.01695, - -0.03022, - -0.060218, - -0.00161, - 0.096557, - 0.016963, - -0.020931, - -0.046063, - 0.044173, - 0.075093, - -0.0091768, - -0.050265, - -0.060784, - -0.033585, - -0.026391, - 0.0084092, - -0.0041338, - 0.095962, - -0.0049853, - 0.010286, - 0.045052, - 0.1055, - -0.0096347, - -0.063797, - 0.041962, - -0.010386, - -0.027464, - -0.051201, - 0.017152, - -0.0047359, - -0.0080039, - -0.033532, - -0.04658, - 0.012636, - 0.018594, - -0.0097503, - -0.044919, - 0.036953, - 0.040798, - 0.0085509, - -0.09183, - -0.033, - -0.10556, - 0.029491, - 0.045518, - -0.0296, - -0.059839, - 0.048648, - 0.013602, - -0.0090585, - -0.065899, - 0.026432, - 0.0057098, - -0.025742, - -0.022887, - -0.04049, - -0.0041918, - 0.050148, - -0.059933, - 0.028112, - -0.027276, - 0.038388, - 0.0063714, - 0.040598, - 0.050388, - 0.090754, - -0.03961, - 0.0044966, - 0.0036674, - -0.03364, - -0.034549, - 0.053552, - 0.028057, - -0.08503, - 0.049997, - -0.05722, - -0.01057, - -0.10943, - -0.028642, - 0.03183, - -0.015021, - -0.019063, - -0.021604, - -0.02136, - 0.016961, - -0.061953, - -0.0038117, - -0.047893, - 0.052818, - 0.036966, - 0.010747, - -0.022728, - 0.0034154, - -0.044283 - ], - "crypto": [ - -0.0028098, - -0.1177, - -0.10804, - -0.012306, - -0.053257, - -0.0037751, - 0.14967, - -0.09317, - 0.02753, - -0.013842, - -0.053498, - 0.020115, - -0.048035, - -0.0079336, - -0.085508, - 0.042996, - 0.16967, - -0.035535, - 0.047799, - -0.033293, - 0.040474, - 0.096602, - 0.079349, - 0.066095, - 0.031532, - 0.01738, - 0.10849, - -0.063373, - 0.012656, - -0.032041, - 0.05784, - -0.060559, - -0.044262, - 0.021256, - 0.052777, - -0.018886, - 0.032427, - -0.038431, - 0.016779, - -0.00067999, - -0.022775, - -0.13345, - -0.023445, - -0.018601, - -0.030313, - -0.05045, - -0.082002, - -0.030769, - 0.033538, - -0.026852, - -0.036855, - -0.056457, - 0.074486, - -0.13358, - -0.030928, - 0.017684, - 0.038677, - 0.032395, - -0.018959, - 0.0234, - -0.015684, - -0.1331, - 0.11179, - 0.020495, - -0.056259, - -0.01345, - 0.034868, - 0.012816, - 0.041811, - -0.01471, - -0.026127, - 0.083877, - 0.027561, - 0.048544, - -0.012592, - -0.094592, - -0.021587, - 0.0097123, - 0.05941, - 0.01435, - 0.015527, - 0.0066666, - -0.033115, - 0.064555, - 0.036754, - -0.0014288, - 0.012149, - 0.067435, - -0.048179, - 0.027398, - 0.043787, - 0.033054, - -0.077384, - 0.0055992, - 0.035708, - 0.081568, - 0.010457, - -0.13677, - -0.0070156, - 0.091264, - -0.030421, - 0.035812, - 0.017813, - 0.058169, - 0.0021176, - -0.15183, - 0.11682, - 0.016223, - 0.048402, - 0.062152, - 0.023395, - 0.04889, - -0.018548, - 0.0021271, - -0.052519, - 0.026532, - 0.0010845, - 0.10822, - -0.086272, - 0.0087646, - 0.1511, - 0.060389, - -0.063055, - -0.10299, - 0.10942, - -0.080255, - -0.063969, - -0.055689, - -0.12736, - 0.052533, - -0.0371, - 0.017798, - 0.079107, - 0.033724, - -0.0034131, - -0.050947, - 0.021688, - 0.028382, - -0.017778, - 0.020376, - 0.13528, - 0.11074, - -0.023712, - 0.072519, - -0.025123, - -0.047934, - -0.11529, - -0.077831, - -0.022986, - -0.18495, - -0.0020929, - 0.057997, - 0.068619, - -0.069645, - 0.042298, - -0.027721, - 0.018417, - -0.011592, - 0.069884, - -0.022951, - 0.037482, - 0.010645, - -0.054605, - 0.034199, - -0.04104, - -0.15097, - 0.055368, - -0.0035744, - 0.031415, - -0.0020919, - 0.042759, - 0.14943, - -0.014121, - 0.036384, - -0.086301, - 0.072906, - 0.024682, - 0.036483, - 0.086644, - 0.02059, - -0.031984, - 0.014332, - -0.010302, - -0.019893, - 0.07399, - -0.042805, - -0.0371, - 0.1399, - 0.080986, - -0.044221, - -0.0023937, - 0.014434, - -0.0023313, - -0.011003, - 0.074018, - 0.035556, - -0.051895, - -0.013311, - -0.092928, - 0.03754, - -0.14813, - -0.031356, - -0.040911, - 0.096895, - -0.072229, - -0.11643, - 0.045127, - -0.04228, - -0.057173, - 0.0043513, - 0.13622, - -0.0096261, - -0.033611, - -0.027534, - 0.023985, - 0.12649, - -0.11406, - 0.01246, - -0.01039, - -0.074898, - 0.072156, - -0.094874, - -0.086275, - 0.066422, - -0.043795, - -0.0041648, - 0.010387, - 0.10497, - 0.081801, - -0.012278, - -0.094821, - -0.0096274, - -0.051913, - -0.079892, - 0.033729, - -0.15884, - -0.085798, - 0.11433, - 0.029688, - -0.034812, - 0.032596, - -0.074904, - 0.060249, - -0.028995, - -0.080657, - 0.10665, - -0.043613, - 0.062315, - -0.050149, - 0.053213, - 0.061801, - -0.03184, - -0.016538, - 0.039527, - 0.014427, - 0.0038607, - 0.040231, - -0.010111, - 0.075045, - -0.032385, - 0.067001, - 0.022211, - -0.021733, - 0.0035804, - 0.000090112, - -0.19251, - 0.069104, - 0.0088269, - 0.035072, - 0.0017571, - -0.003527, - 0.051994, - -0.042746, - -0.0045039, - 0.02338, - 0.0059012, - 0.12665, - -0.022161, - 0.021571, - -0.062702, - 0.14421, - 0.029489, - 0.0259, - 0.081101, - -0.022615, - -0.090564, - 0.10433, - -0.0127, - 0.010935, - 0.0032296, - -0.079385, - 0.029484, - -0.058407, - 0.020828, - 0.037019, - -0.074947, - 0.020134, - -0.0034718, - -0.1236, - 0.01329 - ], - "theory": [ - 0.041262, - -0.02302, - -0.047366, - 0.023252, - -0.070685, - -0.050752, - 0.12527, - -0.11545, - -0.020181, - 0.0053596, - 0.032335, - -0.073348, - 0.018198, - -0.031361, - 0.023852, - -0.046172, - 0.14529, - 0.01497, - 0.017495, - 0.076754, - -0.055551, - 0.033093, - 0.030082, - 0.067784, - 0.042239, - -0.053891, - -0.018547, - 0.046147, - 0.042431, - 0.033772, - 0.0032105, - 0.0029083, - 0.014164, - -0.07361, - 0.0035118, - -0.012675, - -0.026938, - -0.079433, - -0.0059487, - -0.055468, - -0.046819, - -0.12901, - -0.056934, - -0.021089, - -0.025916, - -0.02765, - 0.0031209, - -0.006034, - 0.018083, - -0.029737, - 0.00056719, - -0.011831, - -0.037283, - 0.023438, - -0.015118, - -0.0059216, - 0.037797, - 0.084113, - -0.055455, - 0.023344, - 0.023034, - -0.018015, - 0.12558, - 0.056269, - 0.092854, - 0.039942, - -0.0033491, - 0.010186, - -0.014325, - -0.015315, - 0.0032302, - -0.071836, - -0.064196, - -0.016614, - 0.011137, - -0.028766, - -0.010126, - -0.031489, - -0.013977, - -0.034923, - -0.029904, - 0.023474, - -0.044927, - 0.041374, - -0.041776, - -0.0089804, - 0.023781, - 0.0061532, - 0.068029, - 0.10186, - -0.0014541, - 0.018905, - -0.098544, - 0.0032392, - -0.01811, - 0.069285, - 0.0083274, - -0.020197, - 0.02101, - -0.00039786, - -0.025039, - -0.018704, - 0.011326, - -0.036107, - -0.11597, - -0.10515, - 0.086586, - 0.029768, - 0.015131, - -0.019067, - 0.0025197, - 0.042158, - 0.084441, - -0.013094, - 0.018802, - 0.0012508, - -0.030586, - 0.064775, - -0.062853, - 0.059784, - 0.021089, - -0.029271, - -0.055212, - -0.049953, - 0.041294, - 0.025473, - 0.017247, - -0.045955, - -0.0037512, - 0.22034, - 0.072752, - -0.046383, - 0.034039, - 0.020487, - 0.046049, - 0.056924, - 0.021576, - 0.036032, - -0.0066109, - -0.069245, - 0.015254, - -0.057406, - -0.011949, - 0.034535, - 0.012304, - -0.088535, - 0.0010069, - -0.024123, - 0.030964, - 0.0011825, - 0.033538, - 0.048011, - -0.0018813, - -0.086422, - -0.024366, - 0.061815, - 0.044771, - -0.085497, - 0.024416, - -0.0054977, - 0.018977, - 0.049484, - -0.091376, - -0.031431, - -0.010543, - -0.064762, - 0.011312, - -0.0032692, - 0.067904, - -0.029432, - -0.015964, - -0.038123, - -0.013088, - 0.04419, - 0.0078089, - 0.054332, - -0.064581, - -0.034287, - -0.040413, - -0.030568, - -0.063533, - 0.051782, - -0.010425, - -0.0018098, - 0.074557, - -0.017459, - -0.011881, - 0.095574, - 0.039993, - 0.092691, - 0.033524, - 0.11491, - -0.048775, - -0.068017, - -0.046449, - -0.031714, - 0.030609, - 0.023539, - -0.018149, - 0.055989, - -0.14625, - 0.057524, - -0.015524, - 0.0078667, - 0.025665, - 0.0096164, - 0.051159, - -0.082399, - -0.0063985, - -0.0096072, - 0.10974, - 0.039019, - -0.013129, - -0.042879, - 0.021405, - 0.15646, - 0.021178, - -0.054546, - -0.067872, - -0.029515, - -0.00043969, - -0.018203, - 0.0076704, - 0.11719, - 0.034812, - -0.022297, - 0.022175, - 0.081484, - 0.011439, - 0.028727, - 0.016591, - -0.11534, - -0.064824, - -0.03387, - 0.034974, - -0.0057106, - -0.0086753, - 0.0098974, - -0.0086518, - 0.0038902, - 0.051141, - -0.016578, - 0.017706, - -0.004109, - -0.020656, - 0.010678, - -0.039658, - -0.022761, - -0.081564, - 0.024922, - 0.062942, - 0.059174, - -0.0081181, - 0.0095565, - 0.060457, - 0.0056574, - 0.039247, - 0.056951, - 0.019952, - -0.027366, - 0.088467, - 0.075769, - 0.020732, - 0.0022796, - 0.021314, - 0.060509, - -0.015879, - 0.023421, - 0.0081041, - 0.021813, - -0.01235, - 0.11737, - -0.097373, - -0.00044419, - 0.038108, - -0.033282, - -0.007546, - -0.01585, - 0.009354, - -0.0039869, - 0.075344, - -0.012434, - -0.023676, - -0.039754, - -0.024695, - -0.027666, - 0.020436, - 0.035303, - -0.046429, - 0.0088829, - -0.048872, - -0.019273, - 0.020192, - -0.12344, - -0.0036857, - 0.012388, - -0.016673, - -0.03467, - -0.00431, - 0.089792 - ], - "lingerie": [ - -0.0078595, - -0.019834, - -0.0028752, - -0.013289, - 0.082386, - -0.10492, - 0.046015, - -0.060427, - 0.058652, - 0.030493, - -0.017165, - -0.043754, - -0.075616, - -0.041569, - -0.092121, - -0.026876, - 0.058892, - 0.014891, - 0.0043317, - -0.011485, - 0.001436, - -0.054304, - -0.022329, - 0.045264, - 0.035934, - -0.020533, - 0.066047, - 0.036298, - -0.010122, - -0.037527, - -0.0077167, - 0.0013474, - 0.0013465, - -0.029446, - 0.052228, - -0.041672, - 0.02517, - -0.014832, - -0.054519, - 0.092313, - 0.040422, - -0.1135, - -0.097374, - -0.028727, - 0.013501, - -0.019707, - 0.095013, - 0.00021947, - 0.0028306, - -0.050026, - 0.044499, - -0.072832, - -0.073143, - 0.035911, - -0.063097, - -0.056437, - -0.052114, - 0.002361, - -0.043227, - 0.0016932, - -0.091091, - -0.039013, - 0.094357, - 0.0085664, - 0.066096, - 0.045491, - 0.038419, - 0.0038014, - 0.0057881, - -0.03052, - 0.028885, - -0.023281, - 0.067946, - 0.014204, - 0.033389, - 0.031997, - 0.071633, - -0.029321, - -0.035185, - 0.047285, - -0.043163, - -0.076096, - -0.073593, - 0.033905, - -0.034767, - 0.0052045, - -0.083543, - -0.026005, - 0.00068933, - 0.0096243, - -0.0024156, - 0.065987, - -0.074013, - -0.0046052, - 0.098517, - 0.084256, - -0.017436, - 0.063823, - 0.016884, - 0.0059168, - -0.031766, - 0.12161, - -0.031257, - 0.0043956, - -0.0045094, - -0.11375, - 0.048564, - -0.012912, - 0.033385, - -0.0080504, - 0.030617, - 0.036194, - 0.058544, - 0.093594, - 0.030455, - -0.058927, - 0.050927, - 0.020733, - -0.050982, - -0.045429, - -0.042739, - 0.064425, - 0.034536, - -0.076007, - 0.076172, - 0.001455, - 0.016797, - -0.034166, - 0.014685, - 0.0463, - 0.011191, - 0.0027859, - -0.011081, - -0.054964, - -0.0079281, - -0.074686, - -0.0015312, - 0.048505, - 0.025091, - -0.10351, - 0.059074, - 0.053572, - 0.0085924, - 0.10425, - -0.012096, - 0.057008, - -0.058427, - 0.0047074, - 0.027876, - -0.021824, - -0.027551, - 0.02484, - 0.049475, - -0.029617, - -0.071422, - -0.039092, - -0.042261, - 0.011193, - 0.0049593, - 0.0076416, - 0.019662, - -0.06006, - -0.055003, - 0.05137, - -0.011996, - 0.014461, - -0.021636, - -0.06681, - 0.00016573, - 0.013553, - 0.0088199, - -0.030663, - -0.054581, - -0.070026, - -0.019357, - 0.051077, - -0.083626, - 0.10472, - 0.026634, - -0.0071859, - 0.020033, - -0.033718, - -0.0022086, - -0.05145, - 0.026232, - -0.019817, - -0.05147, - 0.12085, - -0.082887, - 0.046258, - -0.0069269, - 0.07538, - 0.0061183, - -0.086292, - 0.068073, - -0.012002, - 0.026698, - -0.050646, - 0.023924, - 0.013917, - -0.15008, - 0.10739, - -0.0076598, - 0.028274, - 0.047329, - 0.0057559, - 0.0011472, - -0.055332, - 0.054974, - -0.019015, - 0.13419, - -0.001199, - 0.038669, - -0.041053, - 0.022431, - -0.023472, - -0.0010086, - -0.016051, - 0.0011867, - 0.030316, - -0.02877, - -0.086543, - -0.01674, - 0.052919, - -0.012603, - -0.0087518, - 0.0024568, - -0.0018993, - 0.0010586, - 0.025584, - 0.0077969, - 0.008907, - -0.044825, - -0.054595, - -0.020499, - 0.0047327, - 0.016335, - -0.042434, - 0.014477, - -0.055782, - 0.075276, - -0.043445, - -0.033487, - 0.0089133, - -0.005293, - -0.014451, - -0.050041, - 0.018259, - 0.0042444, - -0.040512, - -0.015945, - -0.012223, - 0.034054, - 0.0028517, - 0.028891, - -0.00097075, - -0.035882, - 0.017168, - 0.063057, - 0.033408, - 0.065621, - -0.039157, - -0.01456, - -0.057883, - -0.011818, - -0.016756, - -0.046539, - 0.012421, - 0.0048861, - 0.007726, - 0.049334, - 0.075606, - -0.077238, - 0.015567, - 0.032128, - -0.043054, - -0.066703, - -0.029957, - -0.041705, - -0.021048, - 0.098399, - 0.077964, - 0.023996, - -0.006656, - -0.077825, - -0.042672, - -0.082058, - 0.031028, - -0.046436, - 0.040287, - 0.014471, - 0.051879, - -0.039395, - 0.011519, - -0.070784, - -0.095385, - 0.0072736, - -0.010195, - -0.0069893, - 0.0057704 - ], - "conservatism": [ - 0.0089782, - -0.016852, - 0.018011, - -0.001218, - -0.049548, - -0.022267, - 0.014473, - -0.061318, - 0.015131, - 0.012227, - -0.00072777, - -0.045184, - 0.035324, - -0.001152, - -0.014971, - -0.023635, - 0.073803, - -0.041085, - 0.018076, - -0.012336, - -0.014869, - 0.024147, - -0.0084246, - 0.040647, - -0.020397, - 0.0019732, - 0.019055, - 0.032971, - 0.025363, - 0.019519, - 0.010243, - -0.030586, - -0.05199, - -0.037479, - 0.0058298, - 0.039344, - 0.014181, - 0.0073668, - -0.0062311, - 0.048224, - 0.029472, - -0.054955, - 0.0014565, - 0.029625, - -0.017423, - -0.01411, - -0.014303, - 0.00051256, - 0.026275, - -0.020095, - -0.007822, - 0.020618, - 0.016178, - 0.058965, - -0.023002, - 0.0063615, - 0.054203, - 0.042031, - -0.029822, - 0.040838, - 0.034311, - -0.032578, - 0.0039042, - -0.038244, - 0.012053, - 0.0093471, - -0.0617, - -0.0079259, - 0.038062, - -0.015251, - 0.051511, - 0.030765, - -0.0096439, - -0.0092843, - 0.00067317, - -0.0079773, - -0.021116, - -0.022434, - -0.036033, - 0.014663, - -0.048605, - 0.044376, - -0.019066, - 0.059253, - 0.0092137, - -0.03612, - -0.041541, - -0.0012804, - -0.014739, - 0.016101, - -0.013847, - 0.012667, - -0.062391, - -0.01325, - 0.071456, - 0.021199, - -0.017078, - -0.015939, - -0.026198, - 0.022345, - 0.029006, - -0.034819, - -0.020759, - -0.024664, - 0.00075489, - -0.049815, - 0.03346, - -0.028894, - -0.057802, - -0.031839, - -0.0043591, - 0.051435, - 0.026635, - -0.0070559, - -0.01313, - 0.010722, - 0.078, - 0.021647, - -0.042553, - 0.024567, - 0.023777, - -0.05006, - 0.045396, - -0.065931, - 0.054004, - -0.029365, - -0.040837, - -0.030018, - 0.0052824, - 0.12366, - 0.012279, - -0.01414, - 0.083267, - 0.040859, - -0.027975, - 0.008129, - 0.023506, - 0.043503, - 0.023478, - -0.013435, - 0.016135, - -0.027613, - 0.026001, - 0.024856, - -0.023254, - -0.038419, - 0.047031, - 0.061284, - 0.029852, - -0.041077, - 0.039886, - 0.03365, - -0.034831, - -0.026246, - 0.026333, - 0.067728, - 0.0043451, - -0.027645, - 0.023557, - -0.044686, - 0.016266, - 0.023868, - -0.10731, - -0.086531, - 0.026897, - 0.0063791, - -0.019413, - -0.0076194, - -0.014275, - -0.01847, - -0.027807, - 0.0079118, - -0.043838, - -0.01794, - -0.0020141, - 0.035649, - 0.014096, - 0.010116, - -0.0028877, - -0.049493, - -0.002843, - -0.020677, - 0.023917, - -0.0283, - 0.069962, - -0.028373, - 0.010636, - 0.061493, - -0.051591, - -0.064124, - -0.0083579, - 0.024839, - -0.046206, - -0.0206, - -0.024703, - -0.027986, - 0.027536, - 0.0085246, - -0.026455, - -0.015755, - -0.13222, - -0.021259, - 0.016188, - -0.015596, - -0.045774, - -0.0056369, - 0.036332, - -0.019329, - -0.014768, - 0.0096118, - 0.06583, - 0.0051896, - -0.018728, - 0.0015711, - 0.069082, - 0.063732, - -0.029244, - 0.020942, - -0.0032278, - -0.028296, - -0.044244, - -0.018359, - 0.016954, - 0.070669, - 0.010215, - -0.018215, - 0.031545, - 0.064311, - -0.009204, - -0.050377, - 0.037751, - -0.023681, - -0.048678, - 0.0072594, - 0.027548, - -0.021712, - -0.0033893, - -0.045562, - 0.008579, - 0.014837, - 0.025205, - 0.0014157, - -0.013634, - 0.0042192, - -0.00815, - 0.03287, - 0.014862, - -0.037535, - -0.0037017, - -0.033947, - 0.058427, - -0.01226, - -0.012389, - -0.0026488, - 0.008048, - -0.0052623, - -0.011284, - 0.034371, - 0.065695, - -0.04255, - 0.011405, - -0.027024, - 0.025356, - 0.020454, - 0.035984, - -0.02348, - -0.0061205, - 0.0064886, - 0.025832, - 0.01021, - 0.0047625, - 0.06221, - -0.066332, - -0.013458, - -0.000081257, - -0.04594, - 0.000019431, - 0.073988, - -0.030627, - -0.030998, - 0.069329, - 0.0025628, - 0.020299, - 0.01681, - 0.0062264, - -0.014441, - 0.029404, - 0.033225, - -0.021223, - 0.027361, - -0.046827, - 0.056504, - 0.032388, - -0.0039337, - -0.013705, - -0.030694, - -0.02998, - 0.036192, - 0.0031178, - -0.010116 - ], - "motoring": [ - 0.033261, - -0.045558, - 0.087242, - 0.073841, - -0.037505, - 0.034552, - -0.05165, - -0.094027, - 0.11527, - 0.025319, - 0.067346, - -0.053489, - 0.0041179, - 0.022524, - 0.04854, - 0.049092, - 0.055799, - -0.051258, - 0.068669, - -0.015243, - 0.053626, - 0.023008, - 0.01157, - 0.060466, - 0.044, - 0.012516, - 0.0070649, - 0.042304, - 0.021704, - 0.046371, - 0.024686, - 0.0049468, - 0.10527, - -0.080941, - 0.11669, - 0.016977, - -0.012278, - 0.0067527, - 0.036062, - -0.027266, - 0.051287, - -0.11938, - 0.0073269, - 0.012036, - -0.0045107, - -0.0086698, - -0.039266, - -0.0052398, - -0.029201, - -0.0087418, - 0.036379, - 0.0013139, - 0.018377, - 0.02839, - -0.050568, - -0.052843, - -0.064623, - -0.045584, - -0.020089, - -0.0026257, - 0.050107, - -0.0046344, - 0.022505, - 0.068754, - 0.080946, - 0.036993, - -0.028783, - 0.00065373, - 0.012406, - 0.037587, - 0.052326, - -0.0022818, - 0.061466, - -0.047251, - 0.029844, - 0.0013241, - -0.055524, - 0.0053278, - -0.018899, - -0.00039471, - -0.052616, - 0.049664, - -0.044303, - 0.057611, - -0.036576, - 0.0071234, - 0.035748, - 0.0036316, - 0.029585, - -0.075369, - 0.054421, - 0.063922, - -0.066857, - 0.062441, - -0.0070908, - 0.06242, - -0.046642, - 0.045402, - -0.036173, - 0.0046284, - -0.036589, - 0.0075938, - -0.026491, - -0.012437, - 0.077613, - -0.11203, - 0.041359, - -0.045359, - 0.072067, - 0.010198, - 0.034635, - 0.05541, - 0.020102, - 0.047545, - -0.0093107, - -0.015794, - 0.0026669, - 0.007559, - -0.055253, - -0.011885, - 0.020243, - 0.072166, - -0.061939, - 0.010032, - 0.082427, - -0.035463, - -0.055746, - -0.047399, - 0.034954, - 0.10015, - 0.004257, - 0.036899, - 0.056802, - -0.046164, - 0.034258, - -0.049819, - 0.062948, - 0.023401, - -0.002178, - 0.00030882, - -0.010541, - 0.0087481, - 0.091415, - 0.037041, - -0.019395, - 0.0040668, - 0.033261, - 0.00532, - 0.010531, - -0.046787, - 0.11309, - 0.095461, - 0.0030475, - -0.05164, - 0.0436, - 0.0036779, - -0.0096785, - 0.055034, - -0.03978, - -0.039897, - 0.035541, - -0.019901, - -0.056498, - 0.060847, - -0.0040189, - -0.064225, - 0.079193, - -0.013105, - 0.019025, - 0.00817, - -0.0023637, - -0.006922, - 0.0047732, - 0.046936, - 0.029323, - 0.041008, - -0.070304, - -0.0013974, - -0.01472, - -0.0031545, - -0.028323, - -0.048361, - -0.048881, - -0.065052, - 0.003472, - -0.019314, - -0.046681, - 0.073195, - 0.047303, - -0.036866, - 0.00077528, - 0.04634, - 0.016311, - 0.015799, - 0.0053169, - 0.076343, - 0.017114, - -0.029502, - -0.027734, - 0.025356, - -0.15997, - 0.050003, - 0.033116, - -0.047064, - 0.050589, - 0.086608, - -0.023159, - 0.033515, - -0.014106, - 0.0021683, - 0.11606, - -0.0045531, - -0.01927, - 0.0038306, - -0.000206, - 0.012026, - -0.096965, - -0.04058, - 0.012068, - -0.03333, - -0.08064, - -0.081709, - -0.0035509, - 0.083843, - -0.053835, - 0.0058701, - -0.0084161, - 0.1077, - -0.00033899, - -0.017847, - 0.039907, - -0.00029175, - -0.022838, - -0.013644, - 0.030145, - -0.049849, - 0.016064, - -0.019443, - 0.048927, - -0.022091, - 0.0026016, - 0.0065866, - -0.037263, - -0.0022137, - -0.10482, - -0.035517, - 0.070678, - -0.05453, - 0.046353, - -0.022265, - 0.12371, - 0.046019, - 0.019982, - 0.0063085, - -0.028376, - -0.022888, - -0.032813, - -0.0045486, - -0.0059941, - 0.084003, - 0.025442, - 0.041336, - -0.059136, - 0.08325, - 0.0042031, - 0.010373, - 0.050014, - 0.026045, - 0.1054, - 0.013227, - -0.018731, - 0.061653, - -0.10235, - -0.0026464, - 0.0051748, - -0.046755, - 0.1104, - 0.118, - 0.0012523, - 0.042234, - 0.1161, - 0.06184, - -0.015279, - -0.010279, - 0.015608, - -0.066955, - 0.0027098, - -0.033443, - 0.047123, - 0.10264, - 0.074619, - 0.0090117, - -0.034674, - -0.052841, - -0.038977, - -0.058645, - -0.03784, - 0.042203, - -0.030318, - -0.071982 - ], - "fitness": [ - -0.053204, - -0.068326, - -0.049538, - 0.0085187, - -0.050953, - 0.018268, - 0.014132, - -0.079922, - 0.14833, - 0.044524, - -0.030361, - -0.033269, - -0.0094016, - -0.022608, - -0.016902, - -0.021367, - 0.10654, - 0.014233, - 0.06289, - -0.0026202, - -0.027878, - -0.0071952, - 0.051441, - 0.062926, - 0.002886, - -0.042113, - -0.009053, - 0.01388, - 0.0044193, - 0.01681, - -0.017995, - -0.055259, - 0.077184, - -0.082609, - 0.026442, - 0.064909, - 0.087485, - -0.085999, - 0.10008, - 0.093113, - 0.057873, - -0.13004, - -0.096913, - -0.042137, - 0.0511, - -0.068705, - 0.012914, - -0.061841, - -0.024461, - 0.00061601, - 0.05446, - 0.043054, - 0.055239, - -0.0012417, - -0.057659, - 0.0044131, - -0.027561, - 0.011597, - -0.038057, - -0.031818, - -0.017841, - 0.021575, - 0.089803, - 0.071737, - 0.057938, - -0.061665, - -0.019015, - -0.010097, - -0.078543, - -0.024376, - 0.095464, - -0.072624, - 0.013273, - -0.0067309, - 0.09264, - 0.040257, - -0.0082462, - -0.0089905, - -0.11679, - 0.0035612, - -0.038201, - 0.029886, - -0.0251, - 0.082128, - -0.041108, - -0.055997, - -0.022503, - -0.01149, - 0.030861, - 0.025782, - 0.011191, - 0.019689, - -0.11683, - 0.024961, - -0.018066, - 0.073895, - -0.082013, - 0.014724, - 0.071955, - 0.012182, - -0.033527, - 0.136, - 0.078163, - -0.020776, - -0.0015993, - -0.073119, - 0.0096227, - -0.055914, - 0.0076864, - 0.027206, - 0.010142, - 0.089454, - 0.088699, - -0.030081, - 0.078431, - 0.047118, - -0.01479, - 0.092785, - -0.044055, - 0.01681, - 0.042175, - 0.059122, - 0.033584, - -0.010655, - 0.09643, - -0.071421, - 0.024196, - -0.12483, - 0.16773, - 0.10835, - 0.039166, - -0.068124, - 0.072434, - -0.013301, - -0.070282, - 0.027988, - 0.06411, - 0.045739, - 0.019088, - -0.062428, - 0.027765, - -0.025153, - -0.029113, - -0.0070316, - -0.02507, - 0.015996, - -0.02602, - -0.087886, - 0.0090786, - 0.090774, - 0.018347, - 0.094586, - -0.067711, - -0.11177, - -0.0038969, - 0.055145, - -0.053655, - 0.088254, - 0.042808, - -0.0012621, - 0.078871, - 0.015984, - -0.13564, - 0.049012, - 0.031007, - 0.0095518, - -0.021715, - 0.029156, - -0.049417, - 0.031105, - 0.066674, - 0.026118, - 0.083162, - -0.023486, - 0.010154, - 0.073498, - 0.031553, - 0.054849, - -0.014705, - 0.0023138, - 0.036303, - -0.066791, - -0.02748, - -0.067644, - 0.059446, - -0.075594, - -0.06401, - 0.10853, - -0.10466, - 0.19065, - 0.039406, - 0.079788, - 0.048347, - -0.068662, - 0.13121, - -0.03977, - 0.01443, - -0.0044621, - 0.034264, - -0.034013, - -0.16788, - 0.051549, - 0.078497, - -0.023584, - -0.0085241, - -0.043933, - 0.078565, - -0.036313, - 0.0072474, - 0.020643, - 0.1304, - -0.013731, - -0.036033, - 0.04447, - 0.019101, - 0.048761, - -0.063267, - 0.030455, - -0.029811, - 0.055995, - -0.05978, - 0.038524, - -0.019868, - 0.10729, - 0.047261, - -0.084094, - -0.051365, - 0.086711, - -0.0038792, - -0.035448, - -0.044333, - -0.055635, - -0.10779, - 0.058175, - -0.016249, - 0.057328, - -0.069117, - 0.0052954, - 0.0085474, - -0.0064755, - 0.058253, - 0.017988, - 0.0378, - -0.041772, - -0.05708, - 0.15713, - 0.055934, - -0.064593, - -0.030399, - 0.033043, - 0.096924, - 0.010446, - -0.012991, - -0.048311, - 0.025965, - -0.043946, - 0.0085857, - 0.057319, - 0.047613, - 0.033638, - -0.021718, - -0.00928, - -0.0012764, - -0.0075257, - 0.0716, - -0.027906, - 0.01453, - 0.061008, - 0.061184, - -0.013386, - -0.022654, - 0.072139, - -0.1108, - -0.062029, - 0.013847, - -0.032877, - 0.017913, - 0.04886, - 0.01618, - -0.039504, - 0.12699, - 0.0008582, - 0.0043986, - -0.013255, - 0.066262, - 0.0003407, - 0.02111, - 0.033853, - 0.014747, - 0.034864, - 0.04878, - -0.02589, - 0.0025367, - -0.0067675, - 0.027043, - -0.054919, - -0.058776, - 0.03985, - -0.035621, - -0.031953 - ], - "caretakers": [ - 0.024381, - -0.099638, - -0.040971, - -0.019745, - -0.044943, - -0.04025, - -0.024709, - -0.074715, - 0.015128, - 0.016219, - 0.044831, - 0.0078451, - 0.031108, - 0.013387, - -0.020996, - 0.0071767, - 0.059398, - 0.046189, - 0.042089, - -0.012589, - 0.0019918, - -0.054032, - 0.011285, - 0.033108, - 0.015081, - -0.037828, - -0.021643, - -0.0060261, - 0.04377, - -0.0025585, - 0.031935, - -0.024982, - 0.01064, - -0.031259, - -0.040579, - 0.051588, - -0.053457, - -0.042456, - 0.028771, - -0.042945, - -0.054471, - -0.095087, - -0.012552, - 0.0813, - 0.048151, - 0.0091489, - 0.0056251, - 0.066543, - -0.058891, - -0.037204, - -0.0039128, - 0.025298, - 0.0018875, - -0.0014065, - -0.023491, - -0.061502, - -0.021753, - -0.036275, - -0.015829, - -0.061527, - 0.073074, - -0.029015, - 0.077818, - 0.026219, - 0.016911, - 0.024455, - 0.003481, - -0.05112, - 0.001388, - -0.032837, - 0.017685, - 0.037137, - 0.086163, - -0.042398, - -0.017408, - 0.06465, - -0.052786, - -0.044379, - 0.0039313, - -0.062584, - -0.040112, - 0.047117, - 0.052656, - 0.031276, - -0.005053, - -0.017054, - 0.040696, - -0.023767, - -0.027608, - -0.026616, - 0.0080365, - 0.0084935, - -0.065354, - 0.0047317, - 0.033699, - 0.067669, - 0.015769, - 0.042943, - 0.075521, - -0.045888, - 0.048762, - 0.027655, - 0.047559, - -0.025629, - 0.027181, - -0.045435, - 0.02151, - -0.00168, - -0.044019, - -0.055191, - -0.018977, - 0.081324, - 0.081617, - 0.030472, - 0.010411, - 0.0057638, - 0.0043133, - -0.0035559, - -0.060928, - 0.023353, - -0.056197, - 0.010232, - 0.082406, - -0.024107, - 0.087587, - 0.035397, - 0.0068818, - -0.054733, - 0.083389, - 0.094489, - 0.023738, - 0.12112, - -0.004496, - 0.032727, - -0.0412, - 0.031539, - -0.061345, - 0.037405, - 0.026934, - 0.0076926, - -0.036872, - -0.015336, - 0.033186, - 0.0031298, - 0.021805, - -0.047427, - -0.027279, - 0.049772, - -0.038972, - -0.018408, - 0.056113, - 0.074118, - -0.026641, - -0.024635, - 0.032963, - -0.046558, - 0.026595, - 0.030497, - 0.028392, - -0.013882, - 0.033116, - 0.082252, - 0.032949, - 0.010392, - 0.017715, - 0.0091002, - 0.050056, - 0.018027, - 0.026657, - -0.015458, - -0.0082427, - 0.024437, - -0.056262, - 0.023244, - 0.017766, - 0.0087663, - 0.0098071, - 0.077906, - -0.051691, - 0.020279, - 0.046934, - 0.0098082, - -0.0048466, - 0.004632, - -0.053186, - -0.057956, - 0.058042, - 0.045351, - -0.01982, - -0.025224, - 0.014102, - 0.1038, - -0.10368, - -0.015425, - -0.0030463, - 0.0071512, - 0.018619, - 0.0094815, - 0.015189, - -0.005016, - -0.12536, - 0.087727, - -0.058207, - -0.061269, - 0.051289, - -0.037284, - -0.042943, - -0.034375, - -0.00171, - -0.044271, - 0.078136, - -0.01047, - 0.055771, - 0.095483, - -0.10124, - -0.018564, - -0.055736, - 0.048039, - -0.042858, - -0.0011336, - 0.034465, - -0.016424, - 0.0072306, - 0.077109, - 0.07583, - -0.026426, - -0.00016041, - 0.024788, - -0.0013877, - -0.020807, - -0.036821, - 0.021176, - -0.051525, - -0.037478, - 0.025532, - 0.0076903, - -0.023542, - 0.064829, - -0.02037, - 0.018062, - 0.018599, - 0.022947, - 0.031607, - 0.001647, - 0.031289, - 0.029913, - -0.01755, - -0.02734, - -0.037717, - -0.029467, - -0.0102, - 0.03998, - 0.073627, - -0.0024008, - 0.036948, - -0.01472, - 0.011026, - 0.030631, - -0.0036029, - -0.043288, - 0.0041443, - -0.064058, - -0.0034542, - 0.052676, - 0.036103, - 0.0043838, - 0.029663, - -0.0021533, - 0.0083748, - -0.0018999, - -0.067602, - 0.076107, - -0.094746, - -0.022645, - 0.0027145, - 0.018374, - 0.023838, - 0.020631, - 0.041943, - 0.0031854, - 0.02909, - -0.020398, - 0.038059, - 0.015443, - 0.047822, - 0.091031, - -0.058813, - -0.1048, - 0.020272, - 0.013409, - 0.037414, - 0.067749, - -0.025108, - 0.055839, - 0.0092087, - 0.033165, - 0.026987, - 0.084089, - 0.011064, - 0.064384 - ], - "volleyball": [ - 0.034324, - -0.10785, - 0.06091, - -0.013362, - 0.007763, - -0.05795, - -0.018471, - -0.09147, - -0.025598, - 0.0053131, - 0.026534, - -0.00095947, - 0.065559, - 0.013339, - -0.042013, - 0.015826, - 0.068784, - 0.024952, - 0.016864, - -0.022046, - -0.0095845, - -0.06689, - -0.039639, - 0.045925, - 0.043344, - -0.012905, - -0.050162, - -0.041447, - -0.0227, - -0.027544, - 0.033553, - -0.056074, - -0.007203, - -0.034851, - 0.044075, - 0.0057562, - 0.10823, - -0.068146, - 0.056023, - 0.0013826, - 0.016805, - -0.10039, - 0.020327, - -0.038362, - 0.03451, - 0.032593, - -0.0026338, - -0.071419, - -0.057765, - 0.075553, - 0.048825, - -0.006074, - 0.047857, - 0.074283, - -0.040406, - 0.0066018, - 0.064257, - 0.061818, - 0.004602, - 0.0027329, - -0.002299, - -0.030933, - 0.05369, - 0.036701, - -0.031669, - -0.025527, - 0.085251, - -0.005484, - 0.010124, - -0.0047417, - 0.0081634, - -0.048092, - 0.040477, - 0.025616, - 0.065243, - 0.0061348, - -0.0033028, - 0.0072114, - -0.017807, - 0.017824, - -0.020232, - -0.0082432, - -0.053906, - -0.0089426, - -0.0016719, - -0.020838, - 0.0020007, - -0.031723, - -0.02895, - 0.026891, - -0.0025571, - 0.073713, - -0.083645, - 0.0086839, - 0.034211, - 0.104, - -0.01752, - 0.015912, - 0.048547, - -0.060997, - 0.059095, - 0.09036, - -0.0085909, - -0.031373, - 0.0039538, - -0.070831, - -0.067964, - 0.0031541, - -0.0087901, - -0.015871, - -0.037285, - 0.042616, - 0.039732, - 0.012391, - 0.042022, - -0.0035272, - 0.010485, - -0.013126, - 0.017007, - 0.075984, - -0.0078471, - 0.080104, - 0.03711, - -0.031811, - 0.078764, - -0.035267, - -0.024902, - -0.047743, - 0.0029645, - 0.054917, - -0.013543, - -0.01913, - 0.019922, - -0.017158, - -0.060418, - -0.028261, - 0.027726, - 0.0037174, - -0.035396, - -0.05257, - -0.012624, - -0.0041475, - 0.057358, - -0.021558, - -0.0050547, - 0.013972, - -0.013356, - -0.021761, - -0.0066702, - 0.0029392, - 0.02881, - 0.078862, - 0.02127, - -0.022065, - -0.0015786, - -0.028158, - -0.0087359, - 0.0077597, - 0.020936, - 0.024466, - -0.04014, - -0.012091, - -0.068704, - 0.021215, - 0.025514, - -0.085908, - -0.085968, - 0.035044, - 0.003912, - -0.062533, - 0.054072, - 0.0096904, - -0.012402, - -0.055414, - 0.04483, - 0.0399, - 0.015066, - 0.02078, - -0.055776, - 0.039282, - 0.030265, - 0.026719, - 0.023016, - -0.05869, - -0.0026908, - -0.025611, - -0.050334, - 0.10342, - 0.083461, - -0.020674, - -0.022825, - 0.068318, - -0.0037128, - -0.003719, - 0.051638, - -0.04839, - 0.01839, - -0.027807, - 0.076723, - -0.0034407, - -0.15551, - 0.026931, - -0.0040763, - -0.012166, - 0.025387, - 0.074359, - 0.0004435, - 0.019719, - 0.02148, - -0.018512, - 0.13155, - -0.034173, - 0.033437, - 0.053007, - -0.038324, - -0.042959, - -0.055389, - 0.023342, - 0.013654, - -0.048487, - -0.026468, - -0.019844, - -0.073142, - 0.089773, - -0.033109, - 0.053557, - -0.00015652, - 0.05759, - -0.03214, - 0.0152, - 0.03566, - -0.034496, - -0.028206, - 0.0084123, - -0.031503, - 0.03903, - -0.051691, - 0.021051, - -0.05822, - -0.00070909, - 0.012825, - -0.065613, - 0.06384, - -0.067091, - -0.025873, - 0.036718, - -0.079076, - -0.020799, - -0.0050314, - -0.004316, - 0.027845, - -0.005262, - -0.046868, - -0.011856, - -0.0028037, - 0.024349, - -0.0013243, - 0.0067104, - -0.0039213, - 0.056475, - -0.015678, - 0.037297, - 0.086483, - 0.024884, - 0.028346, - -0.027572, - -0.048066, - 0.0051452, - 0.0071835, - -0.018912, - 0.023529, - 0.056926, - -0.082554, - 0.014747, - -0.041533, - -0.044707, - -0.021994, - 0.012569, - -0.020119, - 0.014422, - 0.069049, - -0.0017634, - 0.005508, - 0.023892, - -0.002936, - 0.017715, - 0.023337, - -0.010993, - 0.00063411, - -0.02787, - 0.0094018, - -0.044047, - -0.018847, - 0.012163, - 0.093123, - 0.0045359, - 0.025965, - 0.0088723, - 0.082783, - 0.00061659 - ], - "athletics": [ - 0.030305, - -0.10139, - 0.096034, - 0.018299, - -0.0052914, - -0.0655, - -0.040484, - -0.087228, - 0.072293, - 0.018322, - -0.0033732, - -0.043569, - 0.040986, - 0.042816, - 0.061029, - -0.015685, - 0.071024, - -0.041201, - 0.025223, - 0.016398, - 0.035151, - -0.082389, - 0.036559, - 0.053102, - 0.017374, - -0.00024854, - 0.014407, - -0.03556, - 0.055809, - -0.0070494, - 0.055226, - -0.046454, - 0.0023788, - -0.043928, - 0.045006, - 0.041959, - 0.080158, - -0.015942, - 0.02308, - -0.01694, - 0.035265, - -0.076692, - 0.0070204, - 0.045587, - 0.039947, - 0.0042294, - 0.06433, - -0.065139, - -0.028314, - 0.0082205, - -0.043983, - -0.025531, - 0.064359, - 0.017243, - -0.060153, - 0.085071, - -0.038757, - 0.042114, - -0.017736, - -0.012944, - 0.027595, - 0.0033624, - 0.048206, - 0.028906, - 0.037582, - -0.10713, - 0.034929, - -0.0063288, - 0.079049, - 0.026225, - 0.020089, - -0.062176, - 0.036512, - 0.01827, - 0.02869, - 0.063526, - -0.031909, - 0.0017801, - 0.031123, - 0.0092172, - 0.0015213, - 0.024223, - -0.068545, - 0.042605, - -0.013028, - -0.0098024, - -0.071995, - -0.037185, - -0.026471, - -0.041066, - 0.044167, - 0.048406, - -0.098373, - 0.050487, - 0.019851, - 0.091446, - -0.073422, - -0.017945, - 0.031207, - 0.054461, - 0.07328, - 0.076856, - -0.007944, - -0.042644, - 0.021349, - -0.031733, - -0.093698, - -0.0058378, - -0.019724, - 0.056061, - -0.030489, - 0.1218, - 0.034035, - -0.010356, - 0.05252, - 0.0079355, - -0.032253, - 0.024732, - -0.013814, - -0.023657, - 0.031333, - 0.025415, - -0.012022, - -0.00029715, - 0.048308, - -0.062836, - -0.074257, - -0.063462, - 0.00098146, - 0.11773, - -0.011677, - 0.029802, - 0.053121, - 0.03747, - -0.022883, - -0.070378, - 0.011163, - -0.025779, - 0.00052183, - -0.030584, - 0.053505, - -0.0052004, - 0.008182, - -0.00077303, - 0.00402, - -0.0072233, - -0.017563, - -0.078222, - -0.025639, - 0.0060543, - 0.073027, - 0.075665, - -0.010986, - -0.056611, - 0.0026514, - 0.025988, - 0.054064, - 0.039202, - 0.02053, - 0.010833, - -0.00461, - -0.01181, - -0.064606, - 0.029423, - 0.004133, - -0.0013821, - -0.017797, - 0.012611, - -0.068873, - -0.12312, - 0.088261, - -0.090504, - 0.021811, - 0.014941, - 0.12212, - 0.031055, - -0.019696, - 0.078501, - -0.017014, - 0.00039206, - -0.011178, - -0.052347, - -0.032569, - -0.021303, - -0.026073, - -0.032567, - -0.073647, - 0.086327, - 0.035683, - 0.023782, - -0.05886, - 0.089472, - -0.040566, - -0.028424, - 0.01218, - -0.1131, - -0.035897, - -0.058299, - 0.058904, - -0.024415, - -0.15411, - 0.02998, - -0.022978, - -0.082467, - 0.011542, - 0.022893, - -0.044326, - -0.046855, - -0.015734, - -0.020814, - 0.12501, - 0.018778, - 0.036353, - -0.0057984, - -0.0035643, - -0.010334, - 0.027976, - 0.018775, - -0.0041974, - -0.00078699, - -0.056415, - -0.012156, - -0.057822, - 0.094082, - -0.025565, - 0.065555, - -0.010414, - 0.028231, - -0.010031, - -0.013101, - -0.0046821, - -0.0031219, - -0.053162, - -0.039885, - -0.0078044, - 0.06738, - 0.0048161, - -0.052702, - -0.061619, - -0.015548, - -0.024371, - 0.018805, - 0.058708, - -0.042247, - 0.053408, - 0.069124, - -0.01855, - -0.080809, - -0.0011825, - 0.023736, - 0.055329, - 0.059753, - -0.054345, - -0.035081, - -0.024647, - 0.012413, - -0.050189, - -0.0047238, - 0.017154, - 0.058134, - -0.027797, - -0.056287, - 0.061311, - 0.014541, - 0.039263, - 0.010875, - -0.038469, - -0.0085082, - 0.027862, - 0.0067349, - 0.027944, - 0.081615, - -0.10386, - -0.026316, - -0.0245, - -0.0040345, - -0.040223, - -0.036119, - -0.04714, - -0.00030641, - 0.077192, - -0.032198, - -0.023516, - 0.013236, - -0.019663, - -0.015615, - 0.03086, - -0.046031, - -0.07388, - 0.0099171, - 0.090265, - -0.02353, - -0.028429, - -0.011151, - -0.0056526, - 0.028177, - -0.043646, - 0.051421, - 0.024213, - -0.034056 - ], - "Sport": [ - 0.15726, - -0.0074257, - 0.078853, - -0.0096548, - 0.060772, - -0.099798, - -0.077339, - -0.045831, - 0.073366, - 0.0032209, - -0.035606, - -0.11852, - -0.019766, - -0.016617, - 0.12425, - -0.019445, - 0.10525, - 0.0048562, - 0.07764, - 0.030833, - -0.045031, - -0.060162, - 0.074947, - 0.081666, - 0.096119, - -0.027666, - 0.012197, - 0.0020634, - -0.0056504, - 0.031225, - 0.020072, - -0.07827, - 0.054286, - 0.04623, - 0.1727, - 0.061091, - 0.10253, - -0.022137, - 0.042242, - 0.053281, - 0.11233, - 0.092535, - -0.030506, - 0.055288, - 0.0466, - -0.047146, - 0.011001, - -0.014478, - -0.055132, - -0.016082, - -0.014852, - -0.041425, - 0.05894, - -0.011327, - -0.019994, - -0.0057413, - 0.030955, - -0.073569, - -0.16827, - 0.064547, - 0.046166, - -0.032432, - -0.16852, - 0.02988, - 0.10881, - 0.00068436, - -0.051386, - -0.0096364, - 0.037405, - 0.069026, - 0.031113, - -0.07, - -0.04236, - 0.12364, - 0.051348, - 0.055759, - -0.010751, - -0.13948, - -0.12119, - -0.031432, - 0.0021774, - 0.020202, - 0.037448, - 0.028863, - 0.058238, - -0.068546, - -0.093292, - -0.12136, - 0.031587, - -0.041028, - 0.063231, - -0.015114, - -0.089243, - 0.014295, - 0.03612, - 0.20199, - 0.016072, - -0.028567, - 0.037713, - -0.052248, - -0.015317, - 0.067312, - 0.030613, - -0.053799, - -0.055548, - -0.21931, - -0.07514, - 0.043589, - 0.027798, - -0.0029732, - 0.023504, - 0.10705, - 0.068667, - 0.037622, - 0.089188, - -0.052786, - -0.021432, - 0.081486, - 0.16589, - 0.0052889, - 0.16829, - 0.073191, - -0.062745, - -0.072194, - 0.017682, - -0.048301, - -0.10289, - -0.11574, - 0.072726, - 0.2955, - -0.0035998, - 0.07288, - 0.092879, - -0.032173, - -0.071384, - 0.014286, - 0.037246, - -0.029001, - -0.0047478, - -0.097844, - -0.0046995, - 0.0116, - 0.10197, - -0.075964, - -0.059391, - 0.034396, - -0.011902, - -0.11911, - 0.0079824, - -0.032727, - 0.041634, - 0.086411, - 0.039606, - -0.092209, - -0.11321, - 0.045951, - 0.052347, - 0.075033, - 0.046004, - -0.012618, - -0.0076424, - -0.038975, - -0.13642, - 0.09883, - 0.017484, - 0.056536, - 0.04889, - 0.041243, - -0.064419, - -0.10791, - 0.10825, - -0.0077443, - 0.021333, - 0.051604, - 0.059729, - 0.020209, - -0.039647, - -0.012428, - 0.0070807, - -0.038837, - -0.083083, - -0.089486, - 0.01552, - 0.053466, - 0.021498, - 0.22713, - 0.0049241, - 0.20712, - 0.03709, - 0.012532, - -0.02066, - 0.11255, - -0.07034, - -0.057213, - 0.060266, - -0.0096455, - -0.048189, - -0.041177, - 0.10225, - 0.034649, - 0.014024, - 0.21555, - -0.061326, - -0.13132, - -0.049145, - 0.014411, - -0.031093, - 0.02098, - -0.0057545, - 0.05615, - 0.21014, - -0.0309, - -0.018228, - -0.01862, - 0.068995, - 0.024335, - -0.13298, - -0.06266, - 0.035686, - 0.14102, - -0.068029, - -0.021437, - -0.056186, - 0.12659, - -0.02234, - -0.016832, - -0.039628, - 0.040435, - -0.042794, - -0.022932, - 0.020543, - -0.053326, - 0.045015, - -0.018593, - 0.003511, - 0.080437, - -0.09713, - -0.06736, - -0.012858, - -0.11081, - 0.095518, - -0.015567, - 0.032373, - 0.0091361, - 0.20929, - 0.049456, - -0.048984, - -0.00092706, - 0.031881, - -0.12506, - -0.016216, - 0.069108, - 0.049798, - -0.0027125, - -0.03366, - -0.046521, - -0.081428, - 0.038961, - 0.11497, - 0.084868, - -0.035455, - -0.0090671, - 0.08904, - -0.0043649, - -0.0079135, - 0.01918, - 0.0021851, - 0.011424, - 0.17926, - -0.0016357, - 0.065957, - 0.13052, - -0.09983, - 0.060311, - -0.08461, - -0.13685, - -0.035664, - 0.044033, - -0.039547, - -0.050545, - -0.0034415, - 0.014244, - -0.0053321, - 0.066968, - 0.079076, - 0.071969, - -0.011609, - -0.0051952, - 0.041071, - -0.033896, - 0.1461, - -0.055126, - 0.016754, - -0.0356, - -0.028173, - -0.022916, - -0.081929, - -0.0077851, - 0.091126, - -0.079107 - ], - "meal": [ - -0.083945, - -0.052849, - 0.02822, - -0.031151, - 0.019706, - 0.068437, - -0.1058, - -0.10893, - 0.020551, - 0.062437, - -0.04082, - 0.022434, - -0.029726, - -0.064913, - -0.008386, - -0.047023, - 0.068696, - -0.035256, - 0.040737, - 0.043388, - 0.0034709, - 0.063772, - -0.097999, - 0.029631, - -0.036639, - 0.026762, - -0.045896, - 0.060896, - -0.048209, - -0.061426, - 0.085903, - 0.0081877, - -0.03685, - -0.19063, - 0.044989, - -0.0015127, - -0.033143, - 0.23417, - 0.13124, - 0.027323, - -0.079647, - -0.18017, - -0.050439, - 0.046102, - 0.086488, - 0.041688, - 0.08108, - -0.091639, - -0.027037, - 0.024046, - -0.030985, - 0.08882, - 0.08228, - -0.10385, - -0.076205, - -0.019538, - -0.021175, - -0.13047, - -0.082118, - -0.098585, - -0.056521, - -0.053638, - 0.23889, - 0.15091, - -0.012905, - 0.12445, - 0.083959, - 0.078016, - -0.13608, - -0.047391, - -0.00097733, - -0.063253, - 0.024882, - -0.065813, - -0.059933, - 0.0019662, - -0.042101, - -0.0078303, - 0.024551, - 0.090145, - -0.0068849, - -0.12145, - 0.12805, - 0.080696, - -0.10221, - -0.017796, - -0.07179, - -0.061355, - -0.02405, - -0.017842, - 0.034495, - 0.025658, - -0.11748, - 0.019166, - -0.035366, - 0.052236, - -0.00037373, - 0.099787, - 0.087095, - -0.063934, - 0.062306, - 0.024888, - -0.0054212, - 0.019696, - -0.076733, - -0.11271, - -0.16887, - 0.0069295, - -0.017626, - 0.059456, - 0.01183, - 0.0066575, - 0.089979, - 0.11141, - 0.058607, - -0.0782, - -0.083771, - 0.016447, - -0.084605, - -0.074607, - 0.013762, - 0.088506, - -0.028707, - 0.015327, - 0.076871, - -0.085699, - 0.049839, - -0.18924, - 0.010063, - 0.064909, - 0.078765, - -0.031426, - 0.0099776, - -0.063394, - -0.10995, - 0.040703, - -0.081915, - 0.050369, - 0.022127, - 0.010718, - 0.018026, - -0.073925, - -0.021748, - -0.076045, - 0.04948, - -0.057274, - 0.083076, - 0.020527, - -0.048127, - -0.013567, - 0.044775, - 0.049486, - -0.046733, - -0.11937, - 0.15219, - -0.029146, - -0.11907, - 0.015994, - -0.02736, - -0.062888, - 0.0678, - 0.046223, - -0.08059, - 0.035181, - 0.05924, - 0.088214, - -0.064867, - -0.0023307, - 0.06266, - -0.011984, - 0.022011, - -0.037956, - -0.054273, - 0.037495, - -0.0051964, - 0.044523, - -0.07679, - 0.019705, - 0.012276, - -0.025739, - -0.05445, - -0.05338, - 0.06132, - -0.070897, - -0.071842, - -0.14093, - 0.068571, - 0.15272, - 0.027424, - -0.10488, - 0.14508, - 0.047404, - 0.093112, - -0.023568, - 0.056108, - -0.024631, - -0.03222, - -0.076215, - 0.012423, - 0.0017731, - -0.23055, - 0.17408, - 0.014427, - -0.015907, - -0.09843, - 0.0064454, - -0.028943, - -0.054235, - -0.036321, - -0.072785, - 0.15378, - -0.043154, - -0.010508, - 0.0473, - 0.09009, - 0.051873, - 0.074653, - 0.091523, - -0.003494, - -0.12359, - 0.010799, - -0.0143, - -0.062502, - 0.12699, - 0.03753, - 0.028856, - 0.0093263, - 0.024236, - -0.038328, - 0.048214, - -0.09092, - -0.19395, - -0.0198, - -0.040618, - 0.023162, - 0.051412, - -0.026339, - -0.021684, - -0.031437, - -0.029831, - 0.098718, - -0.035, - -0.074263, - -0.097837, - -0.075479, - 0.15812, - 0.076965, - 0.017023, - 0.026849, - 0.025771, - 0.0048841, - -0.072005, - -0.11669, - -0.0024005, - -0.045411, - -0.017028, - -0.04754, - -0.0027602, - -0.03001, - 0.15384, - 0.057435, - 0.022566, - 0.047048, - -0.12806, - 0.032919, - 0.050286, - -0.0084484, - -0.026881, - -0.10963, - 0.11153, - 0.029666, - 0.13796, - -0.14209, - -0.10558, - -0.042322, - -0.052912, - 0.01517, - -0.076349, - 0.071179, - 0.12528, - 0.1647, - 0.07746, - 0.041168, - 0.023458, - -0.020147, - 0.080784, - -0.032433, - 0.063777, - 0.025746, - -0.034241, - 0.16308, - 0.04457, - -0.0891, - -0.081178, - 0.02208, - 0.018633, - 0.099198, - 0.027772, - -0.067417, - 0.03298 - ], - "lifestyles": [ - 0.0094043, - -0.014104, - 0.060102, - 0.021841, - -0.024953, - 0.012965, - 0.016342, - -0.049119, - 0.022923, - 0.083966, - -0.013814, - -0.068485, - -0.079378, - -0.040812, - 0.015377, - 0.005799, - 0.09232, - -0.0061774, - 0.047839, - 0.015349, - 0.0023618, - -0.030911, - -0.040401, - 0.079988, - -0.050092, - -0.0086842, - 0.0022163, - 0.054757, - 0.047104, - 0.023062, - -0.028338, - -0.066561, - 0.04328, - -0.011758, - 0.048729, - 0.081443, - 0.022485, - 0.038015, - -0.0024984, - 0.063918, - -0.00085324, - -0.097748, - 0.01119, - -0.029, - 0.02546, - -0.044014, - -0.019813, - -0.054778, - -0.043806, - -0.040043, - -0.11389, - -0.013289, - -0.026523, - 0.024598, - -0.052243, - 0.064007, - 0.0081624, - 0.0044282, - -0.014869, - -0.0090209, - 0.058505, - -0.0039722, - 0.10351, - -0.0010919, - 0.10503, - 0.019266, - -0.019373, - 0.028716, - 0.017288, - -0.041646, - 0.036781, - 0.039816, - 0.012392, - -0.04181, - 0.04099, - 0.046197, - 0.070533, - 0.00071218, - -0.065971, - 0.013302, - 0.019833, - -0.011072, - 0.033581, - 0.080063, - 0.023026, - -0.027937, - -0.015754, - 0.011958, - 0.026114, - -0.019831, - 0.040785, - 0.024082, - -0.077058, - 0.067922, - -0.050803, - 0.061441, - -0.000025539, - 0.039788, - 0.028941, - -0.013746, - 0.026458, - 0.017982, - 0.05487, - -0.045021, - 0.018835, - -0.015091, - -0.02171, - -0.00039929, - 0.053091, - -0.039848, - -0.0075027, - 0.0094541, - 0.05952, - 0.037032, - -0.022407, - -0.042384, - -0.013121, - 0.003317, - -0.034572, - -0.013043, - -0.0068158, - -0.0081206, - 0.028392, - -0.028711, - 0.097924, - -0.00019082, - -0.031857, - -0.035226, - 0.057913, - 0.07832, - 0.064559, - 0.04023, - 0.1121, - -0.053995, - -0.018825, - 0.023674, - -0.028705, - 0.033727, - -0.06032, - -0.015168, - 0.050997, - -0.029221, - 0.02176, - 0.097385, - 0.052454, - -0.02588, - 0.024925, - -0.015664, - 0.027396, - -0.026485, - 0.042533, - 0.086667, - -0.043685, - 0.0092266, - -0.026781, - 0.055119, - -0.006865, - 0.095772, - 0.079366, - -0.055092, - 0.065211, - 0.044811, - -0.034751, - 0.034556, - -0.013001, - 0.023386, - -0.0056844, - -0.010666, - -0.023346, - -0.012283, - -0.053053, - -0.053531, - 0.026579, - -0.001562, - -0.03936, - 0.063691, - -0.01447, - 0.026699, - 0.0023985, - -0.018363, - 0.025894, - 0.0080145, - -0.0012718, - -0.0022426, - 0.0061551, - -0.078934, - 0.026429, - 0.10439, - -0.045951, - -0.011289, - 0.037976, - 0.055686, - -0.036086, - 0.049536, - 0.0061137, - -0.024969, - -0.020429, - -0.049457, - 0.0085026, - 0.040382, - -0.1306, - -0.0068921, - 0.02545, - -0.05836, - 0.015876, - 0.077821, - 0.029101, - -0.0057807, - 0.075053, - 0.0054378, - 0.071147, - 0.0011709, - 0.078171, - 0.00094181, - 0.039809, - 0.013295, - -0.046527, - -0.014382, - -0.084918, - 0.039062, - -0.06459, - -0.030605, - 0.0047807, - 0.069649, - 0.0024815, - 0.014473, - 0.0064486, - 0.043556, - -0.030425, - -0.015784, - 0.0098332, - -0.00067968, - -0.10204, - -0.015052, - 0.10639, - 0.060138, - -0.00085403, - 0.042069, - 0.027421, - 0.024628, - -0.05323, - 0.022096, - -0.013291, - -0.0067233, - 0.013289, - 0.081459, - -0.014987, - -0.096309, - 0.035457, - -0.038902, - 0.025384, - -0.047303, - -0.012339, - -0.084752, - -0.016964, - 0.038993, - -0.045782, - 0.0082702, - 0.035058, - 0.0075872, - -0.0092983, - 0.02664, - 0.013063, - -0.040782, - 0.066036, - -0.016036, - 0.034484, - 0.024865, - 0.043496, - 0.057746, - -0.041186, - 0.048101, - -0.07199, - -0.060208, - 0.055973, - -0.027297, - 0.012909, - 0.070201, - -0.026364, - 0.0031462, - 0.047246, - 0.022039, - 0.025305, - 0.0022729, - 0.012948, - 0.02291, - -0.042085, - 0.015762, - 0.045033, - -0.01996, - 0.053253, - 0.0097626, - -0.021727, - 0.0013135, - -0.018478, - 0.05995, - 0.015095, - 0.090178, - -0.062758, - 0.0023948 - ], - "vogue": [ - -0.032899, - -0.075893, - 0.0023934, - -0.013765, - -0.048674, - -0.028104, - 0.017552, - -0.073734, - 0.070795, - -0.034779, - -0.028049, - -0.050654, - -0.018927, - -0.050272, - -0.0054565, - -0.030934, - 0.14648, - 0.040288, - 0.085318, - 0.051916, - -0.039619, - 0.029692, - -0.0050482, - 0.062704, - 0.072333, - -0.089238, - 0.062733, - 0.078918, - -0.023409, - -0.012848, - -0.012249, - -0.13465, - 0.013939, - -0.067677, - 0.025461, - 0.017615, - 0.096338, - 0.027414, - 0.049791, - 0.069972, - 0.018443, - -0.063067, - -0.10494, - -0.0078175, - 0.013905, - 0.002749, - 0.070913, - 0.007664, - 0.056027, - -0.023354, - 0.075096, - 0.025006, - -0.0080168, - 0.065341, - -0.15954, - -0.05362, - 0.053595, - 0.0084407, - -0.024747, - 0.081226, - 0.10325, - -0.032418, - 0.077247, - -0.034205, - -0.0090926, - 0.024733, - -0.095802, - -0.060344, - 0.012281, - -0.07854, - -0.072539, - 0.026086, - -0.00078685, - -0.045243, - 0.048708, - 0.045502, - 0.020786, - 0.035723, - -0.012501, - -0.04921, - -0.019902, - -0.027073, - 0.057628, - 0.093705, - 0.020234, - 0.009251, - -0.063416, - 0.021603, - -0.077715, - 0.065034, - -0.0028429, - -0.010391, - -0.069647, - -0.017563, - 0.079865, - 0.022808, - -0.17349, - -0.095001, - -0.1365, - 0.078453, - -0.022185, - 0.058897, - 0.022955, - -0.020021, - 0.069184, - -0.050921, - 0.044228, - 0.053787, - 0.055409, - 0.070004, - 0.024573, - 0.079715, - 0.014713, - 0.086493, - -0.16034, - -0.028476, - 0.054681, - 0.01462, - -0.051053, - -0.013775, - -0.011936, - -0.023343, - -0.033475, - 0.06124, - -0.063595, - 0.055897, - -0.057093, - -0.039241, - -0.010074, - 0.056818, - -0.088774, - 0.0080438, - 0.0071688, - 0.0054089, - -0.058707, - 0.045283, - -0.068004, - 0.030505, - 0.044187, - -0.092762, - 0.088754, - -0.010131, - -0.0086626, - 0.15396, - 0.037743, - -0.032048, - 0.048396, - 0.035255, - 0.070435, - -0.033851, - 0.039641, - 0.034649, - 0.01707, - -0.036879, - -0.012584, - 0.043838, - 0.014937, - 0.051284, - -0.10904, - 0.088459, - 0.046441, - 0.059517, - -0.070418, - 0.033204, - -0.042126, - -0.062194, - -0.030493, - -0.10195, - 0.050849, - -0.022691, - -0.0075522, - 0.015544, - 0.039217, - -0.029243, - -0.057946, - 0.10993, - -0.13395, - 0.054986, - -0.0032613, - -0.0044974, - 0.012171, - -0.030609, - -0.018049, - -0.14745, - 0.045092, - 0.062457, - -0.031988, - 0.19509, - -0.07952, - 0.081916, - 0.05893, - 0.11374, - 0.018888, - -0.063443, - 0.017131, - -0.054882, - 0.054206, - -0.047157, - -0.014588, - 0.10126, - -0.17932, - 0.099602, - 0.029498, - 0.052929, - 0.069371, - -0.0045628, - 0.055877, - -0.04754, - 0.051086, - -0.053231, - 0.071727, - -0.033942, - -0.020993, - 0.023891, - 0.13449, - 0.068368, - -0.045129, - -0.02833, - 0.05086, - -0.095908, - -0.021099, - -0.081605, - 0.072401, - 0.04718, - -0.058442, - -0.038308, - 0.013256, - 0.086786, - 0.0053359, - 0.0044579, - -0.038765, - -0.062685, - -0.01083, - 0.055166, - -0.000013276, - 0.00030191, - -0.0024143, - -0.072614, - 0.11354, - -0.0040873, - 0.24025, - -0.034129, - -0.033622, - 0.00080261, - -0.02899, - 0.070459, - -0.083621, - -0.03372, - -0.097105, - -0.043026, - 0.11465, - 0.013617, - -0.032465, - -0.008382, - -0.019284, - 0.029276, - -0.050285, - 0.06224, - 0.074684, - 0.08504, - 0.15173, - 0.004927, - 0.094744, - -0.0084593, - 0.0033508, - 0.061281, - 0.025966, - 0.0017266, - -0.018293, - 0.037329, - -0.024994, - 0.079927, - -0.10997, - 0.039051, - 0.11706, - -0.11994, - 0.0044847, - 0.042981, - -0.10239, - -0.047123, - 0.098826, - 0.036064, - -0.06339, - -0.098361, - -0.024357, - -0.010762, - 0.048571, - -0.0079798, - -0.0017764, - 0.12259, - -0.0012471, - -0.081048, - 0.0036907, - 0.0083228, - -0.019602, - 0.099918, - 0.076954, - 0.023285, - 0.030476, - -0.0094012 - ], - "militaristic": [ - 0.0087082, - -0.017677, - 0.047131, - -0.0098724, - -0.02177, - -0.0092319, - -0.030359, - -0.070632, - 0.0018734, - 0.092627, - 0.028278, - -0.053103, - 0.013805, - 0.059943, - 0.0011556, - 0.058992, - 0.070235, - 0.027225, - 0.036406, - 0.011005, - 0.019341, - -0.013748, - -0.029947, - 0.043939, - -0.0031087, - 0.062757, - 0.025629, - -0.010909, - 0.046597, - 0.013038, - -0.033034, - -0.057238, - 0.011486, - -0.054372, - 0.054161, - 0.043486, - -0.0018793, - 0.011204, - 0.053895, - -0.0020893, - -0.034347, - -0.098344, - 0.02815, - -0.00096578, - -0.0038855, - -0.030206, - 0.033948, - -0.043547, - -0.0264, - -0.054885, - 0.0059978, - 0.012717, - -0.025147, - 0.011421, - 0.023816, - 0.013365, - 0.043856, - -0.044632, - -0.036795, - 0.076238, - 0.0018084, - -0.029847, - 0.085114, - -0.023696, - -0.018781, - -0.020834, - 0.01542, - -0.016172, - 0.06958, - -0.0012419, - 0.032175, - -0.023006, - -0.0018303, - -0.018705, - 0.019207, - -0.005405, - 0.036389, - -0.018919, - 0.0080493, - 0.019899, - -0.011448, - -0.005738, - -0.051169, - 0.052971, - 0.0033026, - -0.021274, - -0.014625, - 0.057475, - -0.041443, - -0.00071042, - -0.0079929, - -0.01666, - -0.066603, - 0.0098946, - 0.049136, - 0.051891, - -0.076782, - -0.094579, - 0.032853, - 0.026748, - 0.077906, - 0.019677, - 0.042993, - -0.08563, - -0.036943, - -0.075948, - 0.067265, - -0.029651, - -0.028918, - 0.021588, - -0.033112, - 0.053126, - 0.038179, - 0.014795, - -0.021018, - 0.011575, - 0.0052719, - 0.033061, - -0.01415, - -0.0063349, - -0.029435, - -0.033646, - -0.026335, - -0.024301, - 0.060537, - 0.013203, - 0.018999, - 0.0079736, - -0.01465, - 0.043054, - -0.066521, - 0.039505, - 0.034757, - 0.060103, - -0.0042955, - -0.041748, - -0.013758, - 0.060106, - 0.0030267, - -0.00057743, - -0.01652, - -0.05012, - -0.0042865, - 0.012594, - -0.0094331, - 0.013929, - 0.043849, - 0.044195, - 0.025519, - -0.020546, - 0.055241, - 0.13463, - -0.038805, - 0.0061022, - -0.018598, - 0.058999, - -0.031153, - -0.013666, - 0.030919, - 0.0031121, - 0.060561, - -0.044948, - -0.097165, - 0.019586, - -0.023539, - 0.030914, - 0.010554, - 0.023461, - -0.0035232, - -0.035818, - -0.011407, - -0.003418, - -0.029875, - -0.016357, - -0.016165, - 0.031228, - -0.016275, - 0.03087, - -0.034455, - -0.00046042, - -0.02719, - 0.0095431, - -0.0023694, - 0.050182, - 0.06267, - -0.025286, - -0.0094308, - 0.085959, - -0.013233, - -0.021173, - 0.070163, - 0.04835, - 0.07081, - -0.026444, - 0.023862, - 0.013519, - -0.0048644, - 0.028237, - -0.0081472, - 0.047612, - -0.099063, - -0.017649, - 0.0053694, - 0.0023207, - -0.0049065, - -0.031596, - -0.016278, - 0.014598, - 0.0042698, - -0.010503, - 0.067529, - 0.0045972, - 0.00554, - 0.0057774, - 0.055185, - -0.0077892, - -0.0035882, - 0.033553, - -0.059193, - -0.056475, - -0.024784, - -0.01039, - -0.029208, - 0.057106, - -0.0067571, - 0.026116, - 0.019902, - 0.029645, - -0.0020815, - -0.054446, - 0.0073568, - -0.018406, - -0.038425, - -0.033868, - 0.016939, - 0.0035666, - -0.01124, - 0.0079213, - 0.043751, - -0.035212, - 0.015101, - 0.0369, - 0.035282, - 0.016696, - -0.095675, - 0.015475, - -0.010305, - -0.060171, - -0.0062878, - 0.0058264, - 0.038184, - -0.024474, - -0.042313, - -0.013592, - -0.02321, - 0.028089, - 0.025277, - -0.021469, - 0.05932, - -0.045951, - 0.0073091, - -0.029325, - 0.038346, - -0.0061576, - 0.069492, - 0.011028, - 0.022155, - 0.0332, - 0.013499, - 0.024646, - -0.015202, - 0.060456, - -0.06797, - -0.022433, - 0.057001, - -0.11448, - -0.0051319, - 0.012936, - -0.027266, - 0.012393, - 0.128, - 0.014627, - 0.014242, - 0.031977, - -0.004655, - -0.025985, - 0.011764, - -0.044153, - 0.01934, - -0.0058787, - -0.016032, - 0.037811, - 0.060067, - 0.010836, - -0.012767, - 0.026284, - 0.0028806, - 0.062234, - -0.066967, - -0.0088802 - ], - "fraternity": [ - -0.030687, - -0.045563, - 0.11089, - 0.0011544, - -0.088085, - -0.02895, - 0.0098393, - -0.07493, - 0.060845, - 0.017273, - 0.017296, - -0.041517, - 0.036534, - 0.006386, - 0.017222, - 0.013034, - 0.10933, - -0.03694, - 0.017764, - 0.034678, - 0.062435, - 0.10011, - -0.017944, - 0.064209, - 0.0032462, - -0.015076, - 0.027631, - -0.00387, - 0.0055389, - 0.0068817, - -0.0074227, - -0.032102, - 0.020194, - -0.018389, - 0.03747, - 0.036625, - 0.020469, - 0.082945, - -0.064303, - 0.033306, - 0.038728, - -0.10019, - 0.048123, - 0.01874, - -0.024265, - -0.0028852, - 0.025461, - -0.046768, - -0.012262, - 0.0082963, - 0.01506, - 0.0073661, - 0.039974, - 0.050702, - -0.024732, - 0.024866, - 0.0021548, - -0.016301, - -0.016368, - 0.022345, - 0.026747, - -0.015845, - 0.062473, - -0.013184, - -0.01492, - -0.049438, - 0.01599, - 0.016515, - 0.061702, - 0.020342, - 0.054325, - -0.0054371, - 0.0039057, - -0.040286, - 0.068774, - -0.0010709, - -0.046784, - 0.0070805, - -0.055284, - 0.02097, - -0.028629, - 0.026086, - 0.019412, - 0.034569, - -0.07465, - -0.0090887, - -0.0016408, - -0.011479, - -0.019041, - -0.0062074, - -0.012616, - 0.064235, - -0.069056, - -0.0031779, - 0.037874, - 0.075085, - -0.018561, - -0.06554, - 0.031084, - 0.023368, - 0.033544, - 0.06196, - -0.019795, - -0.028101, - 0.0035439, - -0.077975, - -0.0055194, - -0.0072779, - -0.0070591, - 0.068062, - -0.051782, - 0.061715, - 0.026687, - 0.015567, - 0.085132, - 0.014318, - 0.052721, - -0.017052, - -0.044071, - -0.016388, - 0.020654, - 0.0061238, - 0.026593, - -0.015483, - 0.048646, - 0.015983, - 0.021982, - -0.052607, - -0.016483, - 0.055628, - 0.036591, - 0.024745, - 0.0083261, - 0.0029175, - 0.038409, - 0.036509, - 0.032481, - 0.034458, - 0.071355, - -0.028414, - 0.024737, - -0.0035675, - 0.041579, - -0.026671, - -0.020927, - 0.031552, - 0.040023, - -0.038357, - 0.023255, - -0.031059, - 0.05263, - 0.061557, - -0.009713, - -0.023312, - 0.097514, - 0.032149, - 0.037468, - 0.015343, - 0.084142, - -0.0095045, - 0.0162, - -0.024419, - -0.046983, - 0.00040016, - 0.021516, - -0.013887, - -0.057826, - 0.029343, - -0.067175, - -0.01017, - -0.00045822, - -0.021912, - -0.014552, - 0.030677, - -0.012919, - 0.030222, - 0.029282, - 0.096107, - -0.004827, - -0.050637, - -0.010629, - 0.056589, - 0.06265, - 0.022556, - -0.021896, - -0.039307, - -0.039855, - 0.075559, - 0.086027, - -0.054944, - -0.02578, - 0.051825, - -0.0038101, - -0.011041, - 0.071467, - -0.047907, - -0.012827, - -0.023297, - 0.032492, - 0.0014162, - -0.11256, - 0.036652, - -0.036861, - -0.011912, - 0.020015, - -0.028487, - -0.013131, - -0.040218, - -0.013918, - -0.028194, - 0.085193, - -0.0074103, - 0.0080689, - 0.0056297, - -0.023721, - -0.015435, - 0.0012674, - 0.073271, - 0.038884, - -0.045244, - -0.0024154, - -0.046265, - -0.036785, - 0.080348, - -0.0061026, - 0.02861, - -0.05993, - 0.069474, - -0.017011, - -0.043139, - 0.033386, - -0.020003, - -0.032561, - 0.044459, - 0.001121, - -0.04423, - 0.0018528, - -0.041618, - -0.028536, - 0.036555, - 0.02924, - -0.045284, - 0.025517, - 0.031251, - 0.024141, - 0.0062176, - -0.10097, - 0.016775, - -0.053128, - 0.03541, - 0.021734, - 0.058044, - -0.053973, - -0.012651, - 0.01392, - -0.0060778, - -0.066471, - 0.029227, - 0.049835, - -0.018734, - -0.030104, - -0.00063766, - 0.030723, - -0.0080533, - 0.056957, - 0.057488, - 0.040624, - 0.029222, - -0.012972, - 0.056746, - 0.0038184, - 0.043261, - -0.093578, - -0.0063405, - 0.0073433, - -0.0114, - -0.018321, - 0.017663, - -0.090899, - -0.0012854, - 0.070879, - 0.0045486, - -0.016584, - -0.013714, - -0.020519, - -0.025576, - -0.047546, - -0.031503, - -0.013418, - 0.049206, - 0.041786, - -0.0042648, - -0.0038926, - -0.031951, - -0.045636, - 0.05927, - 0.041223, - 0.01264, - -0.030604, - -0.017889 - ], - "financial": [ - 0.032171, - -0.043139, - -0.035795, - -0.012064, - -0.031095, - -0.058912, - -0.024432, - -0.07545, - 0.068864, - 0.0071561, - 0.023423, - -0.017544, - -0.014743, - -0.0061796, - 0.00028746, - 0.0048026, - 0.056846, - -0.042414, - 0.038893, - 0.030515, - 0.01707, - 0.042979, - -0.0024391, - 0.10494, - -0.030212, - 0.033747, - -0.026822, - 0.019993, - 0.002891, - -0.023131, - -0.030562, - 0.012603, - -0.07633, - -0.098334, - 0.053205, - 0.072479, - -0.025172, - 0.0090229, - 0.0002283, - 0.029936, - -0.0006457, - -0.0991, - 0.042394, - 0.046906, - -0.012779, - -0.01752, - -0.018849, - -0.036534, - -0.012451, - -0.030622, - -0.0061594, - -0.025666, - -0.012828, - 0.0101, - 0.007772, - -0.012645, - -0.029289, - -0.0097063, - -0.037817, - 0.0074331, - 0.029952, - 0.023631, - 0.10475, - 0.066449, - 0.072959, - -0.042687, - 0.013837, - -0.021219, - 0.013305, - 0.0025424, - 0.0071151, - -0.010843, - 0.028497, - 0.03272, - 0.023065, - 0.034307, - -0.025992, - -0.056289, - -0.0047394, - -0.022113, - -0.032861, - 0.052054, - -0.058226, - 0.044922, - 0.027426, - 0.0043574, - 0.012541, - 0.0048262, - 0.014712, - -0.068095, - 0.0024879, - -0.0027211, - -0.094753, - 0.0020002, - -0.032423, - 0.043344, - -0.013044, - -0.0091343, - 0.030743, - 0.027116, - -0.01673, - -0.0023217, - -0.017323, - -0.058689, - 0.069063, - -0.088754, - -0.032024, - -0.035751, - 0.0052462, - 0.0012599, - -0.029204, - 0.064293, - 0.059095, - 0.0033105, - -0.015408, - -0.037032, - -0.01138, - 0.010935, - -0.037996, - 0.0034762, - -0.01607, - -0.066102, - 0.072326, - 0.020564, - 0.10326, - 0.00065539, - -0.027042, - -0.059313, - -0.016252, - 0.089184, - 0.0013212, - -0.028749, - 0.018601, - -0.0090035, - 0.012736, - 0.037913, - -0.0069279, - 0.050401, - 0.00039535, - 0.033122, - 0.0061286, - 0.031373, - -0.042479, - 0.047219, - -0.036467, - 0.020994, - 0.023642, - -0.03636, - 0.0057156, - 0.00025387, - 0.028219, - 0.1658, - 0.048348, - -0.075664, - 0.035335, - -0.028606, - 0.050464, - -0.017049, - 0.011107, - -0.043192, - 0.069202, - 0.033148, - -0.081956, - 0.036126, - 0.013815, - 0.048006, - 0.00038355, - -0.022151, - 0.0041402, - 0.055494, - 0.0030722, - 0.010925, - -0.012759, - 0.024017, - -0.025241, - 0.067388, - -0.0038845, - -0.0099474, - -0.027341, - -0.017275, - -0.020359, - 0.0016062, - 0.00050227, - -0.031848, - -0.021891, - -0.038173, - -0.061088, - 0.092894, - 0.025204, - -0.0051034, - -0.066056, - 0.01993, - 0.088589, - -0.046604, - 0.0086163, - -0.018907, - -0.040363, - -0.017169, - -0.0071544, - -0.036749, - -0.12198, - -0.033503, - -0.019516, - 0.0058638, - -0.0011642, - 0.0080496, - -0.018106, - -0.07527, - -0.001313, - 0.017793, - 0.1343, - 0.0085578, - -0.055823, - 0.020786, - 0.016381, - 0.030577, - 0.020399, - 0.0036668, - -0.037418, - -0.015924, - 0.028162, - -0.012227, - -0.0388, - 0.069441, - 0.047267, - 0.010519, - 0.0090902, - 0.061524, - 0.035296, - -0.016649, - 0.0042462, - -0.04837, - -0.082393, - -0.021647, - -0.03803, - -0.0083022, - -0.021142, - -0.0062685, - -0.027789, - -0.031964, - 0.053539, - 0.013234, - 0.0070113, - -0.0036631, - -0.14386, - 0.0040167, - -0.018095, - -0.0083172, - -0.0078402, - -0.01263, - 0.036318, - -0.0051725, - 0.0066291, - -0.016339, - -0.03736, - 0.023121, - 0.025088, - 0.027067, - -0.02395, - 0.055684, - 0.0086098, - -0.0096157, - -0.010594, - -0.0049117, - 0.039475, - 0.028433, - -0.015563, - 0.01925, - 0.034079, - 0.025861, - -0.021381, - 0.044799, - -0.098679, - -0.025432, - 0.038352, - -0.088443, - -0.0035372, - 0.01843, - 0.034207, - 0.030342, - 0.14442, - 0.027227, - -0.018223, - -0.0035437, - 0.036023, - 0.012241, - -0.023145, - 0.013559, - -0.091106, - 0.0022848, - 0.016621, - 0.013262, - -0.020624, - 0.061996, - -0.033665, - 0.010478, - -0.014674, - 0.0077683, - -0.03505, - -0.002091 - ], - "mental": [ - -0.0058026, - -0.069044, - -0.010437, - 0.030681, - -0.010221, - -0.05315, - -0.0094831, - -0.103, - 0.017223, - 0.018028, - -0.03951, - -0.031906, - 0.10091, - -0.028475, - -0.027734, - -0.081105, - 0.053831, - 0.016656, - 0.047799, - 0.022619, - -0.062214, - 0.05365, - 0.08276, - 0.095553, - -0.08162, - -0.033017, - -0.0068413, - 0.023479, - 0.0034402, - 0.014936, - 0.015479, - -0.019101, - -0.051602, - -0.099841, - 0.028749, - 0.050367, - 0.089184, - -0.063023, - 0.015766, - 0.038537, - 0.020127, - -0.10128, - -0.05657, - 0.051421, - 0.01717, - -0.040243, - 0.024445, - 0.031589, - 0.0029511, - -0.034152, - -0.027465, - -0.007272, - 0.038383, - -0.034843, - 0.051771, - 0.093292, - -0.011616, - -0.075462, - -0.069055, - -0.051642, - -0.0094628, - -0.057903, - 0.1456, - -0.020865, - 0.059985, - -0.075864, - 0.012096, - -0.017627, - -0.044977, - 0.02352, - 0.020602, - -0.034996, - 0.059817, - -0.099129, - -0.015311, - -0.022423, - -0.049954, - -0.079735, - -0.061497, - -0.021368, - -0.055626, - 0.021157, - -0.066078, - 0.063632, - 0.011128, - -0.0020658, - 0.077182, - -0.017722, - 0.015846, - -0.022346, - 0.065282, - 0.00060897, - -0.12426, - -0.058213, - -0.01632, - 0.050035, - -0.0046788, - -0.01006, - 0.15685, - 0.088363, - 0.034988, - 0.031901, - 0.04895, - -0.0076267, - 0.15622, - -0.12796, - 0.014593, - 0.010311, - -0.048415, - -0.021638, - 0.030288, - 0.055711, - 0.046014, - 0.038762, - 0.025025, - 0.030961, - -0.038338, - -0.085293, - -0.013893, - -0.0051334, - 0.017914, - 0.017234, - -0.049978, - 0.043769, - 0.11315, - -0.010714, - 0.01711, - -0.12929, - 0.028257, - 0.06991, - -0.0017487, - -0.058606, - 0.0025671, - -0.046017, - -0.037167, - 0.0081326, - 0.020614, - 0.041544, - 0.052717, - 0.010645, - 0.059187, - -0.045556, - -0.05044, - 0.076813, - -0.0062369, - 0.034451, - 0.029646, - 0.012131, - 0.030991, - 0.12584, - 0.045675, - 0.18759, - 0.0074555, - -0.053656, - -0.012495, - -0.021547, - -0.065176, - 0.012758, - 0.015433, - -0.088889, - 0.050603, - 0.0085241, - -0.13705, - -0.020969, - -0.038687, - 0.015297, - 0.027608, - -0.040565, - 0.019581, - -0.028755, - 0.0093232, - 0.000082577, - -0.023594, - 0.0079156, - 0.073749, - 0.090902, - 0.069055, - 0.013861, - 0.020899, - 0.0054372, - 0.016528, - -0.075324, - -0.048033, - 0.044003, - 0.036354, - -0.031312, - -0.024202, - 0.18856, - 0.038222, - 0.060811, - 0.078409, - -0.060278, - 0.1111, - -0.052016, - 0.021515, - -0.013438, - 0.039604, - 0.024031, - -0.03006, - -0.047199, - -0.15668, - -0.03952, - -0.033043, - 0.096479, - 0.056265, - -0.024299, - 0.0018886, - -0.036368, - 0.040896, - 0.036386, - 0.18079, - 0.011825, - 0.0058697, - -0.058406, - 0.025017, - 0.053686, - -0.012637, - 0.048719, - -0.037568, - 0.030901, - -0.072047, - 0.015099, - -0.078329, - 0.056773, - 0.067976, - -0.036929, - -0.027257, - 0.10055, - -0.011688, - -0.055907, - 0.0021116, - -0.032089, - -0.094728, - -0.045839, - 0.011289, - 0.045785, - 0.021929, - 0.058801, - -0.014332, - -0.013455, - 0.064651, - 0.0076822, - -0.033119, - 0.032588, - -0.23542, - -0.011858, - 0.018578, - 0.032971, - -0.093179, - 0.011652, - 0.069014, - -0.018253, - 0.073114, - -0.044281, - -0.032218, - 0.015854, - 0.013243, - -0.0085601, - 0.044877, - 0.031058, - -0.00094376, - -0.063411, - 0.0027959, - -0.034788, - 0.024471, - 0.011187, - 0.040317, - 0.056146, - 0.072467, - -0.042705, - -0.083253, - 0.066808, - -0.096913, - -0.023072, - 0.024442, - -0.1072, - 0.0092304, - 0.073648, - 0.041603, - 0.022879, - 0.19122, - -0.01134, - -0.032151, - -0.07519, - 0.028402, - 0.037957, - 0.012397, - 0.0034922, - -0.012294, - 0.037649, - 0.02013, - 0.0064324, - -0.12159, - 0.025246, - 0.018388, - 0.03312, - 0.0082022, - -0.0027947, - -0.053152, - 0.099667 - ], - "sartorial": [ - -0.071663, - -0.041147, - 0.034237, - 0.05043, - -0.045625, - -0.06854, - -0.0146, - -0.05963, - 0.00032289, - -0.034199, - -0.013269, - -0.044744, - -0.13048, - -0.011161, - -0.017576, - 0.017871, - 0.05734, - 0.044829, - 0.040662, - 0.042302, - 0.039797, - 0.019635, - -0.0015985, - 0.077365, - 0.0063859, - 0.058228, - 0.050829, - 0.029582, - 0.025847, - -0.022444, - -0.0058314, - -0.084872, - 0.066095, - -0.060833, - 0.024427, - 0.0405, - 0.017595, - 0.10947, - -0.020068, - 0.080976, - -0.0002789, - -0.074559, - -0.034589, - 0.016149, - 0.020684, - -0.0073292, - 0.051178, - -0.016681, - -0.02935, - -0.027532, - 0.033652, - -0.035334, - -0.0020781, - 0.044425, - 0.065925, - -0.010939, - 0.027017, - -0.016212, - -0.0091867, - 0.00718, - -0.054251, - -0.01114, - 0.056632, - -0.0013057, - 0.021191, - 0.049552, - -0.012603, - 0.020498, - 0.027649, - -0.031096, - 0.014749, - -0.0065346, - 0.0011944, - -0.080789, - -0.008156, - 0.061083, - 0.010156, - -0.087712, - -0.026587, - 0.042755, - -0.033132, - 0.075239, - 0.021316, - 0.059963, - -0.040585, - -0.010577, - -0.062466, - 0.0025267, - -0.02701, - 0.0039791, - 0.052908, - -0.017877, - -0.065767, - 0.002803, - 0.032715, - 0.064648, - -0.070242, - 0.039048, - 0.032886, - 0.027962, - 0.0039594, - 0.072892, - -0.037104, - -0.00163, - 0.048594, - -0.066854, - 0.00022204, - 0.012979, - -0.037349, - -0.014163, - 0.005964, - -0.026425, - 0.026335, - -0.043629, - -0.079434, - -0.038706, - 0.037091, - 0.075322, - -0.045158, - 0.046829, - 0.082253, - 0.0075293, - -0.023091, - 0.055785, - 0.090206, - 0.0078738, - -0.0065821, - -0.017803, - 0.013996, - 0.07722, - -0.012639, - -0.059122, - 0.0079135, - 0.014703, - -0.05459, - 0.0040345, - -0.019855, - 0.038567, - 0.034352, - -0.082458, - 0.082874, - -0.073045, - 0.013713, - 0.058095, - -0.062992, - 0.013426, - 0.025708, - 0.017001, - -0.023292, - -0.060436, - -0.025764, - 0.17195, - 0.0080581, - 0.014384, - 0.036639, - -0.019686, - 0.041684, - 0.032318, - -0.0079458, - 0.014624, - 0.039559, - -0.024224, - -0.13179, - 0.065256, - -0.037396, - 0.092611, - -0.029754, - -0.10562, - -0.046863, - 0.043524, - 0.0035121, - -0.0054271, - -0.037087, - -0.075965, - -0.0066114, - 0.080582, - -0.026436, - 0.049582, - -0.011976, - -0.053692, - 0.056211, - 0.017333, - -0.019828, - -0.12528, - -0.012299, - 0.022711, - -0.062062, - 0.15715, - -0.027691, - -0.013267, - -0.015713, - -0.020077, - 0.16159, - -0.043871, - -0.058639, - 0.021975, - 0.008634, - 0.036349, - -0.0058407, - -0.013699, - -0.12084, - 0.0058645, - 0.00038172, - 0.043455, - -0.040726, - 0.046955, - -0.011205, - 0.01891, - 0.04904, - -0.019566, - 0.12835, - 0.005684, - -0.022039, - 0.02498, - 0.067569, - 0.021055, - -0.094328, - 0.0018836, - -0.060788, - -0.056241, - -0.097181, - 0.0014097, - -0.033464, - 0.021166, - 0.052872, - -0.016782, - 0.07729, - 0.06495, - -0.00061535, - -0.001627, - -0.054742, - -0.079818, - -0.037839, - -0.035371, - -0.002875, - 0.0021203, - -0.021676, - -0.06555, - 0.045159, - 0.015323, - 0.017309, - -0.095501, - -0.057605, - -0.016301, - -0.11427, - -0.035598, - -0.053881, - -0.019132, - -0.049062, - 0.0044724, - 0.026151, - -0.013882, - -0.015448, - -0.044808, - 0.0075311, - 0.025186, - 0.024008, - 0.041129, - 0.13153, - 0.01614, - -0.0015567, - -0.019266, - -0.039615, - -0.025587, - 0.025411, - 0.00012077, - 0.0067027, - 0.047341, - -0.046114, - -0.040125, - 0.017755, - 0.038312, - -0.093089, - 0.012119, - 0.052015, - -0.093451, - -0.015507, - -0.0074701, - -0.0020877, - -0.025105, - 0.20707, - 0.041346, - 0.0053234, - -0.050064, - 0.065091, - -0.053289, - 0.027166, - 0.021686, - 0.029099, - 0.022848, - -0.039504, - -0.0049137, - -0.012176, - 0.025377, - -0.058908, - -0.0559, - 0.030372, - 0.034976, - -0.0072506, - -0.020037 - ], - "house": [ - 0.026086, - -0.04742, - -0.00020422, - -0.0013964, - 0.025824, - -0.044154, - 0.0018186, - -0.12351, - 0.0062616, - 0.029299, - -0.030194, - -0.077351, - 0.043618, - -0.000072926, - 0.005291, - 0.022836, - 0.14954, - -0.014508, - 0.054101, - 0.02726, - 0.015712, - -0.039439, - 0.027359, - 0.060697, - 0.075401, - 0.029375, - 0.0061867, - 0.074047, - -0.037291, - 0.048017, - -0.041803, - -0.0084668, - -0.034008, - -0.0043342, - -0.042749, - 0.015904, - 0.013217, - 0.0043907, - 0.0019578, - 0.024291, - -0.010809, - -0.14849, - -0.0018045, - -0.029828, - -0.078837, - 0.010895, - -0.042261, - 0.012032, - -0.058289, - 0.067373, - 0.03703, - -0.013261, - -0.044323, - 0.011782, - -0.11374, - -0.045201, - -0.017792, - -0.035303, - -0.079026, - -0.035829, - -0.013253, - -0.0010291, - 0.16693, - 0.0015902, - 0.039508, - 0.056328, - -0.020793, - -0.058297, - -0.046123, - 0.019644, - 0.068499, - 0.0080986, - 0.012642, - -0.088221, - -0.0032144, - 0.0036323, - -0.013994, - -0.025644, - -0.014196, - 0.054175, - -0.010304, - -0.034447, - 0.022483, - 0.046824, - -0.091706, - -0.049415, - -0.030932, - -0.07209, - 0.0044305, - 0.03043, - -0.023942, - 0.051274, - -0.12637, - 0.019834, - 0.041573, - 0.10505, - -0.0021348, - 0.082139, - 0.072588, - -0.0080472, - 0.13098, - 0.030868, - 0.012921, - -0.023749, - 0.06217, - -0.1232, - -0.027625, - 0.041972, - 0.03714, - 0.051344, - -0.063147, - 0.12056, - 0.08009, - 0.096692, - 0.0041077, - -0.079874, - 0.013544, - -0.075056, - -0.028397, - -0.00017272, - -0.047397, - 0.026679, - 0.055347, - 0.0036047, - 0.021799, - 0.0053867, - -0.0005303, - -0.13251, - 0.015191, - 0.051846, - 0.04404, - 0.0086464, - 0.058845, - 0.0025855, - 0.024567, - -0.022648, - -0.037613, - 0.037695, - 0.0013506, - -0.014784, - -0.025172, - 0.0036382, - 0.0496, - 0.012239, - 0.01425, - -0.040872, - 0.075077, - 0.097671, - 0.036794, - -0.035283, - -0.015208, - 0.044334, - 0.011949, - -0.082587, - 0.022434, - 0.01632, - 0.064483, - -0.026402, - 0.018523, - -0.0051746, - 0.012038, - 0.024529, - -0.012462, - 0.040458, - 0.018952, - -0.012326, - -0.011451, - -0.02743, - 0.016687, - 0.06353, - -0.00045908, - -0.039566, - 0.01401, - -0.026729, - 0.0079877, - 0.047104, - 0.039499, - 0.049254, - -0.041044, - -0.016312, - 0.010717, - -0.017197, - 0.0044625, - -0.022124, - -0.11828, - -0.031236, - -0.01433, - 0.11438, - 0.030397, - -0.051926, - -0.024167, - 0.048223, - -0.04593, - 0.032471, - 0.013032, - -0.028509, - 0.016421, - 0.11497, - 0.043634, - 0.048529, - -0.19438, - 0.11185, - -0.031389, - -0.050413, - 0.060024, - -0.071332, - 0.0020333, - -0.058668, - -0.082746, - -0.04802, - 0.13495, - -0.033718, - 0.0089828, - -0.012737, - -0.035532, - 0.00046436, - -0.0236, - 0.13798, - 0.075416, - -0.04202, - 0.051932, - -0.0133, - -0.0026568, - 0.10882, - -0.011008, - -0.046338, - -0.041119, - 0.035425, - -0.063501, - -0.033501, - 0.015462, - -0.068616, - -0.03605, - -0.021099, - -0.031275, - 0.001398, - 0.017546, - -0.0074244, - -0.010945, - 0.0079988, - 0.09575, - -0.082146, - 0.081356, - 0.040083, - -0.0077895, - 0.079078, - -0.052148, - 0.012998, - -0.013439, - 0.042873, - -0.018591, - -0.0038832, - -0.029288, - 0.032518, - -0.0020706, - -0.058331, - -0.088766, - 0.0080655, - -0.0234, - 0.037257, - 0.048159, - -0.012161, - -0.047147, - -0.076903, - -0.0066938, - -0.035758, - 0.05783, - -0.028503, - -0.0026755, - -0.019402, - -0.049901, - 0.087398, - -0.12016, - -0.033163, - 0.014035, - 0.016285, - 0.056358, - 0.030231, - 0.026882, - 0.02748, - 0.076218, - 0.024432, - 0.023859, - -0.0055077, - -0.0037432, - 0.10678, - -0.0013742, - -0.016584, - 0.0036316, - 0.074625, - -0.0032624, - 0.06478, - 0.017314, - -0.033587, - -0.060186, - 0.031985, - 0.017093, - 0.047969, - 0.0088854, - 0.029433 - ], - "mass-market": [ - -0.013365, - 0.010452, - 0.011486, - -0.017132, - -0.068656, - -0.0059498, - -0.019431, - -0.089063, - 0.075341, - 0.043033, - -0.019136, - -0.051631, - -0.036237, - -0.0093602, - -0.067087, - -0.002321, - 0.084287, - -0.028159, - 0.079339, - -0.001944, - 0.034476, - -0.027804, - 0.043735, - 0.060407, - 0.019811, - -0.027153, - 0.039572, - 0.016337, - 0.018331, - 0.025139, - -0.026324, - -0.067403, - 0.0037691, - -0.044569, - 0.059576, - 0.019174, - 0.027226, - -0.0064569, - 0.04102, - 0.016405, - 0.0072589, - -0.10008, - -0.024078, - 0.05806, - -0.011194, - -0.019641, - -0.05727, - -0.010753, - -0.021049, - -0.02647, - 0.041266, - 0.0031101, - -0.041813, - -0.030538, - -0.011322, - 0.018245, - 0.014964, - 0.02803, - -0.026502, - -0.013884, - 0.0032624, - 0.015535, - 0.092262, - 0.026888, - 0.01637, - 0.028736, - 0.00011949, - -0.033601, - -0.0036465, - -0.022297, - -0.0068783, - 0.036347, - 0.038776, - 0.03455, - -0.030543, - 0.016286, - -0.032672, - -0.028368, - 0.04845, - 0.0017038, - 0.0074736, - -0.023088, - -0.036849, - 0.037668, - -0.034627, - 0.025146, - -0.00090315, - -0.00066818, - -0.0068874, - -0.025696, - -0.019112, - -0.0020019, - -0.085801, - 0.019687, - -0.0046569, - 0.063112, - -0.02625, - -0.073961, - -0.061009, - 0.047358, - -0.045491, - 0.011211, - -0.047254, - 0.015607, - -0.028031, - -0.060541, - 0.0084824, - 0.045847, - 0.0098879, - -0.00643, - 0.044071, - 0.086332, - 0.022511, - 0.045702, - -0.077164, - -0.091034, - 0.02298, - 0.017209, - -0.039762, - 0.00024503, - -0.010164, - 0.029287, - -0.020394, - -0.015022, - 0.04958, - -0.026099, - -0.01248, - -0.0069735, - 0.051174, - 0.021237, - -0.01793, - 0.048762, - 0.0062808, - -0.041314, - 0.009091, - -0.015262, - 0.035911, - 0.025808, - 0.033787, - -0.014454, - 0.057887, - 0.026972, - 0.018485, - 0.0028144, - -0.019824, - -0.0034223, - 0.0021009, - -0.0019902, - -0.017006, - 0.014174, - 0.042378, - 0.11194, - -0.021364, - -0.030553, - 0.019378, - 0.009198, - 0.0056841, - 0.046125, - 0.031452, - 0.046265, - 0.031661, - 0.02063, - -0.011002, - 0.011393, - 0.013985, - 0.035446, - 0.039064, - -0.024176, - 0.025662, - -0.040043, - -0.04062, - 0.039752, - -0.013852, - 0.0052927, - -0.03125, - 0.046375, - -0.060897, - 0.00034659, - -0.026951, - 0.0045597, - 0.040595, - -0.01718, - -0.033193, - -0.06602, - -0.00016345, - -0.042753, - -0.0060815, - 0.12238, - -0.014358, - -0.03272, - -0.056899, - 0.037456, - -0.0039338, - -0.055743, - 0.015411, - 0.028845, - -0.014006, - -0.053508, - 0.01683, - 0.041089, - -0.119, - 0.078149, - -0.0070231, - -0.03559, - 0.0043322, - 0.034482, - 0.036572, - 0.0036861, - -0.0069818, - 0.010354, - 0.13233, - -0.033943, - 0.0055941, - -0.074161, - -0.019845, - 0.023871, - -0.070783, - -0.059163, - -0.019072, - -0.0034573, - -0.024873, - -0.017717, - 0.040743, - 0.082034, - -0.035666, - -0.060113, - 0.0093303, - 0.056493, - -0.008031, - -0.045864, - -0.022714, - -0.021144, - -0.028539, - 0.030691, - 0.046536, - -0.010636, - -0.041212, - -0.056028, - 0.065895, - -0.067058, - 0.048527, - 0.0012, - -0.0059291, - 0.034716, - -0.086425, - -0.024956, - -0.04435, - -0.013035, - -0.012033, - -0.036499, - 0.0043251, - -0.0071756, - -0.054345, - 0.06437, - -0.017449, - 0.084524, - -0.034586, - -0.03377, - 0.041525, - 0.021311, - 0.034785, - 0.039311, - 0.00023621, - -0.062309, - -0.032843, - 0.019089, - -0.014461, - 0.019376, - 0.053133, - 0.066964, - 0.0047314, - 0.063223, - -0.072242, - -0.032203, - -0.053796, - -0.045952, - 0.0091889, - 0.085056, - -0.059507, - 0.02085, - 0.14001, - 0.050584, - -0.023922, - 0.039712, - -0.039488, - -0.032902, - -0.03762, - -0.016028, - -0.0031761, - -0.020499, - -0.054404, - -0.0051379, - 0.0054434, - -0.028081, - 0.034373, - -0.01817, - 0.038507, - -0.028762, - -0.038539, - -0.019684 - ], - "war-time": [ - 0.052938, - 0.00096798, - 0.055958, - -0.027801, - -0.009536, - -0.038867, - -0.061536, - -0.079752, - 0.081143, - 0.088151, - -0.017485, - -0.028164, - -0.039771, - 0.028797, - -0.013425, - 0.036591, - 0.097221, - -0.067858, - 0.040421, - 0.011406, - 0.063676, - 0.011529, - -0.035266, - 0.068043, - 0.018719, - 0.020004, - 0.047278, - -0.042538, - 0.00015234, - -0.065276, - 0.016189, - 0.010883, - -0.051851, - -0.050787, - 0.04455, - 0.073132, - -0.013896, - 0.036688, - 0.091319, - 0.0041811, - -0.034324, - -0.10205, - 0.06304, - -0.0082965, - 0.018173, - 0.039101, - 0.014071, - -0.0082884, - -0.043538, - 0.00018417, - -0.06208, - 0.031886, - 0.020445, - 0.056071, - 0.043594, - -0.012748, - -0.0093671, - -0.0058458, - -0.061017, - -0.020223, - -0.053449, - 0.0086477, - 0.085236, - -0.044331, - 0.035312, - -0.02168, - 0.014517, - -0.0075887, - -0.019788, - 0.06226, - 0.029466, - -0.043001, - -0.0051255, - -0.0012866, - 0.017025, - 0.016497, - 0.018352, - -0.0104, - 0.021586, - 0.039486, - 0.019512, - 0.053109, - -0.0025763, - -0.01031, - 0.0092631, - 0.07739, - 0.020589, - 0.0092056, - 0.0041094, - -0.024525, - -0.025856, - 0.030335, - -0.078581, - -0.017408, - 0.002942, - 0.085819, - -0.090789, - -0.014056, - 0.070259, - 0.029692, - 0.066038, - -0.031179, - -0.046461, - 0.01822, - -0.0074664, - -0.056839, - 0.075474, - 0.033744, - -0.0021391, - 0.037395, - -0.054662, - 0.043996, - 0.03016, - 0.058925, - -0.034476, - 0.012309, - -0.014392, - 0.0092125, - -0.082787, - -0.028991, - -0.023123, - -0.022626, - -0.085092, - -0.032837, - 0.078109, - 0.010994, - 0.0052827, - -0.052254, - -0.014721, - 0.073961, - -0.018126, - 0.019369, - 0.022365, - 0.040422, - 0.027858, - 0.016257, - 0.015431, - 0.010996, - -0.042791, - 0.019473, - 0.0017104, - 0.075256, - -0.011818, - 0.010556, - -0.0088147, - -0.014593, - -0.016459, - 0.012074, - 0.030082, - -0.0015786, - 0.027592, - 0.1155, - -0.010876, - -0.021757, - 0.0032389, - 0.029743, - 0.020993, - 0.072509, - 0.037994, - -0.01051, - 0.037194, - -0.047106, - -0.051847, - 0.047646, - -0.070153, - -0.028041, - -0.0087163, - 0.00072212, - 0.031091, - -0.069374, - 0.0041698, - 0.014018, - -0.065471, - -0.041226, - 0.014761, - 0.036524, - -0.039292, - 0.030641, - -0.007434, - 0.03765, - 0.017782, - 0.035021, - -0.054822, - -0.074637, - 0.040259, - -0.060714, - 0.02377, - 0.081029, - 0.053502, - -0.056258, - 0.097447, - 0.098617, - 0.020355, - -0.05504, - -0.01071, - 0.086537, - 0.0066345, - -0.024464, - -0.0053622, - 0.033843, - -0.12946, - 0.010295, - -0.018637, - -0.014237, - -0.0029048, - -0.04616, - -0.030937, - -0.012119, - -0.032386, - 0.012912, - 0.15683, - 0.048236, - -0.017563, - 0.047471, - 0.041096, - 0.031813, - 0.026312, - -0.025379, - 0.00052752, - -0.066344, - 0.0076406, - -0.023795, - 0.032834, - 0.094207, - -0.015198, - -0.022798, - 0.016276, - 0.085711, - -0.018687, - -0.013886, - 0.01738, - -0.044483, - -0.078436, - -0.044088, - 0.0051166, - -0.047244, - -0.0422, - -0.0040715, - 0.035281, - -0.0053496, - 0.015008, - 0.040837, - 0.035996, - -0.0057555, - -0.089858, - 0.024725, - -0.035026, - -0.055005, - -0.039556, - 0.025457, - 0.01878, - -0.0025189, - 0.061149, - 0.047295, - 0.025256, - 0.022187, - 0.10147, - 0.056911, - 0.063771, - -0.0061547, - -0.0019411, - -0.080016, - 0.0092871, - -0.027494, - 0.012053, - 0.0074932, - -0.0056887, - -0.0021908, - -0.015092, - 0.0071071, - 0.048264, - 0.087282, - -0.088413, - -0.01836, - 0.046681, - -0.092903, - 0.037264, - 0.041744, - -0.0077804, - 0.039898, - 0.15625, - 0.025796, - -0.017986, - 0.044301, - 0.015265, - 0.041828, - -0.011387, - -0.063627, - -0.0065343, - 0.040888, - 0.061965, - 0.10543, - 0.019016, - -0.014276, - -0.00093415, - -0.0091495, - 0.0028601, - 0.013113, - -0.02587, - 0.057912 - ], - "critters": [ - 0.0075038, - 0.0050116, - -0.000061595, - -0.0075036, - -0.011783, - -0.037077, - -0.007165, - -0.065445, - -0.003435, - 0.042374, - -0.022489, - 0.023246, - 0.0087519, - 0.022308, - -0.0083329, - 0.027308, - -0.0020337, - 0.082869, - 0.060144, - -0.013764, - 0.058844, - 0.0096346, - 0.016949, - 0.051488, - 0.060151, - -0.036592, - 0.051327, - 0.02452, - 0.18532, - 0.069054, - -0.042174, - -0.029685, - 0.018863, - -0.050278, - 0.0048795, - 0.033014, - 0.037756, - -0.045117, - 0.010677, - -0.053786, - 0.01574, - -0.085208, - -0.031158, - -0.0065019, - 0.00056563, - -0.065034, - 0.0099308, - -0.0040811, - 0.042295, - -0.037351, - 0.061173, - 0.13324, - -0.0145, - -0.067025, - -0.031371, - 0.034904, - -0.00095495, - -0.0065728, - -0.040161, - -0.042835, - 0.024033, - -0.091722, - 0.14456, - -0.039793, - 0.0048605, - -0.024922, - -0.036076, - 0.033026, - -0.045396, - 0.02552, - 0.050144, - 0.038145, - 0.070309, - 0.022527, - 0.056079, - 0.023497, - -0.015158, - -0.090774, - -0.055354, - -0.028933, - 0.018408, - -0.0081375, - 0.08787, - 0.029397, - 0.1147, - -0.027829, - 0.015373, - 0.022504, - 0.080325, - -0.014221, - -0.07599, - -0.038083, - -0.052724, - 0.031153, - 0.034283, - 0.021098, - 0.0030403, - 0.066311, - 0.010961, - -0.01048, - 0.0088161, - 0.046268, - 0.050078, - 0.014317, - 0.044733, - -0.091381, - -0.018155, - -0.026823, - 0.092306, - -0.0076899, - -0.017088, - 0.048374, - -0.014752, - -0.014585, - 0.00053606, - 0.063107, - -0.073553, - 0.024688, - -0.05455, - -0.07916, - -0.084446, - 0.090644, - -0.017402, - -0.070648, - 0.17019, - -0.0094268, - 0.0089624, - 0.003676, - 0.026355, - 0.10708, - -0.044518, - 0.053023, - -0.042855, - 0.030189, - 0.07162, - -0.014456, - 0.0082094, - 0.10588, - -0.012181, - 0.058014, - -0.060188, - 0.016757, - 0.015891, - -0.0039664, - 0.072548, - 0.028245, - 0.024665, - 0.021431, - -0.042532, - -0.052705, - 0.082025, - 0.11565, - -0.0065612, - -0.016196, - 0.0086179, - -0.024623, - -0.031699, - -0.019774, - 0.034806, - -0.087579, - 0.027203, - 0.0007653, - 0.031709, - -0.080285, - 0.080336, - -0.003703, - -0.039697, - -0.016857, - -0.023276, - 0.014502, - -0.017665, - -0.017834, - 0.0061385, - -0.024853, - -0.066516, - 0.053672, - 0.018158, - 0.051165, - -0.0088714, - -0.0037514, - -0.0081473, - 0.058747, - 0.0057504, - -0.066531, - 0.053155, - 0.04826, - 0.03183, - 0.11625, - -0.040929, - -0.036839, - 0.025552, - 0.061784, - -0.10299, - -0.0096501, - -0.057715, - -0.0020256, - -0.010299, - 0.033718, - -0.0763, - -0.022576, - -0.092015, - 0.036768, - 0.069672, - 0.02253, - 0.038861, - -0.028123, - -0.060688, - -0.039588, - 0.017115, - -0.0040369, - 0.0095962, - 0.0031739, - 0.063758, - 0.020192, - -0.048131, - -0.012849, - 0.00066507, - 0.010374, - -0.045337, - -0.022168, - 0.045731, - 0.0055949, - -0.038465, - 0.061666, - 0.06587, - -0.032628, - 0.087613, - 0.05615, - -0.076049, - -0.044833, - -0.051936, - -0.015689, - -0.091209, - 0.049372, - 0.12132, - -0.028444, - 0.069704, - 0.014611, - 0.0052671, - 0.035371, - 0.0025246, - -0.015037, - -0.016557, - 0.0071578, - -0.060083, - 0.1239, - 0.013579, - -0.021283, - -0.047183, - 0.037889, - 0.019255, - -0.044667, - 0.0064055, - 0.023543, - -0.027826, - 0.017932, - 0.0079243, - 0.027847, - 0.02577, - -0.014593, - 0.022311, - 0.0017561, - -0.0219, - -0.037163, - 0.0068841, - 0.016216, - -0.016216, - -0.044335, - 0.018829, - -0.047683, - -0.084126, - 0.084216, - -0.10422, - -0.024827, - 0.11693, - -0.041064, - -0.035828, - 0.023852, - 0.024888, - -0.013725, - 0.0035825, - 0.038216, - 0.11435, - 0.00642, - 0.022145, - -0.020406, - 0.0091008, - 0.011053, - -0.021547, - 0.0058505, - -0.011902, - 0.056925, - -0.06111, - -0.072539, - -0.039565, - -0.10761, - -0.0054909, - 0.059755, - -0.06029, - 0.01696 - ], - "pursuits": [ - -0.048242, - -0.086034, - 0.086214, - -0.03904, - -0.026544, - -0.033951, - -0.06385, - -0.068378, - 0.014075, - 0.031105, - -0.045821, - -0.14252, - -0.049265, - -0.031787, - 0.0073583, - 0.040361, - 0.011267, - -0.010125, - 0.074764, - 0.034316, - 0.023275, - -0.0084812, - 0.0024103, - 0.051839, - -0.041584, - 0.026381, - 0.011481, - 0.01869, - 0.0084289, - -0.029689, - -0.0053705, - -0.10732, - -0.00020217, - -0.077878, - 0.054264, - 0.059841, - 0.0078165, - -0.002115, - -0.012544, - 0.010085, - -0.014167, - -0.075456, - 0.034463, - 0.057459, - 0.0037852, - -0.019076, - 0.015147, - -0.062311, - -0.013237, - -0.041725, - -0.042722, - 0.048867, - -0.061564, - 0.037467, - -0.088121, - -0.0011908, - -0.07061, - 0.054655, - -0.024257, - 0.011882, - 0.040325, - 0.0069082, - 0.095592, - 0.036344, - 0.062677, - -0.076675, - -0.042966, - -0.049541, - 0.0023053, - -0.018277, - 0.10127, - 0.010599, - 0.049136, - 0.0030254, - 0.10282, - 0.018868, - -0.00096681, - 0.009512, - 0.046356, - 0.016393, - 0.038194, - 0.010063, - -0.047628, - 0.087759, - 0.017959, - -0.044354, - 0.028741, - 0.045766, - -0.036906, - -0.0098374, - 0.058751, - 0.0092962, - -0.098371, - 0.034012, - 0.041478, - 0.051346, - -0.041257, - -0.016942, - -0.0062807, - 0.018368, - -0.01348, - 0.021042, - -0.0064358, - -0.041781, - 0.076816, - -0.027227, - -0.026291, - 0.040688, - 0.048209, - -0.050565, - -0.034615, - 0.025465, - 0.058349, - 0.048188, - 0.014771, - 0.016059, - -0.024874, - -0.0069208, - -0.027974, - -0.043913, - 0.0010445, - -0.00054896, - -0.058973, - 0.010153, - 0.17435, - -0.011114, - -0.015104, - -0.059097, - -0.034401, - 0.11692, - 0.0785, - 0.087684, - 0.065748, - 0.056793, - -0.011746, - -0.087078, - 0.044313, - -0.032655, - -0.0032287, - 0.0044054, - 0.021955, - -0.054823, - -0.017754, - 0.041876, - 0.01436, - 0.045731, - 0.036018, - -0.05715, - 0.015749, - -0.024897, - 0.082266, - 0.061973, - -0.048825, - -0.088998, - 0.023443, - 0.050265, - -0.046793, - 0.048818, - -0.002202, - -0.0071142, - 0.031003, - 0.0038139, - 0.01539, - 0.032812, - 0.012189, - -0.024469, - -0.029661, - -0.0034738, - -0.094208, - -0.014181, - 0.089784, - 0.02242, - 0.05166, - 0.0095214, - -0.030625, - 0.050074, - -0.0051622, - 0.093211, - -0.062876, - -0.0077968, - 0.01922, - -0.018684, - -0.0012157, - -0.014891, - -0.027522, - -0.071731, - 0.03985, - 0.11871, - 0.0073562, - 0.048136, - 0.028722, - 0.034909, - -0.020514, - 0.045419, - 0.040934, - 0.0012667, - 0.012488, - 0.073668, - -0.0041245, - 0.039558, - -0.16351, - 0.041571, - -0.014875, - -0.050836, - 0.016315, - 0.055228, - -0.028495, - 0.065064, - 0.093194, - -0.015799, - 0.025972, - 0.039629, - 0.031375, - -0.003497, - 0.051135, - 0.038317, - -0.030707, - -0.045677, - -0.11761, - -0.010217, - -0.056964, - -0.0012628, - -0.047602, - 0.092165, - -0.0051156, - -0.0014255, - 0.015359, - 0.084012, - -0.029647, - 0.022243, - 0.0066108, - -0.032501, - -0.12832, - -0.029524, - 0.068007, - 0.023295, - 0.016602, - -0.02773, - -0.0803, - -0.0037401, - -0.059295, - 0.0062084, - 0.022343, - 0.009971, - -0.047792, - 0.042864, - -0.042665, - -0.099345, - 0.021009, - 0.016253, - 0.0037139, - -0.011727, - -0.01254, - -0.02829, - -0.005114, - 0.0012156, - -0.02086, - 0.039504, - 0.07364, - 0.03827, - -0.020636, - 0.022375, - -0.036104, - -0.012561, - -0.014244, - 0.027201, - 0.0091916, - 0.040186, - 0.010831, - 0.031215, - 0.050564, - 0.069002, - -0.091831, - -0.08499, - 0.023897, - -0.067485, - 0.050307, - 0.021799, - 0.037202, - -0.0093524, - 0.011178, - 0.0026056, - 0.010362, - -0.093781, - 0.05607, - 0.013052, - -0.071861, - 0.036373, - 0.0040509, - 0.050071, - 0.016111, - -0.0234, - -0.066855, - 0.0053953, - -0.032401, - 0.071149, - 0.0056051, - 0.070595, - -0.070638, - 0.0092094 - ], - "sportsman": [ - 0.021684, - -0.075381, - 0.13912, - -0.0055631, - -0.035796, - -0.044415, - -0.057672, - -0.099271, - 0.089755, - 0.043765, - 0.030811, - 0.038128, - 0.0049591, - -0.031577, - 0.078175, - 0.057488, - 0.030473, - -0.021766, - -0.022999, - 0.070438, - 0.060921, - -0.066226, - -0.0030782, - 0.068813, - -0.0037405, - -0.059461, - 0.028965, - 0.018777, - -0.023491, - -0.0092787, - 0.053491, - 0.0042207, - 0.077717, - -0.026944, - -0.018992, - -0.014231, - 0.011537, - -0.0092676, - 0.013309, - 0.042784, - 0.10117, - -0.084619, - 0.001385, - -0.015342, - 0.0074305, - 0.048321, - 0.00051313, - -0.041591, - 0.02136, - 0.018392, - -0.040649, - 0.011931, - 0.026485, - -0.02031, - 0.034668, - -0.054939, - 0.018595, - 0.02852, - -0.072277, - -0.025723, - -0.013722, - -0.022975, - 0.063745, - -0.02733, - 0.014723, - -0.014097, - -0.047718, - 0.0074057, - 0.012115, - -0.0049865, - 0.067538, - -0.070499, - 0.082894, - 0.027272, - 0.009783, - 0.051662, - -0.047417, - -0.035219, - -0.057697, - 0.024069, - 0.040851, - 0.068646, - -0.013763, - 0.087244, - 0.012272, - -0.08058, - -0.055344, - 0.067499, - -0.010832, - -0.067348, - 0.017383, - 0.024316, - -0.091828, - -0.0281, - 0.0090479, - 0.095374, - -0.081835, - -0.013056, - 0.05368, - 0.034542, - -0.047587, - 0.0078598, - 0.021013, - -0.0082568, - -0.094201, - -0.056648, - 0.0054735, - 0.051463, - 0.027068, - 0.046085, - -0.023688, - 0.074461, - 0.036024, - -0.0088598, - 0.071577, - -0.042488, - 0.0029027, - 0.012382, - -0.014867, - -0.032611, - 0.10342, - 0.015552, - -0.060563, - 0.00075268, - 0.079466, - -0.042597, - -0.012284, - -0.052414, - -0.037613, - 0.030741, - 0.029563, - 0.044736, - 0.00068084, - 0.017631, - -0.041245, - 0.017608, - 0.047359, - 0.075234, - -0.049635, - -0.0082681, - -0.013618, - -0.0076269, - 0.021479, - -0.047897, - -0.01668, - 0.018787, - 0.00042064, - -0.064714, - 0.016399, - -0.030778, - 0.060931, - 0.052021, - -0.052446, - -0.039872, - 0.0044974, - 0.013574, - 0.036225, - 0.01803, - 0.048127, - -0.070255, - 0.0019373, - 0.019237, - -0.03931, - 0.052557, - -0.039285, - -0.042239, - 0.019108, - 0.029418, - -0.061578, - -0.015237, - 0.017394, - -0.0099273, - 0.0032336, - 0.043663, - 0.029187, - 0.046575, - -0.037323, - 0.0076344, - -0.01398, - -0.036382, - -0.029521, - -0.074836, - 0.02623, - -0.066916, - -0.016093, - -0.11673, - 0.015835, - 0.084687, - 0.0082463, - 0.021433, - -0.023729, - 0.078647, - 0.0037464, - -0.01887, - -0.0050042, - -0.092438, - 0.05946, - -0.015899, - 0.020954, - 0.022801, - -0.12465, - 0.020224, - -0.025796, - -0.077642, - -0.0054855, - -0.0016667, - -0.076825, - 0.012316, - 0.0093421, - -0.039928, - 0.067027, - -0.0041175, - 0.0051586, - -0.036234, - -0.062467, - 0.0018853, - -0.049114, - -0.032708, - 0.025982, - 0.037702, - -0.048336, - -0.017117, - -0.051288, - 0.076333, - -0.0102, - -0.0073216, - -0.014126, - 0.068157, - -0.078071, - -0.016294, - -0.038978, - -0.029609, - -0.056576, - -0.010577, - -0.0089436, - 0.040108, - -0.023345, - -0.032075, - -0.036921, - 0.0010258, - 0.048455, - -0.0039336, - 0.025355, - 0.0015802, - 0.021792, - 0.030373, - -0.0037063, - 0.0083878, - -0.028317, - -0.06086, - 0.032487, - -0.028473, - 0.056672, - 0.0060115, - 0.039608, - -0.034367, - -0.026322, - 0.04669, - 0.050335, - 0.06737, - -0.07737, - -0.011705, - 0.032781, - 0.013421, - -0.02615, - -0.0034117, - -0.020282, - 0.039958, - 0.10405, - -0.042968, - -0.019125, - 0.092026, - -0.089128, - 0.0074712, - 0.027111, - -0.047965, - 0.0034752, - -0.018751, - 0.066816, - -0.023505, - 0.056789, - 0.055005, - -0.049367, - -0.024114, - -0.027416, - -0.018958, - -0.011546, - -0.11351, - 0.0032732, - 0.0026803, - 0.049491, - -0.038141, - -0.009376, - 0.0057305, - -0.066921, - -0.018373, - -0.018577, - 0.034611, - 0.010254, - -0.047791 - ], - "bluetooth": [ - -0.086327, - 0.009245, - 0.018222, - 0.056586, - -0.013159, - 0.023746, - 0.030316, - -0.089822, - 0.049237, - 0.011577, - -0.051082, - -0.01238, - -0.064484, - -0.062661, - 0.035172, - -0.010143, - 0.086526, - -0.013167, - 0.092722, - -0.073838, - -0.0011515, - -0.053333, - 0.087754, - 0.036741, - 0.081293, - -0.0027042, - 0.063433, - -0.0082194, - 0.039453, - -0.050247, - 0.042899, - 0.0060803, - 0.066661, - -0.022453, - 0.064405, - -0.012946, - 0.040981, - 0.0037614, - 0.030573, - -0.065166, - -0.021194, - -0.10176, - -0.035137, - 0.051342, - 0.061464, - -0.019355, - -0.079318, - -0.070139, - 0.02335, - 0.0062334, - -0.0010265, - 0.018487, - 0.030717, - -0.074401, - -0.039881, - 0.042822, - -0.0065376, - 0.020045, - -0.010435, - 0.097701, - -0.058326, - -0.10456, - 0.096185, - 0.01486, - -0.016854, - 0.0063048, - 0.094777, - -0.022262, - -0.093993, - -0.010416, - 0.0029319, - -0.034086, - 0.022967, - 0.0051617, - -0.093484, - 0.042214, - 0.024584, - -0.011918, - -0.015006, - -0.054844, - -0.0089969, - -0.063407, - -0.066676, - 0.057655, - 0.052993, - -0.016879, - -0.06038, - 0.0051706, - -0.059421, - -0.065986, - 0.029189, - -0.014348, - -0.049307, - 0.032129, - 0.045456, - 0.043863, - 0.017088, - -0.022933, - -0.03871, - 0.00042128, - 0.031685, - 0.071583, - 0.020597, - 0.011836, - 0.00017016, - -0.061002, - 0.0011594, - -0.022406, - 0.040916, - 0.019883, - 0.021343, - 0.056083, - 0.081751, - 0.05564, - 0.03489, - -0.0060776, - -0.018533, - -0.010531, - -0.038186, - 0.001952, - 0.076274, - 0.023113, - -0.054558, - -0.019496, - 0.077992, - 0.038824, - -0.043111, - 0.00014265, - 0.011297, - 0.0020296, - -0.0038672, - -0.028409, - 0.0012636, - -0.05291, - -0.012889, - 0.0055358, - 0.063617, - -0.039942, - -0.055795, - -0.067683, - 0.021036, - 0.075484, - 0.063877, - 0.010437, - -0.028731, - 0.00096712, - -0.057708, - -0.019271, - -0.0034973, - -0.034532, - -0.0057489, - 0.068273, - 0.064899, - -0.025248, - -0.024531, - 0.043557, - 0.031291, - -0.0043935, - 0.041817, - -0.011552, - 0.026412, - -0.02875, - -0.028863, - -0.026369, - 0.01582, - -0.035855, - 0.027331, - 0.054623, - 0.000932, - 0.068398, - -0.025285, - 0.10458, - -0.062599, - 0.012421, - -0.063791, - 0.056515, - 0.03664, - 0.016971, - -0.030776, - -0.03468, - 0.032497, - -0.014877, - -0.026377, - -0.0082659, - -0.033896, - -0.078778, - -0.03357, - 0.11463, - 0.016637, - 0.060384, - 0.014724, - 0.084745, - -0.012744, - 0.02471, - 0.011625, - -0.060397, - -0.032593, - 0.014184, - -0.011549, - 0.063449, - -0.14588, - -0.0014926, - -0.033475, - -0.0096252, - -0.0069325, - 0.059263, - -0.0447, - 0.0050376, - -0.088, - -0.038835, - 0.1178, - -0.00258, - 0.035736, - 0.018492, - 0.021401, - 0.058114, - -0.088327, - 0.0040354, - 0.018065, - 0.003849, - 0.00849, - -0.0059628, - 0.021039, - 0.090154, - 0.057729, - -0.046787, - -0.0018252, - -0.020723, - -0.0098309, - -0.020844, - -0.047169, - -0.047192, - -0.062685, - -0.053698, - 0.081095, - 0.023829, - 0.10878, - 0.01961, - 0.029002, - -0.0053209, - 0.061779, - -0.034643, - 0.049382, - -0.049706, - -0.07447, - -0.02836, - 0.040176, - 0.056451, - -0.0064336, - -0.035269, - -0.006831, - 0.006247, - -0.13548, - -0.028248, - 0.037508, - -0.05665, - -0.038806, - -0.056621, - 0.0058137, - 0.021419, - 0.013284, - 0.038667, - 0.01293, - -0.028836, - -0.048481, - -0.055224, - 0.021351, - 0.084965, - 0.022597, - 0.0082255, - -0.080477, - 0.081881, - -0.034292, - -0.029727, - -0.039104, - -0.016789, - -0.0060009, - 0.0057305, - 0.015036, - -0.0019521, - 0.099611, - -0.030792, - -0.015659, - 0.036161, - -0.054366, - -0.076502, - -0.060625, - 0.057181, - 0.068093, - -0.025927, - -0.00049334, - -0.012007, - -0.048266, - -0.065741, - 0.05491, - 0.016121, - -0.030615, - 0.010775, - 0.076201, - 0.0045757 - ], - "climatic": [ - 0.0026335, - -0.038717, - -0.038353, - 0.053069, - 0.01498, - -0.10385, - -0.030901, - -0.052948, - 0.086752, - 0.063802, - -0.00084904, - -0.045638, - 0.039422, - 0.028949, - 0.07128, - -0.026734, - 0.086096, - -0.017709, - 0.033087, - 0.069495, - -0.026065, - -0.024371, - -0.012288, - 0.10864, - 0.02537, - -0.033917, - -0.022629, - 0.046704, - 0.060863, - 0.034979, - -0.025282, - -0.0019517, - 0.030664, - -0.16443, - 0.059659, - 0.063997, - 0.071468, - -0.0047722, - -0.007987, - 0.030205, - 0.017598, - -0.0966, - 0.015006, - -0.043449, - -0.030334, - -0.017734, - 0.021, - -0.078677, - -0.054555, - -0.0057388, - -0.011602, - 0.017775, - -0.030294, - 0.067381, - 0.030745, - 0.025044, - 0.088308, - -0.030425, - -0.00020352, - -0.065611, - 0.029343, - 0.032075, - 0.075945, - -0.06506, - 0.09795, - -0.050876, - 0.010764, - 0.01232, - 0.082783, - 0.037994, - 0.04453, - 0.030266, - -0.061859, - -0.061656, - -0.011994, - 0.0032675, - -0.015627, - -0.087688, - -0.081349, - 0.044079, - -0.012146, - 0.074164, - 0.025274, - 0.041593, - -0.0192, - -0.007071, - -0.011746, - -0.02108, - -0.028707, - -0.034699, - 0.014664, - -0.0030048, - -0.066031, - 0.030752, - -0.031642, - 0.020122, - -0.013942, - 0.070973, - 0.034395, - -0.017177, - 0.0096234, - -0.085044, - -0.024396, - -0.024656, - 0.068581, - -0.083177, - 0.0080933, - -0.068371, - 0.031696, - 0.013136, - 0.036671, - -0.0062883, - 0.026281, - 0.03757, - -0.016696, - -0.06782, - 0.00094794, - 0.055278, - -0.0017499, - -0.0080982, - 0.047575, - -0.032737, - -0.00094382, - 0.062684, - 0.13002, - 0.02892, - -0.0040101, - -0.032641, - -0.045358, - 0.0985, - 0.077512, - -0.057906, - -0.052712, - -0.016378, - 0.012933, - 0.045046, - 0.055087, - 0.032254, - 0.00065668, - 0.042167, - -0.017401, - -0.053046, - 0.033447, - 0.00061449, - -0.090455, - 0.013582, - 0.023959, - -0.061568, - -0.013574, - 0.089848, - -0.0024335, - 0.1888, - 0.0091784, - 0.0028561, - 0.11578, - 0.0015549, - 0.0066696, - 0.03445, - -0.036244, - 0.054928, - 0.055274, - -0.10631, - -0.11671, - 0.019764, - -0.038405, - 0.025004, - -0.075549, - -0.024039, - 0.072501, - 0.083529, - 0.00099704, - 0.0066789, - -0.015143, - -0.06566, - -0.070795, - 0.066825, - 0.004844, - -0.058384, - -0.015505, - -0.03932, - 0.004544, - 0.11968, - -0.0056445, - -0.021317, - 0.0093614, - 0.0084252, - -0.018824, - 0.15308, - -0.075793, - 0.039546, - 0.10318, - -0.017646, - 0.061844, - -0.031924, - -0.0035873, - 0.018266, - 0.0054712, - -0.018271, - 0.0030185, - 0.078816, - -0.12233, - -0.026147, - -0.068092, - -0.062652, - -0.019969, - 0.076526, - -0.029494, - 0.02486, - -0.053246, - 0.041959, - 0.10366, - 0.02041, - 0.053555, - 0.020432, - 0.10811, - 0.036093, - 0.0023839, - -0.020231, - -0.073264, - -0.10653, - 0.0089972, - 0.024563, - -0.012785, - 0.053346, - -0.039881, - 0.015626, - 0.031831, - 0.07699, - -0.039583, - 0.012527, - 0.00081426, - -0.070319, - -0.036481, - -0.014756, - -0.015606, - 0.023565, - 0.020147, - 0.03035, - 0.034614, - -0.012845, - 0.019942, - 0.035358, - -0.033274, - 0.073341, - -0.15179, - 0.099595, - 0.032535, - 0.049806, - -0.031418, - -0.02897, - 0.010899, - -0.051505, - -0.0093178, - -0.091104, - -0.07702, - 0.075044, - 0.0958, - 0.038318, - 0.0064054, - 0.023973, - 0.095349, - -0.03765, - -0.041869, - -0.024558, - 0.036011, - -0.069766, - -0.0065585, - 0.023733, - 0.047512, - -0.032437, - -0.015713, - 0.059513, - -0.080214, - -0.019462, - 0.10769, - -0.14862, - -0.032383, - 0.019603, - 0.0059474, - -0.047872, - 0.16192, - 0.0051604, - 0.02046, - 0.0075147, - 0.025633, - 0.015838, - -0.021194, - 0.035293, - -0.01732, - 0.038725, - -0.042959, - 0.070056, - -0.052654, - 0.025245, - -0.041374, - -0.025978, - 0.043288, - 0.063214, - 0.0038959, - -0.023308 - ], - "society": [ - 0.029746, - -0.071975, - 0.097201, - -0.03008, - 0.0015958, - 0.015533, - 0.0089655, - -0.088237, - 0.037794, - 0.039162, - 0.066768, - -0.087618, - 0.059907, - -0.013308, - -0.0018087, - 0.021283, - 0.15891, - -0.017368, - 0.024285, - 0.063011, - -0.046726, - 0.019637, - -0.0028026, - 0.076964, - -0.036709, - 0.027277, - 0.0025723, - 0.021564, - -0.026275, - 0.0033925, - -0.0098348, - -0.061979, - 0.02156, - -0.042697, - 0.0090466, - 0.045484, - 0.022751, - 0.033977, - -0.038855, - 0.0057756, - -0.023239, - -0.11391, - 0.0043373, - 0.0092782, - 0.035155, - -0.025763, - -0.0062596, - 0.0064274, - -0.067863, - -0.04271, - -0.0001354, - 0.018221, - 0.034341, - -0.03036, - -0.025243, - 0.044924, - -0.0022476, - 0.018359, - -0.023198, - -0.002732, - 0.050451, - 0.0052132, - 0.062703, - 0.020118, - 0.075631, - 0.032862, - 0.0065781, - 0.016428, - 0.06887, - -0.014189, - 0.064018, - -0.039724, - 0.0058983, - -0.053526, - 0.0036087, - 0.021088, - -0.029726, - 0.01489, - -0.017991, - 0.026007, - -0.00031307, - 0.06624, - -0.015531, - 0.067776, - -0.023918, - 0.0029505, - -0.02414, - -0.075312, - -0.017825, - 0.014654, - 0.029269, - 0.10355, - -0.089269, - 0.023061, - -0.034988, - 0.083241, - 0.021974, - -0.017086, - 0.084776, - 0.050981, - 0.018106, - -0.015138, - 0.036708, - -0.075224, - -0.0082756, - -0.059787, - 0.083266, - 0.058982, - 0.026908, - -0.032455, - -0.029204, - 0.096994, - 0.045527, - 0.02061, - -0.010366, - -0.012198, - 0.023091, - -0.030504, - -0.058241, - 0.043703, - -0.015262, - -0.032454, - 0.010603, - 0.025374, - 0.024838, - 0.0086832, - -0.0079867, - -0.098764, - 0.026373, - 0.12128, - 0.0013884, - 0.041649, - 0.080002, - 0.021262, - 0.013983, - 0.031029, - -0.009871, - 0.031142, - 0.026701, - 0.028928, - 0.01642, - -0.06297, - -0.0094419, - 0.013076, - 0.0082312, - -0.025831, - -0.0094391, - 0.001734, - 0.011561, - -0.019037, - 0.091665, - 0.058344, - -0.011723, - -0.012929, - -0.0031004, - 0.023295, - -0.012408, - 0.049422, - 0.061662, - -0.076481, - 0.064421, - -0.011434, - -0.045956, - 0.052382, - -0.043283, - 0.011607, - -0.014588, - 0.056457, - -0.007569, - -0.023966, - -0.026491, - 0.035318, - 0.012035, - 0.009688, - -0.025106, - 0.05065, - 0.029072, - 0.093085, - -0.04402, - -0.069269, - -0.060381, - 0.093438, - -0.008296, - 0.015027, - -0.050415, - -0.031219, - -0.007175, - 0.10514, - -0.01115, - -0.01601, - -0.030159, - 0.065148, - -0.049204, - -0.026498, - -0.015891, - -0.027446, - -0.084391, - -0.010698, - -0.025896, - 0.033652, - -0.16341, - -0.0047402, - 0.070179, - -0.045124, - 0.030531, - 0.05251, - 0.0047294, - -0.0068779, - 0.012655, - -0.022174, - 0.058868, - -0.035536, - 0.040947, - 0.0035007, - -0.055885, - 0.024036, - -0.0081665, - 0.051809, - 0.034325, - -0.0052736, - 0.019316, - -0.046287, - -0.045382, - 0.096864, - -0.063087, - -0.011674, - -0.028219, - 0.042476, - 0.002282, - -0.028379, - 0.026344, - -0.032342, - -0.081686, - -0.0043257, - 0.033985, - 0.017764, - 0.026681, - 0.016973, - 0.013097, - -0.05593, - 0.068997, - 0.016494, - 0.022099, - 0.080576, - 0.037853, - 0.0060457, - -0.050378, - -0.03699, - -0.0017658, - -0.12283, - 0.034497, - 0.023393, - -0.0079791, - -0.013613, - 0.0015357, - 0.034419, - -0.059018, - 0.061343, - 0.034233, - 0.0022183, - -0.053886, - 0.030108, - -0.0050089, - -0.04161, - 0.026883, - 0.014855, - 0.031223, - 0.055725, - 0.039055, - 0.11016, - -0.00038133, - 0.051692, - -0.10729, - -0.040009, - 0.023404, - -0.011415, - 0.031188, - 0.026602, - -0.044664, - -0.000071616, - 0.051988, - 0.034122, - -0.033974, - -0.072831, - -0.040709, - 0.016045, - -0.010092, - -0.080263, - 0.0027272, - 0.046511, - -0.013229, - 0.057467, - 0.019765, - -0.040148, - -0.072993, - 0.042464, - 0.023863, - 0.041511, - -0.044594, - -0.00052957 - ], - "weather-related": [ - -0.0050142, - -0.013346, - -0.0075575, - 0.0047479, - 0.0092524, - -0.032813, - 0.0081982, - -0.052073, - 0.060163, - 0.017164, - -0.032015, - -0.03324, - -0.040893, - 0.0066128, - 0.027589, - 0.0026102, - 0.023788, - 0.01208, - 0.016474, - 0.0097911, - 0.011535, - -0.021815, - 0.0080943, - 0.042207, - 0.054556, - 0.021523, - -0.024552, - 0.043473, - 0.090916, - 0.00035009, - 0.011286, - -0.001617, - 0.041884, - -0.072062, - 0.06413, - 0.002577, - -0.0053011, - 0.03414, - 0.014577, - -0.0047934, - -0.027021, - -0.064015, - 0.001959, - 0.02703, - 0.0027583, - 0.0035845, - 0.015668, - -0.032646, - -0.059986, - 0.013621, - -0.013266, - 0.0058409, - 0.012973, - 0.044755, - -0.012951, - 0.0289, - 0.021952, - 0.0048194, - -0.021854, - 0.0048767, - -0.035684, - 0.020953, - 0.074076, - -0.000023387, - 0.0066656, - -0.012741, - -0.0013866, - 0.049561, - 0.0019928, - 0.060005, - 0.0088484, - 0.04092, - 0.00081629, - 0.0059144, - 0.0018013, - -0.01824, - -0.022084, - -0.036168, - -0.031629, - 0.0021247, - -0.015603, - 0.031578, - -0.015492, - -0.0096019, - 0.012969, - -0.00043009, - 0.046595, - 0.0071672, - -0.013067, - -0.029612, - 0.01094, - -0.010795, - -0.081753, - 0.013764, - -0.042251, - -0.022362, - -0.029536, - 0.060929, - 0.0045829, - -0.027499, - -0.0071237, - -0.037126, - -0.046688, - 0.0033345, - 0.01973, - -0.031642, - -0.0034654, - 0.013539, - 0.033234, - -0.045224, - -0.030826, - 0.025292, - 0.022182, - 0.079615, - 0.015689, - -0.057731, - -0.033186, - -0.0019575, - -0.030657, - -0.0063652, - -0.0026319, - -0.0027233, - -0.0016592, - 0.0037109, - 0.12091, - 0.039311, - -0.0051474, - -0.01462, - -0.049194, - 0.044978, - -0.000053943, - 0.011118, - -0.013256, - 0.022133, - 0.028754, - 0.045709, - 0.062619, - 0.046915, - 0.022774, - 0.006206, - 0.06704, - -0.0024486, - -0.042928, - -0.010202, - -0.043819, - -0.042609, - -0.015925, - -0.027379, - -0.0048494, - -0.013602, - 0.0086518, - 0.09386, - -0.041246, - -0.087952, - 0.021499, - 0.016335, - 0.032738, - -0.0082051, - -0.049235, - 0.018168, - 0.02153, - -0.041594, - -0.034781, - 0.023398, - 0.0011014, - -0.0011109, - -0.026726, - 0.0040455, - 0.0097634, - 0.044588, - 0.013547, - -0.0048411, - 0.044251, - -0.026983, - 0.007286, - 0.03542, - 0.0049331, - -0.016408, - -0.019608, - 0.028815, - 0.022363, - -0.0036284, - 0.022763, - -0.033936, - 0.0006868, - -0.042119, - -0.028141, - 0.077606, - 0.0051608, - -0.047173, - -0.025309, - -0.0095635, - 0.0028941, - -0.0265, - -0.0096029, - -0.029825, - 0.015887, - -0.014174, - -0.010067, - -0.039722, - -0.092018, - 0.021085, - -0.051019, - -0.01679, - 0.033036, - 0.061149, - -0.023974, - 0.028995, - 0.010846, - -0.0079145, - 0.036945, - 0.050424, - 0.021767, - 0.016155, - 0.089193, - 0.051471, - 0.010199, - -0.012561, - -0.0047427, - -0.032749, - -0.02698, - 0.001468, - -0.034634, - 0.067185, - -0.025539, - -0.026565, - -0.039664, - 0.039563, - 0.0032334, - 0.019843, - 0.015964, - -0.026291, - -0.044003, - 0.010227, - 0.027568, - 0.012053, - 0.0089037, - 0.013679, - 0.033868, - -0.025569, - -0.00077424, - 0.038439, - 0.022836, - -0.031394, - -0.12751, - 0.010453, - 0.027758, - 0.037872, - -0.0060914, - -0.0070654, - 0.015986, - 0.015768, - 0.037009, - 0.015164, - -0.027546, - -0.0068392, - 0.035354, - -0.021504, - 0.034678, - 0.014038, - 0.050292, - -0.031937, - -0.032863, - -0.041851, - 0.0078884, - -0.015885, - 0.0067857, - 0.0043656, - 0.062287, - 0.0012842, - -0.013863, - 0.033713, - -0.074146, - -0.040415, - 0.023903, - -0.082881, - -0.03669, - -0.033333, - -0.0060298, - -0.032239, - 0.070979, - -0.029699, - 0.015798, - 0.024249, - -0.0085282, - -0.034712, - -0.019773, - 0.028917, - -0.036242, - 0.012473, - -0.010971, - 0.013053, - -0.058603, - 0.023564, - 0.0042093, - -0.017868, - -0.0069162, - 0.018337, - 0.049006, - -0.023498 - ], - "filmmaking": [ - -0.040468, - -0.035581, - 0.0012129, - 0.053381, - -0.0062347, - -0.024182, - 0.01576, - -0.077582, - 0.038958, - -0.018471, - 0.016029, - -0.051118, - 0.063627, - -0.039403, - -0.085997, - 0.0021108, - 0.043136, - 0.02986, - -0.0093546, - 0.036391, - 0.072732, - 0.013021, - -0.03078, - 0.049452, - -0.032788, - 0.051257, - 0.03305, - 0.0639, - -0.014798, - 0.095328, - -0.030883, - 0.0050774, - -0.043431, - -0.065667, - 0.04589, - 0.050267, - 0.035495, - 0.033178, - -0.029842, - 0.0094965, - -0.088241, - -0.072414, - 0.017032, - 0.025453, - -0.001658, - -0.026034, - 0.029231, - -0.021608, - -0.015512, - -0.039409, - -0.010647, - 0.0059162, - 0.03547, - 0.10509, - -0.069077, - -0.020508, - 0.019157, - -0.036463, - -0.02142, - 0.019758, - 0.086515, - -0.033554, - 0.049685, - 0.0059861, - 0.020373, - -0.0049057, - 0.0021775, - -0.037411, - 0.013035, - 0.021264, - 0.013099, - -0.017631, - 0.029025, - 0.0512, - 0.077867, - 0.0011149, - 0.023753, - 0.031808, - 0.039361, - 0.018365, - -0.004517, - 0.0066511, - -0.039424, - 0.028309, - -0.02787, - 0.0073967, - 0.024744, - -0.0093806, - 0.010284, - 0.030869, - 0.017675, - 0.043614, - -0.089021, - 0.023031, - 0.014854, - 0.046442, - -0.020883, - 0.048751, - -0.012305, - -0.015448, - 0.035853, - -0.058339, - -0.021277, - 0.014118, - -0.012701, - -0.082322, - -0.0074417, - 0.056866, - -0.077437, - 0.024604, - -0.017038, - 0.040906, - 0.0041972, - 0.013152, - -0.010962, - 0.069343, - -0.023245, - -0.026323, - -0.043928, - 0.096738, - -0.040359, - -0.031834, - -0.046007, - -0.0026282, - 0.012683, - 0.014576, - -0.02889, - -0.039277, - 0.033036, - 0.11992, - -0.035669, - 0.0025305, - 0.0028798, - -0.063207, - 0.030581, - -0.03331, - -0.016196, - 0.017202, - 0.056879, - 0.0084948, - 0.014378, - -0.036343, - 0.11395, - 0.051154, - 0.0095234, - -0.014834, - -0.1082, - -0.074635, - -0.010844, - -0.057101, - 0.050208, - 0.029782, - -0.015912, - -0.087742, - -0.051896, - 0.069609, - 0.030315, - 0.05673, - 0.020013, - -0.032273, - 0.027466, - -0.00017804, - -0.065271, - 0.013781, - -0.10058, - 0.070654, - -0.0074846, - -0.022078, - -0.026145, - 0.008074, - 0.10314, - 0.049132, - -0.042264, - 0.074848, - 0.01695, - 0.034665, - 0.020402, - 0.067977, - -0.032013, - -0.011391, - -0.01617, - -0.023793, - -0.026484, - -0.044626, - 0.0039926, - -0.075987, - 0.069575, - 0.071299, - -0.0079263, - -0.023731, - -0.045879, - 0.062694, - -0.007912, - -0.047307, - -0.078228, - 0.053179, - 0.042342, - -0.0094259, - 0.019996, - 0.0031741, - -0.16605, - 0.019309, - -0.012653, - -0.016038, - 0.040512, - 0.036856, - -0.0077801, - 0.073476, - -0.026565, - 0.025253, - 0.07643, - 0.018745, - -0.013098, - 0.020175, - -0.021837, - 0.040148, - 0.044424, - -0.029241, - -0.038016, - -0.038222, - -0.030706, - -0.0069589, - -0.045821, - 0.076846, - -0.059621, - -0.061266, - 0.078464, - 0.070241, - -0.010701, - -0.026679, - 0.023253, - -0.030341, - -0.057758, - 0.067494, - 0.041528, - -0.014241, - -0.0055478, - -0.065572, - -0.023847, - 0.0063576, - 0.014051, - -0.0087361, - 0.031807, - 0.009403, - -0.023871, - -0.037797, - -0.0062594, - -0.046096, - 0.051588, - 0.021803, - 0.04339, - -0.066765, - -0.033459, - 0.043628, - -0.01072, - 0.046905, - -0.047226, - 0.032792, - -0.0028742, - 0.033048, - 0.017641, - 0.031368, - 0.055433, - 0.051478, - 0.036897, - -0.001246, - -0.024365, - 0.035166, - -0.027184, - -0.017472, - 0.020964, - 0.03056, - -0.069516, - -0.0094014, - -0.02014, - -0.032536, - -0.024283, - 0.068474, - -0.031954, - 0.0019638, - 0.036864, - 0.0067435, - -0.0084901, - -0.054837, - 0.024432, - -0.037467, - 0.035347, - -0.00098132, - 0.04182, - -0.037853, - 0.04936, - -0.049368, - -0.0046019, - -0.021175, - -0.037694, - 0.072955, - 0.0057631, - 0.025783, - 0.0028438, - -0.016047 - ], - "navy": [ - 0.0040458, - -0.097142, - 0.11749, - -0.076971, - 0.05231, - -0.039581, - 0.064582, - -0.132, - 0.078, - 0.21698, - -0.0086096, - -0.049467, - -0.10108, - 0.012992, - -0.034905, - 0.070385, - 0.19253, - -0.11444, - 0.033829, - 0.037512, - -0.0077871, - -0.051739, - -0.039073, - 0.098535, - -0.0055041, - -0.040298, - 0.046448, - -0.1779, - -0.029337, - -0.071573, - 0.02252, - -0.083492, - 0.057193, - 0.001609, - 0.041919, - 0.039812, - -0.06111, - 0.092814, - 0.073846, - -0.053454, - 0.013814, - -0.13724, - 0.055781, - 0.010286, - 0.0068175, - 0.046699, - -0.0014174, - -0.12614, - -0.040115, - 0.081165, - 0.0008977, - -0.080028, - 0.11575, - 0.061593, - -0.037603, - -0.020537, - -0.01123, - -0.011824, - -0.047644, - 0.063685, - -0.10296, - -0.00085221, - 0.14157, - -0.023189, - -0.0064094, - -0.0024645, - -0.16289, - -0.097403, - 0.029784, - -0.031837, - 0.025912, - -0.086268, - 0.071888, - -0.10347, - 0.046286, - -0.073993, - 0.0105, - -0.021879, - 0.04104, - -0.093281, - 0.0066915, - -0.013082, - -0.055613, - 0.024412, - -0.17213, - 0.11332, - 0.018673, - -0.041466, - -0.16332, - 0.015702, - 0.025326, - 0.039171, - -0.14387, - -0.0064144, - 0.12689, - 0.1899, - -0.12123, - -0.073944, - 0.10903, - 0.0096506, - 0.10518, - -0.082507, - 0.17479, - 0.0067185, - 0.014177, - -0.16166, - -0.020233, - -0.025123, - -0.068264, - 0.032663, - 0.018419, - 0.11823, - 0.060522, - 0.095742, - 0.044294, - 0.032623, - 0.021976, - 0.037909, - -0.065339, - -0.0023976, - -0.0055522, - -0.035706, - -0.042671, - -0.091847, - 0.069881, - 0.096359, - -0.016027, - -0.1318, - -0.15094, - 0.08877, - -0.13868, - 0.07708, - 0.042783, - -0.037525, - 0.054828, - 0.0094748, - 0.052836, - 0.064492, - 0.0052925, - 0.039469, - -0.080112, - -0.0064457, - -0.06601, - 0.04178, - -0.038991, - 0.0094372, - 0.050061, - 0.081074, - -0.0023534, - -0.054438, - 0.056361, - 0.10543, - 0.044347, - 0.022822, - -0.036512, - 0.044983, - 0.038589, - -0.10551, - 0.084935, - -0.0053063, - 0.040727, - -0.096368, - -0.071041, - -0.011539, - 0.0070716, - 0.043352, - 0.080095, - -0.11555, - -0.025765, - -0.0042839, - 0.11246, - -0.065647, - -0.10791, - -0.20327, - 0.025491, - 0.076452, - -0.074718, - 0.12605, - -0.050158, - 0.058849, - -0.050214, - -0.0095611, - 0.037182, - -0.079064, - 0.16366, - -0.061148, - -0.082528, - 0.13412, - -0.023004, - -0.055072, - 0.033816, - 0.075235, - 0.014583, - -0.13069, - -0.02971, - -0.042241, - -0.033282, - 0.12288, - -0.010469, - 0.091984, - -0.20097, - 0.010328, - -0.15278, - 0.16353, - 0.022067, - 0.054891, - -0.0074736, - -0.041418, - -0.025367, - -0.090405, - 0.16644, - -0.017385, - 0.0498, - 0.056759, - -0.086192, - -0.027701, - -0.069325, - 0.063282, - 0.095587, - 0.079685, - 0.020783, - 0.050624, - -0.042924, - 0.16616, - -0.019127, - 0.12929, - -0.0088052, - 0.062585, - -0.017728, - -0.095682, - -0.09325, - -0.055354, - -0.089463, - 0.013474, - -0.012958, - -0.039861, - -0.10402, - 0.013166, - 0.013424, - -0.097659, - 0.096525, - -0.060769, - 0.064085, - -0.10521, - 0.021483, - 0.025769, - -0.050322, - -0.054179, - 0.088681, - -0.013247, - 0.042238, - 0.022017, - 0.011183, - -0.041126, - 0.051371, - -0.028981, - 0.06854, - 0.033576, - 0.097557, - -0.029009, - -0.17306, - 0.054065, - 0.051431, - 0.010436, - -0.054464, - 0.058207, - -0.039161, - 0.047403, - 0.070305, - -0.038067, - 0.0079463, - 0.13661, - -0.14393, - -0.0089655, - -0.0052447, - -0.02358, - -0.070862, - 0.027423, - 0.0023523, - 0.006525, - 0.10869, - -0.011894, - 0.059776, - -0.025947, - -0.071185, - 0.018417, - -0.030367, - -0.14059, - 0.04835, - 0.014819, - -0.061021, - 0.099802, - 0.049406, - -0.019518, - -0.041804, - -0.077389, - -0.12374, - -0.032211, - -0.012336, - 0.011327 - ], - "rainy": [ - 0.11955, - -0.076782, - -0.0042903, - -0.0044072, - 0.046837, - -0.099869, - 0.046218, - -0.089981, - 0.029153, - 0.045448, - -0.063264, - -0.084072, - -0.012584, - 0.061363, - -0.015941, - 0.025547, - 0.16183, - 0.077197, - 0.010091, - -0.0091583, - 0.025056, - -0.044968, - -0.29297, - 0.035945, - 0.096093, - 0.018175, - 0.0030831, - 0.021994, - 0.05266, - 0.030561, - 0.068086, - 0.044065, - -0.042423, - -0.13253, - 0.041933, - 0.009306, - 0.092476, - -0.02199, - -0.047089, - -0.074523, - 0.11983, - -0.061633, - 0.01553, - 0.024643, - 0.012167, - 0.079928, - -0.010547, - -0.065692, - -0.016314, - 0.058114, - -0.012266, - 0.002137, - -0.035151, - 0.0094704, - -0.065395, - 0.010665, - 0.060934, - -0.10524, - -0.048267, - -0.022771, - 0.022278, - -0.016595, - 0.20875, - -0.068185, - -0.095135, - -0.12864, - 0.042301, - -0.078145, - -0.063784, - 0.032094, - 0.091537, - 0.096568, - -0.071903, - 0.11864, - -0.087046, - 0.016478, - 0.044335, - 0.15074, - -0.055119, - 0.14722, - 0.0051504, - -0.040876, - 0.12663, - 0.018693, - 0.010398, - -0.039614, - 0.023503, - -0.048649, - -0.05687, - -0.05615, - -0.015048, - -0.04419, - -0.12451, - -0.017332, - 0.050694, - 0.031694, - -0.032251, - -0.0018863, - 0.032699, - -0.035672, - 0.03526, - -0.13455, - 0.036138, - -0.00099707, - 0.017768, - -0.072101, - -0.11041, - -0.055366, - 0.01407, - 0.0042955, - -0.056363, - 0.04111, - 0.053439, - 0.068888, - -0.013351, - -0.067897, - -0.0063675, - 0.074317, - 0.010289, - 0.084892, - -0.013961, - -0.03775, - 0.025829, - -0.0068831, - -0.0067999, - 0.016711, - -0.059863, - -0.13145, - -0.11954, - 0.028865, - 0.032677, - 0.059156, - -0.060325, - 0.0041523, - -0.078367, - 0.00059797, - 0.047758, - 0.053005, - 0.022679, - 0.082414, - 0.11453, - -0.067296, - 0.076697, - -0.0021539, - -0.0096342, - -0.087741, - -0.052088, - 0.054861, - 0.0071966, - -0.05327, - 0.053269, - 0.033414, - 0.035129, - -0.034354, - 0.030228, - 0.023189, - -0.016581, - 0.040233, - -0.017992, - 0.015784, - 0.075184, - -0.090117, - 0.05932, - 0.10991, - -0.02145, - -0.05785, - 0.0033521, - 0.035876, - 0.013887, - 0.19704, - -0.10927, - -0.046871, - 0.04941, - -0.01428, - 0.10503, - 0.079568, - 0.047837, - -0.01233, - 0.019999, - -0.088057, - -0.015593, - 0.03221, - -0.017293, - -0.17343, - -0.078877, - 0.029201, - -0.0085825, - 0.21472, - -0.12151, - -0.086821, - 0.11741, - 0.0093525, - 0.022777, - 0.0010033, - -0.012968, - -0.030142, - 0.018487, - 0.045022, - 0.0047665, - -0.031197, - -0.084176, - 0.048708, - -0.07293, - 0.019272, - 0.053889, - 0.13546, - -0.17629, - 0.014345, - 0.032816, - -0.045413, - 0.14002, - -0.12861, - -0.025863, - 0.080555, - 0.15707, - 0.0059456, - -0.073541, - -0.072986, - -0.064451, - -0.19605, - 0.042211, - 0.01259, - -0.019431, - 0.090329, - -0.13747, - -0.016368, - 0.015994, - 0.099548, - 0.054461, - 0.053665, - 0.058164, - -0.15696, - 0.038147, - 0.024129, - 0.1165, - 0.032637, - -0.023674, - 0.039258, - 0.031981, - -0.054743, - 0.11989, - -0.051733, - 0.033907, - -0.082025, - -0.17957, - -0.018784, - 0.046435, - -0.067429, - 0.011213, - 0.035157, - 0.028826, - -0.035916, - -0.0054655, - 0.06977, - -0.095132, - 0.064095, - 0.08297, - -0.035922, - 0.057149, - 0.027946, - 0.056584, - 0.014055, - -0.14377, - -0.038587, - 0.038101, - 0.0347, - -0.060824, - -0.034414, - 0.0081479, - -0.048171, - -0.00724, - 0.06645, - -0.14802, - -0.016033, - 0.07283, - -0.21029, - -0.0059584, - -0.035427, - -0.012349, - -0.095535, - 0.12563, - 0.0046358, - 0.017254, - -0.033237, - -0.034794, - 0.076079, - -0.013009, - -0.083043, - 0.0012851, - 0.054098, - 0.0032543, - -0.029695, - -0.025284, - 0.044435, - 0.024929, - -0.079097, - 0.0032595, - 0.033191, - -0.035587, - 0.0015571 - ], - "agriculture": [ - 0.002649, - -0.055504, - 0.01882, - -0.035784, - 0.0089709, - -0.02797, - 0.0057861, - -0.07139, - 0.066387, - 0.0048036, - -0.02668, - -0.029527, - -0.016329, - 0.0059108, - 0.0642, - -0.028749, - 0.082741, - -0.0039251, - 0.024729, - 0.02416, - 0.049394, - -0.00067776, - 0.0091638, - 0.029761, - -0.015037, - -0.098407, - -0.010373, - 0.043357, - -0.0035021, - -0.013192, - 0.048911, - 0.0043603, - 0.052131, - -0.0084614, - 0.040587, - 0.045522, - 0.017422, - -0.013727, - -0.0050845, - 0.016657, - -0.02841, - -0.093691, - 0.051315, - -0.0052427, - 0.01001, - -0.040946, - -0.018068, - -0.020894, - -0.037715, - -0.00049504, - -0.027579, - 0.0011138, - 0.047609, - -0.0046607, - -0.061203, - 0.018018, - -0.034842, - 0.036812, - 0.0043791, - -0.019299, - -0.016121, - 0.011694, - 0.058337, - 0.017648, - 0.028397, - -0.026201, - 0.015564, - -0.032736, - 0.022601, - -0.011613, - 0.0059079, - -0.019758, - 0.032028, - -0.011442, - -0.024848, - 0.0011489, - -0.050902, - 0.0056992, - 0.036392, - -0.0041637, - -0.0098543, - 0.010369, - -0.053976, - 0.0264, - -0.035278, - -0.001438, - -0.045296, - -0.018122, - 0.0053093, - 0.010124, - 0.022178, - 0.047195, - -0.07063, - 0.027858, - -0.047784, - 0.054241, - 0.0027978, - -0.0053037, - -0.016331, - 0.0079869, - 0.0066036, - -0.058923, - 0.0031386, - -0.052838, - -0.0054204, - -0.030376, - -0.015474, - 0.048066, - 0.011752, - -0.012473, - 0.019018, - 0.08571, - 0.039863, - 0.080822, - 0.019346, - 0.01439, - 0.010101, - 0.0048866, - -0.035811, - -0.020068, - -0.053664, - 0.0019832, - -0.048143, - -0.020058, - 0.026483, - 0.034758, - -0.076247, - -0.058098, - -0.051582, - 0.085283, - 0.048061, - -0.0096742, - -0.052885, - 0.029959, - -0.018536, - -0.0085568, - -0.027507, - -0.019987, - 0.003747, - 0.021655, - 0.025287, - -0.017667, - 0.017019, - 0.033598, - -0.0048686, - -0.014753, - 0.0011409, - -0.00010527, - -0.012776, - -0.052108, - 0.080574, - 0.032116, - 0.019551, - -0.054074, - 0.064749, - 0.054206, - 0.012524, - 0.011823, - -0.051068, - 0.012419, - 0.030099, - -0.050124, - -0.071339, - 0.049981, - 0.011296, - 0.0065262, - 0.0018097, - 0.015653, - 0.065902, - 0.032299, - 0.054512, - -0.038859, - 0.0041972, - 0.016386, - -0.018469, - 0.049439, - 0.017758, - 0.070613, - -0.057238, - 0.054422, - -0.04331, - 0.061028, - 0.047668, - 0.0060199, - -0.023695, - -0.055625, - 0.033029, - 0.075187, - -0.050648, - -0.040198, - -0.018704, - 0.044868, - -0.036356, - 0.006113, - 0.021891, - -0.052634, - -0.047229, - -0.01132, - 0.0062787, - -0.019897, - -0.11642, - 0.0074323, - -0.013736, - -0.070838, - -0.019825, - 0.064252, - -0.024079, - 0.013432, - 0.02004, - -0.0087319, - 0.074683, - -0.0078031, - 0.013573, - 0.0089816, - 0.017611, - 0.082521, - 0.0020613, - 0.011181, - -0.021895, - -0.018725, - -0.012766, - -0.041478, - -0.017974, - 0.066814, - -0.043116, - -0.027981, - 0.06418, - 0.058259, - 0.0064004, - -0.015498, - 0.034818, - -0.0048992, - -0.048389, - -0.027189, - 0.042886, - 0.018664, - -0.019416, - 0.025966, - 0.0012687, - -0.048904, - 0.011722, - 0.092115, - 0.029263, - 0.043603, - 0.021704, - 0.042216, - 0.0036622, - -0.068917, - 0.060896, - 0.056349, - 0.041362, - -0.029147, - 0.0016946, - -0.039397, - 0.020097, - 0.027132, - -0.040852, - 0.018263, - 0.0083947, - 0.028934, - -0.0026417, - 0.017634, - 0.037479, - 0.028947, - 0.025239, - 0.0070446, - 0.01554, - 0.0011198, - -0.010832, - -0.037658, - -0.028686, - 0.048137, - -0.083834, - -0.017574, - -0.014723, - -0.0062037, - -0.014048, - 0.030735, - 0.0062446, - -0.034981, - 0.057413, - 0.019371, - -0.0043294, - 0.010484, - -0.027397, - 0.070859, - 0.017324, - -0.023374, - -0.0079493, - 0.0021504, - -0.032413, - 0.040571, - -0.0095091, - 0.0016979, - -0.029194, - 0.044564, - -0.018031, - 0.033325, - 0.012462, - -0.040322 - ], - "hockey": [ - 0.034566, - -0.11463, - 0.047071, - -0.058417, - -0.067916, - -0.18094, - -0.096098, - -0.10556, - 0.047344, - -0.0072282, - -0.013903, - -0.026595, - 0.079853, - -0.010333, - 0.06321, - 0.053732, - 0.15499, - 0.018164, - 0.033701, - 0.023481, - 0.044049, - 0.012295, - 0.067856, - 0.040439, - 0.056512, - -0.064467, - 0.027269, - 0.0012679, - -0.028792, - -0.051378, - -0.018283, - -0.020568, - -0.094963, - -0.0027737, - 0.097806, - -0.0046621, - 0.0012943, - 0.032815, - -0.0035315, - -0.016488, - -0.093018, - -0.12563, - 0.036522, - -0.05106, - 0.030729, - -0.025789, - 0.018781, - 0.038, - -0.017856, - 0.058813, - 0.029742, - 0.07172, - 0.047361, - 0.079367, - -0.028496, - -0.018842, - 0.028839, - -0.029312, - -0.036231, - -0.038894, - 0.10657, - -0.097262, - 0.089173, - 0.044712, - -0.0086025, - -0.0065352, - 0.0019758, - -0.0052757, - 0.069875, - -0.03959, - -0.012761, - -0.051778, - 0.066105, - -0.0032714, - 0.052635, - 0.10469, - -0.013509, - 0.012219, - -0.10536, - 0.010208, - -0.02456, - -0.018889, - -0.1045, - 0.019722, - 0.022801, - 0.029233, - -0.0022227, - -0.03569, - -0.062841, - -0.042715, - 0.034118, - 0.086903, - -0.10637, - 0.017592, - 0.12406, - 0.15514, - -0.055816, - 0.20508, - 0.024453, - 0.053526, - -0.047777, - 0.016935, - -0.027437, - -0.12229, - 0.031497, - -0.12987, - -0.10704, - 0.077205, - -0.012473, - -0.024739, - -0.074601, - 0.035092, - 0.054156, - 0.028269, - 0.07803, - -0.049608, - -0.048235, - -0.017592, - -0.026977, - 0.05813, - 0.11501, - -0.012994, - 0.008064, - -0.059126, - 0.10397, - -0.046532, - -0.037328, - -0.076577, - -0.01879, - 0.10301, - 0.043581, - 0.0022913, - -0.022326, - 0.020928, - 0.024732, - -0.039596, - 0.089311, - 0.009873, - -0.12395, - -0.10047, - -0.0065366, - -0.0071754, - 0.061654, - -0.029383, - -0.075769, - 0.041915, - 0.058397, - -0.023176, - 0.1195, - 0.060814, - 0.041729, - 0.11127, - -0.062074, - -0.0045988, - -0.060997, - -0.061343, - -0.042834, - 0.055776, - 0.024974, - 0.0083919, - -0.017365, - -0.01378, - -0.06943, - 0.057239, - -0.062245, - -0.077386, - -0.00038608, - 0.013834, - -0.081191, - -0.11788, - 0.083033, - 0.013912, - -0.057356, - -0.0038748, - 0.11268, - 0.067439, - -0.046839, - 0.048743, - -0.029561, - -0.021021, - -0.029796, - -0.047511, - -0.02059, - -0.064898, - 0.028186, - -0.024402, - -0.09001, - 0.11555, - 0.018432, - -0.10374, - 0.037816, - 0.051259, - 0.021973, - -0.10335, - 0.01576, - -0.14219, - 0.018468, - -0.021035, - 0.019113, - 0.091424, - -0.15457, - 0.046587, - -0.041572, - -0.088499, - -0.02503, - 0.10869, - 0.031272, - 0.070381, - -0.072047, - -0.004319, - 0.18051, - -0.018365, - 0.040801, - 0.0056952, - 0.017594, - 0.00062746, - 0.024846, - -0.04091, - 0.01136, - -0.053303, - -0.0074321, - -0.018979, - -0.069018, - 0.081173, - -0.07425, - 0.061303, - 0.054582, - 0.084131, - -0.067444, - 0.041016, - 0.054801, - -0.03918, - -0.030099, - 0.04484, - -0.023475, - -0.023116, - -0.024638, - 0.011004, - -0.026168, - -0.021909, - 0.030343, - 0.027263, - 0.016726, - -0.010524, - 0.0013233, - -0.0025639, - -0.051128, - -0.0073127, - -0.047468, - -0.033935, - 0.031022, - 0.02581, - -0.021407, - 0.0049535, - -0.0046069, - -0.0021726, - -0.00055828, - 0.021979, - 0.066215, - 0.0044567, - -0.022346, - -0.021017, - 0.076338, - 0.011404, - 0.013337, - 0.073585, - -0.059638, - 0.006837, - 0.037816, - -0.055433, - 0.045601, - 0.10604, - -0.11908, - 0.020506, - -0.036154, - -0.081892, - -0.14712, - -0.050732, - 0.058228, - 0.0477, - 0.11794, - -0.051249, - 0.0088458, - -0.011514, - -0.0095093, - 0.0011451, - 0.074735, - -0.047858, - -0.12939, - -0.079881, - -0.011306, - -0.070348, - -0.09308, - -0.048557, - -0.05676, - -0.10686, - -0.018499, - 0.025933, - 0.11293, - -0.10817 - ], - "hand-held": [ - -0.052169, - 0.017, - -0.035926, - 0.027026, - -0.01719, - -0.053745, - -0.016867, - -0.067094, - 0.039522, - 0.056256, - -0.018216, - -0.00031849, - 0.028755, - -0.014378, - 0.033152, - -0.008501, - 0.049227, - 0.035682, - 0.049003, - 0.018097, - 0.057548, - -0.048871, - -0.010492, - 0.022748, - 0.018125, - -0.0019384, - -0.026199, - 0.011397, - 0.0063832, - -0.046369, - -0.029818, - -0.019086, - 0.072813, - -0.0056269, - 0.067055, - -0.016324, - 0.016647, - 0.024548, - -0.013513, - -0.043966, - -0.021785, - -0.10234, - 0.014945, - 0.0069114, - 0.028862, - -0.03706, - 0.00030166, - -0.050367, - 0.028997, - 0.025909, - -0.030279, - 0.056012, - -0.056331, - 0.015571, - -0.020935, - 0.028138, - 0.050602, - -0.046077, - -0.012909, - -0.03213, - 0.028548, - -0.030347, - 0.14097, - 0.030251, - -0.027271, - 0.011838, - -0.004696, - 0.024286, - -0.068799, - 0.025752, - 0.017979, - 0.013266, - 0.061575, - 0.037488, - -0.075249, - 0.061533, - -0.017715, - -0.049901, - 0.011056, - 0.011066, - -0.012154, - -0.13987, - -0.090304, - 0.018799, - -0.018357, - -0.031941, - 0.0028006, - 0.01186, - -0.019996, - -0.03031, - 0.02313, - -0.019693, - -0.069995, - -0.018155, - 0.040957, - 0.075866, - -0.07167, - -0.032653, - -0.01241, - -0.017165, - -0.0038275, - -0.02355, - 0.025839, - -0.030242, - -0.013634, - -0.099116, - -0.023062, - 0.046192, - -0.0062451, - 0.020358, - -0.012139, - 0.079547, - 0.058411, - 0.022052, - -0.069452, - 0.10099, - -0.039648, - -0.01243, - -0.040222, - -0.031496, - -0.033639, - 0.078806, - -0.014583, - 0.0091727, - 0.066665, - -0.0027342, - -0.042352, - -0.0027958, - 0.0093654, - 0.017851, - -0.021281, - 0.013023, - -0.061497, - -0.015175, - 0.051347, - -0.0829, - 0.053039, - 0.060124, - -0.019409, - -0.045805, - 0.028204, - 0.047553, - 0.04552, - -0.037872, - -0.024012, - -0.0031296, - -0.041996, - -0.025188, - 0.022995, - -0.010825, - 0.037524, - 0.070785, - 0.016524, - -0.025995, - 0.0065583, - 0.043267, - -0.063766, - 0.022516, - 0.0050564, - -0.023985, - 0.026737, - 0.015947, - -0.028715, - 0.021084, - -0.0077204, - 0.022107, - 0.013384, - -0.011673, - 0.032317, - 0.013079, - -0.049781, - 0.075089, - 0.013729, - 0.030005, - -0.013936, - 0.042925, - -0.017738, - -0.016831, - -0.053258, - 0.0041622, - 0.0526, - 0.009451, - 0.031235, - -0.042418, - -0.021916, - -0.01372, - 0.055519, - 0.16824, - -0.0064558, - -0.068984, - -0.00017466, - 0.028476, - 0.0040249, - -0.042399, - 0.0082735, - 0.01494, - -0.069189, - 0.033912, - 0.0048877, - 0.0071107, - -0.10984, - 0.076422, - 0.014022, - 0.061084, - 0.0098125, - 0.025204, - 0.024515, - 0.039732, - -0.067194, - -0.022101, - 0.12337, - 0.023111, - 0.085364, - 0.11226, - -0.022322, - 0.008996, - -0.020783, - -0.0045749, - -0.058746, - 0.032489, - 0.0012441, - -0.04063, - 0.012127, - 0.094, - -0.025568, - -0.047294, - 0.015664, - 0.057087, - -0.02139, - -0.030202, - -0.010546, - -0.002332, - 0.0019064, - -0.039479, - -0.0033249, - 0.083219, - 0.044862, - -0.0087633, - -0.027031, - -0.049544, - 0.057614, - 0.024874, - -0.0049964, - 0.028525, - -0.11878, - -0.0078463, - -0.046204, - 0.057561, - 0.0091732, - -0.048544, - -0.016768, - 0.040813, - -0.026224, - 0.076027, - 0.034293, - 0.0059085, - 0.036656, - -0.04163, - -0.018139, - -0.016474, - 0.040575, - 0.030477, - -0.031026, - 0.027391, - -0.038327, - 0.0087095, - 0.0092053, - -0.038174, - -0.058726, - 0.048439, - -0.06736, - 0.051422, - -0.069945, - -0.018979, - -0.059761, - -0.031358, - -0.037871, - 0.037898, - 0.071905, - -0.02187, - 0.12699, - 0.0094936, - -0.034221, - 0.028053, - -0.061237, - -0.044041, - -0.076062, - -0.044133, - 0.029967, - -0.020649, - 0.028631, - -0.011836, - -0.069621, - 0.0082397, - 0.069942, - 0.080221, - -0.024944, - -0.048397, - 0.02244, - 0.0023172 - ], - "travels": [ - -0.052475, - 0.030809, - 0.075533, - -0.0023324, - 0.020654, - -0.0589, - -0.058497, - -0.09115, - 0.02117, - 0.028911, - -0.017736, - -0.18898, - -0.038538, - -0.060738, - -0.032081, - 0.00253, - 0.10881, - -0.061141, - 0.08474, - 0.0069229, - -0.011274, - 0.044664, - -0.010709, - 0.09899, - 0.034785, - 0.024757, - -0.012344, - 0.057559, - 0.028467, - 0.00068287, - -0.041791, - 0.023441, - 0.01692, - 0.00018915, - -0.024455, - 0.033122, - -0.010004, - 0.038201, - 0.0039301, - -0.059982, - 0.048916, - -0.076319, - 0.0038005, - -0.0039267, - 0.02426, - -0.011925, - 0.051923, - -0.065558, - -0.010887, - 0.0087425, - 0.023602, - 0.037769, - 0.0022395, - 0.013, - -0.16501, - 0.02062, - -0.018387, - 0.031841, - -0.027589, - 0.033054, - 0.017473, - -0.020329, - 0.15309, - 0.01431, - 0.010478, - -0.013301, - -0.024564, - -0.043358, - -0.035725, - 0.0074149, - 0.052875, - -0.011209, - -0.0022061, - -0.012954, - -0.019481, - 0.096367, - 0.069074, - 0.032953, - 0.0072487, - -0.049282, - -0.057658, - -0.00242, - -0.045613, - 0.078488, - 0.015893, - -0.048048, - 0.025324, - 0.015877, - 0.082768, - -0.017633, - 0.012772, - 0.014775, - -0.090855, - 0.043373, - -0.011962, - 0.047428, - 0.0015455, - 0.0039859, - 0.031217, - -0.049781, - 0.090219, - 0.021008, - 0.02329, - -0.028931, - 0.13469, - -0.10838, - 0.014413, - -0.034775, - 0.049964, - 0.071181, - 0.016143, - -0.035265, - 0.077511, - 0.060225, - -0.033021, - 0.045659, - -0.014172, - -0.018616, - -0.0029209, - 0.069527, - 0.092174, - -0.043432, - -0.052236, - 0.057131, - 0.096055, - -0.064674, - 0.01054, - -0.13851, - 0.037805, - 0.10432, - 0.048352, - 0.058459, - -0.013209, - -0.075491, - 0.017028, - -0.016491, - 0.046207, - 0.065025, - -0.00083201, - -0.0014323, - 0.0087157, - -0.067303, - 0.021505, - 0.02268, - 0.0085022, - 0.025772, - -0.0039298, - -0.022101, - -0.064062, - -0.11083, - 0.023464, - 0.05104, - -0.063721, - -0.10761, - 0.0034759, - 0.031681, - -0.099172, - 0.0379, - -0.02564, - 0.018326, - 0.025943, - 0.022135, - 0.019603, - 0.014189, - -0.013973, - -0.014675, - 0.020329, - -0.074329, - 0.049844, - -0.020793, - 0.0034089, - 0.062947, - -0.03817, - -0.019099, - -0.0055203, - 0.011934, - -0.0098431, - -0.034457, - -0.029247, - 0.040469, - 0.084417, - -0.013116, - 0.050213, - -0.035864, - -0.026301, - -0.043858, - 0.05667, - 0.09201, - 0.078273, - -0.026935, - 0.062816, - 0.019665, - -0.053494, - 0.0012912, - -0.02663, - 0.051535, - -0.0020032, - 0.035794, - 0.0065219, - 0.034633, - -0.14657, - 0.0062021, - 0.10227, - -0.040343, - 0.016169, - -0.026455, - -0.035417, - 0.03705, - 0.061549, - -0.068534, - 0.095815, - -0.020874, - -0.00010519, - -0.01511, - 0.014689, - 0.0027177, - 0.048558, - -0.050111, - 0.035887, - -0.025866, - -0.023641, - 0.0058178, - 0.0034944, - 0.11569, - 0.059346, - 0.0085874, - -0.011208, - 0.11616, - -0.041635, - 0.045983, - -0.020329, - -0.058962, - -0.040666, - -0.019928, - 0.059181, - 0.00025921, - 0.042951, - 0.047041, - -0.018916, - -0.0058527, - 0.032557, - 0.070559, - 0.059402, - -0.12468, - 0.00018541, - 0.026398, - 0.063315, - -0.1346, - 0.015877, - 0.027451, - 0.13422, - -0.028338, - 0.028587, - -0.031074, - 0.0090672, - -0.016284, - -0.087335, - 0.034258, - -0.01299, - 0.025025, - 0.022563, - -0.0050093, - -0.082896, - -0.03809, - 0.035047, - -0.027159, - 0.020281, - 0.025176, - 0.043314, - 0.007033, - -0.029799, - 0.087966, - -0.13028, - 0.0056344, - 0.0056502, - -0.035986, - 0.0027911, - -0.075367, - -0.030605, - 0.063946, - -0.0069697, - -0.010588, - -0.033682, - -0.066928, - -0.023727, - 0.011623, - -0.026524, - -0.035212, - -0.0017238, - 0.023681, - 0.066318, - 0.064735, - -0.12549, - -0.051749, - 0.016343, - -0.011189, - 0.027918, - 0.016815, - 0.046386, - -0.033068 - ], - "enforcement": [ - 0.00072314, - -0.059687, - 0.022801, - 0.026465, - -0.041841, - -0.03042, - 0.025266, - -0.079067, - -0.0021544, - 0.034898, - 0.010274, - -0.064573, - -0.015035, - -0.034149, - 0.00028605, - -0.020531, - 0.07275, - 0.021913, - 0.035837, - 0.065152, - 0.012071, - -0.045294, - 0.023959, - 0.057032, - -0.0058107, - 0.051593, - -0.0084809, - -0.05464, - 0.021493, - -0.012849, - -0.025342, - -0.059278, - -0.010335, - -0.1025, - 0.031461, - 0.053669, - -0.012022, - 0.045408, - 0.010538, - -0.055964, - -0.0076725, - -0.095628, - 0.06079, - 0.01391, - 0.0256, - 0.0061881, - 0.011139, - 0.024654, - -0.028584, - 0.0062194, - -0.029124, - -0.013811, - 0.067432, - 0.0021378, - -0.03012, - -0.049464, - 0.020897, - 0.0051392, - -0.0028893, - -0.0023905, - 0.020725, - -0.023297, - 0.06251, - 0.021986, - -0.055227, - -0.015806, - 0.014652, - -0.06118, - 0.063665, - 0.016531, - 0.010822, - -0.017542, - 0.0099538, - 0.0038505, - 0.026664, - -0.02548, - -0.0084801, - -0.004909, - 0.044557, - -0.032077, - -0.019359, - 0.019128, - -0.007751, - 0.023503, - 0.036159, - 0.0024757, - 0.04606, - -0.0043114, - 0.048776, - 0.026602, - 0.037852, - 0.0066764, - -0.077864, - -0.0036011, - -0.0051169, - 0.018824, - -0.050686, - -0.00287, - 0.0033912, - -0.0009606, - -0.030926, - -0.066343, - -0.0051515, - -0.016137, - 0.024103, - -0.028605, - -0.0015792, - -0.014133, - 0.03407, - -0.013585, - 0.000069994, - 0.12452, - 0.038407, - -0.011904, - 0.027481, - 0.0036695, - -0.026959, - -0.02044, - -0.03499, - 0.0072454, - 0.00014201, - 0.0059291, - 0.031164, - 0.037264, - 0.0599, - -0.0018129, - -0.0082556, - -0.07075, - -0.0050995, - 0.10059, - -0.031564, - 0.011963, - 0.0044275, - 0.022814, - -0.0039381, - -0.095201, - -0.0060026, - 0.016501, - 0.013683, - -0.0016544, - 0.048045, - 0.013531, - 0.032314, - -0.0095421, - -0.055492, - 0.015626, - -0.031445, - -0.013313, - -0.024895, - -0.027518, - 0.066286, - 0.052182, - 0.017574, - -0.097554, - 0.039812, - 0.063984, - -0.011942, - -0.025491, - -0.0045518, - 0.011261, - 0.041884, - -0.015511, - -0.040498, - -0.0013637, - 0.041138, - -0.0072068, - 0.043471, - 0.026501, - -0.0018138, - -0.041653, - 0.036103, - 0.0094864, - 0.022814, - 0.028544, - -0.0053529, - 0.040376, - -0.032857, - 0.014648, - -0.016347, - -0.03046, - -0.056501, - -0.0009516, - 0.03832, - 0.027702, - -0.0038447, - -0.034858, - 0.053944, - 0.071338, - 0.041021, - 0.0066327, - -0.053183, - 0.056028, - 0.010594, - 0.0071689, - 0.03053, - -0.012892, - 0.072382, - 0.047547, - -0.00093661, - -0.025479, - -0.14275, - 0.019424, - -0.02064, - 0.036986, - 0.0096425, - 0.01456, - 0.035609, - 0.0041619, - 0.049853, - 0.0048318, - 0.090119, - 0.030325, - -0.02439, - -0.0016983, - -0.019898, - -0.013675, - 0.016117, - -0.0055742, - -0.036204, - -0.070276, - 0.01641, - -0.052803, - -0.032085, - 0.079586, - 0.034381, - -0.04594, - -0.040544, - 0.073541, - -0.0075028, - -0.018271, - -0.032083, - -0.041358, - -0.029594, - -0.018369, - 0.025851, - -0.040389, - -0.0047535, - 0.0095221, - 0.0060244, - 0.049364, - 0.025429, - 0.028847, - -0.024355, - -0.035902, - -0.040984, - -0.0016207, - -0.031767, - -0.04651, - 0.0079758, - 0.012102, - 0.034587, - -0.012325, - -0.020999, - 0.011397, - 0.053223, - 0.016667, - 0.065011, - 0.044509, - -0.0094393, - 0.019402, - -0.032787, - -0.026985, - -0.040744, - -0.00058281, - -0.024524, - -0.012102, - 0.07083, - 0.020196, - -0.0049204, - 0.0062368, - -0.031024, - 0.042752, - -0.097615, - -0.058771, - -0.04993, - 0.011703, - -0.023781, - 0.058274, - -0.033866, - -0.037031, - 0.062116, - -0.011729, - -0.062692, - 0.016768, - 0.028499, - 0.012122, - -0.026147, - 0.022505, - 0.013775, - -0.025679, - -0.0027612, - -0.013695, - 0.024967, - 0.013583, - -0.046997, - -0.049639, - -0.018078, - -0.0030197, - -0.043804, - -0.038961 - ], - "medications": [ - -0.049391, - -0.017436, - -0.031726, - -0.015494, - 0.049726, - 0.016412, - 0.019564, - -0.05103, - -0.025867, - -0.012663, - -0.035213, - -0.012101, - 0.023371, - -0.029773, - 0.0035456, - -0.0019474, - 0.035657, - -0.0045543, - 0.014888, - -0.010599, - -0.018347, - 0.0037667, - 0.042074, - 0.021534, - -0.013421, - -0.013904, - 0.000057661, - -0.0083215, - 0.065329, - 0.029298, - 0.025782, - -0.014605, - 0.038318, - -0.029346, - 0.037734, - 0.028217, - -0.035943, - -0.020805, - 0.035965, - -0.0078623, - -0.0059993, - -0.078754, - -0.0018649, - -0.0079768, - 0.032152, - -0.055502, - 0.020239, - 0.072074, - -0.019183, - 0.019169, - -0.057476, - -0.028682, - -0.0075463, - -0.020249, - -0.063515, - 0.052583, - -0.021385, - 0.054488, - -0.0020807, - 0.0070641, - 0.025223, - -0.013985, - 0.12404, - 0.0048247, - -0.064157, - -0.01261, - 0.034567, - -0.01485, - -0.053599, - 0.0092614, - -0.0024857, - 0.025991, - 0.027508, - -0.047246, - -0.047436, - 0.014996, - 0.029849, - -0.042203, - -0.048231, - -0.026123, - 0.00088974, - -0.038728, - 0.000037276, - 0.029029, - 0.00016719, - -0.015775, - 0.056349, - -0.016666, - -0.0080258, - -0.067338, - 0.039448, - -0.0067661, - -0.050197, - 0.036522, - -0.030964, - 0.024559, - 0.021017, - 0.035683, - 0.022052, - 0.0045043, - 0.024948, - 0.020279, - 0.025702, - 0.0090493, - 0.026272, - -0.027349, - -0.017047, - -0.021935, - 0.016538, - 0.00030044, - 0.016918, - 0.022062, - 0.046939, - 0.008414, - 0.015034, - 0.0066135, - -0.0029931, - -0.030206, - -0.029297, - 0.039965, - 0.0084295, - 0.045466, - 0.0095177, - -0.048922, - 0.070674, - -0.0084889, - -0.01112, - -0.023006, - 0.020793, - 0.093337, - -0.013166, - 0.06296, - 0.014805, - -0.023197, - 0.038395, - 0.017089, - -0.016077, - 0.023871, - 0.034414, - 0.015876, - 0.062926, - 0.013208, - -0.06717, - 0.02714, - -0.010269, - -0.022932, - 0.0086038, - 0.024272, - 0.059331, - 0.033548, - -0.0016966, - 0.059929, - 0.018814, - -0.05414, - 0.0074698, - 0.033306, - -0.020127, - 0.0064059, - 0.088098, - -0.018372, - 0.057239, - 0.084778, - 0.0020365, - -0.00021987, - -0.012829, - -0.011721, - -0.019234, - -0.084016, - -0.015801, - -0.052859, - 0.045513, - -0.020599, - 0.028869, - -0.0025204, - -0.020204, - 0.041104, - -0.066001, - -0.038594, - -0.023894, - -0.0010992, - 0.049023, - -0.0072594, - -0.032578, - -0.055793, - -0.0011797, - -0.030504, - 0.0088501, - 0.095785, - -0.053832, - -0.063156, - 0.019351, - 0.060251, - -0.044011, - 0.0075797, - 0.0071529, - 0.020117, - -0.013114, - -0.017817, - 0.0052669, - -0.0042882, - -0.11794, - 0.03484, - -0.0011259, - -0.014398, - 0.025003, - -0.025577, - 0.0033489, - -0.030988, - -0.019287, - -0.037074, - 0.056745, - 0.02446, - 0.088047, - 0.091455, - 0.0073043, - -0.0055966, - 0.00064806, - 0.023387, - -0.075005, - -0.03942, - -0.0078054, - 0.0059086, - -0.014774, - 0.071229, - 0.061614, - 0.012949, - -0.024089, - 0.017766, - 0.0027104, - 0.013824, - -0.013284, - -0.0080083, - -0.073202, - -0.04754, - 0.023634, - 0.027448, - -0.029946, - 0.0013563, - 0.024226, - -0.020199, - -0.012958, - 0.03683, - 0.035955, - -0.0036988, - -0.0010706, - 0.0077183, - -0.00085691, - -0.027811, - 0.042893, - 0.029047, - -0.019114, - 0.014263, - 0.038495, - -0.0020937, - -0.041049, - -0.011424, - 0.036117, - -0.010597, - 0.010277, - -0.047527, - 0.0055725, - -0.015336, - -0.024046, - -0.020645, - 0.02579, - -0.027531, - -0.032743, - -0.011837, - 0.02772, - 0.068889, - -0.058091, - 0.05201, - -0.087457, - -0.037715, - -0.031413, - -0.0020088, - -0.059294, - -0.016849, - -0.052493, - 0.014695, - 0.056866, - -0.030723, - -0.04977, - 0.0090079, - 0.011258, - 0.062352, - -0.010728, - 0.043948, - -0.0053004, - -0.023855, - 0.014598, - 0.0087758, - -0.033121, - -0.038334, - -0.06121, - -0.017406, - 0.017149, - -0.019172, - 0.015522, - 0.0020014 - ], - "funding": [ - 0.089787, - -0.026113, - -0.033469, - 0.0066777, - 0.014839, - -0.0012674, - -0.026469, - -0.093025, - 0.029512, - 0.019767, - 0.017296, - 0.0091798, - 0.010247, - 0.014947, - -0.013048, - 0.060219, - 0.043764, - 0.017519, - 0.049182, - 0.015133, - 0.0049662, - 0.038462, - -0.0097132, - 0.074475, - 0.019257, - 0.028259, - -0.013304, - 0.02977, - 0.060013, - 0.0097824, - -0.023504, - 0.041902, - -0.044954, - -0.098655, - 0.026933, - 0.023887, - 0.023583, - -0.076643, - -0.0091031, - 0.013979, - -0.045813, - -0.12435, - 0.022415, - 0.041217, - -0.0031052, - 0.012573, - -0.016644, - -0.041016, - -0.0018489, - 0.030157, - -0.021776, - 0.057565, - 0.012579, - 0.05247, - -0.082715, - 0.036008, - 0.0062503, - -0.038447, - 0.0053351, - 0.089098, - 0.017769, - -0.0084464, - 0.095955, - 0.031287, - -0.0041066, - -0.13118, - -0.0012037, - -0.11289, - -0.060125, - 0.0061821, - 0.013176, - 0.0069877, - 0.031, - 0.022744, - 0.051, - 0.013703, - 0.042414, - -0.023919, - -0.01719, - -0.0094385, - -0.040068, - -0.019981, - -0.014622, - 0.098451, - 0.012297, - 0.060767, - -0.041495, - -0.042796, - -0.051581, - -0.027085, - -0.0084437, - -0.036361, - -0.0885, - 0.0084661, - -0.054991, - 0.0065324, - 0.04065, - 0.030814, - -0.054611, - 0.018536, - -0.04728, - -0.10175, - 0.018448, - 0.0058661, - 0.0052145, - -0.055202, - -0.010799, - -0.016699, - -0.044383, - 0.061526, - 0.014441, - 0.081976, - 0.09251, - 0.035148, - 0.0030125, - -0.050674, - -0.014489, - -0.070782, - -0.072444, - 0.046972, - -0.021031, - -0.062895, - -0.070159, - -0.0062647, - 0.080972, - -0.033229, - -0.10211, - -0.083897, - -0.012419, - 0.11442, - -0.036655, - -0.037624, - -0.012057, - 0.053206, - -0.0054881, - 0.035548, - -0.024829, - 0.019725, - -0.038424, - 0.0051477, - -0.00064712, - -0.018467, - 0.025268, - 0.029503, - -0.053643, - -0.051118, - -0.013732, - 0.017807, - 0.043341, - -0.042683, - 0.049828, - 0.046939, - 0.050543, - -0.16924, - 0.018852, - 0.021267, - 0.040488, - -0.018095, - -0.014316, - -0.0022372, - 0.10247, - 0.0055073, - -0.043062, - 0.0076143, - -0.030455, - 0.072631, - -0.028518, - 0.015556, - -0.012889, - -0.036905, - 0.037873, - -0.016579, - -0.039889, - -0.044813, - -0.0038526, - 0.064554, - -0.053505, - -0.021577, - -0.076017, - -0.036611, - -0.033723, - 0.010122, - 0.045044, - 0.039956, - -0.048352, - -0.093612, - -0.026698, - 0.081433, - 0.0028433, - -0.024325, - -0.039217, - 0.054886, - 0.0070803, - 0.012697, - -0.011802, - -0.013522, - -0.040373, - 0.02004, - 0.013072, - -0.073016, - -0.17092, - 0.050132, - -0.015918, - 0.039047, - 0.0045595, - -0.045222, - -0.0053657, - -0.011842, - -0.027063, - -0.025217, - 0.13226, - 0.028737, - -0.046242, - 0.020424, - 0.006979, - -0.0073456, - 0.013892, - 0.0029448, - -0.019092, - -0.074454, - 0.014822, - -0.0015921, - -0.017879, - 0.074827, - 0.10578, - 0.015924, - 0.008946, - 0.0086741, - 0.0474, - -0.035812, - -0.050247, - -0.064064, - -0.072027, - -0.032834, - 0.026414, - -0.029787, - 0.024745, - 0.01264, - -0.079223, - -0.028278, - 0.050952, - -0.046116, - 0.059198, - -0.018634, - -0.068039, - 0.019582, - -0.043766, - -0.051637, - 0.0080953, - -0.015743, - 0.0048578, - 0.023578, - 0.036575, - -0.041436, - 0.02034, - 0.035708, - -0.0074711, - 0.035278, - 0.0011648, - 0.080026, - 0.027497, - -0.058955, - -0.023611, - 0.0031913, - 0.0041514, - 0.016071, - -0.03301, - -0.018175, - 0.077182, - 0.098565, - 0.051353, - 0.023345, - -0.1218, - -0.050982, - -0.061011, - -0.022906, - 0.00068502, - 0.076361, - -0.029694, - -0.00083277, - 0.094211, - -0.075132, - 0.026503, - 0.013511, - 0.027766, - 0.029253, - -0.0054845, - 0.056938, - -0.052957, - -0.028933, - 0.035592, - 0.0013013, - -0.0068112, - 0.035419, - 0.00076021, - -0.039791, - -0.089381, - -0.011688, - -0.081342, - -0.020292 - ], - "alcohol": [ - -0.07541, - 0.012452, - 0.060264, - 0.053169, - -0.0004471, - -0.0099979, - 0.037546, - -0.07059, - 0.051363, - 0.077536, - 0.0029387, - 0.0017788, - 0.1004, - -0.0076664, - 0.031586, - -0.044804, - 0.058982, - -0.054187, - 0.016717, - 0.088403, - 0.026651, - 0.04294, - 0.020325, - 0.012374, - -0.026153, - -0.058252, - -0.044736, - 0.048991, - 0.12175, - 0.015721, - -0.043466, - 0.043183, - 0.022864, - -0.0031394, - 0.052394, - 0.0054624, - -0.048674, - 0.020337, - -0.060968, - 0.10012, - 0.006126, - -0.095052, - -0.058053, - 0.023432, - 0.007225, - -0.011054, - 0.056, - -0.01279, - 0.01025, - 0.024481, - -0.038007, - 0.001263, - 0.10809, - -0.062284, - -0.091747, - 0.032715, - -0.0078183, - -0.085197, - -0.041228, - -0.021292, - 0.06216, - -0.0085222, - 0.090571, - 0.059405, - -0.11186, - 0.021451, - -0.015045, - -0.054659, - 0.058733, - -0.0051216, - 0.055241, - -0.012401, - 0.064367, - 0.0053977, - -0.034824, - -0.080872, - -0.022566, - 0.0065999, - 0.029039, - -0.0027225, - -0.05231, - -0.042274, - -0.12841, - 0.053312, - -0.059503, - -0.030506, - 0.034838, - -0.033926, - -0.0017318, - -0.02837, - 0.02798, - 0.013257, - -0.09432, - -0.01209, - -0.036416, - 0.04167, - -0.016541, - 0.069619, - 0.041188, - 0.037057, - -0.0075165, - -0.01152, - -0.03376, - -0.053574, - 0.033361, - -0.069026, - -0.064694, - -0.0012385, - -0.043917, - 0.10962, - 0.030802, - 0.11566, - 0.067881, - -0.049457, - 0.059636, - -0.04842, - 0.051942, - -0.10789, - -0.060973, - 0.0076078, - 0.01366, - -0.012601, - 0.016719, - -0.13237, - 0.042713, - 0.0094284, - -0.055606, - -0.077434, - 0.053511, - 0.071769, - 0.041382, - -0.062266, - 0.02314, - -0.0033698, - -0.036061, - -0.024517, - -0.037787, - 0.0082601, - 0.035864, - -0.0073357, - 0.11225, - 0.047954, - -0.017203, - -0.056704, - 0.071643, - 0.015212, - 0.07363, - 0.070205, - 0.0087231, - -0.0046575, - 0.025409, - 0.053944, - 0.042228, - -0.033671, - 0.028002, - 0.0009489, - -0.079702, - -0.004471, - 0.030476, - 0.052551, - 0.031289, - 0.057495, - -0.1187, - 0.016192, - 0.046051, - 0.015702, - -0.020103, - -0.028715, - 0.012273, - -0.021307, - -0.0073256, - -0.023981, - 0.054091, - 0.0066197, - 0.017455, - 0.063975, - -0.030533, - 0.068653, - -0.013913, - -0.044153, - 0.010857, - -0.024583, - -0.086345, - -0.040316, - 0.069994, - -0.091662, - 0.036595, - 0.12524, - 0.11207, - -0.027087, - 0.031017, - 0.017276, - -0.019538, - 0.087257, - 0.13684, - 0.004764, - 0.040459, - -0.02171, - -0.019246, - -0.056289, - -0.14546, - 0.0034581, - -0.034284, - -0.047442, - 0.020555, - 0.099382, - 0.01802, - 0.059498, - -0.02357, - -0.035665, - 0.1353, - 0.033805, - 0.049334, - 0.014399, - 0.11506, - 0.018611, - -0.039645, - 0.035399, - 0.011341, - -0.085103, - -0.03874, - -0.076078, - -0.060974, - 0.071935, - 0.016436, - 0.01847, - -0.012953, - 0.008199, - -0.067702, - -0.057154, - -0.0075285, - -0.014218, - -0.10561, - -0.079738, - 0.003692, - -0.011112, - 0.027665, - 0.037284, - 0.045887, - -0.10807, - 0.020082, - -0.026705, - 0.0021962, - -0.049801, - -0.014472, - 0.037209, - -0.020983, - -0.045706, - 0.057131, - 0.02216, - -0.079556, - 0.090201, - -0.038983, - -0.077043, - 0.015473, - -0.042222, - 0.025824, - -0.0064228, - 0.061644, - -0.037637, - 0.056157, - -0.074615, - -0.036379, - 0.010965, - -0.039933, - -0.050081, - 0.001841, - -0.047322, - 0.035127, - 0.12489, - -0.0084826, - 0.073089, - -0.102, - -0.044107, - -0.053146, - -0.043501, - -0.022933, - 0.078984, - -0.055259, - 0.072427, - 0.089633, - -0.006622, - -0.094187, - -0.010316, - -0.050637, - 0.031145, - 0.038995, - 0.077517, - 0.050871, - -0.096504, - 0.071206, - 0.0051133, - -0.062482, - 0.017243, - -0.054133, - 0.058937, - 0.051175, - -0.059789, - 0.0050738, - -0.018025 - ], - "entertainment": [ - -0.011311, - -0.039349, - 0.017149, - 0.048989, - -0.013335, - -0.014585, - 0.012053, - -0.052022, - 0.024122, - 0.035296, - 0.016124, - -0.020199, - 0.019894, - 0.00042902, - -0.0087811, - -0.0047892, - 0.047382, - -0.013119, - 0.023528, - 0.025553, - 0.040493, - -0.042066, - 0.030042, - 0.042004, - -0.022062, - 0.028838, - 0.0051255, - 0.018005, - 0.0059039, - -0.016206, - -0.025137, - -0.028947, - -0.0095391, - -0.055303, - 0.070004, - 0.029841, - -0.0067396, - 0.012637, - 0.020899, - 0.034742, - -0.025722, - -0.091783, - -0.0098124, - 0.018146, - 0.013298, - -0.034365, - 0.054142, - 0.0048093, - -0.024578, - -0.0096842, - -0.0040869, - -0.0031798, - 0.016632, - -0.037594, - -0.032086, - 0.024751, - -0.019962, - -0.014738, - -0.027663, - -0.031342, - -0.0069236, - 0.0024225, - 0.057477, - 0.027428, - 0.047282, - 0.049521, - -0.014876, - 0.000032157, - 0.033935, - 0.013333, - 0.033795, - -0.020094, - 0.021417, - 0.044129, - 0.015882, - 0.015982, - 0.0046603, - -0.0076793, - -0.0056682, - -0.034125, - -0.01337, - -0.0045321, - -0.015482, - 0.044129, - -0.024834, - -0.0099356, - -0.04626, - 0.00064448, - -0.031208, - -0.018648, - 0.0095665, - 0.045187, - -0.067943, - -0.0046844, - -0.0012913, - 0.038942, - 0.0052617, - 0.0024521, - -0.032256, - 0.033062, - 0.045236, - 0.039639, - -0.012671, - -0.05609, - 0.019993, - -0.033292, - -0.029298, - 0.00293, - 0.029713, - -0.012609, - -0.033724, - 0.087955, - 0.0332, - 0.0080373, - 0.018409, - -0.038892, - -0.00056938, - -0.011269, - -0.02412, - -0.00085984, - -0.028064, - 0.036435, - -0.033775, - -0.015881, - 0.055455, - 0.021177, - -0.033544, - -0.043202, - -0.00082893, - 0.060073, - 0.041625, - -0.0034731, - 0.01717, - -0.040833, - 0.0051823, - 0.0083977, - -0.0073583, - 0.010172, - -0.012477, - -0.0010517, - 0.0339, - -0.018685, - 0.019231, - 0.023112, - -0.024413, - 0.015638, - -0.01564, - -0.049329, - 0.0078819, - 0.038864, - 0.064137, - 0.049214, - -0.046333, - -0.054316, - -0.0023307, - 0.014406, - -0.036367, - 0.071791, - 0.017035, - -0.0073585, - 0.02374, - 0.0088812, - -0.047687, - 0.021875, - 0.00075695, - 0.068741, - -0.0018631, - -0.025317, - -0.033057, - -0.0069336, - 0.030839, - 0.0067063, - 0.058027, - 0.024348, - -0.0014833, - 0.0365, - -0.030607, - 0.042908, - -0.028884, - -0.013413, - -0.033482, - -0.017561, - -0.00065321, - -0.042537, - -0.039723, - -0.0055468, - 0.0057805, - 0.063841, - -0.014276, - -0.0051358, - -0.010886, - 0.065005, - 0.015673, - 0.0023068, - -0.027446, - 0.033188, - -0.01632, - -0.011923, - 0.0034784, - -0.0037087, - -0.087081, - 0.05325, - 0.010057, - -0.027218, - 0.040344, - 0.046636, - -0.0098674, - -0.00072978, - 0.0015601, - 0.0031133, - 0.069445, - -0.0042713, - -0.017244, - -0.0010914, - -0.0048765, - 0.023182, - -0.038983, - -0.017644, - -0.0081297, - -0.0018057, - 0.028121, - -0.012072, - -0.012044, - 0.067879, - 0.010091, - -0.044858, - 0.04998, - 0.046277, - -0.03159, - -0.011012, - 0.0013266, - -0.015298, - -0.019992, - 0.0011963, - 0.022912, - -0.0002837, - -0.024945, - -0.018787, - 0.0067832, - -0.082337, - 0.026538, - -0.027763, - -0.024909, - -0.033069, - -0.021515, - 0.021631, - 0.0027667, - -0.027347, - 0.011738, - 0.01532, - 0.055394, - -0.0066547, - -0.024801, - 0.034757, - -0.024096, - 0.027552, - -0.062121, - 0.018807, - 0.016677, - 0.024999, - 0.0267, - 0.012893, - 0.0097112, - 0.013517, - 0.015342, - 0.037725, - 0.034656, - 0.005248, - 0.02551, - 0.0081448, - 0.0046404, - 0.041367, - -0.066349, - -0.019962, - -0.030007, - -0.014882, - 0.015999, - 0.023074, - -0.031909, - 0.019292, - 0.055136, - 0.03501, - -0.025367, - -0.013015, - -0.017792, - -0.0046523, - 0.004231, - 0.00044463, - -0.016515, - 0.019853, - 0.031653, - 0.017286, - -0.014937, - -0.011953, - 0.016765, - 0.018183, - -0.014084, - 0.054819, - 0.0038435, - 0.032631 - ], - "quality": [ - 0.043602, - -0.017989, - -0.013987, - 0.028869, - -0.014969, - -0.048123, - -0.030917, - -0.084648, - 0.11083, - 0.0011173, - -0.0269, - -0.037917, - 0.060851, - -0.034892, - -0.015513, - 0.042835, - 0.052905, - 0.064694, - 0.07214, - 0.030176, - -0.0051645, - -0.0010781, - 0.034794, - 0.051012, - -0.026489, - 0.021543, - -0.027399, - -0.009248, - 0.075748, - -0.010934, - -0.03879, - -0.011644, - -0.0054727, - -0.094057, - 0.012048, - 0.024639, - 0.061415, - 0.023681, - 0.0055286, - 0.085107, - 0.044981, - -0.14922, - -0.008908, - -0.012782, - -0.025782, - -0.094168, - 0.0036019, - -0.034867, - -0.034957, - 0.075962, - 0.0047472, - -0.031007, - 0.030906, - 0.01368, - -0.053758, - -0.0081082, - -0.06079, - 0.034256, - -0.022234, - -0.0061642, - -0.01551, - -0.043454, - 0.12567, - 0.016318, - 0.064992, - 0.035742, - -0.064042, - -0.028203, - 0.016397, - -0.029882, - 0.085321, - 0.024991, - 0.039478, - -0.042573, - 0.00021448, - -0.021236, - -0.023139, - -0.029613, - 0.0038968, - -0.0055353, - -0.019256, - -0.04163, - 0.032126, - 0.077809, - 0.038334, - -0.0081162, - 0.01399, - -0.034552, - -0.061393, - -0.050935, - 0.014393, - -0.017209, - -0.082651, - 0.014189, - -0.065696, - 0.023899, - 0.037383, - -0.0074133, - 0.055529, - 0.0074306, - -0.030464, - -0.011456, - 0.019525, - 0.082039, - -0.035783, - -0.072749, - 0.024263, - -0.00086265, - 0.070296, - 0.030185, - 0.10608, - 0.094683, - 0.053099, - 0.013243, - -0.035664, - -0.017234, - -0.053282, - -0.025123, - -0.073852, - -0.041114, - -0.03414, - -0.011544, - 0.017971, - -0.071244, - 0.085923, - -0.0025511, - -0.012086, - -0.12055, - -0.011469, - 0.098645, - 0.070345, - -0.077269, - -0.023993, - -0.07631, - -0.020816, - -0.03758, - 0.011744, - 0.029097, - -0.010642, - -0.0057424, - -0.014591, - -0.016311, - -0.002271, - -0.03926, - -0.0070371, - -0.030169, - -0.002133, - -0.0077538, - -0.042443, - 0.033252, - 0.07369, - 0.077543, - 0.0454, - -0.070736, - -0.01949, - 0.043606, - -0.0091368, - 0.044433, - 0.065105, - 0.006605, - 0.031708, - -0.010084, - -0.10755, - -0.019319, - -0.015998, - -0.015299, - 0.042177, - 0.033518, - 0.067385, - 0.0092319, - 0.007452, - 0.027974, - -0.0058996, - -0.01184, - 0.058925, - 0.063117, - -0.036869, - 0.067115, - -0.019698, - 0.013573, - -0.032689, - -0.0063638, - 0.018511, - -0.067923, - -0.043527, - -0.088192, - 0.01436, - 0.11983, - -0.057372, - -0.052091, - 0.00060001, - 0.058893, - 0.015804, - -0.090634, - 0.0037845, - -0.018176, - 0.07071, - 0.014388, - -0.0080485, - -0.073257, - -0.1521, - 0.031554, - -0.012302, - -0.052696, - -0.036665, - -0.017339, - 0.0015856, - 0.024451, - -0.029113, - -0.013231, - 0.10824, - -0.021211, - -0.031732, - -0.0023303, - 0.043738, - -0.059165, - 0.043268, - 0.026092, - -0.085395, - 0.018406, - -0.03555, - 0.048788, - 0.013688, - 0.095176, - 0.074297, - -0.032915, - 0.0003677, - 0.10181, - 0.035363, - -0.033247, - -0.020614, - -0.061944, - -0.096358, - 0.07317, - 0.034065, - 0.04118, - -0.050773, - -0.034563, - 0.068756, - -0.0097917, - 0.027352, - 0.003848, - -0.0064559, - -0.033762, - -0.091969, - 0.019292, - -0.00010314, - -0.088565, - -0.013352, - -0.04115, - 0.073448, - -0.018043, - -0.004062, - 0.00092902, - 0.035272, - -0.017387, - -0.040855, - 0.053182, - 0.055795, - 0.016141, - -0.055566, - -0.030422, - 0.017827, - -0.042346, - 0.024731, - 0.022376, - 0.0057838, - 0.020178, - 0.016384, - 0.046214, - 0.0029843, - 0.073342, - -0.10967, - -0.066951, - 0.028124, - -0.021562, - -0.015617, - 0.055382, - -0.011907, - 0.00080122, - 0.11993, - 0.01745, - 0.01726, - -0.010407, - 0.029411, - -0.025852, - -0.0082297, - 0.11447, - -0.024259, - -0.005881, - -0.054381, - -0.01723, - -0.0068186, - -0.027139, - 0.044488, - -0.033973, - 0.00011052, - -0.020204, - -0.059833, - -0.029271 - ], - "tales": [ - -0.053795, - -0.064592, - 0.08449, - -0.0060209, - -0.062988, - -0.054981, - -0.068932, - -0.11672, - 0.030891, - 0.07807, - -0.022788, - -0.089907, - -0.058979, - -0.03304, - 0.066565, - -0.043901, - 0.081602, - -0.088419, - 0.074363, - 0.089604, - -0.0096473, - 0.052528, - -0.090807, - 0.080881, - 0.039775, - -0.032096, - 0.02209, - -0.012925, - 0.073561, - -0.075622, - -0.036516, - -0.12446, - 0.0025872, - -0.062148, - 0.049528, - -0.0052565, - -0.05516, - 0.040956, - -0.033134, - -0.0098532, - 0.069534, - -0.10479, - 0.039168, - 0.13013, - 0.055384, - -0.01843, - 0.024291, - 0.037806, - -0.04501, - -0.078278, - 0.028903, - 0.10181, - -0.033867, - -0.059183, - -0.033305, - 0.078752, - -0.018956, - -0.0099714, - -0.01463, - -0.060087, - -0.12715, - -0.077712, - 0.16472, - -0.00093524, - 0.1135, - 0.037971, - -0.016822, - 0.068498, - -0.049245, - 0.068601, - 0.0063656, - -0.1054, - 0.056334, - 0.040101, - 0.035606, - 0.073933, - 0.039912, - -0.06381, - -0.030474, - -0.14452, - -0.058631, - -0.03842, - 0.017652, - 0.025303, - 0.0049794, - -0.047173, - 0.025206, - 0.022492, - -0.042283, - -0.019887, - -0.078571, - 0.031403, - -0.11324, - 0.015622, - 0.024255, - 0.071005, - 0.052378, - -0.022428, - -0.044554, - 0.057933, - -0.0011087, - 0.0051519, - -0.16451, - -0.026134, - 0.037708, - -0.049093, - 0.016375, - -0.061124, - 0.030908, - 0.099564, - 0.014278, - -0.018224, - 0.027611, - -0.040042, - -0.095453, - 0.073942, - 0.0064392, - 0.080713, - -0.025453, - 0.013132, - 0.030071, - -0.068029, - -0.027496, - -0.12928, - 0.14933, - 0.096528, - 0.03687, - 0.015766, - 0.0048249, - 0.11212, - -0.057627, - 0.09365, - -0.064257, - 0.015645, - 0.081113, - -0.078858, - 0.013623, - 0.084416, - -0.059868, - -0.052158, - 0.029124, - 0.0033189, - 0.080311, - 0.024206, - 0.030309, - -0.11386, - -0.030977, - 0.058568, - -0.067173, - -0.070614, - -0.033465, - 0.075045, - -0.0020471, - 0.0028229, - 0.03983, - -0.098103, - -0.016395, - 0.086665, - 0.01099, - 0.027709, - 0.020803, - 0.13637, - 0.010772, - 0.043935, - 0.013989, - -0.04314, - 0.041146, - 0.0051946, - -0.030761, - -0.039343, - -0.027826, - -0.013059, - 0.021254, - -0.05168, - 0.015173, - 0.028531, - 0.076756, - -0.0020785, - -0.0015874, - 0.0043313, - 0.11251, - 0.061895, - 0.021696, - 0.017041, - -0.056681, - -0.16214, - 0.11292, - 0.15744, - 0.0655, - 0.045846, - -0.0050223, - 0.071552, - -0.12978, - -0.066215, - -0.0096013, - 0.091137, - -0.034797, - 0.0071797, - 0.014593, - 0.067268, - -0.16633, - 0.068292, - -0.053011, - -0.062048, - 0.094003, - 0.028907, - 0.021123, - 0.042331, - 0.075853, - -0.083352, - 0.076843, - 0.02336, - -0.01191, - 0.015027, - 0.07425, - -0.002054, - -0.0098262, - -0.029316, - -0.1098, - 0.0068842, - 0.061898, - -0.033943, - 0.060136, - 0.079165, - 0.093134, - -0.057651, - 0.11094, - 0.054824, - -0.066506, - -0.039743, - 0.031719, - -0.010886, - -0.086471, - 0.094593, - 0.12686, - 0.060944, - 0.027982, - -0.008975, - 0.10741, - -0.045, - -0.04769, - 0.03948, - -0.038033, - -0.041822, - 0.010233, - 0.030192, - -0.0085075, - -0.05446, - -0.066476, - 0.072643, - 0.06757, - -0.016928, - 0.051725, - 0.026724, - -0.012487, - 0.050834, - -0.041161, - 0.047461, - 0.059544, - 0.03765, - 0.079904, - -0.042398, - -0.021595, - -0.067365, - 0.0019607, - -0.033232, - 0.084925, - 0.052639, - 0.09268, - -0.050126, - -0.062115, - 0.065131, - -0.11356, - -0.029467, - 0.11115, - -0.028409, - 0.01056, - -0.056566, - -0.041096, - 0.053461, - 0.078768, - -0.035737, - -0.00078581, - -0.034538, - -0.028229, - 0.03923, - 0.065916, - 0.041059, - -0.091137, - -0.011173, - 0.076423, - 0.061894, - -0.0041177, - -0.034869, - -0.029108, - -0.057952, - 0.16389, - 0.060695, - 0.013839, - -0.025509 - ], - "adventure": [ - -0.034065, - -0.007299, - 0.014888, - 0.046065, - -0.0598, - 0.0053883, - -0.029052, - -0.07573, - 0.041922, - 0.065891, - -0.034328, - -0.010247, - -0.075269, - -0.031588, - 0.0097732, - -0.027335, - 0.049952, - -0.028523, - 0.031049, - -0.050679, - 0.015539, - 0.00029869, - -0.037172, - 0.035076, - 0.0047837, - 0.033205, - 0.010877, - -0.019957, - -0.019423, - 0.021691, - -0.067512, - -0.018689, - -0.002393, - -0.10347, - 0.014261, - -0.02619, - 0.030308, - 0.023924, - 0.000441, - -0.0022546, - 0.054472, - -0.088016, - 0.0055227, - 0.010047, - -0.01052, - 0.02512, - -0.0072111, - -0.01825, - -0.028823, - -0.011111, - 0.078635, - 0.06057, - -0.061284, - -0.054706, - -0.056946, - 0.020437, - -0.019581, - -0.033591, - -0.046245, - 0.027803, - -0.021207, - -0.026931, - 0.094199, - -0.0064047, - 0.069949, - -0.012949, - -0.000072035, - -0.016888, - -0.012853, - 0.039942, - 0.035773, - -0.054334, - -0.021623, - 0.11683, - 0.075257, - 0.038677, - -0.021061, - -0.010459, - -0.031723, - 0.007432, - -0.018893, - -0.005469, - 0.027616, - 0.04322, - -0.047822, - -0.025389, - 0.038638, - 0.0098991, - -0.02346, - -0.022157, - 0.054926, - 0.059547, - -0.071831, - -0.027946, - 0.015548, - 0.022206, - 0.044001, - -0.007153, - -0.048429, - -0.0050392, - 0.020608, - 0.055501, - 0.0024659, - -0.059559, - -0.0050298, - -0.030367, - -0.032982, - 0.0073286, - -0.041139, - -0.0092613, - -0.031447, - 0.03244, - 0.028773, - 0.034055, - -0.04618, - 0.052591, - -0.01032, - 0.0051755, - -0.043252, - 0.0031464, - 0.059172, - -0.0047299, - -0.030018, - -0.031415, - 0.084859, - -0.001878, - 0.020116, - -0.078273, - 0.010826, - 0.10545, - -0.0044767, - -0.0068263, - -0.092472, - -0.01594, - 0.016221, - -0.062066, - 0.055875, - 0.018517, - 0.011627, - -0.01359, - -0.0089829, - -0.029079, - 0.0071993, - 0.019768, - -0.03858, - 0.047241, - -0.019621, - -0.025881, - 0.001585, - -0.029746, - 0.085308, - 0.035891, - -0.04254, - -0.076799, - 0.030033, - 0.035957, - -0.032875, - 0.071288, - 0.021493, - -0.088003, - 0.024892, - 0.023355, - -0.057891, - 0.017936, - -0.019258, - 0.038496, - -0.029633, - -0.0047056, - 0.018928, - -0.0036248, - 0.048879, - -0.020177, - -0.04656, - -0.025309, - -0.028697, - 0.056937, - 0.0068575, - 0.037171, - 0.00082219, - 0.036629, - -0.0017325, - -0.046002, - -0.042786, - -0.065562, - 0.035613, - -0.045837, - 0.046174, - 0.089655, - -0.023913, - -0.022807, - -0.0027147, - 0.060558, - -0.012513, - -0.0011111, - -0.022998, - 0.042549, - -0.016086, - 0.039266, - 0.020772, - 0.05232, - -0.10764, - 0.085975, - 0.023661, - -0.033489, - -0.00022773, - 0.036106, - -0.0077287, - 0.031371, - 0.043906, - -0.012443, - 0.10579, - -0.0064753, - -0.022373, - 0.0098076, - 0.070852, - -0.024163, - -0.015801, - -0.0083665, - -0.015626, - -0.068134, - -0.03234, - 0.026699, - -0.084196, - 0.079385, - -0.0090639, - -0.020264, - 0.012139, - 0.087699, - -0.037558, - 0.0091057, - -0.023608, - -0.073549, - -0.020032, - 0.043908, - 0.018534, - 0.023142, - 0.019148, - -0.052868, - -0.017787, - -0.024156, - 0.045128, - 0.060553, - 0.024114, - -0.039465, - -0.03772, - 0.042566, - -0.034814, - -0.08227, - -0.029803, - 0.078325, - 0.10115, - 0.0049353, - 0.041851, - 0.007915, - 0.017956, - 0.057662, - -0.033576, - 0.025607, - 0.05124, - 0.051598, - 0.00681, - 0.043423, - -0.040299, - -0.020637, - -0.041543, - -0.0091598, - 0.0088189, - 0.0057466, - 0.078545, - 0.0096207, - 0.0020174, - 0.068179, - -0.0932, - -0.021902, - -0.0029562, - -0.052329, - 0.037929, - -0.00064534, - -0.013021, - 0.029294, - 0.074249, - -0.004899, - 0.051358, - -0.034751, - -0.018384, - -0.013312, - 0.0037748, - 0.014163, - -0.019368, - -0.013424, - 0.038676, - 0.064476, - -0.0013261, - -0.0054893, - 0.00061476, - -0.00065855, - 0.069791, - 0.047117, - -0.026002, - -0.023792 - ], - "research": [ - -0.029035, - -0.067854, - -0.048793, - -0.0018745, - 0.01359, - -0.030754, - 0.0052749, - -0.09023, - -0.034699, - 0.023336, - -0.024079, - -0.087107, - 0.033905, - -0.075688, - 0.0076037, - 0.034975, - 0.087152, - -0.014205, - 0.02187, - 0.049771, - 0.013594, - 0.071306, - 0.046065, - 0.059254, - 0.00089318, - 0.0033107, - -0.048775, - 0.031523, - -0.02209, - 0.0093375, - -0.0056448, - 0.02094, - 0.0086528, - -0.093514, - 0.040347, - 0.036032, - 0.0081036, - -0.095996, - 0.014759, - 0.03064, - 0.000082629, - -0.08726, - 0.0087148, - -0.024308, - 0.014412, - -0.011249, - -0.000060452, - 0.0051157, - -0.008707, - -0.020521, - 0.018592, - 0.050299, - -0.028155, - 0.045686, - -0.037496, - 0.021432, - -0.065002, - 0.078406, - -0.00087524, - 0.042903, - 0.0099585, - 0.020993, - 0.11095, - 0.013667, - 0.044748, - 0.016052, - 0.00093648, - -0.015356, - -0.003174, - 0.019943, - 0.049439, - 0.007545, - 0.022153, - -0.015247, - 0.044481, - -0.0086048, - -0.007074, - 0.0044194, - 0.02033, - -0.046073, - -0.043602, - 0.0082982, - -0.049124, - 0.0279, - -0.022285, - 0.024799, - -0.0042363, - 0.012447, - -0.0050814, - 0.022746, - -0.025484, - 0.03843, - -0.097531, - -0.0067619, - 0.0374, - -0.0036664, - 0.057446, - 0.017295, - 0.0083697, - -0.007721, - -0.02133, - -0.02847, - 0.000029575, - 0.0050109, - 0.012994, - -0.076987, - -0.017762, - 0.031389, - 0.014244, - 0.017157, - -0.036456, - 0.040135, - 0.025031, - 0.020387, - 0.0028233, - 0.023244, - -0.0552, - -0.045703, - -0.066177, - 0.016389, - -0.00065265, - -0.0317, - -0.00050617, - 0.029645, - 0.081903, - -0.012359, - -0.026184, - -0.067553, - 0.0153, - 0.12786, - 0.048379, - 0.026183, - -0.0060909, - -0.014789, - 0.011818, - 0.022982, - 0.017436, - 0.046286, - 0.014278, - 0.025656, - 0.0052989, - 0.018247, - 0.025733, - 0.014639, - -0.0731, - -0.021966, - 0.0027449, - 0.029158, - 0.031042, - -0.037523, - 0.049159, - 0.086967, - 0.052902, - -0.14823, - 0.038488, - -0.0010221, - 0.016559, - 0.021861, - 0.0068715, - -0.0026871, - 0.037276, - 0.0082395, - -0.045597, - -0.036908, - -0.021025, - 0.0059822, - -0.029582, - -0.039943, - 0.029997, - -0.065094, - 0.08404, - -0.03031, - -0.010314, - -0.011818, - 0.0063339, - 0.036202, - -0.030592, - -0.01074, - -0.03991, - -0.0083783, - -0.023029, - 0.041349, - -0.020541, - 0.036876, - -0.00016284, - -0.024244, - -0.0012929, - 0.074204, - 0.0069858, - 0.016908, - 0.0028032, - 0.074883, - 0.019983, - -0.052876, - -0.028595, - 0.0316, - -0.026231, - 0.023377, - -0.04721, - -0.023624, - -0.10996, - 0.068413, - -0.034445, - -0.02613, - -0.0043972, - 0.031264, - -0.021291, - 0.0063134, - -0.0028692, - -0.013789, - 0.077611, - 0.028875, - -0.038433, - -0.0090371, - -0.017365, - -0.0071302, - 0.043325, - -0.049164, - -0.061773, - -0.011256, - -0.043174, - -0.0082024, - -0.014383, - 0.10009, - 0.037045, - -0.020256, - 0.0069396, - 0.10427, - -0.0058501, - -0.024162, - -0.0050536, - -0.090892, - -0.0032844, - -0.0035544, - 0.024686, - 0.007434, - 0.0066782, - 0.032937, - -0.034918, - -0.020045, - 0.040164, - -0.026751, - 0.04047, - -0.042619, - -0.047596, - 0.003449, - -0.023494, - -0.067902, - 0.027982, - 0.044174, - 0.053017, - 0.052052, - -0.020742, - -0.054207, - 0.0071054, - 0.0089224, - -0.0072312, - 0.02919, - 0.042143, - -0.014605, - 0.04606, - -0.0095912, - -0.02651, - -0.0020253, - -0.013824, - -0.0037758, - 0.025261, - 0.064429, - 0.017304, - 0.0002485, - 0.044665, - 0.073975, - -0.11269, - -0.035549, - -0.0046497, - -0.028566, - 0.037529, - 0.026087, - -0.024556, - 0.0017146, - 0.083222, - -0.044658, - 0.021673, - -0.018851, - 0.0060865, - -0.017772, - -0.012254, - -0.00018633, - -0.03619, - -0.016974, - -0.040974, - 0.036734, - -0.018328, - -0.015513, - 0.02538, - 0.028516, - -0.05179, - 0.0078932, - -0.031234, - 0.026698 - ], - "NSA": [ - -0.039623, - -0.034448, - -0.28798, - 0.12318, - -0.034747, - 0.035576, - -0.083593, - -0.1118, - -0.0011083, - -0.010834, - -0.001256, - -0.016257, - -0.14136, - 0.01974, - -0.13147, - 0.10218, - 0.065222, - 0.025255, - 0.14535, - -0.016989, - 0.052515, - 0.040332, - 0.080063, - -0.020841, - 0.021347, - 0.048472, - 0.12498, - 0.013241, - 0.10864, - -0.14473, - 0.038633, - -0.2629, - -0.050203, - 0.055766, - 0.0086948, - 0.066645, - 0.016591, - -0.034854, - 0.16996, - -0.04608, - -0.13379, - -0.040291, - -0.078116, - -0.067609, - 0.12183, - 0.1404, - -0.03346, - -0.10477, - -0.040815, - -0.077213, - 0.034026, - -0.052742, - 0.087762, - 0.07087, - -0.0032426, - 0.023303, - -0.084445, - -0.028341, - -0.1163, - 0.091324, - -0.071586, - 0.052624, - -0.0015237, - -0.11001, - -0.12338, - -0.2257, - 0.012065, - -0.10383, - 0.22073, - 0.078441, - 0.053684, - 0.0022094, - 0.051546, - 0.049986, - -0.059491, - -0.10299, - 0.10169, - -0.0267, - 0.1227, - -0.23425, - -0.054233, - 0.10134, - -0.018925, - 0.1698, - 0.045156, - 0.036084, - -0.01438, - -0.099942, - 0.04862, - 0.18055, - 0.030801, - -0.0029307, - -0.10226, - -0.080354, - 0.038243, - 0.13845, - 0.028706, - -0.21475, - 0.066175, - 0.1773, - 0.18398, - 0.056455, - -0.046086, - 0.042993, - -0.07118, - -0.17673, - 0.11017, - 0.05696, - 0.10756, - -0.0060109, - 0.02569, - 0.097043, - 0.083266, - 0.081524, - -0.082213, - -0.084976, - -0.021378, - 0.095899, - 0.046396, - -0.11091, - 0.15449, - 0.10111, - 0.00085109, - 0.091052, - -0.067165, - -0.059076, - -0.02155, - -0.089367, - -0.1112, - 0.16435, - -0.060313, - 0.087902, - 0.059349, - 0.088382, - 0.098014, - -0.22543, - 0.025546, - 0.0048755, - -0.20583, - 0.064143, - 0.064855, - -0.049923, - -0.13232, - -0.035594, - -0.1409, - 0.078302, - -0.14903, - -0.10789, - 0.090989, - -0.05276, - 0.0094525, - 0.12802, - -0.039038, - -0.054342, - 0.04849, - 0.013127, - -0.09132, - -0.083349, - 0.083744, - -0.0056145, - 0.089687, - 0.1372, - -0.045072, - -0.045049, - 0.05213, - -0.11412, - 0.01379, - -0.0057881, - 0.014964, - -0.028207, - 0.10342, - 0.030677, - -0.088433, - 0.15085, - -0.044043, - 0.025692, - -0.019977, - 0.042001, - 0.11762, - 0.010722, - -0.053878, - 0.057993, - 0.096229, - 0.11464, - -0.083433, - -0.076927, - 0.08946, - 0.23588, - 0.10988, - 0.10615, - 0.03229, - 0.11491, - -0.038105, - -0.030299, - 0.10178, - -0.10066, - -0.15335, - 0.082451, - -0.056334, - 0.026091, - -0.15718, - 0.10265, - -0.1923, - 0.11562, - -0.094159, - -0.27485, - 0.06686, - -0.10315, - -0.13094, - -0.10993, - 0.20248, - 0.049937, - 0.038409, - 0.086429, - 0.032759, - 0.042637, - -0.085426, - 0.047869, - 0.11251, - 0.010495, - 0.018323, - -0.060764, - -0.027461, - 0.16858, - -0.011199, - 0.15138, - 0.08945, - -0.064315, - -0.044515, - -0.057179, - 0.091162, - -0.11618, - -0.069008, - -0.0019707, - 0.0397, - -0.074361, - 0.025685, - -0.016465, - 0.069366, - -0.068396, - 0.059977, - -0.18109, - 0.16063, - -0.22265, - 0.13911, - 0.019904, - -0.076936, - -0.026163, - -0.081145, - 0.0071658, - -0.064659, - -0.034834, - -0.086856, - -0.018885, - 0.065044, - 0.019556, - -0.047634, - -0.018683, - -0.10891, - 0.04376, - -0.0088697, - 0.064303, - -0.010717, - 0.0046829, - 0.0024067, - -0.24405, - -0.051471, - -0.0062397, - 0.068171, - -0.029989, - -0.019534, - 0.097189, - -0.1467, - 0.098978, - 0.01698, - -0.053102, - 0.049858, - -0.056501, - 0.088517, - -0.060429, - 0.072962, - -0.019031, - 0.084773, - 0.14879, - 0.045986, - -0.10417, - 0.0083236, - -0.14054, - -0.0033558, - 0.017167, - -0.077, - 0.03947, - -0.0091009, - 0.030738, - 0.035767, - -0.011082, - -0.10983, - -0.048349, - -0.03514, - -0.01855 - ], - "etymology": [ - -0.070993, - -0.051183, - 0.010037, - 0.045743, - -0.040117, - -0.019639, - 0.01116, - -0.099684, - -0.030673, - 0.045535, - 0.056566, - -0.058055, - -0.024281, - 0.012333, - 0.02937, - -0.031342, - 0.015907, - -0.063295, - 0.010884, - 0.0090534, - 0.0072463, - 0.010635, - 0.02231, - 0.066514, - 0.055963, - -0.015299, - 0.0078293, - 0.091297, - 0.033095, - 0.0071951, - 0.11418, - -0.036752, - 0.037395, - -0.078058, - -0.016866, - -0.016213, - -0.014073, - 0.087655, - 0.027463, - -0.0087337, - 0.011914, - -0.07539, - 0.061193, - -0.044401, - 0.034863, - 0.003889, - -0.12424, - -0.036096, - 0.023556, - 0.017485, - -0.044985, - 0.041725, - 0.011406, - -0.053969, - -0.013051, - 0.037273, - -0.023253, - 0.0020359, - -0.0061876, - 0.02013, - -0.025396, - -0.019116, - 0.097397, - -0.0016484, - 0.081902, - -0.0094195, - 0.021448, - 0.014829, - 0.021471, - -0.081849, - 0.0025786, - 0.0012818, - -0.028422, - -0.041696, - 0.05415, - -0.020012, - -0.067693, - -0.043963, - -0.027917, - -0.078903, - -0.0099836, - 0.031915, - 0.0061001, - 0.046042, - -0.060533, - -0.036868, - -0.032168, - -0.035469, - -0.04395, - 0.035285, - 0.053203, - 0.005109, - -0.034803, - -0.001481, - 0.0044353, - 0.0096481, - 0.019997, - 0.047312, - -0.044117, - -0.018891, - -0.0044891, - -0.0065478, - 0.035185, - -0.029917, - -0.04735, - -0.034237, - -0.013334, - 0.029191, - 0.027331, - -0.017535, - -0.020644, - 0.057923, - 0.038158, - -0.0038317, - -0.016393, - 0.075136, - -0.019094, - 0.049322, - -0.018454, - 0.058189, - -0.028404, - -0.051476, - -0.0076443, - -0.029657, - 0.030729, - 0.0053362, - -0.057774, - -0.036128, - -0.029635, - 0.14299, - -0.024728, - -0.051897, - -0.080139, - -0.04006, - 0.0057334, - 0.0025735, - -0.053782, - 0.052266, - 0.036816, - -0.061921, - -0.0033217, - -0.032334, - -0.017714, - 0.068144, - 0.020578, - -0.097337, - 0.040748, - 0.018323, - -0.066858, - -0.11181, - -0.0040924, - 0.032107, - 0.0098666, - -0.058458, - -0.007638, - 0.075815, - -0.020626, - -0.013074, - -0.031077, - 0.068094, - -0.013416, - -0.0070772, - -0.071076, - -0.071701, - 0.066684, - -0.014398, - -0.010521, - 0.050505, - 0.013588, - 0.061434, - -0.019141, - -0.059658, - -0.014786, - 0.060892, - 0.066859, - 0.048406, - -0.0092101, - 0.01593, - 0.034269, - -0.02673, - -0.055562, - 0.099779, - -0.075996, - -0.030751, - 0.0045946, - -0.038827, - -0.057121, - 0.086853, - -0.0069612, - 0.049341, - 0.056909, - 0.092444, - -0.02612, - -0.022144, - -0.041866, - 0.088487, - -0.061323, - 0.05689, - -0.042946, - 0.0012328, - -0.10394, - 0.039359, - 0.0043983, - -0.045853, - 0.040892, - -0.011989, - 0.021806, - 0.020978, - -0.029899, - -0.012465, - 0.078842, - 0.02591, - 0.01842, - -0.055735, - 0.051221, - 0.055761, - -0.065706, - 0.012536, - -0.051712, - 0.01978, - 0.028901, - -0.069504, - -0.02717, - 0.086889, - 0.03974, - 0.0096959, - 0.055657, - 0.084953, - 0.03652, - -0.00097053, - -0.0098511, - -0.083291, - -0.040086, - -0.011432, - 0.0071939, - 0.01815, - -0.0097878, - 0.0075497, - 0.024696, - -0.021817, - 0.031211, - -0.02011, - -0.074867, - -0.037608, - -0.014699, - -0.018272, - -0.07653, - -0.033331, - -0.13929, - -0.0063938, - 0.044229, - -0.015584, - -0.040216, - -0.0092594, - 0.016102, - -0.073156, - -0.04067, - 0.0028109, - -0.016305, - 0.0054256, - 0.077843, - 0.0047566, - -0.017213, - -0.019525, - -0.01468, - -0.0040234, - -0.035547, - -0.012683, - -0.022699, - -0.025766, - -0.0080433, - 0.080764, - -0.048757, - 0.00019953, - 0.046452, - -0.01485, - -0.011911, - -0.017846, - -0.025889, - -0.11777, - 0.085333, - -0.030776, - 0.031198, - -0.050747, - -0.012527, - 0.022947, - -0.006875, - 0.057488, - -0.019697, - -0.021566, - 0.03687, - -0.016679, - 0.0076586, - -0.050508, - 0.022208, - 0.027392, - 0.04125, - 0.0089946, - -0.015376, - -0.0059804 - ], - "safety": [ - -0.083741, - -0.062176, - -0.03772, - 0.045901, - -0.06954, - -0.015561, - -0.021707, - -0.099242, - 0.12903, - 0.039333, - -0.018256, - -0.065698, - -0.00068821, - 0.060353, - -0.021817, - -0.043254, - 0.090498, - 0.056085, - 0.070899, - 0.061473, - -0.0011788, - -0.014957, - 0.12099, - 0.048612, - 0.078114, - 0.10073, - -0.037327, - 0.014754, - 0.061406, - 0.018038, - 0.057425, - -0.081723, - 0.051175, - -0.10085, - 0.0066383, - 0.031317, - 0.045257, - -0.0089922, - 0.026763, - -0.031462, - 0.025365, - -0.14267, - 0.070539, - 0.030814, - -0.025875, - -0.069151, - 0.075588, - 0.035242, - -0.029963, - 0.10479, - 0.070749, - 0.061093, - -0.0063648, - -0.022348, - -0.060251, - 0.0036677, - -0.063392, - -0.023756, - -0.023375, - -0.027576, - -0.031472, - -0.012018, - 0.082591, - 0.073028, - 0.086338, - 0.06446, - -0.0029515, - -0.084202, - 0.12893, - 0.00032061, - 0.058081, - 0.026756, - 0.049304, - -0.04826, - 0.046507, - -0.0051547, - 0.084973, - -0.040193, - 0.0181, - -0.025425, - 0.038677, - 0.020834, - -0.014604, - 0.074057, - -0.014735, - 0.026374, - 0.013272, - -0.039914, - -0.052732, - -0.050181, - 0.03416, - -0.0005173, - -0.12082, - 0.023678, - -0.040282, - 0.033133, - 0.057483, - 0.0065796, - 0.0054817, - -0.030414, - -0.078946, - 0.0045338, - -0.003094, - 0.0077319, - -0.0022068, - -0.076063, - 0.0056841, - -0.032014, - 0.064255, - 0.028865, - -0.011941, - 0.13301, - 0.092935, - -0.0015848, - 0.0025447, - -0.043972, - 0.0070256, - 0.044751, - -0.044679, - -0.014231, - -0.033919, - 0.089523, - -0.077129, - -0.052355, - 0.083735, - 0.0010265, - -0.017644, - -0.15924, - 0.039085, - 0.15908, - 0.062524, - -0.082222, - 0.052133, - -0.017694, - -0.045765, - -0.04812, - 0.10207, - 0.036752, - -0.054502, - 0.074617, - -0.0076852, - 0.068407, - -0.053968, - 0.021757, - -0.035356, - 0.043188, - -0.0037694, - -0.016719, - 0.055513, - -0.044422, - 0.075918, - 0.08397, - -0.0012178, - -0.085462, - 0.085897, - 0.0018244, - -0.0040528, - -0.0076591, - 0.004512, - -0.070231, - 0.073185, - -0.029723, - -0.13589, - 0.039182, - 0.035842, - -0.003596, - 0.032058, - -0.011689, - -0.0044522, - -0.066604, - 0.019547, - 0.0003156, - 0.01529, - -0.022764, - -0.031924, - 0.065605, - 0.024736, - 0.054401, - -0.038809, - -0.016292, - 0.0065764, - 0.0059162, - 0.07688, - -0.10614, - -0.014148, - -0.056351, - -0.055415, - 0.11558, - -0.01073, - -0.051358, - 0.0021577, - 0.021236, - 0.0092696, - -0.039769, - 0.073032, - 0.047536, - 0.0088737, - 0.018841, - 0.03467, - -0.037933, - -0.19331, - 0.020746, - 0.01824, - -0.079503, - 0.010495, - -0.0081419, - -0.044054, - 0.0060716, - -0.039505, - 0.038396, - 0.12064, - -0.019577, - -0.004087, - 0.11432, - 0.024559, - -0.056677, - 0.057804, - 0.0073456, - -0.027318, - 0.0088707, - -0.0083802, - -0.079224, - -0.08723, - 0.093315, - 0.070063, - -0.017011, - -0.13351, - 0.084972, - 0.053292, - -0.040447, - -0.054928, - -0.056868, - -0.084651, - -0.018802, - 0.0095533, - -0.0063583, - 0.0018802, - 0.036852, - 0.0003695, - 0.015793, - 0.021143, - 0.054844, - 0.043972, - -0.023188, - -0.091164, - -0.0062298, - 0.0033425, - -0.075988, - -0.043665, - 0.0098123, - 0.10147, - 0.06967, - 0.0075485, - 0.012962, - 0.062428, - -0.070521, - 0.055448, - 0.08817, - 0.014718, - -0.047315, - -0.037899, - 0.0075094, - -0.019411, - -0.018324, - 0.0492, - 0.041409, - 0.035233, - 0.063793, - -0.019208, - -0.033502, - -0.062344, - 0.077252, - -0.13775, - -0.080765, - 0.021307, - -0.021696, - 0.034045, - 0.057909, - 0.03418, - -0.042549, - 0.154, - -0.068368, - -0.067239, - -0.010088, - 0.082365, - 0.0037058, - -0.043026, - 0.080536, - 0.078016, - -0.00013309, - 0.097576, - -0.011892, - -0.025836, - -0.013649, - -0.032826, - -0.064676, - 0.037941, - 0.041621, - -0.045382, - -0.035346 - ], - "health": [ - -0.013209, - -0.13223, - -0.077486, - 0.04348, - -0.0099607, - -0.045624, - 0.0079021, - -0.092648, - 0.1776, - 0.0071824, - -0.053236, - -0.033083, - 0.029173, - -0.065293, - -0.038761, - -0.021538, - 0.12349, - 0.01503, - 0.071152, - 0.042054, - -0.050043, - 0.0064973, - 0.094146, - 0.089868, - -0.024448, - -0.070257, - -0.043957, - 0.042725, - 0.028649, - -0.011301, - 7.2868e-7, - -0.032307, - -0.012343, - -0.06898, - 0.059172, - 0.088621, - 0.024994, - -0.037348, - 0.074674, - 0.052418, - 0.039489, - -0.13448, - 0.024694, - 0.01481, - 0.024841, - -0.09751, - -0.03072, - -0.012572, - -0.030682, - 0.02584, - -0.018778, - 0.01364, - 0.065652, - -0.027422, - -0.041627, - 0.058727, - -0.095036, - 0.019801, - -0.032714, - -0.03124, - -0.012437, - -0.044763, - 0.10343, - 0.033528, - 0.08092, - 0.074578, - -0.0073147, - -0.043811, - 0.0084041, - 0.023513, - -0.0057541, - 0.026783, - 0.062192, - -0.046349, - -0.020254, - 0.039251, - 0.019305, - -0.030023, - -0.027885, - -0.023948, - -0.00068327, - 0.063192, - -0.066246, - 0.045416, - -0.055239, - 0.038137, - -0.012161, - -0.010154, - -0.05092, - 0.0096486, - 0.067091, - 0.062019, - -0.13497, - 0.054424, - -0.05429, - 0.058226, - 0.056926, - 0.064728, - 0.07951, - 0.018509, - -0.023982, - -0.004616, - 0.041168, - -0.055131, - 0.065413, - -0.10859, - 0.020852, - -0.02171, - 0.060589, - -0.010064, - 0.0051838, - 0.10804, - 0.067094, - 0.06226, - 0.031142, - 0.038231, - 0.02494, - -0.032249, - -0.035221, - -0.0086978, - -0.047614, - 0.045306, - 0.0023742, - 0.004681, - 0.10527, - 0.013889, - -0.034921, - -0.13276, - 0.10067, - 0.14859, - 0.028938, - -0.055258, - -0.0083403, - -0.03436, - -0.068405, - 0.021843, - 0.01468, - 0.018875, - 0.0031037, - 0.058555, - 0.074255, - -0.023428, - -0.021544, - 0.054322, - 0.019366, - -0.016753, - 0.011911, - -0.013273, - 0.044518, - -0.008258, - 0.10196, - 0.16136, - 0.053544, - -0.11047, - 0.031271, - -0.0060719, - -0.024793, - 0.014847, - 0.030003, - -0.099112, - 0.072856, - -0.025583, - -0.16877, - 0.023419, - -0.053344, - 0.00959, - -0.022239, - 0.021153, - -0.024354, - -0.0015549, - 0.013052, - -0.014832, - -0.0090586, - 0.0062689, - 0.0041593, - 0.07732, - 0.031352, - -0.0050232, - -0.071692, - 0.025187, - 0.0041681, - -0.0018569, - 0.035907, - -0.025016, - 0.0072033, - -0.068965, - -0.011617, - 0.14172, - -0.013445, - 0.0085446, - 0.0045898, - 0.0040742, - 0.039113, - -0.066288, - 0.068661, - -0.059905, - 0.038023, - -0.007137, - -0.037645, - -0.10513, - -0.14396, - 0.015756, - 0.022301, - -0.017231, - 0.0022749, - 0.0025151, - 0.036961, - -0.040698, - 0.013542, - 0.031889, - 0.12515, - -0.020433, - -0.051315, - 0.075335, - 0.0065429, - 0.020901, - 0.023429, - -0.0068001, - -0.044039, - 0.042841, - -0.039247, - -0.011741, - -0.10771, - 0.10328, - 0.021431, - 0.026047, - -0.055279, - 0.1245, - 0.019448, - -0.047029, - -0.017706, - -0.045497, - -0.1108, - -0.033848, - 0.050259, - 0.062142, - -0.051711, - 0.049254, - 0.0047532, - -0.046389, - 0.0059263, - 0.065056, - 0.026954, - -0.03473, - -0.056687, - 0.10505, - 0.041248, - -0.079528, - 0.0027253, - 0.0033101, - 0.096109, - -0.031637, - -0.0043321, - -0.052191, - 0.021807, - -0.020301, - -0.020875, - 0.043773, - 0.060428, - -0.0018482, - -0.045905, - -0.035151, - -0.018166, - -0.0036133, - 0.047931, - 0.021933, - 0.041111, - 0.081081, - 0.06309, - 0.037883, - -0.075725, - 0.042671, - -0.14768, - -0.038295, - 0.023342, - -0.048024, - -0.011983, - -0.011839, - 0.013288, - 0.0012376, - 0.162, - -0.028722, - -0.050869, - -0.027298, - 0.064581, - 0.078667, - -0.028987, - 0.019581, - 0.030021, - 0.0093691, - 0.072901, - 0.039489, - -0.071938, - 0.036908, - -0.01407, - -0.022897, - -0.016018, - 0.051682, - -0.0031429, - -0.015018 - ], - "internet": [ - -0.030312, - -0.033806, - -0.036504, - -0.0056389, - -0.05059, - 0.01102, - 0.015428, - -0.10487, - 0.075855, - -0.0017032, - 0.01323, - -0.035786, - -0.024179, - -0.030339, - 0.00064463, - -0.0051439, - 0.10235, - -0.039624, - 0.063172, - 0.017531, - -0.018875, - 0.070077, - 0.061162, - 0.033025, - -0.0083891, - 0.035416, - -0.0098821, - -0.025777, - 0.0080591, - 0.026611, - 0.0019234, - -0.031813, - -0.062849, - -0.066924, - 0.059188, - 0.012606, - 0.044859, - -0.022954, - 0.04202, - 0.008461, - -0.045133, - -0.11425, - -0.020295, - 0.0025096, - 0.04422, - -0.015701, - 0.0044713, - -0.0031293, - 0.0053963, - 0.0052832, - -0.0048079, - -0.071357, - 0.075204, - 0.0073975, - -0.067206, - 0.049383, - 0.0075274, - -0.012507, - -0.062601, - 0.0259, - -0.027071, - 0.0012518, - 0.13837, - 0.057687, - 0.0015671, - 0.017706, - -0.0083202, - -0.019741, - -0.042459, - -0.0097176, - 0.011112, - 0.02088, - 0.0016025, - -0.0093097, - -0.013644, - -0.029999, - 0.0049833, - -0.023323, - -0.015117, - -0.021372, - -0.00071571, - -0.024844, - -0.063359, - 0.091742, - 0.035598, - 0.016972, - -0.07181, - -0.023008, - -0.026955, - 0.065183, - -0.0039975, - 0.032647, - -0.03812, - 0.054696, - 0.025822, - 0.028166, - 0.054074, - -0.013847, - -0.01664, - -0.0012145, - -0.019412, - 0.012053, - -0.021031, - -0.066794, - 0.0073675, - -0.063621, - 0.022369, - -0.018565, - 0.061757, - 0.013208, - -0.014684, - 0.099682, - 0.048143, - -0.0092228, - -0.049947, - -0.0079593, - -0.014394, - -0.064259, - -0.045356, - 0.014965, - 0.0028047, - 0.016297, - 0.030566, - -0.0064786, - 0.046708, - -0.020378, - -0.027046, - -0.067541, - -0.015423, - 0.03897, - -0.0048524, - -0.016898, - -0.014731, - -0.023958, - 0.030772, - -0.015487, - 0.029115, - 0.021094, - -0.032645, - -0.008463, - 0.033706, - -0.010407, - 0.010307, - 0.014891, - -0.052774, - 0.047818, - -0.059742, - -0.06375, - 0.02489, - -0.062466, - 0.0458, - 0.089154, - -0.028204, - -0.020219, - 0.0066375, - -0.0088753, - -0.017026, - 0.071092, - 0.035293, - 0.051526, - 0.040311, - -0.030864, - -0.02458, - -0.0043867, - -0.010934, - -0.021971, - 0.06825, - -0.0088175, - -0.003408, - 0.032839, - -0.07369, - 0.03614, - 0.017099, - 0.030267, - -0.032977, - 0.082716, - -0.058153, - 0.044224, - -0.019393, - 0.015662, - 0.01012, - 0.044328, - -0.048922, - -0.019231, - -0.020394, - -0.073192, - -0.052773, - 0.10128, - -0.050205, - -0.0069303, - 0.011562, - 0.042641, - 0.022967, - 0.033198, - -0.019656, - 0.0095501, - 0.029046, - -0.0067277, - -0.031538, - 0.046419, - -0.12102, - 0.054964, - -0.050017, - 0.028967, - 0.018908, - 0.048473, - 0.02123, - 0.019263, - -0.076263, - -0.029461, - 0.082124, - 0.014696, - 0.034371, - -0.022392, - -0.0082802, - -0.056874, - 0.0069932, - -0.0016189, - 0.027917, - -0.0042593, - 0.064403, - -0.041891, - 0.010246, - 0.089964, - -0.032078, - 0.0048777, - 0.034031, - 0.047424, - -0.052863, - -0.034165, - -0.0043954, - -0.061926, - -0.063262, - 0.0015254, - 0.04993, - -0.034983, - 0.033372, - 0.07174, - -0.0026848, - -0.094416, - 0.03809, - -0.015617, - 0.10339, - -0.036296, - -0.065352, - 0.007584, - -0.068264, - -0.018904, - -0.066768, - 0.046423, - 0.045717, - 0.020033, - -0.042644, - 0.0076275, - 0.0092738, - 0.0040466, - -0.081015, - 0.0088424, - -0.023072, - 0.0060919, - 0.0074987, - -0.0063802, - 0.020911, - -0.0049464, - 0.0090709, - -0.019943, - 0.061852, - 0.021173, - 0.069359, - 0.042932, - -0.038464, - 0.06361, - -0.067286, - -0.03273, - 0.0069008, - -0.04709, - 0.04493, - 0.020969, - -0.046961, - 0.0041158, - 0.10647, - 0.032062, - 0.019382, - -0.041762, - -0.063571, - -0.049262, - -0.11477, - -0.026355, - -0.035025, - 0.0066156, - -0.0086746, - -0.0019677, - -0.090891, - -0.012195, - 0.0089754, - 0.036609, - -0.023688, - -0.030997, - 0.037504, - -0.00054607 - ], - "medicine": [ - -0.075754, - -0.077627, - 0.020278, - -0.024511, - 0.051904, - -0.10701, - 0.026418, - -0.095209, - 0.081775, - -0.032201, - -0.037389, - -0.034085, - 0.060414, - -0.050633, - -0.025165, - -0.0072351, - 0.13972, - -0.018242, - 0.030517, - 0.053477, - 0.011241, - 0.028916, - 0.075639, - 0.017095, - -0.0092344, - -0.083642, - 0.013404, - 0.031112, - -0.012489, - 0.03153, - 0.038138, - -0.03027, - 0.071374, - -0.040689, - 0.051722, - 0.035844, - 0.046315, - -0.011384, - 0.072589, - 0.02034, - -0.028243, - -0.13406, - 0.030778, - -0.044304, - 0.046174, - -0.056798, - -0.029924, - 0.027992, - 0.0082152, - 0.014209, - -0.095032, - 0.0072372, - -0.017784, - -0.04864, - -0.073129, - 0.062288, - -0.028746, - 0.061794, - -0.020381, - 0.05241, - 0.022626, - -0.011955, - 0.097485, - 0.038037, - -0.0041575, - 0.026183, - 0.014647, - -0.018065, - 0.0021457, - 0.00064931, - 0.0061348, - 0.028603, - 0.011752, - -0.029044, - -0.078486, - 0.01329, - -0.0013347, - -0.035056, - 0.017201, - -0.016293, - -0.020478, - -0.0014701, - -0.068338, - 0.039532, - -0.1276, - -0.042399, - 0.060651, - -0.026259, - 0.0014461, - -0.018603, - 0.095437, - 0.045076, - -0.094166, - 0.0052205, - -0.0048502, - 0.084479, - 0.052994, - 0.0080634, - -0.013795, - -0.0066429, - -0.018835, - 0.021574, - 0.029474, - -0.041164, - 0.032285, - -0.083668, - -0.022219, - 0.038242, - 0.051607, - 0.014732, - -0.027207, - 0.10783, - 0.046737, - 0.038509, - 0.042069, - 0.086006, - 0.013436, - -0.04393, - -0.027324, - -0.03267, - -0.027195, - 0.000082161, - -0.014493, - -0.045597, - 0.047831, - 0.032781, - -0.12099, - -0.070803, - 0.02639, - 0.14493, - -0.0068235, - 0.007857, - -0.037462, - -0.0043827, - 0.054395, - -0.017299, - -0.023836, - -0.022266, - 0.075769, - 0.0079642, - 0.06996, - -0.074756, - -0.086806, - 0.032056, - -0.020998, - -0.051242, - -0.0016851, - 0.022654, - 0.031029, - -0.050882, - 0.06634, - 0.043452, - 0.021858, - -0.053555, - 0.012264, - 0.077187, - 0.0045747, - 0.0024194, - 0.060422, - -0.033269, - 0.027257, - 0.020202, - -0.081102, - 0.05075, - -0.038935, - 0.0099096, - -0.040355, - -0.028255, - -0.0017869, - -0.052121, - 0.023645, - -0.025601, - 0.0077356, - 0.018577, - 0.045592, - 0.04831, - -0.035098, - 0.052384, - -0.032862, - -0.036576, - -0.0036192, - -0.0012319, - -0.034917, - -0.08554, - 0.0057914, - -0.02954, - 0.030047, - 0.094012, - -0.034556, - -0.037496, - -0.018221, - 0.077504, - 0.00083543, - -0.030647, - -0.030071, - -0.0069856, - -0.035627, - 0.017568, - -0.012281, - -0.021168, - -0.14501, - 0.025724, - 0.025076, - -0.0088808, - -0.0058638, - -0.011921, - 0.048941, - -0.042286, - -0.0027173, - 0.0058501, - 0.088297, - 0.017473, - -0.0001847, - 0.061615, - 0.077627, - 0.081657, - 0.020715, - -0.058379, - -0.046778, - -0.046958, - -0.0039258, - -0.023939, - -0.096365, - 0.11306, - 0.0039073, - 0.093117, - 0.017336, - 0.074576, - 0.040372, - -0.020393, - -0.036372, - -0.029634, - -0.042483, - -0.044216, - -0.013971, - 0.040201, - -0.06905, - -0.0099226, - 0.0062898, - -0.032678, - 0.043223, - 0.030063, - 0.04611, - 0.017991, - 0.024694, - 0.0075312, - -0.043438, - 0.011147, - 0.019073, - 0.052741, - 0.028914, - 0.04309, - 0.0050807, - -0.023028, - -0.016435, - 0.006736, - 0.0129, - 0.014116, - 0.017816, - 0.031514, - 0.0060012, - -0.01631, - -0.010781, - 0.022649, - 0.04148, - 0.016879, - 0.076648, - -0.012549, - 0.029262, - 0.062108, - 0.026498, - 0.075521, - -0.090608, - -0.022002, - -0.089969, - -0.0081042, - -0.010977, - -0.038873, - -0.034167, - -0.0095059, - 0.091826, - 0.0044028, - -0.12013, - 0.0052774, - -0.024823, - 0.084113, - -0.032211, - 0.017402, - 0.030422, - 0.0071832, - 0.0087021, - 0.0082814, - -0.023682, - -0.025994, - -0.032495, - 0.01916, - 0.047051, - 0.051377, - 0.022837, - -0.0092513 - ], - "electronics": [ - -0.024351, - -0.032946, - -0.0208, - 0.0085958, - -0.0068447, - -0.037581, - 0.034543, - -0.06773, - 0.053976, - 0.027166, - -0.019948, - -0.024944, - -0.036147, - 0.044603, - -0.017065, - 0.050592, - 0.070999, - 0.090351, - 0.03971, - 0.011273, - 0.06995, - 0.01305, - 0.02424, - 0.030304, - 0.018024, - -0.036581, - -0.0067237, - 0.01726, - 0.044437, - -0.030702, - 0.055876, - -0.015052, - 0.045137, - -0.025243, - 0.038781, - -0.0011181, - 0.00065003, - 0.049982, - 0.0073024, - 0.010809, - -0.05284, - -0.095972, - 0.0063888, - 0.0025917, - -0.016006, - -0.04198, - -0.05385, - -0.042375, - -0.0037567, - -0.0029491, - -0.036617, - -0.0058301, - -0.0082545, - 0.020549, - -0.05143, - 0.063093, - -0.012505, - 0.030169, - -0.0084316, - 0.036162, - 0.016205, - 0.003684, - 0.08411, - 0.060637, - 0.054732, - 0.03037, - -0.0052814, - -0.033312, - 0.0044668, - 0.021366, - 0.015789, - -0.012711, - 0.048383, - -0.024644, - -0.042093, - -0.0019996, - -0.01129, - -0.026865, - 0.012398, - -0.042558, - -0.031909, - 0.002193, - -0.083956, - 0.043703, - -0.0075025, - -0.0078512, - 0.013549, - -0.00095602, - 0.0038704, - -0.056235, - 0.029246, - 0.032908, - -0.062511, - 0.011215, - -0.0035642, - 0.061979, - -0.0044473, - -0.029072, - -0.050552, - 0.019685, - 0.064495, - 0.016039, - 0.042696, - -0.041946, - 0.03329, - -0.052517, - 0.019537, - 0.045437, - 0.05362, - 0.0011155, - -0.0029366, - 0.096687, - 0.04245, - 0.021574, - 0.031433, - -0.0037852, - -0.024365, - 0.0042278, - -0.031277, - 0.0078994, - -0.019762, - 0.058422, - -0.038699, - -0.025001, - 0.055077, - -0.006729, - -0.024146, - -0.034716, - 0.028447, - 0.093929, - -0.0083619, - 0.0207, - 0.0084635, - -0.0065592, - 0.061977, - -0.035231, - 0.055319, - -0.00030848, - -0.017821, - 0.00023856, - 0.045752, - 0.053714, - 0.027112, - 0.043964, - -0.00061287, - -0.017564, - -0.029816, - -0.016164, - -0.0047944, - -0.034932, - 0.052471, - 0.073522, - 0.012751, - -0.040023, - -0.0022057, - 0.029097, - -0.025968, - -0.00099359, - 0.072632, - -0.017736, - 0.0025388, - 0.018558, - -0.055391, - -0.03128, - -0.0059585, - 0.010496, - 0.00090017, - -0.032121, - 0.032335, - 0.0263, - 0.047635, - 0.042274, - -0.0091328, - 0.026134, - 0.0093061, - 0.036811, - 0.02243, - 0.063241, - -0.041381, - 0.026172, - -0.0066239, - 0.013725, - -0.057851, - -0.054709, - 0.011531, - -0.0077529, - -0.038946, - 0.064433, - -0.015985, - 0.017741, - -0.066386, - 0.061923, - -0.020035, - -0.033135, - 0.011437, - 0.0087306, - -0.0256, - 0.016219, - 0.0081823, - 0.00036739, - -0.11316, - 0.0229, - -0.029673, - -0.028896, - 0.023787, - -0.0092958, - -0.0066218, - -0.016128, - -0.0021426, - -0.008619, - 0.091193, - 0.024241, - 0.002713, - -0.031441, - 0.014419, - 0.010442, - -0.0093918, - 0.0095039, - -0.03262, - 0.02443, - 0.022919, - 0.014372, - -0.0026357, - 0.073053, - -0.0056731, - -0.020074, - -0.022786, - 0.059715, - 0.023111, - -0.023771, - 0.014505, - -0.021558, - -0.058361, - -0.053389, - 0.0092536, - -0.03595, - 0.066667, - 0.016728, - -0.0234, - -0.062091, - -0.011104, - -0.041199, - 0.072594, - -0.020769, - 0.0066824, - 0.003553, - -0.0033179, - -0.007894, - 0.045124, - -0.0013933, - 0.0099323, - -0.025682, - -0.028771, - 0.04008, - -0.030394, - 0.018329, - 0.016562, - 0.0016267, - 0.011217, - -0.055616, - 0.062545, - 0.021479, - 0.020212, - 0.0054523, - -0.033482, - -0.0009822, - 0.012775, - -0.017952, - -0.013032, - -0.0057304, - -0.0071151, - 0.07672, - -0.068978, - -0.010408, - -0.03143, - -0.016628, - 0.044903, - 0.056959, - -0.017007, - 0.010144, - 0.052966, - 0.012694, - -0.0058573, - -0.023255, - -0.048749, - -0.049421, - -0.068793, - -0.001523, - -0.011877, - 0.026468, - -0.037093, - 0.052998, - -0.0359, - -0.014695, - -0.0032718, - -0.00041335, - 0.019746, - -0.0017442, - 0.041207, - -0.020736 - ], - "cryptozoology": [ - -0.0046158, - -0.049487, - -0.027537, - -0.023344, - -0.033425, - -0.079589, - -0.01038, - -0.066641, - 0.020434, - 0.015609, - -0.016936, - -0.042071, - -0.057614, - -0.023338, - 0.042163, - -0.045157, - 0.055803, - -0.03337, - 0.024157, - 0.015434, - 0.05613, - -0.035903, - 0.027737, - 0.054274, - 0.019041, - -0.021838, - 0.021224, - 0.021366, - 0.058031, - 0.067017, - 0.02518, - -0.038195, - 0.012608, - -0.016223, - 0.010117, - 0.022183, - 0.018313, - -0.010362, - 0.025224, - -0.013222, - 0.020402, - -0.080609, - 0.021739, - 0.027263, - 0.06058, - -0.0041532, - 0.0032015, - 0.029705, - 0.0046292, - 0.0002928, - -0.0070984, - 0.062691, - 0.030961, - -0.0022166, - -0.030495, - 0.043783, - -0.047044, - 0.061792, - 0.0012099, - 0.057388, - 0.024149, - -0.044422, - 0.035324, - -0.019956, - 0.025978, - 0.0037547, - -0.0122, - -0.0049926, - -0.015101, - 0.01952, - 0.001264, - -0.013305, - -0.015535, - 0.038952, - -0.001584, - 0.028544, - -0.0052712, - -0.020663, - 0.032683, - -0.034624, - -0.015265, - 0.034025, - 0.0037847, - 0.016726, - 0.012887, - -0.0037102, - 0.014633, - 0.0097051, - 0.045412, - 0.042136, - 0.0091295, - 0.025968, - -0.041421, - 0.03406, - 0.045898, - 0.041022, - 0.037228, - 0.010325, - -0.00013773, - -0.015889, - -0.10277, - 0.061861, - -0.0061181, - 0.014533, - -0.035047, - -0.051562, - 0.0091287, - 0.035864, - -0.01234, - -0.01487, - 0.0061439, - 0.021035, - 0.014252, - -0.039222, - 0.018016, - 0.067931, - -0.018153, - 0.014906, - -0.024166, - -0.019233, - -0.026535, - 0.061836, - -0.085674, - -0.027545, - 0.023066, - -0.017808, - -0.024763, - -0.023657, - -0.011825, - 0.091594, - -0.0039133, - 0.0054165, - -0.033195, - 0.0022685, - 0.015425, - -0.033241, - 0.0027925, - 0.011144, - 0.027325, - 0.030755, - -0.034686, - -0.051477, - 0.080272, - -0.014941, - -0.034933, - -0.045936, - -0.0079392, - -0.021419, - -0.062653, - -0.063048, - 0.034261, - 0.030655, - -0.034004, - -0.03372, - -0.03712, - 0.041107, - 0.012719, - -0.012699, - 0.010061, - 0.01937, - -0.033689, - 0.046336, - -0.046882, - 0.0098826, - 0.023436, - -0.051673, - -0.022807, - 0.043291, - -0.027876, - -0.025233, - -0.019943, - -0.035023, - 0.0061612, - 0.0092268, - 0.039577, - 0.0076461, - 0.027654, - 0.015727, - -0.018195, - 0.0026039, - -0.0099789, - 0.027945, - 0.03561, - 0.0071755, - 0.0037822, - -0.023159, - -0.022089, - 0.05496, - -0.042422, - 0.020703, - 0.02133, - 0.058948, - -0.067516, - -0.042868, - -0.07088, - 0.02119, - -0.057728, - -0.012083, - -0.0097306, - 0.013804, - -0.09505, - 0.016849, - -0.055276, - -0.042093, - 0.043259, - 0.056405, - 0.0095954, - -0.019242, - -0.01903, - -0.0059135, - 0.076482, - 0.017192, - -0.009288, - -0.055529, - 0.058082, - 0.051955, - -0.019867, - -0.01589, - 0.019445, - -0.021634, - -0.05296, - 0.0075611, - -0.10051, - 0.061221, - -0.013396, - -0.019806, - 0.035067, - 0.082649, - 0.04097, - -0.026161, - -0.057639, - -0.045105, - -0.013678, - 0.00045612, - -0.00018816, - -0.017516, - 0.0060274, - 0.038404, - 0.017589, - 0.001767, - 0.012879, - -0.05756, - -0.017431, - -0.0088127, - 0.015428, - 0.054971, - -0.00049809, - 0.0092475, - -0.076736, - -0.0053778, - 0.031469, - 0.019478, - 0.0049715, - -0.028772, - -0.035607, - -0.017159, - -0.036357, - -0.036854, - 0.043432, - -0.0065967, - 0.068692, - -0.027376, - 0.017743, - 0.016232, - -0.0014009, - -0.011065, - 0.056308, - -0.016132, - 0.1117, - -0.0064709, - 0.007908, - 0.052798, - -0.053544, - 0.0070863, - -0.0073212, - -0.042115, - -0.015175, - -0.00055693, - -0.048456, - -0.064789, - 0.04627, - -0.015501, - 0.048517, - 0.0088276, - -0.029913, - -0.052455, - 0.031634, - 0.0012093, - -0.08167, - -0.0059739, - -0.0045233, - -0.0074613, - -0.02129, - -0.069596, - -0.044608, - -0.003957, - -0.029858, - 0.048862, - -0.038404, - -0.037128 - ], - "meteorological": [ - -0.039898, - -0.053142, - -0.0014026, - -0.021893, - 0.0030217, - -0.096021, - 0.012882, - -0.065912, - 0.044144, - 0.023567, - 0.0049462, - -0.037443, - -0.052094, - 0.011103, - 0.051818, - 0.0097729, - 0.04624, - 0.0063234, - 0.0035074, - 0.090322, - 0.0056357, - 0.017222, - 0.023387, - 0.064389, - 0.016128, - -0.034011, - -0.027481, - 0.02322, - 0.032684, - -0.013174, - 0.0001515, - -0.01043, - 0.031552, - -0.085791, - 0.071612, - 0.038052, - -0.010046, - -0.0024945, - 0.0098468, - -0.017425, - -0.044148, - -0.076231, - 0.03736, - 0.034766, - -0.016975, - -0.0081234, - -0.0066963, - -0.045772, - -0.043739, - -0.006204, - -0.033927, - -0.017586, - -0.0079751, - 0.054606, - 0.029432, - 0.038216, - 0.049993, - -0.01461, - -0.015857, - -0.019365, - 0.01982, - 0.039162, - 0.097768, - -0.04111, - 0.0068178, - -0.030767, - -0.00049104, - 0.01573, - 0.054927, - 0.05064, - 0.059437, - 0.03892, - 0.024399, - -0.0035396, - -0.030194, - -0.063388, - -0.035467, - -0.036326, - -0.013158, - 0.01552, - -0.032374, - 0.028907, - -0.027302, - 0.0057505, - -0.025644, - 0.01154, - 0.020203, - -0.012286, - -0.014793, - -0.054307, - -0.0037606, - 0.013745, - -0.075207, - 0.010132, - -0.0078627, - 0.025679, - -0.0093312, - 0.047311, - 0.03589, - 0.034912, - 0.039133, - -0.036902, - -0.035395, - -0.012803, - 0.0077995, - -0.071137, - 0.018413, - 0.014168, - 0.044216, - -0.0078574, - 0.0019961, - 0.030424, - 0.012247, - 0.054247, - -0.0068656, - -0.033367, - 0.017556, - 0.032898, - -0.039418, - 0.011741, - 0.0075306, - -0.020284, - 0.023023, - 0.019551, - 0.070715, - 0.044899, - -0.0012667, - 0.0019591, - -0.063825, - 0.075197, - -0.00096763, - 0.0099258, - -0.0096274, - -0.018482, - 0.01158, - 0.028561, - 0.057252, - 0.043167, - -0.0026375, - 0.020975, - 0.00034567, - 0.0078718, - -0.0046911, - -0.019215, - -0.052649, - 0.01503, - -0.052756, - 0.0025594, - -0.027669, - 0.014754, - 0.032935, - 0.12248, - -0.034061, - -0.035225, - 0.073665, - 0.012189, - -0.0070496, - 0.012968, - -0.021384, - 0.026357, - 0.022643, - -0.079545, - -0.053846, - -0.0010318, - -0.065717, - 0.012093, - -0.023586, - 0.0025752, - 0.018995, - 0.056246, - -0.0011009, - -0.022539, - 0.025181, - -0.033754, - 0.0084561, - 0.026181, - -0.01387, - 0.012541, - -0.026379, - 0.011053, - -0.025601, - 0.033218, - -0.00056722, - -0.034377, - -0.02505, - -0.0075807, - -0.028024, - 0.067351, - -0.0050103, - -0.01228, - -0.0025521, - 0.064298, - 0.058255, - -0.05913, - -0.025517, - -0.037699, - -0.008388, - 0.062062, - -0.014097, - 0.0056615, - -0.078893, - -0.0036845, - -0.053846, - 0.0076984, - 0.046827, - 0.019853, - -0.0061994, - 0.013953, - -0.073403, - 0.020391, - 0.090417, - 0.028592, - -0.004256, - -0.0065758, - -0.0077088, - 0.036879, - -0.0088198, - -0.046146, - -0.050707, - 0.022278, - -0.039731, - -0.00005225, - 0.0046986, - 0.060508, - 0.012537, - 0.047875, - 0.017488, - 0.048995, - 0.041846, - -0.014258, - 0.013906, - -0.044104, - -0.0068131, - 0.02615, - -0.013549, - 0.042532, - 0.02566, - 0.0022407, - 0.02924, - -0.052152, - 0.0064727, - 0.0058511, - 0.031234, - -0.02079, - -0.097067, - 0.032591, - -0.022699, - 0.027565, - -0.052389, - 0.0032983, - 0.016778, - -0.00032445, - 0.078768, - 0.0086526, - -0.048944, - 0.01178, - 0.045223, - 0.0059268, - 0.01049, - 0.018757, - 0.050297, - 0.016005, - -0.021866, - -0.004642, - -0.018789, - -0.06372, - -0.0045208, - 0.038535, - 0.050261, - -0.016832, - -0.019958, - 0.043736, - -0.060778, - -0.0055779, - 0.034605, - -0.062525, - -0.037516, - -0.048863, - -0.0094168, - -0.053355, - 0.10489, - -0.030075, - -0.0021308, - -0.01522, - 0.012121, - -0.013449, - -0.0058415, - -0.0066353, - -0.015704, - 0.012012, - -0.0035766, - 0.053198, - -0.0094361, - 0.017137, - 0.014098, - -0.0035389, - -0.034904, - -0.0091774, - 0.07178, - 0.000967 - ], - "math": [ - -0.040722, - -0.070632, - 0.036553, - -0.052993, - 0.021686, - -0.082283, - -0.06488, - -0.11434, - 0.028526, - -0.028456, - 0.04797, - -0.075273, - 0.095149, - 0.097856, - -0.022443, - -0.010573, - 0.1779, - 0.09499, - 0.03917, - -0.079901, - -0.033057, - 0.11659, - 0.026693, - 0.095696, - -0.045697, - -0.012027, - 0.063534, - 0.024853, - -0.029584, - -0.039075, - 0.0049021, - 0.054352, - 0.08369, - -0.070634, - 0.089818, - 0.024518, - 0.018515, - -0.023605, - -0.070437, - -0.045069, - -0.093226, - -0.15618, - -0.11106, - -0.0033474, - 0.0013433, - -0.098758, - -0.013895, - 0.017741, - -0.019383, - 0.07861, - -0.00038226, - 0.044365, - 0.009642, - -0.000049793, - -0.045318, - 0.029141, - -0.0091062, - -0.04167, - -0.053344, - 0.040211, - -0.058994, - -0.035218, - 0.15956, - 0.089942, - 0.05134, - -0.058989, - 0.045065, - 0.049923, - 0.024028, - -0.029804, - 0.020216, - -0.072829, - 0.053963, - 0.017484, - 0.15492, - 0.063153, - 0.0075618, - 0.00074571, - 0.0068686, - -0.015005, - -0.11626, - -0.0080896, - -0.096247, - 0.032818, - -0.019198, - 0.12603, - 0.066789, - 0.015029, - 0.029704, - 0.064099, - 0.096385, - 0.011, - -0.14134, - 0.010474, - 0.014996, - 0.094261, - 0.037915, - 0.058182, - 0.0049221, - 0.0074228, - 0.10086, - 0.0086136, - 0.023098, - -0.024145, - -0.025854, - -0.13395, - -0.038392, - 0.11376, - 0.088503, - -0.072487, - -0.0034835, - 0.095661, - 0.056778, - -0.061557, - 0.038812, - 0.029148, - 0.0027183, - 0.0079928, - -0.058641, - -0.064813, - -0.04642, - 0.012876, - -0.081982, - -0.040881, - 0.03083, - 0.025593, - -0.14701, - -0.074132, - -0.12272, - 0.15059, - -0.10077, - -0.0089981, - -0.013576, - 0.088914, - -0.027623, - -0.048953, - 0.20191, - 0.022397, - 0.0015366, - -0.030413, - 0.10011, - -0.037025, - -0.0044472, - 0.067727, - -0.053725, - -0.037566, - -0.081813, - -0.024447, - -0.135, - -0.038192, - 0.036, - 0.08363, - -0.011608, - -0.11179, - -0.039169, - 0.052278, - 0.13886, - 0.11721, - -0.024014, - -0.049856, - 0.045664, - 0.091866, - -0.14087, - -0.12017, - 0.086699, - -0.046782, - -0.014853, - -0.10824, - 0.044378, - -0.0019642, - 0.088192, - -0.073673, - 0.046314, - 0.16124, - 0.10879, - 0.12624, - 0.018519, - 0.05524, - 0.0046069, - 0.089193, - 0.045245, - -0.090428, - -0.061451, - -0.031791, - 0.12461, - -0.088457, - -0.073495, - 0.16145, - 0.12746, - 0.062638, - -0.047406, - 0.12894, - -0.031255, - -0.039656, - 0.081866, - -0.074799, - -0.099962, - 0.051774, - 0.038157, - -0.073754, - -0.1836, - -0.013813, - 0.054091, - 0.038915, - 0.034281, - 0.014433, - 0.0068626, - -0.070119, - 0.025573, - -0.016712, - 0.13046, - -0.0030812, - -0.016649, - 0.007715, - 0.037255, - 0.11465, - 0.034637, - 0.011818, - -0.11709, - -0.0073288, - 0.041463, - 0.062087, - -0.099049, - 0.11902, - -0.016907, - -0.0034103, - 0.10523, - 0.20098, - 0.056399, - 0.014572, - 0.08442, - -0.067759, - -0.063642, - 0.019254, - 0.013533, - 0.038918, - 0.031285, - 0.046949, - -0.093169, - -0.032731, - 0.059071, - -0.12368, - 0.047704, - 0.0099942, - -0.012668, - 0.17471, - -0.001251, - -0.026673, - -0.069583, - 0.060732, - 0.076353, - 0.050181, - -0.043467, - 0.032518, - 0.057907, - 0.033271, - -0.011435, - 0.0055399, - 0.041832, - 0.074808, - -0.0020703, - 0.071343, - 0.048948, - -0.013277, - -0.059277, - 0.063033, - 0.069879, - 0.081336, - 0.10779, - 0.0016857, - 0.045972, - 0.10293, - -0.18654, - -0.035121, - 0.026249, - -0.032007, - -0.056272, - -0.069636, - 0.091782, - -0.00045355, - 0.15747, - -0.0024026, - 0.065724, - 0.026023, - -0.058796, - 0.049286, - 0.040449, - -0.0055557, - -0.12516, - -0.11159, - -0.16597, - -0.049656, - -0.070937, - 0.05326, - -0.002405, - -0.0069525, - 0.012367, - -0.079702, - 0.078757, - 0.096522 - ], - "achievements": [ - -0.0097096, - -0.051463, - 0.025274, - 0.0009363, - -0.0018132, - -0.034124, - -0.018722, - -0.078532, - 0.046809, - -0.015049, - 0.022309, - -0.033973, - 0.042953, - 0.040644, - 0.04621, - 0.052456, - 0.012311, - 0.014554, - 0.039558, - 0.036631, - -0.013537, - 0.033936, - -0.0065075, - 0.041983, - -0.050374, - -0.025339, - -0.032384, - -0.040781, - 0.079897, - -0.028206, - 0.013222, - -0.048454, - 0.0033712, - -0.055124, - -0.013382, - 0.035281, - -0.023732, - -0.021117, - -0.030512, - -0.044069, - 0.018994, - -0.040699, - 0.023495, - 0.03285, - 0.036873, - 0.017703, - -0.0080093, - -0.023898, - -0.0027689, - -0.0046565, - -0.023789, - 0.0021726, - -0.041902, - -0.0080932, - -0.044475, - 0.037274, - -0.045414, - 0.012564, - -0.026737, - 0.0098959, - 0.019607, - 0.0071702, - 0.10252, - -0.0299, - 0.051191, - -0.032546, - -0.0051844, - 0.014755, - 0.014011, - 0.013708, - 0.0055574, - -0.042149, - 0.02144, - 0.014799, - 0.019007, - 0.034528, - -0.023024, - -0.028164, - 0.064186, - 0.076704, - 0.037719, - 0.025319, - -0.029727, - 0.074803, - 0.024736, - -0.022248, - -0.035394, - 0.0035596, - -0.038498, - -0.018062, - -0.0072087, - -0.026501, - -0.051914, - 0.019222, - 0.0099697, - 0.017644, - 0.0030888, - -0.026846, - 0.054125, - 0.028341, - 0.0079864, - -0.049106, - 0.0095404, - 0.017769, - 0.023459, - -0.0037796, - 0.027082, - 0.015499, - 0.0036269, - 0.057575, - 0.014267, - 0.020997, - 0.033966, - 0.012513, - 0.026115, - -0.013633, - -0.0034693, - -0.019657, - -0.025996, - 0.0055993, - -0.0058224, - -0.022835, - -0.012286, - 0.0085104, - 0.10357, - 0.01452, - -0.015019, - -0.084043, - 0.047396, - 0.088401, - 0.010106, - 0.023055, - -0.0069511, - 0.0036574, - -0.0055739, - -0.061878, - 0.081282, - 0.051039, - -0.040164, - 0.026496, - 0.02485, - -0.034789, - 0.010005, - -0.009373, - 0.0067368, - 0.011095, - 0.00030968, - -0.024934, - 0.034208, - 0.015471, - 0.026602, - 0.046691, - 0.034337, - -0.063403, - -0.010871, - -0.024856, - 0.095421, - 0.045226, - 0.011817, - 0.0098991, - 0.017612, - 0.018909, - -0.017143, - -0.03367, - -0.027819, - 0.0000094449, - -0.01483, - -0.021436, - -0.010953, - -0.014385, - 0.070998, - 0.020359, - 0.0020311, - 0.034658, - 0.017241, - 0.027901, - -0.019576, - 0.016215, - -0.042492, - 0.02234, - 0.012272, - 0.0012474, - 0.047422, - -0.052546, - -0.012995, - -0.082805, - -0.0096707, - 0.046207, - 0.028845, - 0.031039, - 0.0078444, - 0.055002, - -0.067154, - -0.044715, - -0.024891, - -0.00051023, - -0.035116, - -0.03905, - -0.013786, - -0.019325, - -0.10148, - 0.040077, - 0.015292, - -0.084232, - -0.041571, - 0.018937, - 0.044606, - 0.0097873, - 0.026651, - -0.022541, - 0.053883, - 0.030298, - 0.013844, - 0.014801, - 0.055125, - 0.01214, - -0.030255, - 0.021467, - -0.06575, - -0.017542, - -0.027941, - -0.010319, - 0.041647, - 0.077764, - 0.041706, - 0.016153, - 0.027669, - 0.083744, - 0.012477, - -0.022648, - 0.018711, - -0.030658, - -0.07679, - 0.021973, - 0.061039, - -0.00018436, - 0.018437, - -0.023191, - -0.017505, - 0.073062, - -0.03184, - 0.029192, - 0.026221, - -0.041513, - -0.041609, - 0.0076759, - -0.028884, - -0.086884, - 0.0028323, - -0.011194, - 0.023914, - -0.0054217, - 0.040404, - -0.0050263, - -0.012581, - -0.00064115, - -0.0063926, - 0.057077, - 0.050134, - 0.0053776, - -0.038475, - -0.010377, - 0.041557, - -0.022283, - 0.041813, - -0.009787, - 0.0016344, - -0.00017807, - 0.051849, - -0.012053, - 0.0059296, - 0.05724, - -0.091428, - -0.032171, - 0.052058, - -0.019429, - 0.032645, - -0.0073585, - 0.017826, - 0.012738, - 0.033409, - 0.018966, - 0.012155, - -0.015076, - 0.053375, - 0.0058363, - -0.077259, - 0.016684, - -0.017182, - 0.018219, - 0.012905, - 0.0068036, - -0.03153, - -0.005323, - -0.0016966, - 0.04553, - 0.0086025, - 0.031488, - -0.010527, - 0.022406 - ], - "legislative": [ - 0.014691, - -0.079005, - 0.029832, - 0.033309, - -0.014581, - -0.044565, - -0.01729, - -0.079652, - 0.030687, - 0.031141, - -0.0090207, - -0.055666, - -0.039292, - 0.015195, - -0.0063581, - 0.078191, - 0.057603, - 0.0083131, - 0.018791, - 0.038914, - 0.011316, - -0.019509, - 0.023482, - 0.082334, - -0.018858, - -0.0060508, - -0.002481, - 0.023442, - 0.018429, - -0.026295, - 0.057694, - -0.053343, - -0.068985, - -0.12331, - 0.01881, - 0.048718, - 0.021006, - -0.026193, - 0.0012664, - 0.0090991, - -0.0083447, - -0.10892, - 0.013658, - -0.023027, - 0.00095077, - 0.053163, - -0.04586, - 0.029264, - -0.016883, - -0.015044, - 0.050329, - -0.0099199, - 0.021351, - 0.012674, - 0.00716, - 0.00021316, - 0.002903, - -0.016394, - -0.0045147, - 0.035916, - 0.010256, - 0.0023503, - 0.11776, - 0.0081622, - 0.015364, - -0.020987, - -0.028012, - -0.0060965, - -0.0034857, - 0.02073, - -0.013755, - 0.00013268, - -0.0037365, - -0.028429, - -0.044482, - -0.028689, - -0.037069, - -0.0201, - -0.027743, - 0.016615, - -0.016324, - 0.038145, - -0.040306, - 0.018368, - 0.031842, - -0.020539, - 0.0096357, - -0.023171, - 0.040911, - 0.035296, - 0.021668, - 0.0036083, - -0.087789, - -0.016205, - 0.011612, - 0.035027, - 0.031948, - 0.039154, - 0.018378, - 0.016317, - -0.0054545, - -0.016464, - -0.011318, - -0.052509, - -0.0064301, - -0.045109, - 0.050545, - -0.039896, - -0.0083516, - 0.0082171, - -0.010164, - 0.041131, - 0.040378, - 0.019181, - -0.032478, - 0.04427, - 0.035701, - -0.031168, - -0.031189, - 0.052795, - -0.039814, - 0.022922, - 0.034487, - 0.021822, - 0.058893, - 0.035383, - -0.035117, - -0.016745, - 0.00051222, - 0.085105, - -0.0058867, - 0.0036405, - 0.030209, - 0.033637, - -0.015115, - -0.055509, - -0.028411, - -0.0070446, - -0.018197, - 0.0066987, - 0.051663, - -0.04424, - -0.0069102, - 0.029466, - -0.046145, - -0.013865, - -0.023949, - -0.0072132, - 0.023747, - 0.0043574, - -0.017455, - 0.098573, - 0.026466, - -0.061761, - 0.028682, - 0.0069558, - 0.019858, - -0.027567, - -0.054381, - 0.056478, - 0.026121, - 0.070431, - -0.011528, - 0.026295, - 0.00075359, - 0.055783, - 0.014201, - -0.041307, - -0.030812, - -0.020866, - 0.036963, - -0.015592, - -0.012173, - 0.013284, - -0.043496, - 0.057931, - -0.010883, - 0.026453, - -0.045614, - -0.011041, - -0.040885, - -0.039899, - 0.04687, - -0.054487, - -0.0044014, - 0.020203, - 0.004409, - 0.095705, - 0.048944, - 0.01487, - -0.035944, - 0.046143, - 0.084928, - -0.0031291, - 0.02874, - -0.039448, - -0.017716, - 0.010666, - -0.029338, - -0.03527, - -0.11576, - -0.0090972, - 0.049773, - -0.013907, - -0.023683, - -0.032977, - -0.013432, - 0.043706, - 0.023238, - -0.01172, - 0.1275, - 0.015744, - -0.0016677, - -0.0014921, - -0.046463, - 0.011487, - 0.03988, - 0.0083339, - -0.045487, - -0.067772, - -0.014708, - 0.009411, - 0.0076633, - 0.067661, - 0.031307, - -0.013507, - 0.014246, - 0.024793, - -0.023359, - 0.00047237, - 0.018049, - -0.081085, - -0.021216, - -0.016402, - -0.031677, - -0.064342, - 0.019347, - 0.022615, - -0.040295, - 0.012801, - 0.052226, - 0.0010308, - -0.017265, - 0.017429, - -0.082062, - 0.032502, - -0.0022185, - -0.0025284, - -0.0027793, - 0.025293, - 0.030071, - 0.006377, - -0.003316, - 0.021331, - 0.021269, - 0.019441, - -0.010939, - 0.036123, - -0.027492, - 0.020978, - 0.035236, - -0.011761, - -0.057259, - -0.020046, - 0.023162, - 0.016003, - -0.013726, - -0.0089565, - -0.012277, - -0.048776, - -0.0097217, - 0.03095, - -0.089808, - -0.02176, - 0.0047344, - -0.036264, - -0.02587, - 0.098819, - -0.034856, - 0.010386, - 0.13685, - -0.003274, - 0.00033406, - -0.015433, - 0.0018092, - 0.031753, - -0.024456, - 0.0034879, - 0.034057, - 0.014996, - 0.021413, - -0.018075, - 0.012344, - 0.01649, - -0.019649, - 0.026877, - -0.063308, - -0.022874, - -0.045006, - 0.01177 - ], - "mercantile": [ - -0.045347, - -0.056255, - 0.068843, - -0.069801, - -0.084195, - -0.033423, - -0.022683, - -0.096768, - 0.071299, - 0.086287, - -0.036234, - -0.028307, - -0.030736, - -0.036267, - -0.034079, - 0.0242, - 0.09232, - -0.031317, - -0.0047648, - 0.036803, - -0.011143, - 0.014151, - 0.004756, - 0.081728, - -0.016811, - -0.034881, - 0.0044997, - -0.0106, - 0.019084, - -0.010209, - -0.039157, - 0.01121, - -0.018244, - -0.05155, - 0.061595, - 0.0345, - 0.025533, - 0.058749, - 0.011922, - 0.021669, - -0.0068068, - -0.11209, - 0.054232, - 0.043203, - -0.031953, - -0.01757, - -0.044272, - 0.031822, - -0.018829, - -0.041386, - -0.011978, - -0.0091007, - 0.018377, - -0.0020223, - 0.0159, - 0.0088664, - 0.02889, - 0.056778, - -0.02509, - -0.038054, - 0.025457, - 0.059707, - 0.07897, - 0.008269, - 0.014772, - 0.012311, - -0.040584, - 0.069284, - 0.018599, - -0.075758, - 0.045006, - -0.043714, - 0.056435, - 0.0056551, - 0.063008, - -0.030497, - -0.025794, - 0.037531, - 0.047161, - 0.012245, - -0.010797, - 0.016078, - -0.065385, - 0.030716, - -0.02483, - -0.026004, - 0.0016101, - 0.030875, - -0.039918, - -0.033331, - -0.024414, - 0.060383, - -0.075207, - -0.02618, - 0.0099273, - 0.059644, - -0.041189, - -0.059136, - -0.059434, - -0.0070705, - 0.034031, - 0.026135, - -0.025441, - -0.035988, - 0.0614, - -0.081738, - -0.0020678, - -0.010668, - -0.017899, - 0.045144, - 0.010918, - 0.037477, - 0.022497, - 0.060644, - -0.085528, - 0.033179, - -0.0031058, - -0.012261, - -0.008105, - -0.018544, - -0.0085651, - -0.089503, - -0.019487, - -0.0055754, - 0.076849, - 0.0060376, - 0.037819, - -0.047987, - -0.0045946, - 0.06085, - 0.043001, - 0.017675, - 0.044583, - 0.05362, - 0.0068729, - 0.0025346, - -0.015357, - 0.015992, - 0.01238, - -0.063731, - 0.0038618, - 0.025136, - -0.11713, - 0.048147, - 0.029083, - -0.03138, - 0.032465, - -0.021446, - 0.0011181, - 0.0024576, - 0.058288, - 0.097159, - 0.038676, - -0.0086857, - 0.05249, - 0.039343, - 0.00089867, - -0.015352, - -0.0087386, - 0.0067564, - 0.020154, - -0.071301, - -0.066739, - 0.038438, - 0.032121, - 0.074214, - 0.025683, - -0.063434, - -0.011926, - 0.048526, - 0.043906, - 0.0078772, - -0.0021036, - 0.020415, - -0.037935, - 0.050071, - -0.025315, - 0.058399, - -0.036776, - 0.066077, - -0.051412, - -0.023646, - -0.018464, - -0.014333, - 0.0084529, - -0.0057797, - 0.0052114, - 0.11506, - 0.016029, - 0.032203, - -0.002125, - 0.020648, - 0.08111, - 0.00136, - 0.061583, - -0.0027536, - 0.0087756, - 0.070621, - -0.021633, - 0.054841, - -0.1198, - -0.010794, - 0.020694, - -0.015459, - -0.021997, - 0.078732, - -0.0099637, - -0.047709, - 0.060683, - 0.010051, - 0.088892, - 0.00289, - -0.033587, - -0.056682, - 0.019564, - 0.089515, - -0.054365, - -0.017143, - -0.0069676, - 0.013173, - 0.077872, - -0.028143, - -0.019278, - 0.046105, - -0.052776, - 0.053943, - 0.073231, - 0.065568, - -0.021182, - -0.055935, - -0.046166, - -0.019719, - -0.040999, - -0.018613, - 0.025932, - -0.022194, - 0.02321, - 0.021589, - -0.0023497, - -0.0018007, - 0.05315, - 0.016151, - -0.0075442, - 0.047764, - -0.098402, - -0.03245, - -0.03976, - -0.036377, - 0.0066885, - 0.010177, - 0.021842, - -0.069794, - -0.009038, - 0.0077885, - -0.0023523, - 0.011346, - -0.035533, - 0.052146, - 0.0050532, - -0.0068681, - -0.0015738, - 0.05972, - 0.01251, - 0.035029, - -0.013221, - 0.054318, - 0.013548, - 0.03655, - -0.047649, - 0.019988, - -0.029486, - 0.066933, - -0.072284, - 0.0015905, - 0.055787, - -0.069262, - 0.02234, - -0.0033776, - 0.016697, - -0.014924, - 0.11225, - 0.011899, - -0.0095666, - -0.049941, - -0.00624, - 0.057792, - -0.0023456, - -0.050883, - -0.00097695, - 0.024859, - -0.025417, - 0.083897, - 0.038719, - 0.031524, - -0.04946, - -0.0054386, - -0.014761, - 0.02525, - -0.084286, - 0.017819 - ], - "telecommunication": [ - 0.0024621, - -0.019573, - -0.013977, - -0.0088224, - -0.0064438, - -0.016965, - 0.059815, - -0.057894, - 0.053227, - -0.0077238, - 0.041224, - 0.0089035, - -0.048099, - 0.034732, - 0.0069898, - 0.000012456, - 0.048572, - 0.0070145, - 0.015676, - 0.012553, - -0.021569, - -0.046013, - 0.027764, - 0.048733, - 0.019252, - -0.0091514, - -0.016427, - 0.015218, - -0.031649, - -0.009429, - 0.021827, - 0.010928, - -0.018029, - -0.024696, - 0.056136, - 0.012801, - 0.011721, - 0.026137, - 0.032658, - 0.0062402, - -0.059682, - -0.093843, - 0.0065324, - 0.01119, - -0.0028797, - -0.02653, - -0.045354, - -0.039078, - -0.029153, - 0.014156, - 0.0098492, - -0.034102, - 0.025791, - -0.0085319, - -0.013114, - 0.043233, - -0.0098837, - -0.0020897, - 0.02064, - 0.019445, - -0.011064, - 0.048078, - 0.048094, - 0.0041096, - 0.024853, - 0.0053555, - -0.010717, - -0.054806, - -0.022245, - 0.011028, - -0.017832, - -0.023833, - 0.0077903, - 0.025243, - -0.011476, - -0.021515, - -0.0045201, - -0.0029945, - -0.015456, - 0.0024906, - -0.024835, - -0.011206, - -0.03975, - -0.014001, - -0.0046554, - -0.010099, - -0.030235, - -0.016872, - -0.035686, - -0.010746, - 0.013323, - 0.039305, - -0.041352, - -0.027417, - -0.0060128, - 0.049918, - 0.0048151, - -0.031712, - -0.020382, - 0.024106, - 0.019969, - 0.016597, - -0.028272, - -0.039385, - -0.0021759, - -0.050071, - 0.011107, - 0.022031, - 0.062917, - -0.01328, - 0.00025272, - 0.035445, - 0.029035, - 0.032719, - -0.0042799, - -0.0010999, - -0.046215, - 0.017507, - -0.012382, - 0.0078363, - -0.0054487, - 0.048327, - 0.009335, - -0.018567, - 0.036574, - 0.0033764, - -0.011334, - -0.044574, - -0.0057169, - 0.048038, - 0.024257, - -0.019198, - -0.014126, - -0.015036, - 0.04242, - 0.012896, - 0.036673, - 0.010102, - 0.013868, - 0.04529, - 0.01605, - -0.0010943, - -0.0098294, - 0.014374, - -0.031595, - -0.031178, - -0.040134, - -0.029628, - 0.042148, - -0.019027, - 0.018399, - 0.045923, - 0.007997, - -0.042248, - 0.014032, - -0.00099538, - -0.020156, - -0.01102, - 0.00064449, - 0.011557, - 0.015623, - 0.008993, - -0.057839, - 0.0004006, - -0.015091, - -0.026239, - 0.0099238, - -0.020621, - 0.025016, - -0.0095397, - 0.032731, - 0.045779, - 0.012893, - 0.058848, - -0.012474, - 0.020505, - -0.015903, - 0.048793, - -0.033016, - 0.013937, - 0.005588, - 0.015157, - -0.019694, - 0.014634, - -0.048912, - -0.01907, - -0.048635, - 0.066541, - 0.0093952, - 0.0022699, - -0.013151, - 0.019026, - 0.00032528, - 0.0018564, - -0.014515, - -0.011609, - 0.0063042, - 0.0030979, - 0.0082272, - -0.001964, - -0.095543, - -0.0053439, - -0.01201, - 0.028199, - 0.0021673, - 0.022008, - 0.02024, - -0.019901, - -0.048145, - 0.021668, - 0.075315, - 0.0068093, - 0.0020326, - 0.0026375, - 0.0057257, - 0.027577, - 0.010977, - -0.036177, - -0.019125, - -0.018631, - -0.01566, - -0.011752, - 0.0038663, - 0.051594, - -0.024507, - 0.01254, - -0.0021598, - 0.030985, - 0.023054, - -0.013755, - 0.0014525, - -0.0027528, - -0.013009, - -0.0025732, - 0.0030876, - -0.0028563, - 0.014817, - 0.037925, - -0.0056157, - -0.032388, - 0.040319, - -0.0047388, - 0.045297, - 0.005172, - -0.016561, - -0.0027397, - -0.0011934, - 0.012368, - -0.0054806, - 0.0019028, - 0.01027, - -0.011943, - 0.015107, - 0.011981, - 0.0077256, - 0.039478, - -0.036689, - 0.015904, - -0.036703, - 0.020447, - -0.01388, - -0.0003556, - 0.021316, - 0.016882, - 0.020228, - -0.0094988, - 0.0058796, - 0.0074137, - 0.027108, - -0.012546, - -0.014949, - 0.031415, - -0.038427, - 0.0069052, - -0.023413, - 0.0022005, - 0.022204, - 0.018346, - -0.028001, - -0.0066467, - 0.060003, - -0.013167, - -0.0316, - -0.016132, - -0.016547, - -0.01728, - -0.057438, - -0.01329, - 0.00073241, - -0.0066906, - -0.018664, - 0.020476, - -0.030104, - -0.011459, - 0.029798, - 0.021971, - -0.031158, - -0.0061209, - 0.045069, - -0.020876 - ], - "commerical": [ - -0.039553, - -0.046456, - 0.0091443, - 0.019776, - -0.019037, - -0.014317, - 0.0056201, - -0.098132, - 0.079008, - 0.010063, - 0.0044537, - -0.02564, - 0.0050839, - -0.016251, - 0.026849, - 0.013702, - 0.05341, - -0.0015322, - 0.021854, - 0.036024, - 0.010443, - 0.0056322, - 0.053707, - 0.051683, - 0.02691, - -0.025332, - 0.018773, - 0.021575, - 0.039715, - 0.064729, - -0.07474, - -0.015717, - -0.00068872, - -0.081727, - 0.083976, - 0.038941, - -0.023474, - -0.02918, - 0.023615, - 0.053862, - 0.013896, - -0.077937, - -0.0047777, - -0.054744, - 0.0038637, - 0.013163, - 0.045656, - -0.059767, - 0.0024783, - -0.024315, - -0.018812, - -0.0036477, - 0.0094019, - -0.031349, - 0.017522, - 0.0071449, - 0.00086071, - 0.013762, - -0.026762, - 0.02037, - 0.0089549, - 0.032698, - 0.12959, - -0.018756, - 0.023752, - 0.042845, - -0.0059909, - -0.020459, - 0.020545, - -0.0085067, - 0.047113, - 0.026637, - 0.045629, - 0.03186, - 0.0234, - -0.076403, - -0.0015799, - -0.053299, - 0.017613, - 0.02573, - -0.015045, - -0.0022824, - -0.058637, - 0.032945, - -0.047071, - 0.02732, - -0.025502, - 0.015543, - -0.047088, - -0.010703, - -0.039785, - -0.0080948, - -0.057737, - 0.012774, - 0.032856, - 0.018092, - 0.039359, - -0.055865, - -0.015749, - 0.033917, - -0.0033753, - 0.028121, - -0.061115, - -0.047349, - 0.029371, - -0.089398, - 0.016478, - 0.008682, - 0.028472, - 0.03998, - -0.025589, - 0.069799, - 0.015407, - 0.037546, - -0.0047438, - -0.025617, - -0.050181, - 0.011091, - -0.06726, - -0.027048, - -0.036468, - -0.028306, - -0.030937, - -0.022018, - 0.10735, - -0.00733, - 0.029381, - -0.074879, - -0.003289, - 0.081218, - 0.011778, - 0.015978, - -0.014849, - 0.0020876, - -0.0016671, - 0.0071668, - 0.02686, - 0.064211, - -0.040286, - 0.040424, - -0.024169, - 0.049121, - -0.016372, - -0.015011, - -0.024505, - 0.011341, - 0.0080178, - -0.028819, - 0.0038747, - -0.039877, - 0.075154, - 0.11638, - 0.019499, - -0.057678, - 0.04053, - -0.010523, - -0.035918, - 0.0066486, - 0.0067871, - 0.021008, - 0.0095825, - -0.015807, - -0.055347, - -0.018926, - -0.024574, - 0.077394, - 0.033606, - 0.028332, - 0.011563, - 0.03812, - 0.038226, - 0.035827, - 0.054786, - -0.01259, - -0.037568, - 0.032535, - -0.015809, - 0.051172, - 0.00031689, - 0.057815, - -0.010594, - -0.010775, - -0.017309, - -0.031503, - 0.0063025, - -0.020076, - 0.015938, - 0.054817, - -0.030347, - 0.0038723, - -0.049177, - 0.090252, - 0.055555, - 0.020813, - 0.001237, - -0.0019986, - -0.022733, - -0.041758, - -0.081111, - -0.0047388, - -0.10021, - 0.065165, - -0.03455, - -0.051094, - 0.035345, - 0.0025365, - 0.00053416, - -0.025116, - -0.013394, - 0.035046, - 0.11843, - 0.019998, - -0.048972, - -0.0099408, - 0.02616, - 0.06424, - -0.0041882, - -0.027212, - 0.023475, - -0.012707, - 0.012084, - -0.026863, - -0.011276, - 0.085517, - -0.0013787, - 0.042324, - 0.024745, - 0.065816, - -0.014514, - -0.033531, - -0.032445, - -0.082354, - -0.033669, - -0.016398, - 0.02773, - -0.015572, - 0.046264, - 0.0051379, - 0.00068619, - -0.012067, - 0.040137, - -0.025813, - 0.032819, - -0.0040702, - -0.1551, - 0.016056, - 0.0013105, - -0.040003, - -0.023624, - -0.0013748, - -0.013353, - -0.0011365, - -0.00050614, - 0.03148, - -0.040183, - 0.028528, - -0.0016946, - 0.0017974, - -0.0020504, - -0.052849, - 0.053011, - 0.03029, - 0.026089, - -0.013931, - 0.024352, - 0.0098715, - 0.0080947, - -0.0078975, - 0.0093102, - 0.048908, - 0.024412, - 0.075824, - -0.052713, - -0.021794, - -0.002341, - -0.10233, - -0.014628, - 0.0076993, - -0.0069858, - -0.016714, - 0.1029, - 0.017894, - 0.026335, - 0.017073, - 0.011142, - -0.027083, - 0.014568, - -0.012539, - -0.059774, - -0.042465, - -0.006625, - -0.046938, - 0.011808, - 0.029728, - -0.020003, - 0.0059729, - -0.051474, - -0.061524, - -0.017291, - -0.035733 - ], - "enthusiasms": [ - 0.016454, - -0.0048269, - 0.070689, - -0.0048384, - -0.072594, - 0.017317, - -0.015375, - -0.073842, - 0.065786, - -0.0029733, - -0.033611, - -0.052106, - 0.029207, - -0.042065, - 0.033625, - 0.0041751, - 0.020402, - 0.040187, - 0.021777, - -0.0047604, - -0.0037259, - 0.026695, - -0.0092323, - 0.045865, - -0.0077207, - -0.013764, - 0.015266, - 0.010195, - 0.08409, - -0.066273, - 0.041424, - -0.039248, - -0.0093017, - -0.033864, - -0.021993, - 0.012332, - -0.015131, - 0.004832, - 0.019934, - -0.025337, - -0.054448, - -0.05393, - -0.047265, - 0.054129, - 0.031268, - 0.0066167, - -0.0063964, - -0.020076, - -0.029784, - -0.0083096, - 0.014327, - 0.058264, - -0.0051527, - 0.048601, - -0.030973, - 0.013954, - -0.01897, - 0.038556, - -0.0039635, - 0.035569, - 0.052459, - 0.028323, - 0.095499, - -0.045787, - 0.022302, - 0.017008, - -0.077362, - 0.0022931, - -0.048937, - -0.030602, - 0.073288, - 0.023842, - 0.061498, - 0.033144, - -0.0057156, - 0.002027, - -0.028798, - -0.016645, - 0.029919, - 0.065794, - -0.0048222, - -0.019722, - -0.022069, - 0.013645, - 0.031438, - -0.059992, - -0.00022189, - 0.03207, - -0.01586, - -0.013378, - 0.07055, - 0.016916, - -0.091405, - 0.012836, - -0.00045941, - 0.022724, - -0.012963, - -0.018718, - -0.01633, - 0.049848, - -0.0057207, - 0.022157, - -0.028842, - -0.013913, - 0.10199, - 0.0090448, - 0.031456, - -0.035932, - -0.011938, - -0.01764, - -0.050353, - 0.041913, - 0.01209, - 0.040142, - 0.0030927, - 0.012012, - 0.02017, - -0.0046477, - -0.055506, - 0.013536, - 0.01808, - -0.030475, - -0.056597, - -0.098089, - 0.11594, - -0.057597, - -0.026119, - 0.01563, - 0.026543, - 0.11122, - -0.007651, - 0.030856, - 0.0039422, - 0.023464, - 0.019393, - -0.025329, - 0.023204, - 0.072847, - -0.019844, - 0.01698, - 0.040781, - -0.019207, - 0.033103, - 0.010428, - 0.034266, - -0.03434, - 0.038086, - 0.0078827, - -0.0083484, - -0.020972, - 0.0095269, - 0.07075, - -0.031622, - 0.0010126, - 0.025668, - 0.017383, - 0.050736, - 0.052102, - -0.024744, - -0.037216, - 0.042338, - -0.022252, - -0.015281, - -0.0078666, - -0.0087955, - -0.055935, - 0.0029953, - -0.050942, - -0.04689, - 0.017152, - -0.021218, - -0.00070584, - 0.010011, - -0.014778, - 0.0037411, - 0.013378, - -0.0039087, - 0.025557, - -0.018672, - -0.0298, - 0.028388, - -0.038518, - -0.020531, - -0.04751, - 0.027039, - -0.067918, - 0.062679, - 0.077794, - 0.010351, - -0.007581, - 0.062294, - 0.05886, - -0.045537, - -0.04914, - 0.031846, - 0.019339, - 0.030164, - 0.02418, - -0.012164, - 0.034289, - -0.074017, - 0.007075, - 0.022688, - -0.033195, - -0.010296, - 0.010868, - 0.041341, - 0.019811, - 0.016946, - -0.01633, - 0.073734, - 0.060373, - 0.01059, - 0.028852, - 0.013238, - -0.012459, - -0.051497, - -0.045531, - -0.091938, - -0.025763, - -0.036826, - -0.017791, - -0.023983, - 0.067911, - 0.10521, - -0.00057967, - 0.059536, - 0.12115, - 0.0019642, - -0.027167, - 0.0080668, - -0.0072598, - -0.10967, - -0.012516, - 0.049234, - 0.041727, - 0.014332, - -0.012283, - -0.05898, - 0.020533, - -0.0094446, - -0.0089842, - 0.011403, - 0.016362, - -0.022752, - 0.018275, - -0.067837, - -0.11892, - 0.00022551, - 0.029919, - 0.03391, - 0.0012576, - -0.021683, - 0.00065935, - -0.002372, - -0.01502, - -0.045853, - 0.01365, - 0.056685, - 0.023779, - 0.032142, - -0.0020305, - -0.0073322, - -0.004889, - -0.0072226, - -0.0013036, - -0.045694, - 0.030907, - 0.011333, - -0.013117, - 0.051266, - 0.048394, - -0.071347, - -0.037579, - 0.12697, - -0.028068, - 0.053084, - 0.0056975, - -0.036481, - 0.016956, - 0.024792, - -0.012744, - -0.00017824, - -0.049356, - 0.0018078, - -0.035859, - -0.02382, - 0.004225, - -0.024082, - 0.029536, - 0.0085464, - 0.040396, - -0.022741, - 0.020568, - -0.0015735, - 0.034377, - 0.0059777, - 0.037742, - -0.013738, - -0.014546 - ], - "intelligentsia": [ - 0.052176, - -0.048469, - 0.050618, - -0.011264, - -0.077083, - -0.014506, - 0.038168, - -0.063301, - 0.017003, - -0.0022977, - 0.015661, - 0.00074127, - -0.01119, - -0.0040691, - -0.0077761, - -0.030253, - 0.048897, - 0.016503, - 0.02118, - 0.019997, - -0.037208, - 0.005426, - -0.0051408, - 0.014655, - -0.038347, - 0.014615, - 0.013268, - 0.021714, - 0.021652, - -0.026546, - 0.0054116, - -0.022525, - 0.021296, - 0.0016273, - -0.0025231, - 0.017707, - 0.0095474, - 0.039123, - 0.010012, - -0.0051395, - -0.02088, - -0.058779, - -0.027524, - 0.027396, - 0.0092106, - 0.0051428, - -0.014157, - 0.030459, - -0.011624, - -0.0062122, - -0.011036, - -0.024436, - -0.023004, - 0.0135, - 0.0046466, - 0.021983, - -0.0010336, - 0.016909, - -0.040472, - 0.0047927, - 0.04448, - -0.013287, - 0.04533, - 0.020201, - -0.0063657, - 0.025179, - 0.015826, - -0.013009, - -0.0041336, - -0.031621, - 0.035517, - -0.022792, - 0.035995, - 0.025765, - -0.0094651, - 0.010275, - -0.046481, - -0.00083658, - 0.030845, - 0.014247, - -0.028243, - 0.055698, - 0.0011863, - 0.069677, - -0.032161, - -0.0084443, - -0.013954, - -0.020554, - 0.03606, - 0.020512, - -0.018071, - 0.026785, - -0.063539, - -0.0041994, - 0.01657, - 0.064474, - -0.026398, - -0.048681, - 0.003993, - 0.055053, - 0.012487, - 0.014234, - -0.006292, - -0.0034584, - 0.028614, - -0.058714, - 0.034088, - 0.0088951, - -0.010737, - 0.011293, - -0.017594, - 0.078155, - 0.019818, - 0.0087404, - -0.045136, - 0.00013952, - 0.059355, - 0.0055542, - -0.023386, - 0.036179, - 0.0074382, - -0.061628, - -0.077097, - -0.041191, - 0.040193, - 0.0058478, - 0.016245, - -0.02036, - -0.0028589, - 0.040373, - 0.017671, - 0.045866, - 0.064479, - 0.0040817, - 0.015364, - 0.042831, - -0.055608, - 0.051429, - -0.032452, - 0.018954, - -0.010406, - -0.061101, - -0.035681, - 0.0019996, - -0.041121, - -0.045227, - -0.026395, - 0.064521, - -0.02519, - 0.010265, - 0.078686, - 0.03946, - -0.024789, - 0.028906, - 0.057987, - -0.015957, - -0.020159, - 0.050228, - -0.023283, - -0.021849, - 0.047118, - 0.022683, - 0.0047457, - 0.024855, - -0.017562, - 0.017215, - -0.011224, - 0.039602, - -0.0038627, - -0.042155, - -0.0086889, - 0.012956, - -0.026238, - 0.067777, - 0.012236, - 0.035272, - -0.0040152, - 0.029604, - 0.021751, - -0.0068539, - -0.025638, - 0.039367, - -0.031731, - 0.001283, - -0.006761, - -0.021556, - -0.0067783, - 0.082618, - -0.027334, - -0.0099832, - 0.00040412, - 0.030614, - -0.025012, - -0.050156, - 0.013447, - 0.052392, - 0.007968, - -0.0024887, - -0.016069, - 0.026708, - -0.051596, - -0.039391, - 0.0060409, - 0.011077, - -0.029191, - 0.011521, - 0.021837, - 0.021346, - -0.031152, - -0.012495, - 0.024572, - -0.029863, - 0.034492, - 0.0054138, - -0.025677, - 0.01968, - -0.036968, - 0.021875, - 0.020183, - -0.0058488, - -0.062295, - -0.01577, - 0.014373, - 0.050412, - -0.006484, - -0.0018857, - 0.070879, - 0.011544, - -0.010712, - -0.014677, - 0.0032981, - 0.018202, - -0.065326, - 0.031397, - 0.037149, - -0.043539, - -0.0088523, - -0.037172, - -0.0025697, - -0.012298, - 0.03182, - 0.011767, - 0.015489, - 0.028613, - 0.02954, - 0.015811, - -0.047188, - -0.0091431, - -0.037261, - -0.061504, - 0.064026, - -0.0043957, - -0.049149, - 0.036338, - -0.016287, - 0.019957, - -0.01997, - 0.0034392, - 0.027155, - -0.03885, - -0.01898, - 0.0071804, - 0.035168, - 0.000027449, - 0.0067804, - 0.043488, - -0.057501, - 0.0095656, - 0.019539, - -0.0037878, - -0.0088171, - 0.033838, - -0.044214, - -0.016789, - 0.0060865, - -0.023248, - 0.015913, - 0.00075791, - -0.032016, - -0.015734, - 0.031558, - 0.024534, - 0.0078543, - -0.034657, - -0.026364, - 0.028616, - 0.03629, - -0.062994, - 0.021082, - 0.014721, - -0.037989, - 0.026576, - -0.0087549, - 0.02888, - -0.017136, - 0.013093, - 0.0031993, - 0.025872, - 0.024852, - 0.0062276 - ], - "cars": [ - 0.070385, - -0.0051829, - 0.080848, - 0.057147, - 0.032642, - 0.0091379, - -0.11378, - -0.11548, - 0.105, - 0.05205, - 0.036149, - -0.075433, - 0.051811, - 0.013952, - -0.051854, - 0.10121, - 0.12035, - 0.095126, - 0.089628, - -0.013218, - 0.07528, - -0.081997, - 0.010602, - 0.053933, - 0.08818, - -0.0019308, - 0.05932, - -0.065274, - 0.15547, - 0.072142, - -0.073033, - 0.02769, - 0.11213, - 0.01469, - 0.074866, - -0.013991, - 0.0087035, - 0.022601, - 0.0012533, - -0.072503, - -0.036919, - -0.14089, - -0.054073, - -0.013846, - 0.018845, - -0.060217, - -0.04618, - -0.067465, - -0.019422, - -0.020475, - -0.00074277, - -0.00107, - -0.04364, - 0.073941, - -0.16399, - -0.083362, - 0.044882, - 0.00525, - -0.081785, - -0.086194, - 0.049449, - -0.007803, - 0.23302, - 0.10343, - 0.14263, - 0.014803, - -0.0091686, - -0.11871, - 0.01991, - 0.080145, - 0.098961, - -0.054969, - 0.10132, - -0.052452, - -0.0081625, - 0.10623, - -0.017936, - -0.096107, - -0.032727, - 0.063818, - 0.020792, - -0.10972, - -0.01663, - 0.086464, - 0.040295, - -0.12033, - 0.072183, - -0.054131, - 0.094199, - -0.029271, - 0.026252, - -0.00056264, - -0.13805, - 0.070891, - 0.083996, - 0.097516, - 0.034429, - -0.0026066, - 0.0066456, - -0.05994, - 0.0069928, - -0.04506, - -0.025274, - 0.0060817, - 0.097562, - -0.099962, - -0.035996, - -0.030823, - 0.096997, - 0.035573, - 0.098811, - 0.095381, - 0.13769, - 0.18262, - -0.023796, - -0.11178, - -0.033862, - 0.0053639, - -0.07222, - 0.0012588, - -0.051616, - 0.067575, - 0.050608, - -0.12412, - 0.13323, - 0.012496, - -0.019686, - -0.073164, - 0.049702, - 0.096706, - -0.030534, - 0.13863, - 0.17255, - -0.035149, - 0.17111, - -0.018932, - 0.042782, - 0.025041, - -0.1095, - 0.033869, - -0.0065953, - -0.0025175, - 0.071313, - 0.09138, - 0.082177, - -0.0069268, - 0.029575, - 0.027772, - 0.0074263, - -0.040263, - 0.016321, - 0.096461, - 0.056063, - -0.03996, - 0.018754, - 0.024124, - -0.045629, - 0.04955, - -0.034657, - -0.053519, - 0.025256, - -0.039575, - 0.060081, - 0.058303, - 0.049553, - -0.063357, - 0.11533, - -0.044977, - 0.10864, - -0.014295, - 0.075675, - -0.13411, - 0.051555, - 0.12318, - 0.048605, - 0.085449, - -0.068476, - 0.071411, - -0.020058, - 0.011769, - 0.10863, - -0.063106, - -0.078921, - -0.097452, - 0.044372, - -0.057419, - -0.077039, - 0.13569, - 0.097769, - -0.062845, - -0.051927, - 0.058401, - -0.15192, - 0.073795, - 0.10067, - 0.076794, - -0.054602, - -0.086592, - 0.018927, - 0.08357, - -0.19677, - 0.1577, - -0.049766, - -0.099036, - 0.11522, - 0.0079985, - 0.019762, - -0.069126, - 0.027709, - -0.11844, - 0.15325, - -0.017453, - 0.056911, - -0.0028391, - -0.0088416, - -0.019446, - -0.1141, - -0.048314, - -0.033553, - -0.0088586, - -0.045094, - -0.043216, - 0.035162, - 0.13876, - 0.044768, - 0.03285, - -0.0086813, - 0.051616, - -0.018325, - 0.0013681, - -0.04636, - -0.013206, - -0.15643, - -0.076709, - 0.028264, - -0.061464, - 0.051404, - 0.012664, - 0.02129, - -0.029045, - -0.027477, - 0.012142, - 0.043929, - -0.04685, - 0.024277, - 0.013727, - 0.14793, - -0.0037326, - 0.056842, - 0.0099313, - -0.01588, - 0.083883, - -0.082077, - 0.0092937, - -0.077702, - -0.040797, - -0.010093, - -0.043401, - 0.11317, - -0.0034697, - 0.030413, - 0.055215, - -0.10479, - -0.086048, - 0.031875, - 0.075851, - 0.029861, - -0.022271, - 0.060378, - -0.0087453, - -0.013135, - 0.13143, - -0.15741, - -0.042727, - -0.073929, - -0.028991, - 0.0087817, - 0.12507, - 0.0040473, - -0.051777, - 0.03763, - 0.061431, - -0.018509, - -0.010443, - -0.036367, - -0.027872, - -0.056082, - 0.035307, - 0.10565, - 0.14686, - 0.060189, - -0.1167, - -0.11119, - -0.034504, - -0.042614, - -0.012042, - 0.006094, - -0.0028173, - 0.084202, - -0.076012 - ], - "populism": [ - 0.045075, - 0.0057512, - -0.00071207, - 0.019456, - -0.083729, - -0.015756, - -0.025114, - -0.091947, - 0.0052875, - -0.019184, - 0.04869, - -0.086924, - 0.046723, - -0.018278, - -0.070236, - -0.018495, - 0.09091, - -0.021772, - 0.022083, - -0.0074729, - 0.017478, - -0.031941, - -0.0090928, - 0.03964, - 0.034023, - -0.0072418, - 0.05271, - 0.075117, - 0.1004, - 0.006123, - 0.0082204, - -0.053513, - -0.088419, - -0.054797, - 0.051076, - 0.026047, - 0.034828, - 0.011842, - -0.00042351, - 0.028307, - -0.00994, - -0.11689, - 0.034488, - 0.076408, - 0.032599, - -0.0019645, - -0.051444, - -0.01859, - 0.01951, - -0.070506, - -0.012958, - 0.01299, - 0.068171, - 0.020747, - -0.0054453, - 0.0028785, - 0.10897, - 0.033715, - -0.044927, - 0.044603, - -0.038518, - -0.021862, - -0.0060318, - 0.013379, - -0.014215, - 0.035427, - -0.07294, - 0.023646, - 0.016878, - 0.0060744, - 0.012254, - 0.02557, - -0.041094, - -0.042066, - 0.010004, - 0.036047, - -0.10755, - -0.019261, - -0.039737, - 0.03295, - -0.055388, - 0.010568, - -0.045831, - 0.088608, - 0.018522, - -0.073085, - -0.048582, - 0.075943, - -0.029328, - 0.014703, - -0.053821, - 0.037846, - -0.097722, - 0.033778, - 0.045201, - 0.052104, - -0.017509, - -0.092491, - -0.063777, - 0.015893, - 0.038935, - -0.021067, - -0.051441, - -0.08195, - -0.017703, - -0.061165, - -0.0063973, - -0.056434, - -0.023935, - 0.023704, - 0.0056636, - 0.049097, - 0.04022, - -0.056519, - -0.011245, - 0.035712, - 0.041644, - 0.0060815, - -0.026326, - 0.10646, - 0.0077927, - -0.13232, - 0.021796, - -0.12017, - 0.086662, - -0.036572, - -0.064397, - -0.027499, - -0.00020435, - 0.13097, - -0.0070848, - -0.041619, - 0.046884, - 0.06971, - 0.041756, - 0.043076, - 0.05434, - 0.061706, - -0.014817, - -0.022515, - 0.030708, - -0.031817, - 0.038935, - 0.056852, - -0.036216, - -0.071989, - 0.083835, - 0.10414, - -0.01542, - -0.038603, - 0.034047, - 0.089721, - -0.063992, - 0.038707, - 0.050351, - 0.074159, - -0.025848, - 0.043042, - -0.046084, - -0.0017164, - 0.023422, - 0.023242, - -0.13432, - -0.0085846, - 0.0010908, - -0.015121, - 0.032488, - 0.0055469, - -0.012689, - -0.01719, - -0.049649, - -0.0096728, - -0.029909, - -0.011674, - -0.022354, - 0.062064, - 0.009201, - -0.040396, - -0.0012405, - -0.012943, - -0.022985, - -0.0049039, - 0.0019693, - -0.060242, - 0.057587, - -0.016941, - -0.044935, - 0.1292, - -0.02867, - -0.10995, - 0.06105, - 0.081342, - -0.022243, - -0.0043345, - -0.03663, - 0.014136, - 0.056996, - -0.0013475, - -0.027489, - -0.031257, - -0.1693, - 0.016163, - 0.078538, - -0.066199, - -0.078526, - -0.037622, - 0.040373, - 0.045283, - -0.056679, - -0.00048201, - 0.083992, - -0.012666, - -0.003572, - -0.021572, - 0.12206, - 0.12092, - -0.0358, - -0.017778, - -0.010345, - -0.034749, - -0.039001, - 0.01755, - -0.0061781, - 0.10236, - 0.017336, - 0.032981, - 0.060527, - 0.073945, - -0.058921, - -0.060927, - 0.034901, - -0.062339, - -0.050482, - 0.0093644, - 0.064591, - 0.050445, - -0.036986, - -0.12069, - 0.0058851, - -0.021329, - 0.021427, - 0.096695, - -0.06885, - 0.046642, - -0.014247, - -0.028788, - -0.06603, - -0.072491, - 0.030567, - 0.039715, - 0.051637, - -0.051167, - -0.085705, - 0.0032964, - 0.044021, - 0.014942, - -0.071675, - -0.024048, - 0.023146, - -0.058602, - 0.046782, - 0.035475, - 0.086142, - 0.019547, - 0.00062661, - 0.031444, - 0.021015, - 0.0010057, - 0.01416, - -0.004334, - -0.064131, - 0.072307, - -0.098548, - 0.010864, - 0.036651, - -0.1089, - 0.069851, - 0.095804, - -0.099432, - -0.017615, - 0.088221, - 0.013261, - -0.060523, - 0.013451, - -0.027614, - 0.033615, - 0.048824, - 0.060509, - 0.022322, - -0.031005, - -0.058869, - -0.014597, - 0.042644, - 0.042351, - -0.077509, - 0.02231, - -0.060201, - 0.03064, - 0.005038, - 0.0011319 - ], - "buy-to-let": [ - 0.03097, - -0.0050575, - -0.019654, - -0.0058788, - -0.074987, - 0.0042079, - 0.059189, - -0.048746, - 0.014386, - -0.033343, - 0.095737, - -0.0047536, - -0.000013265, - -0.071396, - 0.033769, - -0.013511, - 0.075126, - 0.0053065, - 0.045489, - -0.050335, - 0.089243, - 0.017797, - -0.03589, - 0.034073, - 0.029658, - 0.016785, - 0.05631, - 0.02676, - 0.0085436, - -0.010329, - -0.07352, - -0.07309, - -0.047953, - -0.036854, - 0.043421, - -0.029104, - -0.012709, - -0.012731, - -0.012956, - 0.072622, - 0.07055, - -0.075108, - 0.018859, - -0.013893, - -0.099651, - 0.017879, - -0.031218, - -0.016024, - 0.053754, - -0.022545, - -0.013949, - -0.031403, - -0.029116, - -0.043068, - -0.048826, - -0.016511, - -0.030849, - 0.031483, - -0.057685, - -0.0064886, - 0.12119, - 0.062011, - 0.06341, - 0.059633, - -0.043495, - -0.0031616, - -0.040249, - -0.0077442, - 0.0072199, - -0.063905, - -0.013159, - 0.10983, - 0.03759, - 0.057754, - 0.0089353, - -0.067953, - 0.0091905, - 0.0088514, - -0.050812, - 0.030845, - 0.060526, - 0.00026654, - -0.026259, - 0.11451, - -0.0757, - 0.05098, - 0.048104, - 0.0011167, - 0.042724, - 0.024593, - 0.023995, - 0.03726, - -0.084265, - 0.01126, - -0.073747, - 0.027186, - -0.043501, - -0.022405, - -0.03691, - -0.069548, - -0.067008, - -0.01897, - -0.057995, - -0.0051617, - 0.0016656, - -0.10539, - -0.017604, - 0.049857, - 0.016317, - 0.014338, - -0.069864, - 0.076954, - 0.038209, - -0.0058852, - -0.010922, - 0.018204, - 0.066082, - -0.086558, - -0.048351, - 0.031431, - -0.037606, - -0.0090905, - 0.069187, - -0.0024576, - 0.09591, - -0.080145, - 0.00059807, - -0.035998, - -0.02093, - 0.025018, - 0.013306, - -0.00013651, - 0.029263, - -0.00032068, - -0.023987, - 0.0013141, - -0.057592, - 0.0079914, - -0.044216, - 0.0055861, - -0.017736, - 0.02692, - -0.0055221, - 0.028302, - 0.042724, - -0.092164, - 0.068944, - 0.037094, - -0.037707, - -0.0024554, - 0.061629, - 0.091408, - -0.022508, - -0.062239, - -0.011477, - 0.054604, - 0.12254, - 0.071599, - -0.016276, - 0.0016412, - 0.07177, - -0.0075402, - -0.067433, - 0.048826, - 0.0041536, - -0.042855, - -0.015159, - -0.013651, - 0.0071969, - 0.023971, - -0.047053, - -0.025238, - 0.023886, - 0.0025681, - -0.076466, - 0.036782, - -0.025697, - -0.048826, - 0.0048718, - 0.016857, - 0.023933, - -0.019435, - -0.012895, - -0.023019, - 0.029339, - -0.036765, - 0.022868, - 0.11066, - -0.054829, - -0.034336, - -0.022284, - 0.0029588, - -0.014937, - 0.051848, - 0.014337, - 0.044904, - -0.021679, - 0.033395, - 0.036329, - 0.032395, - -0.15168, - 0.07679, - 0.020614, - -0.033342, - 0.049896, - 0.007129, - 0.042699, - -0.023719, - -0.079577, - -0.011866, - 0.092416, - -0.015409, - 0.029044, - -0.06931, - -0.014003, - 0.067644, - -0.033771, - 0.014654, - 0.039275, - -0.014175, - 0.08063, - -0.0401, - 0.013282, - 0.072397, - -0.023009, - -0.14824, - -0.066929, - 0.027075, - 0.049743, - -0.004433, - 0.017283, - -0.055548, - 0.020688, - -0.007261, - 0.08769, - -0.016335, - 0.027444, - -0.056405, - -0.014849, - -0.035319, - 0.0059728, - -0.017281, - 0.045171, - 0.0015017, - -0.058952, - 0.0071189, - -0.025917, - 0.0050736, - 0.018854, - -0.0047827, - 0.044606, - -0.04766, - -0.04042, - -0.032144, - -0.0042984, - -0.011979, - -0.032854, - 0.03389, - 0.033432, - 0.033144, - 0.030131, - 0.006392, - 0.017173, - 0.0030537, - -0.043522, - 0.034426, - -0.0029023, - 0.032546, - 0.016484, - 0.018785, - -0.072144, - 0.042034, - -0.11276, - -0.017436, - -0.044917, - -0.031525, - 0.19463, - -0.0022584, - 0.056011, - -0.020435, - 0.090261, - -0.010102, - 0.00010739, - 0.0089891, - -0.033603, - -0.0075262, - 0.015837, - 0.0020409, - -0.055761, - 0.0058768, - -0.0061805, - -0.083074, - -0.019139, - 0.060293, - -0.012482, - -0.0022965, - 0.013654, - 0.02937, - -0.041463, - -0.0032989 - ], - "thunderstorm": [ - -0.0068166, - -0.022423, - -0.0092299, - -0.027975, - -0.010973, - -0.045475, - 0.014087, - -0.066566, - 0.042401, - 0.047911, - 0.008187, - -0.0052737, - 0.015831, - 0.017289, - -0.015509, - 0.032345, - 0.0037087, - 0.016643, - 0.0098792, - 0.0057858, - 0.041881, - -0.022323, - -0.028807, - 0.021831, - 0.054904, - -0.031651, - -0.010848, - 0.012606, - 0.0065122, - -0.0057322, - -0.010151, - 0.053406, - 0.018735, - -0.065943, - 0.024872, - 0.024834, - -0.018627, - -0.030393, - -0.006177, - -0.054015, - -0.025644, - -0.10271, - 0.046924, - -0.025914, - -0.055269, - 0.049081, - 0.072776, - -0.0058552, - -0.03051, - -0.014332, - 0.053121, - -0.0034959, - -0.029483, - -0.026244, - 0.0014803, - 0.022694, - 0.059859, - -0.075647, - -0.053537, - 0.045353, - 0.0033222, - -0.030875, - 0.040595, - 0.018455, - -0.044541, - 0.010102, - 0.014737, - 0.069187, - 0.014251, - 0.018285, - 0.047628, - 0.055644, - -0.028389, - 0.0028187, - -0.053298, - -0.075788, - -0.021469, - -0.01121, - -0.035849, - 0.060993, - -0.01581, - 0.0057802, - -0.059891, - 0.036333, - 0.04879, - -0.059422, - 0.042056, - 0.02169, - 0.033432, - -0.010841, - 0.033997, - 0.026393, - -0.043398, - -0.059617, - 0.013164, - 0.046876, - 0.037527, - 0.002289, - -0.0025654, - -0.012385, - 0.030888, - -0.01762, - 0.027291, - -0.031383, - 0.017269, - -0.021067, - 0.017156, - -0.0069901, - 0.046437, - -0.0084439, - -0.023243, - 0.0021247, - 0.025521, - 0.030964, - -0.0087029, - -0.03735, - -0.0060125, - 0.053074, - -0.032626, - -0.025756, - -0.026153, - 0.010344, - 0.05755, - -0.0071587, - 0.056675, - 0.0027092, - 0.029846, - -0.039752, - -0.090987, - 0.074069, - 0.0589, - -0.014277, - -0.058993, - 0.03976, - 0.016526, - 0.003176, - 0.067979, - 0.020685, - -0.0045261, - 0.034024, - -0.016367, - 0.011636, - -0.038682, - -0.040088, - -0.012022, - -0.033203, - 0.0092539, - 0.017728, - -0.093482, - 0.016695, - -0.012674, - 0.05439, - -0.0012863, - -0.047514, - 0.042923, - 0.0052536, - 0.010305, - 0.0025159, - -0.0063925, - -0.011691, - 0.04238, - 0.0051879, - -0.064702, - 0.0023094, - -0.0121, - -0.011058, - 0.002849, - 0.022532, - 0.004229, - 0.055062, - -0.0065645, - -0.0025658, - 0.060674, - -0.00088262, - 0.039061, - 0.046085, - 0.056293, - -0.00081739, - -0.022975, - -0.025328, - -0.029803, - 0.0064171, - -0.035758, - -0.026806, - -0.060764, - -0.013182, - -0.046938, - 0.084212, - 0.075612, - -0.063216, - 0.059656, - -0.019035, - -0.017069, - -0.032, - -0.0217, - -0.042727, - 0.012255, - 0.079526, - 0.0047762, - -0.025881, - -0.091248, - 0.045958, - -0.064888, - 0.037301, - 0.097102, - 0.016015, - -0.021242, - -0.0048778, - -0.044838, - -0.040401, - 0.078809, - 0.0077562, - -0.0042371, - -0.022811, - 0.097584, - 0.019038, - 0.011834, - -0.015077, - 0.035918, - -0.095124, - -0.035706, - -0.0063847, - -0.018467, - 0.065631, - 0.0048501, - 0.015557, - -0.048938, - 0.069414, - 0.023683, - 0.0086523, - 0.061696, - -0.075894, - -0.018812, - 0.049213, - 0.057964, - 0.07763, - 0.03354, - 0.032378, - -0.013126, - -0.021325, - 0.058636, - 0.0038857, - -0.011294, - -0.029428, - -0.019626, - -0.02125, - 0.0045277, - 0.020156, - 0.0025132, - -0.019083, - 0.035729, - -0.027948, - 0.015981, - 0.037656, - -0.036047, - 0.020896, - 0.0011037, - 0.0035563, - 0.041357, - 0.018631, - 0.058708, - 0.011641, - 0.010852, - -0.035254, - -0.0058096, - -0.053159, - -0.04853, - 0.0032045, - 0.028231, - -0.042951, - -0.059921, - 0.050216, - -0.069897, - -0.021264, - 0.0021973, - -0.074438, - 0.021426, - -0.068624, - -0.017939, - -0.018597, - 0.077314, - -0.043474, - 0.0074497, - -0.032729, - -0.050518, - -0.035555, - 0.023329, - 0.0025735, - -0.001629, - 0.010854, - 0.031929, - -0.0083428, - -0.04801, - 0.018448, - 0.016212, - -0.013473, - -0.022877, - 0.055333, - 0.064779, - -0.030739 - ], - "houses": [ - 0.047723, - -0.068934, - 0.047001, - -0.031016, - -0.020017, - -0.059008, - -0.0048377, - -0.10059, - 0.008368, - 0.027834, - -0.013632, - -0.091663, - 0.016745, - -0.025039, - 0.017859, - 0.031834, - 0.10894, - -0.0011697, - 0.098531, - 0.010024, - 0.031048, - -0.046776, - 0.018698, - 0.081047, - 0.061953, - 0.002766, - -0.0053548, - 0.05141, - 0.14963, - 0.059944, - -0.06797, - -0.010347, - -0.050313, - 0.010047, - 0.061067, - 0.04226, - 0.075726, - -0.03687, - -0.0033001, - 0.019698, - -0.025476, - -0.11073, - 0.00042733, - 0.0072317, - -0.045454, - -0.033101, - -0.052619, - 0.02544, - 0.0013642, - 0.054239, - -0.0070528, - -0.011944, - -0.056553, - 0.0037307, - -0.086634, - 0.0012956, - -0.019716, - 0.0044133, - -0.038178, - -0.055057, - -0.014876, - 0.0079316, - 0.20822, - -0.026452, - 0.095792, - 0.031954, - -0.05247, - -0.05808, - 0.014514, - 0.016272, - 0.026323, - -0.037368, - 0.066775, - -0.062582, - -0.029655, - -0.019119, - 0.048385, - -0.052384, - 0.0095984, - 0.070274, - 0.012842, - -0.048569, - 0.001093, - 0.071918, - -0.016618, - -0.016242, - 0.016524, - -0.056546, - 0.0065434, - -0.0039497, - -0.0892, - -0.025468, - -0.085287, - 0.072269, - 0.038519, - 0.13316, - -0.02543, - 0.049425, - 0.071797, - -0.008161, - 0.102, - 0.028126, - -0.034223, - 0.025573, - 0.092898, - -0.1047, - -0.011501, - 0.031096, - 0.075546, - 0.06842, - -0.04223, - 0.097157, - 0.092421, - 0.10175, - -0.010373, - -0.043421, - -0.011312, - -0.033343, - -0.028224, - -0.020592, - -0.028809, - -0.020814, - 0.059456, - -0.076428, - 0.098851, - -0.0073174, - -0.037624, - -0.02874, - -0.00015764, - 0.047743, - 0.037718, - 0.055212, - 0.060394, - 0.01844, - 0.062304, - 0.039027, - -0.05615, - 0.038907, - -0.063405, - -0.0026542, - -0.0246, - -0.0064308, - 0.056411, - 0.038786, - 0.083552, - -0.04794, - 0.080544, - 0.068694, - 0.019838, - -0.011159, - 0.013274, - 0.065025, - 0.069274, - -0.038898, - 0.043308, - 0.0098876, - 0.013078, - 0.013777, - -0.014092, - -0.01288, - 0.031798, - -0.0072134, - 0.054693, - 0.072209, - -0.011248, - 0.022372, - 0.0033313, - -0.0021948, - 0.062953, - 0.032241, - 0.061443, - -0.080976, - 0.063911, - 0.038784, - -0.030421, - 0.060945, - 0.015059, - 0.047709, - -0.084556, - -0.0025865, - 0.051398, - 0.006386, - -0.00074469, - -0.006947, - -0.073398, - 0.026697, - -0.0020486, - 0.095507, - 0.01308, - -0.047488, - -0.064087, - 0.042811, - -0.10071, - 0.024635, - 0.0069461, - -0.012771, - -0.0043842, - 0.098791, - 0.042286, - 0.022957, - -0.12721, - 0.080059, - -0.024793, - -0.032539, - 0.071874, - -0.043243, - 0.0061025, - -0.030903, - -0.068168, - -0.063118, - 0.10197, - -0.0092354, - 0.032904, - -0.00047081, - -0.087198, - -0.0086591, - -0.017282, - 0.098062, - 0.052652, - -0.027068, - 0.038162, - -0.0084172, - -0.0067607, - 0.074831, - -0.0020406, - -0.043484, - -0.042189, - 0.033885, - -0.040878, - -0.0075895, - -0.0019635, - -0.018202, - -0.071604, - -0.0050756, - 0.0062859, - 0.006711, - -0.010253, - -0.014238, - 0.0019141, - 0.03116, - -0.0297, - -0.096214, - 0.075055, - 0.025704, - 0.0011984, - 0.082271, - -0.03814, - 0.036143, - 0.0071677, - -0.01239, - -0.063191, - -0.013861, - 0.00038616, - -0.010406, - -0.034512, - 0.012749, - -0.098966, - -0.0050482, - 0.012268, - -0.0018675, - 0.027934, - 0.012727, - -0.039195, - -0.065846, - -0.021568, - 0.0036288, - 0.077932, - -0.026753, - -0.0079355, - -0.014194, - 0.0049257, - 0.070629, - -0.11723, - -0.029423, - -0.032407, - 0.049623, - 0.052489, - 0.013347, - 0.010351, - -0.010214, - -0.029189, - 0.041171, - 0.020807, - 0.017736, - -0.0014178, - 0.12409, - -0.04149, - 0.0031967, - 0.020259, - 0.059368, - -0.030637, - 0.045813, - 0.021284, - -0.029386, - -0.027813, - 0.062544, - 0.013489, - 0.048158, - 0.026736, - 0.023325 - ], - "heroin": [ - 0.04187, - -0.011177, - 0.023036, - 0.057434, - 0.036167, - -0.010196, - -0.066452, - -0.12052, - 0.05854, - -0.0052408, - -0.021099, - 0.0035602, - 0.075799, - -0.05394, - 0.025396, - -0.012461, - 0.1044, - -0.0227, - 0.016347, - 0.05826, - 0.016759, - 0.0365, - -0.024747, - 0.037667, - -0.0012449, - -0.0020458, - -0.0073019, - 0.080454, - 0.075694, - 0.062788, - -0.051754, - 0.090612, - -0.019318, - 0.017739, - -0.0066758, - 0.021554, - 0.026746, - -0.010859, - -0.076654, - 0.041385, - -0.03553, - -0.10247, - 0.049138, - 0.0021281, - 0.053486, - 0.0005069, - 0.089939, - 0.031567, - -0.028836, - 0.068491, - -0.026482, - -0.020282, - 0.0081771, - -0.019165, - -0.12371, - -0.039034, - 0.019007, - 0.048705, - -0.087228, - -0.015316, - -0.022193, - -0.038598, - 0.098305, - -0.0013068, - -0.05504, - -0.06715, - 0.051272, - -0.098531, - -0.026982, - -0.038096, - -0.016914, - 0.11103, - 0.027191, - -0.19794, - 0.031127, - 0.0011479, - 0.054187, - -0.0038099, - 0.012974, - -0.022127, - -0.00046866, - -0.068408, - -0.07006, - 0.063613, - -0.0094477, - 0.093249, - 0.076623, - -0.017274, - 0.1088, - 0.019773, - -0.0036231, - 0.0026704, - -0.11195, - -0.002281, - -0.030957, - 0.059916, - -0.036159, - -0.061953, - -0.0069835, - 0.033678, - 0.04611, - -0.039707, - -0.049182, - 0.01839, - 0.0082147, - -0.080508, - -0.11136, - -0.028521, - 0.0088512, - 0.083852, - -0.0046349, - 0.12467, - 0.096117, - -0.060103, - -0.10653, - -0.0084955, - 0.025833, - -0.11736, - -0.044581, - 0.060879, - 0.090029, - 0.021366, - -0.092914, - -0.12038, - 0.065188, - 0.045027, - -0.052412, - -0.11906, - -0.0060629, - 0.051686, - 0.0094472, - -0.0070386, - 0.0091785, - -0.088453, - 0.095442, - -0.11668, - -0.13726, - 0.007787, - 0.030302, - -0.015587, - 0.070284, - 0.073849, - -0.052276, - -0.054244, - 0.050309, - -0.034549, - 0.062181, - -0.053275, - 0.020804, - -0.053196, - 0.018884, - 0.060192, - -0.0061365, - -0.082609, - -0.06531, - -0.036218, - -0.13165, - -0.0082556, - 0.025859, - 0.01221, - 0.069493, - 0.048687, - -0.10279, - 0.079694, - -0.069829, - -0.042202, - 0.078652, - 0.064403, - 0.022531, - 0.035959, - 0.017862, - 0.055124, - -0.017402, - 0.049671, - 0.024839, - 0.056556, - 0.0019192, - 0.0048755, - 0.032216, - -0.019834, - 0.07888, - -0.035397, - -0.053964, - -0.11482, - 0.071575, - -0.077784, - 0.024527, - 0.14084, - -0.012081, - -0.09206, - 0.089015, - 0.013753, - -0.053607, - 0.027569, - 0.095958, - -0.01487, - -0.030876, - 0.10777, - 0.028069, - -0.020914, - -0.20469, - 0.044621, - -0.055891, - 0.07687, - -0.016777, - 0.035171, - 0.11299, - 0.071824, - 0.037728, - -0.024822, - 0.13831, - 0.0025903, - -0.034625, - -0.0082223, - 0.060808, - -0.052212, - -0.057927, - 0.032708, - 0.055209, - -0.039507, - 0.019737, - -0.1004, - -0.013024, - 0.12674, - 0.026399, - 0.070862, - 0.012845, - 0.054923, - 0.019143, - -0.031324, - -0.055605, - -0.018342, - -0.066448, - -0.061243, - 0.00075386, - 0.019861, - -0.0088842, - -0.051647, - 0.027152, - -0.11154, - 0.028647, - -0.043428, - 0.022338, - -0.081917, - -0.020035, - -0.022111, - -0.09894, - -0.010649, - 0.034038, - 0.068446, - 0.010414, - 0.059349, - 0.073347, - 0.023952, - 0.0080584, - 0.050822, - -0.026759, - 0.0034156, - 0.023545, - -0.034166, - -0.020664, - 0.020765, - -0.02939, - -0.034172, - 0.011826, - 0.0013012, - -0.16352, - -0.032485, - 0.081177, - 0.090961, - -0.13435, - 0.10636, - -0.11468, - -0.052246, - -0.072137, - -0.06415, - -0.033587, - 0.021148, - -0.01976, - 0.02678, - 0.10814, - 0.09304, - -0.096049, - -0.057798, - -0.070982, - 0.016009, - 0.014873, - 0.027781, - 0.071463, - -0.1289, - -0.054685, - -0.019864, - -0.079842, - 0.035047, - -0.13778, - 0.040195, - 0.1313, - -0.011153, - 0.014166, - -0.042652 - ], - "Architecture": [ - 0.0090243, - 0.0073344, - 0.0090326, - -0.037096, - 0.059529, - -0.0060778, - -0.0041843, - -0.026407, - 0.025675, - -0.0095613, - 0.023379, - -0.051711, - 0.018731, - 0.094378, - 0.023675, - 0.026406, - 0.027343, - 0.052499, - 0.026593, - -0.037331, - -0.035656, - 0.044952, - 0.0089894, - 0.04253, - 0.039884, - 0.017239, - -0.014185, - 0.026673, - 0.0062972, - 0.052574, - -0.014409, - -0.039483, - 0.0066901, - 0.0011501, - 0.032858, - 0.040496, - 0.023555, - 0.031837, - 0.025347, - -0.014238, - -0.025492, - 0.04017, - 0.02774, - 0.0055629, - -0.071057, - 0.021518, - -0.010675, - -0.017385, - -0.0079118, - -0.035064, - 0.0052168, - -0.061106, - -0.024412, - 0.029147, - -0.026576, - 0.00039923, - -0.019255, - -0.0102, - -0.046877, - 0.035312, - 0.043089, - 0.018992, - -0.062209, - -0.043295, - 0.023578, - 0.048319, - -0.051043, - 0.0069002, - -0.022246, - 0.015293, - 0.007107, - 0.012082, - -0.019197, - -0.024674, - 0.0014532, - -0.073654, - -0.026392, - -0.065774, - -0.004103, - 0.036602, - 0.0077636, - 0.023767, - 0.04696, - -0.020836, - 0.0079463, - -0.037311, - -0.015991, - -0.082242, - -0.027655, - 0.049522, - 0.022291, - 0.021524, - -0.034833, - 0.018295, - -0.01207, - 0.09033, - -0.0024096, - -0.00056113, - 0.033166, - 0.048689, - 0.043893, - 0.02068, - 0.025518, - 0.029074, - -0.022632, - -0.049394, - -0.013876, - 0.096836, - -0.0020925, - 0.010176, - 0.0075811, - 0.075181, - 0.02004, - 0.043264, - -0.0013047, - -0.020576, - -0.064742, - 0.034862, - 0.063203, - 0.045392, - 0.0023539, - -0.040331, - -0.035095, - -0.022419, - 0.029306, - 0.046706, - -0.058685, - -0.016845, - 0.011147, - 0.16954, - -0.029313, - 0.013997, - 0.0080907, - 0.0081443, - -0.0012227, - 0.069223, - -0.032954, - -0.042391, - 0.031542, - -0.049037, - 0.030826, - 0.023652, - 0.0061881, - -0.036584, - 0.0011865, - -0.039611, - -0.0087545, - 0.0041382, - 0.057187, - -0.024248, - 0.060849, - 0.025588, - 0.012522, - -0.02051, - -0.0071342, - 0.076169, - 0.041164, - 0.028477, - -0.020768, - -0.030458, - 0.014436, - -0.030432, - -0.090345, - 0.0025159, - 0.0022099, - 0.012211, - 0.028029, - -0.039428, - 0.037026, - 0.022758, - 0.052566, - -0.005496, - 0.033288, - 0.011595, - -0.019451, - 0.025571, - -0.015542, - 0.0056626, - -0.01119, - -0.017781, - -0.020226, - -0.026749, - 0.014139, - 0.042119, - -0.031059, - 0.076322, - 0.027709, - 0.11348, - -0.019267, - -0.0062025, - -0.030312, - 0.070078, - -0.040103, - 0.028173, - 0.012512, - 0.023985, - 0.00079193, - -0.0028845, - 0.04226, - -0.034607, - -0.021131, - 0.01995, - -0.021607, - -0.049354, - 0.020212, - -0.011024, - -0.021259, - -0.044378, - -0.0081202, - 0.013626, - 0.12178, - 0.0075883, - 0.0035949, - 0.0098918, - 0.036542, - 0.065339, - 0.015692, - -0.0056149, - 0.011158, - -0.00464, - -0.036786, - -0.013793, - 0.02463, - 0.05298, - -0.034573, - 0.010077, - 0.029695, - 0.019593, - -0.025145, - -0.0020374, - -0.023876, - -0.04373, - 0.030772, - 0.0088635, - 0.0038521, - -0.034052, - 0.010284, - -0.022768, - -0.011122, - 0.016745, - 0.0067899, - -0.015655, - 0.022071, - -0.004235, - 0.13495, - 0.008437, - -0.089334, - -0.0092933, - 0.017031, - -0.053107, - 0.012588, - -0.048413, - -0.03669, - -0.045063, - 0.0055937, - -0.020218, - -0.061892, - 0.027888, - 0.031186, - 0.020021, - -0.024624, - 0.059157, - -0.014789, - 0.027683, - 0.038494, - -0.063384, - 0.050497, - -0.020046, - 0.015582, - 0.0064692, - -0.0097696, - 0.056535, - -0.055947, - 0.011673, - -0.017458, - -0.040478, - 0.055623, - -0.0023692, - -0.013623, - 0.0010867, - 0.026047, - 0.014631, - -0.025969, - 0.045672, - 0.028217, - -0.026193, - -0.0066727, - 0.0061356, - 0.0072856, - 0.0074096, - -0.050011, - -0.023992, - -0.0044526, - -0.042506, - 0.032101, - -0.0067662, - 0.01433, - 0.033001, - 0.010016, - -0.0011655 - ], - "biological": [ - -0.041755, - -0.026172, - 0.0064392, - 0.024863, - 0.012186, - -0.020177, - -0.0078263, - -0.076966, - 0.067257, - 0.027637, - -0.012756, - -0.022288, - -0.0076971, - -0.015128, - 0.011704, - -0.07288, - 0.055722, - 0.034672, - 0.029627, - 0.047633, - 0.014059, - 0.014205, - 0.070869, - 0.051311, - -0.02034, - -0.035524, - -0.023226, - 0.021887, - 0.042246, - 0.055491, - 0.019386, - -0.021845, - 0.046552, - -0.064974, - 0.049453, - 0.032485, - -0.030717, - -0.042314, - 0.020033, - 0.028584, - -0.029783, - -0.09238, - 0.01081, - -0.051242, - 0.036243, - -0.025689, - -0.026179, - 0.0076209, - -0.025612, - 0.0090245, - -0.022527, - 0.016904, - -0.010664, - 0.012845, - 0.040323, - -0.018889, - 0.039065, - -0.0045734, - -0.013711, - 0.012082, - 0.013223, - 0.034167, - 0.10645, - 0.011429, - 0.060625, - -0.022025, - 0.054099, - 0.015388, - 0.010293, - -0.00061283, - 0.07531, - 0.025389, - 0.015579, - -0.019979, - -0.010722, - 0.011064, - -0.032327, - -0.067751, - 0.025828, - -0.010083, - -0.01443, - 0.024798, - -0.025969, - 0.024924, - -0.03123, - 0.019476, - 0.048728, - 0.01247, - 0.012152, - 0.057397, - -0.034604, - 0.0024763, - -0.086002, - 0.0028995, - 0.0053744, - 0.029406, - 0.0037119, - -0.016005, - 0.028721, - 0.023207, - 0.022313, - -0.0078767, - 0.0068116, - -0.025303, - -0.0087106, - -0.10723, - -0.014431, - -0.0014, - -0.0083274, - -0.038073, - 0.0050028, - 0.057617, - 0.03517, - -0.021992, - 0.0039351, - 0.050731, - 0.0052262, - 0.0027405, - -0.0051901, - 0.0052169, - -0.047208, - 0.022398, - -0.0062113, - -0.010291, - 0.091039, - -0.0016863, - -0.017193, - -0.065461, - -0.0016393, - 0.099088, - -0.007861, - -0.02394, - 0.016138, - 0.024463, - 0.0028219, - 0.018755, - -0.0087742, - 0.070544, - 0.036685, - 0.039197, - -0.012746, - -0.023213, - 0.030499, - 0.04056, - -0.0020633, - 0.0097666, - 0.0052467, - 0.015612, - -0.022313, - 0.043047, - 0.025493, - 0.1553, - 0.01936, - -0.03243, - 0.044749, - -0.0011089, - 0.0070243, - -0.025339, - 0.099577, - 0.00080614, - 0.019711, - -0.018027, - -0.094293, - -0.049279, - 0.0053795, - 0.024477, - -0.045143, - 0.041073, - 0.0049644, - -0.038282, - 0.032575, - -0.0020644, - -0.01014, - -0.041476, - 0.0042914, - 0.026839, - 0.019413, - 0.021883, - -0.01465, - -0.042592, - 0.036052, - 0.024225, - 0.047975, - -0.01397, - 0.0033871, - -0.051681, - -0.0044586, - 0.081399, - -0.035934, - 0.054033, - 0.023181, - 0.062758, - 0.087503, - -0.041766, - -0.011456, - -0.017403, - -0.0042742, - 0.028044, - -0.026282, - 0.0059585, - -0.10746, - -0.0011545, - -0.053944, - -0.0078413, - -0.013957, - 0.0046016, - -0.049953, - -0.085396, - -0.017383, - 0.027727, - 0.13594, - 0.021853, - 0.0013413, - -0.0055313, - 0.035695, - 0.0065934, - -0.0077288, - -0.010323, - -0.052681, - -0.010277, - -0.01644, - 0.027859, - -0.045106, - 0.074449, - 0.020377, - -0.024657, - 0.03353, - 0.068363, - 0.015061, - -0.050782, - -0.056862, - -0.057001, - -0.071414, - 0.0016924, - -0.0078338, - 0.012193, - 0.021858, - 0.033108, - -0.03165, - -0.031752, - 0.022296, - -0.0028486, - 0.049246, - 0.053957, - -0.14763, - 0.021956, - -0.026981, - 0.0074089, - -0.020406, - 0.050277, - 0.016078, - -0.02102, - 0.036219, - -0.055065, - -0.036553, - 0.040963, - 0.079321, - 0.024145, - 0.080796, - -0.02852, - 0.032167, - 0.020089, - -0.014151, - 0.012763, - 0.059911, - -0.061043, - -0.025574, - 0.041938, - 0.055067, - 0.02036, - -0.021893, - 0.052302, - -0.069016, - -0.028563, - 0.048206, - -0.11281, - -0.007556, - -0.003117, - 0.05127, - -0.053075, - 0.14754, - -0.012469, - -0.0034893, - -0.017836, - 0.029992, - 0.031654, - -0.033969, - -0.0011287, - 0.010693, - -0.0028075, - -0.0129, - 0.079094, - -0.064556, - -0.026584, - -0.040558, - -0.018321, - 0.02318, - -0.030827, - 0.0033088, - -0.011242 - ], - "maths": [ - -0.024098, - -0.067113, - 0.018709, - -0.085168, - 0.0077099, - -0.11414, - -0.025476, - -0.080077, - 0.024403, - -0.080696, - 0.028404, - -0.089738, - 0.13672, - 0.016534, - 0.07797, - 0.0007454, - 0.14656, - 0.089724, - 0.071037, - -0.041545, - -0.042844, - 0.13602, - 0.077199, - 0.080092, - -0.071056, - -0.040901, - 0.10246, - -0.019832, - 0.097614, - -0.047868, - 0.045714, - 0.055082, - 0.087507, - -0.06943, - 0.039806, - -0.0069145, - 0.010353, - -0.094279, - -0.065536, - -0.03794, - -0.056263, - -0.13224, - -0.064431, - -0.0025043, - -0.070494, - -0.059112, - -0.026004, - -0.11239, - -0.020939, - 0.080462, - -0.034673, - -0.014308, - 0.0049145, - -0.009727, - -0.099164, - 0.050843, - -0.020878, - -0.059551, - -0.054139, - 0.038904, - -0.04375, - -0.02506, - 0.14887, - 0.1567, - 0.010476, - -0.011818, - 0.074025, - -0.00072853, - 0.019063, - 0.012933, - 0.042271, - -0.084273, - 0.085075, - -0.025238, - 0.083681, - -0.0010552, - 0.054027, - 0.0080537, - -0.014286, - -0.021939, - -0.090385, - 0.0019485, - -0.083972, - 0.099716, - -0.06159, - 0.11461, - 0.030708, - -0.018234, - -0.0033982, - 0.030433, - 0.070087, - -0.021123, - -0.10421, - 0.045689, - 0.021174, - 0.076117, - 0.043504, - 0.10848, - -0.012016, - -0.051965, - 0.065091, - 0.031806, - -0.0064493, - -0.018427, - 0.038986, - -0.10894, - 0.0039523, - 0.066728, - 0.11313, - -0.042193, - 0.0086955, - 0.10874, - 0.086552, - 0.0056049, - 0.03677, - 0.023118, - 0.046173, - 0.095379, - -0.073809, - -0.071078, - 0.021951, - 0.0008601, - -0.13584, - 0.034224, - 0.13995, - -0.0041617, - -0.12792, - -0.077551, - -0.13319, - 0.16722, - -0.11071, - 0.074774, - -0.013523, - -0.014838, - -0.080241, - -0.080667, - 0.15799, - 0.0097819, - 0.019668, - -0.011068, - 0.047898, - -0.01752, - 0.040353, - 0.013066, - -0.0093535, - -0.11847, - -0.066679, - -0.024144, - -0.16417, - -0.071848, - 0.032039, - 0.088016, - -0.038771, - -0.088552, - -0.055305, - 0.073112, - 0.087918, - 0.11763, - -0.041857, - -0.0048731, - 0.058995, - -0.050843, - -0.069202, - 0.00021944, - 0.010926, - -0.050949, - 0.036583, - -0.054307, - 0.029282, - 0.023982, - 0.0081972, - -0.075692, - 0.026606, - 0.096436, - 0.11024, - 0.1121, - -0.0099822, - 0.069435, - -0.00047515, - 0.045015, - 0.054252, - -0.12221, - -0.078984, - -0.052085, - 0.14557, - -0.083815, - -0.022726, - 0.15785, - 0.099156, - 0.047724, - -0.059799, - 0.16334, - -0.07348, - -0.10713, - 0.065895, - -0.016574, - -0.092625, - 0.009452, - 0.019797, - 0.0061087, - -0.176, - 0.0043576, - 0.051805, - 0.025717, - -0.039139, - 0.056839, - 0.032211, - -0.11431, - 0.045453, - -0.02276, - 0.10617, - 0.0063994, - -0.02221, - 0.0076857, - 0.040117, - 0.081291, - -0.031276, - 0.021273, - -0.14554, - 0.033772, - 0.088023, - 0.042871, - -0.037911, - 0.10006, - 0.048646, - -0.049904, - 0.05333, - 0.14932, - 0.10091, - 0.027775, - 0.074258, - -0.025572, - -0.080812, - 0.020834, - 0.018616, - 0.011623, - 0.02815, - 0.018299, - -0.11434, - -0.0027746, - -0.073124, - -0.076238, - 0.035932, - 0.044101, - -0.005105, - 0.13896, - -0.021047, - -0.045663, - -0.11168, - 0.048991, - 0.09803, - 0.063436, - -0.025237, - -0.036835, - 0.0077543, - 0.0096288, - -0.061921, - -0.019915, - 0.070978, - 0.071604, - 0.015696, - 0.0063168, - 0.033838, - -0.070197, - -0.091897, - 0.018611, - 0.048018, - 0.041334, - 0.18705, - -0.03914, - 0.039489, - 0.0923, - -0.16795, - -0.0032956, - -0.016671, - 0.0029267, - 0.17355, - 0.028581, - 0.10095, - -0.0018131, - 0.12947, - 0.029041, - 0.022716, - 0.027192, - -0.049801, - 0.053323, - 0.0019519, - 0.014097, - -0.014934, - -0.0064831, - -0.1223, - -0.024859, - -0.096438, - 0.031878, - 0.00070234, - -0.043024, - -0.012477, - -0.0019801, - 0.087377, - 0.092384 - ], - "networking": [ - -0.0020785, - -0.033746, - -0.040075, - -0.012493, - -0.069219, - 0.034292, - 0.04801, - -0.070879, - 0.02561, - -0.020592, - -0.036767, - -0.023572, - -0.093476, - 0.032706, - -0.0041456, - -0.026021, - 0.049291, - -0.0079268, - 0.024267, - -0.035205, - -0.048262, - 0.044572, - 0.047661, - 0.046097, - -0.0088128, - -0.01009, - 0.0041072, - -0.014528, - 0.014892, - 0.0089352, - 0.025464, - -0.0060233, - -0.046292, - -0.06718, - 0.073963, - 0.014882, - 0.0081793, - 0.042792, - 0.013809, - -0.029648, - -0.048722, - -0.060692, - 0.010664, - 0.047388, - -0.038033, - -0.034183, - 0.015875, - -0.062772, - -0.030687, - -0.032682, - -0.038955, - 0.0064457, - 0.027825, - -0.023318, - -0.052058, - 0.040456, - -0.0006677, - 0.026563, - 0.00062051, - 0.0016476, - -0.021412, - 0.0074499, - 0.062203, - 0.01302, - 0.019532, - -0.0098274, - 0.0022803, - -0.018645, - -0.035412, - -0.02026, - 0.011474, - 0.032191, - 0.033285, - -0.017479, - 0.022386, - -0.0059819, - -0.019454, - -0.028137, - 0.0058765, - -0.008302, - -0.017083, - -0.023257, - 0.014801, - 0.022513, - 0.022638, - -0.017105, - -0.049881, - 0.0083774, - -0.0032115, - 0.0067149, - -0.0066833, - 0.045097, - -0.056806, - -0.010672, - 0.047505, - 0.087812, - 0.014617, - 0.013819, - -0.020451, - 0.030651, - -0.0063467, - -0.010019, - -0.029092, - -0.051327, - 0.029351, - -0.067138, - -0.0045731, - -0.010632, - 0.024605, - 0.0088449, - -0.071883, - 0.083408, - 0.028731, - 0.015582, - 0.049914, - -0.020698, - -0.03976, - -0.041813, - -0.04548, - 0.043999, - 0.028373, - -0.021601, - 0.027432, - 0.027316, - 0.040791, - 0.0033928, - -0.0043713, - -0.057576, - 0.010921, - 0.085909, - 0.065234, - -0.029164, - -0.028844, - -0.039655, - -0.00047682, - -0.0024734, - 0.0037099, - -0.0047333, - -0.033953, - 0.051532, - 0.040664, - 0.029322, - -0.0071698, - 0.034596, - -0.024188, - 0.023079, - -0.016992, - -0.037541, - 0.034691, - 0.023875, - 0.052894, - 0.056514, - -0.0027985, - -0.063263, - -0.001562, - 0.032911, - 0.0073253, - 0.044919, - 0.020466, - -0.010756, - 0.041624, - -0.015256, - -0.045163, - 0.011264, - -0.027048, - 0.012324, - -0.034375, - 0.040062, - -0.0161, - 0.0031803, - 0.034201, - 0.03319, - -0.017833, - 0.076148, - -0.0019081, - 0.067778, - -0.033885, - 0.083496, - -0.060231, - -0.031936, - -0.0060944, - 0.006395, - -0.012562, - 0.012994, - -0.025907, - -0.030002, - -0.037689, - 0.08592, - -0.0052114, - 0.038159, - -0.04998, - 0.044208, - 0.022831, - 0.0033261, - 0.005477, - 0.040385, - 0.038953, - 0.031712, - -0.018745, - -0.0041225, - -0.12075, - -0.0026986, - -0.0082771, - 0.077702, - -0.034452, - 0.025869, - -0.031782, - 0.038785, - -0.023091, - 0.01603, - 0.085969, - 0.011626, - 0.040749, - -0.060678, - -0.051518, - 0.057302, - 0.0063499, - -0.0083527, - -0.019056, - -0.051424, - -0.009082, - -0.019721, - -0.020472, - 0.060493, - -0.042387, - -0.081032, - 0.020345, - 0.046384, - 0.020839, - -0.0026798, - -0.006804, - -0.033291, - -0.027425, - 0.034202, - -0.0018707, - -0.015124, - 0.044327, - 0.019841, - -0.076216, - -0.019952, - 0.047836, - -0.041484, - 0.078545, - -0.027923, - -0.048627, - 0.02201, - -0.041393, - 0.051502, - 0.027278, - 0.035611, - 0.033843, - 0.047694, - 0.0022068, - -0.0089881, - 0.02403, - 0.0096147, - -0.032597, - 0.043257, - 0.010758, - 0.0056887, - 0.017652, - 0.071682, - 0.0011158, - 0.073348, - 0.039509, - -0.018159, - 0.032684, - -0.016924, - 0.01681, - 0.013798, - -0.02591, - 0.023864, - -0.083404, - -0.0075681, - 0.0076773, - -0.031758, - -0.00085844, - 0.0080261, - -0.06868, - 0.039415, - 0.053935, - 0.013867, - -0.015496, - 0.0049406, - 0.015834, - -0.036202, - -0.037979, - 0.0083792, - -0.010426, - 0.0039924, - -0.021982, - 0.032341, - -0.02088, - -0.010358, - 0.045791, - 0.037694, - -0.015529, - 0.0069867, - 0.0099616, - -0.042044 - ], - "wi-fi": [ - -0.10305, - -0.0058381, - 0.011098, - -0.020169, - -0.038127, - -0.010325, - 0.087139, - -0.029239, - 0.083848, - 0.065698, - -0.038707, - -0.022249, - -0.11739, - -0.10116, - 0.0074103, - -0.0082205, - 0.071161, - -0.0057097, - 0.025839, - -0.15123, - 0.026574, - 0.039431, - 0.063145, - 0.025979, - 0.041815, - -0.036702, - 0.13268, - -0.085148, - 0.055453, - -0.014867, - 0.019762, - 0.029313, - -0.09432, - -0.035226, - 0.14549, - -0.031456, - 0.052652, - 0.077215, - 0.001803, - -0.11171, - -0.024963, - -0.15274, - -0.019405, - 0.080613, - 0.083317, - -0.086354, - -0.025284, - -0.039584, - -0.049761, - 0.097363, - 0.037141, - 0.012712, - 0.06321, - -0.093983, - -0.024707, - 0.0991, - -0.003761, - -0.028132, - -0.0012504, - 0.021416, - 0.0085584, - -0.053905, - 0.087868, - 0.06884, - 0.0038762, - 0.032198, - -0.0085223, - -0.06793, - -0.20773, - 0.06011, - 0.10548, - 0.057869, - 0.049896, - 0.028564, - -0.11463, - -0.069144, - 0.078774, - -0.061577, - -0.026179, - 0.0069683, - 0.0063025, - -0.053213, - -0.0023151, - 0.12124, - -0.0018717, - 0.094062, - -0.089626, - -0.03729, - -0.074818, - 0.039716, - 0.009854, - -0.013685, - -0.044123, - 0.01225, - 0.039107, - 0.083563, - 0.092151, - 0.03953, - -0.12158, - 0.014601, - 0.064185, - 0.14776, - 0.0344, - -0.12028, - -0.0078182, - -0.13046, - -0.0070941, - -0.0091654, - 0.063048, - -0.033867, - -0.014613, - 0.030656, - 0.11951, - 0.080571, - 0.099686, - -0.00095165, - -0.094791, - 0.056114, - -0.1005, - 0.088964, - 0.072384, - 0.082958, - -0.0077127, - 0.019761, - 0.04592, - 0.067421, - 0.0013855, - 0.0012396, - -0.016698, - 0.025691, - 0.049953, - -0.088994, - -0.10609, - -0.075441, - 0.04408, - -0.035271, - 0.075665, - -0.020094, - -0.10072, - -0.059567, - 0.11353, - 0.047884, - 0.082488, - -0.075936, - -0.060436, - -0.022167, - 0.014859, - -0.01131, - -0.018139, - 0.034354, - 0.022655, - 0.11082, - 0.058105, - -0.026051, - 0.043602, - 0.010119, - 0.041798, - 0.054074, - -0.019605, - 0.046473, - 0.11024, - -0.12717, - -0.090359, - -0.034551, - -0.032629, - -0.11347, - 0.098762, - 0.11343, - 0.13508, - 0.050609, - -0.063981, - 0.20495, - 0.010824, - -0.019611, - 0.033323, - 0.12057, - -0.029274, - 0.087593, - -0.075227, - -0.041036, - 0.045511, - 0.028067, - 0.02665, - -0.04549, - -0.033312, - -0.019046, - -0.014209, - 0.2068, - -0.053508, - 0.065463, - 0.068666, - 0.036697, - 0.0857, - 0.0024097, - 0.023349, - -0.015396, - -0.0051723, - 0.027328, - -0.014289, - 0.0067265, - -0.13932, - 0.095832, - -0.068519, - 0.054691, - 0.0078471, - 0.081454, - -0.0044267, - -0.049824, - -0.23211, - -0.034283, - 0.10483, - -0.012977, - 0.079707, - -0.011788, - 0.008236, - 0.0079337, - -0.034863, - 0.037671, - 0.018021, - -0.053656, - 0.16526, - 0.059699, - 0.066442, - 0.024444, - 0.069795, - -0.023794, - -0.030477, - 0.032457, - -0.029749, - -0.0055073, - -0.096957, - -0.0618, - -0.10465, - -0.05685, - 0.080505, - 0.063909, - 0.067648, - 0.095157, - 0.060377, - -0.02953, - 0.034719, - -0.10292, - 0.24211, - -0.083503, - -0.05033, - 0.05112, - 0.12335, - -0.0047004, - -0.062693, - -0.048185, - 0.0014606, - -0.058612, - -0.22549, - -0.0066702, - 0.013891, - 0.0025895, - -0.020034, - -0.07183, - -0.0564, - 0.078946, - 0.0070589, - 0.031943, - -0.021988, - -0.011777, - -0.036827, - 0.0242, - 0.013384, - 0.015494, - 0.035551, - 0.14577, - -0.1102, - 0.050211, - -0.14981, - 0.069702, - -0.09907, - -0.022628, - 0.10213, - 0.10195, - -0.010195, - 0.08029, - 0.14688, - -0.11801, - -0.018769, - 0.038014, - -0.082114, - -0.12752, - -0.15676, - 0.042407, - 0.13183, - 0.068103, - 0.067573, - -0.010807, - -0.15655, - -0.033791, - 0.048083, - 0.047853, - -0.0364, - 0.051399, - 0.054775, - 0.033057 - ], - "sportspeople": [ - 0.032212, - -0.064427, - 0.062092, - -0.012849, - -0.071852, - -0.00038418, - 0.023547, - -0.081517, - 0.04537, - -0.015796, - -0.0076474, - -0.014956, - 0.015414, - -0.066649, - 0.096066, - 0.047369, - 0.043158, - 0.019822, - 0.026282, - -0.027693, - 0.037362, - -0.10648, - 0.038576, - 0.070366, - 0.023213, - -0.041977, - 0.020624, - -0.015828, - 0.039867, - -0.030694, - 0.039239, - 0.018032, - -0.0028505, - 0.013785, - 0.02163, - 0.027319, - 0.0051839, - -0.061485, - -0.017758, - -0.021829, - 0.021164, - -0.055448, - -0.031237, - 0.015077, - 0.075105, - 0.026848, - 0.015663, - -0.0031104, - 0.017645, - -0.014449, - -0.046611, - -0.042555, - 0.038239, - 0.021901, - -0.036561, - 0.027089, - 0.037444, - 0.055481, - -0.00051614, - -0.11385, - 0.010845, - -0.0534, - 0.065716, - -0.0024903, - 0.06924, - -0.077994, - 0.027758, - -0.04816, - -0.0000067874, - -0.027928, - -0.0071418, - -0.0083936, - 0.12297, - 0.032034, - -0.0095618, - 0.032284, - 0.043584, - -0.023388, - -0.046442, - -0.0056754, - 0.016603, - 0.068543, - 0.041978, - 0.11136, - 0.011676, - -0.086084, - -0.025998, - -0.033129, - -0.0043134, - -0.028955, - -0.036013, - 0.0299, - -0.078317, - 0.0063691, - 0.013355, - 0.054794, - -0.070125, - -0.011859, - 0.036081, - 0.0015452, - 0.022945, - -0.030917, - -0.006398, - 0.0046122, - 0.005323, - -0.064553, - 0.005492, - 0.071615, - 0.01051, - 0.04122, - -0.016878, - 0.072758, - 0.039572, - -0.027186, - 0.059952, - -0.0275, - -0.027072, - 0.018827, - -0.010384, - -0.0085326, - 0.069981, - -0.0070213, - -0.046068, - -0.06934, - 0.098669, - -0.019803, - -0.019604, - -0.043567, - -0.043273, - 0.042706, - -0.034484, - 0.10819, - 0.026385, - -0.017054, - -0.037835, - 0.070584, - -0.017457, - 0.066012, - -0.022628, - 0.022249, - 0.019578, - -0.05695, - 0.041404, - 0.027066, - -0.024568, - -0.031977, - -0.057802, - -0.013623, - 0.014791, - -0.019615, - 0.078869, - 0.052479, - -0.013045, - 0.015438, - -0.026488, - 0.0039229, - 0.012102, - 0.032913, - 0.017999, - -0.014185, - -0.019079, - 0.064852, - 0.032224, - 0.073887, - -0.01764, - 0.041423, - 0.010653, - 0.057756, - -0.065789, - -0.091251, - 0.024359, - 0.0031495, - 0.045639, - 0.076378, - 0.046129, - 0.063867, - -0.040579, - 0.026839, - -0.019632, - -0.0039729, - 0.040644, - -0.073237, - 0.013472, - -0.02898, - 0.0073457, - -0.067075, - -0.020622, - 0.098332, - 0.0050593, - 0.033859, - -0.066502, - 0.063159, - -0.082054, - -0.034117, - -0.0014866, - -0.022404, - -0.031234, - -0.049731, - 0.024061, - -0.014882, - -0.12258, - 0.031843, - -0.00375, - -0.022944, - -0.013157, - 0.026919, - -0.015975, - 0.058808, - -0.0006284, - -0.030388, - 0.05663, - -0.032068, - 0.070838, - 0.040204, - -0.057794, - 0.036411, - -0.028442, - 0.0049711, - -0.014024, - -0.012462, - -0.033261, - -0.00091808, - -0.041834, - 0.099914, - 0.0053872, - 0.058313, - 0.040143, - 0.083747, - -0.01794, - -0.016584, - -0.032119, - 0.034374, - -0.066301, - 0.021649, - 0.038317, - 0.01982, - -0.030992, - -0.0022754, - -0.029481, - -0.016011, - 0.00086819, - -0.023363, - 0.0279, - -0.017497, - 0.033836, - -0.011343, - -0.012285, - -0.045337, - -0.011364, - -0.061429, - 0.011263, - 0.033262, - 0.040947, - -0.044475, - 0.0017686, - 0.006108, - -0.020331, - 0.0023943, - 0.096002, - 0.070267, - -0.057531, - -0.016993, - 0.059159, - 0.0083287, - 0.039764, - 0.0094656, - -0.073003, - 0.0099728, - 0.082456, - -0.056256, - -0.0063885, - 0.079043, - -0.08197, - -0.022362, - 0.0034669, - -0.0091472, - 0.043556, - -0.037641, - 0.029539, - -0.0056974, - 0.010372, - 0.040161, - -0.076388, - 0.033459, - -0.022105, - 0.019129, - 0.0184, - -0.05825, - 0.024006, - 0.00078971, - 0.063943, - -0.039441, - -0.038025, - -0.0028109, - 0.0071482, - 0.013126, - 0.0062467, - 0.031394, - 0.03638, - -0.041389 - ], - "care": [ - -0.0027634, - -0.17562, - -0.059314, - -0.012442, - -0.018901, - 0.035092, - -0.025355, - -0.11467, - 0.019873, - -0.058471, - -0.037929, - 0.016069, - 0.037727, - -0.04008, - -0.074088, - -0.022359, - 0.142, - 0.045793, - 0.12075, - 0.017102, - -0.059874, - 0.027743, - 0.1158, - 0.044523, - -0.024114, - 0.012889, - -0.035448, - 0.0075674, - -0.081757, - 0.0057707, - 0.0052366, - -0.0011502, - -0.046111, - -0.047315, - 0.042992, - -0.031245, - -0.045696, - 0.01648, - 0.086666, - 0.037892, - -0.023639, - -0.16859, - 0.02505, - -0.010771, - -0.032946, - -0.14571, - -0.053867, - 0.0063794, - -0.027545, - -0.025007, - -0.021425, - 0.040531, - -0.012273, - 0.030769, - -0.12519, - -0.067911, - -0.11682, - 0.02478, - -0.065794, - -0.078551, - -0.027975, - -0.10854, - 0.15897, - -0.0039327, - -0.057591, - 0.041414, - -0.1093, - -0.12969, - 0.0043573, - -0.068372, - -0.030115, - 0.037369, - 0.11034, - -0.094473, - -0.064253, - 0.0088519, - -0.080585, - -0.046877, - -0.0567, - -0.10557, - -0.12372, - 0.0061119, - 0.06382, - 0.10201, - -0.010866, - 0.0030684, - 0.057288, - -0.028311, - -0.020871, - -0.086062, - 0.053991, - 0.044001, - -0.16586, - -0.021624, - -0.007669, - 0.0077381, - 0.089584, - 0.060145, - 0.010574, - 0.030919, - 0.032174, - -0.017905, - -0.011459, - 0.048174, - 0.058219, - -0.13602, - 0.077138, - -0.0085786, - 0.032468, - -0.0069628, - 0.010639, - 0.1004, - 0.074328, - 0.053476, - -0.004315, - 0.034768, - -0.03213, - -0.041456, - -0.084462, - -0.071457, - -0.09588, - 0.096263, - 0.067488, - -0.079962, - 0.10328, - 0.015817, - 0.019382, - -0.10664, - 0.032866, - 0.1779, - -0.0051878, - 0.0062384, - 0.025643, - -0.05465, - -0.04405, - -0.0042106, - -0.077019, - 0.05566, - 0.022136, - -0.046148, - 0.026601, - -0.048176, - 0.015623, - 0.052442, - -0.067219, - 0.030487, - 0.0097766, - 0.020154, - -0.018472, - -0.022543, - 0.097596, - 0.1365, - -0.016377, - -0.21944, - 0.02036, - 0.060893, - -0.015086, - 0.050652, - 0.0163, - -0.15879, - 0.064529, - 0.018373, - -0.10456, - -0.0013007, - -0.062971, - 0.042377, - 0.059069, - -0.046377, - -0.094849, - -0.067105, - 0.088018, - 0.013866, - -0.017745, - 0.01204, - 0.03389, - 0.087153, - -0.028136, - -0.0067588, - -0.034093, - -0.0068881, - -0.027679, - -0.0027854, - -0.060264, - 0.080956, - -0.042361, - -0.17535, - 0.096928, - 0.11879, - 0.012434, - -0.065243, - 0.032196, - 0.061882, - -0.019771, - -0.093621, - -0.022036, - -0.07973, - 0.038215, - -0.022513, - -0.011297, - -0.081964, - -0.20563, - 0.10849, - 0.070855, - -0.024272, - 0.0086158, - -0.066397, - -0.016107, - -0.096988, - -0.071427, - -0.024828, - -0.0064545, - -0.021756, - -0.033749, - 0.12898, - -0.0086911, - -0.031467, - -0.0012343, - -0.041564, - -0.11642, - 0.0013471, - 0.033727, - 0.023656, - -0.02057, - 0.14505, - 0.11079, - 0.0097506, - -0.035649, - 0.22144, - -0.024526, - 0.0069938, - -0.032464, - -0.11097, - -0.12104, - -0.049282, - 0.016982, - 0.10656, - -0.080671, - 0.071254, - 0.014932, - -0.048008, - 0.15109, - 0.054454, - -0.0029091, - -0.02464, - -0.080286, - 0.028269, - 0.023831, - 0.0069545, - -0.070121, - -0.00059561, - 0.059512, - 0.037932, - -0.039665, - -0.0020491, - 0.050573, - -0.063417, - -0.027067, - 0.0068455, - -0.025349, - 0.0095807, - -0.068924, - -0.073688, - -0.061819, - -0.045545, - 0.088878, - 0.055354, - 0.023693, - 0.11285, - 0.043871, - 0.071733, - -0.098594, - 0.12481, - -0.1995, - -0.073623, - -0.0262, - -0.056491, - 0.0070134, - 0.04445, - -0.021145, - 0.024713, - 0.060043, - -0.037406, - 0.040696, - -0.036734, - 0.054899, - 0.076177, - 0.0027837, - 0.034319, - 0.00073745, - 0.011812, - -0.019395, - 0.029801, - -0.053132, - 0.00042005, - 0.013825, - -0.072883, - 0.083607, - 0.090047, - 0.0065006, - -0.024185 - ], - "training": [ - 0.0016704, - -0.059374, - -0.005345, - -0.041884, - -0.0047049, - -0.036028, - -0.0035703, - -0.076874, - 0.028484, - -0.015619, - 0.011085, - -0.02632, - -0.033694, - -0.023478, - -0.015042, - -0.0049933, - 0.048451, - 0.05196, - 0.036069, - 0.043096, - -0.036266, - -0.015573, - 0.013052, - 0.020268, - -0.01573, - 0.020463, - -0.0050535, - -0.0075416, - 0.0287, - 0.0023156, - -0.01022, - 0.0089586, - 0.026482, - -0.10775, - 0.047548, - 0.057309, - 0.025797, - -0.024648, - 0.01593, - -0.026224, - -0.0046416, - -0.082772, - 0.01176, - -0.0091938, - 0.027687, - -0.007212, - 0.066677, - -0.019451, - -0.03447, - 0.0087515, - -0.038394, - 0.038385, - -0.0020546, - 0.013179, - -0.053687, - 0.012708, - -0.029955, - -0.035902, - -0.033713, - 0.0052931, - 0.01263, - -0.024031, - 0.096135, - 0.07473, - -0.0068181, - -0.066629, - -0.031638, - -0.056037, - 0.029279, - -0.040816, - -0.013892, - -0.021074, - 0.046305, - 0.047939, - 0.0086174, - -0.0036466, - 0.0047451, - -0.0067039, - -0.038145, - -0.021108, - -0.025286, - -0.014525, - 0.0019093, - 0.05028, - -0.066019, - -0.016064, - 0.0071436, - -0.0071603, - 0.0051336, - 0.0064555, - 0.006044, - 0.013059, - -0.074213, - 0.001208, - 0.038894, - 0.050474, - 0.03008, - -0.023636, - 0.0073578, - -0.010846, - 0.04275, - -0.036457, - 0.049733, - -0.0062208, - 0.033828, - -0.057427, - 0.041342, - -0.028192, - -0.052811, - 0.024739, - -0.027907, - 0.055082, - 0.055202, - 0.029971, - 0.029927, - -0.028518, - -0.054198, - 0.0093236, - -0.022025, - -0.012239, - 0.047401, - 0.0090956, - -0.017423, - 0.021044, - 0.055299, - 0.028624, - -0.052152, - -0.063294, - 0.027079, - 0.10273, - 0.022618, - -0.0064737, - -0.010923, - -0.0036912, - -0.016815, - -0.0052959, - 0.0018255, - 0.022866, - 0.056903, - -0.013271, - -0.048333, - -0.021807, - -0.073065, - 0.019018, - -0.049397, - 0.017391, - -0.073231, - 0.016771, - 0.00078697, - 0.017531, - 0.047468, - 0.046525, - -0.046513, - -0.10555, - 0.012745, - 0.043285, - -0.050516, - 0.040909, - 0.018154, - -0.019901, - 0.031905, - -0.013594, - -0.020084, - 0.042309, - -0.0043295, - -0.0058431, - -0.017485, - -0.013891, - -0.028676, - 0.012599, - 0.1191, - 0.027126, - -0.013679, - 0.0039687, - 0.044358, - 0.031115, - -0.0055879, - 0.019437, - -0.04979, - -0.0011703, - -0.019728, - -0.021926, - -0.028708, - 0.013652, - 0.018832, - -0.040718, - 0.0049089, - 0.067817, - -0.074296, - 0.06651, - -0.013003, - 0.06257, - 0.022399, - -0.085646, - 0.018803, - 0.047677, - 0.03311, - 0.060796, - 0.056304, - -0.033792, - -0.1336, - 0.048459, - -0.0020847, - 0.10614, - -0.018765, - -0.04831, - -0.039621, - 0.055293, - -0.0065862, - -0.011196, - 0.10752, - 0.0085086, - -0.00051443, - -0.035413, - -0.0172, - 0.017707, - 0.020529, - -0.027501, - -0.019926, - -0.022316, - -0.029623, - -0.012809, - -0.0039127, - 0.088182, - 0.041312, - -0.04594, - -0.044999, - 0.067213, - -0.0025818, - -0.030796, - 0.016588, - -0.048902, - -0.059511, - -0.020888, - 0.0032402, - 0.015051, - -0.0035818, - 0.040195, - -0.044055, - -0.0033861, - 0.05587, - 0.051562, - 0.085943, - -0.054858, - -0.09028, - 0.043206, - 0.0056278, - -0.0037476, - 0.014036, - 0.037267, - 0.054317, - 0.060007, - 0.0062136, - -0.024585, - -0.00094661, - 0.010345, - 0.050468, - 0.04145, - 0.037539, - 0.063798, - 0.0034729, - -0.032779, - 0.025068, - 0.052357, - 0.016006, - -0.014882, - -0.0082171, - 0.021082, - -0.053114, - -0.0062274, - 0.026006, - 0.05561, - -0.089693, - -0.060307, - -0.023246, - -0.0062807, - -0.013521, - 0.070409, - 0.022612, - -0.0054251, - 0.055813, - 0.0098327, - 0.020209, - 0.017741, - 0.034095, - 0.022972, - 0.0098024, - 0.050633, - -0.0061099, - 0.0066176, - -0.0085007, - -0.023427, - -0.015979, - -0.0098184, - -0.012463, - 0.030993, - -0.0369, - 0.022044, - -0.034993, - -0.03757 - ], - "visit": [ - -0.025663, - 0.019483, - 0.064186, - -0.0397, - 0.0031128, - -0.022492, - 0.012393, - -0.11604, - -0.061186, - -0.024288, - -0.04517, - -0.10397, - 0.03353, - 0.0083476, - 0.032808, - -0.019705, - 0.098188, - 0.0184, - 0.025065, - -0.040475, - -0.066831, - 0.049386, - -0.036049, - 0.10691, - 0.052763, - -0.01622, - -0.024051, - 0.04908, - -0.1693, - 0.014223, - -0.089945, - 0.043639, - -0.027774, - -0.017836, - -0.036481, - -0.056778, - -0.030305, - 0.043462, - 0.023089, - -0.066965, - 0.031352, - -0.053209, - -0.063742, - -0.004687, - 0.057957, - 0.1068, - 0.02569, - -0.083022, - 0.015014, - 0.041051, - 0.082976, - 0.015994, - -0.073776, - -0.056548, - -0.20153, - -0.063134, - -0.011938, - -0.0084801, - -0.054356, - -0.011925, - -0.011597, - 0.061117, - 0.16137, - 0.053902, - -0.015156, - -0.0045289, - -0.040668, - -0.00060498, - -0.080379, - 0.019274, - 0.017314, - 0.017567, - 0.051983, - -0.0049548, - 0.021231, - -0.0089493, - 0.051483, - 0.07031, - 0.0096029, - 0.036343, - -0.059126, - 0.024275, - 0.057703, - 0.14213, - -0.1001, - -0.086372, - 0.04141, - -0.022546, - 0.0014237, - -0.05596, - -0.045845, - 0.037813, - -0.14897, - -0.061571, - -0.011519, - -0.012564, - 0.078772, - 0.072897, - 0.063205, - -0.044584, - 0.056536, - 0.037537, - -0.014469, - -0.083745, - 0.067292, - -0.1144, - 0.051169, - -0.011765, - -0.0035242, - 0.023774, - 0.01928, - -0.02483, - 0.11897, - 0.11018, - -0.011564, - 0.032554, - 0.012412, - -0.040783, - -0.0089522, - 0.033516, - 0.0013939, - 0.080823, - -0.019267, - 0.10354, - -0.0048226, - 0.0198, - -0.041207, - -0.099461, - 0.011019, - 0.098614, - 0.0079189, - 0.056805, - -0.011645, - -0.032076, - -0.05328, - 0.013091, - -0.027898, - 0.068565, - 0.037762, - 0.081767, - 0.073198, - -0.021637, - 0.026048, - 0.032281, - -0.071351, - 0.14041, - -0.0044802, - 0.06171, - -0.0082464, - 0.0025592, - -0.066907, - 0.074109, - -0.044457, - -0.13019, - 0.0071036, - -0.021584, - 0.002585, - 0.098989, - 0.023466, - -0.0047987, - 0.079124, - 0.018406, - 0.067563, - 0.029341, - -0.00416, - 0.037676, - 0.06938, - 0.0086466, - 0.0235, - 0.051397, - 0.020051, - -0.018357, - -0.064151, - 0.026829, - 0.036075, - 0.059358, - -0.022658, - -0.022579, - -0.0224, - 0.089235, - 0.015297, - 0.000049826, - 0.013735, - 0.033428, - 0.018808, - -0.058524, - -0.0070639, - 0.15819, - 0.046649, - -0.079417, - 0.063438, - 0.083897, - -0.12115, - 0.012754, - -0.047311, - 0.058221, - 0.037577, - 0.023963, - -0.0097966, - -0.024705, - -0.1579, - 0.13023, - -0.023574, - -0.045452, - 0.000016505, - -0.050305, - -0.1439, - 0.024536, - -0.0097538, - -0.015812, - 0.10576, - -0.017781, - 0.031132, - 0.013158, - -0.049122, - -0.028272, - 0.010069, - -0.0025341, - 0.040288, - -0.1221, - -0.043013, - 0.013444, - -0.025029, - 0.11281, - 0.04268, - 0.020847, - -0.00019146, - 0.14241, - -0.07791, - 0.014549, - -0.044874, - -0.1128, - 0.080805, - 0.001251, - 0.062029, - 0.050117, - -0.016417, - 0.009457, - -0.0098774, - 0.015352, - 0.19554, - -0.055295, - -0.0065388, - -0.1966, - -0.060499, - 0.0022963, - 0.021751, - -0.085461, - -0.043031, - 0.042997, - 0.064679, - -0.044566, - 0.0024122, - -0.013521, - 0.0033972, - -0.10349, - -0.07287, - 0.056011, - -0.0039125, - 0.015078, - -0.081289, - -0.012381, - -0.02751, - -0.077558, - 0.10775, - -0.029984, - 0.05608, - 0.04039, - 0.021801, - -0.052215, - -0.0017891, - 0.10657, - -0.15109, - -0.051264, - -0.079523, - 0.0014318, - 0.071046, - -0.078666, - -0.04563, - -0.048989, - -0.017184, - -0.026638, - 0.0031741, - 0.0031313, - -0.0039896, - -0.015777, - -0.024776, - -0.12977, - -0.085317, - -0.04561, - -0.021131, - 0.11017, - 0.033957, - 0.089312, - -0.018172, - -0.042002, - 0.015345, - 0.026956, - -0.080795, - -0.011385 - ], - "renaissance": [ - 0.0026038, - -0.093014, - 0.03509, - -0.0065589, - -0.048758, - -0.0075077, - -0.0011489, - -0.066668, - 0.076499, - -0.0021216, - 0.013962, - -0.024313, - 0.010644, - 0.0066813, - 0.000039038, - 0.0037168, - 0.11811, - 0.013483, - 0.059466, - -0.025585, - -0.013987, - 0.014776, - -0.056693, - 0.053167, - 0.010604, - -0.024756, - -0.00066814, - 0.0040714, - -0.023254, - 0.00014225, - -0.013437, - -0.064672, - 0.012634, - -0.066539, - 0.030305, - 0.021594, - 0.025383, - 0.050066, - 0.063119, - 0.026416, - -0.0077333, - -0.052572, - -0.012913, - 0.0152, - 0.0057935, - 0.026604, - -0.019837, - 0.00044026, - -0.02704, - 0.0098989, - 0.012987, - -0.031947, - -0.049321, - 0.032827, - -0.034647, - -0.020819, - 0.055747, - -0.020506, - -0.029112, - 0.04559, - 0.059777, - -0.015612, - 0.034624, - -0.034305, - 0.073324, - 0.0088115, - -0.025824, - -0.0096034, - 0.041853, - -0.080489, - 0.001208, - 0.0054792, - -0.016188, - 0.0035221, - 0.03481, - 0.016781, - -0.061508, - -0.038883, - 0.0057082, - 0.052582, - -0.0077422, - 0.014108, - 0.017829, - 0.056495, - -0.045176, - -0.0057766, - -0.0048065, - 0.0038609, - 0.027036, - 0.014227, - -0.028036, - 0.04414, - -0.051753, - 0.0209, - 0.014428, - 0.046473, - 0.008906, - -0.016992, - -0.02096, - 0.023016, - -0.0035449, - 0.019534, - 0.021537, - -0.018018, - -0.01709, - -0.069641, - -0.014584, - 0.029565, - -0.033737, - 0.039596, - -0.022997, - 0.023612, - 0.05561, - 0.038401, - -0.021201, - 0.0039408, - 0.0012008, - -0.012895, - -0.031892, - 0.053198, - 0.017293, - -0.034059, - -0.03236, - 0.035901, - 0.09467, - 0.022847, - -0.0099881, - -0.070491, - 0.030266, - 0.084301, - 0.0037956, - -0.0001262, - 0.0012899, - 0.047902, - -0.0075158, - -0.023595, - 0.020489, - 0.049068, - -0.0077706, - -0.06929, - 0.028437, - 0.028553, - -0.020029, - 0.086214, - -0.01017, - -0.043761, - 0.029403, - 0.0036636, - -0.0079495, - 0.013459, - 0.061742, - 0.073391, - 0.022508, - -0.011531, - 0.014998, - 0.013269, - 0.048062, - 0.035174, - -0.0092075, - -0.022944, - 0.032495, - 0.0054139, - -0.097269, - -0.048638, - -0.025096, - 0.023835, - -0.042318, - -0.013532, - 0.037568, - 0.0080884, - 0.054247, - 0.016694, - 0.040416, - -0.0024618, - 0.049253, - 0.041121, - -0.017698, - -0.014377, - -0.028627, - 0.0502, - -0.032743, - 0.025585, - 0.0028665, - -0.043046, - -0.0097084, - 0.0066467, - 0.0088851, - 0.070629, - -0.013049, - 0.0037956, - 0.039231, - 0.022972, - -0.0096382, - 0.022352, - -0.017101, - -0.0091994, - -0.026089, - -0.0033935, - 0.0016721, - -0.057374, - -0.13188, - -0.0066323, - -0.018505, - 0.0035549, - -0.018851, - 0.025572, - 0.074323, - 0.027768, - -0.011409, - 0.034017, - 0.10705, - -0.021031, - 0.024124, - 0.014794, - 0.066114, - 0.022803, - 0.017445, - -0.0089819, - 0.047137, - -0.033242, - 0.019654, - 0.013139, - 0.064882, - 0.084601, - -0.042554, - -0.029341, - -0.0037393, - 0.071242, - -0.0097504, - 0.017979, - -0.047426, - -0.034129, - -0.019649, - -0.0040968, - 0.043507, - -0.010883, - 0.016015, - -0.032947, - -0.0032022, - 0.010523, - 0.080929, - 0.031162, - -0.049156, - -0.037315, - -0.054896, - -0.0039017, - -0.086492, - -0.015813, - -0.00034449, - -0.012849, - 0.097849, - 0.0050068, - -0.034737, - -0.01507, - -0.021677, - 0.06648, - -0.078748, - 0.028742, - 0.023354, - 0.037159, - 0.07006, - -0.027283, - 0.038012, - -0.022854, - -0.0081281, - 0.0084169, - 0.04794, - -0.0013391, - 0.047464, - 0.012927, - 0.029717, - 0.073108, - -0.086291, - -0.035431, - -0.015543, - -0.050054, - 0.010592, - 0.040378, - -0.012635, - -0.0041886, - 0.090327, - 0.017038, - -0.011836, - -0.016899, - -0.022995, - -0.054656, - 0.031124, - -0.0066701, - -0.019516, - 0.0658, - -0.0025787, - -0.00095674, - -0.042472, - -0.0016852, - 0.0012851, - 0.025255, - -0.0028252, - 0.054107, - 0.025244, - -0.023749 - ], - "professions": [ - 0.01594, - -0.061974, - 0.058742, - -0.046953, - -0.020476, - -0.045058, - 0.035456, - -0.056339, - 0.033634, - -0.014608, - -0.026225, - -0.051909, - -0.057494, - -0.01287, - 0.0060667, - 0.071239, - 0.055593, - 0.030101, - 0.022864, - -0.011548, - -0.012637, - -0.002617, - 0.041356, - 0.057685, - -0.040113, - -0.014094, - -0.021285, - 0.034562, - 0.025666, - -0.0020076, - -0.028817, - -0.011852, - -0.013103, - -0.028998, - 0.037026, - 0.059318, - 0.0085834, - 0.01038, - -0.033245, - 0.0036576, - 0.000827, - -0.061001, - 0.020955, - -0.041395, - 0.015493, - -0.040155, - -0.018935, - -0.016786, - -0.0025071, - -0.020716, - -0.047317, - -0.01508, - 0.030874, - -0.025915, - -0.064989, - 0.022959, - -0.017922, - 0.076886, - -0.0085472, - -0.07732, - 0.015039, - 0.0049973, - 0.12322, - 0.005774, - 0.039076, - 0.0091275, - -0.059346, - -0.0017762, - 0.028532, - -0.033579, - 0.044813, - -0.014526, - 0.046511, - 0.0013533, - 0.025442, - -0.012617, - 0.0059728, - -0.0069081, - 0.0058436, - 0.0057683, - -0.00046992, - 0.02648, - -0.018961, - 0.061009, - -0.028813, - -0.033273, - 0.0057407, - 0.0037391, - -0.030263, - 0.000086907, - 0.067097, - 0.0052488, - -0.042408, - 0.012493, - -0.022806, - 0.040396, - 0.018586, - 0.0070375, - 0.008476, - 0.0083272, - -0.018344, - -0.017323, - 0.036961, - -0.030424, - 0.054869, - -0.013821, - 0.055957, - 0.025004, - 0.034627, - -0.0010257, - -0.00023684, - 0.041561, - 0.029353, - 0.025312, - -0.0014922, - -0.0071127, - -0.012506, - -0.02637, - -0.047957, - -0.005863, - 0.0083366, - -0.036571, - -0.016167, - -0.062207, - 0.072749, - 0.024132, - -0.037715, - -0.021796, - 0.0048875, - 0.090868, - -0.0040912, - 0.089763, - -0.019679, - -0.00045308, - -0.011492, - 0.044129, - -0.036361, - 0.013584, - -0.00070179, - -0.017639, - -0.010382, - -0.030069, - -0.053952, - 0.046404, - 0.029149, - -0.010013, - -0.039693, - -0.060244, - 0.029075, - 0.0089353, - 0.066716, - 0.058277, - -0.015633, - -0.045985, - 0.033598, - 0.015887, - -0.021162, - 0.019349, - -0.010427, - -0.011048, - 0.038408, - 0.035329, - 0.020986, - 0.04174, - -0.021637, - -0.025855, - -0.027676, - 0.01284, - -0.016519, - -0.047192, - 0.035743, - -0.019431, - 0.0027865, - 0.035578, - 0.022014, - 0.044981, - 0.0031836, - 0.084718, - -0.010913, - -0.007774, - -0.013426, - -0.010216, - -0.0045891, - 0.018868, - -0.01725, - -0.030441, - 0.029551, - 0.081831, - -0.021647, - 0.032932, - -0.068683, - 0.079844, - -0.069216, - -0.017194, - 0.01409, - 0.035736, - -0.019231, - 0.010138, - -0.024683, - -0.02851, - -0.11982, - -0.0075548, - -0.0056544, - 0.0071761, - 0.027365, - 0.0012446, - 0.020933, - -0.012336, - 0.03545, - -0.0023322, - 0.062556, - 0.024307, - 0.020858, - 0.035784, - -0.014479, - 0.036901, - -0.0030584, - -0.024954, - -0.069459, - -0.031356, - -0.019781, - -0.042373, - -0.071746, - 0.073568, - 0.026495, - -0.017357, - 0.043813, - 0.055338, - 0.025361, - 0.012559, - 0.017066, - 0.022083, - -0.06771, - 0.0024434, - 0.026111, - 0.015516, - -0.0072543, - -0.0059108, - -0.0062709, - 0.039401, - -0.0091016, - 0.010534, - -0.00065495, - 0.032876, - 0.034787, - -0.012917, - -0.058401, - -0.063151, - 0.030746, - 0.0014252, - 0.043365, - 0.022281, - 0.0091848, - -0.040281, - -0.03033, - 0.0030692, - -0.043393, - 0.046714, - 0.063567, - 0.017533, - -0.036983, - 0.0061025, - 0.0073614, - -0.01364, - -0.0013725, - 0.060848, - 0.050795, - 0.020828, - 0.00036995, - -0.030547, - -0.010455, - 0.045692, - -0.081959, - -0.015092, - 0.035462, - -0.0041255, - 0.0035517, - 0.033756, - 0.040479, - -0.013735, - 0.030707, - 0.043565, - -0.018679, - -0.030156, - -0.0072966, - 0.060844, - -0.04062, - -0.043769, - 0.0069909, - 0.022462, - 0.017413, - -0.00034568, - -0.020069, - -0.00094382, - -0.022706, - 0.019034, - -0.00025242, - 0.036461, - 0.015713, - -0.0076878 - ], - "computers": [ - -0.075567, - -0.0047696, - -0.030316, - -0.040189, - -0.0099178, - -0.010897, - -0.019306, - -0.08628, - 0.054214, - -0.010397, - -0.014904, - -0.038813, - -0.052989, - -0.012223, - -0.025409, - 0.0046765, - 0.085777, - 0.060513, - 0.039008, - -0.022998, - -0.017786, - 0.035359, - 0.026231, - 0.032463, - -0.004308, - -0.014536, - -0.02287, - -0.028337, - 0.081716, - 0.047865, - 0.0039478, - -0.03235, - -0.002899, - 0.011935, - 0.048521, - 0.02412, - 0.028991, - -0.013145, - 0.059471, - -0.048601, - -0.090199, - -0.071751, - -0.030411, - 0.036126, - 0.031925, - -0.066928, - 0.050502, - -0.056591, - 0.0014662, - -0.012257, - -0.034942, - 0.012413, - -0.00037615, - 0.060559, - -0.097223, - 0.073576, - 0.045763, - 0.015943, - -0.0097198, - -0.053569, - 0.019307, - -0.029339, - 0.098486, - 0.052111, - 0.028935, - -0.017136, - 0.0073302, - -0.028167, - -0.022982, - 0.042851, - 0.01063, - 0.0049549, - 0.061511, - 0.0014929, - -0.033653, - -0.025661, - 0.041153, - -0.043417, - 0.0089579, - -0.012476, - -0.012728, - -0.029038, - -0.049723, - 0.031812, - -0.0041918, - -0.024319, - -0.033814, - -0.03612, - 0.023721, - 0.017825, - 0.011613, - -0.013851, - -0.061664, - 0.04255, - 0.028929, - 0.069614, - 0.0059526, - -0.024331, - 0.0026449, - 0.036382, - 0.041976, - 0.0018466, - 0.029969, - -0.082268, - 0.043773, - -0.076982, - 0.0032639, - 0.028733, - 0.013565, - -0.065726, - -0.014236, - 0.075168, - 0.042014, - 0.03442, - -0.0016905, - 0.015238, - -0.041981, - -0.019214, - -0.062062, - 0.015771, - -0.025239, - 0.023885, - 0.018721, - -0.031581, - 0.053311, - 0.0025748, - -0.029647, - -0.051672, - -0.050361, - 0.069364, - -0.029505, - 0.066293, - 0.02921, - 0.0063479, - 0.071208, - -0.066092, - 0.028594, - -0.002626, - -0.014611, - 0.038884, - 0.051908, - 0.07755, - 0.020478, - 0.032803, - 0.0050656, - -0.014025, - -0.013564, - -0.048474, - -0.0024899, - -0.003033, - 0.052356, - 0.083712, - 0.022513, - -0.023776, - -0.0015626, - 0.0069374, - 0.0089271, - 0.028345, - 0.027751, - -0.024705, - 0.034523, - 0.00063682, - 0.0078884, - -0.03108, - 0.011884, - -0.0075109, - 0.008963, - -0.0055225, - 0.031838, - 0.046197, - 0.023139, - -0.030472, - 0.054199, - 0.042611, - 0.015863, - 0.031179, - -0.024681, - 0.10208, - -0.027292, - 0.061393, - 0.05811, - 0.0032013, - -0.096985, - -0.028457, - -0.029508, - -0.026913, - -0.048946, - 0.068258, - -0.023133, - -0.024205, - -0.02128, - 0.063741, - -0.065366, - 0.0048009, - 0.046993, - -0.018055, - -0.064918, - 0.028832, - -0.02797, - 0.019255, - -0.10904, - 0.055214, - -0.053936, - 0.0093626, - -0.010783, - 0.011148, - 0.0072542, - -0.052975, - -0.038502, - -0.038359, - 0.073444, - 0.011231, - 0.046471, - 0.027749, - -0.00902, - -0.01425, - -0.030618, - 0.0064326, - -0.036475, - 0.0075841, - 0.049954, - 0.023007, - 0.00020179, - 0.07625, - 0.029115, - -0.048684, - 0.042947, - 0.053452, - -0.00022741, - -0.025895, - -0.018989, - -0.0087637, - -0.091045, - -0.05503, - 0.0080576, - -0.028105, - 0.043075, - 0.030454, - -0.027047, - -0.043504, - -0.018361, - -0.043557, - 0.10822, - 0.001475, - 0.020954, - 0.049021, - -0.0081511, - -0.022749, - -0.018561, - -0.0063416, - 0.0032865, - 0.03511, - -0.016067, - 0.012356, - -0.023249, - 0.030684, - -0.018676, - -0.01852, - -0.042922, - -0.066074, - -0.0048078, - -0.0044935, - -0.027751, - -0.0077848, - 0.015661, - -0.0092176, - -0.015811, - 0.0074185, - 0.013793, - 0.025157, - -0.0089215, - 0.068376, - -0.079994, - -0.018241, - -0.03505, - -0.023532, - 0.017822, - 0.042742, - 0.02155, - -0.015265, - 0.020936, - 0.025591, - -0.015759, - -0.041883, - -0.014381, - -0.024337, - -0.047266, - -0.026994, - -0.027733, - 0.051779, - -0.081463, - 0.021988, - -0.068809, - -0.008111, - 0.027489, - 0.03429, - -0.024466, - -0.044407, - 0.08261, - 0.0036739 - ], - "secularism": [ - -0.0087225, - -0.0023504, - 0.09525, - -0.07418, - 0.00039625, - -0.011155, - 0.008623, - -0.088022, - 0.019631, - -0.0023927, - 0.027782, - -0.017141, - 0.021986, - 0.043804, - -0.017535, - 0.011954, - 0.086238, - 0.030554, - -0.0020188, - -0.0088814, - -0.0094142, - 0.0012541, - -0.0017055, - 0.031664, - -0.040855, - 0.018804, - 0.0090877, - 0.00069651, - 0.056218, - 0.042222, - 0.020931, - -0.060387, - 0.014582, - -0.033036, - -0.013908, - 0.035694, - -0.0049869, - 0.02552, - 0.017545, - 0.012783, - -0.016337, - -0.097433, - -0.043602, - 0.042968, - 0.016001, - -0.0050701, - -0.049343, - -0.018366, - 0.018745, - -0.017713, - -0.011356, - -0.016471, - 0.027988, - 0.010497, - -0.026097, - 0.01325, - 0.024265, - -0.021496, - -0.018331, - 0.027777, - 0.028184, - 0.004498, - 0.026239, - -0.0079734, - -0.02036, - 0.03682, - -0.014816, - -0.0017146, - 0.057541, - -0.062764, - 0.020244, - -0.033062, - -0.014227, - 0.013652, - -0.036787, - 0.030478, - -0.02228, - -0.014183, - 0.040501, - 0.10261, - 0.014547, - 0.026755, - -0.07475, - 0.092856, - 0.031652, - 0.049701, - -0.034192, - 0.0082972, - -0.08584, - 0.075698, - -0.030376, - -0.025364, - -0.05605, - 0.0030178, - 0.062917, - 0.018486, - -0.0051761, - -0.089838, - -0.047229, - -0.05694, - 0.013532, - 0.056551, - 0.019027, - -0.073992, - -0.037491, - -0.016974, - 0.070371, - 0.027342, - -0.065654, - 0.034583, - 0.013345, - 0.083749, - 0.027788, - -0.015798, - -0.02886, - 0.028459, - 0.13872, - 0.056273, - -0.034754, - 0.031144, - -0.01279, - -0.00554, - -0.018003, - -0.060663, - 0.036882, - -0.014288, - -0.038491, - -0.04939, - 0.023801, - 0.10318, - 0.0472, - -0.051153, - 0.03721, - 0.010795, - -0.01514, - 0.026131, - -0.0097555, - 0.049776, - -0.005954, - -0.015498, - 0.059445, - -0.034679, - 0.029809, - 0.050755, - -0.025466, - -0.011985, - 0.0034008, - 0.026552, - 0.0040429, - -0.024955, - 0.064745, - 0.022773, - 0.037105, - -0.055727, - 0.049002, - 0.029989, - -0.064464, - -0.022273, - 0.011572, - -0.019887, - 0.059453, - -0.028213, - -0.088018, - -0.060717, - 0.00096767, - -0.010665, - 0.0080229, - 0.091748, - 0.020641, - -0.013699, - -0.060333, - -0.034448, - -0.051591, - 0.018288, - -0.021261, - 0.067461, - -0.0080074, - 0.0056346, - 0.002935, - -0.04721, - -0.010888, - 0.022398, - 0.037258, - -0.021106, - 0.055811, - -0.023269, - 0.053093, - 0.099186, - -0.047314, - -0.1461, - 0.0051384, - 0.077472, - -0.059149, - 0.0069573, - 0.039257, - 0.02454, - 0.028632, - -0.011167, - -0.040327, - -0.038837, - -0.15223, - 0.0033011, - 0.046401, - -0.017788, - -0.0023991, - 0.013046, - 0.085639, - -0.009638, - 0.040474, - 0.027012, - 0.05655, - -0.015399, - 0.021184, - -0.040345, - 0.06778, - 0.085009, - -0.0086257, - -0.038005, - 0.00016616, - -0.063258, - -0.039942, - 0.040535, - -0.0085575, - 0.078628, - 0.0088908, - -0.07094, - 0.026713, - 0.05176, - 0.018417, - -0.046644, - 0.053042, - -0.035583, - -0.071339, - -0.062249, - 0.045646, - 0.014486, - 0.031174, - -0.012407, - 0.013588, - 0.0030269, - 0.030154, - -0.07164, - 0.0081828, - 0.04351, - -0.016297, - 0.0092324, - -0.010775, - -0.053449, - -0.041162, - -0.026278, - 0.072719, - -0.015565, - -0.083244, - -0.025173, - 0.047808, - 0.023506, - -0.0067832, - 0.028571, - -0.032039, - -0.022861, - 0.0090977, - 0.0063881, - 0.034694, - 0.023718, - 0.01407, - -0.027173, - 0.053351, - -0.0015685, - 0.081953, - 0.053767, - 0.011589, - 0.070638, - -0.085284, - -0.0090207, - -0.014958, - -0.038564, - 0.014864, - 0.032211, - -0.03429, - -0.045061, - 0.074018, - -0.065495, - -0.0087232, - -0.037329, - -0.022199, - 0.013252, - 0.0056036, - 0.018766, - -0.032297, - 0.001827, - 0.012923, - -0.025983, - 0.029807, - 0.045281, - -0.014719, - -0.022742, - -0.0010194, - 0.05959, - 0.011911, - 0.04196 - ], - "big-city": [ - 0.067366, - -0.00057677, - 0.061042, - 0.0040234, - -0.064016, - -0.047039, - 0.0047543, - -0.093406, - 0.098453, - 0.075652, - -0.022805, - -0.019947, - -0.021901, - 0.083944, - -0.09039, - -0.0014245, - 0.11562, - 0.045217, - 0.05946, - -0.033111, - 0.068575, - -0.040158, - -0.051898, - 0.059212, - 0.028275, - -0.01619, - 0.064058, - 0.074954, - 0.051386, - 0.11603, - -0.037914, - 0.00019706, - -0.061938, - -0.044281, - 0.077296, - 0.039126, - 0.022598, - 0.069494, - -0.041992, - 0.014229, - -0.0009711, - -0.14619, - 0.021389, - 0.090286, - 0.0026837, - -0.016719, - 0.028471, - 0.034875, - -0.053288, - -0.0044502, - 0.013362, - 0.048262, - -0.003149, - -0.0067976, - 0.076263, - 0.031351, - 0.010828, - 0.060521, - -0.021886, - -0.041398, - 0.00088607, - 0.0023841, - 0.054199, - -0.046033, - 0.060521, - -0.032185, - -0.040097, - -0.0093281, - -0.0080863, - -0.017193, - 0.060073, - 0.052007, - 0.061785, - -0.088018, - -0.039505, - 0.026793, - 0.0078443, - -0.041991, - -0.054198, - 0.040922, - -0.0072752, - 0.071077, - -0.026336, - 0.022611, - -0.023906, - -0.032251, - -0.0015788, - 0.033982, - 0.066417, - 0.045717, - -0.051699, - 0.0066707, - -0.11995, - 0.0013032, - 0.020547, - 0.068771, - -0.03544, - -0.017991, - -0.053638, - 0.082238, - 0.056237, - -0.031677, - -0.056598, - -0.082542, - 0.026778, - -0.096977, - 0.017861, - -0.076638, - 0.057471, - -0.0018496, - 0.014315, - 0.098001, - -0.001992, - 0.060437, - -0.011097, - 0.02386, - -0.02793, - -0.027781, - -0.040236, - 0.024084, - 0.021461, - -0.049688, - -0.028931, - -0.037692, - 0.061135, - -0.068842, - 0.0032354, - -0.060925, - -0.033796, - 0.078063, - 0.02855, - 0.14081, - 0.016336, - -0.051011, - 0.033366, - -0.082892, - 0.067039, - 0.073273, - -0.029866, - -0.056627, - 0.072915, - 0.020812, - 0.030061, - -0.0016432, - -0.055939, - 0.0010087, - 0.0083011, - 0.050587, - -0.024661, - -0.032621, - 0.1067, - 0.16547, - 0.0055705, - 0.040288, - -0.0080764, - -0.042784, - 0.047892, - 0.071454, - -0.006734, - -0.036312, - 0.051249, - 0.018726, - 0.0022993, - -0.035521, - 0.0047003, - 0.037221, - 0.050534, - -0.046773, - 0.0047043, - 0.066417, - -0.0478, - 0.0097292, - -0.034057, - 0.035543, - 0.065951, - 0.033937, - -0.070671, - 0.017018, - -0.010621, - -0.037243, - 0.032424, - -0.052451, - 0.017984, - -0.09773, - 0.031796, - -0.051394, - 0.020662, - 0.13976, - -0.062985, - 0.0065987, - -0.060438, - 0.051215, - 0.027248, - -0.0010677, - 0.017986, - 0.046632, - 0.058881, - 0.049345, - 0.023162, - -0.037415, - -0.12342, - -0.010415, - 0.0080378, - -0.030901, - -0.060293, - 0.014769, - 0.013822, - 0.037781, - -0.021973, - 0.016345, - 0.1808, - -0.017906, - 0.026493, - -0.036768, - -0.01279, - -0.033678, - 0.016092, - -0.070158, - 0.026306, - -0.0045828, - 0.035254, - 0.0090069, - -0.039722, - 0.091434, - -0.010227, - 0.01479, - 0.031147, - 0.062228, - -0.035485, - -0.096947, - -0.012952, - -0.0083983, - -0.064442, - 0.079926, - 0.027901, - -0.017561, - 0.023042, - -0.021925, - 0.028546, - 0.012538, - 0.022822, - 0.017515, - -0.056692, - 0.043381, - -0.13281, - 0.047487, - 0.017461, - 0.018971, - -0.0038392, - -0.01267, - -0.021742, - -0.04293, - -0.061171, - -0.047837, - 0.014404, - 0.069957, - -0.014818, - 0.037421, - 0.083232, - -0.0065663, - -0.039845, - 0.053089, - -0.010278, - -0.063243, - -0.051273, - 0.097363, - -0.037533, - 0.055101, - 0.04074, - 0.10795, - -0.11195, - 0.082833, - -0.097668, - -0.042865, - 0.043135, - -0.10394, - -0.093522, - 0.029449, - 0.065518, - 0.025849, - 0.18581, - 0.010844, - -0.043966, - -0.012046, - -0.0087676, - 0.028169, - 0.068364, - -0.066082, - -0.031017, - 0.029016, - 0.071544, - 0.072608, - 0.02188, - -0.019695, - 0.035857, - 0.062393, - 0.026167, - 0.079567, - -0.054433, - -0.054229 - ], - "mothering": [ - -0.029203, - 0.006278, - 0.026859, - -0.09282, - -0.026811, - 0.025271, - -0.012655, - -0.079766, - 0.044196, - -0.013931, - 0.02891, - 0.011579, - -0.031707, - 0.0039198, - -0.048108, - -0.036205, - 0.005941, - -0.040771, - -0.032748, - 0.067633, - -0.00086267, - 0.063182, - 0.0084882, - 0.024649, - -0.022824, - 0.053735, - 0.011138, - 0.05581, - 0.031265, - -0.011207, - 0.01486, - -0.056435, - -0.011426, - -0.025904, - 0.0029796, - 0.010101, - -0.028949, - -0.097566, - 0.0049863, - -0.028679, - -0.043503, - -0.052437, - 0.022447, - -0.035198, - 0.012626, - -0.028367, - 0.055129, - 0.0444, - -0.025266, - -0.04333, - 0.05142, - -0.023384, - 0.074157, - 0.04161, - -0.0025607, - -0.041359, - 0.043781, - -0.061049, - -0.035914, - -0.0048532, - -0.070328, - -0.042076, - 0.019864, - -0.01643, - 0.0005076, - -0.050501, - 0.015831, - 0.034809, - -0.0097883, - -0.073798, - 0.064724, - 0.058281, - 0.092467, - -0.048152, - 0.018032, - -0.005775, - -0.074983, - -0.0093929, - -0.0082674, - -0.0029554, - -0.037558, - -0.024847, - 0.07926, - 0.04883, - 0.032827, - 0.032131, - 0.043783, - 0.027776, - -0.039866, - 0.039205, - 0.016048, - 0.029143, - -0.085222, - -0.014473, - 0.020065, - 0.08337, - -0.017599, - -0.022107, - 0.048996, - -0.095422, - 0.0049561, - -0.049185, - -0.031999, - -0.0015933, - -0.026863, - -0.066508, - 0.036646, - 0.023173, - 0.016292, - -0.028146, - -0.014835, - 0.089252, - 0.0083311, - -0.030472, - -0.02027, - -0.011259, - -0.0022456, - 0.0048569, - -0.081891, - -0.02207, - -0.021625, - 0.029137, - 0.094352, - -0.043631, - 0.064322, - -0.0027872, - 0.017567, - -0.099376, - 0.07995, - 0.077995, - 0.011084, - -0.01776, - -0.012496, - -0.018037, - -0.077574, - -0.061298, - -0.043583, - -0.0032917, - 0.050613, - 0.00081182, - 0.014552, - -0.042249, - 0.016922, - 0.067051, - 0.033824, - 0.025205, - 0.02694, - 0.060811, - -0.021842, - -0.01118, - 0.031089, - 0.013353, - -0.011952, - -0.10724, - 0.003101, - 0.049529, - 0.050556, - 0.050613, - 0.037708, - -0.052096, - 0.075601, - 0.006374, - -0.086548, - -0.0084309, - -0.053393, - -0.0079811, - 0.0086684, - -0.0094795, - -0.0285, - 0.0074561, - 0.039291, - 0.01046, - -0.051016, - -0.034185, - 0.035759, - 0.03867, - 0.022596, - 0.070058, - 0.004601, - -0.048147, - -0.0071533, - -0.025675, - -0.069769, - -0.018268, - -0.023574, - -0.055101, - 0.045418, - 0.075064, - -0.031076, - 0.00078164, - 0.0027929, - 0.0098736, - -0.060747, - -0.047413, - 0.014084, - 0.010934, - 0.056238, - 0.03589, - -0.03326, - -0.037133, - -0.12235, - 0.085001, - -0.021377, - -0.034214, - -0.024301, - 0.052521, - -0.075467, - -0.018917, - 0.048945, - -0.00078662, - 0.080638, - 0.027254, - 0.01787, - 0.025655, - -0.046839, - 0.073689, - -0.038544, - -0.070327, - -0.057283, - -0.0042287, - 0.0054355, - -0.00599, - -0.0091906, - 0.072052, - 0.00018445, - -0.042592, - 0.014123, - 0.066602, - 0.016506, - -0.056401, - 0.025814, - -0.03573, - -0.080644, - 0.032005, - 0.0051701, - 0.11617, - 0.072878, - 0.029889, - -0.010919, - -0.042061, - 0.0072731, - 0.013958, - -0.027722, - -0.0005937, - -0.033682, - 0.027781, - -0.062368, - -0.044385, - 0.068616, - 0.045181, - 0.038809, - -0.0094414, - 0.020725, - 0.058727, - 0.043616, - 0.013704, - -0.0063182, - 0.021264, - 0.062756, - -0.0049566, - 0.016806, - -0.029091, - 0.050177, - 0.10184, - 0.067972, - 0.046023, - -0.008594, - 0.057827, - 0.026966, - 0.011052, - 0.0051771, - 0.042168, - -0.085806, - 0.017403, - 0.009045, - 0.019516, - -0.023434, - -0.0015317, - 0.053184, - 0.053993, - 0.049532, - 0.026663, - 0.045011, - -0.013612, - 0.010545, - 0.067359, - -0.0032295, - -0.0026707, - -0.035863, - 0.023467, - 0.0037009, - 0.0044305, - -0.029492, - -0.04155, - -0.0098893, - 0.033604, - 0.055146, - 0.062013, - 0.00067008, - 0.040215 - ], - "outfits": [ - 0.019203, - -0.026414, - 0.0072067, - 0.0052442, - 0.0060312, - -0.14342, - 0.055581, - -0.069444, - -0.0040854, - 0.019518, - 0.010156, - -0.07009, - -0.11683, - -0.033407, - -0.07732, - 0.10631, - 0.06322, - 0.025856, - 0.058667, - 0.011703, - -0.013313, - -0.031208, - -0.059097, - 0.084151, - 0.032002, - 0.049883, - 0.083551, - -0.021306, - 0.047915, - -0.00094181, - -0.073571, - -0.091538, - -0.020699, - -0.037991, - 0.075281, - 0.015829, - 0.0023259, - 0.049295, - 0.038987, - 0.054474, - -0.022551, - -0.12262, - -0.01921, - 0.011518, - 0.028989, - -0.015683, - 0.043277, - 0.023451, - -0.0016966, - -0.049179, - -0.035781, - 0.035781, - -0.017208, - 0.038412, - -0.065058, - 0.079375, - -0.0091283, - -0.057622, - -0.035628, - 0.021573, - -0.053907, - 0.0035136, - 0.19147, - -0.018843, - 0.098241, - 0.032708, - 0.015195, - -0.029407, - -0.025387, - -0.00073921, - 0.0020655, - -0.027716, - 0.0081353, - -0.060245, - -0.039622, - 0.062265, - 0.11048, - -0.0090127, - -0.056728, - 0.02056, - -0.0025663, - -0.014217, - 0.010423, - 0.089455, - -0.017491, - -0.014268, - -0.079304, - 0.013386, - -0.014989, - -0.050137, - -0.019527, - -0.021718, - -0.076594, - 0.063596, - 0.12039, - 0.069337, - -0.078249, - -0.063154, - 0.049979, - -0.0018909, - 0.0080401, - -0.0048586, - 0.0019663, - 0.031817, - 0.030348, - -0.047963, - -0.017039, - -0.042802, - 0.0029659, - 0.059672, - 0.048679, - 0.083892, - 0.066424, - 0.0040726, - -0.015267, - -0.011764, - 0.0039596, - -0.027319, - -0.054894, - 0.0027244, - 0.012708, - 0.055309, - 0.030782, - -0.079717, - 0.14133, - -0.0067521, - -0.06547, - 0.024682, - 0.041247, - 0.10578, - -0.033205, - 0.050012, - -0.014423, - -0.013239, - 0.014315, - -0.012052, - 0.032451, - 0.032184, - -0.058157, - -0.021227, - -0.034366, - -0.022124, - 0.049148, - 0.076458, - 0.026385, - 0.049094, - -0.0039061, - -0.022813, - 0.026461, - -0.076003, - -0.017805, - 0.082996, - -0.036298, - -0.078994, - -0.011678, - -0.025762, - 0.006716, - 0.034507, - -0.031463, - 0.013072, - 0.017381, - -0.039055, - 0.012967, - 0.06522, - -0.010119, - 0.040453, - -0.016405, - -0.052808, - 0.019034, - 0.046594, - 0.051364, - -0.019995, - -0.027745, - -0.063643, - 0.0027307, - 0.070091, - -0.080217, - 0.094411, - -0.021953, - -0.095495, - 0.048797, - -0.038553, - -0.013533, - -0.0077156, - -0.010052, - -0.063277, - -0.070408, - 0.13566, - -0.059477, - -0.025686, - -0.0022222, - 0.059481, - -0.083751, - -0.058292, - 0.059425, - 0.049619, - 0.044205, - -0.017531, - 0.025392, - -0.025782, - -0.13815, - 0.057313, - -0.010939, - 0.046575, - 0.024642, - -0.0037992, - -0.059965, - -0.003861, - 0.086841, - -0.042214, - 0.091602, - 0.033391, - 0.065603, - 0.034678, - -0.014115, - -0.015617, - -0.057709, - 0.03609, - -0.076131, - 0.0034753, - -0.010301, - -0.018845, - -0.034948, - 0.073179, - 0.015865, - -0.01231, - 0.0065856, - 0.033147, - -0.0011802, - 0.064531, - -0.0083108, - -0.0012689, - -0.090571, - -0.047408, - 0.026608, - -0.014604, - 0.055563, - -0.033886, - 0.028087, - 0.020157, - -0.019267, - -0.028157, - 0.015913, - -0.045974, - 0.045203, - 0.044209, - -0.08508, - -0.027019, - -0.021969, - -0.024285, - -0.0069735, - -0.022204, - 0.03917, - -0.0053448, - -0.021386, - 0.10024, - 0.02484, - -0.018828, - 0.044291, - 0.057032, - 0.07856, - 0.03724, - -0.043901, - -0.056888, - 0.010742, - 0.042361, - -0.0010752, - -0.017998, - -0.0066253, - 0.0059099, - 0.0049528, - 0.066749, - -0.097893, - -0.067297, - 0.036038, - 0.0043984, - -0.019734, - -0.0046926, - -0.035967, - -0.0020416, - 0.045666, - 0.036013, - 0.099123, - 0.044982, - -0.014521, - -0.068686, - -0.010717, - -0.0084968, - -0.003907, - 0.033204, - -0.039451, - 0.029024, - -0.066979, - 0.009374, - -0.027048, - -0.078709, - 0.0075112, - 0.048545, - 0.012693, - -0.062662 - ], - "travelogues": [ - -0.015374, - -0.068433, - 0.049224, - 0.0081425, - 0.011115, - -0.027383, - -0.03303, - -0.085185, - -0.00019784, - 0.057005, - 0.014091, - -0.1469, - -0.016671, - -0.077302, - 0.028873, - -0.045469, - 0.030274, - -0.076582, - 0.028281, - 0.00098252, - -0.01085, - 0.011309, - 0.015291, - 0.056182, - 0.0053629, - 0.034351, - -0.0079163, - 0.018777, - 0.038341, - 0.0090003, - -0.027975, - 0.018844, - 0.032747, - -0.04291, - 0.071459, - 0.033456, - 0.0075114, - 0.041697, - 0.022617, - -0.0072591, - 0.029423, - -0.022054, - -0.013912, - 0.044132, - 0.063358, - -0.0016179, - 0.01485, - -0.059139, - 0.027237, - 0.01028, - -0.015607, - 0.020748, - -0.029364, - 0.00075293, - -0.081096, - -0.011021, - -0.025772, - 0.047448, - -0.032065, - 0.024022, - 0.029482, - -0.012886, - 0.10428, - -0.030098, - 0.042138, - 0.032166, - -0.062744, - 0.048928, - -0.017152, - 0.038891, - 0.012833, - -0.095578, - 0.040594, - 0.012914, - 0.022751, - 0.028248, - 0.049112, - -0.045886, - 0.0053239, - -0.010292, - -0.019266, - -0.039083, - -0.004027, - 0.049842, - 0.01644, - -0.03992, - 0.040578, - 0.027039, - -0.022608, - -0.010405, - -0.017373, - 0.014456, - -0.047479, - 0.014133, - 0.018873, - 0.064058, - -0.012272, - 0.051335, - 0.0069315, - 0.0026109, - 0.011868, - 0.0248, - -0.05582, - -0.022871, - 0.03681, - -0.028908, - 0.018139, - -0.023522, - 0.014681, - 0.02864, - 0.007253, - -0.000095184, - 0.028809, - 0.034661, - -0.04761, - 0.046762, - 0.0012553, - 0.010011, - -0.015876, - 0.065813, - 0.054851, - -0.03403, - -0.066362, - -0.022303, - 0.10654, - -0.018905, - -0.036968, - 0.062813, - 0.027549, - 0.082586, - -0.021403, - 0.043225, - -0.075739, - -0.059596, - 0.025292, - -0.0026362, - 0.0093692, - 0.057474, - 0.022124, - 0.0074569, - 0.010324, - -0.014956, - 0.028299, - 0.039929, - 0.021014, - -0.023886, - -0.050687, - 0.037218, - -0.0068297, - -0.049459, - 0.015683, - 0.061072, - 0.0049419, - -0.016871, - 0.010718, - 0.013381, - -0.056572, - 0.075444, - -0.014617, - 0.003631, - 0.010423, - 0.030735, - 0.027836, - 0.010886, - -0.036642, - 0.061258, - 0.058878, - -0.049724, - 0.048302, - 0.017966, - 0.0058511, - 0.014384, - 0.024192, - 0.0067351, - -0.012661, - 0.01484, - -0.046995, - -0.026877, - -0.051218, - 0.061282, - 0.058016, - 0.025411, - 0.013595, - -0.066024, - 0.0026909, - 0.022468, - 0.067856, - 0.082775, - -0.048425, - -0.052831, - 0.014551, - 0.086934, - -0.064286, - -0.0011472, - -0.043297, - 0.063634, - 0.011255, - -0.02494, - 0.0086805, - 0.010642, - -0.084746, - 0.043347, - 0.040542, - -0.03308, - 0.043487, - 0.020163, - -0.037675, - 0.073665, - 0.0034738, - -0.040843, - 0.051283, - 0.012959, - -0.0033181, - -0.068067, - -0.035906, - 0.012412, - -0.031827, - -0.017491, - -0.072259, - 0.022829, - -0.054439, - 0.049167, - -0.050644, - 0.070022, - 0.040657, - -0.0063278, - 0.068415, - 0.098078, - -0.02687, - 0.016099, - 0.010749, - 0.007867, - 0.0055158, - 0.038472, - -0.0037128, - -0.019848, - 0.0499, - -0.01281, - 0.0068181, - -0.054972, - 0.031967, - 0.042314, - 0.035781, - -0.026367, - -0.040304, - -0.012346, - 0.04838, - -0.054611, - -0.045765, - -0.00063694, - 0.074674, - -0.054423, - 0.019341, - 0.041289, - -0.039, - -0.00083289, - -0.035063, - -0.018162, - 0.017391, - 0.050482, - 0.022926, - 0.040414, - -0.026465, - -0.014411, - 0.068323, - -0.038398, - 0.0082109, - 0.0054389, - 0.058199, - -0.022089, - 0.030524, - 0.057635, - -0.065779, - -0.026785, - -0.058633, - -0.0003075, - 0.0006987, - -0.0052293, - -0.035511, - 0.027024, - -0.013162, - 0.013535, - -0.015427, - -0.018275, - -0.034993, - 0.027249, - -0.0015278, - -0.017739, - -0.030665, - 0.013232, - 0.038796, - -0.030107, - -0.0055112, - 0.014999, - 0.042998, - 0.040898, - 0.022867, - 0.038051, - -0.030202, - -0.0085766 - ], - "vehicular": [ - -0.020922, - 0.018592, - 0.092214, - 0.069281, - -0.0093211, - 0.0066068, - -0.00010644, - -0.069424, - 0.071289, - 0.072806, - 0.0076032, - -0.020502, - -0.00034869, - 0.069368, - -0.0062819, - 0.03039, - 0.028688, - 0.042344, - 0.038377, - 0.027361, - 0.0047915, - -0.073801, - 0.061935, - 0.0499, - 0.0088745, - 0.051155, - -0.066853, - 0.022551, - 0.028755, - 0.023746, - 0.014494, - 0.029006, - 0.041162, - -0.061559, - 0.056899, - 0.019535, - -0.011954, - 0.013084, - 0.06857, - -0.056085, - 0.010602, - -0.093311, - 0.077534, - 0.016032, - -0.048959, - -0.025898, - -0.025929, - 0.0068754, - -0.035171, - -0.029102, - 0.046813, - 0.031791, - 0.0056936, - 0.022644, - -0.0059306, - -0.012956, - 0.051457, - -0.023536, - -0.027719, - -0.0044892, - 0.071113, - 0.0129, - 0.093807, - 0.024238, - 0.057334, - -0.047929, - 0.063451, - -0.044911, - -0.022611, - 0.026421, - 0.04776, - -0.0036289, - 0.059168, - -0.008903, - 0.034075, - -0.012639, - -0.054018, - -0.054697, - 0.012324, - 0.012946, - -0.034725, - -0.0196, - -0.10253, - 0.040418, - 0.025533, - 0.00068066, - -0.036771, - 0.0013285, - -0.023376, - -0.028203, - -0.0084225, - 0.0077491, - -0.083878, - -0.0010624, - 0.0083498, - 0.028307, - -0.05086, - 0.057865, - -0.043204, - 0.022951, - 0.012265, - 0.017234, - -0.030008, - -0.017608, - 0.059248, - -0.032183, - 0.02388, - 0.018697, - 0.023954, - 0.0051084, - 0.022637, - 0.029101, - 0.048836, - 0.0056296, - -0.028103, - -0.0091775, - -0.044128, - 0.041124, - -0.0085848, - 0.036577, - -0.0020293, - 0.010784, - -0.048202, - -0.0061885, - 0.12382, - -0.016252, - 0.013486, - -0.062549, - -0.0054718, - 0.019987, - 0.000064257, - -0.027857, - 0.060272, - 0.0028681, - 0.020557, - 0.048477, - 0.049622, - -0.0086084, - 0.026823, - -0.083595, - -0.043204, - -0.0014153, - 0.04974, - 0.034089, - 0.024026, - 0.024612, - 0.016838, - -0.000091156, - 0.044568, - -0.021036, - 0.0242, - 0.15331, - -0.020298, - -0.021871, - 0.059384, - 0.0069592, - -0.10436, - 0.033881, - -0.03662, - 0.055139, - 0.0024802, - 0.020313, - -0.10332, - -0.023187, - 0.035752, - -0.050703, - 0.024614, - -0.043502, - 0.037089, - 0.0068179, - 0.038491, - -0.0016392, - 0.058737, - 0.051313, - 0.0070916, - 0.071862, - -0.0036826, - -0.0052608, - -0.01446, - -0.015206, - 0.062757, - 0.047082, - -0.0055527, - -0.011141, - -0.049876, - -0.072182, - -0.028018, - 0.15252, - 0.010408, - 0.0036743, - 0.0017431, - -0.0065299, - 0.076676, - 0.054429, - -0.012421, - 0.054565, - -0.032499, - 0.019989, - 0.0010522, - -0.0048598, - -0.15182, - 0.067185, - -0.035717, - 0.010807, - 0.0075489, - 0.036247, - -0.054855, - 0.10671, - 0.046551, - -0.013208, - 0.13563, - 0.0048282, - -0.030047, - 0.060897, - 0.043828, - 0.033556, - -0.065348, - -0.039781, - 0.0084222, - -0.038499, - -0.087839, - -0.018942, - -0.0070237, - 0.081187, - -0.025209, - -0.0070275, - 0.025799, - 0.06061, - -0.0043101, - 0.023465, - -0.10572, - -0.070833, - -0.048483, - -0.055547, - 0.053456, - -0.043965, - 0.014432, - 0.069963, - -0.0070217, - -0.052954, - -0.005025, - 0.040627, - -0.00079771, - 0.0050719, - -0.16666, - 0.0014591, - 0.0083149, - -0.049793, - 0.037303, - 0.0056084, - -0.066748, - 0.060948, - -0.029308, - 0.037146, - 0.0063221, - 0.0016451, - 0.033097, - 0.021028, - 0.020416, - 0.039845, - -0.027524, - 0.0215, - -0.10744, - -0.019238, - -0.048799, - 0.060362, - 0.052548, - 0.013783, - 0.078682, - 0.016208, - -0.022533, - 0.084445, - -0.05728, - -0.014106, - -0.024233, - -0.1271, - 0.010601, - 0.085996, - 0.06985, - -0.00031933, - 0.16224, - 0.048294, - -0.020733, - -0.0042917, - -0.035619, - -0.06197, - -0.046742, - 0.0061047, - 0.041815, - 0.039585, - 0.028309, - -0.067128, - -0.052327, - -0.024208, - 0.019987, - -0.0641, - 0.044741, - 0.014348, - 0.0088316, - 0.021091 - ], - "place": [ - 0.033887, - -0.076979, - 0.019498, - 0.03775, - -0.0055576, - -0.0083331, - -0.012077, - -0.12372, - -0.016847, - -0.028315, - -0.069918, - -0.06056, - 0.045945, - 0.057278, - 0.00057849, - 0.031446, - 0.13039, - -0.0048904, - 0.10776, - 0.035482, - -0.0059219, - -0.0054477, - 0.036257, - 0.013619, - 0.0364, - -0.025886, - -0.0029707, - 0.018352, - -0.092032, - -0.011658, - -0.020089, - 0.033152, - -0.0072213, - -0.071805, - -0.066097, - -0.031286, - 0.015944, - 0.033752, - -0.023139, - -0.023555, - 0.024718, - -0.075559, - -0.02137, - 0.016448, - 0.006101, - -0.037625, - 0.0018724, - -0.024504, - -0.001034, - 0.032515, - -0.013639, - -0.013653, - 0.003746, - 0.0016801, - -0.22505, - 0.014358, - 0.010154, - -0.011839, - -0.070257, - -0.035441, - 0.017572, - 0.011045, - 0.25445, - 0.038576, - 0.066512, - -0.028658, - -0.024118, - -0.0089296, - 0.037615, - -0.021612, - -0.0038808, - 0.0037492, - 0.046753, - 0.019207, - 0.020537, - -0.0042749, - -0.0065135, - 0.0071959, - -0.0097924, - -0.02094, - -0.035016, - 0.018657, - 0.056346, - 0.11395, - -0.018471, - -0.05868, - 0.0040563, - -0.089156, - -0.0090228, - 0.0034438, - -0.018308, - -0.023183, - -0.17225, - -0.036635, - 0.02263, - -0.015208, - 0.040118, - 0.0054125, - 0.083532, - -0.0042365, - -0.0011002, - -0.0061178, - 0.060548, - -0.0015635, - 0.035974, - -0.1079, - 0.015749, - 0.058565, - 0.073258, - 0.02466, - 0.036826, - 0.13854, - 0.082062, - 0.0078599, - -0.036909, - -0.010726, - -0.034562, - -0.033476, - -0.044607, - 0.023581, - 0.012934, - 0.0077895, - 0.025651, - 0.0011834, - -0.02294, - 0.012665, - -0.0079068, - -0.15758, - -0.006732, - 0.034858, - -0.0036927, - 0.0064471, - -0.019485, - -0.054757, - -0.048413, - -0.052837, - -0.004029, - 0.042071, - 0.017547, - 0.0020838, - 0.034128, - -0.023078, - -0.01931, - -0.021785, - 0.040856, - 0.080519, - -0.0033941, - 0.024573, - 0.022166, - -0.024999, - 0.044775, - 0.039608, - -0.040788, - -0.11111, - -0.0044408, - 0.013093, - -0.0084612, - 0.06595, - 0.010717, - -0.021228, - -0.014436, - -0.037647, - 0.010314, - -0.013044, - 0.010905, - 0.0015184, - 0.026403, - 0.02807, - -0.033388, - -0.01403, - 0.036284, - 0.016859, - 0.019845, - -0.0121, - 0.0074424, - 0.030246, - -0.029986, - -0.01751, - -0.029959, - 0.022561, - 0.057448, - 0.02972, - -0.025436, - -0.087626, - -0.0465, - -0.060854, - -0.0036124, - 0.1152, - -0.019937, - -0.037606, - 0.025719, - 0.12783, - 0.0089051, - 0.025421, - -0.021895, - -0.0010636, - 0.0029488, - 0.017109, - 0.031074, - 0.038706, - -0.19648, - 0.099279, - 0.082926, - 0.050725, - -0.016723, - -0.023634, - -0.037137, - -0.027266, - -0.0092498, - -0.030262, - 0.076319, - -0.08779, - -0.013375, - -0.029101, - 0.028857, - -0.026398, - 0.079679, - -0.0074634, - -0.058197, - -0.14564, - 0.018871, - -0.011135, - -0.0022422, - 0.16541, - 0.088865, - -0.034114, - -0.0089881, - 0.1158, - -0.047232, - -0.043575, - -0.076955, - -0.11528, - -0.10463, - -0.011376, - -0.086143, - -0.0077953, - -0.0094967, - 0.079796, - -0.022567, - -0.0054506, - 0.20728, - 0.014431, - -0.028731, - 0.11317, - -0.077952, - -0.067761, - -0.044559, - 0.061145, - -0.076576, - -0.03086, - -0.098945, - 0.035384, - -0.04899, - 0.0096067, - -0.0035046, - -0.033042, - -0.038487, - 0.077625, - 0.012526, - -0.020107, - 0.050647, - -0.023346, - 0.006784, - -0.082212, - -0.056739, - 0.016933, - 0.059965, - -0.0047953, - 0.023716, - -0.035891, - -0.088578, - 0.128, - -0.14311, - -0.10388, - 0.067784, - 0.0089934, - 0.044658, - -0.052836, - -0.072503, - -0.021362, - -0.0032287, - -0.10067, - 0.033037, - -0.0017936, - 0.042415, - 0.029368, - 0.03553, - -0.016635, - 0.0099263, - 0.025225, - 0.047685, - 0.066558, - 0.054484, - 0.023483, - 0.023243, - 0.031881, - 0.079884, - 0.0045403, - -0.065934, - 0.0052551 - ], - "BlackBerry": [ - -0.033194, - 0.0064443, - -0.013212, - 0.037015, - -0.027373, - 0.0076144, - -0.028629, - -0.048184, - 0.06772, - 0.058388, - -0.019519, - -0.0092328, - -0.020709, - -0.040961, - 0.0090827, - -0.058071, - 0.053471, - -0.041474, - 0.082897, - -0.056793, - 0.0076553, - -0.027728, - 0.012108, - 0.019702, - 0.040609, - 0.014502, - 0.029482, - 0.058782, - 0.02282, - -0.08887, - -0.044456, - -0.031293, - -0.010349, - 0.036708, - 0.017153, - -0.021137, - -0.010921, - -0.032345, - -0.052616, - -0.038548, - -0.026358, - 0.0065134, - -0.01852, - 0.06346, - 0.0072785, - 0.0078638, - -0.03974, - 0.011377, - 0.012323, - -0.04673, - -0.0077016, - 0.010981, - 0.0014685, - -0.014783, - -0.031999, - -0.032526, - -0.020865, - -0.0043134, - -0.031122, - 0.041896, - -0.023606, - -0.02508, - 0.024311, - 0.052043, - -0.034714, - -0.017695, - 0.043136, - 0.018585, - -0.058757, - -0.013056, - -0.029288, - 0.028863, - 0.0041129, - 0.020572, - -0.070314, - 0.060223, - 0.051039, - -0.068271, - -0.013744, - -0.06789, - 0.018285, - -0.02863, - -0.057809, - 0.010988, - -0.0074476, - -0.038964, - -0.078519, - -0.037617, - 0.030384, - -0.010846, - 0.068544, - 0.0025254, - -0.08787, - -0.011273, - 0.0063414, - 0.083543, - -0.051989, - -0.13177, - 0.033476, - 0.035257, - 0.010879, - 0.12834, - 0.013457, - -0.064342, - -0.028282, - -0.11441, - -0.062897, - 0.091684, - 0.016563, - -0.028773, - 0.031221, - 0.026542, - 0.038961, - 0.098145, - -0.11422, - -0.038743, - 0.018589, - 0.033245, - -0.011184, - -0.033436, - 0.11368, - -0.052627, - -0.033279, - -0.001543, - -0.016168, - 0.099586, - -0.0077771, - -0.07637, - 0.0067844, - 0.042873, - 0.037828, - 0.022727, - -0.062642, - -0.02459, - 0.068075, - -0.039079, - 0.00079111, - 0.019723, - -0.044034, - 0.022812, - 0.056727, - -0.040848, - 0.040942, - 0.013297, - -0.014661, - 0.00287, - 0.021277, - -0.048048, - 0.081328, - -0.0051083, - 0.0016103, - 0.016468, - 0.061704, - -0.013298, - -0.0073798, - 0.063172, - -0.063699, - -0.049429, - -0.032341, - -0.033846, - 0.016671, - 0.038141, - -0.024505, - 0.0091216, - 0.048756, - -0.0043716, - -0.035362, - -0.050271, - -0.094712, - 0.017617, - -0.055612, - 0.12268, - 0.00083881, - 0.054863, - 0.010928, - 0.0059457, - -0.018893, - -0.030437, - -0.026851, - 0.014373, - 0.031319, - -0.071641, - 0.044484, - -0.034399, - 0.0013671, - -0.0050668, - -0.052496, - 0.066846, - 0.0065028, - 0.055713, - -0.043122, - 0.0035273, - -0.028915, - -0.0018445, - 0.033134, - -0.04298, - 0.0027541, - -0.045085, - 0.040583, - 0.0014837, - -0.049531, - 0.11268, - -0.045044, - 0.068288, - -0.08434, - 0.042271, - -0.0097842, - -0.014085, - -0.052915, - -0.023421, - 0.10521, - -0.033377, - 0.015736, - 0.06521, - 0.034342, - 0.035328, - -0.041051, - -0.017934, - 0.018401, - 0.0075911, - 0.033357, - -0.044348, - 0.0078867, - 0.088398, - 0.0284, - -0.023041, - 0.0059948, - 0.0093229, - -0.029702, - -0.054077, - 0.013848, - -0.066526, - -0.043791, - -0.022831, - 0.05109, - 0.021981, - 0.048366, - -0.013952, - 0.072881, - -0.0042811, - 0.014236, - 0.0068682, - 0.0071539, - -0.01234, - 0.060261, - -0.011256, - 0.0091658, - -0.006013, - -0.023499, - -0.025464, - -0.0093915, - -0.0076, - -0.060713, - -0.028192, - 0.0079447, - -0.037811, - 0.0046968, - -0.038849, - 0.0048985, - -0.028684, - -0.024498, - 0.098233, - -0.051914, - -0.013842, - 0.042376, - -0.0031527, - -0.054815, - 0.0024964, - 0.018977, - 0.045887, - -0.0033922, - 0.063153, - -0.088112, - 0.037369, - 0.0054935, - -0.020731, - -0.05992, - -0.0066608, - -0.00032662, - 0.028012, - 0.047595, - -0.1075, - -0.057394, - 0.063172, - 0.031345, - -0.079738, - -0.059656, - -0.034932, - -0.04354, - -0.023272, - -0.00012801, - -0.028394, - -0.047157, - 0.017552, - 0.018949, - 0.012852, - -0.030184, - 0.0067999, - 0.021704, - 0.042064 - ], - "stuff": [ - -0.017393, - -0.012395, - -0.024353, - 0.025423, - 0.039234, - -0.046661, - 0.038848, - -0.07043, - -0.026487, - -0.040746, - -0.10288, - -0.099861, - 0.05841, - -0.086091, - 0.013414, - 0.0010464, - 0.10074, - 0.046662, - 0.043146, - 0.016295, - 0.021129, - 0.04612, - -0.043013, - 0.065431, - 0.051373, - -0.02136, - 0.058605, - 0.019291, - 0.10915, - 0.0085112, - 0.0483, - -0.05213, - 0.013985, - -0.059686, - 0.064613, - -0.060005, - 0.018282, - -0.023768, - -0.020858, - -0.044354, - -0.045593, - -0.14204, - -0.016587, - 0.030844, - -0.023337, - -0.031166, - 0.015005, - -0.011732, - 0.014233, - -0.028544, - -0.034356, - -0.0051462, - 0.06312, - -0.066153, - -0.069608, - 0.0874, - -0.06981, - -0.02083, - -0.10165, - -0.024406, - -0.0063595, - -0.026592, - 0.22618, - 0.03602, - 0.042147, - -0.023734, - 0.044274, - 0.043275, - 0.01177, - -0.025671, - 0.053663, - 0.010168, - -0.024009, - -0.048849, - 0.024511, - -0.042161, - 0.0056256, - -0.001678, - -0.028475, - -0.026608, - -0.042914, - -0.036824, - -0.02085, - 0.12627, - 0.0010072, - -0.00012092, - -0.032949, - -0.014129, - 0.11588, - 0.0357, - -0.011967, - -0.0060043, - -0.087192, - 0.027041, - 0.097264, - -0.012357, - 0.029018, - 0.02495, - 0.0084907, - 0.048829, - 0.017359, - 0.059216, - 0.00085218, - 0.065369, - 0.013266, - -0.10719, - 0.028197, - 0.0093008, - 0.027609, - 0.072318, - 0.011188, - 0.053758, - 0.048375, - -0.026256, - -0.02757, - -0.02364, - -0.05343, - -0.035719, - -0.065277, - -0.0095477, - 0.037949, - -0.011298, - -0.038903, - -0.063809, - 0.15036, - 0.00081549, - -0.068625, - -0.022116, - -0.0036369, - 0.14444, - -0.10182, - -0.0046725, - 0.005335, - -0.037398, - 0.029938, - -0.027399, - 0.032576, - 0.10255, - -0.04785, - 0.010545, - 0.034033, - 0.011875, - 0.02457, - 0.058739, - -0.027137, - 0.028718, - -0.0097022, - 0.038508, - 0.0094331, - -0.055737, - 0.009116, - 0.075261, - -0.021168, - -0.081379, - -0.013697, - -0.02001, - 0.033242, - -0.0067313, - 0.064283, - -0.048458, - 0.013109, - 0.060076, - -0.028416, - -0.032026, - -0.044941, - -0.026783, - -0.025604, - 0.041449, - 0.026786, - -0.030375, - 0.019378, - 0.022687, - 0.044693, - -0.017795, - 0.043273, - 0.090841, - 0.0055132, - 0.044656, - 0.08456, - 0.00054898, - 0.020537, - 0.0059343, - -0.047666, - -0.077366, - 0.069943, - -0.030822, - 0.066168, - 0.15247, - 0.043241, - -0.030943, - -0.0023356, - 0.065817, - -0.097658, - 0.017993, - -0.0028142, - 0.032249, - 0.0041904, - -0.041664, - -0.063433, - 0.074003, - -0.14032, - 0.03741, - 0.0063193, - -0.035365, - 0.04854, - -0.0014365, - -0.030264, - 0.0088683, - 0.043285, - -0.068283, - 0.062843, - 0.0024096, - -0.02192, - -0.099493, - 0.077302, - 0.0087092, - -0.07633, - 0.018446, - -0.090902, - -0.031543, - 0.061649, - 0.0099876, - -0.0096958, - 0.090581, - 0.096857, - 0.011747, - 0.065654, - 0.12677, - -0.039249, - 0.054876, - -0.010015, - -0.080075, - -0.089679, - 0.0095878, - 0.01408, - -0.034491, - -0.016666, - 0.036033, - 0.010746, - -0.10167, - -0.0080478, - -0.01393, - 0.017512, - -0.04989, - -0.023554, - 0.027691, - -0.069245, - 0.0051795, - -0.034293, - 0.043584, - 0.053712, - 0.0091886, - -0.04419, - 0.060404, - 0.01519, - 0.035743, - -0.017739, - 0.0047425, - 0.054832, - -0.053816, - 0.073669, - 0.033816, - -0.050313, - -0.050595, - -0.01402, - 0.054676, - 0.0060366, - -0.0075023, - -0.01196, - -0.016102, - -0.015169, - 0.091079, - -0.11539, - -0.07694, - 0.052351, - -0.099289, - 0.0071052, - 0.0057116, - -0.039716, - -0.018448, - 0.090719, - -0.014565, - 0.070903, - 0.032005, - -0.047346, - -0.024918, - -0.0089504, - 0.070933, - -0.063079, - 0.028593, - -0.01488, - 0.031619, - -0.027958, - -0.0096154, - 0.005263, - -0.031269, - -0.018059, - -0.013999, - 0.004781, - -0.022795 - ], - "retail": [ - -0.029681, - -0.087891, - -0.027986, - -0.0030211, - -0.038022, - -0.075643, - 0.036464, - -0.10894, - 0.090581, - 0.040802, - -0.086483, - -0.048137, - -0.070656, - -0.024552, - -0.034259, - 0.0054368, - 0.13106, - 0.07416, - 0.026407, - 0.0076511, - 0.058148, - 0.034546, - 0.0053641, - 0.070954, - 0.0047334, - -0.057788, - -0.024562, - 0.056269, - -0.069371, - 0.077014, - -0.040042, - -0.040727, - -0.042166, - -0.072961, - 0.071468, - 0.065226, - 0.069556, - 0.056942, - -0.10364, - 0.055789, - 0.0011197, - -0.11911, - 0.06163, - -0.01928, - -0.024104, - -0.036448, - -0.068101, - 0.024927, - 0.018376, - -0.021719, - -0.00058585, - -0.072378, - -0.0049628, - -0.074874, - -0.044654, - -0.0014666, - -0.0066448, - 0.026778, - -0.041123, - -0.098692, - -0.054284, - 0.051292, - 0.15535, - 0.038516, - 0.04756, - 0.01967, - -0.0047895, - -0.045205, - -0.026583, - -0.03576, - -0.033704, - -0.037333, - 0.13276, - 0.026174, - -0.042306, - -0.037554, - -0.046552, - -0.0036032, - -0.01142, - -0.014654, - -0.028153, - -0.049275, - -0.11132, - 0.072006, - -0.071053, - 0.02354, - -0.011434, - -0.03674, - -0.012603, - -0.051203, - -0.0018542, - 0.028136, - -0.12906, - -0.057767, - -0.048137, - 0.035231, - 0.019204, - -0.015408, - -0.051311, - 0.016197, - -0.028267, - 0.083877, - -0.072339, - 0.0031464, - 0.071372, - -0.096949, - -0.060238, - 0.045552, - -0.059597, - 0.047888, - -0.015005, - 0.15012, - 0.075112, - 0.0059897, - 0.00080847, - -0.053236, - -0.048918, - 0.015473, - -0.054438, - 0.01539, - -0.047016, - 0.055135, - 0.016361, - -0.023838, - 0.10503, - -0.026518, - -0.035267, - -0.15145, - 0.16688, - 0.07238, - 0.045223, - 0.047543, - 0.081473, - 0.041917, - -0.024426, - -0.016367, - 0.014532, - -0.015161, - -0.025125, - -0.13113, - 0.017491, - 0.031824, - -0.0062637, - 0.022859, - -0.033213, - -0.017008, - 0.048866, - -0.0235, - 0.052525, - 0.0018496, - 0.039098, - 0.053332, - 0.0071247, - -0.089555, - -0.0044958, - 0.0068148, - -0.041559, - 0.043413, - -0.062172, - 0.096088, - 0.025458, - -0.025777, - -0.048549, - 0.058029, - 0.049098, - -0.0007087, - 0.008269, - -0.067529, - 0.062424, - 0.056358, - 0.046235, - 0.042965, - 0.040255, - 0.0063, - -0.029779, - 0.10247, - -0.058026, - -0.015302, - -0.06668, - 0.0087855, - 0.013751, - -0.071897, - -0.0059237, - -0.018549, - -0.025132, - -0.024559, - 0.0020764, - 0.15789, - -0.023841, - 0.013265, - -0.083279, - 0.064209, - 0.042043, - -0.027337, - 0.058281, - -0.032777, - -0.031663, - -0.024405, - 0.0023981, - -0.038167, - -0.23039, - 0.08603, - -0.007188, - 0.014108, - -0.018688, - 0.051602, - 0.056036, - -0.059769, - 0.031053, - -0.013784, - 0.14818, - -0.020419, - -0.057786, - -0.040271, - -0.044252, - 0.024837, - -0.0069373, - -0.057416, - 0.027183, - -0.0075281, - 0.063101, - -0.069031, - 0.036465, - 0.093339, - -0.016894, - -0.012009, - 0.022212, - 0.06657, - -0.014451, - -0.019464, - 0.035851, - -0.025666, - -0.071765, - -0.019826, - -0.018791, - -0.005581, - 0.031898, - 0.044062, - 0.045778, - -0.051903, - 0.055638, - -0.0012377, - -0.00071627, - -0.0071363, - -0.13561, - 0.014355, - -0.046255, - 0.0061501, - 0.017389, - -0.034196, - 0.0093259, - -0.047236, - 0.022447, - 0.081985, - 0.030259, - 0.070734, - -0.038768, - 0.023979, - 0.054605, - 0.013033, - 0.068582, - -0.02218, - -0.013965, - -0.046867, - -0.042279, - 0.053835, - 0.025832, - -0.0075093, - -0.017236, - -0.031594, - -0.058545, - 0.089882, - -0.1382, - -0.059423, - -0.044141, - 0.0093095, - 0.021128, - 0.020057, - -0.056591, - 0.048298, - 0.13866, - 0.041861, - 0.019551, - 0.0037711, - 0.000049429, - -0.051055, - -0.06409, - -0.034484, - -0.020401, - -0.089809, - -0.076682, - 0.10135, - 0.011245, - 0.020761, - -0.028342, - -0.080169, - -0.048079, - 0.024647, - -0.030481, - 0.0032754 - ], - "travel": [ - -0.047674, - 0.027194, - 0.010304, - -0.0005302, - 0.0096365, - -0.036677, - -0.036684, - -0.095097, - 0.072315, - 0.035255, - -0.024759, - -0.12637, - -0.073944, - -0.079191, - 0.0080608, - -0.020038, - 0.10573, - -0.048563, - 0.051742, - 0.0095817, - 0.0099482, - 0.0065693, - 0.0013875, - 0.068036, - 0.015236, - 0.063008, - -0.043034, - 0.066293, - -0.071711, - 0.013075, - -0.055827, - 0.060626, - 0.023598, - -0.0057671, - 0.025833, - 0.020365, - 0.031769, - 0.020508, - 0.016019, - 0.0053513, - 0.0089298, - -0.11753, - 0.038305, - -0.032079, - 0.018646, - -0.019293, - 0.055456, - -0.05781, - 0.0015094, - 0.021636, - 0.010411, - 0.023515, - -0.034323, - 0.012951, - -0.17795, - 0.054332, - 0.0022759, - 0.0066501, - -0.068217, - 0.019594, - 0.021176, - 0.025485, - 0.14926, - 0.054941, - 0.055179, - -0.019656, - -0.032379, - -0.090503, - -0.039967, - 0.01842, - 0.019015, - -0.012937, - 0.080482, - 0.036633, - 0.046343, - 0.067279, - 0.054311, - -0.011211, - -0.051896, - -0.058214, - -0.0923, - -0.03298, - -0.051022, - 0.091453, - -0.027448, - -0.084474, - 0.048123, - -0.0032675, - -0.0032234, - -0.017477, - 0.032709, - 0.042029, - -0.1001, - -0.0029927, - -0.038122, - -0.0057195, - -0.029316, - 0.028339, - -0.0048864, - -0.050125, - 0.098013, - 0.066848, - 0.024274, - -0.061987, - 0.08216, - -0.11413, - 0.012418, - -0.052995, - 0.056573, - 0.023081, - 0.042338, - 0.021333, - 0.086317, - 0.072792, - -0.034818, - 0.015505, - -0.026558, - -0.069007, - -0.039911, - 0.052353, - 0.095023, - 0.033965, - -0.080169, - 0.026533, - 0.083404, - -0.078562, - -0.053347, - -0.094475, - 0.023565, - 0.11322, - 0.021439, - 0.015486, - 0.0071612, - -0.068137, - 0.021958, - 0.033121, - 0.02228, - 0.036602, - -0.01901, - 0.026114, - 0.029219, - -0.065392, - 0.026257, - 0.020104, - 0.0003348, - 0.055198, - -0.054011, - -0.028994, - -0.032992, - -0.060623, - 0.0082814, - 0.12945, - -0.065142, - -0.1289, - 0.073079, - -0.0036704, - -0.08591, - 0.063034, - -0.055162, - -0.074439, - 0.037583, - 0.013856, - -0.042938, - -0.0016231, - 0.0007929, - 0.038168, - 0.057812, - -0.062833, - 0.079399, - 0.019967, - 0.033014, - 0.029484, - -0.075084, - -0.065943, - 0.015668, - 0.052496, - -0.066255, - 0.038296, - -0.029256, - 0.049094, - 0.032063, - 0.023761, - 0.0374, - -0.012294, - -0.050298, - -0.0818, - 0.026527, - 0.095033, - 0.030381, - -0.050296, - 0.018946, - 0.028966, - -0.012606, - -0.0082137, - -0.055673, - 0.050401, - -0.027421, - -0.0011404, - 0.016706, - 0.013729, - -0.16807, - 0.074195, - 0.085313, - 0.0086501, - 0.0046524, - 0.024097, - -0.066228, - -0.012807, - 0.10154, - -0.011972, - 0.085907, - -0.032956, - 0.0085048, - -0.016234, - 0.0050164, - 0.032939, - 0.026103, - -0.06527, - 0.0074998, - -0.071211, - -0.027574, - -0.0098975, - -0.023823, - 0.11038, - 0.034786, - 0.014734, - -0.064104, - 0.10089, - -0.018541, - 0.015658, - -0.012753, - -0.04261, - -0.051021, - -0.06287, - 0.027369, - -0.070506, - 0.035593, - 0.047317, - -0.020605, - -0.012677, - 0.14062, - 0.047344, - 0.067614, - -0.10538, - -0.068227, - 0.0062656, - 0.088316, - -0.067842, - 0.0083318, - 0.035075, - 0.091463, - 0.018122, - -0.0084726, - 0.036401, - 0.0013973, - 0.0018102, - -0.066693, - 0.033269, - 0.0027477, - 0.067285, - 0.025544, - 0.0066979, - -0.14766, - -0.056794, - 0.02533, - 0.024343, - 0.0036567, - 0.024712, - 0.057408, - 0.036921, - 0.019632, - 0.091411, - -0.12711, - -0.035141, - -0.049783, - -0.019926, - -0.0042977, - -0.05476, - -0.037821, - 0.015289, - 0.062801, - -0.025736, - -0.037515, - -0.03305, - -0.013967, - 0.00056582, - -0.014247, - -0.0088844, - -0.047768, - -0.01527, - 0.11431, - -0.0050756, - -0.041969, - -0.071315, - 0.02968, - 0.029839, - 0.01707, - 0.056933, - 0.011396, - -0.030661 - ], - "childhood": [ - 0.0020067, - -0.0088738, - 0.025675, - -0.011306, - -0.038878, - -0.0017783, - -0.056485, - -0.057783, - 0.063897, - -0.0057617, - 0.01885, - -0.08436, - 0.011656, - -0.00009934, - -0.016468, - -0.033586, - 0.098039, - 0.035766, - 0.03629, - 0.083869, - -0.0074745, - -0.01624, - -0.054169, - 0.077944, - -0.00031538, - 0.010218, - -0.049478, - 0.022811, - -0.0032386, - -0.029923, - 0.022225, - -0.0049134, - 0.010375, - -0.073857, - -0.0031474, - 0.080748, - -0.046164, - -0.047501, - 0.00042526, - 0.0032453, - -0.016959, - -0.042332, - -0.00004774, - -0.00095563, - 0.0084564, - 0.0090173, - -0.0099438, - 0.032781, - -0.020412, - -0.0084403, - 0.00529, - 0.052161, - -0.0096095, - -0.044812, - -0.062708, - -0.046427, - -0.010239, - -0.054084, - -0.049825, - -0.04644, - -0.0043656, - -0.085695, - 0.10971, - -0.0144, - 0.021468, - -0.031924, - -0.01995, - 0.008691, - -0.04063, - 0.0051424, - -0.04916, - -0.046532, - 0.0094119, - -0.0060132, - -0.068979, - 0.025872, - 0.0425, - 0.018615, - 0.052212, - -0.054319, - 0.011483, - 0.051151, - -0.0096489, - 0.045412, - -0.022294, - -0.00092262, - -0.022394, - 0.049967, - -0.030334, - 0.0077698, - 0.037901, - 0.039526, - -0.083801, - 0.056407, - 0.025766, - 0.064999, - 0.031764, - 0.033641, - 0.059548, - 0.021716, - 0.032482, - 0.0074082, - -0.01212, - -0.052869, - 0.026474, - -0.031372, - -0.017491, - -0.022342, - -0.0057421, - 0.037022, - -0.031652, - 0.0023533, - 0.0095736, - 0.028054, - -0.010694, - 0.027438, - -0.03552, - -0.0057663, - -0.010947, - 0.044332, - -0.0024138, - -0.0075561, - -0.030821, - -0.01277, - -0.0051778, - -0.052004, - -0.0022041, - -0.065584, - 0.017411, - 0.039703, - 0.010564, - -0.0020641, - -0.0059754, - -0.034361, - -0.062757, - -0.027027, - 0.043596, - 0.023299, - 0.037688, - 0.018128, - 0.036799, - 0.0067229, - -0.02508, - 0.070659, - 0.035971, - -0.076524, - -0.0029805, - 0.010849, - 0.01768, - -0.027949, - 0.065015, - 0.055129, - -0.00013945, - -0.030381, - 0.0002021, - 0.010627, - 0.025519, - 0.078168, - 0.1008, - -0.059456, - 0.034973, - -0.043519, - -0.038268, - -0.011415, - -0.046575, - -0.043203, - 0.0098452, - -0.017646, - 0.035494, - -0.036091, - -0.0090508, - 0.028757, - -0.01883, - -0.0033156, - 0.074735, - 0.046635, - 0.063244, - 0.012915, - -0.016236, - -0.029575, - 0.032384, - -0.050845, - -0.025153, - -0.00014088, - 0.013812, - -0.081868, - 0.029324, - 0.080282, - 0.030003, - -0.00084226, - 0.030074, - 0.043388, - 0.0073214, - 0.0052417, - 0.025523, - -0.011661, - 0.037856, - 0.061573, - 0.014504, - 0.02462, - -0.092972, - 0.055062, - -0.039389, - -0.04279, - 0.041269, - 0.050921, - 0.037276, - -0.010984, - 0.017927, - -0.031805, - 0.099347, - 0.00070541, - 0.0011205, - 0.0097713, - 0.057604, - 0.0025941, - -0.013616, - -0.028677, - -0.0029209, - -0.11067, - -0.020585, - -0.013043, - 0.028454, - 0.073002, - -0.04803, - -0.0089593, - 0.095167, - 0.11955, - -0.049658, - -0.054795, - 0.028624, - -0.060537, - -0.091529, - 0.0066504, - 0.052297, - 0.077668, - 0.0029646, - 0.040874, - -0.019989, - -0.022781, - -0.0068535, - -0.032917, - -0.0087632, - -0.015026, - -0.039598, - -0.011013, - -0.025509, - -0.10833, - -0.0043114, - 0.016927, - 0.023586, - -0.023672, - -0.014998, - -0.013161, - 0.0066646, - 0.022655, - 0.010297, - -0.0068592, - 0.07375, - 0.011807, - -0.0021536, - -0.045429, - -0.012521, - -0.0016199, - 0.057549, - 0.014114, - -0.043313, - 0.031343, - 0.091404, - -0.054406, - 0.0049516, - 0.053958, - -0.09672, - -0.0075537, - 0.04322, - -0.086691, - 0.0068044, - 0.016514, - 0.019896, - 0.039995, - 0.061081, - -0.034718, - 0.04133, - -0.041833, - 0.026123, - 0.039772, - -0.0082013, - -0.037909, - -0.036309, - -0.0019146, - 0.045993, - 0.065684, - -0.063723, - -0.0063813, - 0.0021191, - 0.056119, - 0.047468, - 0.057012, - 0.0039419, - -0.04294 - ], - "legality": [ - 0.011569, - -0.00063719, - -0.012525, - 0.064818, - -0.077802, - -0.019434, - 0.051368, - -0.084272, - 0.020243, - 0.039708, - -0.060484, - -0.055414, - -0.012225, - 0.0053228, - -0.014372, - 0.055397, - 0.052418, - -0.036059, - 0.056918, - 0.03811, - 0.033731, - 0.014714, - 0.14671, - 0.066213, - 0.015131, - 0.046991, - 0.012925, - -0.021087, - 0.091003, - 0.017288, - -0.012704, - -0.020477, - -0.10217, - -0.073603, - -0.028449, - 0.026769, - 0.04646, - -0.055264, - 0.0021749, - -0.014964, - 0.011823, - -0.14674, - -0.020755, - -0.040218, - 0.013438, - 0.0063732, - -0.0028771, - -0.00074325, - -0.032513, - -0.006294, - 0.0099981, - -0.056475, - 0.010854, - 0.0061875, - -0.056263, - -0.014532, - -0.020989, - 0.0030373, - -0.056944, - 0.028286, - 0.0030771, - -0.013437, - 0.050239, - 0.022544, - 0.065408, - -0.01193, - 0.083217, - -0.064289, - 0.053716, - -0.00064403, - 0.087908, - 0.011458, - -0.031986, - 0.016176, - 0.053791, - -0.056837, - -0.019181, - -0.058322, - -0.019192, - 0.012486, - 0.023745, - -0.018162, - 0.0064697, - 0.081583, - -0.011108, - -0.036511, - 0.024913, - -0.055959, - 0.015231, - 0.015192, - 0.018113, - -0.026215, - -0.088629, - -0.0015071, - 0.00045954, - 0.0099263, - -0.022866, - -0.08029, - -0.0095373, - 0.044176, - -0.038887, - 0.020525, - 0.011825, - -0.048767, - -0.050321, - -0.023677, - 0.04436, - 0.0241, - 0.012722, - -0.016997, - 0.029967, - 0.074541, - 0.09967, - -0.073458, - -0.037934, - 0.023484, - 0.049957, - -0.025509, - -0.06695, - 0.049629, - 0.026789, - 0.028514, - 0.054799, - -0.041759, - 0.055777, - 0.073906, - 0.017884, - -0.12692, - 0.0074442, - 0.14612, - -0.021676, - -0.082241, - 0.037951, - 0.016841, - -0.0011024, - -0.036123, - 0.0037719, - 0.0097136, - 0.0074698, - -0.040715, - 0.0017187, - 0.0049434, - -0.043933, - 0.021083, - 0.0067023, - 0.009773, - -0.014948, - -0.016114, - -0.02453, - -0.047571, - 0.050073, - 0.057189, - 0.050238, - -0.07642, - 0.0013339, - 0.079528, - -0.028798, - -0.079022, - 0.093883, - 0.019246, - 0.039849, - 0.030929, - -0.12778, - 0.062857, - -0.044226, - 0.1042, - 0.1063, - 0.091438, - 0.013147, - -0.0031041, - -0.019211, - 0.019764, - -0.0078633, - -0.021492, - -0.023065, - 0.054964, - 0.0039502, - 0.030978, - 0.013237, - -0.027112, - 0.00017771, - -0.026941, - -0.0036625, - -0.05167, - -0.020721, - -0.061478, - 0.052464, - 0.10134, - 0.092725, - -0.059409, - 0.077823, - 0.075311, - -0.063516, - -0.066581, - 0.035036, - 0.031306, - 0.013435, - -0.029496, - -0.032199, - -0.0041694, - -0.15612, - -0.016863, - 0.051854, - -0.035053, - -0.05993, - -0.036169, - 0.028407, - -0.0012285, - -0.010491, - 0.034577, - 0.10939, - 0.019535, - 0.016997, - 0.061814, - 0.054283, - -0.017141, - 0.021401, - 0.053926, - -0.035905, - -0.096693, - 0.050869, - -0.046455, - -0.026669, - 0.11248, - 0.045278, - -0.0061367, - 0.042424, - 0.049088, - -0.052563, - -0.064763, - -0.036176, - -0.073808, - -0.087991, - -0.0080595, - 0.031375, - -0.018702, - -0.0026367, - -0.015403, - 0.036725, - 0.0094127, - 0.027456, - -0.014799, - -0.036846, - -0.020076, - -0.040816, - -0.03417, - -0.045111, - -0.06408, - -0.020081, - -0.0025932, - 0.015083, - -0.020334, - 0.02369, - -0.028434, - 0.064694, - -0.010902, - -0.032283, - 0.059518, - -0.0064836, - -0.028285, - 0.043452, - 0.047981, - 0.032444, - -0.01923, - 0.032816, - 0.011969, - 0.096215, - 0.052349, - -0.034439, - -0.068536, - -0.021369, - 0.081978, - -0.10826, - -0.040145, - 0.031301, - -0.032429, - -0.068036, - 0.033044, - -0.013531, - -0.095695, - 0.11947, - 0.051375, - -0.10187, - 0.0064708, - 0.077882, - 0.035734, - -0.0062154, - 0.10863, - 0.014628, - -0.0099348, - 0.0043566, - -0.079996, - 0.043704, - 0.0020787, - -0.065246, - -0.010896, - -0.094353, - -0.034294, - -0.11622, - -0.044288 - ], - "feed": [ - 0.03511, - 0.037666, - -0.016218, - -0.13007, - -0.040841, - 0.027137, - -0.13416, - -0.13715, - 0.014237, - -0.058906, - -0.010415, - -0.0056128, - -0.0414, - -0.038387, - 0.070551, - -0.060944, - 0.13539, - -0.028155, - 0.14682, - 0.087644, - 0.20586, - 0.013525, - 0.010079, - 0.020026, - -0.035037, - 0.034535, - -0.010775, - 0.033595, - -0.070078, - 0.0032312, - 0.037943, - 0.013904, - -0.018132, - 0.079072, - 0.041778, - -0.040794, - 0.015777, - 0.10205, - 0.042601, - 0.04537, - -0.03624, - -0.12496, - 0.0047108, - 0.024995, - -0.037091, - -0.0020523, - 0.030646, - 0.10157, - -0.0001811, - -0.016367, - -0.022503, - 0.10313, - 0.11119, - -0.040951, - -0.22125, - -0.02477, - 0.03142, - -0.039138, - -0.081196, - 0.013319, - -0.09953, - 0.013414, - 0.21607, - 0.090282, - 0.047066, - 0.043247, - 0.02508, - 0.038763, - 0.0064401, - -0.092734, - 0.084637, - 0.082376, - 0.1551, - -0.039541, - -0.054512, - 0.061505, - -0.021925, - -0.0078394, - -0.0021868, - -0.034382, - -0.027991, - -0.11885, - 0.01081, - 0.07642, - 0.071365, - 0.06627, - -0.05878, - -0.060187, - 0.049622, - -0.078329, - -0.0035286, - -0.0061312, - -0.10547, - -0.035775, - -0.00025564, - -0.020912, - 0.077056, - -0.010808, - -0.01541, - -0.042331, - 0.016642, - -0.044539, - 0.013859, - 0.029043, - 0.047061, - -0.16822, - -0.051388, - -0.077253, - 0.055113, - 0.12623, - -0.023737, - 0.089486, - 0.12077, - -0.020906, - 0.064044, - -0.043318, - -0.090618, - 0.0019458, - -0.072291, - -0.059107, - -0.054606, - 0.085193, - -0.049895, - -0.066969, - 0.1313, - 0.043194, - -0.12549, - -0.11879, - 0.036636, - 0.14283, - 0.010404, - -0.0095447, - 0.10265, - -0.10388, - 0.1361, - 0.071727, - -0.18909, - 0.1058, - -0.011623, - 0.083424, - -0.014886, - -0.049025, - 0.016362, - 0.015168, - -0.071559, - -0.019427, - 0.043156, - 0.027894, - 0.0098071, - -0.070128, - -0.035824, - 0.10395, - -0.086287, - -0.047035, - 0.11207, - -0.032022, - -0.096016, - 0.092532, - 0.0083531, - -0.051743, - 0.017901, - -0.025116, - -0.063243, - 0.047488, - 0.017998, - 0.025149, - 0.033957, - 0.064445, - -0.09007, - -0.0033726, - -0.056926, - 0.039503, - -0.023398, - 0.012612, - -0.027338, - 0.097804, - 0.013473, - 0.0061286, - -0.029712, - 0.0057894, - -0.0068299, - -0.028958, - 0.023394, - -0.072668, - -0.099174, - -0.088557, - 0.06409, - 0.11631, - -0.070389, - -0.10602, - 0.11358, - 0.0040876, - -0.061759, - -0.025314, - 0.054319, - -0.061361, - 0.017742, - 0.03349, - 0.034728, - 0.03709, - -0.25094, - 0.14884, - -0.0019494, - -0.085281, - -0.034578, - 0.029587, - -0.043977, - -0.061145, - -0.083626, - -0.022045, - 0.11902, - -0.014655, - 0.019186, - -0.033391, - -0.031054, - 0.01457, - 0.029642, - 0.020942, - 0.032948, - 0.05279, - 0.012503, - 0.067678, - -0.018532, - 0.14115, - 0.089514, - -0.085096, - 0.0093349, - 0.073519, - 0.015454, - -0.023328, - 0.037887, - -0.063943, - -0.061826, - -0.047191, - 0.093618, - 0.044437, - 0.033176, - 0.032651, - -0.047463, - -0.1738, - 0.18408, - 0.039103, - 0.0017334, - -0.024285, - -0.10272, - 0.10763, - -0.021983, - -0.044495, - 0.011805, - 0.10813, - 0.036537, - -0.048603, - 0.020981, - 0.11103, - -0.035642, - -0.022848, - 0.073007, - 0.036562, - -0.040206, - 0.073107, - -0.0039651, - 0.04187, - 0.067373, - -0.098962, - 0.061047, - -0.02004, - 0.073448, - 0.023473, - -0.021437, - 0.064935, - -0.032946, - 0.14905, - -0.15214, - -0.11334, - -0.056204, - 0.047007, - -0.055925, - -0.10659, - 0.02496, - -0.0093368, - 0.024589, - 0.066108, - 0.10542, - 0.034864, - 0.013011, - 0.05409, - 0.073534, - 0.063131, - 0.017673, - 0.038042, - -0.014871, - 0.038812, - -0.086176, - -0.057869, - -0.0058854, - -0.087229, - -0.004221, - -0.025487, - -0.00079522, - 0.18088 - ], - "logistics": [ - 0.01553, - -0.046129, - -0.021819, - -0.012027, - -0.037557, - -0.04851, - 0.01954, - -0.081148, - 0.035682, - 0.027927, - 0.0002967, - -0.0085955, - 0.042412, - 0.056963, - 0.018328, - -0.012002, - 0.057398, - -0.00387, - 0.043184, - 0.040082, - -0.013708, - 0.0021276, - 0.016878, - 0.069679, - -0.027768, - 0.03555, - 0.025179, - 0.034921, - 0.036792, - 0.022982, - 0.023296, - 0.031646, - -0.0024799, - -0.072153, - -0.01389, - 0.049168, - 0.0050604, - 0.016985, - 0.06556, - -0.069029, - -0.059225, - -0.16402, - 0.044787, - -0.016929, - 0.0028333, - -0.018262, - -0.00044649, - -0.047629, - -0.028634, - -0.025297, - -0.024402, - -0.0753, - 0.035679, - -0.0085451, - -0.033191, - 0.054288, - -0.062699, - -0.012452, - 0.0087319, - -0.0086694, - 0.00016795, - 0.0099959, - 0.068751, - 0.042473, - 0.077818, - -0.010328, - 0.047263, - -0.063376, - -0.036471, - -0.0082487, - -0.0085173, - -0.03873, - 0.033196, - -0.015163, - 0.052102, - -0.016949, - -0.023631, - -0.050546, - -0.038759, - -0.035025, - -0.044037, - -0.020161, - -0.079384, - 0.046606, - -0.0045326, - -0.035972, - 0.014738, - -0.043743, - 0.025424, - -0.033228, - 0.067694, - -0.015893, - -0.072713, - -0.027639, - -0.023589, - 0.028665, - -0.068623, - 0.02215, - -0.030972, - -0.010364, - 0.018856, - -0.020345, - -0.033015, - 0.019184, - 0.0019233, - -0.0033768, - -0.0074545, - 0.041871, - 0.00068581, - -0.010471, - 0.014584, - 0.070372, - 0.054222, - 0.016048, - 0.02556, - -0.044877, - -0.032742, - 0.0033201, - -0.064653, - 0.0036446, - 0.043224, - 0.011499, - -0.014552, - 0.029129, - 0.065783, - 0.034251, - -0.074923, - -0.084838, - 0.030075, - 0.16584, - 0.031249, - 0.0095846, - 0.047239, - -0.027891, - 0.05045, - -0.039117, - 0.055477, - -0.016836, - -0.027721, - 0.039059, - -0.067814, - -0.032953, - -0.010417, - 0.032801, - 0.018583, - 0.009602, - -0.051809, - 0.0057424, - -0.04346, - -0.0014203, - 0.012397, - 0.049331, - -0.0046371, - -0.13035, - 0.018463, - 0.057905, - -0.057863, - -0.017597, - 0.052256, - -0.0023338, - 0.044156, - 0.0040824, - -0.087128, - 0.024351, - -0.012724, - 0.043129, - -0.023785, - -0.035593, - 0.034731, - 0.0073144, - 0.058775, - -0.01465, - -0.039142, - -0.0205, - 0.0016761, - 0.063793, - -0.042405, - 0.024067, - -0.052139, - 0.053648, - -0.039913, - 0.014518, - -0.00016686, - -0.049337, - 0.010495, - -0.011945, - -0.02308, - 0.09553, - -0.031747, - -0.038206, - 0.01828, - 0.088855, - -0.043903, - -0.070816, - 0.045342, - 0.025742, - -0.051744, - 0.006485, - -0.010723, - -0.0086365, - -0.14872, - -0.0027617, - 0.044583, - 0.091162, - -0.045372, - -0.0059947, - -0.1379, - -0.034933, - 0.046363, - -0.015614, - 0.074657, - 0.056973, - -0.000355, - 0.0013823, - -0.033729, - 0.075266, - -0.0027561, - -0.045887, - -0.083061, - -0.0075603, - 0.061606, - -0.04754, - -0.0035086, - 0.073123, - 0.068296, - 0.016141, - 0.031451, - 0.073041, - 0.0094794, - -0.0031643, - -0.023457, - -0.03048, - -0.032436, - 0.0035062, - 0.027131, - 0.001012, - -0.011513, - 0.041155, - 0.013963, - -0.012999, - 0.04143, - -0.00077554, - 0.029643, - -0.071116, - -0.0088552, - 0.012355, - -0.028151, - -0.013888, - 0.016282, - 0.085508, - -0.014837, - 0.062383, - 0.014144, - 0.035254, - 0.019845, - 0.075794, - 0.030606, - 0.044834, - 0.057427, - 0.016375, - -0.011434, - -0.0031982, - -0.058693, - 0.021406, - 0.0084707, - 0.0073771, - -0.015907, - 0.0043969, - -0.039157, - -0.037996, - -0.021066, - 0.087081, - -0.11306, - -0.017525, - 0.02829, - 0.03051, - -0.050954, - -0.00058796, - -0.03608, - 0.036255, - 0.089217, - 0.011324, - -0.019923, - -0.0089578, - -0.013619, - -0.037844, - -0.017605, - 0.0073453, - -0.036166, - -0.025631, - -0.043985, - 0.029594, - -0.028261, - -0.0036367, - 0.039785, - -0.091185, - -0.024759, - 0.078701, - -0.024408, - -0.019394 - ], - "artistry": [ - -0.013695, - -0.011334, - 0.029416, - 0.013876, - -0.06614, - 0.0013923, - -0.048015, - -0.057423, - 0.050369, - -0.010823, - 0.027463, - -0.061595, - -0.023335, - -0.005609, - -0.031078, - 0.05062, - 0.052353, - 0.043392, - -0.0036616, - 0.0064096, - -0.0010209, - -0.014682, - 0.028947, - 0.065754, - -0.040842, - 0.0083409, - -0.0094247, - 0.04205, - 0.06457, - 0.0062859, - -0.050406, - -0.03614, - 0.046549, - -0.049905, - -0.011034, - 0.069741, - 0.056991, - -0.022213, - -0.024249, - 0.026541, - -0.043591, - -0.079203, - 0.019865, - -0.026142, - 0.029077, - -0.061065, - 0.063123, - -0.004432, - -0.067058, - -0.087919, - 0.028007, - -0.024952, - -0.039968, - 0.080549, - -0.019822, - 0.051225, - -0.029195, - 0.03034, - -0.011878, - -0.044804, - 0.023704, - -0.041185, - 0.039193, - -0.041039, - 0.047649, - 0.021287, - -0.038175, - -0.053148, - 0.052124, - -0.0068281, - 0.057524, - 0.017168, - -0.017869, - 0.02446, - 0.0098955, - 0.045926, - 0.011932, - -0.059188, - 0.021962, - -0.025355, - -0.070125, - 0.0017632, - -0.028735, - 0.047745, - 0.056966, - -0.093855, - -0.021014, - -0.0046628, - 0.0047772, - 0.019103, - -0.030827, - 0.073418, - -0.10067, - 0.0061666, - 0.0091618, - 0.10595, - 0.017896, - 0.076688, - 0.037804, - 0.048534, - 0.060223, - -0.014089, - 0.029746, - 0.090542, - -0.024196, - -0.051508, - -0.04016, - 0.069085, - -0.042186, - 0.028484, - 0.019377, - 0.13608, - 0.055449, - -0.015549, - -0.050527, - -0.015711, - -0.018524, - 0.001068, - -0.030535, - 0.061419, - -0.03274, - -0.056072, - -0.059887, - -0.025311, - 0.030264, - 0.010553, - 0.041141, - -0.066843, - 0.013954, - 0.13673, - -0.036237, - -0.0069672, - -0.051171, - -0.0082615, - -0.013561, - -0.073752, - 0.022546, - 0.025149, - 0.036491, - -0.065985, - 0.0028651, - -0.0013756, - 0.0067682, - 0.013978, - -0.029541, - -0.04458, - -0.078876, - -0.031601, - -0.022847, - 0.0078797, - 0.0085249, - 0.10452, - 0.011135, - -0.032534, - -0.035011, - 0.066982, - 0.075141, - 0.045214, - -0.041833, - -0.022263, - 0.0389, - 0.062207, - -0.12685, - 0.026968, - -0.020411, - 0.11721, - -0.003748, - -0.00086589, - -0.015468, - 0.020053, - 0.14561, - 0.09678, - 0.019779, - 0.0086228, - 0.057869, - 0.057384, - 0.0034994, - 0.044305, - -0.039468, - -0.02154, - -0.051329, - -0.025572, - -0.0072833, - -0.077233, - -0.054364, - -0.082337, - 0.044442, - 0.15275, - -0.019674, - 0.015731, - 0.035502, - 0.10382, - 0.016246, - -0.077147, - -0.092231, - 0.026598, - 0.024759, - -0.037522, - 0.017077, - 0.00044068, - -0.11868, - -0.027053, - -0.0095692, - -0.047768, - -0.021084, - -0.014938, - -0.001768, - -0.024516, - 0.033664, - -0.034642, - 0.095952, - 0.017016, - 0.025956, - 0.01933, - 0.008777, - 0.0074379, - 0.047476, - 0.05403, - -0.094164, - 0.011952, - -0.016703, - -0.02518, - 0.002172, - 0.1037, - 0.030792, - 0.017058, - 0.065876, - 0.04825, - -0.014106, - -0.066313, - 0.030487, - -0.038274, - -0.13101, - -0.013697, - 0.0015602, - 0.010174, - -0.016746, - -0.099008, - 0.001741, - -0.042833, - -0.031505, - -0.026174, - -0.096107, - -0.0489, - 0.085316, - -0.022524, - -0.11072, - -0.026165, - 0.02594, - 0.044932, - 0.044832, - -0.061293, - -0.048919, - 0.0066887, - 0.11333, - 0.035729, - -0.051017, - 0.048228, - 0.044945, - 0.055756, - 0.024827, - 0.013004, - 0.065536, - 0.01659, - 0.061095, - -0.0076319, - 0.08387, - 0.050966, - 0.026457, - -0.045419, - 0.023508, - 0.066748, - -0.1139, - -0.023833, - -0.0081823, - -0.015598, - -0.020694, - 0.04485, - -0.012161, - 0.05198, - 0.10277, - 0.077142, - -0.0048694, - -0.05201, - 0.0093846, - -0.019644, - 0.02589, - 0.056788, - -0.05664, - -0.0051677, - -0.049099, - -0.036941, - -0.0057545, - 0.012015, - -0.0042423, - 0.061712, - 0.064222, - -0.0043626, - 0.053858, - -0.028486 - ], - "industrial": [ - 0.029895, - -0.058658, - 0.021423, - 0.005673, - -0.034591, - -0.036186, - 0.038932, - -0.068575, - 0.079709, - 0.01252, - -0.047223, - -0.057472, - -0.012226, - 0.011061, - 0.027737, - 0.02644, - 0.084781, - 0.069786, - 0.052009, - 0.0031189, - 0.045943, - 0.00463, - 0.0082832, - 0.1004, - -0.019249, - -0.047142, - -0.018942, - 0.0006487, - 0.0077434, - -0.015344, - -0.017028, - -0.0021826, - 0.0088092, - -0.057666, - 0.044946, - 0.072389, - -0.0021042, - 0.018152, - -0.001445, - 0.061041, - 0.0028529, - -0.10045, - 0.0071218, - -0.001501, - -0.023934, - -0.012842, - 0.0031298, - -0.010488, - -0.044568, - -0.012676, - 0.012224, - 0.040305, - -0.026611, - 0.020506, - 0.026796, - 0.0071536, - 0.024626, - -0.00052448, - -0.011647, - -0.010272, - 0.0058101, - 0.025382, - 0.095205, - -0.002357, - 0.072278, - 0.0074344, - 0.00074369, - -0.044331, - 0.049006, - -0.0083552, - 0.07646, - -0.0050206, - 0.042521, - -0.0087039, - -0.012219, - -0.042443, - -0.042001, - -0.023097, - 0.038619, - -0.019707, - -0.0093544, - 0.03406, - -0.076138, - 0.044127, - -0.031891, - 0.031539, - -0.020424, - 0.0097109, - 0.0084808, - -0.014931, - -0.0031039, - 0.059498, - -0.070219, - 0.018006, - 0.022096, - 0.060824, - -0.022602, - -0.061252, - -0.014513, - 0.039167, - 0.01072, - -0.011055, - -0.02081, - -0.028682, - 0.043461, - -0.088001, - 0.063852, - 0.0030036, - 0.0037806, - 0.021501, - -0.033455, - 0.10527, - 0.053341, - 0.069607, - -0.019457, - -0.010267, - -0.0066323, - -0.00288, - -0.035495, - -0.0065527, - -0.059226, - -0.0086409, - -0.044273, - -0.011861, - 0.067129, - 0.021926, - -0.037293, - -0.061366, - 0.0013118, - 0.058634, - 0.019605, - 0.040738, - -0.021129, - -0.0085726, - 0.005647, - -0.0028215, - 0.027995, - 0.011785, - -0.014018, - 0.017877, - 0.0024233, - 0.023439, - 0.00057307, - 0.058807, - 0.019758, - -0.027655, - 0.035562, - -0.0046121, - 0.015405, - -0.022052, - 0.053933, - 0.1291, - 0.038518, - -0.033655, - 0.046847, - 0.0047769, - -0.016859, - 0.031905, - 0.010974, - 0.019622, - 0.015576, - -0.075493, - -0.065614, - 0.033225, - 0.022302, - 0.046402, - -0.0073343, - -0.021383, - 0.05374, - -0.029663, - 0.036681, - 0.035561, - -0.010178, - 0.046707, - -0.0024358, - 0.074395, - -0.013651, - 0.040982, - -0.038973, - 0.046121, - -0.016803, - -0.01746, - -0.02694, - 0.0099502, - -0.016947, - -0.04861, - -0.0238, - 0.097834, - -0.037901, - 0.015583, - -0.0057955, - 0.030389, - 0.058303, - -0.024906, - 0.0089863, - 0.013475, - -0.035154, - -0.0095707, - 0.0094869, - -0.0040277, - -0.13012, - 0.016543, - -0.0036793, - -0.02184, - -0.028432, - 0.0069195, - -0.050019, - -0.017022, - -0.015956, - 0.018886, - 0.14083, - -0.0090253, - -0.017346, - -0.028196, - 0.00099284, - 0.061493, - 0.025637, - -0.012726, - 0.0011414, - -0.058616, - 0.0087197, - -0.037084, - -0.027733, - 0.060421, - -0.066395, - 0.044591, - -0.010516, - 0.044145, - 0.015954, - -0.035051, - -0.01589, - -0.014275, - -0.04628, - 0.005211, - 0.0077267, - -0.021822, - 0.0086483, - -0.0041993, - -0.0054912, - -0.041488, - 0.011726, - 0.066857, - -0.013789, - -0.00048966, - -0.074112, - -0.015479, - -0.029259, - -0.014927, - 0.019789, - 0.010334, - -0.0069157, - -0.042672, - -0.024328, - -0.030933, - -0.013997, - 0.049075, - 0.033677, - 0.029297, - 0.020408, - -0.055763, - 0.030349, - 0.042022, - 0.022588, - -0.0055393, - 0.020599, - -0.018921, - 0.0084231, - -0.0012603, - 0.0027196, - -0.00681, - -0.018284, - 0.055724, - -0.092476, - -0.024958, - 0.021491, - -0.066242, - 0.044429, - 0.065258, - 0.009177, - 0.027321, - 0.14296, - 0.069684, - -0.018305, - -0.0015335, - 0.000087605, - 0.038221, - -0.031146, - -0.042499, - 0.020622, - 0.029549, - -0.026546, - 0.053829, - -0.020362, - 0.036791, - -0.027499, - 0.011067, - -0.023533, - 0.016814, - -0.0024882, - -0.012472 - ], - "dwelling": [ - 0.0060747, - -0.038192, - 0.0063725, - 0.0069444, - -0.020671, - -0.0072017, - -0.064023, - -0.090134, - -0.00022339, - 0.0010389, - 0.020225, - -0.092591, - -0.050355, - -0.014178, - -0.0077317, - -0.0581, - 0.029811, - -0.013691, - -0.0055665, - 0.0078731, - 0.023038, - -0.041515, - 0.016503, - 0.0092919, - 0.074968, - -0.031646, - -0.044119, - 0.051609, - 0.02085, - -0.01926, - -0.022189, - 0.04201, - -0.061826, - -0.018581, - 0.022047, - -0.014352, - 0.02813, - 0.036181, - -0.026903, - 0.011893, - 0.036813, - -0.087691, - 0.060013, - 0.011819, - -0.088784, - -0.047411, - -0.068222, - -0.019597, - -0.016535, - 0.043399, - 0.034115, - -0.014407, - -0.043027, - 0.028547, - -0.050791, - 0.033931, - 0.047055, - -0.035957, - -0.015826, - -0.04725, - 0.036969, - 0.026301, - 0.1131, - -0.048158, - 0.032394, - -0.018801, - -0.025552, - 0.023812, - -0.056851, - 0.0073137, - 0.025031, - -0.0067401, - 0.070496, - -0.062737, - 0.010859, - -0.017828, - -0.016508, - -0.024359, - -0.027931, - 0.03228, - 0.036295, - -0.032946, - 0.026521, - 0.057923, - -0.075613, - -0.016339, - 0.015827, - -0.030249, - -0.032336, - 0.0090957, - -0.060656, - 0.018346, - -0.049305, - -0.026684, - -0.010965, - 0.074755, - -0.016153, - 0.033609, - 0.043059, - -0.0027347, - 0.053548, - 0.0070297, - 0.041637, - 0.012337, - 0.074511, - -0.1144, - 0.0044726, - 0.090409, - 0.040252, - -0.0059804, - -0.0098276, - 0.064634, - 0.027327, - 0.028031, - 0.022116, - -0.026998, - -0.027762, - -0.030531, - -0.053975, - -0.0024434, - -0.047058, - 0.074859, - 0.028456, - 0.0092029, - 0.074411, - -0.052224, - 0.026812, - -0.092857, - 0.043165, - 0.050004, - 0.057209, - 0.0084492, - 0.05423, - -0.019275, - -0.027904, - 0.0047783, - 0.00069622, - 0.064659, - 0.0048579, - -0.0036598, - -0.011136, - -0.021363, - 0.029486, - -0.014827, - 0.010954, - -0.028005, - 0.044536, - 0.046798, - 0.075751, - -0.041913, - 0.011598, - 0.014259, - -0.0057249, - -0.09777, - 0.019542, - 0.006095, - 0.0046556, - -0.013493, - -0.023898, - -0.013776, - 0.014795, - 0.014814, - -0.044717, - 0.027845, - 0.041144, - -0.031824, - 0.033797, - -0.039635, - -0.0024799, - 0.066152, - 0.013508, - -0.0288, - 0.003851, - 0.054004, - -0.023268, - 0.040446, - 0.072265, - 0.027938, - -0.0011608, - 0.016415, - 0.031586, - 0.029659, - -0.0046015, - 0.033607, - -0.063916, - -0.030909, - 0.02685, - 0.073385, - -0.021663, - -0.0023586, - 0.047204, - 0.034458, - 0.0041556, - 0.056259, - -0.037975, - 0.03397, - -0.026252, - 0.091939, - -0.0044889, - 0.058591, - -0.15319, - 0.090851, - -0.053373, - -0.068953, - 0.015244, - 0.013315, - 0.015686, - -0.003156, - -0.013593, - -0.024023, - 0.071962, - -0.036509, - -0.020119, - 0.00038134, - -0.024785, - 0.030856, - -0.012815, - 0.056689, - 0.073918, - 0.01641, - -0.003302, - -0.0074198, - 0.024921, - 0.080779, - -0.052842, - -0.048005, - 0.024776, - 0.043421, - -0.026129, - -0.0033524, - 0.031391, - 0.022115, - -0.050951, - 0.0047475, - -0.011996, - 0.0036736, - 0.0019228, - 0.0086469, - 0.023522, - -0.042676, - 0.071921, - -0.0020292, - -0.011648, - 0.034685, - -0.091458, - 0.035545, - -0.012973, - 0.034364, - -0.073048, - 0.0074711, - -0.046806, - -0.092232, - -0.035452, - -0.052877, - -0.0077675, - -0.07047, - -0.023414, - 0.029489, - 0.029554, - -0.021754, - 0.019466, - -0.045152, - -0.04778, - 0.034494, - 0.035237, - -0.011917, - 0.053506, - -0.019043, - -0.01757, - -0.026533, - -0.11111, - 0.043903, - -0.094192, - -0.026436, - 0.0094963, - -0.047467, - 0.086611, - 0.021069, - 0.011511, - 0.013948, - 0.030281, - -0.017855, - 0.01419, - -0.000024017, - 0.019048, - 0.070313, - 0.01398, - -0.013236, - -0.0043158, - 0.043793, - 0.041694, - 0.062186, - 0.0055439, - -0.073636, - -0.039424, - 0.028378, - 0.047295, - 0.073162, - -0.055327, - 0.036612 - ], - "occupations": [ - 0.01604, - -0.03052, - 0.059901, - 0.00036734, - 0.0099363, - -0.050021, - 0.043455, - -0.068265, - 0.04492, - 0.015179, - -0.020261, - -0.030004, - -0.10123, - 0.0025725, - -0.0013529, - 0.063035, - 0.030584, - 0.05122, - 0.02364, - -0.009399, - 0.0086028, - -0.024754, - 0.029049, - 0.070922, - -0.056335, - -0.0047083, - -0.025684, - 0.0068164, - 0.057053, - -0.013517, - 0.014985, - -0.031981, - 0.015116, - -0.03938, - 0.046882, - 0.053929, - 0.016128, - 0.0032784, - -0.0055876, - 0.0015026, - -0.0028924, - -0.051236, - 0.01043, - -0.027059, - 0.0037456, - 0.02173, - -0.023879, - -0.053778, - -0.021058, - -0.013537, - -0.062798, - -0.0019845, - -0.014076, - -0.037834, - -0.057923, - -0.0022052, - -0.030314, - 0.069405, - -0.011614, - -0.078906, - -0.044608, - 0.029406, - 0.13038, - 0.0040364, - 0.041206, - -0.01233, - -0.014341, - 0.0067621, - 0.026276, - -0.069815, - 0.017412, - -0.026655, - 0.015891, - 0.015828, - 0.060828, - -0.020552, - 0.031666, - -0.020937, - 0.0049469, - -0.020366, - 0.017002, - 0.0042326, - -0.050631, - 0.046359, - -0.011913, - -0.038634, - -0.0085673, - 0.014352, - -0.063267, - 0.032813, - 0.032479, - 0.034341, - -0.052847, - 0.028173, - -0.02776, - 0.028329, - -0.043367, - 0.039935, - 0.029529, - 0.032127, - 0.023926, - -0.019371, - 0.049925, - -0.030193, - 0.041275, - -0.02149, - 0.032539, - 0.049754, - 0.015289, - -0.0050029, - 0.0094695, - 0.0052447, - 0.039345, - 0.0297, - -0.021987, - -0.036617, - -0.026913, - -0.005016, - -0.048349, - -0.00079955, - -0.022657, - -0.0041827, - -0.0057875, - -0.02477, - 0.09712, - 0.051192, - -0.025116, - -0.031685, - 0.0054729, - 0.092965, - 0.013975, - 0.082488, - 0.016964, - 0.013876, - -0.0035434, - 0.011355, - -0.029494, - 0.027368, - -0.015956, - 0.036424, - -0.01482, - -0.030722, - -0.0089603, - 0.052984, - 0.037967, - -0.01781, - -0.057631, - -0.051323, - 0.033004, - 0.012811, - 0.051293, - 0.057893, - -0.065283, - -0.023967, - 0.015561, - 0.031829, - -0.019102, - 0.022638, - -0.01548, - 0.014396, - 0.021347, - 0.0069014, - -0.001035, - 0.062956, - 0.024816, - -0.035972, - -0.058325, - -0.025907, - -0.0031102, - -0.025331, - 0.047541, - -0.0060664, - 0.048745, - 0.064064, - -0.0045964, - 0.044943, - -0.024184, - 0.019863, - -0.00047075, - 0.053229, - 0.037698, - -0.01779, - -0.020453, - 0.011214, - -0.021363, - -0.032832, - 0.090833, - 0.061066, - -0.019239, - 0.036411, - 0.012539, - 0.074409, - -0.062441, - 0.015119, - 0.0316, - 0.078517, - -0.035245, - 0.035078, - -0.016442, - 0.018387, - -0.12444, - 0.007071, - -0.0089103, - -0.026437, - -0.0015656, - 0.037853, - 0.026091, - 0.031793, - 0.064621, - 0.009555, - 0.11144, - 0.049215, - 0.027368, - 0.045534, - 0.038896, - 0.079609, - 0.011058, - -0.0065501, - -0.058193, - -0.01992, - 0.01744, - -0.010945, - -0.045359, - 0.090909, - -0.019903, - -0.023177, - 0.046343, - 0.054392, - -0.035341, - -0.0058191, - 0.054266, - 0.008283, - -0.053897, - -0.048174, - 0.044506, - 0.012937, - 0.028519, - -0.013357, - 0.0018789, - 0.030816, - -0.021248, - 0.027988, - -0.026131, - 0.00038379, - 0.026119, - -0.043991, - -0.032069, - -0.092389, - 0.021953, - -0.019082, - 0.00034325, - 0.00036026, - 0.031416, - -0.048311, - -0.019802, - 0.0054003, - -0.016185, - 0.039851, - 0.095415, - -0.013831, - -0.0051462, - -0.028716, - 0.019484, - -0.018645, - -0.027107, - 0.0048303, - -0.009473, - -0.020087, - -0.011732, - -0.069704, - -0.045443, - 0.067364, - -0.06245, - -0.021116, - 0.025902, - -0.02016, - 0.021293, - -0.011135, - 0.072154, - 0.0048439, - 0.036581, - 0.053857, - 0.044029, - 0.015936, - 0.022015, - 0.11514, - -0.082497, - -0.024426, - 0.0060559, - 0.025367, - 0.037931, - 0.023923, - -0.04672, - 0.035194, - -0.028558, - 0.064189, - -0.025113, - 0.065411, - -0.041754, - -0.032891 - ], - "smartcard": [ - -0.095137, - -0.044747, - -0.076147, - -0.0015887, - -0.016499, - -0.043133, - 0.047506, - -0.11407, - -0.03071, - 0.024979, - 0.016937, - 0.026257, - -0.022156, - -0.024642, - -0.065242, - 0.0072545, - 0.12726, - 0.056356, - 0.061693, - -0.020723, - 0.0046608, - 0.029835, - 0.053482, - 0.014066, - 0.033328, - 0.036748, - 0.035559, - -0.028621, - 0.09295, - -0.012899, - 0.058919, - -0.0094701, - -0.078396, - -0.021284, - 0.043289, - -0.027891, - 0.0014368, - 0.05956, - -0.046714, - -0.077638, - 0.039712, - -0.1455, - -0.00031544, - -0.05549, - -0.0088788, - -0.012692, - -0.017161, - -0.0008802, - 0.069624, - -0.023984, - -0.039801, - -0.019792, - -0.032482, - -0.051027, - -0.034975, - 0.048872, - 0.066452, - 0.037976, - -0.063714, - -0.035147, - 0.025935, - -0.034551, - 0.058332, - 0.020347, - -0.044394, - 0.015678, - 0.011615, - 0.0069259, - -0.045123, - 0.0070866, - -0.050129, - -0.042877, - 0.037707, - 0.020136, - -0.091028, - 0.062459, - -0.042988, - -0.030433, - 0.0026412, - -0.022212, - -0.016353, - -0.004451, - -0.01356, - 0.030505, - -0.013276, - -0.034483, - -0.069014, - -0.022882, - -0.042267, - -0.034923, - 0.061023, - 0.013273, - -0.053908, - -0.019362, - -0.039354, - 0.073921, - 0.054147, - -0.04928, - -0.053779, - 0.072345, - -0.069395, - 0.05147, - 0.052605, - -0.047367, - -0.028305, - -0.11073, - -0.028742, - 0.060477, - 0.057958, - -0.0062023, - 0.00072338, - 0.085085, - 0.068487, - -0.053003, - -0.025571, - -0.014013, - -0.018378, - 0.037633, - -0.041568, - 0.070942, - 0.092872, - 0.080117, - -0.085461, - -0.016947, - 0.072629, - -0.0041094, - -0.0058168, - -0.043753, - -0.0061864, - 0.063856, - -0.04338, - -0.012689, - -0.03756, - -0.068117, - 0.05471, - 0.034205, - 0.049975, - 0.064131, - -0.03824, - 0.018183, - 0.048553, - 0.095489, - -0.033862, - -0.013356, - -0.027079, - -0.054661, - -0.059581, - 0.024761, - -0.048874, - -0.0072779, - 0.0046921, - 0.071615, - 0.027671, - -0.034443, - -0.023565, - -0.015564, - 0.01346, - 0.05555, - -0.024928, - -0.017597, - 0.044586, - -0.024234, - -0.0020227, - -0.0060581, - -0.04769, - -0.070178, - 0.1005, - 0.071268, - 0.084478, - 0.046537, - 0.0055978, - 0.12405, - -0.055253, - -0.045888, - -0.029491, - 0.031665, - -0.092794, - -0.04839, - -0.032108, - 0.016076, - -0.013203, - -0.037288, - -0.050629, - 0.0021748, - 0.03698, - 0.023535, - -0.0047256, - 0.095016, - 0.0025857, - -0.0022655, - -0.028299, - 0.035947, - 0.041162, - -0.0039354, - 0.10914, - 0.00070909, - -0.086768, - -0.092147, - -0.017233, - 0.0097229, - -0.11503, - 0.049103, - 0.010342, - 0.03164, - -0.070254, - -0.023915, - -0.0089277, - -0.03789, - -0.074987, - -0.036144, - 0.090926, - 0.0052114, - 0.037589, - 0.017835, - -0.047171, - -0.0042784, - -0.024631, - -0.012701, - 0.010879, - 0.020432, - 0.078708, - 0.080088, - -0.006779, - 0.11058, - 0.013951, - -0.020295, - -0.027821, - -0.00077592, - -0.018031, - -0.014275, - -0.024325, - -0.052421, - -0.030241, - -0.10771, - 0.08501, - -0.023464, - -0.00081101, - 0.029606, - 0.040313, - 0.024629, - 0.080182, - -0.063766, - 0.025539, - -0.03187, - -0.043222, - -0.0074108, - 0.031466, - 0.049199, - 0.025744, - 0.0073634, - -0.01995, - -0.0060448, - 0.019036, - 0.004633, - -0.0043647, - 0.048534, - 0.021233, - -0.025437, - 0.011792, - -0.0013928, - -0.03584, - 0.09398, - -0.043144, - 0.015513, - -0.018265, - -0.053625, - -0.00092245, - -0.0042833, - 0.074668, - -0.043792, - -0.044354, - 0.099027, - -0.061448, - -0.031692, - -0.046822, - -0.065883, - 0.11236, - 0.076895, - 0.061341, - 0.031604, - 0.050846, - -0.041716, - -0.031289, - -0.013865, - -0.038982, - -0.070898, - -0.069544, - -0.020382, - 0.013817, - -0.0059839, - 0.080413, - 0.049631, - 0.01068, - 0.0060649, - 0.041098, - 0.061331, - -0.019865, - -0.019325, - -0.11818, - 0.024219 - ], - "traveller": [ - -0.066848, - 0.0008254, - 0.023669, - 0.016033, - -0.068321, - -0.020043, - -0.05097, - -0.085423, - 0.057819, - 0.025754, - 0.010718, - -0.023518, - -0.044936, - -0.080658, - 0.016166, - -0.0070462, - 0.019183, - -0.034368, - 0.00057451, - 0.047116, - -0.049621, - 0.0015238, - -0.0095943, - 0.07247, - 0.024086, - 0.028773, - 0.0041868, - 0.04186, - -0.037386, - -0.039126, - 0.0059034, - 0.040738, - -0.014411, - 0.037049, - -0.0063924, - -0.021895, - 0.0044975, - 0.047714, - 0.02269, - -0.011089, - 0.064423, - -0.11121, - -0.033617, - -0.0062484, - -0.058902, - 0.056533, - 0.031679, - -0.031986, - 0.018877, - 0.0286, - 0.009577, - 0.008709, - -0.034014, - -0.071863, - -0.03152, - 0.014865, - 0.0077852, - 0.021933, - -0.026685, - -0.045812, - 0.022976, - 0.00099351, - 0.094188, - 0.023921, - 0.024413, - 0.021918, - -0.026195, - -0.0040601, - -0.055681, - 0.039871, - 0.023207, - -0.060266, - 0.09303, - -0.011837, - 0.030572, - 0.055101, - 0.038124, - -0.027085, - -0.034115, - -0.021197, - -0.017959, - 0.034864, - 0.026103, - 0.063826, - -0.013579, - -0.052332, - 0.03004, - 0.068233, - -0.031809, - -0.03726, - 0.032013, - 0.053055, - -0.082662, - -0.10269, - -0.027532, - 0.09374, - -0.0052414, - 0.0059156, - -0.029002, - -0.019702, - 0.01399, - 0.052745, - 0.014539, - -0.031391, - -0.0044458, - -0.10618, - 0.017879, - -0.010518, - 0.045938, - 0.06442, - -0.0076135, - -0.016633, - 0.044961, - 0.0042519, - -0.040266, - -0.000081056, - 0.01799, - 0.021591, - -0.035973, - 0.058468, - 0.09543, - -0.033568, - -0.071842, - 0.03137, - 0.10431, - -0.059118, - -0.0031223, - -0.052149, - 0.024292, - 0.063702, - 0.010608, - 0.022248, - -0.063139, - -0.064076, - -0.0045929, - -0.0056768, - 0.044426, - 0.098771, - 0.0086086, - 0.0047239, - 0.0066067, - -0.040536, - -0.0037297, - -0.0073765, - 0.019356, - 0.035975, - -0.010577, - 0.029966, - -0.061369, - -0.050503, - 0.062604, - 0.057282, - -0.051916, - -0.085811, - 0.038528, - -0.0024565, - -0.055029, - 0.0026051, - -0.050463, - -0.091622, - 0.02592, - -0.056776, - -0.018576, - 0.033792, - -0.012202, - -0.0055105, - 0.078459, - -0.095329, - 0.05417, - 0.080317, - -0.058646, - 0.015149, - -0.05786, - -0.027091, - 0.039001, - 0.049819, - -0.040954, - -0.031628, - -0.011131, - -0.0015512, - -0.048985, - 0.017433, - 0.01355, - -0.039626, - -0.037561, - -0.12212, - 0.074518, - 0.05785, - -0.015624, - -0.02874, - 0.025145, - 0.038188, - -0.01518, - -0.0073129, - -0.047314, - 0.028644, - -0.0068632, - 0.0039281, - -0.022318, - 0.054188, - -0.096731, - 0.081163, - 0.034615, - 0.0052855, - 0.004384, - 0.030087, - -0.033673, - 0.027464, - -0.0025867, - -0.043403, - 0.084475, - -0.013475, - -0.019078, - -0.067245, - -0.052054, - 0.031825, - 0.010112, - -0.037097, - 0.051377, - 0.03986, - 0.017328, - 0.022821, - 0.014008, - 0.0835, - 0.024673, - 0.0057116, - -0.062449, - 0.1075, - -0.0051072, - 0.0075671, - -0.011099, - -0.00044838, - -0.0016492, - -0.061378, - 0.010337, - -0.039769, - 0.019803, - 0.021895, - -0.0092584, - -0.029611, - 0.064736, - 0.041566, - 0.023213, - -0.046881, - 0.019733, - 0.019323, - 0.047739, - 0.0022409, - -0.04939, - -0.046284, - 0.058608, - -0.02451, - 0.021106, - -0.0029496, - 0.076891, - -0.0090422, - -0.043259, - 0.10106, - 0.034626, - 0.05991, - -0.0092336, - -0.037931, - -0.061403, - 0.032956, - 0.0046609, - -0.072829, - 0.063393, - 0.0042248, - 0.046002, - 0.0072772, - -0.050039, - 0.049338, - -0.10446, - -0.021969, - 0.0013141, - 0.012795, - 0.0811, - -0.024492, - -0.022352, - -0.021847, - 0.018575, - -0.01026, - -0.034467, - -0.083449, - -0.01976, - 0.035114, - -0.043079, - -0.13688, - 0.030747, - -0.009472, - 0.082732, - -0.0050742, - -0.024231, - 0.0064392, - -0.016791, - 0.034344, - 0.031678, - 0.083934, - -0.019769, - -0.075329 - ], - "beer": [ - -0.071034, - 0.0073449, - 0.056028, - -0.041753, - 0.021947, - -0.078565, - 0.18268, - -0.11735, - 0.062775, - 0.12561, - 0.010575, - -0.010726, - 0.053167, - 0.056881, - 0.12519, - 0.054905, - 0.098966, - -0.059448, - 0.039988, - -0.076013, - 0.08356, - 0.036731, - -0.028778, - 0.017494, - 0.053737, - -0.073142, - 0.050149, - 0.042254, - 0.080628, - -0.034189, - -0.048641, - 0.022671, - -0.013554, - -0.024657, - 0.065314, - -0.059175, - 0.060809, - 0.03788, - -0.058488, - 0.055828, - 0.022588, - -0.13531, - -0.1123, - -0.021967, - 0.059643, - -0.036716, - 0.048881, - -0.028011, - -0.023869, - 0.14886, - -0.020727, - 0.0065196, - 0.15834, - -0.076994, - -0.12536, - 0.077228, - 0.036416, - -0.048642, - -0.11456, - -0.07638, - 0.0359, - -0.035482, - 0.22022, - 0.071246, - -0.036705, - 0.10693, - -0.02077, - -0.028691, - 0.057359, - 0.038416, - 0.1991, - -0.026784, - 0.10686, - 0.058745, - -0.044292, - -0.022512, - -0.082037, - -0.022865, - -0.032144, - 0.13318, - -0.078059, - -0.11901, - -0.03701, - 0.089084, - -0.085673, - -0.097788, - 0.074655, - -0.072371, - -0.08422, - 0.042608, - 0.090569, - 0.053998, - -0.16723, - -0.029892, - 0.068103, - 0.10428, - -0.0059393, - 0.081583, - 0.035585, - 0.056332, - -0.035914, - -0.03243, - -0.077248, - -0.016736, - 0.011776, - -0.17374, - -0.089772, - 0.088996, - -0.013557, - 0.036157, - 0.0075493, - 0.079338, - 0.1092, - 0.10604, - 0.061451, - -0.14613, - -0.019133, - -0.042515, - -0.097376, - 0.011966, - 0.0080536, - 0.035521, - 0.016554, - -0.15045, - 0.11526, - -0.023327, - -0.051123, - -0.17185, - 0.036626, - 0.092918, - 0.074217, - -0.0036835, - -0.050778, - -0.026969, - -0.0082889, - -0.07855, - 0.054954, - 0.088203, - 0.061564, - -0.034932, - 0.13856, - -0.038543, - -0.024528, - -0.11245, - -0.00067943, - -0.061493, - 0.083724, - 0.026391, - -0.084517, - -0.091551, - 0.0042703, - 0.08648, - 0.01124, - -0.0077376, - -0.02017, - -0.093493, - -0.039612, - -0.025188, - 0.058034, - -0.0046274, - 0.036876, - 0.037144, - -0.060609, - -0.013084, - 0.064827, - 0.017386, - -0.003213, - -0.03351, - 0.037786, - 0.079467, - 0.045878, - 0.051, - -0.054576, - 0.086328, - -0.015848, - 0.06729, - -0.069946, - 0.081633, - -0.0011129, - -0.088475, - -0.031496, - 0.03681, - -0.034823, - -0.1704, - 0.087021, - -0.038424, - -0.05082, - 0.14273, - 0.13257, - -0.11899, - 0.13818, - 0.054882, - -0.010404, - 0.063457, - 0.06562, - -0.011949, - 0.042723, - -0.07663, - 0.035402, - 0.000052035, - -0.20081, - 0.11229, - -0.0015484, - -0.062636, - -0.013162, - 0.10332, - 0.0052459, - 0.1788, - 0.00073075, - -0.080416, - 0.18047, - 0.023788, - 0.047515, - -0.14271, - 0.047208, - 0.043139, - -0.10205, - -0.032398, - 0.032048, - -0.074277, - 0.020866, - -0.13631, - 0.048326, - 0.11587, - 0.016218, - -0.018475, - -0.013218, - 0.058598, - 0.0066176, - -0.02797, - 0.019573, - -0.076955, - -0.073914, - 0.046535, - 0.0070626, - -0.088842, - -0.13679, - -0.062861, - 0.05431, - -0.14729, - 0.090951, - -0.06844, - -0.0016457, - -0.062394, - -0.028315, - -0.11026, - -0.12076, - 0.041742, - -0.1139, - -0.0091733, - -0.05778, - -0.061849, - -0.071913, - 0.043189, - -0.010166, - -0.073477, - -0.077644, - -0.040424, - 0.14625, - 0.014373, - -0.0039011, - -0.093994, - 0.12436, - -0.079224, - -0.036854, - -0.084005, - 0.018731, - -0.048238, - 0.058147, - 0.10844, - 0.069036, - 0.13696, - -0.14111, - -0.064898, - -0.091552, - -0.041108, - -0.1263, - 0.0057791, - -0.05205, - 0.059866, - 0.10959, - 0.12766, - -0.1158, - 0.12412, - -0.051922, - 0.027737, - 0.031387, - 0.053261, - 0.082275, - -0.029481, - 0.093014, - 0.085943, - -0.075543, - -0.040017, - -0.068217, - -0.10624, - 0.024831, - -0.040335, - -0.092294, - -0.027594 - ], - "nutritional": [ - -0.065768, - -0.024612, - -0.069447, - 0.016281, - 0.015372, - -0.040578, - -0.044022, - -0.042612, - 0.032244, - 0.0076353, - -0.02092, - -0.039272, - -0.029881, - -0.025072, - 0.033191, - -0.049696, - 0.060657, - -0.0032579, - 0.026421, - 0.031122, - 0.032824, - 0.022733, - 0.060342, - 0.072187, - -0.057265, - -0.071669, - -0.037449, - 0.017003, - 0.045498, - 0.030451, - 0.06887, - -0.068418, - 0.015743, - -0.079392, - 0.042996, - 0.06262, - 0.024075, - -0.056385, - 0.055541, - 0.020282, - 0.011724, - -0.10423, - -0.025275, - -0.039361, - 0.070773, - -0.0088045, - 0.012468, - -0.024231, - -0.037188, - 0.020178, - -0.031241, - 0.057958, - 0.034786, - -0.0043203, - 0.049973, - 0.018029, - -0.045639, - 0.0013081, - 0.0036714, - -0.017608, - -0.0057583, - -0.039554, - 0.098033, - 0.035466, - 0.0048436, - 0.0074503, - 0.057949, - 0.027236, - -0.025645, - -0.026696, - -0.014012, - -0.0077881, - 0.037341, - -0.040273, - -0.028283, - 0.02588, - -0.045177, - -0.054736, - 0.017467, - -0.0091725, - -0.023478, - 0.044911, - 0.033272, - 0.0071567, - -0.035426, - 0.022125, - -0.037336, - -0.0056106, - -0.0025437, - -0.025513, - 0.030436, - -0.010017, - -0.052819, - 0.010545, - -0.039898, - 0.022112, - 0.017883, - 0.052404, - 0.030527, - -0.016549, - -0.022103, - -0.0029783, - -0.014664, - -0.03437, - 0.013419, - -0.065536, - -0.050332, - 0.0095435, - 0.003232, - 0.031794, - 0.026967, - 0.087771, - 0.030608, - -0.0025021, - 0.021998, - -0.060222, - -0.011152, - 0.047617, - -0.032192, - -0.058912, - -0.02771, - 0.010126, - 0.0045509, - 0.0083871, - 0.078408, - -0.066908, - -0.00069908, - -0.013655, - 0.11108, - 0.081097, - 0.03712, - -0.040392, - 0.047713, - -0.054723, - -0.074731, - 0.056562, - -0.029093, - 0.070888, - 0.049792, - 0.039578, - 0.03936, - -0.0039795, - -0.034376, - 0.034721, - -0.055322, - -0.025118, - 0.012447, - 0.033799, - -0.044132, - 0.056189, - -0.0045681, - 0.15349, - 0.031049, - -0.020004, - 0.06758, - 0.0043356, - -0.024199, - 0.042889, - 0.038378, - -0.02828, - 0.026309, - 0.0003731, - -0.11214, - 0.058341, - -0.045019, - 0.040084, - -0.019776, - -0.016698, - 0.021599, - -0.018532, - 0.018777, - -0.013703, - 0.043273, - 0.029422, - -0.014611, - 0.059355, - 0.019322, - 0.0012024, - -0.012245, - 0.015846, - -0.018249, - 0.0094989, - -0.0030912, - -0.054363, - 0.031046, - -0.039542, - 0.035477, - 0.10936, - -0.021004, - 0.016517, - 0.026951, - 0.029746, - 0.095982, - -0.067542, - 0.029404, - -0.035993, - 0.012123, - -0.016958, - 0.021863, - 0.0049415, - -0.10855, - -0.031321, - -0.026155, - -0.048044, - -0.036811, - 0.036321, - -0.010137, - -0.036318, - -0.025689, - 0.025822, - 0.11972, - 0.0093078, - -0.0066997, - 0.016457, - 0.043979, - 0.069278, - 0.051781, - 0.042813, - -0.066478, - 0.0065213, - -0.057331, - 0.03139, - -0.018317, - 0.056024, - 0.071937, - -0.025769, - 0.04485, - 0.061122, - 0.014098, - -0.036862, - -0.051317, - -0.059614, - -0.04595, - -0.018215, - -0.010405, - 0.073092, - -0.031029, - -0.021712, - -0.041299, - 0.0016213, - 0.018691, - 0.017899, - 0.00030342, - -0.04375, - -0.12294, - 0.075539, - 0.017181, - 0.014148, - -0.012573, - -0.0070355, - 0.0066591, - -0.038824, - 0.0086708, - -0.0031159, - -0.022702, - 0.024697, - 0.021188, - 0.024788, - 0.045939, - 0.011239, - -0.00026711, - 0.0012532, - 0.06788, - 0.023813, - 0.058104, - 0.0018101, - -0.0071671, - 0.024618, - 0.026384, - 0.084259, - -0.025862, - 0.037208, - -0.073547, - -0.014158, - 0.023002, - -0.075578, - -0.037172, - -0.06347, - 0.013377, - -0.0072564, - 0.17343, - 0.019444, - -0.00076255, - 0.045452, - 0.048429, - 0.070674, - -0.041253, - 0.0368, - -0.019993, - -0.0094972, - 0.0078596, - 0.012631, - -0.02258, - 0.023305, - 0.0025594, - -0.038272, - -0.014421, - 0.017874, - -0.063191, - 0.037404 - ], - "divinity": [ - -0.0095655, - -0.051982, - 0.079621, - -0.060078, - 0.023919, - -0.07774, - -0.061882, - -0.067986, - 0.10691, - -0.013027, - 0.011493, - -0.01043, - 0.021739, - 0.018323, - -0.031324, - -0.052819, - 0.075871, - -0.011267, - 0.0094075, - 0.035139, - -0.055286, - 0.066214, - 0.031653, - 0.017595, - 0.041277, - -0.069386, - 0.018877, - 0.069023, - 0.10523, - -0.009936, - -0.025332, - 0.019563, - -0.011314, - -0.036322, - -0.020856, - 0.054264, - 0.028022, - -0.042366, - 0.013606, - 0.026248, - -0.021628, - -0.1011, - 0.0087492, - 0.043926, - -0.040947, - -0.0029813, - -0.047957, - -0.055428, - 0.0073231, - 0.039398, - 0.0065338, - -0.03189, - 0.0022008, - 0.0090273, - -0.03021, - 0.038347, - -0.07482, - 0.020564, - -0.048292, - 0.031818, - 0.007551, - 0.0010063, - 0.063453, - 0.02928, - -0.051778, - -0.030764, - -0.013824, - 0.020348, - -0.0033494, - -0.046636, - 0.03914, - -0.040973, - 0.031378, - -0.0044228, - -0.0017358, - -0.03548, - 0.023988, - -0.018415, - 0.11063, - 0.071023, - -0.023268, - 0.017433, - -0.019704, - 0.027177, - -0.077277, - 0.0054235, - -0.018017, - -0.019016, - 0.0001803, - -0.042835, - 0.061025, - -0.0034528, - -0.097286, - 0.013998, - 0.038065, - 0.027766, - 0.029067, - -0.01122, - 0.0052502, - -0.014486, - -0.011686, - 0.043476, - 0.088234, - 0.0091134, - -0.023737, - -0.073004, - 0.0066482, - 0.024195, - -0.029946, - -0.0075315, - -0.043753, - 0.068562, - 0.029828, - -0.044226, - 0.036956, - 0.07189, - 0.040386, - 0.022684, - -0.022852, - 0.018743, - 0.0071653, - 0.021631, - -0.037515, - -0.046063, - 0.027674, - 0.021432, - -0.0011813, - -0.056923, - -0.012504, - 0.1125, - -0.058437, - -0.073425, - -0.049031, - 0.016577, - 0.029508, - -0.02756, - 0.0011711, - 0.039182, - 0.026593, - -0.082623, - -0.011837, - -0.057563, - -0.075613, - 0.031434, - 0.0045794, - -0.080282, - -0.020004, - 0.011456, - -0.082171, - 0.052784, - -0.01084, - 0.088341, - -0.018129, - -0.046984, - -0.002579, - -0.021739, - -0.021198, - -0.011234, - 0.016131, - 0.036957, - 0.015115, - 0.032997, - -0.10307, - 0.043194, - 0.070023, - -0.044906, - -0.0045637, - 0.050917, - 0.010827, - 0.035998, - -0.027674, - -0.068459, - -0.023194, - -0.038531, - 0.073843, - 0.08014, - 0.086189, - 0.077618, - 0.0033391, - -0.049375, - 0.0069176, - 0.031047, - -0.0044776, - -0.010033, - 0.019223, - -0.060398, - 0.010356, - 0.14099, - -0.0062928, - -0.031627, - 0.099671, - 0.084144, - 0.013901, - -0.058382, - 0.0076992, - -0.03854, - 0.018049, - 0.00019775, - -0.031766, - -0.004178, - -0.14231, - 0.018352, - -0.011407, - -0.038509, - 0.0074072, - 0.033716, - -0.0016291, - -0.03926, - 0.029186, - -0.0019421, - 0.096393, - -0.0028823, - -0.00059743, - 0.036068, - 0.00066143, - 0.042661, - -0.021078, - -0.038536, - 0.010177, - 0.03073, - -0.0354, - -0.02493, - -0.064688, - 0.085909, - 0.016316, - 0.034811, - 0.026805, - 0.064683, - 0.039274, - -0.077856, - -0.045684, - -0.033592, - -0.11195, - -0.034413, - 0.007785, - 0.044489, - -0.046971, - -0.065233, - -0.024009, - 0.024326, - 0.029005, - 0.0069083, - -0.066532, - 0.027931, - -0.021771, - -0.015379, - -0.023211, - -0.038612, - -0.069041, - -0.013337, - -0.016845, - -0.071054, - -0.050166, - -0.013044, - 0.0025023, - 0.019941, - -0.0076491, - 0.030413, - 0.055693, - -0.065335, - -0.018159, - -0.017793, - -0.018585, - 0.012053, - 0.050503, - 0.026371, - 0.091628, - -0.039799, - -0.032816, - 0.036167, - 0.001475, - 0.041989, - -0.06905, - -0.063834, - 0.049669, - -0.039878, - -0.031689, - -0.056993, - -0.021038, - 0.029294, - 0.10329, - -0.030324, - 0.021084, - -0.017741, - 0.029797, - 0.012035, - -0.061585, - 0.033514, - -0.0087883, - 0.10843, - 0.039194, - -0.026179, - -0.015831, - -0.032438, - 0.029068, - 0.082986, - 0.007904, - 0.015964, - 0.059401, - -0.0099946 - ], - "realtors": [ - 0.11736, - -0.035406, - 0.021128, - 0.044785, - -0.074897, - -0.028623, - -0.029191, - -0.096783, - 0.060108, - 0.026785, - -0.036948, - -0.001336, - -0.0084472, - 0.000676, - 0.022377, - -0.031468, - 0.084431, - 0.035984, - 0.016308, - -0.092602, - 0.019801, - -0.038252, - 0.016391, - 0.036742, - 0.012265, - -0.080317, - 0.01726, - 0.10289, - 0.20612, - 0.068709, - -0.12892, - -0.029903, - -0.027251, - 0.018007, - 0.008359, - 0.088706, - 0.036079, - 0.0055691, - -0.099786, - 0.0002523, - 0.00089307, - -0.033554, - 0.028044, - -0.037422, - 0.010476, - -0.018457, - -0.045634, - 0.048074, - -0.011181, - -0.03941, - -0.068359, - -0.054545, - -0.053669, - -0.012263, - -0.0085513, - 0.023644, - -0.033846, - 0.061866, - -0.01859, - -0.11513, - 0.020913, - 0.02782, - 0.074621, - -0.033904, - -0.031722, - -0.00085478, - -0.049511, - -0.0076906, - -0.00064724, - -0.09296, - -0.044649, - -0.019625, - 0.15092, - -0.065699, - 0.027384, - -0.033201, - -0.071355, - -0.053195, - -0.06048, - -0.04133, - 0.03302, - 0.055924, - -0.000093694, - 0.046359, - -0.082768, - -0.013743, - 0.0095, - -0.0042472, - 0.04625, - -0.000065616, - -0.038336, - 0.0045076, - -0.10059, - -0.037663, - 0.066, - 0.12351, - -0.043989, - -0.0063762, - 0.059905, - -0.073809, - 0.0034017, - 0.019607, - -0.059911, - -0.051147, - 0.050765, - -0.075436, - 0.036108, - 0.019755, - 0.058004, - 0.043135, - -0.045545, - 0.11819, - 0.01639, - 0.013925, - 0.063689, - -0.017706, - -0.053974, - -0.085017, - -0.058457, - 0.0033015, - -0.072564, - -0.001796, - 0.082787, - 0.0089845, - 0.12925, - -0.030596, - 0.02493, - -0.018707, - -0.026601, - 0.11999, - 0.062642, - 0.13378, - 0.089434, - 0.019671, - 0.0015173, - 0.010669, - 0.0003824, - 0.10927, - -0.089021, - -0.0352, - 0.01988, - -0.026055, - -0.020128, - 0.007482, - -0.026402, - -0.062109, - -0.01004, - -0.047562, - 0.0057755, - 0.0020056, - 0.1029, - 0.11243, - 0.036334, - -0.029842, - 0.010312, - -0.10282, - 0.064662, - -0.027126, - 0.0038418, - 0.086395, - 0.056204, - 0.036468, - 0.05324, - -0.037885, - 0.030685, - -0.035437, - 0.0030049, - 0.022728, - 0.01337, - 0.047628, - -0.04838, - -0.037899, - 0.027737, - 0.017851, - -0.084815, - 0.017268, - -0.027591, - 0.012024, - 0.0047018, - 0.062282, - 0.023306, - -0.039382, - -0.019315, - -0.020231, - 0.0026864, - -0.021429, - -0.0019, - 0.077109, - -0.0078117, - -0.01309, - -0.10784, - 0.18258, - -0.09266, - 0.029629, - 0.070853, - 0.03142, - 0.072487, - 0.071651, - 0.0078489, - 0.02936, - -0.11812, - 0.011658, - -0.0086179, - 0.0038017, - 0.16612, - -0.030331, - -0.015562, - -0.040201, - -0.035649, - -0.056078, - 0.057559, - 0.048028, - 0.08872, - -0.027555, - -0.10484, - -0.033578, - -0.0049883, - 0.0031846, - -0.01976, - -0.044673, - 0.013033, - -0.10299, - -0.041527, - 0.13263, - 0.047055, - -0.051309, - 0.04318, - 0.092122, - 0.0064079, - -0.038079, - -0.016252, - -0.0053979, - -0.016737, - 0.02348, - -0.01011, - -0.04232, - 0.030427, - 0.061443, - -0.0010092, - 0.00095845, - 0.036968, - -0.045312, - 0.053461, - -0.084476, - -0.0082752, - 0.027432, - -0.050368, - -0.011154, - -0.011315, - -0.017078, - 0.084737, - -0.053518, - 0.031529, - 0.010214, - 0.0051663, - -0.0085264, - -0.025273, - 0.018743, - 0.020006, - -0.046352, - 0.051462, - 0.062615, - -0.048196, - 0.064791, - -0.016899, - 0.085692, - 0.072461, - 0.043448, - -0.010849, - 0.032811, - -0.11572, - 0.083001, - -0.098514, - 0.0083696, - 0.044998, - -0.046494, - 0.020231, - 0.016253, - 0.030737, - -0.0051961, - -0.083486, - 0.055947, - -0.041511, - 0.081861, - -0.027747, - -0.026728, - -0.038432, - -0.12863, - -0.083009, - -0.02766, - -0.056999, - -0.063353, - 0.02174, - 0.013669, - -0.056535, - 0.034723, - -0.052358, - 0.014353, - -0.096573, - 0.023904 - ], - "antiquity": [ - -0.068056, - -0.04667, - 0.071274, - 0.015852, - -0.061792, - -0.0058836, - -0.064072, - -0.085029, - 0.091354, - 0.0043694, - 0.018169, - -0.049549, - -0.017225, - -0.02129, - 0.016689, - -0.040692, - 0.068501, - -0.013301, - -0.0059672, - 0.01962, - -0.00046045, - 0.026095, - -0.0035053, - 0.052827, - 0.065484, - -0.009591, - -0.028164, - 0.039337, - 0.026618, - 0.0042483, - 0.053369, - 0.030617, - 0.038537, - -0.051838, - -0.012918, - 0.027292, - 0.059232, - -0.0078661, - -0.024373, - 0.028094, - -0.013688, - -0.051759, - 0.0091867, - 0.028503, - -0.0066762, - 0.021203, - -0.032013, - -0.018434, - -0.01089, - -0.011824, - -0.011142, - -0.0077814, - -0.023026, - -0.0088051, - -0.062721, - -0.022422, - 0.051259, - 0.040611, - -0.013618, - 0.022529, - 0.070771, - 0.002631, - 0.050348, - -0.047192, - 0.058337, - 0.042594, - -0.049098, - 0.010916, - 0.054074, - -0.034972, - 0.011072, - -0.013765, - 0.015589, - -0.016409, - -0.0069685, - 0.03233, - -0.0080067, - 0.016015, - 0.063527, - 0.022486, - -0.023178, - 0.042619, - 0.011239, - 0.0083295, - -0.047471, - -0.02285, - -0.029001, - -0.0096875, - -0.060285, - 0.01064, - -0.023954, - 0.0095311, - -0.064107, - 0.0084498, - 0.032607, - 0.024469, - -0.039422, - 0.019763, - 0.04281, - -0.008804, - 0.014242, - -0.01686, - -0.024987, - -0.0027599, - 0.025498, - -0.00307, - 0.018195, - 0.03244, - -0.04302, - 0.0047853, - 0.042699, - 0.047281, - 0.031857, - 0.016705, - -0.038778, - 0.021348, - 0.0010728, - 0.036895, - -0.050973, - 0.032975, - 0.020637, - -0.028248, - -0.038404, - -0.040372, - -0.029803, - -0.010306, - -0.047756, - -0.052294, - 0.0039239, - 0.093892, - 0.0035754, - -0.022921, - -0.070363, - 0.021763, - 0.036096, - -0.054394, - -0.032035, - 0.053843, - 0.031703, - -0.077048, - 0.0096278, - -0.02439, - -0.050104, - 0.041705, - 0.063577, - -0.021799, - 0.036211, - -0.015672, - -0.030413, - -0.02727, - 0.040673, - 0.046052, - 0.024837, - -0.0056206, - -0.018041, - -0.013098, - 0.016581, - -0.031759, - 0.02052, - 0.012166, - 0.0091679, - -0.017714, - -0.079952, - 0.052599, - 0.043677, - 0.021092, - 0.015764, - -0.0030851, - 0.047743, - -0.024656, - -0.00091316, - -0.052631, - 0.0046451, - 0.00027301, - 0.021234, - 0.039992, - 0.050892, - -0.029846, - -0.05725, - 0.0046211, - -0.0034987, - 0.0138, - 0.033821, - -0.02739, - 0.0065827, - -0.062203, - 0.031545, - 0.084692, - 0.0013536, - -0.0026869, - 0.059753, - 0.035045, - -0.041578, - -0.027679, - -0.025781, - 0.054651, - -0.020268, - 0.0094484, - -0.01606, - 0.024795, - -0.13339, - 0.0025275, - -0.046527, - -0.01628, - 0.051908, - 0.020539, - 0.086988, - -0.061779, - -0.017408, - -0.0075572, - 0.077853, - -0.0078304, - -0.019099, - 0.0034774, - 0.071238, - 0.050816, - -0.014277, - 0.027326, - -0.025968, - -0.04723, - 0.00322, - 0.047418, - 0.032056, - 0.086378, - -0.039351, - 0.021259, - 0.041407, - 0.086176, - 0.0020412, - -0.034089, - -0.037461, - -0.050924, - -0.081242, - -0.04205, - 0.0013542, - -0.0040019, - -0.04073, - 0.033264, - 0.016869, - -0.015915, - 0.034188, - -0.019761, - -0.03975, - -0.038593, - -0.010962, - -0.015109, - -0.11798, - -0.1025, - -0.077065, - -0.053964, - 0.030112, - -0.013489, - -0.034324, - -0.0042073, - -0.040387, - 0.025579, - -0.067968, - 0.046783, - 0.041763, - 0.011374, - -0.0085233, - -0.030317, - -0.030852, - 0.016835, - 0.0059228, - -0.0096526, - 0.033633, - 0.055037, - -0.0017194, - -0.035273, - -0.0090856, - 0.070813, - -0.095304, - -0.01543, - 0.068807, - -0.08935, - 0.0078861, - 0.025947, - -0.031688, - -0.051423, - 0.040082, - -0.017182, - -0.023507, - -0.050174, - 0.027669, - 0.027932, - -0.0026235, - -0.015359, - -0.024154, - 0.086669, - -0.021363, - -0.036377, - 0.019899, - -0.046112, - 0.098833, - 0.03739, - 0.00078023, - -0.0061412, - -0.042816, - -0.055174 - ], - "Buddhism": [ - -0.023218, - -0.043592, - 0.11502, - -0.092655, - 0.0084928, - -0.016413, - -0.092978, - -0.073656, - 0.037979, - -0.0064362, - 0.019266, - -0.091542, - 0.08174, - -0.040472, - -0.060054, - -0.023063, - 0.084242, - -0.06912, - 0.030553, - -0.029225, - -0.040226, - 0.057518, - 0.027617, - 0.03619, - -0.013001, - 0.022672, - -0.0065389, - 0.012507, - 0.086855, - 0.017088, - 0.049682, - 0.047531, - -0.062291, - 0.027509, - 0.040906, - 0.03396, - 0.020463, - -0.009859, - 0.1016, - 0.059783, - 0.080383, - -0.035531, - 0.026376, - 0.0037585, - -0.0026218, - -0.0052867, - 0.014716, - -0.050827, - 0.0040482, - -0.032915, - -0.024285, - -0.076993, - -0.024579, - 0.048487, - -0.060158, - -0.0011885, - -0.0000092135, - -0.020082, - -0.044575, - 0.0046932, - 0.1453, - -0.092611, - 0.017462, - 0.0084426, - -0.038836, - -0.048267, - 0.031103, - -0.01714, - 0.0087951, - -0.015755, - 0.0057653, - 0.028846, - -0.004767, - -0.059581, - -0.13333, - -0.073, - 0.0076361, - -0.019824, - 0.025057, - 0.052173, - 0.014391, - 0.061487, - -0.05469, - 0.044474, - -0.054853, - -0.030082, - 0.053635, - -0.01986, - 0.05918, - 0.027747, - -0.018147, - 0.025221, - -0.065718, - 0.012662, - -0.045915, - 0.062729, - 0.086039, - 0.0103, - 0.0079852, - 0.042267, - -0.0081912, - -0.021327, - 0.076087, - -0.062861, - -0.045236, - -0.098993, - 0.0090724, - 0.002082, - -0.071407, - -0.060158, - -0.021327, - 0.05883, - 0.064562, - 0.031848, - -0.05506, - 0.035381, - -0.008177, - 0.059395, - -0.0065911, - 0.038299, - 0.014117, - -0.025712, - 0.00053479, - -0.052249, - -0.0086738, - 0.090982, - -0.13477, - -0.040305, - -0.0010884, - 0.18755, - 0.035161, - 0.0072955, - -0.051815, - 0.0086804, - -0.060185, - 0.035237, - 0.0084135, - 0.0231, - -0.021657, - -0.13531, - -0.02345, - -0.016027, - 0.12226, - 0.053629, - -0.0028224, - -0.091062, - 0.0049032, - 0.0079233, - -0.016817, - -0.0078477, - 0.077225, - 0.021922, - -0.10866, - -0.042697, - -0.057733, - 0.064313, - 0.028051, - -0.013355, - 0.027991, - 0.013073, - 0.02659, - -0.021521, - -0.082274, - 0.00037696, - 0.016457, - -0.03744, - 0.030563, - 0.010433, - -0.0062742, - -0.00038134, - 0.0018773, - -0.0045108, - -0.021273, - 0.064, - 0.0010001, - 0.025295, - 0.059689, - -0.020735, - -0.0035421, - 0.003022, - -0.005796, - 0.074234, - 0.050419, - 0.017843, - 0.1024, - 0.0076294, - 0.04568, - 0.085981, - -0.048387, - -0.091531, - 0.0382, - 0.083132, - -0.097303, - 0.01812, - 0.012774, - 0.069009, - 0.0094109, - -0.013609, - 0.004675, - 0.025421, - -0.10465, - 0.057268, - -0.010591, - -0.040514, - 0.049349, - 0.11599, - 0.092368, - 0.042934, - 0.12277, - 0.005026, - 0.10219, - 0.0004569, - 0.021995, - -0.0051418, - 0.10326, - 0.029497, - 0.034027, - -0.050589, - 0.0098317, - -0.024007, - -0.056054, - 0.013174, - -0.032236, - 0.098245, - -0.010929, - 0.042685, - 0.0074111, - 0.07068, - 0.019572, - -0.036276, - -0.042575, - -0.069959, - -0.061741, - -0.030914, - 0.034276, - 0.11308, - -0.0012898, - 0.016501, - 0.016807, - 0.010028, - 0.02188, - -0.090705, - 0.0014333, - -0.021725, - 0.062327, - 0.0016635, - 0.062246, - -0.0066485, - -0.045088, - -0.05567, - 0.042592, - -0.0083596, - -0.033589, - -0.020927, - -0.0028489, - 0.054553, - 0.013691, - 0.027443, - 0.016449, - 0.028266, - 0.01816, - 0.0073013, - 0.069504, - -0.0044346, - 0.040127, - 0.048261, - 0.027128, - 0.008122, - -0.0082241, - 0.020735, - -0.0028059, - 0.07474, - -0.064574, - 0.014614, - -0.03193, - -0.051491, - 0.042631, - 0.034163, - -0.09253, - -0.01534, - 0.0070861, - -0.045309, - 0.035888, - -0.0088586, - -0.012236, - -0.049336, - 0.022494, - 0.015383, - -0.059787, - 0.045366, - -0.088061, - -0.055897, - 0.010943, - -0.048716, - 0.000062024, - 0.069906, - 0.098189, - 0.054524, - 0.0099294, - 0.084938 - ], - "mid-career": [ - 0.0023614, - -0.067648, - -0.0047466, - -0.023339, - 0.0047995, - 0.075532, - -0.076771, - -0.08835, - 0.059898, - -0.017379, - -0.021387, - 0.024944, - -0.089649, - 0.046304, - -0.021954, - 0.05881, - 0.079694, - 0.051406, - 0.033753, - -0.029374, - 0.017494, - 0.029366, - -0.064405, - 0.065465, - 0.03239, - -0.042664, - -0.014151, - 0.062501, - -0.024416, - -0.0033879, - -0.036928, - 0.015525, - -0.048497, - -0.075959, - -0.0084607, - 0.090172, - 0.041074, - 0.027747, - 0.020984, - 0.060173, - 0.0052997, - -0.12261, - -0.014102, - -0.016984, - 0.010542, - 0.046174, - 0.051836, - -0.018553, - -0.060598, - -0.0038688, - -0.052381, - -0.0090993, - -0.037784, - 0.041069, - 0.0097208, - -0.034073, - -0.023187, - 0.058049, - -0.047055, - -0.0017306, - 0.04667, - 0.0023813, - 0.061387, - 0.021783, - 0.092781, - -0.062266, - -0.067594, - -0.083863, - 0.034317, - 0.016097, - 0.016465, - 0.079754, - 0.069188, - 0.039039, - 0.0080014, - 0.031007, - -0.0080541, - -0.042004, - 0.057186, - 0.012887, - 0.0025931, - 0.015474, - 0.05827, - 0.044726, - -0.073493, - 0.0077226, - 0.01267, - 0.020339, - 0.0044225, - 0.044809, - 0.03554, - 0.022896, - -0.10944, - 0.040954, - 0.014215, - 0.069346, - -0.013845, - 0.012338, - -0.0029922, - 0.043238, - 0.0051699, - -0.035834, - 0.05055, - -0.030231, - -0.0050241, - -0.048266, - 0.048861, - 0.051541, - 0.00057903, - 0.053409, - -0.027705, - 0.018965, - 0.029315, - 0.065688, - -0.028584, - -0.026982, - -0.031194, - -0.015814, - -0.053258, - 0.02542, - 0.055862, - -0.09081, - -0.014341, - 0.018569, - 0.036758, - 0.0018218, - -0.012459, - -0.064227, - 0.046951, - -0.021982, - -0.064741, - 0.097965, - -0.028289, - 0.007516, - -0.0084469, - 0.019976, - 0.018567, - 0.055126, - -0.028835, - 0.017908, - 0.0087727, - -0.068552, - -0.0039962, - 0.0022885, - -0.027388, - -0.063616, - -0.06203, - 0.0048267, - 0.004841, - 0.022362, - 0.076666, - 0.074295, - -0.034402, - -0.00041535, - -0.014686, - -0.037877, - -0.01101, - 0.029304, - 0.01289, - -0.069177, - 0.02304, - 0.093593, - 0.011388, - 0.005139, - -0.047499, - 0.047739, - -0.061111, - -0.029047, - -0.04295, - 0.0066146, - 0.016299, - 0.049996, - 0.0050348, - 0.035211, - 0.069574, - 0.011211, - -0.027016, - -0.026178, - -0.022176, - -0.02068, - 0.032501, - 0.0057921, - 0.0093807, - 0.0069378, - 0.023593, - -0.12084, - 0.045869, - 0.083084, - -0.018188, - 0.095164, - -0.049199, - 0.026387, - -0.022994, - -0.02325, - -0.032658, - 0.0011964, - 0.059017, - -0.023487, - 0.0312, - -0.030312, - -0.12179, - 0.084244, - -0.031905, - 0.023334, - -0.05463, - -0.010252, - 0.06574, - 0.0020984, - 0.011968, - -0.03672, - 0.10088, - -0.040864, - 0.073236, - 0.0037444, - -0.014679, - 0.056615, - -0.011145, - -0.036784, - 0.0036901, - -0.0070686, - -0.051544, - -0.013844, - -0.024373, - 0.088953, - -0.043033, - -0.028571, - 0.049109, - 0.087568, - 0.01322, - -0.0099304, - 0.049141, - -0.045239, - 0.033131, - -0.00032722, - 0.01197, - -0.019934, - 0.0018385, - -0.071588, - -0.01212, - 0.037675, - 0.0042654, - 0.02777, - 0.0090717, - 0.0064911, - -0.071578, - -0.070959, - -0.044679, - -0.10009, - 0.072349, - -0.045505, - 0.021475, - 0.076954, - 0.06227, - -0.083865, - 0.033684, - 0.023938, - 0.061178, - 0.047572, - 0.098295, - 0.029881, - 0.044175, - -0.033102, - 0.041371, - -0.0059066, - -0.017345, - 0.035841, - -0.031584, - -0.034211, - -0.0028479, - -0.020239, - -0.051106, - 0.073061, - -0.066823, - 0.020393, - 0.010246, - -0.071527, - 0.033172, - 0.0030351, - 0.078586, - 0.063291, - 0.035838, - 0.019669, - 0.05057, - -0.037101, - 0.016076, - -0.026181, - -0.011436, - -0.080248, - -0.023018, - -0.024794, - 0.035158, - 0.024897, - -0.035589, - 0.042573, - -0.00010496, - 0.053164, - -0.025098, - 0.023943, - 0.039709, - 0.026432 - ], - "ecology": [ - 0.037144, - -0.11174, - -0.0065709, - 0.033416, - 0.0039205, - -0.024662, - -0.028544, - -0.085567, - 0.06337, - 0.0085382, - 0.071805, - -0.08075, - -0.021921, - -0.011782, - 0.060868, - -0.0253, - 0.092563, - 0.072638, - 0.050531, - 0.027951, - -0.0095997, - 0.000063912, - 0.056813, - 0.089174, - -0.025497, - -0.12136, - -0.0094234, - 0.087541, - 0.030456, - 0.10178, - 0.087953, - 0.023789, - -0.017596, - -0.035335, - -0.0083008, - 0.060774, - 0.056277, - -0.029932, - 0.039077, - -0.072508, - -0.019613, - -0.14249, - 0.033444, - -0.040321, - 0.025944, - -0.03855, - -0.056302, - -0.061769, - 0.0067297, - -0.0098211, - -0.049181, - 0.079576, - 0.067375, - -0.00072766, - -0.037147, - -0.02202, - -0.0045826, - 0.036523, - 0.017961, - 0.016342, - 0.019865, - -0.0071287, - 0.086144, - -0.010102, - 0.083041, - 0.037089, - 0.067284, - 0.027356, - 0.033381, - 0.021028, - 0.044091, - 0.034033, - -0.052877, - 0.021748, - 0.053258, - -0.060628, - -0.017269, - -0.019251, - -0.011092, - 0.029073, - -0.021966, - 0.026152, - -0.017919, - 0.04246, - -0.042418, - 0.015407, - 0.04294, - -0.034352, - 0.053087, - 0.02103, - 0.046573, - 0.064089, - -0.10323, - 0.041659, - 0.024513, - 0.078349, - 0.050709, - 0.025405, - 0.041201, - 0.03354, - 0.021447, - 0.054194, - 0.050242, - -0.023703, - -0.00061505, - -0.081945, - 0.022549, - -0.021251, - 0.017672, - -0.065216, - -0.035487, - 0.13749, - 0.044956, - -0.039278, - 0.010776, - 0.011069, - -0.035228, - 0.081869, - -0.030671, - 0.017648, - -0.045128, - -0.0029039, - -0.026935, - -0.04872, - 0.042611, - 0.0083683, - -0.055341, - -0.089826, - 0.028146, - 0.16417, - 0.033404, - -0.063655, - 0.0020611, - 0.055505, - 0.035929, - 0.061377, - 0.05916, - 0.019263, - 0.020401, - 0.032906, - -0.038642, - -0.042456, - 0.1043, - 0.055887, - 0.029742, - -0.049051, - 0.022913, - 0.0092534, - -0.0015496, - -0.12097, - 0.059167, - 0.055106, - 0.0038688, - -0.039552, - 0.065865, - 0.10037, - 0.027455, - 0.045304, - 0.026021, - -0.034035, - 0.04183, - -0.024781, - -0.17875, - 0.00905, - -0.019865, - 0.018157, - -0.0091238, - 0.001676, - 0.011276, - 0.10941, - 0.025835, - -0.038323, - -0.028728, - -0.043374, - -0.0011773, - 0.077998, - 0.043252, - 0.037012, - -0.024413, - 0.00079612, - -0.067786, - 0.16132, - 0.011677, - -0.0041489, - 0.00085826, - -0.042881, - -0.0064949, - 0.14284, - -0.086389, - 0.028999, - 0.0053859, - 0.048974, - -0.026071, - -0.032108, - -0.028146, - -0.048191, - 0.02402, - -0.0011879, - -0.020805, - 0.0023862, - -0.14042, - -0.013709, - 0.012795, - -0.096512, - -0.043412, - 0.012552, - -0.021984, - -0.051057, - 0.0063546, - 0.049118, - 0.12345, - 0.010665, - -0.0043487, - -0.023181, - 0.083309, - 0.042049, - 0.01302, - -0.082089, - -0.040532, - 0.003185, - -0.043007, - 0.024351, - -0.10459, - 0.083981, - -0.029346, - -0.019748, - 0.025826, - 0.096202, - -0.027719, - -0.056809, - -0.016248, - -0.011366, - -0.0904, - 0.029643, - 0.048386, - 0.064202, - 0.044697, - 0.049635, - 0.0061682, - 0.022377, - -0.019569, - 0.02469, - 0.021367, - 0.023182, - 0.010406, - 0.059742, - -0.025383, - -0.054173, - -0.0094001, - 0.051668, - 0.094401, - -0.034405, - -0.051487, - -0.084246, - 0.015635, - -0.0017904, - -0.010082, - 0.053228, - 0.047801, - -0.070525, - 0.029084, - 0.047399, - 0.033074, - 0.0078316, - 0.018298, - -0.028767, - 0.016578, - 0.028815, - 0.059999, - 0.0056854, - -0.014965, - 0.092096, - -0.11729, - -0.033177, - 0.026798, - -0.028864, - -0.061039, - 0.060031, - -0.071375, - -0.032116, - 0.1112, - -0.0034868, - 0.018896, - -0.0026974, - -0.0085653, - -0.027032, - -0.026127, - 0.0029642, - -0.018689, - -0.014862, - -0.044389, - 0.10305, - -0.072656, - -0.073013, - -0.017184, - 0.025183, - -0.045712, - 0.059346, - -0.053482, - 0.045126 - ], - "backyard": [ - 0.0595, - -0.022127, - -0.010205, - 0.035652, - -0.047208, - -0.047029, - 0.02747, - -0.077852, - -0.036149, - 0.032884, - -0.03782, - -0.093163, - 0.016793, - 0.026595, - 0.018706, - -0.011418, - 0.10558, - 0.025747, - 0.051251, - 0.0043017, - 0.0094213, - -0.0056648, - 0.032868, - 0.057717, - 0.042163, - -0.0042488, - 0.041771, - -0.012679, - -0.044462, - 0.066825, - -0.0075841, - -0.032593, - 0.047846, - -0.054356, - 0.025547, - -0.013464, - -0.010102, - -0.027829, - 0.0098913, - -0.05569, - -0.036276, - -0.091728, - -0.05898, - 0.00022601, - -0.00057918, - -0.015863, - -0.012237, - 0.0021533, - -0.075417, - 0.048966, - 0.047225, - 0.063949, - -0.04159, - 0.047642, - -0.066767, - -0.072507, - 0.046619, - -0.0093956, - -0.051004, - -0.087597, - 0.0051813, - -0.042777, - 0.087379, - -0.049998, - 0.026582, - -0.0015717, - 0.012637, - 0.0013103, - -0.022143, - -0.047513, - 0.13064, - -0.0021386, - -0.012111, - -0.0070711, - 0.041575, - 0.079531, - -0.0076485, - -0.033885, - 0.0085747, - 0.056698, - -0.019723, - -0.028607, - -0.0046516, - 0.054952, - -0.052095, - -0.018584, - 0.0031223, - -0.028193, - 0.059603, - 0.050756, - -0.045329, - 0.024184, - -0.10615, - 0.019348, - 0.068117, - 0.11122, - 0.0075058, - 0.031877, - 0.061877, - -0.063216, - 0.029935, - 0.0045363, - -0.033519, - -0.061077, - 0.041885, - -0.082236, - 0.03542, - 0.026682, - -0.0046469, - -0.021859, - -0.079133, - 0.068384, - 0.048191, - 0.039313, - 0.080806, - -0.081995, - -0.028795, - -0.029874, - -0.050389, - 0.015521, - -0.084846, - 0.08171, - -0.04923, - -0.018785, - 0.018158, - -0.030393, - -0.0021257, - -0.07537, - 0.0020609, - 0.057185, - 0.027287, - 0.021247, - 0.030604, - 0.0082314, - 0.012618, - -0.12812, - 0.0041661, - 0.0071197, - 0.029496, - 0.041576, - -0.025693, - 0.00055356, - 0.051898, - 0.030212, - 0.026209, - -0.0094465, - 0.062391, - 0.054566, - 0.027424, - -0.10047, - 0.015081, - 0.038004, - -0.042093, - -0.0068347, - 0.016026, - -0.0011289, - 0.055394, - 0.0099285, - 0.068634, - -0.073353, - 0.060331, - -0.013096, - -0.023772, - 0.017437, - 0.01299, - 0.0069723, - 0.037002, - 0.004881, - -0.017629, - 0.043244, - -0.020508, - 0.037351, - -0.010971, - 0.011065, - -0.034846, - 0.032182, - 0.035337, - 0.0013652, - -0.0035317, - 0.017816, - 0.055445, - 0.016938, - 0.041279, - -0.097822, - -0.032831, - 0.05702, - 0.020918, - 0.115, - 0.012914, - -0.050414, - 0.031206, - 0.035599, - 0.0031935, - -0.086279, - 0.0096735, - -0.030267, - 0.048446, - 0.044643, - 0.014189, - 0.02227, - -0.12458, - 0.049445, - -0.047744, - -0.05285, - 0.044274, - -0.041344, - 0.04771, - 0.044799, - -0.022085, - -0.0022183, - 0.089263, - -0.011241, - 0.02875, - -0.033394, - -0.0030702, - -0.012195, - 0.00023357, - -0.0034332, - 0.016195, - -0.053423, - 0.049553, - -0.047842, - -0.0083656, - 0.091184, - -0.049704, - 0.010513, - -0.053684, - 0.065702, - -0.04613, - -0.029426, - -0.034246, - -0.059729, - 0.0083118, - 0.041562, - -0.00034717, - 0.004831, - 0.025765, - 0.023321, - -0.049101, - -0.055062, - 0.059132, - -0.062571, - 0.046162, - -0.023757, - -0.015137, - 0.057396, - -0.044638, - -0.013471, - 0.01861, - 0.075137, - -0.089681, - -0.025577, - -0.046993, - -0.026161, - 0.033115, - -0.012749, - -0.041406, - -0.012371, - -0.018308, - 0.044394, - -0.0089009, - 0.023728, - 0.015789, - -0.017134, - 0.022434, - -0.0018724, - 0.012247, - -0.0047071, - 0.007662, - -0.035788, - -0.11471, - 0.079658, - -0.12133, - -0.02921, - 0.045874, - -0.062895, - -0.064505, - 0.015188, - 0.0016405, - 0.04869, - 0.062771, - 0.032446, - 0.11149, - 0.048603, - -0.031896, - -0.014355, - 0.0067989, - -0.066666, - -0.00078426, - -0.0139, - 0.058392, - -0.0043059, - -0.045145, - 0.069759, - -0.020649, - -0.012471, - 0.018952, - 0.021893, - 0.0328, - 0.025274 - ], - "politicking": [ - 0.04078, - -0.0041979, - 0.020825, - 0.011356, - -0.021096, - -0.071289, - -0.0017164, - -0.061395, - 0.0052102, - 0.055545, - -0.02096, - -0.093346, - -0.009734, - 0.023946, - -0.029054, - 0.0084811, - 0.025376, - 0.012027, - 0.03027, - -0.019912, - 0.015627, - 0.015344, - 0.012884, - 0.026247, - -0.022517, - -0.038167, - 0.056442, - 0.0011437, - 0.019967, - -0.027586, - -0.017818, - 0.0071147, - -0.045446, - -0.045639, - 0.063531, - -0.01287, - -0.00018945, - 0.017786, - -0.001055, - 0.030557, - -0.035347, - -0.075788, - -0.025016, - 0.047, - 0.014581, - 0.0067557, - -0.044159, - -0.0095261, - -0.039801, - -0.022435, - -0.0055777, - 0.0067583, - 0.0064476, - 0.02174, - 0.0044026, - 0.021647, - -0.014343, - -0.015297, - -0.033896, - -0.019455, - -0.022903, - -0.018481, - -0.019049, - 0.00049261, - -0.013752, - -0.026923, - -0.01363, - 0.027884, - 0.028387, - 0.013065, - -0.010435, - 0.006697, - 0.073001, - 0.019163, - 0.016153, - 0.0084468, - -0.041284, - 0.0008114, - -0.0092318, - -0.03732, - -0.073035, - -0.028058, - -0.041635, - 0.070657, - 0.011257, - -0.050167, - -0.014686, - 0.05612, - 0.031685, - -0.0022946, - -0.041767, - -0.0011513, - -0.047529, - -0.022684, - 0.063708, - 0.041069, - -0.024316, - 0.017622, - 0.018425, - -0.025741, - -0.014759, - 0.017396, - -0.020934, - 0.011737, - -0.0041447, - -0.070039, - 0.038576, - -0.016264, - -0.068912, - 0.025947, - -0.014705, - 0.05699, - 0.029738, - 0.0044428, - -0.0066008, - -0.019625, - 0.029665, - -0.0092866, - -0.063668, - -0.045656, - 0.031244, - -0.052019, - 0.014129, - -0.0022417, - 0.059098, - 0.02683, - -0.02456, - -0.032899, - -0.034576, - 0.13549, - 0.023983, - 0.019466, - 0.0207, - 0.048749, - 0.0078377, - -0.049153, - -0.011994, - 0.047143, - 0.01383, - -0.034276, - 0.035891, - -0.047472, - 0.032916, - 0.057155, - -0.022601, - 0.0040009, - 0.037863, - 0.028702, - 0.026945, - -0.014553, - 0.02058, - -0.01139, - -0.048454, - -0.021638, - 0.015154, - 0.070558, - 0.046782, - 0.05057, - -0.036005, - 0.028432, - 0.050556, - 0.065299, - -0.081225, - -0.03012, - -0.048627, - 0.053808, - 0.028084, - -0.00065242, - -0.035949, - -0.0077782, - 0.0011105, - 0.0085153, - -0.027785, - -0.012295, - -0.0027795, - 0.049908, - -0.0056252, - 0.043863, - 0.0031676, - -0.024665, - -0.045036, - 0.0048847, - -0.0030921, - -0.021649, - 0.025692, - -0.078014, - 0.018369, - 0.082154, - 0.040658, - -0.055317, - -0.0036638, - 0.024349, - -0.017508, - 0.0025966, - -0.00015439, - 0.0011784, - -0.003096, - 0.0017418, - -0.047762, - -0.027556, - -0.13347, - 0.023378, - -0.012296, - -0.022339, - -0.066855, - 0.0028064, - -0.053764, - 0.02059, - 0.03815, - 0.0097009, - 0.049548, - 0.024328, - 0.0045776, - 0.0032438, - 0.0074088, - -0.0077954, - 0.0031495, - -0.048219, - -0.019945, - -0.10232, - -0.024623, - 0.018865, - -0.032365, - 0.06141, - -0.020854, - 0.016702, - 0.042882, - 0.084963, - -0.031255, - -0.027769, - -0.0050151, - -0.0054659, - -0.012134, - 0.007742, - 0.015964, - -0.016885, - 0.013443, - -0.021313, - -0.0012295, - -0.077606, - 0.019985, - -0.0073462, - -0.026585, - 0.04725, - -0.080837, - 0.024201, - -0.036569, - -0.00060044, - 0.0048852, - 0.042016, - -0.029356, - 0.015224, - -0.061012, - 0.052149, - 0.057165, - 0.025272, - -0.01172, - -0.027642, - 0.0090944, - 0.026865, - 0.001393, - 0.029321, - -0.009515, - 0.098134, - -0.016551, - 0.056056, - -0.0056389, - 0.06996, - -0.066941, - -0.013986, - -0.0083847, - 0.059953, - -0.081514, - -0.018925, - 0.016332, - -0.08557, - 0.017105, - -0.0056339, - -0.077834, - -0.018413, - 0.032609, - -0.014779, - -0.008994, - 0.018698, - 0.016487, - 0.040722, - 0.019037, - 0.011395, - -0.0048532, - -0.0057346, - 0.044066, - 0.0049373, - -0.027088, - 0.031786, - -0.0063979, - 0.038921, - -0.06953, - 0.009789, - -0.021818, - -0.010277 - ], - "snowstorms": [ - 0.036676, - -0.016195, - 0.00072768, - -0.055566, - -0.0039425, - -0.084146, - -0.048695, - -0.044223, - 0.095236, - 0.032011, - 0.0046157, - -0.06246, - -0.058373, - -0.0063238, - -0.026042, - -0.018948, - 0.06278, - 0.041596, - 0.027107, - 0.0072588, - 0.029559, - -0.060152, - -0.047488, - 0.054855, - 0.10335, - -0.013245, - -0.0016157, - 0.070877, - 0.13789, - 0.034268, - -0.010069, - -0.064465, - 0.053606, - -0.051764, - 0.020535, - 0.0914, - -0.012354, - 0.0060424, - -0.018352, - -0.056688, - -0.070129, - -0.055962, - 0.037925, - 0.041505, - 0.024152, - 0.055727, - 0.034388, - 0.0033096, - -0.036462, - 0.011333, - 0.079117, - -0.0080308, - -0.014656, - 0.02469, - -0.095047, - 0.03763, - 0.11803, - -0.032886, - -0.014074, - 0.033946, - 0.032197, - -0.02891, - 0.038398, - -0.015036, - -0.066896, - -0.0051735, - 0.038077, - -0.0039832, - 0.011555, - 0.049226, - 0.027123, - 0.057662, - -0.016396, - -0.0088557, - 0.0028504, - -0.025053, - 0.015104, - -0.011719, - -0.053375, - 0.065619, - -0.028074, - 0.028768, - -0.080393, - 0.013408, - 0.05467, - 0.037212, - 0.034879, - -0.013012, - 0.078569, - -0.062265, - -0.042414, - -0.051823, - -0.11893, - 0.037716, - -0.032137, - 0.044695, - -0.019245, - 0.10472, - 0.024523, - 0.024433, - 0.060333, - -0.020209, - 0.036616, - 0.05988, - 0.080132, - 0.0060895, - -0.0225, - 0.02582, - 0.060336, - -0.0362, - 0.028488, - 0.00083196, - 0.017617, - 0.047998, - 0.0043556, - -0.064573, - 0.020864, - 0.10564, - -0.021538, - 0.038587, - -0.010753, - -0.013723, - 0.031935, - -0.047733, - 0.084932, - 0.030655, - -0.0043449, - -0.0047573, - -0.037973, - 0.04315, - 0.031653, - 0.024925, - -0.047025, - 0.08811, - 0.068436, - -0.011137, - 0.060695, - 0.029058, - -0.10633, - 0.0068686, - 0.049285, - -0.096741, - -0.036728, - -0.054691, - -0.0047932, - -0.043925, - -0.015345, - -0.011551, - 0.031823, - -0.033265, - 0.045957, - 0.077312, - -0.04138, - 0.038951, - 0.075955, - -0.036092, - 0.0079691, - 0.036351, - -0.061104, - -0.0068293, - 0.037603, - 0.0041, - -0.046727, - -0.032741, - -0.024137, - -0.032682, - -0.0010795, - 0.014545, - 0.058781, - 0.061158, - -0.000051041, - -0.02243, - 0.0063755, - 0.00018072, - 0.051323, - 0.030908, - 0.047019, - 0.0028165, - -0.032297, - -0.029731, - 0.076551, - -0.014107, - -0.00098998, - -0.1313, - 0.012284, - -0.07895, - -0.030809, - 0.12081, - -0.035599, - -0.040404, - 0.061211, - 0.0176, - -0.069437, - -0.045998, - 0.0013315, - -0.0019423, - -0.041634, - -0.052829, - -0.047367, - -0.057862, - -0.14159, - -0.00934, - -0.078889, - 0.011241, - 0.062598, - 0.071083, - -0.060631, - 0.057129, - -0.015036, - -0.059362, - 0.06316, - 0.006613, - 0.055533, - 0.01941, - 0.13553, - 0.008689, - 0.037041, - -0.1327, - -0.041258, - -0.095826, - 0.05116, - -0.037162, - -0.0080274, - 0.060071, - -0.065802, - 0.067896, - -0.082686, - 0.073223, - -0.056949, - 0.028854, - 0.0097156, - -0.048318, - -0.075175, - -0.0063637, - 0.021259, - -0.023174, - 0.10493, - -0.0013401, - 0.026549, - -0.016978, - -0.017365, - 0.053717, - -0.0040353, - -0.066726, - 0.0049591, - 0.038127, - 0.083526, - 0.0088055, - -0.055829, - -0.025147, - -0.014633, - 0.022708, - -0.014649, - 0.076999, - -0.030991, - 0.036123, - 0.057453, - -0.044732, - 0.047331, - 0.066022, - 0.054525, - 0.013007, - -0.050473, - -0.020842, - -0.013315, - 0.012296, - 0.016265, - 0.0012481, - 0.044529, - -0.09114, - -0.056215, - 0.076037, - -0.093633, - 0.0031003, - 0.0015082, - -0.069883, - -0.081582, - -0.07558, - 0.0033604, - 0.0026818, - 0.052706, - -0.0040919, - 0.0053811, - -0.051108, - -0.005563, - 0.028908, - -0.0050945, - 0.00071277, - -0.11452, - 0.005803, - -0.029767, - -0.011163, - -0.031382, - -0.043861, - 0.019403, - -0.072393, - -0.014203, - 0.046507, - 0.058292, - -0.057127 - ], - "business-like": [ - -0.010671, - -0.016745, - 0.016031, - -0.019893, - 0.0037793, - -0.019784, - -0.030233, - -0.073096, - -0.0010865, - 0.063787, - -0.014779, - -0.034554, - -0.041403, - -0.0056713, - -0.01803, - 0.048232, - 0.070897, - 0.027593, - 0.035104, - 0.031925, - -0.017586, - 0.00037052, - -0.0038075, - 0.069708, - -0.028389, - 0.020953, - 0.019084, - 0.032419, - -0.0089146, - -0.0008039, - -0.032572, - -0.025317, - -0.019931, - -0.077157, - 0.063095, - 0.048785, - -0.003728, - 0.044181, - 0.036696, - 0.013369, - 0.029861, - -0.13167, - 0.010969, - 0.0331, - -0.029273, - -0.0569, - 0.036364, - -0.040471, - -0.026858, - -0.041798, - -0.015778, - -0.049835, - -0.020997, - 0.030231, - -0.0088521, - -0.011046, - -0.038709, - -0.035916, - -0.0065803, - 0.014518, - 0.034463, - 0.017606, - 0.061203, - -0.01265, - -0.015476, - -0.012113, - 0.027278, - -0.013813, - -0.023755, - -0.020024, - -0.010274, - -0.0282, - -0.00034618, - -0.014578, - -0.015324, - -0.014682, - -0.033751, - -0.026218, - -0.015711, - 0.015837, - 0.020612, - -0.011627, - 0.041832, - 0.0055657, - 0.031665, - -0.043438, - -0.031177, - 0.023935, - 0.016406, - -0.0085261, - -0.0037959, - 0.0067353, - -0.089192, - 0.029055, - 0.060227, - 0.053871, - -0.031128, - -0.048463, - 0.056858, - 0.016984, - -0.013794, - 0.014845, - -0.06437, - 0.00034255, - -0.02462, - -0.065696, - 0.03138, - -0.037746, - -0.049678, - -0.01712, - -0.020178, - 0.050509, - 0.015427, - 0.028077, - -0.080124, - -0.047351, - -0.014419, - -0.0039817, - -0.049225, - -0.016025, - -0.02108, - -0.044171, - 0.0082912, - 0.006645, - 0.077919, - 0.011131, - -0.014871, - 0.014482, - 0.022153, - -0.025448, - 0.012605, - 0.0019534, - -0.03195, - 0.0039618, - -0.042578, - -0.014931, - 0.037694, - 0.052352, - -0.0089587, - 0.025125, - 0.045657, - -0.0076582, - 0.018303, - -0.058548, - -0.0043246, - 0.00064693, - 0.068007, - -0.016919, - -0.0069235, - -0.0072917, - 0.027915, - 0.095315, - 0.0061823, - 0.021078, - -0.039797, - 0.035038, - -0.020044, - -0.029219, - -0.013519, - 0.01649, - 0.052583, - 0.0022917, - -0.055721, - 0.072618, - 0.00102, - 0.023454, - 0.017845, - -0.0098105, - -0.0030876, - 0.029227, - -0.012904, - -0.0072954, - -0.02873, - 0.013524, - 0.053828, - 0.012025, - -0.044594, - 0.10287, - -0.018048, - -0.015695, - -0.012953, - -0.022989, - -0.001599, - 0.036394, - -0.0019302, - -0.032799, - -0.044122, - 0.053623, - -0.0074906, - -0.016081, - -0.012386, - 0.042164, - 0.083873, - -0.01235, - -0.010848, - 0.0062702, - -0.0045235, - -0.012579, - 0.017159, - -0.0073953, - -0.10632, - 0.032834, - 0.067793, - -0.02046, - 0.028312, - -0.012935, - -0.068487, - -0.0061216, - -0.023939, - -0.001792, - 0.050531, - -0.011539, - 0.026466, - 0.019414, - 0.02868, - 0.012987, - -0.043019, - -0.016974, - -0.11604, - -0.0087899, - -0.0027879, - -0.018308, - -0.023698, - 0.061717, - -0.0055215, - 0.015783, - 0.03323, - 0.032067, - 0.0028464, - -0.012975, - 0.011902, - -0.038479, - -0.024022, - -0.011883, - 0.036218, - -0.0023332, - -0.017276, - -0.054251, - -0.0067743, - 0.005972, - 0.025963, - -0.0035199, - 0.023755, - 0.047695, - -0.099093, - 0.013054, - -0.0036246, - -0.063253, - 0.037108, - -0.046102, - 0.033399, - -0.01782, - -0.0079189, - -0.037384, - -0.011547, - -0.02484, - -0.021173, - -0.014645, - 0.000047524, - -0.021844, - -0.01896, - 0.028981, - -0.014515, - -0.023892, - -0.029674, - 0.03451, - 0.036755, - 0.043607, - -0.031749, - -0.011723, - -0.079042, - 0.045469, - -0.062815, - -0.025027, - 0.058624, - -0.084649, - 0.016655, - 0.012854, - 0.0018977, - 0.008069, - 0.07326, - -0.0095768, - 0.0018059, - -0.020588, - -0.025365, - 0.0099704, - 0.01289, - -0.032199, - -0.029402, - 0.0094926, - 0.0012753, - 0.048687, - 0.044964, - -0.013469, - -0.021438, - -0.024585, - 0.0019405, - 0.022966, - -0.025017, - -0.025024 - ], - "electronic": [ - -0.02588, - 0.003425, - -0.018705, - -0.0045973, - -0.0058517, - 0.0046565, - 0.0044448, - -0.088179, - 0.051902, - 0.024801, - 0.014695, - -0.025948, - 0.0031776, - 0.06044, - -0.035113, - 0.040512, - 0.057395, - 0.033511, - 0.055156, - 0.022052, - 0.035116, - -0.010195, - 0.058563, - 0.048504, - -0.0022019, - 0.018475, - -0.029711, - -0.0015007, - 0.030417, - -0.017979, - 0.03701, - -0.013197, - -0.023727, - -0.066404, - 0.0609, - -0.0038339, - -0.0087165, - 0.031037, - -0.00084077, - -0.0033825, - -0.041817, - -0.12104, - -0.041604, - 0.0057673, - -0.0010552, - -0.021343, - -0.0095228, - 0.0057552, - -0.0058637, - -0.018808, - -0.065869, - -0.020846, - -0.00097674, - -0.022121, - -0.001161, - 0.06076, - -0.011831, - 0.0066378, - -0.0046317, - 0.0060658, - 0.06119, - 0.041348, - 0.099068, - 0.062558, - 0.032083, - 0.042532, - -0.0094559, - 0.0090178, - -0.015454, - 0.04965, - 0.0089886, - 0.0089823, - 0.050073, - -0.023852, - 0.012738, - 0.015353, - -0.042444, - -0.043825, - 0.022224, - -0.044252, - -0.026728, - -0.044266, - -0.064829, - 0.013491, - -0.003816, - -0.034983, - -0.010195, - 0.0036213, - 0.01277, - -0.031507, - -0.016956, - 0.01624, - -0.0788, - -0.0029831, - 0.022424, - 0.055095, - 0.021091, - -0.027488, - -0.030269, - 0.0088038, - 0.0439, - 0.0044123, - -0.0049719, - -0.049588, - 0.025382, - -0.094233, - -0.0014893, - 0.017455, - 0.026388, - 0.0011273, - 0.046691, - 0.090352, - 0.037836, - 0.0037881, - -0.079982, - 0.026368, - -0.027379, - -0.0095533, - -0.042846, - 0.011387, - 0.005983, - 0.053736, - -0.015055, - -0.010382, - 0.065466, - -0.049327, - -0.027034, - -0.015259, - 0.025032, - 0.060181, - -0.027685, - -0.016458, - -0.01213, - 0.03255, - 0.059377, - -0.044654, - 0.054397, - 0.0096323, - 0.015488, - -0.020939, - 0.035728, - 0.025722, - 0.043859, - 0.012601, - -0.024694, - -0.015846, - -0.01415, - -0.049828, - 0.0023939, - 0.0098292, - 0.041689, - 0.13359, - 0.01759, - 0.005933, - 0.025706, - 0.0097976, - -0.01432, - 0.016721, - 0.051906, - -0.012472, - -0.015262, - 0.022332, - -0.074495, - -0.021512, - 0.003848, - 0.025473, - 0.056512, - -0.02456, - 0.021627, - 0.0065695, - -0.0029127, - 0.03495, - -0.020382, - -0.029657, - -0.035069, - 0.049322, - -0.011113, - 0.010816, - -0.043995, - -0.021731, - 0.029446, - 0.00057076, - -0.061765, - -0.026374, - -0.064059, - -0.0036899, - -0.037602, - 0.085105, - -0.059019, - 0.021925, - -0.040443, - 0.017548, - 0.075663, - -0.010483, - -0.0023672, - -0.033598, - -0.0032896, - -0.021935, - 0.0016231, - 0.0019261, - -0.12626, - 0.059216, - -0.054057, - 0.066338, - -0.024645, - 0.0085034, - 0.010221, - 0.01116, - -0.08209, - 0.014874, - 0.15859, - 0.028574, - -0.0033639, - 0.0050981, - 0.030945, - -0.011223, - 0.03968, - 0.016493, - -0.0029676, - 0.032283, - 0.021546, - 0.006916, - -0.0076059, - 0.074526, - -0.014243, - 0.011567, - 0.012597, - 0.047827, - 0.036184, - -0.026701, - -0.015023, - -0.05027, - -0.042758, - -0.048163, - 0.014125, - -0.03004, - 0.04073, - 0.034909, - -0.020188, - -0.061116, - 0.035926, - 0.0051008, - 0.062109, - -0.020624, - -0.10588, - -0.029479, - -0.039097, - 0.0063282, - 0.020365, - -0.0036167, - 0.037943, - -0.02527, - 0.0091823, - 0.0026764, - -0.012506, - 0.036192, - 0.0054896, - -0.044116, - -0.0055992, - -0.032484, - 0.04862, - 0.01461, - 0.024998, - -0.01071, - -0.050407, - -0.056742, - 0.063993, - -0.0191, - -0.039789, - 0.01129, - -0.019253, - 0.061983, - -0.069139, - -0.014316, - -0.04465, - -0.08824, - 0.014579, - 0.08682, - -0.0040404, - 0.0085541, - 0.14628, - -0.0073705, - -0.0007992, - -0.032898, - -0.048484, - -0.020533, - -0.044692, - 0.0025514, - -0.042967, - 0.030309, - -0.0072893, - 0.030716, - -0.019144, - -0.059153, - -0.017399, - 0.023877, - 0.021066, - -0.029093, - 0.030594, - 0.011689 - ], - "climatological": [ - -0.0031484, - -0.042534, - -0.028359, - -0.018213, - 0.027353, - -0.049337, - -0.0057236, - -0.058312, - 0.015582, - 0.010908, - 0.0065489, - -0.057649, - -0.036828, - -0.011226, - 0.04213, - -0.030448, - 0.064399, - 0.013428, - 0.0092345, - 0.047282, - -0.018763, - 0.0057294, - -0.0097667, - 0.0745, - 0.050087, - -0.012405, - -0.02532, - 0.021573, - 0.054549, - 0.045645, - 0.00084601, - 0.023552, - 0.040861, - -0.099308, - 0.069935, - 0.075506, - 0.028425, - -0.019603, - 0.04418, - 0.043326, - -0.02842, - -0.066815, - 0.0010277, - -0.012278, - 0.0080483, - -0.038691, - -0.0067843, - -0.026026, - -0.0442, - -0.019634, - -0.047919, - -0.0087402, - -0.020857, - 0.066949, - 0.033647, - 0.03827, - 0.037523, - 0.012782, - 0.017004, - -0.04353, - 0.013317, - 0.033446, - 0.05048, - -0.047485, - 0.026576, - -0.032098, - 0.033575, - -0.0080252, - 0.094071, - -0.0027008, - 0.023674, - 0.027271, - -0.023717, - -0.036965, - -0.032855, - -0.0056554, - -0.027502, - -0.075263, - -0.0033897, - 0.011022, - -0.022659, - 0.024876, - -0.017447, - 0.036484, - -0.047411, - 0.032491, - 0.012025, - -0.0083252, - 0.0097659, - -0.02616, - -0.020626, - 0.025539, - -0.060142, - 0.050503, - -0.0088218, - 0.035655, - -0.022747, - 0.042527, - 0.027527, - 0.0093234, - 0.029526, - -0.053162, - -0.038538, - -0.016365, - -0.01408, - -0.064145, - 0.0039175, - -0.011575, - 0.017873, - -0.0092283, - 0.0047603, - 0.0098395, - -0.0072678, - 0.0080196, - -0.023447, - -0.060903, - 0.032946, - 0.027233, - -0.019879, - 0.009255, - 0.030581, - -0.029112, - 0.033035, - 0.0047217, - 0.056036, - 0.0039874, - -0.0039322, - -0.016007, - -0.043629, - 0.085599, - 0.034118, - 0.0060139, - -0.023033, - -0.010223, - -0.006625, - 0.049386, - 0.055314, - 0.038802, - 0.017196, - 0.0017754, - 0.010717, - -0.035476, - -0.0004089, - -0.018065, - -0.050994, - 0.0041494, - -0.027988, - -0.030834, - -0.02641, - 0.042576, - 0.022391, - 0.15478, - -0.014541, - 0.0082272, - 0.078299, - 0.021928, - 0.011096, - 0.0067406, - -0.023121, - 0.040818, - 0.039166, - -0.031961, - -0.0794, - 0.013199, - -0.042921, - 0.030659, - -0.021806, - 0.01304, - 0.027416, - 0.042747, - -0.012567, - -0.023206, - 0.026769, - -0.066537, - -0.0041662, - 0.023734, - 0.0013433, - -0.027211, - -0.0056725, - -0.021007, - -0.0045698, - 0.089415, - 0.0073995, - -0.015745, - 0.023733, - -0.021717, - -0.012971, - 0.074968, - -0.052927, - 0.03746, - 0.059343, - 0.055159, - 0.063576, - -0.02645, - 0.008925, - -0.04307, - -0.0085931, - 0.033735, - -0.036615, - 0.020116, - -0.094264, - -0.030335, - -0.065513, - -0.025072, - 0.01758, - 0.039707, - 0.0029914, - -0.016764, - -0.071288, - 0.030397, - 0.056615, - 0.00026494, - 0.0074019, - -0.014088, - 0.03187, - 0.027381, - -0.00076409, - -0.039762, - -0.036552, - -0.017218, - -0.035078, - 0.039961, - -0.031265, - 0.058616, - -0.015766, - 0.03022, - 0.028616, - 0.043417, - 0.00552, - -0.01147, - 0.025084, - -0.067934, - -0.0056907, - 0.05288, - -0.04808, - 0.0096775, - 0.018224, - 0.00094936, - 0.033362, - -0.0043515, - -0.010018, - 0.014846, - 0.0099003, - 0.017688, - -0.10488, - 0.035045, - 0.02192, - 0.0019237, - -0.044462, - -0.0095018, - 0.021919, - -0.010929, - 0.053183, - -0.041632, - -0.04304, - 0.00084728, - 0.0565, - 0.023723, - 0.033178, - 0.0094298, - 0.061289, - 0.0091376, - -0.038439, - -0.012379, - 0.010177, - -0.059785, - 0.0059746, - 0.039148, - 0.046299, - -0.00091393, - -0.038006, - 0.043228, - -0.050692, - -0.015625, - 0.074884, - -0.12231, - -0.04093, - -0.016063, - -0.016451, - -0.066541, - 0.11768, - -0.016507, - -0.014099, - -0.0027698, - 0.034118, - 0.008618, - -0.030746, - -0.01501, - -0.020896, - 0.0097819, - -0.043645, - 0.036451, - -0.01557, - 0.022902, - 0.011038, - 0.0068894, - -0.044571, - 0.015643, - 0.015719, - -0.0052294 - ], - "destinations": [ - -0.0041854, - -0.00033125, - -0.020073, - -0.024131, - -0.0022747, - -0.039496, - -0.038989, - -0.05416, - -0.0019415, - -0.017462, - 0.019903, - -0.046671, - -0.080629, - -0.02285, - 0.012145, - -0.0037886, - 0.037071, - -0.008302, - 0.047843, - 0.047792, - 0.025466, - -0.0056383, - -0.0064642, - 0.07258, - -0.016884, - -0.007678, - -0.0052537, - 0.014471, - 0.041846, - 0.028992, - 0.024638, - 0.036715, - -0.00058798, - -0.027803, - 0.041141, - 0.032215, - -0.026374, - 0.018198, - -0.022279, - -0.018305, - -0.0071889, - -0.079561, - -0.038595, - -0.012745, - -0.025649, - -0.0072365, - 0.033861, - -0.012732, - -0.023761, - -0.00039009, - -0.017852, - -0.0111, - -0.042297, - -0.035136, - -0.068926, - -0.035386, - -0.017906, - 0.070779, - -0.0093452, - -0.014373, - -0.024757, - 0.010478, - 0.11677, - -0.015922, - 0.052334, - -0.012816, - -0.009148, - -0.015308, - -0.013902, - 0.026339, - 0.015077, - 0.029423, - 0.027779, - 0.025883, - 0.007248, - -0.02724, - 0.025685, - -0.035171, - -0.056804, - -0.044935, - 0.040178, - 0.039845, - 0.0072576, - 0.059362, - -0.015602, - -0.026668, - 0.017528, - 0.0072977, - -0.020606, - -0.029774, - 0.044197, - -0.024734, - -0.039948, - 0.034101, - 0.0078968, - 0.021729, - -0.016886, - 0.03014, - -0.071028, - 0.0036517, - -0.004476, - 0.023597, - 0.00064809, - -0.001252, - 0.026488, - -0.032165, - -0.038983, - -0.013915, - 0.022137, - 0.0085944, - 0.076601, - 0.05374, - 0.038516, - 0.065814, - -0.013677, - -0.021661, - -0.0031193, - -0.0034366, - -0.015514, - 0.07479, - 0.047512, - -0.048341, - -0.0039393, - -0.055131, - 0.076443, - 0.0038014, - -0.028285, - -0.037546, - 0.024822, - 0.024644, - -0.0097164, - 0.049947, - -0.035, - -0.035416, - 0.017788, - -0.012461, - 0.015878, - 0.041311, - -0.028246, - 0.022636, - -0.034118, - 0.00067316, - -0.010704, - 0.012147, - 0.049346, - 0.046857, - -0.021182, - -0.020223, - -0.065891, - 0.04243, - 0.01615, - 0.061311, - -0.061189, - -0.030158, - 0.045219, - 0.0067653, - -0.074912, - 0.046168, - -0.019366, - 0.043848, - 0.0025162, - -0.024358, - 0.025398, - 0.0031286, - 0.015583, - 0.034034, - 0.051382, - -0.019896, - -0.0013679, - 0.0034147, - 0.0027332, - 0.042417, - -0.0014667, - -0.021452, - -0.040713, - 0.039707, - -0.033432, - -0.017903, - -0.0032309, - 0.067597, - 0.06177, - 0.01181, - 0.03339, - -0.06273, - 0.027008, - -0.0042863, - 0.010711, - 0.065543, - -0.024798, - -0.041259, - 0.024861, - 0.053725, - -0.040122, - 0.050808, - 0.013265, - 0.038896, - -0.00057269, - -0.032387, - 0.0030066, - -0.026248, - -0.12214, - 0.055655, - 0.0028568, - 0.0073224, - -0.01196, - 0.029764, - -0.016523, - -0.021346, - 0.053883, - -0.0056326, - 0.052898, - -0.02351, - 0.0043327, - -0.028777, - 0.007544, - -0.0073823, - 0.0012089, - -0.045202, - -0.012052, - -0.041942, - -0.01436, - -0.019484, - 0.0061873, - 0.067171, - 0.0079516, - 0.014187, - -0.010325, - 0.043494, - 0.0065604, - -0.006666, - -0.029091, - -0.0090636, - -0.052142, - 0.0011847, - 0.037197, - -0.057821, - 0.021981, - 0.023768, - 0.014852, - 0.0563, - -0.024359, - -0.0033862, - 0.0060244, - -0.055272, - 0.0053624, - 0.022898, - 0.034644, - -0.021458, - -0.0096917, - -0.029656, - 0.026716, - -0.032688, - -0.010775, - -0.02021, - -0.048412, - 0.033536, - -0.06547, - 0.022614, - 0.035873, - 0.016956, - -0.016576, - 0.0030834, - 0.0068559, - -0.03469, - 0.026461, - 0.013628, - -0.009484, - -0.017133, - 0.052094, - 0.028519, - 0.0091988, - 0.065519, - -0.067056, - -0.012397, - 0.024995, - -0.0059419, - 0.017034, - -0.014494, - -0.034999, - -0.00088739, - 0.023639, - -0.011055, - 0.0012844, - -0.011196, - 0.029319, - -0.001078, - -0.060406, - 0.004538, - -0.010781, - -0.044655, - 0.039717, - 0.021394, - -0.040753, - 0.00073673, - 0.042533, - 0.033582, - 0.058027, - 0.056669, - 0.0098933, - -0.023984 - ], - "historiography": [ - 0.019382, - -0.06934, - 0.017422, - 0.023519, - -0.012771, - -0.0045111, - 0.031656, - -0.056794, - 0.0086834, - -0.011067, - 0.0088722, - -0.034843, - 0.019232, - 0.0056146, - 0.035978, - -0.0079518, - 0.04434, - -0.043088, - -0.0053094, - 0.031265, - -0.037674, - 0.042582, - -0.0042555, - 0.034093, - 0.01583, - 0.019892, - -0.042709, - 0.011478, - -0.0025258, - 0.0050417, - 0.033732, - -0.0014868, - -0.020719, - -0.043257, - 0.012623, - -0.0036598, - 0.032081, - 0.030691, - -0.021277, - 0.00079351, - -0.023703, - -0.064759, - 0.065452, - 0.069428, - 0.018214, - -0.0088526, - 0.010468, - 0.0016621, - -0.003359, - 0.00028391, - -0.00075919, - -0.018584, - -0.036945, - 0.016553, - -0.015078, - 0.014436, - 0.0046705, - 0.051791, - -0.013497, - 0.000089172, - 0.060948, - -0.0035363, - 0.042191, - -0.017715, - 0.0069078, - -0.010985, - -0.012386, - 0.025872, - 0.017343, - 0.019689, - -0.025623, - -0.035596, - -0.022199, - -0.010316, - 0.025025, - -0.037135, - 0.0096729, - -0.0143, - 0.081499, - -0.02283, - -0.013054, - 0.023704, - -0.033669, - 0.028358, - -0.065114, - -0.015667, - 0.032368, - -0.025962, - 0.014193, - 0.026345, - -0.019322, - 0.031851, - -0.029556, - 0.013009, - 0.020398, - 0.041563, - -0.053678, - -0.044501, - -0.025986, - -0.033784, - 0.027029, - -0.03106, - 0.020548, - 0.00024907, - -0.026908, - -0.033295, - 0.043081, - 0.0525, - -0.034137, - 0.030064, - -0.0024138, - 0.040116, - 0.018605, - -0.004304, - -0.034562, - 0.03432, - 0.017809, - 0.020373, - -0.011223, - 0.039409, - 0.0060476, - -0.02305, - 0.00525, - -0.011361, - 0.020116, - 0.019381, - -0.039224, - -0.024289, - 0.0055478, - 0.11995, - -0.019703, - 0.0078052, - -0.020664, - -0.0067831, - -0.017239, - -0.010033, - 0.0037376, - 0.013382, - 0.024378, - -0.044661, - 0.025463, - -0.053604, - -0.018207, - 0.010992, - -0.0019398, - -0.075031, - 0.014595, - 0.014138, - 0.039848, - -0.025832, - 0.05449, - 0.017296, - 0.021601, - -0.037645, - -0.010662, - 0.037369, - 0.055862, - -0.012318, - -0.00653, - 0.02865, - 0.017798, - 0.0016665, - -0.052973, - -0.041451, - -0.040009, - 0.0079344, - -0.0072306, - -0.0037562, - 0.020179, - -0.038902, - -0.0031631, - -0.039376, - -0.026348, - -0.02607, - 0.031396, - 0.036098, - -0.0048484, - -0.023458, - -0.0063188, - 0.0056249, - -0.014032, - 0.05184, - 0.0039832, - -0.015692, - 0.048824, - -0.015756, - 0.033055, - 0.088618, - 0.02834, - -0.0077972, - 0.046251, - 0.035417, - -0.030148, - -0.037168, - -0.019583, - 0.036818, - -0.010197, - -0.022632, - -0.028286, - 0.016695, - -0.088986, - -0.032745, - 0.013646, - -0.043562, - -0.017891, - 0.017904, - 0.0037148, - 0.025157, - -0.051708, - -0.0025422, - 0.052162, - 0.0061132, - -0.0023037, - 0.01902, - 0.022791, - 0.084436, - -0.017192, - -0.034061, - -0.032469, - 0.0049693, - -0.013786, - 0.019226, - 0.017582, - 0.069313, - -0.0095892, - -0.014704, - 0.046428, - 0.063616, - -0.012324, - -0.0042699, - 0.0082373, - -0.032827, - -0.016957, - 0.0078446, - 0.0087336, - 0.027635, - -0.0082695, - -0.0026795, - 0.03653, - -0.032171, - 0.018735, - 0.024634, - -0.0075444, - -0.014022, - 0.018567, - -0.014097, - -0.076327, - -0.021762, - -0.0070213, - -0.0080181, - 0.0593, - 0.021695, - -0.024964, - 0.037749, - 0.011352, - 0.020991, - -0.017598, - 0.018958, - 0.058419, - 0.0060552, - 0.026912, - 0.0038615, - 0.04846, - 0.0071105, - 0.0074958, - -0.0067712, - -0.015223, - 0.023789, - 0.030654, - -0.027896, - 0.051266, - 0.050252, - -0.031254, - -0.031256, - -0.00274, - -0.021377, - -0.0030803, - 0.023956, - -0.02593, - 0.017379, - 0.060038, - -0.016748, - 0.0011178, - -0.034162, - -0.01646, - 0.033515, - 0.0021603, - -0.015329, - 0.031875, - -0.0068529, - -0.055107, - -0.010145, - 0.0012722, - -0.041337, - 0.024849, - 0.00090242, - -0.017017, - 0.0079576, - -0.011632, - 0.020838 - ], - "city": [ - 0.085978, - -0.079447, - 0.075736, - 0.071935, - -0.022585, - -0.073518, - 0.04352, - -0.16102, - 0.059528, - 0.086165, - -0.023481, - -0.13133, - -0.019591, - 0.12252, - 0.014381, - 0.069783, - 0.14299, - -0.014385, - 0.049262, - 0.0098379, - 0.072562, - -0.044708, - -0.011179, - 0.12615, - 0.08993, - -0.018554, - -0.0095625, - 0.047922, - -0.041524, - 0.092436, - -0.065398, - 0.10599, - -0.080256, - -0.0072526, - -0.057609, - 0.081398, - 0.029766, - 0.0064611, - -0.071293, - -0.042345, - 0.032582, - -0.1836, - 0.068208, - 0.011203, - 0.030444, - -0.029976, - 0.013239, - 0.015663, - -0.062859, - 0.11886, - 0.02643, - -0.081124, - -0.06491, - -0.042637, - -0.081397, - 0.06578, - 0.028953, - -0.021428, - -0.061429, - -0.024049, - 0.04428, - -0.033909, - 0.16867, - 0.013784, - 0.069742, - 0.0091803, - -0.064538, - -0.014099, - 0.062587, - -0.095287, - 0.064951, - -0.0028453, - -0.0018812, - 0.005588, - 0.035717, - -0.0013246, - -0.016026, - 0.0058427, - -0.039747, - -0.030307, - -0.010046, - 0.11419, - -0.064091, - 0.027926, - -0.063777, - -0.011133, - -0.04935, - -0.13125, - 0.018362, - 0.025949, - -0.033174, - 0.039196, - -0.11612, - -0.02335, - 0.0048347, - 0.14004, - -0.0012863, - 0.020749, - 0.061474, - 0.054437, - 0.10564, - -0.030067, - 0.02075, - -0.039402, - 0.03505, - -0.15354, - -0.0053073, - -0.0039339, - 0.070096, - 0.034496, - -0.034392, - 0.1608, - 0.074158, - 0.025924, - 0.017673, - 0.02475, - -0.06565, - -0.079456, - -0.01507, - 0.093518, - -0.042133, - -0.026963, - 0.00026471, - 0.0080862, - -0.021928, - -0.033248, - 0.012478, - -0.18503, - 0.015115, - 0.093542, - -0.0020547, - 0.021237, - 0.021799, - 0.010999, - 0.058296, - -0.015077, - 0.010725, - 0.064631, - -0.039701, - -0.054379, - -0.0013595, - -0.05128, - -0.029239, - 0.075738, - -0.025568, - -0.017665, - -0.019303, - 0.017385, - -0.039584, - -0.062105, - 0.019131, - 0.046611, - 0.032603, - -0.072079, - 0.015938, - -0.037297, - 0.0047046, - 0.077386, - -0.059447, - -0.035304, - -0.013606, - -0.13603, - -0.0017447, - -0.0058337, - 0.028697, - 0.061192, - 0.097904, - -0.073199, - 0.020092, - 0.11376, - 0.011956, - -0.023658, - 0.066807, - 0.016707, - 0.093984, - 0.078625, - -0.0062971, - 0.0055862, - -0.0063409, - 0.037536, - 0.0098688, - 0.025434, - 0.025083, - -0.033126, - -0.011269, - -0.037219, - -0.001643, - 0.16903, - 0.012514, - -0.027801, - -0.053651, - 0.10248, - -0.075507, - 0.031515, - 0.080313, - 0.029877, - -0.019844, - 0.031974, - 0.01433, - -0.024706, - -0.21418, - 0.009084, - -0.031999, - 0.016017, - -0.040505, - 0.0047185, - -0.088156, - -0.010114, - -0.015862, - 0.00025879, - 0.12334, - -0.13352, - -0.0074193, - 0.0078104, - -0.032739, - -0.025247, - 0.040285, - -0.044402, - 0.092992, - -0.069, - 0.055417, - -0.068436, - -0.025497, - 0.12894, - -0.060073, - 0.078295, - 0.011673, - 0.048445, - -0.024886, - -0.043161, - -0.14553, - -0.041279, - -0.10896, - 0.028759, - -0.015327, - 0.016634, - 0.025906, - -0.0049299, - 0.026259, - -0.054048, - 0.10569, - -0.02147, - -0.025771, - 0.028047, - 0.0093121, - -0.023272, - 0.021683, - 0.037638, - -0.021994, - -0.044819, - 0.018562, - -0.1499, - -0.048173, - -0.093226, - -0.025384, - 0.002971, - -0.043133, - 0.06868, - 0.0027083, - 0.02012, - -0.020485, - 0.089932, - 0.0063249, - -0.077416, - -0.00073861, - 0.031954, - -0.010254, - 0.026423, - 0.067206, - 0.070047, - -0.061811, - 0.14868, - -0.15287, - 0.002731, - 0.0738, - -0.015878, - -0.021028, - -0.02715, - 0.028535, - -0.043446, - 0.074498, - -0.047584, - -0.10316, - -0.043031, - 0.0098985, - 0.12197, - 0.017622, - -0.099353, - 0.00027313, - 0.095081, - 0.089862, - 0.054371, - 0.045915, - 0.0030974, - 0.087929, - 0.022359, - 0.012573, - 0.055081, - -0.036349, - -0.049334 - ], - "management": [ - 0.023258, - -0.056774, - -0.075644, - 0.0041592, - -0.023585, - -0.012469, - 0.0059556, - -0.077878, - 0.030322, - 0.004891, - -0.020844, - -0.037741, - -0.0050607, - -0.010861, - 0.033615, - 0.0030836, - 0.082651, - 0.013812, - 0.038673, - 0.028336, - -0.060867, - -0.0073867, - 0.0075476, - 0.055197, - -0.032995, - -0.000031036, - -0.027628, - -0.0041048, - 0.011377, - 0.0029689, - 0.02141, - -0.019877, - -0.0096757, - -0.061171, - 0.014956, - 0.056003, - -0.031901, - -0.0024923, - 0.023406, - -0.018728, - 0.013807, - -0.10683, - 0.0099308, - 0.014682, - -0.035096, - -0.011597, - 0.03848, - -0.010588, - -0.012167, - -0.02423, - -0.011406, - 0.000096885, - 0.035818, - 0.024383, - -0.029475, - -0.021167, - -0.047683, - 0.00075758, - -0.024872, - 0.018012, - 0.054371, - -0.0047974, - 0.074969, - 0.015769, - 0.03014, - 0.019793, - 0.029369, - -0.019875, - 0.072595, - -0.025719, - -0.0092777, - -0.0099551, - 0.015885, - 0.027806, - 0.026612, - 0.0051004, - -0.0043313, - -0.0083139, - 0.0074443, - -0.040355, - -0.053448, - 0.010535, - -0.014505, - 0.039358, - 0.0026208, - 0.0025121, - 0.0014482, - -0.016377, - 0.0017609, - -0.017056, - 0.027296, - 0.029102, - -0.086007, - -0.015278, - -0.017761, - 0.062316, - -0.018124, - 0.0090595, - -0.010071, - 0.017644, - -0.018092, - 0.040744, - 0.0092795, - 0.020765, - 0.018917, - -0.080475, - 0.017395, - -0.013032, - -0.037979, - -0.019239, - -0.016095, - 0.053541, - 0.044539, - 0.011181, - 0.037463, - -0.029372, - -0.050501, - 0.012588, - -0.036964, - 0.022005, - -0.027962, - -0.014595, - 0.0096813, - 0.0064422, - 0.060495, - 0.02949, - -0.012691, - -0.059112, - 0.016795, - 0.12821, - 0.0033955, - -0.033456, - -0.010401, - -0.012961, - -0.017425, - -0.010291, - 0.004697, - 0.012129, - 0.011743, - 0.027603, - -0.025627, - -0.025527, - -0.032557, - 0.023823, - -0.026619, - -0.043861, - -0.014245, - -0.010311, - 0.0098148, - -0.027111, - 0.039511, - 0.044779, - 0.042509, - -0.083145, - 0.0047582, - 0.0089019, - 0.0072613, - 0.016719, - 0.020249, - 0.010127, - 0.038198, - 0.024665, - -0.054647, - 0.049254, - 0.016943, - -0.0077438, - 0.017185, - -0.035632, - -0.018034, - 0.064453, - 0.032072, - 0.01388, - -0.0081071, - -0.0029136, - 0.0046476, - 0.039824, - -0.030971, - 0.010711, - -0.061805, - -0.0063055, - -0.025297, - 0.014192, - 0.0098431, - 0.02456, - -0.0098153, - -0.031332, - -0.029405, - 0.060562, - -0.032413, - 0.03252, - -0.05509, - 0.026089, - 0.012479, - -0.023546, - -0.02082, - -0.02946, - 0.033828, - -0.0067084, - 0.032402, - -0.020487, - -0.12648, - 0.033496, - -0.008774, - -0.02296, - -0.055313, - -0.04216, - -0.066745, - -0.042327, - -0.018419, - 0.0066759, - 0.10297, - 0.0134, - -0.0039973, - 0.04744, - -0.0022985, - 0.010111, - 0.012297, - -0.028965, - -0.030145, - -0.029174, - -0.02023, - -0.0048637, - -0.0037485, - 0.08336, - 0.023098, - -0.017065, - 0.0084958, - 0.045698, - -0.016072, - -0.019344, - 0.0011374, - -0.028633, - -0.033159, - -0.014633, - 0.012568, - 0.012566, - -0.017412, - 0.018181, - 0.028836, - 0.0086092, - 0.023025, - 0.019404, - -0.0088149, - 0.021228, - -0.01932, - 0.0090679, - -0.020797, - -0.020878, - 0.017373, - 0.032364, - 0.017144, - 0.021458, - 0.033704, - 0.024156, - 0.011153, - 0.013098, - -0.019365, - 0.034261, - 0.065026, - 0.0096793, - -0.0079315, - 0.019093, - -0.011983, - 0.047395, - -0.0035178, - -0.010447, - -0.021337, - 0.028358, - -0.038382, - 0.024423, - -0.042503, - 0.031645, - -0.097613, - -0.037473, - -0.01423, - -0.0010414, - -0.0048979, - 0.021628, - -0.0030274, - -0.0060353, - 0.047148, - -0.013436, - -0.023105, - 0.028058, - 0.026918, - -0.019638, - -0.021682, - -0.0025967, - -0.02518, - -0.0096803, - 0.014137, - 0.050909, - 0.00085014, - -0.011709, - -0.014381, - -0.0023542, - -0.041172, - 0.028686, - 0.021305, - 0.0076976 - ], - "religions": [ - 0.017104, - -0.089874, - 0.084043, - -0.092952, - -0.023816, - -0.028924, - -0.028099, - -0.066328, - 0.018492, - -0.0033692, - 0.016157, - -0.057479, - -0.0078862, - -0.029332, - 0.0032564, - 0.0057676, - 0.078546, - -0.03363, - 0.029676, - 0.0027823, - -0.081893, - 0.0061154, - 0.043848, - 0.068444, - -0.0098246, - -0.030457, - 0.016837, - -0.0085732, - 0.084681, - 0.059006, - 0.0012685, - 0.035427, - 0.015055, - 0.0055168, - 0.016292, - 0.050987, - -0.015526, - -0.032667, - -0.013153, - 0.016117, - -0.055911, - -0.074589, - 0.01112, - -0.00011276, - -0.011894, - -0.025842, - -0.035683, - -0.020506, - 0.023494, - -0.03659, - -0.068263, - -0.0063405, - 0.016322, - 0.00016139, - -0.054361, - 0.095834, - 0.043713, - -0.052881, - -0.023571, - -0.030867, - 0.039836, - 0.0031954, - 0.14833, - -0.012811, - 0.033607, - -0.033455, - 0.0029841, - 0.057037, - 0.069349, - -0.0067285, - 0.009626, - 0.015817, - 0.038168, - -0.041159, - -0.037662, - -0.004891, - 0.055636, - -0.014977, - 0.072396, - 0.066175, - -0.02284, - 0.053614, - -0.010684, - 0.076038, - 0.015967, - -0.028301, - 0.024065, - -0.0098642, - -0.019948, - 0.049227, - -0.024781, - 0.010887, - -0.058573, - 0.054742, - 0.0092469, - 0.046381, - 0.033788, - -0.025192, - 0.0254, - -0.04061, - 0.0079323, - -0.0018465, - 0.020686, - -0.10188, - 0.044517, - -0.044721, - -0.0011265, - -0.001356, - -0.037146, - -0.0019173, - 0.0021215, - 0.04219, - 0.037594, - 0.0034401, - -0.0006756, - -0.013755, - 0.030458, - 0.020112, - -0.024074, - 0.031135, - 0.0057649, - -0.009743, - -0.072506, - -0.080875, - 0.072669, - 0.037059, - -0.070473, - -0.0076675, - -0.00043168, - 0.11601, - -0.010119, - 0.078514, - 0.0039791, - 0.010979, - -0.0033912, - 0.050186, - -0.0032506, - 0.038418, - -0.028684, - -0.048377, - -0.013426, - -0.049036, - -0.011261, - 0.065697, - 0.074732, - -0.0095285, - -0.046603, - -0.010967, - 0.043448, - -0.011412, - 0.039025, - 0.079986, - -0.038181, - -0.0051674, - 0.0111, - 0.0087215, - -0.011658, - 0.0018228, - 0.0052622, - 0.041829, - 0.037641, - -0.014403, - 0.018818, - -0.0076514, - 0.03687, - -0.015424, - 0.037638, - 0.052937, - -0.019237, - -0.034377, - -0.0055725, - -0.087779, - 0.016246, - 0.024287, - -0.013842, - 0.076689, - 0.0077803, - 0.020315, - 0.009135, - -0.069561, - 0.034732, - 0.047837, - 0.011924, - 0.029022, - 0.070472, - -0.052282, - 0.066526, - 0.089939, - -0.017634, - -0.10433, - -0.00034712, - 0.086066, - -0.10468, - -0.0098054, - 0.037924, - 0.038976, - -0.069896, - -0.032059, - -0.0094158, - -0.043514, - -0.12691, - 0.0012497, - -0.0011625, - -0.066151, - 0.030216, - 0.043672, - 0.079377, - -0.023521, - 0.12204, - -0.0095102, - 0.06929, - 0.00051977, - 0.024913, - 0.027035, - 0.022779, - 0.031854, - 0.023304, - -0.054291, - -0.050098, - -0.038108, - -0.016479, - 0.020295, - -0.059425, - 0.080883, - -0.00021132, - 0.0066932, - 0.033426, - 0.046616, - -0.015442, - -0.046186, - -0.0018593, - 0.020596, - -0.075401, - -0.033061, - 0.023371, - 0.021066, - -0.0049833, - 0.02546, - 0.017098, - 0.05706, - -0.034396, - -0.050488, - -0.014111, - 0.022337, - 0.034152, - 0.0001108, - 0.045294, - -0.02976, - -0.023955, - -0.054144, - 0.0018656, - -0.045942, - -0.06382, - -0.032467, - -0.042674, - 0.057842, - -0.042712, - 0.030452, - 0.0036437, - -0.039741, - 0.053137, - 0.013211, - 0.040485, - -0.0038091, - -0.030573, - -0.023933, - 0.0357, - 0.0095067, - 0.029281, - 0.063246, - 0.0065742, - 0.073209, - -0.071851, - -0.023426, - 0.033041, - -0.0098941, - 0.019329, - -0.025215, - -0.10583, - -0.062324, - 0.048147, - -0.049389, - 0.0094967, - -0.01099, - -0.0040777, - 0.0033714, - -0.0055199, - -0.021229, - -0.04912, - 0.036932, - 0.03262, - -0.041492, - -0.042624, - -0.036737, - -0.010386, - 0.049319, - 0.074817, - 0.031265, - -0.022041, - -0.0071914 - ], - "personalities": [ - 0.025857, - -0.058959, - 0.042598, - 0.011005, - -0.03898, - -0.0054146, - 0.024529, - -0.056743, - 0.044476, - 0.036474, - 0.011227, - -0.030005, - 0.0027407, - 0.0065436, - 0.012322, - -0.0034875, - 0.023095, - 0.0022303, - 0.020682, - 0.045128, - -0.0047979, - -0.006679, - 0.051767, - 0.068889, - -0.022852, - -0.01107, - -0.0076093, - 0.0055075, - 0.062305, - 0.0083181, - -0.033897, - -0.021747, - -0.017722, - -0.018455, - 0.030761, - 0.039912, - -0.0065365, - 0.0016228, - -0.0045022, - 0.027089, - -0.050604, - -0.087827, - 0.008741, - 0.039314, - 0.049979, - -0.020354, - 0.019795, - -0.019949, - -0.0090353, - -0.055052, - -0.037935, - -0.026155, - 0.024137, - 0.024374, - -0.023519, - 0.027734, - 0.019178, - 0.0063966, - -0.023098, - -0.0043306, - 0.00085385, - -0.04337, - 0.11035, - -0.036347, - 0.040575, - 0.0086634, - -0.023608, - 0.027026, - -0.021412, - -0.0054598, - 0.019696, - -0.029688, - 0.047751, - 0.036642, - 0.012837, - 0.015871, - 0.0033162, - -0.010787, - -0.0023951, - 0.0022232, - 0.00073121, - 0.012507, - 0.0081841, - 0.04437, - 0.037797, - -0.10006, - -0.011854, - 0.0045568, - 0.025166, - -0.013546, - 0.039788, - -0.017222, - -0.060034, - 0.029448, - -0.0035658, - 0.015735, - -0.021702, - -0.00059879, - 0.049989, - 0.022376, - 0.042708, - 0.017246, - 0.010332, - -0.024438, - 0.023291, - -0.024098, - 0.025132, - 0.0022866, - -0.0085787, - 0.05154, - -0.015386, - 0.025181, - 0.026203, - -0.0058259, - 0.0027731, - -0.025582, - -0.010898, - -0.015397, - -0.029297, - -0.0081864, - 0.023363, - -0.034662, - 0.052597, - -0.060621, - 0.086717, - 0.011722, - -0.01121, - -0.021562, - 0.046031, - 0.083837, - 0.022579, - 0.044164, - -0.017994, - -0.0185, - 0.0029675, - 0.042838, - 0.013561, - 0.046713, - -0.058021, - 0.036912, - -0.0060002, - -0.020964, - 0.0063328, - 0.035876, - 0.029648, - 0.018138, - 0.0021485, - -0.017079, - 0.013567, - 0.0065257, - 0.022546, - 0.056655, - 0.0023683, - -0.01363, - -0.023542, - -0.0022252, - 0.0097753, - 0.073314, - -0.0020457, - 0.031285, - 0.022433, - 0.02569, - 0.00074924, - 0.01968, - 0.0031261, - -0.014643, - 0.013028, - 0.0024806, - -0.049193, - -0.0027172, - -0.03581, - -0.00364, - 0.0024741, - -0.015992, - 0.014951, - 0.03899, - -0.008181, - 0.05468, - -0.017361, - -0.0216, - 0.034147, - -0.019785, - -0.017996, - 0.0022626, - 0.038159, - -0.083542, - 0.030977, - 0.058122, - 0.02891, - -0.033574, - 0.014308, - 0.070744, - -0.056215, - 0.017832, - 0.014884, - 0.047767, - 0.0012437, - -0.017319, - -0.020718, - 0.0024938, - -0.098732, - 0.033396, - -0.026724, - -0.041537, - -0.025178, - -0.0099169, - -0.0067332, - 0.024308, - 0.025146, - -0.0080467, - 0.060038, - 0.0096734, - 0.038626, - 0.011854, - 0.02253, - 0.00046431, - -0.055269, - 0.0082925, - -0.050001, - 0.0031622, - -0.036836, - -0.0048198, - -0.023017, - 0.056558, - 0.057946, - 0.016895, - 0.067248, - 0.034133, - -0.027884, - -0.012416, - 0.013723, - 0.010504, - -0.063789, - -0.024296, - 0.014744, - -0.0056743, - 0.00049721, - -0.010843, - 0.017985, - 0.030513, - -0.040073, - -0.021837, - -0.015947, - 0.023809, - 0.006117, - 0.0046445, - -0.03266, - -0.05751, - 0.0066762, - -0.052042, - 0.025059, - 0.010019, - 0.0062965, - -0.013275, - -0.030107, - 0.049124, - -0.011402, - -0.0027653, - 0.019765, - 0.0068585, - 0.020464, - -0.013855, - 0.035917, - -0.021464, - -0.0037911, - -0.0067342, - -0.019665, - 0.0093361, - 0.015757, - -0.032353, - -0.013757, - 0.05359, - -0.06218, - -0.032707, - 0.059039, - -0.023329, - -0.011859, - 0.011722, - 0.010094, - -0.0019458, - 0.043591, - 0.002905, - 0.02861, - -0.041202, - 0.03042, - 0.0088516, - -0.014029, - 0.0083323, - -0.034351, - 0.040865, - -0.00034892, - 0.0012229, - -0.051842, - -0.0069649, - -0.005127, - 0.041445, - 0.013438, - 0.04582, - -0.0041495, - 0.023936 - ], - "service": [ - 0.059111, - -0.047096, - 0.063653, - 0.0013819, - -0.0099623, - -0.014605, - -0.039518, - -0.093002, - 0.075657, - -0.0052813, - 0.034409, - -0.050038, - -0.071377, - -0.0095261, - -0.03024, - 0.075556, - 0.14027, - -0.038989, - 0.077803, - 0.030838, - 0.0048758, - 0.019497, - -0.028765, - 0.03716, - 0.0069447, - -0.010601, - -0.034447, - -0.030319, - -0.01421, - -0.025149, - -0.0072607, - -0.0077947, - -0.065767, - -0.077932, - 0.043105, - 0.048848, - 0.020133, - 0.039314, - 0.046807, - -0.0085396, - -0.006995, - -0.14736, - 0.035325, - -0.033572, - -0.022879, - -0.016622, - 0.011059, - -0.04204, - -0.041955, - 0.0030864, - -0.0016096, - -0.0010546, - 0.057572, - -0.030657, - -0.077676, - 0.022177, - -0.03708, - 0.04785, - -0.02378, - -0.019009, - -0.036326, - 0.022931, - 0.12781, - 0.01732, - 0.0047752, - 0.0084349, - -0.032181, - -0.040645, - -0.026828, - -0.029316, - 0.023666, - -0.0064475, - -0.00124, - -0.036671, - -0.016718, - -0.0060566, - -0.023893, - 0.010335, - 0.01517, - -0.014738, - -0.019652, - -0.016926, - 0.004066, - 0.059817, - -0.037619, - 0.019067, - -0.032406, - -0.048843, - -0.072825, - 0.0030869, - 0.039443, - 0.050333, - -0.097956, - 0.011201, - -0.0050306, - 0.040801, - 0.01316, - 0.0083932, - 0.014719, - 0.023407, - 0.014034, - 0.010633, - 0.0047525, - 0.012297, - 0.014712, - -0.076702, - 0.056781, - 0.02162, - -0.0054267, - -0.052856, - -0.0054474, - 0.082208, - 0.08804, - 0.078074, - -0.033247, - -0.026344, - -0.035871, - -0.018433, - -0.060228, - -0.024762, - -0.013227, - -0.019578, - 0.032878, - 0.013992, - 0.072152, - 0.040546, - 0.05051, - -0.084772, - 0.078144, - 0.10851, - -0.0063983, - -0.0098829, - -0.020468, - -0.039285, - 0.04015, - 0.0049496, - -0.0084416, - -0.01139, - -0.0028914, - -0.015125, - -0.040533, - -0.034537, - -0.061807, - -0.058669, - -0.053316, - 0.013098, - 0.0039145, - 0.01349, - 0.018655, - 0.032183, - 0.024959, - 0.06137, - -0.010583, - -0.10605, - 0.0093294, - 0.01506, - -0.088991, - 0.031928, - -0.047242, - -0.022011, - 0.0076823, - 0.00083456, - -0.064271, - -0.010916, - 0.021579, - 0.01559, - 0.025655, - 0.0041114, - -0.039321, - 0.002599, - 0.065314, - 0.0092669, - 0.0021131, - 0.018689, - 0.03796, - 0.047059, - -0.039939, - 0.02484, - -0.067017, - 0.0020236, - -0.066176, - -0.044953, - -0.0091606, - 0.022302, - -0.01386, - -0.042666, - -0.041327, - 0.065467, - 0.0066461, - -0.027622, - -0.0061433, - 0.054942, - 0.021309, - -0.024021, - 0.063289, - -0.020791, - 0.020063, - -0.061227, - 0.027802, - -0.011655, - -0.16585, - 0.070145, - -0.01604, - 0.054096, - -0.001854, - 0.013408, - 0.011034, - -0.030829, - -0.053564, - -0.015637, - 0.14412, - -0.012516, - -0.027322, - -0.023683, - -0.015866, - -0.0063345, - -0.034181, - -0.06724, - -0.00085553, - -0.021971, - 0.00036439, - -0.037609, - 0.045325, - 0.11646, - 0.0058342, - -0.0028852, - 0.03768, - 0.055215, - -0.016803, - -0.00085583, - -0.013551, - -0.051173, - -0.049866, - -0.019843, - 0.03622, - 0.027613, - -0.023128, - 0.024468, - 0.0088877, - -0.0090879, - 0.075196, - -0.0071857, - 0.039233, - -0.051962, - -0.015126, - -0.001064, - 0.0347, - -0.02484, - 0.0035369, - 0.01149, - 0.066127, - 0.0487, - 0.0063704, - 0.050068, - -0.014455, - 0.0029743, - 0.041702, - 0.074201, - -0.014329, - 0.032187, - -0.072668, - 0.016969, - 0.0055458, - -0.00010111, - 0.0049165, - -0.029425, - 0.060534, - 0.0087149, - 0.027352, - 0.029396, - 0.039375, - 0.081017, - -0.11286, - -0.036539, - -0.010566, - -0.021817, - 0.02544, - 0.026134, - -0.015258, - 0.034787, - 0.078998, - -0.024021, - -0.03193, - 0.018079, - -0.0053622, - -0.050261, - -0.076314, - -0.0017204, - -0.007999, - -0.019869, - 0.040738, - 0.029492, - -0.028798, - 0.0014262, - 0.0056468, - 0.043041, - -0.011558, - 0.024931, - -0.031082, - -0.0034555 - ], - "automobile": [ - 0.0040903, - 0.0033865, - 0.045422, - 0.069182, - -0.024501, - -0.001521, - -0.029286, - -0.09047, - 0.091894, - 0.043641, - 0.023197, - -0.013141, - 0.036635, - 0.033125, - -0.046724, - 0.033719, - 0.035845, - 0.010139, - 0.030521, - 0.020346, - 0.047593, - -0.03741, - 0.022326, - 0.028881, - 0.0077345, - 0.00787, - -0.0081465, - 0.03389, - 0.015708, - 0.039364, - -0.036073, - 0.026164, - 0.10476, - -0.012058, - 0.026121, - 0.0025551, - -0.037323, - 0.055482, - 0.023553, - 0.023807, - 0.0041822, - -0.096404, - 0.02711, - -0.017302, - 0.012346, - 0.028958, - -0.031804, - -0.023489, - -0.036137, - 0.0050799, - 0.028652, - 0.015687, - -0.054414, - 0.040912, - -0.020924, - -0.073276, - 0.0068692, - 0.026391, - -0.046669, - -0.019294, - 0.043958, - -0.0049163, - 0.08342, - 0.036221, - 0.074482, - 0.011248, - -0.029352, - -0.039338, - 0.011676, - 0.024536, - 0.025005, - 0.015479, - 0.025688, - -0.050589, - 0.0011396, - -0.029743, - -0.077122, - -0.015051, - -0.0075601, - 0.0076663, - -0.0035496, - -0.02533, - -0.070049, - 0.00548, - -0.0086421, - -0.069507, - -0.029715, - -0.0042648, - 0.01682, - -0.02155, - 0.03939, - 0.04601, - -0.073748, - -0.0053809, - -0.00038658, - 0.071055, - -0.027065, - -0.022249, - -0.014536, - -0.018745, - 0.0069132, - 0.0033468, - 0.0086211, - -0.042901, - 0.020813, - -0.072131, - 0.018889, - 0.012204, - 0.066521, - -0.028141, - 0.057876, - 0.079532, - 0.036831, - 0.072586, - -0.0084125, - -0.038032, - -0.0099436, - -0.016364, - -0.026725, - 0.007807, - -0.032357, - 0.043458, - -0.039112, - 0.016986, - 0.029962, - 0.013147, - -0.021948, - -0.061292, - 0.043628, - 0.043924, - 0.010079, - -0.0088467, - 0.01779, - 0.008858, - 0.037386, - -0.0057047, - 0.029796, - 0.018233, - -0.0075632, - -0.02078, - 0.023396, - 0.02275, - 0.037141, - 0.073978, - -0.026296, - -0.0022105, - 0.018461, - 0.0041843, - 0.03893, - -0.035434, - 0.024483, - 0.060283, - 0.010636, - -0.0089494, - 0.011597, - 0.014835, - 0.011046, - 0.023183, - -0.01931, - -0.0072928, - 0.00065759, - -0.035038, - -0.041333, - -0.0079137, - 0.072518, - -0.046578, - 0.029386, - -0.017633, - 0.061846, - -0.010398, - 0.037765, - -0.020185, - -0.037571, - 0.086463, - 0.0095242, - 0.014714, - -0.043434, - 0.051527, - -0.024947, - 0.040266, - 0.017618, - -0.014391, - -0.028531, - -0.044433, - -0.011774, - -0.010337, - -0.035679, - 0.082338, - 0.0093942, - -0.020166, - -0.039487, - 0.031443, - 0.0024954, - 0.018845, - 0.04615, - 0.010975, - -0.016535, - -0.041944, - -0.015824, - 0.0042888, - -0.11441, - 0.070872, - -0.0085589, - -0.067996, - 0.061971, - 0.028135, - -0.015258, - -0.0044727, - -0.0062467, - -0.018014, - 0.12288, - 0.014239, - 0.02046, - 0.0077926, - -0.0077473, - 0.037628, - -0.030844, - -0.076949, - 0.051527, - -0.019403, - -0.037949, - -0.074034, - -0.0095891, - 0.078241, - -0.050851, - 0.018795, - 0.024405, - 0.05942, - -0.029657, - -0.030747, - -0.016362, - -0.037774, - -0.026729, - -0.0047997, - 0.020266, - -0.038304, - -0.0014564, - 0.021946, - 0.014442, - -0.063328, - 0.029307, - 0.053988, - -0.019392, - -0.027335, - -0.016275, - -0.082529, - 0.04988, - -0.024615, - 0.027054, - -0.019406, - 0.0082846, - 0.041696, - -0.063767, - -0.020683, - -0.012066, - -0.038642, - 0.0013195, - -0.032369, - 0.012395, - 0.022575, - 0.030342, - 0.017669, - -0.066398, - -0.0095394, - 0.038717, - 0.022154, - -0.011275, - -0.022529, - 0.065667, - 0.035648, - -0.058346, - 0.078904, - -0.068552, - -0.014751, - -0.024916, - -0.061118, - -0.0006258, - 0.082901, - 0.0054503, - -0.027648, - 0.09035, - 0.0061766, - -0.050701, - -0.052628, - -0.025679, - 0.0031492, - -0.07583, - -0.00491, - 0.0033293, - 0.070133, - 0.030615, - -0.021396, - -0.049792, - -0.015752, - -0.027769, - -0.0058188, - 0.040205, - -0.021432, - 0.028054, - -0.048827 - ], - "financed": [ - 0.032973, - 0.061079, - -0.02375, - -0.024953, - 0.057318, - -0.064951, - 0.0027423, - -0.10563, - -0.0043093, - 0.048223, - 0.056133, - -0.015383, - 0.032984, - -0.020183, - -0.036898, - 0.018541, - 0.048343, - -0.042371, - 0.050565, - 0.051566, - -0.0049658, - 0.020955, - 0.010167, - 0.055233, - 0.055337, - 0.040502, - -0.018831, - 0.034305, - 0.11883, - 0.0055095, - -0.038332, - 0.034148, - -0.049548, - 0.019303, - 0.056755, - 0.067496, - -0.017108, - 0.0082103, - 0.021975, - 0.014809, - -0.028966, - -0.10204, - 0.029355, - 0.0047707, - -0.035946, - 0.029543, - -0.031435, - -0.029963, - 0.037812, - -0.03928, - -0.0011236, - 0.025256, - -0.0026775, - 0.048143, - -0.1343, - 0.028459, - -0.052724, - -0.041347, - -0.030614, - -0.005501, - 0.034662, - -0.014834, - 0.16518, - 0.043784, - 0.026201, - -0.047838, - 0.021057, - -0.089844, - 0.00083286, - 0.0054523, - 0.024892, - -0.025666, - 0.036122, - 0.030026, - 0.036682, - 0.056411, - -0.037288, - 0.039903, - 0.020268, - 0.015246, - 0.075668, - 0.019698, - -0.088722, - 0.08768, - 0.012481, - 0.011884, - 0.0064503, - 0.032926, - -0.016111, - -0.050515, - -0.080177, - 0.026426, - -0.075876, - 0.052884, - -0.058905, - 0.048464, - -0.023068, - -0.075935, - 0.021795, - 0.0055225, - 0.017291, - -0.065592, - -0.033375, - 0.029152, - -0.015533, - -0.093439, - 0.019045, - -0.022462, - -0.035236, - 0.063329, - -0.056639, - 0.097407, - 0.054751, - 0.033088, - 0.011749, - -0.012971, - 0.031078, - -0.012873, - -0.005941, - 0.034514, - -0.0025321, - 0.023704, - -0.0025054, - 0.034747, - 0.052832, - -0.0056287, - -0.057206, - -0.050761, - 0.053055, - 0.020277, - 0.0075225, - -0.016513, - 0.034394, - 0.0019983, - 0.013908, - 0.029477, - 0.026914, - 0.091367, - -0.012784, - -0.030196, - -0.018987, - -0.010076, - -0.0068837, - 0.042617, - -0.046859, - -0.088207, - -0.021467, - -0.0055418, - 0.04912, - -0.050776, - 0.11395, - 0.044035, - 0.0373, - -0.034432, - -0.015607, - -0.021074, - 0.048865, - -0.013723, - -0.018958, - -0.14268, - 0.082706, - -0.032496, - -0.036283, - 0.012522, - -0.026172, - 0.069833, - 0.029816, - -0.042003, - 0.063268, - 0.039875, - 0.055919, - 0.0065218, - -0.012692, - -0.0038417, - -0.048173, - 0.0014864, - -0.084889, - 0.023715, - -0.045292, - 0.050168, - 0.0034863, - -0.0013582, - 0.014295, - 0.1255, - 0.0034457, - 0.026659, - -0.013715, - 0.071495, - 0.033121, - -0.018695, - 0.053154, - 0.01905, - -0.011952, - 0.014826, - -0.017999, - -0.013956, - 0.012146, - 0.012857, - -0.0030718, - -0.036798, - -0.13247, - 0.05915, - 0.0024886, - -0.01406, - 0.060285, - 0.02387, - -0.035957, - -0.037862, - -0.07582, - -0.11546, - 0.07064, - 0.070567, - 0.073755, - -0.019538, - 0.0073149, - -0.047495, - -0.050355, - -0.0058396, - 0.050935, - 0.054598, - 0.050776, - -0.034611, - -0.020025, - 0.090988, - -0.011054, - 0.029821, - 0.048528, - 0.064955, - 0.024879, - -0.017726, - -0.034535, - -0.11174, - -0.050523, - -0.01114, - 0.024392, - 0.016154, - -0.051963, - 0.036005, - -0.085677, - -0.0084283, - 0.14489, - -0.0071979, - 0.078407, - -0.0037508, - -0.061362, - 0.044011, - -0.04242, - -0.070586, - 0.027057, - -0.013631, - -0.014596, - -0.0009199, - -0.013579, - -0.0082391, - -0.078255, - 0.045471, - -0.072186, - -0.051498, - -0.024657, - 0.03176, - 0.056046, - -0.018473, - -0.012753, - 0.073573, - 0.0089897, - 0.026648, - -0.068027, - -0.040617, - 0.021906, - 0.11131, - 0.034425, - 0.095639, - -0.12683, - -0.034328, - -0.10955, - -0.035236, - -0.029911, - 0.035289, - 0.0040756, - 0.0057907, - -0.0098006, - 0.021701, - 0.0070781, - 0.011746, - -0.0055368, - 0.023238, - 0.040429, - -0.051633, - -0.022594, - 0.059429, - 0.023258, - 0.020975, - 0.011075, - 0.051743, - -0.072221, - -0.029054, - -0.005881, - -0.046997, - -0.098686, - -0.015817 - ], - "historian": [ - 0.016142, - -0.098239, - 0.056108, - 0.016659, - 0.016325, - -0.03224, - 0.0038552, - -0.062276, - 0.056866, - 0.036639, - -0.028084, - 0.046671, - 0.0038553, - 0.0035699, - 0.053034, - 0.019693, - 0.052904, - -0.098901, - -0.0085873, - 0.040377, - -0.034082, - 0.066247, - 0.00038027, - 0.073135, - -0.0025404, - 0.017011, - -0.020005, - 0.034381, - -0.018574, - -0.0065701, - 0.050309, - 0.021397, - 0.018973, - -0.0565, - -0.0010493, - -0.0052011, - 0.031118, - 0.02869, - -0.026286, - 0.030083, - -0.029818, - -0.11781, - 0.037643, - 0.049463, - 0.016215, - 0.060528, - 0.0083935, - -0.010256, - 0.028831, - 0.0057901, - -0.018473, - 0.009096, - -0.0097809, - -0.0077354, - 0.078432, - -0.021342, - -0.012758, - 0.030971, - -0.031, - -0.018044, - 0.023987, - -0.00139, - 0.068576, - -0.080048, - 0.019175, - 0.017031, - -0.068295, - 0.014814, - 0.030559, - 0.018585, - 0.017955, - -0.077159, - 0.062904, - -0.030252, - 0.027461, - 0.021747, - 0.013405, - -0.018008, - 0.041415, - 0.010684, - -0.027778, - 0.078667, - -0.071421, - -0.0017245, - -0.071079, - -0.063186, - 0.037237, - 0.044745, - 0.0030673, - 0.022213, - 0.0049618, - 0.031422, - -0.079466, - -0.053023, - 0.0015521, - 0.070519, - -0.021602, - -0.0094176, - 0.064139, - -0.013108, - -0.0046856, - -0.016575, - 0.021312, - 0.010253, - -0.060514, - -0.10959, - 0.03957, - 0.049841, - -0.013986, - 0.043453, - -0.045084, - 0.058147, - 0.041424, - -0.02142, - -0.051478, - 0.040197, - 0.030406, - 0.01975, - 0.050263, - 0.075761, - 0.003508, - -0.026338, - -0.014999, - 0.063804, - 0.0077532, - 0.0055531, - -0.021891, - 0.027118, - 0.016555, - 0.11746, - 0.01231, - 0.024853, - 0.0092863, - 0.0034663, - 0.0029665, - -0.013992, - 0.011387, - 0.087561, - 0.00015902, - -0.036529, - 0.016584, - -0.044674, - -0.012664, - -0.0053233, - -0.045211, - -0.063211, - 0.0073782, - -0.0005366, - -0.0047143, - -0.026609, - 0.059725, - 0.088365, - -0.030055, - -0.068581, - -0.0021828, - -0.008971, - 0.071123, - 0.035301, - -0.0040852, - -0.027921, - 0.016777, - 0.01472, - -0.029654, - -0.033637, - -0.00079333, - -0.012295, - 0.01359, - -0.062366, - 0.035706, - -0.014919, - 0.010392, - -0.064614, - 0.0086673, - -0.030174, - 0.075544, - 0.038253, - 0.01633, - -0.019691, - 0.01657, - 0.032721, - -0.051651, - 0.03911, - 0.0051036, - -0.082185, - 0.015757, - -0.065376, - 0.031183, - 0.11761, - 0.023043, - -0.057712, - 0.040786, - 0.14072, - -0.0033901, - -0.038793, - -0.04401, - 0.037087, - 0.0038817, - -0.018225, - -0.062231, - 0.036467, - -0.090043, - 0.0011968, - -0.0077779, - -0.0026437, - -0.015056, - 0.016161, - 0.00076331, - -0.0045326, - -0.055968, - 0.0047066, - 0.080075, - 0.047628, - -0.049501, - 0.00086697, - -0.069333, - 0.071943, - 0.035265, - -0.018158, - 0.011543, - 0.11147, - 0.0076271, - 0.0029365, - 0.0080544, - 0.08585, - 0.061281, - -0.01117, - 0.071773, - 0.094669, - -0.047573, - -0.013407, - 0.013497, - -0.058912, - 0.026777, - -0.032928, - -0.040487, - -0.0053066, - 0.016803, - 0.0017722, - 0.0074515, - 0.0087301, - 0.042323, - 0.015806, - 0.021032, - 0.0065116, - -0.0071237, - -0.015446, - -0.081281, - -0.0024846, - 0.0027066, - -0.011042, - 0.034608, - 0.034764, - -0.010796, - 0.0039508, - 0.036484, - 0.012814, - -0.0076946, - 0.032726, - 0.077694, - 0.014185, - -0.00063205, - -0.017161, - -0.005925, - 0.059605, - -0.033144, - -0.048355, - -0.0019978, - 0.040911, - 0.038656, - -0.005104, - -0.001101, - 0.068725, - -0.082829, - 0.0020682, - 0.059802, - -0.072489, - -0.013401, - 0.019932, - -0.0098434, - 0.0080351, - 0.058481, - 0.0065362, - 0.0038425, - -0.025681, - -0.022212, - 0.015193, - -0.022709, - -0.1087, - -0.0062254, - 0.035085, - -0.032102, - -0.02341, - 0.018134, - 0.011462, - 0.060443, - -0.0010643, - -0.03323, - 0.036194, - -0.024389, - -0.038422 - ], - "hamsters": [ - 0.023796, - -0.04644, - -0.02119, - -0.052493, - -0.042192, - -0.0046977, - -0.008625, - -0.073349, - 0.073187, - -0.027059, - -0.046942, - -0.0010288, - -0.00062134, - -0.051554, - -0.027088, - -0.042009, - 0.036494, - 0.022819, - 0.020292, - -0.00071095, - 0.11226, - 0.011809, - 0.016747, - -0.0067581, - 0.094159, - 0.025217, - 0.0067846, - -0.043719, - 0.0731, - -0.01763, - -0.029757, - -0.041382, - 0.063632, - 0.076723, - 0.030287, - -0.022514, - 0.047849, - -0.15413, - -0.0023082, - -0.00029245, - -0.064949, - -0.065773, - -0.084851, - -0.0093778, - 0.048635, - 0.023793, - -0.014261, - -0.0081076, - -0.013014, - 0.0094125, - 0.049939, - 0.027618, - 0.032293, - -0.040973, - -0.043634, - -0.02263, - 0.010382, - -0.036744, - -0.059666, - 0.029786, - -0.038884, - -0.0367, - 0.043777, - 0.05564, - 0.070059, - 0.04839, - 0.032544, - 0.0066574, - -0.018301, - -0.056838, - -0.016498, - 0.0081772, - 0.091011, - 0.027493, - 0.024918, - 0.1031, - -0.036148, - -0.043274, - -0.06309, - -0.045403, - 0.030579, - -0.046805, - -0.01043, - 0.060946, - -0.0014673, - 0.013557, - -0.0095025, - 0.0049478, - 0.078365, - 0.0098901, - 0.028825, - -0.044482, - -0.057151, - 0.01506, - 0.051584, - 0.081116, - 0.04738, - 0.081075, - 0.0444, - 0.034336, - 0.0032662, - 0.031838, - -0.087589, - 0.028149, - 0.033396, - -0.084555, - -0.033183, - -0.074667, - 0.019358, - 0.037787, - -0.050636, - 0.045627, - 0.049116, - 0.071989, - 0.022305, - -0.064556, - -0.010433, - 0.017733, - -0.057671, - -0.033944, - -0.015243, - 0.076222, - 0.0083983, - -0.1126, - 0.12381, - 0.0031342, - 0.032342, - -0.038687, - 0.0095615, - 0.07226, - -0.012039, - 0.09226, - 0.052328, - 0.026629, - 0.074574, - -0.015228, - -0.06042, - 0.070546, - 0.065951, - -0.022521, - 0.089142, - 0.012112, - -0.046631, - -0.021076, - 0.042037, - -0.026965, - 0.036613, - -0.076069, - -0.058386, - -0.1071, - 0.025151, - 0.099178, - -0.022948, - 0.039145, - -0.020774, - -0.051044, - -0.015202, - 0.016252, - 0.074505, - -0.073585, - 0.014256, - -0.047694, - 0.012863, - -0.010212, - 0.035555, - -0.033, - -0.0014028, - 0.015122, - 0.034258, - -0.05164, - -0.013687, - 0.024006, - -0.0093832, - 0.087918, - -0.066168, - 0.058524, - -0.013998, - 0.011244, - -0.010168, - -0.00078346, - 0.063682, - 0.010849, - -0.036064, - -0.047196, - -0.070859, - -0.0081266, - 0.050479, - 0.10133, - -0.022657, - 0.019332, - 0.046173, - 0.064987, - -0.099635, - -0.07189, - 0.058001, - 0.099659, - 0.015023, - 0.080227, - 0.0095071, - 0.072729, - -0.096159, - 0.0094435, - -0.040358, - -0.0083432, - -0.07474, - -0.00077313, - -0.055578, - -0.04407, - 0.019401, - -0.055678, - 0.07978, - 0.01017, - 0.073465, - -0.0024771, - 0.0020403, - -0.0028108, - -0.034857, - -0.01579, - -0.0025021, - 0.010609, - 0.06329, - 0.027368, - -0.0014126, - 0.04563, - 0.017142, - 0.11842, - 0.088145, - 0.082946, - -0.035609, - 0.0042388, - -0.068511, - -0.02528, - -0.10562, - -0.022711, - 0.023546, - -0.015575, - 0.10353, - -0.0053561, - 0.0013895, - -0.030385, - 0.014354, - 0.037749, - -0.025894, - -0.0044564, - 0.042899, - 0.030367, - 0.076526, - -0.0070699, - 0.016283, - -0.00054795, - -0.01372, - 0.058413, - 0.0045334, - -0.062288, - -0.025824, - -0.041242, - 0.025429, - -0.043292, - -0.015494, - -0.11183, - 0.019118, - -0.068802, - 0.014825, - -0.022201, - -0.022678, - 0.044909, - 0.033049, - 0.053745, - -0.0077781, - 0.053358, - 0.021909, - 0.078658, - -0.078597, - 0.038824, - 0.031067, - -0.0082895, - 0.036095, - 0.019416, - -0.025629, - -0.042873, - 0.021456, - 0.036784, - 0.10597, - 0.017447, - -0.027438, - -0.0055979, - -0.048266, - -0.064879, - -0.03329, - 0.04085, - 0.058271, - -0.029777, - -0.09193, - -0.0943, - 0.0017178, - 0.030669, - 0.014996, - 0.034317, - -0.034883, - 0.11029 - ], - "relations": [ - 0.013582, - -0.010474, - 0.035963, - 0.029911, - -0.0061087, - 0.022662, - 0.02383, - -0.085746, - 0.069854, - 0.023485, - 0.012424, - -0.046243, - 0.047556, - 0.011938, - 0.0051668, - 0.013873, - 0.097049, - 0.010709, - 0.039245, - 0.04236, - -0.03103, - 0.023654, - 0.046739, - 0.04872, - 0.016102, - -0.021882, - -0.043329, - -0.0054563, - 0.051217, - -0.034077, - -0.012259, - 0.070903, - 0.024199, - -0.060263, - 0.025711, - 0.025359, - -0.043289, - 0.0061925, - -0.0046475, - 0.0018207, - 0.015964, - -0.099653, - -0.030928, - -0.0121, - -0.023513, - -0.0085132, - -0.0088207, - -0.041432, - 0.0040489, - -0.030713, - -0.040113, - -0.047876, - 0.02738, - 0.012103, - -0.038671, - 0.00021362, - -0.028252, - 0.019448, - -0.023716, - -0.017333, - -0.019468, - 0.00053303, - 0.088873, - -0.065185, - 0.028176, - -0.075178, - 0.0035471, - -0.03121, - 0.0060807, - -0.0029259, - -0.000077575, - -0.035988, - 0.022466, - -0.033811, - 0.028542, - -0.028005, - 0.010537, - 0.005605, - 0.040345, - -0.032743, - -0.0004034, - 0.046691, - -0.061027, - 0.016752, - -0.016733, - -0.047462, - 0.019081, - -0.026889, - 0.026301, - -0.000044578, - 0.051182, - 0.038545, - -0.061936, - 0.040593, - 0.0082127, - 0.048135, - -0.0051835, - 0.020623, - 0.023405, - -0.013618, - 0.030931, - 0.053278, - -0.069096, - -0.030128, - 0.058211, - -0.04223, - 0.0041275, - -0.045137, - 0.017697, - -0.020559, - -0.026154, - 0.053427, - 0.047839, - -0.013262, - 0.016052, - -0.044265, - 0.00049683, - 0.05648, - -0.0066883, - 0.02171, - -0.017831, - 0.0080875, - 0.023638, - 0.034376, - 0.11249, - 0.023408, - -0.0042726, - -0.047019, - 0.033619, - 0.13106, - 0.05624, - 0.013816, - -0.0077287, - 0.025788, - -0.048595, - 0.01835, - -0.00014568, - 0.039482, - 0.02902, - 0.078331, - 0.022685, - -0.025852, - -0.011554, - 0.023623, - 0.08099, - 0.039346, - 0.012998, - -0.00776, - 0.010155, - -0.019613, - 0.051101, - 0.041435, - 0.029624, - -0.061173, - -0.032177, - 0.015414, - -0.014776, - 0.0060593, - 0.014337, - 0.048119, - 0.028226, - 0.0062439, - -0.057732, - 0.0027217, - -0.048377, - 0.026144, - 0.020826, - 0.047122, - 0.0072084, - -0.019418, - -0.01234, - -0.064917, - -0.037354, - 0.014903, - -0.031022, - 0.037164, - -0.018779, - 0.096255, - 0.0098418, - 0.041621, - -0.0076819, - 0.022364, - 0.031723, - 0.0057759, - -0.00098208, - -0.039449, - 0.0031409, - 0.045815, - 0.10087, - 0.032199, - -0.035438, - 0.07768, - -0.047968, - -0.047568, - -0.043671, - 0.0037831, - 0.018081, - 0.012648, - -0.040608, - -0.021284, - -0.15534, - 0.0051103, - 0.016757, - -0.025413, - -0.033211, - -0.0047837, - -0.054678, - -0.037536, - 0.017421, - 0.024656, - 0.10878, - 0.039133, - 0.0031859, - -0.036858, - 0.025917, - 0.046625, - -0.026954, - -0.059856, - -0.014283, - -0.014097, - -0.025959, - -0.011948, - 0.0010246, - 0.10028, - 0.067099, - -0.018807, - -0.020586, - 0.046495, - -0.035208, - -0.011222, - 0.023331, - -0.00074777, - -0.11816, - -0.042638, - 0.041076, - -0.013157, - -0.0012129, - -0.018311, - -0.010151, - 0.015642, - -0.032785, - 0.0012277, - -0.010464, - 0.034415, - -0.040617, - 0.0018452, - -0.00044859, - -0.065398, - -0.031619, - -0.011406, - 0.0542, - -0.011454, - 0.0045942, - 0.069965, - -0.021665, - -0.0010277, - -0.014889, - 0.026142, - 0.058641, - -0.021081, - -0.044213, - -0.0073433, - 0.055791, - -0.028004, - 0.0053585, - -0.003862, - 0.025614, - 0.050697, - -0.043274, - 0.025, - 0.0028831, - 0.074529, - -0.07213, - -0.039208, - 0.055416, - -0.013424, - -0.012055, - 0.014894, - -0.008578, - 0.025366, - 0.040504, - -0.044937, - -0.025941, - -0.027815, - 0.0077833, - 0.012401, - -0.022262, - 0.010754, - -0.014682, - 0.045353, - -0.039108, - 0.036058, - -0.061898, - -0.0087249, - 0.0029194, - -0.020651, - -0.026282, - 0.036593, - -0.043087, - 0.030798 - ], - "modernism": [ - 0.01367, - -0.0088373, - 0.10612, - -0.017163, - 0.040212, - 0.041351, - -0.014657, - -0.073864, - 0.037064, - -0.047124, - 0.037475, - -0.016725, - 0.021629, - 0.054711, - -0.012489, - -0.016203, - 0.10579, - 0.051173, - 0.0038566, - -0.014593, - -0.0065308, - -0.012502, - -0.034846, - 0.033064, - 0.023366, - 0.01489, - -0.0099764, - 0.043122, - 0.062056, - 0.078626, - 0.0058238, - -0.019867, - 0.011555, - -0.044629, - -0.0015819, - 0.026976, - 0.029794, - 0.074861, - -0.0044425, - 0.015903, - -0.045955, - -0.072056, - -0.029897, - 0.025342, - -0.00057428, - 0.01001, - -0.017307, - 0.012469, - -0.0067736, - -0.059047, - 0.040971, - -0.063659, - -0.033719, - 0.053181, - -0.042464, - 0.020116, - 0.064692, - 0.040294, - -0.013569, - 0.020938, - 0.088259, - -0.040874, - 0.0089288, - -0.031587, - 0.016169, - 0.044714, - -0.061293, - -0.046625, - -0.030448, - -0.020329, - 0.053932, - 0.0097119, - 0.0069218, - -0.0039121, - 0.0066403, - -0.047213, - -0.042002, - 0.021749, - 0.025701, - 0.046543, - 0.014825, - 0.023734, - -0.055321, - 0.060352, - -0.062932, - -0.021078, - -0.036633, - -0.011261, - -0.0041279, - 0.057835, - -0.048892, - 0.031359, - -0.072751, - 0.014377, - 0.044289, - 0.0015644, - 0.00076568, - -0.054524, - -0.080991, - 0.036808, - 0.04483, - 0.069031, - -0.041653, - 0.037946, - -0.058939, - -0.049583, - -0.010776, - 0.035321, - -0.020341, - 0.053733, - -0.0015844, - 0.072873, - 0.012052, - 0.010416, - -0.10151, - 0.047656, - 0.036915, - 0.063079, - -0.042256, - 0.032006, - -0.020258, - -0.063848, - -0.028973, - -0.04179, - 0.007104, - -0.026582, - -0.031488, - -0.020814, - 0.046887, - 0.11311, - -0.0010858, - -0.012249, - -0.0021472, - 0.023005, - -0.025356, - 0.024308, - -0.017041, - -0.0051074, - 0.003963, - -0.031186, - 0.082838, - 0.026741, - 0.057486, - 0.1034, - 0.0047874, - -0.046651, - 0.016983, - 0.074027, - -0.02653, - -0.02588, - 0.10121, - 0.047524, - -0.015984, - -0.004087, - 0.02366, - -0.0020759, - 0.021697, - -0.033532, - -0.013451, - -0.0057195, - 0.040174, - -0.035033, - -0.087831, - -0.067799, - -0.016521, - -0.0075264, - 0.016001, - 0.050029, - 0.020755, - 0.015127, - 0.0033724, - 0.039096, - -0.033071, - -0.0028226, - 0.013935, - 0.064978, - 0.009444, - -0.0061819, - -0.037885, - -0.010888, - -0.033318, - 0.040302, - 0.0067427, - -0.057008, - -0.0020825, - -0.0043276, - 0.029563, - 0.092533, - -0.085182, - -0.071212, - 0.031481, - 0.051352, - -0.070777, - -0.060017, - -0.01754, - -0.0055772, - 0.02121, - -0.0088025, - 0.020514, - 0.024038, - -0.1477, - 0.023559, - -0.0082411, - -0.069092, - 0.025912, - -0.0025758, - 0.080625, - -0.032414, - -0.077501, - 0.027067, - 0.078154, - 0.016432, - 0.023982, - 0.032445, - 0.073174, - 0.10112, - 0.022912, - -0.033999, - 0.017043, - -0.083915, - -0.084416, - -0.031318, - 0.058201, - 0.059482, - -0.030121, - 0.073451, - 0.098793, - 0.056176, - -0.03449, - -0.05367, - 0.016829, - -0.034986, - -0.10446, - -0.021974, - 0.019592, - 0.053088, - 0.0062357, - -0.06146, - 0.042931, - 0.026122, - 0.00098613, - -0.038621, - 0.0036985, - 0.047815, - -0.027905, - 0.028076, - -0.070104, - -0.0071462, - -0.01896, - -0.009202, - 0.031087, - -0.053295, - -0.047652, - 0.035108, - -0.0062659, - 0.049644, - -0.020428, - 0.0083528, - 0.017936, - -0.040003, - 0.041036, - -0.011289, - 0.065966, - 0.014386, - 0.028663, - -0.013087, - 0.0074737, - 0.031301, - 0.025061, - 0.025381, - 0.019234, - 0.085146, - -0.071697, - -0.010462, - -0.023896, - -0.080185, - 0.084195, - 0.036876, - 0.0097969, - 0.021963, - 0.055043, - 0.000078115, - -0.011729, - -0.0064657, - -0.013341, - -0.039334, - 0.0023674, - 0.019317, - 0.013954, - 0.018349, - -0.036265, - -0.049727, - 0.056761, - -0.028947, - -0.026914, - -0.041518, - -0.0070017, - 0.10365, - 0.022902, - 0.006616 - ], - "folklorist": [ - 0.036073, - -0.04431, - 0.018875, - 0.0091942, - -0.01338, - -0.028619, - 0.0039756, - -0.072836, - 0.036196, - -0.039917, - 0.03142, - 0.044604, - -0.034965, - -0.051253, - 0.036809, - 0.009856, - 0.059091, - -0.084495, - -0.011556, - 0.12669, - -0.041053, - -0.020903, - -0.035313, - 0.086004, - 0.020004, - 0.024285, - -0.01531, - 0.11799, - 0.018865, - -0.028656, - 0.031242, - -0.034673, - 0.063729, - -0.055021, - -0.026667, - 0.032052, - 0.038011, - 0.068363, - 0.039543, - 0.021106, - 0.073393, - -0.10227, - 0.012515, - 0.026157, - 0.066974, - 0.071451, - -0.0039176, - -0.00061489, - 0.013196, - -0.035329, - -0.058769, - 0.073442, - -0.023119, - -0.0047811, - 0.066815, - 0.095002, - -0.047862, - 0.052976, - -0.0073442, - -0.024608, - -0.024906, - -0.063065, - 0.016345, - -0.010681, - 0.000099874, - 0.046066, - -0.040546, - -0.011753, - -0.0054465, - 0.022823, - -0.0091366, - -0.0336, - 0.053412, - -0.0051654, - -0.029248, - 0.050785, - -0.022505, - -0.020347, - 0.042412, - -0.036477, - 0.0014283, - 0.066886, - -0.059907, - -0.031717, - -0.019183, - -0.058444, - 0.029108, - 0.06821, - -0.0088346, - -0.0139, - -0.049946, - 0.05926, - -0.070745, - -0.083228, - -0.0048468, - 0.12145, - 0.030863, - 0.034261, - 0.068749, - 0.0095142, - 0.007396, - -0.02465, - -0.024367, - 0.0023762, - -0.07182, - -0.030881, - 0.030463, - 0.031412, - 0.0043579, - 0.00385, - -0.018898, - 0.067901, - 0.010496, - -0.03482, - -0.050109, - 0.06764, - -0.0094257, - -0.0096281, - 0.06025, - 0.026492, - -0.034221, - -0.002875, - -0.10711, - -0.011056, - 0.0045472, - 0.022459, - 0.0003527, - 0.035631, - -0.025671, - 0.10476, - 0.027276, - 0.048153, - -0.048345, - 0.0033686, - 0.0092463, - 0.024805, - -0.00023766, - 0.076944, - 0.0060907, - 0.019535, - 0.028024, - 0.015486, - 0.051703, - -0.040675, - -0.068282, - -0.088535, - -0.00032479, - 0.069331, - -0.077969, - -0.05527, - 0.03953, - 0.085872, - -0.035104, - -0.05857, - 0.0066417, - 0.002818, - 0.010984, - 0.0082605, - 0.018455, - -0.0011207, - 0.032862, - 0.077596, - -0.038724, - -0.028864, - 0.015992, - -0.023956, - 0.086146, - 0.018633, - -0.013437, - -0.0025699, - 0.01299, - -0.057301, - -0.0040667, - -0.051049, - 0.065274, - 0.044036, - 0.043662, - 0.0041745, - 0.029383, - -0.044795, - -0.091772, - 0.064179, - -0.0141, - -0.051382, - -0.078539, - -0.083427, - 0.0076036, - 0.15764, - -0.00073996, - -0.031848, - 0.056288, - 0.12209, - -0.031791, - -0.013764, - 0.0014902, - 0.055947, - 0.038021, - -0.020377, - -0.043757, - -0.043481, - -0.10656, - -0.092267, - -0.0538, - -0.01479, - 0.065051, - 0.089572, - -0.025889, - 0.020955, - -0.027914, - -0.0322, - 0.076859, - 0.06434, - -0.043651, - -0.031944, - -0.089147, - 0.061713, - 0.009152, - -0.051482, - -0.0064188, - 0.078111, - -0.005144, - -0.042275, - 0.030043, - 0.089295, - 0.060007, - 0.011544, - 0.083654, - 0.1076, - -0.047731, - -0.014976, - 0.037084, - -0.027889, - 0.021183, - -0.0090361, - -0.063828, - 0.036145, - 0.04167, - 0.019701, - 0.033003, - 0.032923, - 0.036687, - 0.018369, - 0.0076797, - -0.020969, - 0.061296, - -0.049935, - -0.11172, - -0.029141, - -0.04428, - 0.01384, - 0.043852, - -0.042287, - -0.028037, - 0.0041058, - 0.037384, - -0.0084337, - -0.046352, - 0.022519, - 0.066497, - -0.0033074, - 0.085722, - -0.044311, - -0.042603, - 0.095624, - -0.044858, - -0.072911, - 0.042512, - 0.024582, - 0.046845, - -0.017653, - 0.0052564, - 0.025594, - -0.058113, - -0.026113, - 0.04152, - -0.012454, - -0.010075, - -0.037551, - -0.02709, - -0.037569, - 0.055765, - -0.0093845, - -0.010555, - -0.014491, - -0.050106, - 0.052636, - -0.030417, - -0.13494, - -0.045129, - -0.0069177, - 0.056441, - -0.0066641, - -0.0096759, - -0.037227, - 0.040221, - 0.029657, - 0.0053987, - 0.016131, - 0.031841, - -0.040534 - ], - "regulation": [ - 0.02537, - -0.018355, - 0.0024938, - 0.0038971, - 0.03021, - -0.020228, - 0.033158, - -0.074537, - 0.011902, - 0.00081929, - 0.020279, - -0.024967, - -0.0026462, - -0.03038, - 0.028355, - 0.035994, - 0.064866, - -0.014416, - 0.0038075, - 0.026542, - 0.016237, - -0.016837, - 0.072302, - 0.055937, - 0.0021117, - -0.0095922, - -0.018628, - -0.00024263, - 0.0030751, - -0.018231, - -0.0075555, - -0.069807, - -0.029535, - -0.078428, - 0.020217, - 0.025431, - 0.0367, - -0.008189, - 0.042574, - 0.011726, - 0.0013206, - -0.1155, - 0.0066601, - 0.0070361, - -0.0046114, - 0.0054454, - -0.0016158, - -0.0036701, - -0.014039, - 0.018582, - 0.0024217, - 0.0153, - 0.078106, - 0.0083265, - -0.052002, - -0.027992, - 0.032676, - 0.021625, - -0.0031521, - -0.0085575, - 0.0288, - 0.048148, - 0.061549, - 0.034385, - -0.0014817, - 0.0049377, - -0.011407, - 0.013278, - 0.065099, - -0.025788, - -0.00064074, - -0.033032, - -0.014797, - 0.016265, - -0.014643, - 0.0078946, - -0.030346, - -0.017192, - -0.06585, - 0.01995, - -0.032874, - -0.02573, - -0.033476, - 0.054715, - 0.037543, - 0.031473, - 0.015839, - -0.0094284, - 0.048469, - 0.01017, - 0.00509, - -0.0017702, - -0.072789, - -0.022203, - -0.023521, - 0.03894, - 0.024453, - 0.0024832, - -0.00036488, - 0.022788, - -0.03316, - -0.045354, - -0.020004, - -0.033813, - 0.003834, - -0.029712, - 0.0025435, - -0.035878, - 0.015859, - -0.059931, - 0.023738, - 0.040337, - 0.060377, - -0.035098, - -0.02376, - 0.027555, - 0.0016429, - 0.035341, - -0.061686, - 0.0092359, - -0.027115, - 0.067076, - 0.050351, - 0.0036514, - 0.034016, - -0.031599, - -0.00059251, - -0.056574, - 0.068819, - 0.11013, - -0.020867, - -0.034465, - 0.01049, - -0.0030762, - -0.033635, - -0.029711, - -0.0096794, - -0.014822, - 0.011612, - 0.0038558, - 0.051651, - -0.001258, - -0.017841, - 0.021776, - -0.027766, - -0.0031173, - 0.0049522, - -0.022831, - 0.018659, - -0.025893, - 0.045641, - 0.036812, - 0.015504, - -0.058702, - 0.023608, - 0.070817, - 0.021105, - -0.050154, - 0.0065832, - -0.0037208, - 0.047937, - -0.039235, - -0.058797, - 0.022499, - 0.040662, - -0.0083831, - 0.025103, - -0.036805, - 0.040501, - -0.028161, - 0.025843, - 0.049216, - 0.0098815, - -0.0046105, - -0.0030562, - 0.043802, - -0.039361, - 0.024878, - -0.054977, - -0.022222, - -0.05258, - 0.014355, - 0.0071366, - 0.015597, - -0.0017799, - -0.017691, - -0.0063618, - 0.05133, - 0.023691, - -0.019429, - -0.02577, - 0.041938, - -0.014956, - 0.015402, - -0.00040304, - -0.019358, - 0.009, - 0.029366, - 0.019453, - 0.0025473, - -0.12771, - 0.0072081, - 0.0030365, - -0.019571, - -0.0083672, - 0.026351, - -0.011889, - -0.03572, - -0.0017683, - -0.010564, - 0.086384, - 0.01243, - -0.010319, - 0.054884, - -0.0086682, - 0.023939, - 0.016506, - -0.013687, - -0.032367, - -0.096034, - -0.034641, - -0.090731, - -0.039746, - 0.079141, - 0.015482, - 0.013998, - -0.0059782, - 0.0082996, - 0.026549, - -0.018388, - -0.045929, - -0.065038, - -0.018194, - -0.011001, - 0.0020296, - -0.036638, - 0.047501, - 0.05606, - 0.047114, - 0.0043978, - 0.055199, - 0.0039315, - -0.0033654, - 0.029504, - -0.029051, - 0.02438, - -0.0082374, - -0.029338, - 0.025828, - 0.0091318, - 0.060816, - -0.024462, - 0.0010867, - -0.04768, - 0.045938, - 0.027343, - 0.044463, - 0.029391, - -0.012479, - -0.001982, - 0.020022, - -0.040351, - 0.016496, - -0.0059807, - -0.0016526, - 0.058937, - -0.023546, - 0.019169, - -0.016805, - 0.004085, - 0.0080662, - 0.04421, - -0.098109, - -0.029755, - -0.035998, - -0.0037953, - 0.0072641, - 0.051421, - -0.0078137, - -0.0057287, - 0.058511, - -0.00052694, - 0.029151, - -0.0080124, - 0.0044872, - 0.014586, - -0.0054103, - 0.052165, - 0.0098215, - -0.027473, - 0.038842, - -0.0068326, - 0.039568, - -0.03708, - -0.02958, - -0.052076, - -0.05436, - -0.029231, - -0.0089504, - 0.005264 - ], - "felines": [ - -0.034613, - -0.053976, - 0.059058, - -0.065129, - -0.035006, - 0.060875, - 0.038412, - -0.086926, - 0.0091124, - 0.064984, - 0.015992, - -0.017427, - 0.074048, - -0.017238, - -0.036951, - -0.035253, - 0.0066139, - -0.011786, - 0.021639, - -0.071214, - 0.043161, - -0.085458, - 0.070161, - 0.045065, - 0.082981, - -0.010038, - 0.0091359, - 0.012769, - 0.10351, - 0.015263, - -0.020302, - -0.028136, - 0.03489, - 0.02832, - -0.0026267, - 0.031898, - 0.030831, - -0.08776, - 0.0050156, - -0.027796, - -0.05119, - -0.077613, - -0.019953, - 0.022418, - 0.022265, - -0.033197, - 0.0671, - 0.049575, - 0.07609, - -0.043331, - 0.02865, - 0.087091, - -0.0084022, - -0.085771, - -0.048469, - -0.067515, - -0.023351, - 0.038144, - -0.00042333, - 0.024694, - 0.066736, - -0.12096, - 0.12668, - -0.018094, - 0.038471, - 0.00047362, - -0.036557, - 0.011852, - 0.0064077, - -0.084337, - 0.029252, - 0.058609, - 0.11089, - -0.04446, - 0.048346, - 0.088774, - -0.023965, - -0.028119, - -0.0074853, - -0.022305, - 0.037299, - 0.047447, - 0.066779, - 0.019054, - 0.076529, - -0.11992, - -0.040087, - 0.025, - 0.067428, - 0.010447, - -0.019024, - -0.075802, - -0.085287, - -0.0025972, - 0.066651, - 0.038168, - 0.023507, - 0.076969, - 0.061897, - 0.050925, - 0.037421, - 0.05969, - -0.059264, - -0.016652, - 0.093068, - -0.03211, - -0.094351, - -0.015521, - 0.060013, - -0.04679, - -0.0030963, - 0.049192, - 0.004883, - -0.02248, - -0.062087, - 0.018256, - 0.0053528, - 0.026372, - -0.08134, - 0.022809, - -0.044297, - 0.15223, - 0.0098568, - -0.055889, - 0.15462, - 0.062236, - 0.043844, - -0.0093015, - -0.033109, - 0.016959, - 0.017833, - 0.06828, - -0.020039, - 0.019838, - 0.046114, - -0.04845, - -0.025881, - 0.058682, - 0.06566, - 0.0073307, - 0.011936, - -0.0066248, - 0.043434, - 0.023339, - 0.050851, - -0.05337, - 0.027397, - -0.069023, - -0.062703, - -0.074087, - 0.0421, - 0.068555, - 0.030611, - -0.019649, - -0.0065851, - -0.036199, - -0.084197, - 0.034007, - -0.064644, - -0.017648, - 0.032604, - -0.025307, - 0.045197, - 0.065955, - 0.059823, - -0.011557, - -0.017361, - -0.041242, - -0.019448, - -0.010172, - -0.011086, - 0.042025, - 0.02703, - 0.047807, - -0.05469, - 0.050711, - 0.036572, - 0.024768, - -0.038836, - 0.0053545, - 0.045099, - -0.023331, - -0.0082717, - -0.017253, - -0.021303, - -0.02958, - -0.022025, - 0.089238, - -0.0027963, - -0.092483, - 0.0035675, - 0.094267, - -0.14386, - 0.011935, - -0.013798, - 0.11762, - -0.018067, - 0.043858, - 0.041421, - -0.027041, - -0.14541, - 0.12079, - -0.024588, - 0.023761, - 0.02117, - -0.013424, - -0.018883, - -0.03048, - -0.04875, - -0.01763, - 0.050606, - 0.0089048, - 0.0030235, - -0.0024545, - 0.01231, - -0.012601, - 0.020685, - -0.048054, - -0.037431, - 0.014914, - -0.0049772, - -0.047133, - -0.042059, - 0.051224, - 0.0080751, - 0.040485, - 0.036634, - 0.11638, - 0.094266, - -0.039352, - -0.047872, - -0.018201, - -0.092427, - -0.078143, - 0.075349, - -0.051317, - 0.052598, - 0.026938, - -0.050056, - 0.030515, - -0.011277, - 0.010946, - 0.028112, - -0.012243, - -0.057131, - 0.1222, - -0.011375, - 0.02951, - -0.03555, - -0.065041, - -0.0076851, - -0.016198, - 0.002035, - -0.0009808, - -0.024831, - 0.033613, - 0.0048579, - -0.0099948, - 0.0064096, - -0.031519, - -0.041751, - -0.028105, - 0.033911, - -0.050148, - 0.055225, - 0.018266, - -0.010136, - -0.01938, - 0.059274, - 0.020311, - -0.096179, - 0.097585, - -0.136, - -0.039418, - 0.021638, - -0.044379, - -0.01782, - -0.047768, - -0.01961, - -0.021661, - -0.024558, - 0.060507, - 0.062656, - -0.0024411, - 0.020064, - -0.0036865, - -0.043813, - -0.025899, - 0.019036, - 0.025526, - 0.046648, - -0.029166, - -0.027537, - -0.085581, - 0.022646, - 0.038777, - -0.0036929, - 0.13312, - 0.000060558, - 0.13081 - ], - "forecasts": [ - 0.0070603, - -0.022692, - -0.077382, - -0.057974, - 0.059167, - -0.085203, - -0.038885, - -0.096893, - -0.02105, - 0.03255, - 0.035584, - -0.078331, - -0.080007, - -0.059487, - 0.0068278, - -0.0065698, - 0.048116, - -0.017489, - 0.08075, - 0.0011162, - 0.061129, - 0.014691, - -0.0035543, - 0.098069, - 0.0048366, - -0.04501, - -0.046157, - -0.0014199, - 0.077771, - 0.040499, - -0.019069, - 0.024435, - 0.0060926, - -0.048079, - 0.036842, - 0.044483, - -0.043765, - 0.065132, - -0.010109, - -0.0046869, - -0.070169, - -0.065105, - -0.0081954, - 0.029173, - -0.010295, - 0.016265, - -0.0024412, - -0.036884, - 0.001931, - -0.034437, - -0.072573, - -0.0058325, - -0.021325, - 0.051928, - -0.059661, - -0.015658, - 0.030225, - 0.012911, - -0.031779, - -0.015594, - -0.039816, - 0.035396, - 0.12675, - 0.0034916, - 0.064143, - 0.0046745, - 0.0062384, - 0.034431, - -0.00048167, - 0.0069206, - 0.053566, - -0.01663, - 0.03657, - -0.035417, - 0.0049659, - -0.028596, - 0.070522, - -0.059912, - -0.050714, - -0.047165, - -0.0010577, - -0.013582, - -0.015761, - 0.058697, - 0.020532, - 0.01292, - -0.0031184, - -0.010356, - -0.014216, - -0.091584, - -0.015169, - -0.0079241, - -0.052846, - 0.010277, - -0.03485, - 0.0095835, - 0.0012172, - -0.00050809, - 0.024804, - 0.042433, - -0.0076901, - -0.087823, - -0.01688, - 0.0070045, - 0.043168, - -0.046686, - 0.047212, - -0.019293, - 0.015387, - 0.02674, - -0.064752, - 0.021722, - 0.056336, - 0.0032114, - -0.021907, - -0.094505, - -0.00070247, - 0.024158, - -0.042521, - 0.058812, - -0.021035, - 0.020952, - 0.083743, - -0.0024434, - 0.12741, - 0.042513, - -0.000017689, - 0.0036759, - -0.051493, - 0.12724, - 0.018309, - 0.012437, - 0.015418, - 0.017552, - -0.01901, - 0.010863, - 0.12568, - 0.046117, - -0.063359, - 0.055445, - 0.050987, - -0.031628, - -0.027858, - -0.010711, - -0.023477, - -0.014427, - -0.041976, - -0.02527, - 0.0014646, - 0.0072169, - -0.027869, - 0.067469, - 0.001633, - -0.042273, - 0.046494, - 0.0048037, - -0.0016626, - -0.04392, - -0.11185, - 0.01681, - 0.079889, - -0.024165, - -0.020928, - 0.054076, - -0.016071, - -0.053606, - -0.068665, - -0.03181, - 0.034001, - 0.075277, - -0.092911, - -0.023847, - -0.010221, - -0.10009, - -0.011781, - 0.019275, - 0.009535, - -0.033681, - -0.049745, - 0.019954, - 0.026787, - 0.004834, - -0.037612, - -0.062122, - 0.034829, - 0.01083, - -0.041211, - 0.074703, - 0.00074329, - -0.0042037, - -0.0254, - 0.056791, - -0.10778, - -0.095107, - 0.019543, - -0.055206, - -0.056254, - 0.05302, - -0.0044163, - 0.01271, - -0.13929, - 0.022008, - -0.036263, - 0.013867, - 0.013107, - 0.083368, - 0.011407, - 0.012102, - -0.047935, - -0.038643, - 0.048283, - 0.032305, - 0.017936, - 0.033371, - -0.032066, - -0.01127, - 0.011531, - -0.0943, - -0.07185, - -0.038338, - -0.068576, - -0.0097253, - 0.048658, - 0.071314, - 0.070192, - -0.0012861, - -0.077696, - 0.033554, - 0.029619, - 0.022647, - 0.042371, - -0.052652, - -0.06765, - 0.073966, - 0.076869, - 0.01203, - 0.01587, - -0.036157, - 0.088495, - -0.0043008, - 0.019509, - 0.088833, - -0.0058682, - -0.041589, - -0.018682, - 0.0060665, - -0.054211, - -0.039925, - 0.055612, - -0.039901, - 0.10883, - -0.019876, - 0.055144, - 0.077351, - -0.017376, - -0.018453, - 0.0059007, - 0.029549, - 0.036917, - 0.056397, - 0.10882, - 0.027395, - -0.0071187, - -0.034377, - 0.020224, - -0.014178, - 0.0061326, - 0.021784, - 0.092486, - 0.030015, - 0.014269, - 0.083074, - -0.099778, - -0.013828, - -0.043622, - 0.018073, - -0.034753, - -0.032745, - -0.044504, - -0.042333, - 0.014968, - -0.00024631, - -0.057873, - 0.033443, - 0.03979, - -0.016654, - -0.028084, - 0.067849, - -0.06261, - 0.030933, - -0.011899, - -0.0051271, - 0.029045, - 0.051837, - 0.063946, - 0.0058576, - -0.082078, - -0.014346, - 0.048671, - -0.025502 - ], - "amphetamines": [ - -0.0029591, - 0.0036039, - -0.017091, - 0.022916, - 0.0053843, - -0.0042906, - -0.025951, - -0.061272, - -0.0046171, - 0.039514, - -0.043017, - -0.01549, - -0.0058454, - -0.0075554, - 0.049179, - 0.024833, - 0.065712, - -0.013691, - 0.010211, - -0.0013442, - 0.064659, - 0.04977, - 0.035664, - 0.0041394, - 0.0087463, - -0.031623, - -0.0018863, - -0.022469, - 0.10169, - 0.025127, - 0.056026, - 0.020757, - 0.014829, - 0.016212, - 0.022182, - 0.016432, - -0.0078773, - -0.0072433, - 0.010098, - 0.033232, - 0.0095583, - -0.024134, - -0.0055405, - 0.018679, - 0.068565, - 0.0034985, - 0.042476, - 0.057381, - -0.026547, - 0.020578, - -0.029059, - 0.046613, - 0.06884, - -0.0054399, - -0.081405, - 0.012255, - 0.00030946, - -0.048564, - -0.034207, - 0.032315, - 0.0072692, - -0.051022, - 0.069799, - 0.050261, - -0.080544, - -0.011004, - 0.061072, - -0.072637, - -0.004592, - -0.010843, - 0.041209, - 0.030445, - 0.075147, - -0.075338, - -0.036749, - 0.0056644, - 0.029165, - -0.01628, - -0.024776, - -0.010161, - -0.020225, - -0.04605, - -0.024937, - 0.017198, - -0.0076171, - -0.0030956, - 0.058676, - -0.014676, - 0.058632, - 0.030244, - 0.022083, - -0.01154, - -0.04654, - 0.0021397, - 0.015995, - 0.047428, - -0.038749, - -0.051873, - 0.03159, - 0.051285, - 0.00047251, - 0.027494, - -0.051088, - 0.0046244, - 0.03234, - -0.015972, - -0.010807, - -0.023292, - 0.019227, - 0.075816, - 0.017619, - 0.056776, - 0.055951, - -0.0056537, - -0.022013, - -0.012083, - 0.02745, - -0.025471, - -0.038414, - 0.030016, - 0.028615, - 0.040262, - -0.034781, - -0.10915, - 0.045323, - 0.045762, - -0.049551, - -0.045534, - -0.0023964, - 0.053973, - 0.023903, - 0.0059824, - -0.047829, - -0.035236, - 0.032456, - -0.042471, - -0.051013, - -0.01806, - 0.027453, - -0.0024168, - 0.075477, - 0.0527, - 0.0063073, - -0.035341, - 0.035495, - -0.034327, - 0.031975, - -0.051916, - -0.0077791, - 0.0053885, - -0.0014612, - 0.055623, - -0.0308, - 0.0079192, - -0.0096987, - 0.024455, - -0.062941, - 0.019144, - 0.032328, - 0.0041186, - 0.035984, - 0.063917, - -0.043871, - -0.0058722, - -0.016698, - -0.068018, - 0.046267, - -0.0036335, - 0.0095174, - -0.085066, - 0.0031768, - -0.056685, - 0.027265, - 0.025591, - 0.040455, - 0.020805, - -0.0011752, - 0.0070662, - -0.029252, - -0.028694, - 0.057739, - -0.045097, - -0.083285, - -0.043586, - 0.043018, - -0.040315, - 0.0090619, - 0.081776, - 0.0079613, - 0.008403, - 0.075875, - 0.053244, - -0.040248, - -0.024357, - -0.018291, - 0.021179, - -0.011652, - 0.040755, - 0.0069243, - 0.018575, - -0.069415, - 0.035609, - -0.069233, - -0.0081974, - 0.0072368, - 0.033387, - 0.041061, - 0.037174, - -0.032326, - -0.044237, - 0.061874, - 0.010055, - 0.051378, - -0.01101, - 0.049332, - 0.024334, - -0.061126, - 0.043557, - -0.027937, - 0.0040534, - -0.025384, - -0.05852, - -0.0099227, - 0.077128, - 0.034601, - 0.024854, - -0.054133, - 0.026359, - 0.0074008, - -0.0097591, - -0.0087265, - -0.018391, - -0.075579, - -0.038221, - -0.034356, - 0.015956, - 0.029034, - -0.032463, - -0.016893, - -0.032951, - -0.025394, - 0.063169, - 0.014072, - -0.046712, - 0.010277, - -0.012119, - -0.027686, - 0.01505, - 0.070046, - 0.023016, - 0.015756, - 0.040661, - 0.053336, - -0.00901, - -0.0072462, - 0.013654, - 0.0088208, - 0.048484, - 0.027517, - -0.019823, - 0.021302, - 0.0056191, - 0.034056, - 0.0049763, - 0.022853, - 0.01785, - -0.046427, - -0.042024, - 0.035816, - -0.015711, - -0.061552, - 0.061005, - -0.042716, - -0.018932, - -0.039625, - -0.042239, - -0.0062005, - 0.048673, - -0.026442, - 0.028683, - 0.010081, - 0.012759, - -0.087094, - -0.015915, - -0.017607, - 0.020961, - -0.022079, - 0.051261, - 0.022687, - -0.026677, - 0.0036967, - -0.018841, - -0.033964, - -0.017815, - -0.071436, - 0.041934, - 0.04666, - -0.0019098, - 0.033352, - -0.024283 - ], - "hedgehogs": [ - 0.071384, - -0.013809, - 0.040359, - -0.0013923, - -0.072981, - 0.068942, - -0.031882, - -0.10405, - 0.03696, - -0.0013043, - -0.011762, - -0.018462, - 0.0088377, - -0.0539, - 0.047595, - -0.040631, - 0.064343, - -0.085931, - 0.040612, - -0.070061, - -0.016157, - 0.027011, - 0.064306, - 0.034417, - 0.069469, - 0.043755, - 0.018231, - 0.032824, - 0.10494, - -0.017084, - 0.020127, - -0.043007, - -0.034789, - 0.053456, - 0.026121, - -0.008249, - -0.028018, - -0.16653, - 0.06373, - -0.085818, - 0.013195, - -0.062622, - -0.058669, - -0.061062, - 0.010833, - -0.01349, - -0.01595, - -0.041891, - 0.00028713, - 0.018281, - -0.010318, - 0.064625, - 0.044198, - -0.066306, - -0.04683, - -0.062363, - 0.054379, - 0.011624, - -0.039003, - -0.0089835, - -0.050543, - -0.11712, - 0.051336, - -0.042839, - 0.067486, - 0.051761, - -0.034867, - -0.095991, - -0.081806, - -0.0061089, - -0.017723, - 0.023847, - 0.091338, - 0.058203, - -0.022834, - 0.12165, - -0.030291, - -0.054968, - 0.016868, - 0.015755, - 0.026598, - -0.013425, - 0.0085692, - 0.061906, - 0.084676, - 0.050646, - 0.039339, - -0.033411, - 0.05644, - -0.043987, - 0.011959, - -0.028938, - -0.075411, - 0.01649, - 0.025959, - 0.071901, - -0.00083223, - 0.12123, - 0.095394, - -0.065178, - -0.013138, - 0.057315, - -0.0024391, - 0.085728, - 0.030147, - -0.0069625, - 0.016168, - -0.00063304, - 0.06949, - -0.0082783, - -0.063443, - 0.08551, - 0.0478, - 0.066842, - 0.028964, - 0.067741, - 0.039282, - 0.014399, - -0.045611, - -0.014746, - -0.055675, - 0.11271, - 0.032646, - -0.082836, - 0.11663, - 0.0018208, - -0.012233, - -0.085896, - -0.0075598, - 0.068852, - 0.029866, - 0.090048, - 0.0065817, - 0.035902, - 0.062568, - 0.027606, - -0.023962, - 0.072627, - 0.068229, - 0.058395, - 0.007811, - -0.0098545, - 0.059131, - 0.022912, - 0.094354, - -0.067737, - 0.064175, - 0.032781, - -0.025595, - -0.052141, - 0.024639, - 0.088412, - -0.064854, - 0.012182, - 0.010591, - 0.041805, - -0.048526, - -0.0058567, - 0.030973, - -0.051967, - 0.038389, - -0.061586, - -0.010342, - 0.013315, - 0.048639, - -0.049276, - 0.0029163, - 0.01769, - 0.020103, - -0.04342, - 0.0038152, - 0.020638, - -0.022807, - -0.028148, - 0.0084208, - 0.034779, - 0.076909, - -0.012451, - 0.022337, - -0.025178, - 0.11215, - 0.023123, - -0.047946, - -0.054174, - -0.0039496, - -0.053587, - 0.029912, - 0.083417, - 0.053636, - -0.065703, - -0.034902, - 0.034124, - -0.10394, - -0.043904, - 0.034913, - 0.033103, - 0.018342, - 0.020084, - -0.0063819, - 0.062991, - -0.11975, - 0.019201, - -0.041638, - 0.035453, - -0.044271, - 0.068897, - -0.027649, - 0.035525, - -0.062192, - -0.069844, - 0.059258, - -0.013204, - 0.015794, - 0.073887, - 0.018473, - -0.013246, - -0.024125, - 0.001644, - -0.0011825, - 0.026889, - 0.014718, - 0.026206, - 0.098698, - 0.10483, - 0.041285, - -0.050095, - 0.01965, - 0.036708, - 0.048587, - -0.032362, - -0.09928, - -0.017547, - -0.09702, - -0.05435, - 0.029909, - -0.025346, - 0.077407, - -0.01304, - -0.020394, - -0.019304, - -0.031415, - -0.0034767, - 0.020738, - -0.024989, - 0.012052, - 0.017904, - -0.030927, - 0.041119, - -0.0011728, - -0.011528, - 0.013429, - -0.0020197, - 0.015366, - -0.055232, - -0.012373, - 0.028897, - -0.0049139, - -0.027062, - 0.12185, - -0.004415, - 0.040881, - 0.041707, - 0.030969, - -0.049171, - 0.016522, - 0.045183, - 0.010454, - 0.039962, - 0.011364, - -0.015648, - -0.035036, - 0.090068, - -0.10131, - -0.0074671, - -0.056552, - -0.01079, - 0.053353, - -0.00028136, - 0.040179, - -0.060152, - 0.03699, - 0.077405, - 0.003332, - -0.024988, - -0.035234, - 0.011091, - 0.01222, - -0.0035752, - -0.0057232, - -0.043385, - -0.075285, - -0.029838, - -0.059526, - -0.10977, - 0.029988, - -0.12242, - -0.034449, - 0.10367, - 0.027304, - -0.0011167 - ], - "structures": [ - 0.038612, - -0.027966, - -0.0023097, - -0.025678, - 0.005835, - -0.036237, - 0.013973, - -0.062264, - 0.018162, - -0.007611, - 0.065617, - -0.064969, - 0.0017113, - 0.054494, - 0.0090197, - -0.0020573, - 0.05498, - 0.059307, - 0.059125, - 0.019227, - 0.0062792, - 0.0056407, - 0.061445, - 0.071202, - 0.0095635, - -0.014328, - -0.037292, - -0.017155, - 0.087687, - -0.012824, - -0.0091618, - -0.011667, - 0.01974, - -0.038605, - 0.039375, - 0.041047, - 0.022792, - -0.001917, - -0.0035807, - -0.0074449, - 0.000022643, - -0.13404, - 0.0059234, - -0.0011993, - -0.019705, - -0.038549, - 0.0097242, - -0.0058408, - 0.016959, - -0.010687, - -0.035524, - -0.025251, - -0.0019434, - 0.014197, - -0.079303, - 0.013454, - 0.014776, - 0.009718, - -0.045708, - 0.021241, - 0.024308, - 0.014914, - 0.15236, - -0.0031041, - 0.092063, - -0.0087286, - 0.035956, - -0.0019411, - 0.015005, - 0.015121, - 0.020735, - -0.018973, - 0.0051341, - -0.020048, - 0.038286, - -0.07914, - -0.017725, - -0.037967, - -0.048709, - -0.0045784, - 0.007454, - -0.036696, - -0.058597, - 0.041561, - 0.050892, - -0.010666, - 0.064262, - -0.034578, - 0.0092816, - 0.038217, - -0.020945, - -0.021601, - -0.070479, - 0.049025, - -0.025071, - 0.046168, - 0.01134, - -0.0065906, - 0.028331, - 0.0047981, - 0.050325, - 0.025377, - -0.027822, - 0.0070934, - 0.040193, - -0.051394, - 0.038659, - -0.015953, - 0.015775, - 0.006804, - 0.015472, - 0.039864, - 0.065735, - 0.019751, - -0.004537, - -0.016368, - -0.020451, - 0.010099, - -0.043319, - 0.05484, - 0.0046412, - -0.042831, - 0.000089388, - -0.040633, - 0.1089, - -0.00054185, - 0.004495, - -0.022976, - 0.036553, - 0.10354, - -0.025911, - 0.024969, - 0.041032, - 0.028857, - -0.010886, - 0.011021, - -0.043427, - 0.036446, - -0.017039, - 0.036124, - -0.0050221, - 0.012565, - 0.0061849, - 0.068489, - 0.076076, - -0.084824, - 0.037371, - 0.010779, - 0.026854, - 0.008557, - 0.019452, - 0.067321, - 0.045115, - -0.068391, - 0.029228, - 0.016939, - -0.0043045, - 0.015101, - -0.015767, - -0.012503, - 0.015592, - -0.029453, - 0.0030014, - -0.0075298, - 0.0055824, - 0.0081415, - 0.028866, - 0.029647, - 0.0075558, - -0.0083578, - 0.03317, - -0.0046279, - 0.0021641, - -0.0070155, - -0.034807, - 0.052983, - -0.0061404, - 0.044414, - -0.058822, - -0.024949, - 0.0036279, - -0.00094371, - 0.02546, - 0.020311, - -0.01546, - -0.026955, - 0.0046224, - 0.077546, - 0.03815, - -0.035147, - -0.0041836, - 0.042002, - -0.062909, - -0.0093556, - -0.047207, - -0.020974, - -0.057099, - 0.0057638, - 0.011473, - -0.023379, - -0.13257, - 0.029297, - -0.0023194, - -0.00040384, - 0.057684, - -0.031067, - 0.035596, - 0.004008, - -0.021839, - -0.025008, - 0.084308, - 0.018325, - 0.033347, - 0.021709, - 0.033817, - 0.012474, - 0.0066094, - 0.075874, - -0.039942, - -0.0095524, - -0.014303, - 0.014777, - 0.014596, - 0.066158, - 0.047899, - -0.010895, - 0.0047766, - 0.028529, - -0.040402, - 0.032425, - 0.0097044, - -0.014672, - -0.083987, - 0.0043023, - 0.010908, - -0.0014404, - 0.014689, - 0.021971, - -0.03074, - 0.051056, - -0.024928, - 0.037756, - 0.011089, - 0.038615, - 0.0031087, - -0.0019586, - -0.05169, - -0.0092277, - -0.0015745, - -0.0019252, - -0.065947, - -0.0064285, - -0.0081968, - -0.04058, - -0.046507, - 0.061869, - 0.0026253, - 0.014826, - 0.023335, - -0.00052071, - -0.010989, - 0.0051377, - 0.024106, - -0.033934, - 0.043518, - -0.0058447, - 0.003595, - -0.0015345, - -0.031436, - -0.023502, - -0.028327, - 0.075769, - -0.08633, - -0.061565, - 0.020532, - 0.0062303, - 0.037344, - -0.020107, - 0.013235, - 0.0053934, - 0.030629, - 0.00033645, - -0.00044555, - 0.039596, - 0.0056358, - -0.013103, - -0.023605, - 0.044867, - -0.019658, - 0.029864, - -0.0099624, - 0.046708, - 0.015822, - -0.064264, - 0.029007, - -0.016735, - 0.000055036, - 0.01042, - 0.0035949, - -0.021388 - ], - "non-alcoholic": [ - -0.0041988, - -0.0095121, - 0.038302, - -0.012688, - -0.016965, - 0.036453, - 0.094152, - -0.052624, - -0.0098802, - 0.055202, - 0.01945, - -0.0041372, - 0.0072369, - 0.0089378, - 0.069077, - 0.014421, - 0.050587, - -0.040098, - 0.02839, - -0.00765, - 0.041514, - 0.026657, - 0.01291, - 0.03197, - 0.0082775, - 0.0035062, - -0.031449, - 0.042498, - 0.049732, - 0.0032003, - -0.028752, - -0.018231, - 0.0024826, - -0.0095003, - 0.077909, - -0.0039616, - -0.034259, - 0.017205, - -0.0024387, - 0.028832, - 0.011818, - -0.046404, - -0.0086606, - -0.014189, - -0.0065956, - -0.041583, - 0.0051137, - -0.0034425, - -0.040927, - 0.037053, - -0.052092, - 0.037737, - 0.038831, - -0.034667, - 0.038453, - 0.018137, - -0.017884, - -0.054015, - -0.02434, - -0.018946, - 0.037062, - -0.0066631, - 0.058778, - 0.04534, - -0.015764, - 0.013913, - 0.022098, - 0.0053691, - 0.0037037, - -0.0011572, - 0.027053, - -0.0058721, - 0.056829, - 0.042953, - -0.042074, - -0.011045, - -0.036679, - -0.043473, - 0.026202, - 0.055044, - -0.011209, - 0.010012, - 0.0023874, - 0.026023, - -0.0441, - -0.0064785, - 0.0094078, - 0.0022506, - -0.042113, - -0.035776, - 0.031979, - 0.025764, - -0.065248, - -0.0089062, - -0.037733, - 0.045677, - 0.010839, - 0.038067, - 0.0067142, - 0.050792, - 0.01933, - -0.0033897, - -0.041171, - -0.026238, - -0.046773, - -0.080138, - -0.038345, - 0.024423, - -0.034611, - 0.041166, - -0.0061917, - 0.052698, - 0.015106, - 0.04286, - 0.026109, - -0.069456, - -0.0053706, - -0.03375, - -0.017105, - 0.007147, - 0.0097171, - 0.0030451, - 0.015263, - -0.10813, - 0.089287, - 0.0081004, - 0.010802, - -0.03216, - 0.0077191, - -0.020014, - 0.035047, - 0.0028373, - 0.011299, - -0.016542, - -0.053325, - 0.037986, - 0.0086808, - 0.056766, - 0.055888, - -0.0014918, - 0.07439, - -0.014834, - -0.00481, - -0.053913, - 0.038559, - -0.012585, - 0.057964, - 0.01578, - -0.0074522, - 0.058461, - 0.0094518, - 0.096906, - 0.033043, - 0.025483, - -0.022335, - -0.01948, - -0.053357, - -0.015187, - 0.054661, - 0.041811, - 0.026528, - -0.002303, - -0.044819, - -0.0094808, - 0.0091848, - 0.040257, - -0.03707, - -0.0042957, - 0.0038814, - -0.00016563, - -0.029732, - -0.014906, - 0.028484, - 0.0070123, - -0.013185, - 0.035883, - -0.011193, - 0.01186, - -0.028044, - -0.029131, - -0.011687, - 0.014069, - 0.022561, - -0.019909, - 0.063624, - -0.020208, - -0.0040623, - 0.085851, - 0.060767, - -0.029744, - 0.027169, - 0.039167, - 0.019474, - 0.0086936, - 0.085711, - -0.017523, - 0.0051083, - -0.031288, - -0.0086189, - -0.0077836, - -0.079413, - 0.059821, - -0.037658, - -0.028723, - -0.038497, - 0.050408, - -0.020988, - 0.04075, - -0.0048194, - -0.0047363, - 0.063741, - -0.015682, - 0.070192, - 0.037972, - 0.016684, - 0.046729, - -0.049974, - -0.010237, - -0.026434, - -0.010509, - -0.011665, - -0.048974, - 0.0012562, - 0.079121, - -0.030159, - 0.025293, - 0.013461, - 0.029629, - -0.017449, - -0.032196, - 0.056652, - -0.0027686, - -0.039015, - -0.014672, - 0.0084108, - -0.013664, - -0.040875, - -0.035492, - 0.023413, - -0.030953, - 0.024245, - -0.022196, - 0.018734, - -0.061305, - -0.092748, - 0.018698, - -0.012977, - -0.0085048, - -0.02673, - -0.043807, - -0.0089552, - 0.023676, - -0.025768, - -0.0091485, - -0.014629, - -0.0035632, - -0.01688, - -0.028197, - 0.055497, - -0.019182, - 0.080712, - -0.049519, - -0.0027303, - -0.0071136, - 0.004303, - -0.029891, - 0.039067, - -0.0082336, - 0.039572, - 0.095463, - 0.0088666, - 0.065009, - -0.066033, - -0.023983, - -0.0065069, - -0.065402, - -0.037863, - 0.0046192, - -0.03939, - 0.029291, - 0.070394, - 0.0041175, - -0.026135, - 0.055423, - -0.048866, - -0.024012, - 0.0082327, - -0.044682, - 0.078833, - -0.037192, - 0.060575, - -0.023924, - -0.015965, - -0.010999, - -0.010247, - 0.022456, - 0.034486, - -0.030899, - -0.03044, - 0.027088 - ], - "mobiles": [ - -0.0012022, - -0.021319, - -0.048344, - -0.061351, - 0.056573, - -0.026634, - -0.0079819, - -0.080833, - 0.09348, - -0.017478, - 0.070594, - -0.01154, - -0.055058, - -0.042188, - 0.07421, - -0.051344, - 0.084937, - 0.042825, - 0.065746, - -0.037758, - 0.026693, - -0.047881, - 0.049617, - 0.0073559, - 0.068735, - -0.026461, - 0.0096275, - -0.044843, - 0.15252, - 0.0094052, - -0.032252, - 0.036208, - 0.066515, - 0.0066823, - 0.062234, - -0.019388, - 0.0071673, - -0.054126, - 0.0094593, - -0.078349, - -0.070772, - -0.070096, - -0.037886, - -0.0052801, - 0.0040197, - -0.040381, - 0.050205, - -0.062393, - -0.017887, - -0.034652, - -0.0029281, - -0.046807, - -0.0028111, - -0.012648, - -0.077573, - 0.066311, - 0.011417, - 0.024464, - -0.061271, - 0.036822, - -0.03839, - -0.048338, - 0.10387, - 0.051796, - 0.045574, - 0.051212, - 0.01014, - -0.070116, - -0.035846, - 0.067787, - 0.002392, - -0.053649, - 0.11262, - 0.010402, - -0.070227, - -0.012224, - 0.062102, - -0.028033, - -0.024488, - -0.054152, - 0.024656, - -0.10009, - -0.041405, - 0.084095, - 0.026258, - -0.046377, - -0.034468, - -0.018914, - -0.067222, - 0.0091091, - -0.0039504, - -0.038998, - -0.095458, - 0.02406, - 0.01593, - 0.069885, - -0.056371, - -0.012755, - 0.0065727, - 0.010145, - 0.070876, - 0.041023, - 0.027371, - 0.013957, - 0.055693, - -0.086387, - -0.096871, - 0.01877, - 0.024829, - -0.0077188, - 0.058035, - 0.078963, - 0.080161, - 0.091838, - -0.11859, - 0.051459, - -0.071142, - 0.054349, - -0.058334, - -0.067873, - 0.011498, - 0.12459, - -0.024571, - -0.0025011, - 0.10466, - 0.036552, - 0.036563, - -0.069679, - 0.079939, - 0.037202, - -0.054589, - 0.038437, - -0.022084, - -0.021854, - 0.056124, - 0.0093505, - 0.077654, - 0.024728, - -0.06339, - 0.084862, - 0.061649, - -0.0022799, - 0.094305, - -0.00010618, - 0.04686, - 0.030157, - -0.058392, - 0.10153, - -0.0059551, - -0.050584, - 0.043198, - 0.09102, - 0.01385, - -0.01463, - -0.010951, - 0.0046423, - -0.068797, - 0.033792, - -0.015129, - 0.015121, - 0.06657, - -0.025154, - 0.007337, - 0.063137, - 0.032251, - -0.010987, - 0.02774, - 0.068773, - -0.040973, - 0.0064096, - -0.026312, - 0.099318, - 0.045575, - 0.072228, - -0.078616, - 0.025001, - -0.023426, - 0.019279, - -0.012863, - -0.0044371, - 0.084706, - 0.032969, - -0.033717, - -0.04574, - 0.0053386, - 0.016619, - 0.082187, - 0.060187, - 0.064493, - -0.016386, - 0.020627, - 0.06214, - -0.077466, - -0.01971, - 0.0059709, - 0.010797, - -0.011342, - 0.019781, - 0.018132, - 0.069704, - -0.13522, - 0.094345, - 0.0011092, - 0.063381, - -0.01616, - 0.12985, - 0.038963, - -0.029897, - -0.054609, - -0.037821, - 0.093817, - 0.017757, - 0.084197, - 0.066889, - 0.016692, - 0.00060049, - -0.09017, - 0.028386, - -0.038884, - -0.043999, - 0.076072, - -0.088145, - 0.068541, - 0.11191, - 0.045999, - -0.013998, - 0.010884, - 0.034385, - -0.056382, - -0.015789, - 0.013023, - -0.012894, - -0.095731, - 0.013447, - 0.058907, - 0.092689, - 0.022825, - 0.036142, - -0.021495, - -0.050607, - -0.017614, - -0.0040212, - 0.0049499, - -0.020299, - -0.035917, - -0.0013935, - -0.080616, - -0.046446, - -0.018366, - 0.010847, - -0.014517, - 0.038006, - -0.069615, - 0.069393, - -0.018488, - -0.0097166, - -0.034076, - -0.049708, - -0.014521, - -0.015852, - -0.0003203, - 0.031152, - -0.017695, - 0.0014469, - 0.036863, - 0.069857, - 0.033935, - -0.00097542, - 0.091456, - 0.056519, - -0.049331, - 0.086758, - -0.092265, - 0.022606, - -0.052543, - -0.067363, - 0.13133, - 0.068719, - 0.032636, - -0.0075926, - -0.0069572, - -0.047525, - -0.079468, - -0.0053364, - -0.027819, - -0.066074, - -0.1288, - -0.024691, - 0.070338, - 0.041003, - -0.0080834, - -0.043063, - -0.10354, - -0.0020844, - 0.068622, - -0.025081, - -0.02112, - 0.03616, - 0.07186, - -0.009307 - ], - "interests": [ - 0.026268, - -0.026127, - 0.025803, - -0.035091, - -0.05636, - -0.022401, - -0.006568, - -0.085985, - 0.015829, - 0.0052697, - 0.0025941, - -0.047981, - -0.016082, - 0.004016, - 0.0083736, - 0.003871, - 0.061625, - 0.020566, - 0.063605, - 0.0088776, - -0.029498, - -0.0092115, - 0.056619, - 0.067865, - -0.018096, - 0.0025125, - -0.0036655, - -0.02274, - 0.082381, - -0.052137, - -0.01336, - -0.07224, - -0.026833, - -0.01513, - 0.0023568, - 0.028503, - -0.037362, - 0.011361, - 0.026793, - 0.015789, - -0.041524, - -0.063026, - -0.022029, - -0.040587, - 0.024465, - -0.063915, - 0.0020645, - 0.0015773, - -0.021152, - -0.045731, - 0.027029, - 0.048791, - -0.0034479, - 0.037786, - -0.022123, - -0.00040417, - -0.027436, - 0.055408, - -0.033086, - -0.0066965, - 0.010184, - 0.040872, - 0.13378, - 0.012292, - 0.050886, - -0.014874, - -0.062415, - 0.013304, - 0.023284, - 0.0050649, - 0.056324, - 0.024111, - 0.066911, - 0.0073978, - 0.032938, - -0.022307, - -0.018355, - 0.0041842, - 0.033027, - -0.036746, - -0.00022417, - 0.05915, - -0.027405, - 0.063361, - -0.011428, - -0.0052779, - 0.031214, - -0.0021989, - -0.014079, - 0.028656, - 0.094868, - 0.032255, - -0.095181, - 0.011226, - 0.035915, - 0.0068143, - -0.02709, - -0.0081728, - 0.0077764, - -0.0088062, - -0.011105, - 0.037921, - -0.047332, - -0.047488, - 0.070367, - -0.051277, - -0.01278, - 0.013065, - -0.033966, - -0.0092608, - -0.07106, - 0.063081, - 0.031511, - 0.022433, - 0.011797, - 0.023221, - -0.0042108, - -0.028138, - -0.028648, - 0.010414, - 0.031048, - -0.022856, - -0.032563, - -0.088627, - 0.10558, - -0.012479, - -0.01569, - -0.09434, - -0.0025511, - 0.11677, - 0.066289, - 0.027915, - 0.015876, - 0.052247, - -0.025165, - 0.012793, - 0.010983, - 0.08993, - -0.024543, - 0.036883, - -0.0047953, - 0.0025218, - 0.017087, - 0.053896, - -0.011367, - -0.047672, - 0.0221, - -0.067401, - -0.0078994, - 0.016804, - 0.09377, - 0.080784, - 0.0024151, - -0.041199, - 0.015446, - -0.006443, - 0.052375, - 0.014248, - 0.012423, - -0.051352, - 0.05273, - -0.031217, - -0.021389, - -0.015009, - -0.0081798, - 0.0075002, - 0.0078856, - -0.026795, - -0.038632, - -0.017434, - 0.0016081, - -0.012033, - 0.036564, - 0.0056676, - -0.084642, - 0.071356, - -0.050007, - 0.022915, - 0.0059168, - -0.02286, - 0.000067296, - -0.011952, - 0.013492, - -0.023801, - 0.00062976, - -0.047492, - 0.042471, - 0.099152, - 0.027908, - -0.006508, - 0.00069863, - 0.091658, - -0.048754, - -0.0010564, - 0.026132, - 0.025419, - 0.003164, - 0.0086842, - -0.031128, - 0.057735, - -0.079031, - 0.018868, - 0.013741, - -0.050237, - -0.0028836, - 0.0084189, - -0.01063, - -0.027513, - 0.055372, - 0.0056067, - 0.033475, - -0.0016111, - 0.0069414, - -0.022881, - -0.0074209, - 0.042604, - 0.011442, - -0.081551, - -0.072387, - 0.036215, - -0.010799, - 0.0030125, - -0.052165, - 0.083405, - 0.096287, - 0.045773, - 0.02821, - 0.12364, - 0.026455, - -0.05108, - -0.018015, - -0.018606, - -0.12098, - -0.052234, - 0.084506, - 0.052376, - -0.035247, - 0.029603, - -0.048248, - 0.015008, - -0.029168, - 0.021768, - 0.0090865, - 0.071072, - -0.03059, - -0.022336, - -0.047067, - -0.13764, - 0.021036, - -0.0353, - 0.035008, - -0.026606, - -0.010866, - 0.0086755, - -0.021124, - -0.022933, - -0.070113, - 0.080711, - -0.014771, - 0.014099, - -0.022757, - 0.011807, - 0.00055524, - -0.029489, - 0.016777, - -0.0046992, - -0.044879, - 0.057527, - 0.015578, - -0.005425, - 0.034232, - 0.061966, - -0.10555, - -0.06488, - 0.11196, - -0.020102, - 0.016527, - 0.021386, - 0.011656, - 0.031656, - 0.045061, - -0.024903, - 0.053727, - -0.021636, - 0.071521, - -0.0032183, - -0.035018, - 0.011235, - 0.012906, - -0.0025961, - -0.049594, - 0.018277, - -0.057684, - 0.02035, - -0.0068581, - 0.014707, - -0.05976, - 0.003807, - -0.05137, - -0.002078 - ], - "nutrition": [ - -0.032869, - -0.05505, - -0.089639, - 0.011167, - 0.0028929, - -0.029201, - -0.050263, - -0.056066, - 0.091451, - 0.0055465, - -0.010349, - -0.028225, - 0.0040784, - -0.018849, - 0.035884, - -0.038575, - 0.089217, - 0.015145, - 0.029195, - 0.045227, - 0.016625, - 0.0095749, - 0.093684, - 0.049569, - -0.069993, - -0.058132, - -0.043196, - 0.028262, - 0.014733, - 0.04352, - 0.10901, - -0.05027, - 0.053697, - -0.070066, - 0.033382, - 0.083799, - 0.029283, - -0.067951, - 0.07647, - -0.0028787, - -0.0033597, - -0.14468, - -0.013613, - -0.043912, - 0.059526, - -0.0394, - 0.0055556, - -0.049638, - -0.030191, - 0.00223, - -0.032955, - 0.044796, - 0.091541, - -0.0085313, - -0.02822, - 0.048661, - -0.077986, - -0.0033003, - 0.0052685, - 0.0067631, - -0.015374, - -0.04865, - 0.057113, - 0.011799, - 0.018443, - 0.0080538, - 0.058229, - -0.010632, - -0.036184, - -0.040391, - -0.045425, - -0.019595, - 0.046798, - -0.03039, - -0.010027, - 0.015735, - -0.028517, - -0.022622, - -0.00060847, - -0.017887, - -0.036349, - 0.01301, - -0.018632, - 0.015568, - -0.04579, - 0.041886, - -0.05291, - -0.023931, - 0.018042, - 0.020013, - 0.037083, - 0.019654, - -0.065154, - 0.023023, - -0.032663, - 0.054163, - 0.03741, - 0.080186, - 0.0098672, - -0.025986, - -0.020477, - -0.036023, - 0.00059006, - -0.022879, - 0.0010349, - -0.054997, - -0.050934, - 0.019905, - 0.055339, - 0.025574, - -0.020561, - 0.081742, - 0.041199, - -0.013144, - 0.062375, - -0.036908, - -0.024222, - 0.020538, - -0.040205, - -0.043896, - -0.028474, - 0.039681, - -0.0040637, - -0.027487, - 0.053976, - -0.04117, - -0.05003, - -0.041227, - 0.12076, - 0.10544, - 0.022289, - -0.050545, - 0.046882, - -0.049935, - -0.05737, - 0.058109, - -0.047587, - -0.0071534, - 0.034514, - 0.021892, - 0.096421, - -0.01393, - -0.028482, - 0.039885, - -0.0071515, - -0.021609, - -0.020363, - 0.040663, - -0.01806, - 0.0013134, - 0.028699, - 0.04863, - 0.042084, - -0.054881, - 0.019011, - 0.045127, - -0.030111, - 0.10316, - 0.046329, - -0.015562, - 0.030685, - -0.017222, - -0.10884, - 0.08574, - -0.031667, - 0.028387, - -0.045556, - -0.049315, - 0.042288, - -0.0070411, - 0.029042, - -0.020692, - 0.017249, - 0.025827, - 0.00056335, - 0.059564, - 0.016261, - 0.021392, - -0.024707, - 0.01609, - -0.027713, - 0.0091487, - 0.0012971, - -0.040749, - 0.035939, - -0.075239, - 0.01399, - 0.10826, - -0.029598, - 0.021148, - 0.020261, - 0.052309, - 0.012311, - -0.067668, - 0.053622, - -0.060051, - 0.016197, - -0.031238, - 0.027801, - -0.024041, - -0.12817, - 0.0019486, - 0.0010723, - -0.05883, - -0.044358, - 0.053178, - -0.017173, - -0.051552, - -0.0092404, - 0.01372, - 0.10404, - 0.005623, - 0.010439, - 0.032683, - 0.046236, - 0.063379, - 0.073877, - 0.021064, - -0.077931, - -0.0069738, - -0.067598, - 0.055623, - -0.023013, - 0.077827, - 0.039082, - -0.035756, - 0.057582, - 0.065738, - 0.0099621, - -0.030702, - -0.031316, - -0.021985, - -0.043043, - -0.016012, - 0.015637, - 0.063317, - -0.063365, - 0.0089023, - -0.067166, - -0.043466, - 0.024787, - 0.009897, - -0.017018, - -0.046414, - -0.01359, - 0.10619, - 0.021535, - -0.060199, - 0.027804, - 0.01866, - 0.053073, - -0.020233, - -0.014565, - 0.0015577, - 0.03321, - -0.024403, - -0.0016743, - 0.0091424, - 0.036536, - 0.020686, - -0.016309, - -0.015396, - 0.059804, - 0.008208, - 0.045823, - 0.0046194, - 0.0037857, - 0.022432, - 0.037946, - 0.044604, - -0.021233, - 0.044976, - -0.094256, - -0.035275, - -0.0057916, - -0.00070518, - -0.07283, - -0.058547, - 0.010514, - -0.0089604, - 0.11693, - 0.0094582, - 0.033492, - 0.02909, - 0.0045999, - 0.072035, - -0.03179, - 0.055318, - -0.019531, - 0.03679, - 0.012909, - 0.0068194, - -0.061756, - -0.0084532, - -0.0057524, - -0.03332, - -0.014303, - 0.040851, - -0.06771, - 0.053259 - ], - "kids": [ - -0.019973, - 0.0028811, - 0.013986, - 0.065858, - -0.020726, - -0.01295, - -0.029649, - -0.10178, - 0.042159, - 0.045148, - 0.0071306, - -0.072335, - 0.066077, - -0.023943, - -0.02125, - -0.037553, - 0.082286, - 0.076269, - 0.077876, - 0.0052881, - 0.037087, - 0.029985, - -0.017456, - 0.076575, - -0.0041953, - 0.062674, - 0.12086, - -0.0083807, - 0.1434, - 0.065622, - 0.0019336, - -0.093129, - 0.052922, - 0.033471, - -0.021789, - -0.00011275, - 0.042338, - -0.093166, - -0.026318, - -0.13564, - -0.031624, - -0.083854, - -0.015706, - -0.012976, - 0.11665, - -0.044738, - 0.028706, - 0.084075, - -0.02906, - 0.04209, - 0.018446, - 0.05876, - 0.061453, - -0.050748, - -0.08892, - 0.032762, - -0.0030222, - -0.16752, - -0.088863, - -0.045204, - -0.03185, - -0.055553, - 0.15219, - 0.067422, - 0.061543, - 0.01877, - 0.061231, - -0.093845, - 0.026748, - -0.038337, - -0.027131, - -0.065341, - 0.20309, - 0.04102, - 0.066479, - 0.0021488, - 0.095205, - -0.081049, - 0.018116, - -0.03273, - -0.033022, - 0.039873, - 0.042301, - 0.13119, - -0.010766, - 0.038951, - -0.056083, - -0.024226, - 0.019335, - -0.0087464, - 0.040512, - 0.03474, - -0.20155, - -0.0040547, - 0.067792, - 0.042131, - 0.017438, - 0.15006, - 0.050427, - 0.0011036, - 0.13258, - 0.028749, - 0.063848, - -0.07447, - 0.066481, - -0.12206, - 0.011888, - 0.0042685, - -0.040643, - 0.035341, - -0.015804, - 0.15996, - 0.029779, - 0.068667, - 0.023285, - -0.087387, - -0.11682, - -0.014004, - -0.053593, - -0.038607, - -0.093724, - -0.013841, - 0.011752, - -0.08745, - 0.11598, - -0.070402, - 0.029593, - -0.18364, - -0.056889, - 0.055508, - -0.079177, - 0.19482, - -0.0035073, - -0.0076884, - -0.03575, - -0.059925, - 0.032586, - 0.081261, - -0.083302, - -0.0068058, - 0.051509, - 0.022503, - 0.023119, - 0.0048055, - 0.037468, - -0.019956, - -0.019243, - 0.038803, - -0.029652, - -0.077671, - 0.1036, - 0.15153, - -0.077705, - -0.031309, - 0.0063384, - -0.029698, - 0.0562, - 0.10195, - 0.1321, - -0.10808, - 0.081707, - 0.043726, - 0.080396, - -0.028181, - 0.022958, - 0.030419, - 0.051234, - -0.0066678, - 0.027293, - -0.063769, - -0.066605, - -0.030562, - 0.088749, - 0.011671, - -0.026637, - 0.068432, - 0.019119, - 0.032384, - 0.071352, - -0.077409, - 0.091391, - -0.13568, - -0.097317, - -0.012677, - 0.050373, - -0.18173, - 0.011245, - 0.13984, - 0.016518, - -0.046723, - -0.027808, - 0.097007, - -0.16942, - 0.018292, - 0.051174, - -0.023969, - 0.072861, - 0.043727, - 0.020344, - 0.0042431, - -0.12818, - 0.18975, - 0.021219, - -0.039304, - 0.074125, - 0.10407, - 0.0091109, - -0.069379, - -0.00085847, - -0.1169, - 0.053914, - -0.03681, - 0.10594, - 0.063278, - -0.068183, - -0.020036, - -0.089219, - -0.022324, - -0.035036, - -0.052623, - 0.074847, - -0.0072737, - -0.012107, - 0.12537, - 0.1177, - -0.044701, - 0.085803, - 0.046984, - -0.072249, - -0.087517, - 0.041781, - -0.017728, - -0.16338, - 0.019277, - 0.041742, - 0.090868, - 0.045533, - 0.035267, - -0.082678, - -0.039791, - -0.012496, - -0.062394, - 0.069153, - -0.066404, - -0.008612, - 0.12352, - 0.0077625, - -0.086986, - 0.038294, - 0.007105, - 0.059803, - 0.075374, - 0.034962, - -0.039993, - 0.0098007, - 0.0010458, - -0.062562, - 0.02347, - 0.035191, - -0.055505, - 0.010372, - 0.07147, - 0.011371, - -0.074561, - -0.0041502, - 0.074069, - -0.010713, - 0.070094, - 0.10351, - 0.044869, - -0.035379, - 0.11071, - -0.16769, - -0.06736, - 0.052551, - -0.0082357, - -0.048125, - 0.066451, - 0.033069, - 0.013654, - -0.001685, - 0.021305, - 0.090603, - -0.020582, - 0.002591, - 0.040757, - 0.042517, - -0.1062, - -0.054086, - -0.043354, - -0.0043925, - -0.000035251, - -0.17496, - 0.021298, - -0.024126, - -0.027674, - 0.12422, - 0.04494, - 0.0069575, - -0.010614 - ], - "storm": [ - 0.040043, - -0.027069, - -0.043235, - 0.016423, - -0.0062272, - -0.059492, - 0.0027144, - -0.10291, - 0.08191, - 0.021974, - -0.013181, - -0.00068261, - -0.04157, - 0.033764, - -0.053086, - 0.024166, - 0.11889, - -0.01013, - 0.057545, - 0.011426, - 0.071194, - -0.045236, - 0.015066, - 0.051617, - 0.086995, - -0.063612, - -0.021698, - 0.031176, - -0.026738, - 0.023264, - -0.099197, - -0.0085818, - 0.0014047, - -0.085225, - -0.034065, - -0.035618, - 0.023929, - -0.054901, - -0.052419, - -0.097684, - -0.038652, - -0.10595, - 0.080417, - 0.12567, - -0.039351, - 0.13506, - 0.030292, - 0.052416, - -0.042027, - -0.050987, - 0.069513, - -0.15588, - -0.00022421, - -0.0075612, - -0.092737, - 0.035232, - 0.1458, - -0.08586, - -0.065615, - 0.064428, - -0.059194, - -0.039904, - 0.074116, - 0.046488, - -0.037027, - -0.032286, - -0.04698, - -0.046852, - 0.030557, - 0.050031, - 0.084989, - 0.090958, - 0.017816, - -0.0065428, - -0.02758, - -0.11273, - -0.092618, - -0.0025511, - 0.031169, - 0.030876, - -0.01236, - -0.00021808, - -0.03699, - 0.0968, - 0.093071, - -0.0028538, - 0.07938, - -0.06762, - 0.001945, - -0.065315, - -0.000053264, - 0.0069179, - -0.1059, - -0.069536, - -0.026849, - 0.023036, - 0.028757, - 0.034009, - 0.15645, - 0.048071, - 0.037617, - -0.050024, - 0.089644, - 0.024361, - 0.04021, - -0.085009, - -0.037445, - -0.0017512, - 0.055039, - 0.076513, - -0.044181, - -0.0042399, - 0.068349, - -0.042482, - -0.026235, - -0.07525, - 0.021616, - 0.084121, - -0.064511, - -0.030471, - -0.052033, - -0.027296, - 0.10717, - 0.043215, - 0.056246, - 0.045721, - 0.056699, - -0.12241, - -0.15767, - 0.10028, - 0.036802, - -0.019455, - -0.0094215, - 0.044283, - 0.088908, - 0.037415, - 0.10797, - 0.038559, - -0.020713, - -0.021891, - 0.021368, - -0.041052, - -0.049927, - -0.049603, - 0.0017836, - -0.070822, - 0.027603, - 0.0039104, - -0.066258, - 0.019325, - -0.011765, - 0.070303, - -0.010037, - -0.076016, - 0.09032, - -0.013464, - 0.014559, - -0.0087417, - -0.086551, - -0.048459, - 0.023063, - -0.0067607, - -0.12396, - 0.038605, - -0.050512, - 0.038222, - -0.022785, - -0.020184, - -0.029882, - 0.073738, - 0.031766, - -0.031411, - 0.05508, - -0.023866, - 0.024808, - 0.077449, - 0.024061, - 0.0177, - -0.016744, - -0.0095601, - -0.056263, - 0.018433, - -0.001862, - -0.13346, - -0.12048, - -0.075051, - -0.028774, - 0.11801, - 0.07336, - -0.10293, - 0.0052971, - -0.05827, - -0.039216, - -0.06648, - -0.04952, - -0.03718, - -0.010085, - 0.050047, - -0.0016693, - 0.010742, - -0.22113, - 0.057804, - 0.02992, - 0.077689, - 0.12955, - -0.025258, - 0.036454, - -0.035623, - -0.025678, - -0.064984, - 0.15168, - -0.030211, - 0.018286, - 0.10171, - 0.10372, - 0.00089171, - -0.033134, - -0.042069, - 0.044291, - -0.14787, - -0.075058, - -0.014709, - -0.019508, - 0.11843, - -0.026468, - 0.042379, - -0.094159, - 0.072284, - -0.064937, - 0.033555, - 0.082922, - -0.12073, - -0.031134, - -0.020004, - 0.00071103, - 0.031538, - 0.061898, - 0.037741, - 0.095023, - -0.039566, - 0.10177, - -0.021042, - -0.0031982, - -0.050185, - -0.056419, - 0.00034848, - 0.03329, - 0.029148, - -0.046017, - 0.0057673, - 0.042104, - -0.032245, - 0.025397, - 0.018172, - -0.0439, - -0.014433, - -0.02534, - 0.051146, - 0.063145, - 0.043824, - 0.054494, - 0.039872, - 0.022238, - -0.067999, - -0.044311, - -0.040615, - -0.016759, - 0.061348, - -0.0036923, - -0.10857, - -0.078299, - 0.11353, - -0.16631, - -0.027376, - 0.026448, - -0.08342, - -0.054095, - -0.065099, - -0.0065944, - 0.014099, - 0.094516, - -0.041462, - 0.042563, - -0.033721, - -0.019087, - -0.0049445, - 0.04276, - -0.0068071, - -0.011651, - -0.012445, - 0.056902, - 0.060415, - -0.13125, - 0.0099156, - 0.029794, - -0.1152, - -0.079546, - 0.07429, - 0.14671, - -0.078059 - ], - "dresses": [ - -0.021085, - -0.0085055, - 0.058152, - -0.031324, - 0.1181, - -0.067219, - 0.026518, - -0.073681, - -0.023528, - -0.018956, - 0.018421, - -0.017993, - -0.071232, - -0.051907, - -0.07821, - 0.028879, - 0.086863, - 0.022349, - 0.068285, - 0.047559, - -0.024018, - -0.043687, - -0.061476, - 0.042179, - 0.023876, - 0.0528, - 0.032461, - 0.018612, - 0.063016, - -0.0048799, - -0.043364, - -0.10273, - 0.032348, - 0.044065, - 0.038544, - -0.010233, - 0.053872, - 0.093862, - -0.03463, - 0.046654, - -0.00063448, - -0.06992, - 0.0093059, - -0.047064, - -0.0087452, - -0.015601, - 0.073827, - -0.026215, - 0.012479, - -0.021772, - -0.032753, - -0.01911, - -0.034484, - 0.050549, - -0.081855, - -0.00043101, - -0.00085207, - -0.0010087, - -0.063354, - -0.043701, - -0.099653, - -0.0015887, - 0.18602, - -0.031846, - 0.027432, - 0.10499, - -0.0030781, - -0.017487, - -0.039515, - -0.015865, - -0.030603, - -0.050306, - 0.076121, - -0.13525, - -0.059479, - 0.052166, - 0.11434, - -0.018112, - -0.025707, - 0.05822, - 0.033132, - -0.10665, - 0.061478, - 0.082892, - 0.0056539, - -0.030245, - -0.069049, - -0.01235, - -0.037587, - -0.015846, - -0.04125, - -0.065649, - -0.071506, - 0.01788, - 0.099479, - 0.075542, - -0.042417, - 0.0053553, - 0.075397, - 0.022069, - 0.019823, - 0.048614, - -0.032486, - 0.063335, - 0.055167, - -0.11425, - 0.046535, - 0.0072267, - -0.040219, - 0.027908, - 0.013078, - -0.0041538, - 0.074366, - 0.028881, - -0.011172, - -0.062964, - -0.030247, - -0.007136, - -0.036503, - -0.0094534, - 0.020499, - 0.018546, - 0.021012, - -0.05184, - 0.16454, - -0.021191, - 0.0040177, - -0.010961, - -0.040328, - 0.074528, - -0.010727, - 0.057539, - 0.026341, - 0.016327, - -0.033632, - 0.011038, - -0.034432, - 0.093279, - -0.040871, - -0.042122, - 0.044579, - -0.057374, - 0.005398, - 0.045831, - 0.027936, - -0.0084102, - -0.034875, - 0.042283, - 0.0074721, - -0.051724, - -0.0090179, - 0.094772, - -0.008727, - -0.081957, - -0.051951, - 0.032447, - 0.011525, - -0.022946, - 0.0080074, - 0.00033441, - 0.054147, - -0.029108, - -0.010035, - 0.048785, - -0.0058171, - 0.042634, - -0.0022608, - -0.053456, - 0.014622, - 0.028795, - -0.015309, - -0.095765, - -0.0010322, - -0.067448, - 0.0136, - 0.064328, - -0.059107, - 0.049038, - -0.01458, - -0.084688, - 0.096321, - -0.0095792, - 0.030793, - -0.070391, - -0.031134, - -0.015362, - -0.068462, - 0.13961, - -0.0091277, - -0.0503, - 0.019926, - 0.013042, - -0.076077, - -0.040778, - 0.043189, - 0.03136, - 0.046663, - -0.032766, - 0.022759, - 0.0043967, - -0.15704, - 0.049146, - 0.1006, - -0.0071194, - 0.057772, - 0.030751, - -0.03133, - -0.012221, - 0.070663, - -0.08704, - 0.06754, - -0.0021673, - -0.029774, - 0.024209, - -0.0068654, - -0.021503, - -0.011791, - 0.028071, - -0.067064, - -0.0062221, - -0.01424, - -0.046008, - -0.015406, - 0.078427, - 0.067243, - -0.005407, - -0.0020763, - 0.040966, - -0.052258, - 0.053765, - -0.018105, - 0.0081944, - -0.15814, - -0.00429, - 0.0015365, - 0.018282, - -0.0028215, - -0.05671, - 0.068013, - -0.019322, - 0.016252, - -0.033423, - -0.0038702, - -0.04336, - -0.023969, - 0.022599, - -0.074971, - -0.029702, - 0.037945, - -0.056489, - 0.0075382, - -0.0057321, - 0.033754, - -0.073846, - 0.00062051, - 0.047265, - 0.0023617, - -0.017301, - 0.066855, - 0.012553, - 0.026584, - -0.0026843, - -0.044881, - -0.033709, - 0.019504, - -0.039308, - -0.04987, - -0.021808, - 0.0040876, - -0.00020393, - 0.056743, - 0.092143, - -0.12955, - -0.011265, - -0.022498, - -0.021651, - -0.014176, - -0.044935, - -0.071807, - -0.034589, - -0.013181, - 0.024536, - 0.060429, - -0.04517, - -0.044267, - 0.0077531, - -0.033637, - 0.039584, - 0.038305, - 0.089365, - -0.054542, - 0.053636, - -0.039377, - -0.01161, - -0.035542, - -0.059383, - 0.040729, - 0.026452, - 0.069554, - -0.047386 - ], - "folktales": [ - -0.033017, - -0.05059, - 0.032884, - -0.023398, - -0.015461, - -0.026333, - -0.031407, - -0.053124, - 0.015295, - 0.020998, - 0.091824, - -0.090126, - -0.0022761, - -0.064236, - 0.058927, - -0.041269, - 0.084126, - -0.093916, - 0.025785, - 0.092575, - -0.035642, - 0.0061331, - -0.040199, - 0.063051, - 0.031651, - 0.026104, - -0.056209, - 0.011122, - 0.10461, - -0.050488, - -0.02121, - -0.094511, - 0.025831, - -0.061162, - 0.028393, - -0.011792, - 0.0072966, - 0.029417, - 0.041383, - 0.0027489, - 0.092611, - -0.075608, - 0.064669, - 0.044697, - 0.095802, - -0.022931, - 0.0077546, - 0.0098651, - -0.0032238, - -0.062497, - -0.03348, - 0.083581, - -0.024241, - -0.069039, - -0.05573, - 0.068653, - 0.0087518, - -0.0079334, - -0.030102, - -0.011541, - -0.062178, - -0.12911, - 0.075219, - 0.018132, - 0.055673, - 0.033471, - -0.023808, - 0.085979, - -0.01562, - 0.049701, - -0.022174, - -0.063351, - 0.036481, - -0.0028424, - -0.040518, - 0.052984, - 0.029882, - -0.051714, - 0.047062, - -0.097668, - 0.0088601, - 0.044733, - 0.0049134, - -0.028282, - 0.031087, - -0.049649, - 0.020844, - -0.0015639, - -0.019943, - 0.056903, - -0.08667, - 0.037116, - -0.041571, - 0.016439, - 0.0061844, - 0.091524, - 0.060552, - 0.083489, - -0.0023683, - -0.0053257, - 0.0084162, - -0.035717, - -0.06146, - 0.0045012, - -0.016525, - -0.0080956, - -0.014706, - 0.026963, - -0.024408, - 0.019225, - 0.021544, - 0.074584, - 0.028872, - -0.065994, - -0.045114, - 0.031439, - -0.031633, - 0.045092, - -0.037829, - -0.023933, - -0.033957, - 0.0047677, - -0.050428, - -0.13693, - 0.10476, - 0.082127, - -0.0026209, - 0.081606, - -0.010007, - 0.12151, - -0.026953, - 0.11283, - -0.056021, - 0.025492, - 0.024908, - 0.022714, - 0.040133, - 0.014771, - 0.0094408, - 0.0096313, - 0.0072342, - -0.016717, - 0.045301, - 0.026599, - 0.0018834, - -0.1458, - -0.022082, - 0.06397, - -0.063929, - -0.071727, - 0.032195, - 0.04327, - -0.02193, - 0.017111, - 0.016317, - -0.04125, - -0.036439, - 0.005154, - 0.03881, - 0.033246, - 0.042856, - 0.087622, - -0.004403, - 0.0015646, - 0.036385, - -0.017274, - 0.05627, - 0.012608, - 0.0016145, - -0.019374, - -0.011329, - -0.065636, - 0.013818, - -0.03184, - -0.03878, - 0.042118, - 0.03751, - 0.020315, - -0.011387, - -0.021849, - 0.026611, - 0.048427, - 0.013227, - -0.017261, - -0.073079, - -0.03175, - 0.0087947, - 0.11272, - 0.023527, - -0.0037085, - 0.0047765, - 0.10051, - -0.11591, - -0.018353, - 0.0024247, - 0.12128, - 0.030469, - -0.0267, - 0.048404, - 0.0020904, - -0.1208, - -0.028434, - -0.024777, - -0.060114, - 0.047448, - 0.10833, - -0.0031267, - 0.0082296, - 0.027065, - -0.066017, - 0.080058, - -0.015127, - 0.0034604, - -0.017666, - 0.039878, - 0.0088148, - -0.026606, - -0.037464, - -0.079897, - 0.028571, - 0.054124, - 0.0045361, - 0.061921, - 0.075009, - 0.035621, - -0.01652, - 0.091836, - 0.044378, - -0.02331, - 0.059132, - 0.058817, - 0.017522, - -0.055658, - 0.07345, - 0.0089073, - 0.101, - 0.023739, - 0.027198, - 0.086963, - -0.048508, - -0.0018978, - 0.043753, - -0.025832, - -0.067619, - 0.033938, - 0.002088, - -0.0052268, - -0.016692, - 0.0036828, - 0.036862, - 0.060179, - -0.035648, - -0.019907, - 0.044261, - -0.047316, - 0.077617, - -0.050924, - 0.013169, - -0.0048451, - 0.00065083, - 0.050944, - -0.017811, - -0.0085399, - -0.054657, - -0.027043, - -0.039512, - 0.02729, - 0.0072978, - 0.02, - -0.022723, - 0.0025869, - 0.047911, - -0.016809, - -0.027329, - 0.0053756, - -0.0077827, - -0.0027561, - -0.074221, - -0.068352, - 0.0083747, - 0.047399, - -0.085109, - -0.0099551, - -0.056239, - -0.036519, - 0.053161, - 0.052862, - 0.011237, - -0.058388, - -0.038583, - 0.013581, - 0.068385, - 0.023733, - -0.090734, - 0.022029, - 0.025347, - 0.13013, - 0.016878, - 0.040592, - -0.032753 - ], - "academy": [ - -0.030094, - -0.089494, - 0.083679, - -0.034173, - -0.0026483, - -0.071233, - -0.034494, - -0.11559, - 0.039109, - -0.0089694, - -0.02019, - -0.1247, - 0.074012, - 0.017056, - 0.028985, - 0.031884, - 0.15529, - 0.0002104, - 0.03318, - 0.087024, - 0.0063248, - 0.02744, - 0.021127, - 0.062353, - -0.0098425, - 0.03163, - 0.029922, - -0.0061974, - -0.029342, - 0.0084929, - -0.014709, - 0.031358, - 0.00047941, - -0.043476, - -0.014639, - 0.058866, - 0.046357, - 0.029946, - -0.034763, - -0.0030103, - -0.047258, - -0.1534, - -0.00091916, - 0.055199, - 0.076918, - 0.048903, - 0.044602, - 0.040572, - -0.055785, - 0.03568, - 0.020573, - 0.027253, - 0.012837, - 0.013358, - -0.062812, - -0.04289, - -0.026192, - 0.025785, - -0.045744, - 0.042776, - 0.12511, - 0.0049177, - 0.11531, - 0.083268, - 0.067948, - -0.015633, - -0.044268, - -0.071271, - 0.083531, - 0.013793, - 0.055235, - -0.072144, - 0.021161, - -0.00247, - 0.071944, - 0.032157, - -0.010228, - 0.016797, - 0.028829, - -0.041694, - 0.0056132, - 0.031657, - -0.015289, - 0.038584, - -0.07161, - 0.024758, - -0.075982, - -0.064909, - 0.00054929, - 0.01502, - 0.0074486, - 0.049841, - -0.093597, - 0.0065379, - 0.094518, - 0.10534, - 0.015696, - -0.061584, - 0.036294, - 0.0084899, - 0.068943, - 0.020095, - 0.12187, - 0.025838, - 0.021987, - -0.078558, - 0.064339, - 0.0020852, - -0.058112, - 0.032365, - -0.032923, - 0.11694, - 0.053582, - 0.056011, - 0.034527, - -0.028844, - -0.020682, - -0.01207, - -0.0057275, - 0.035855, - -0.045013, - -0.083799, - -0.052275, - 0.033303, - 0.010683, - -0.018381, - -0.032233, - -0.061275, - -0.00079122, - 0.11175, - -0.063307, - 0.031026, - 0.068754, - 0.0011525, - -0.0069706, - 0.019771, - 0.032777, - 0.032345, - 0.011927, - 0.0024793, - -0.0388, - -0.085899, - -0.090121, - -0.012622, - -0.03492, - 0.016468, - -0.056714, - 0.033872, - -0.035673, - 0.0094137, - 0.049313, - 0.044366, - -0.015265, - -0.010906, - -0.018892, - 0.01926, - 0.036471, - 0.10497, - 0.017474, - 0.084204, - 0.012765, - -0.017227, - -0.025383, - 0.014787, - 0.013245, - 0.02702, - -0.012442, - 0.047669, - -0.039818, - 0.002941, - 0.084065, - 0.062698, - -0.058611, - -0.032029, - 0.034478, - 0.047096, - -0.020627, - 0.036181, - -0.075134, - -0.11202, - -0.034006, - 0.04648, - 0.023366, - 0.036727, - 0.046651, - 0.028578, - 0.048403, - 0.1163, - -0.022533, - 0.095112, - -0.068666, - 0.075054, - -0.0016999, - -0.037069, - -0.022287, - -0.041321, - 0.0025646, - 0.11581, - 0.076968, - 0.0018474, - -0.16285, - 0.052678, - 0.024414, - 0.082162, - 0.012216, - -0.028877, - 0.021274, - 0.0089366, - 0.0036384, - -0.061014, - 0.11386, - -0.025844, - -0.0080915, - 0.052562, - -0.11375, - 0.031331, - -0.010276, - 0.023255, - 0.064027, - -0.041396, - 0.054475, - -0.059262, - -0.054741, - 0.071592, - -0.024355, - -0.059793, - 0.0057739, - 0.04573, - 0.010894, - -0.010011, - 0.022805, - -0.068252, - -0.020922, - 0.032287, - -0.00047108, - 0.019699, - -0.049439, - 0.0008926, - -0.016125, - 0.034454, - 0.09544, - -0.039322, - 0.084094, - -0.017257, - 0.019694, - 0.06842, - -0.058871, - -0.022497, - -0.031518, - 0.032125, - 0.0097762, - 0.015657, - -0.040002, - -0.03232, - -0.00026923, - 0.028674, - 0.017283, - 0.060298, - 0.035982, - -0.0030643, - 0.013957, - -0.049702, - 0.046978, - -0.034634, - 0.049692, - 0.038479, - -0.032279, - 0.040586, - 0.05336, - 0.036274, - 0.041738, - 0.093144, - -0.10954, - 0.019705, - 0.044608, - -0.0050511, - 0.011174, - 0.019704, - 0.040421, - -0.011151, - 0.062175, - -0.0158, - 0.022699, - -0.084762, - 0.0035729, - -0.065489, - 0.018261, - -0.034666, - -0.0061224, - 0.017579, - -0.064046, - 0.0049405, - 0.035889, - 0.033283, - -0.0385, - 0.057974, - -0.0088532, - 0.060073, - 0.026473, - -0.031239 - ], - "societies": [ - 0.043894, - -0.077146, - 0.053437, - -0.054845, - -0.060281, - 0.00043038, - -0.0039244, - -0.066302, - 0.046584, - 0.021663, - 0.050183, - -0.071347, - 0.045969, - -0.033453, - 0.034113, - 0.043205, - 0.12287, - -0.036247, - 0.044196, - 0.021989, - -0.06322, - 0.060663, - -0.024872, - 0.096113, - -0.026465, - -0.0031897, - -0.00042555, - 0.003792, - 0.025079, - 0.0031794, - 0.0062217, - -0.054708, - 0.034175, - -0.010665, - 0.021289, - 0.063041, - 0.026702, - 0.015257, - -0.037703, - 0.04911, - -0.045388, - -0.1035, - -0.002398, - 0.0077754, - 0.029347, - -0.043529, - -0.016372, - -0.0012981, - -0.020664, - -0.049459, - -0.031374, - 0.0572, - 0.030089, - -0.043797, - -0.052409, - 0.093579, - 0.046389, - 0.044416, - -0.0068409, - -0.017388, - 0.076619, - -0.0017243, - 0.12106, - -0.010204, - 0.10061, - -0.039753, - 0.0035836, - 0.0028867, - 0.054146, - -0.046386, - 0.009857, - -0.039301, - 0.020588, - -0.061304, - 0.0057057, - 0.0081611, - -0.0094577, - -0.0045209, - -0.032677, - 0.062657, - -0.022034, - 0.033392, - -0.054033, - 0.063391, - -0.020109, - -0.033174, - -0.012809, - -0.020443, - -0.016414, - 0.024292, - -0.039653, - 0.06185, - -0.053774, - 0.04061, - -0.022144, - 0.091517, - -0.0034182, - -0.012512, - 0.070173, - 0.0028647, - 0.0059638, - -0.0063344, - -0.038604, - -0.079724, - 0.052266, - -0.065372, - 0.032107, - 0.018807, - 0.041938, - -0.02852, - -0.034271, - 0.077713, - 0.05178, - 0.036225, - -0.03135, - 0.015343, - 0.047906, - -0.0026479, - -0.028775, - 0.04111, - -0.00055056, - -0.031942, - -0.012946, - -0.018493, - 0.085593, - 0.024506, - -0.040223, - -0.023167, - 0.035135, - 0.11012, - -0.026742, - 0.1468, - 0.036209, - 0.047399, - 0.018497, - 0.047859, - -0.033363, - 0.014482, - 0.00018159, - 0.037138, - 0.010469, - -0.023593, - -0.0094391, - 0.011791, - 0.064106, - -0.025923, - 0.0065725, - -0.022421, - 0.028962, - 0.0071796, - 0.065576, - 0.044925, - -0.0023375, - 0.010493, - 0.030779, - 0.017009, - -0.00054405, - 0.041878, - 0.063104, - -0.018251, - 0.035997, - -0.046796, - 0.036407, - 0.044824, - -0.025044, - 0.064189, - -0.0094724, - 0.071646, - 0.020911, - -0.04149, - 0.021136, - 0.013735, - -0.027414, - 0.022444, - -0.081841, - 0.058842, - 0.034607, - 0.059475, - -0.024557, - -0.065603, - 0.022553, - 0.10613, - 0.014155, - 0.024475, - -0.035579, - -0.030815, - -0.00011436, - 0.12026, - -0.012162, - -0.0059073, - -0.024379, - 0.06608, - -0.081651, - -0.058856, - 0.033386, - -0.018965, - -0.037844, - -0.025827, - -0.029031, - 0.039654, - -0.13953, - -0.00483, - 0.036198, - -0.010333, - 0.059803, - -0.0024544, - -0.0054644, - -0.013406, - -0.0033398, - -0.014553, - 0.041167, - 0.010942, - 0.067571, - -0.0073037, - -0.030028, - 0.018736, - 0.0082574, - 0.031277, - -0.019157, - -0.0036073, - 0.024576, - -0.0031999, - -0.068615, - 0.080333, - -0.036757, - -0.010288, - -0.035201, - 0.038598, - 0.01426, - 0.023484, - 0.044836, - -0.0029557, - -0.059031, - 0.0064942, - 0.02083, - 0.014347, - 0.047256, - 0.052101, - 0.011661, - 0.047735, - -0.033681, - 0.015169, - -0.010435, - 0.034248, - 0.065276, - 0.015738, - -0.064627, - -0.021982, - -0.019715, - -0.043835, - 0.018154, - 0.029809, - -0.025014, - -0.017464, - -0.049361, - 0.063843, - -0.031703, - 0.0095634, - 0.036321, - 0.0027498, - -0.023451, - 0.018752, - -0.019196, - -0.07115, - 0.026448, - -0.0032682, - 0.052056, - 0.017178, - 0.0061626, - 0.084214, - 0.00060586, - 0.05957, - -0.079182, - -0.019636, - 0.03069, - 0.018846, - 0.0046481, - -0.023381, - -0.032364, - -0.025025, - 0.0087628, - 0.03553, - -0.030788, - -0.042547, - -0.028864, - 0.025553, - -0.028389, - -0.081884, - -0.027798, - 0.01884, - 0.0027983, - 0.040013, - -0.035192, - -0.082, - -0.054148, - 0.045343, - 0.025676, - 0.045945, - -0.063215, - -0.025164 - ], - "condominium": [ - 0.077159, - 0.00067486, - 0.0048817, - 0.055636, - 0.0072979, - 0.032674, - 0.029274, - -0.097317, - 0.043226, - 0.046939, - 0.0061701, - -0.06511, - 0.055942, - -0.0067313, - 0.00577, - 0.0046776, - 0.10306, - -0.016323, - 0.014558, - -0.020289, - -0.01225, - -0.067039, - -0.021284, - 0.037987, - 0.0011514, - -0.052747, - -0.0050177, - 0.040371, - 0.029542, - -0.015625, - -0.037348, - 0.01214, - -0.036645, - -0.018528, - 0.050809, - 0.038714, - 0.00075213, - 0.010453, - -0.006127, - 0.01478, - -0.006681, - -0.08947, - 0.021169, - 0.033898, - 0.0067491, - -0.0022668, - -0.036115, - 0.0011065, - -0.028651, - 0.039165, - 0.030652, - -0.080851, - -0.085295, - 0.039458, - -0.051717, - -0.0033884, - 0.0018588, - -0.05094, - -0.052499, - -0.0189, - 0.024422, - 0.041079, - 0.055666, - -0.032069, - 0.0022613, - -0.032969, - 0.013034, - -0.0075887, - -0.038403, - -0.072909, - 0.035443, - 0.031663, - 0.01173, - -0.014405, - 0.070144, - -0.042467, - -0.040151, - -0.020161, - -0.023678, - 0.048616, - -0.013021, - -0.015249, - 0.011496, - -0.043727, - -0.09291, - -0.010127, - 0.0076524, - -0.039692, - 0.024906, - -0.0080926, - -0.00098693, - 0.0043191, - -0.057832, - -0.015766, - -0.0058366, - 0.043887, - -0.0016492, - -0.020375, - -0.0095223, - -0.047585, - -0.016329, - 0.11152, - -0.028755, - -0.028182, - 0.029601, - -0.078256, - 0.015691, - 0.023288, - 0.0019769, - 0.01124, - -0.037075, - 0.091237, - 0.047472, - 0.014069, - 0.051613, - -0.018318, - 0.011126, - -0.043768, - -0.027865, - 0.099853, - 0.024921, - 0.050573, - 0.075988, - 0.012782, - 0.032044, - 0.015029, - 0.09325, - -0.038561, - -0.025215, - 0.052201, - 0.016336, - 0.0021056, - 0.0802, - -0.024038, - -0.033041, - 0.020745, - -0.003348, - 0.042782, - -0.025603, - -0.041196, - 0.069724, - 0.027268, - 0.023431, - 0.081009, - 0.00042886, - -0.07821, - 0.052647, - -0.01632, - 0.021426, - -0.045265, - -0.0082314, - 0.065257, - 0.029246, - 0.041871, - 0.0021671, - 0.029161, - 0.044725, - 0.00076922, - -0.0032991, - 0.023429, - 0.032623, - 0.0085892, - -0.038756, - -0.0085479, - -0.020703, - -0.04504, - -0.0032597, - -0.046347, - -0.0021004, - 0.059826, - 0.043442, - 0.014356, - -0.041135, - 0.055793, - -0.10973, - -0.005548, - -0.017959, - -0.016635, - -0.071407, - 0.034177, - 0.021605, - -0.037764, - 0.018033, - -0.010281, - -0.025746, - 0.025435, - -0.010977, - 0.04767, - 0.049012, - -0.028069, - 0.0035331, - 0.031585, - 0.073544, - 0.016217, - 0.039659, - -0.019481, - 0.067568, - 0.049804, - 0.017474, - 0.034729, - -0.13386, - 0.084532, - -0.0093622, - -0.097035, - 0.038763, - -0.050017, - 0.022085, - -0.03431, - -0.072741, - 0.0033632, - 0.11907, - -0.021456, - -0.038007, - -0.0045069, - 0.030151, - 0.0080985, - 0.0101, - 0.017545, - 0.063174, - -0.0002444, - 0.016197, - -0.0027142, - -0.045813, - 0.055142, - -0.023865, - 0.0023604, - -0.00056743, - 0.0073221, - 0.019881, - -0.054056, - -0.049192, - -0.049381, - 0.0023899, - 0.021948, - -0.0056, - 0.0011905, - -0.026427, - 0.03234, - 0.0039014, - 0.048197, - 0.046575, - -0.0093996, - 0.0086379, - -0.0070796, - -0.060106, - 0.034575, - -0.011326, - 0.044386, - -0.015123, - 0.028088, - -0.023827, - -0.023753, - -0.036144, - -0.01141, - -0.065936, - 0.031707, - 0.0076181, - -0.0023174, - 0.016405, - -0.020474, - 0.031554, - -0.01239, - -0.056879, - -0.013152, - 0.027946, - -0.067067, - -0.0093819, - -0.026521, - -0.076881, - 0.017499, - -0.099862, - 0.079785, - -0.070861, - -0.034728, - -0.038708, - -0.074227, - -0.032067, - 0.013596, - 0.068924, - -0.0085079, - 0.032735, - 0.0091956, - -0.049696, - 0.042851, - -0.032043, - 0.016252, - -0.074474, - -0.012693, - -0.041971, - -0.021874, - -0.025964, - -0.01319, - 0.03707, - -0.050386, - -0.032117, - -0.027587, - 0.0011342, - 0.049108, - -0.066048, - 0.022617 - ], - "powertrain": [ - 0.054529, - -0.021896, - -0.0068931, - 0.079002, - -0.00069276, - -0.044308, - -0.035171, - -0.079794, - 0.0020221, - -0.02343, - -0.02224, - 0.002255, - 0.030338, - 0.068549, - -0.011379, - 0.0053531, - 0.068617, - 0.037874, - 0.093434, - -0.0012822, - 0.030714, - -0.023819, - 0.026561, - 0.055937, - 0.084727, - 0.0040715, - 0.036006, - -0.046001, - -0.0098874, - 0.016377, - -0.003112, - -0.0028938, - 0.03442, - -0.040151, - 0.034421, - -0.0075263, - -0.010729, - 0.031122, - 0.025083, - 0.01665, - -0.033668, - -0.11872, - 0.068009, - -0.046946, - -0.029884, - -0.062517, - -0.049669, - -0.022468, - -0.015471, - -0.0091644, - -0.00010859, - 0.0079942, - -0.042359, - 0.03489, - 0.00026057, - -0.098206, - -0.044252, - -0.0066416, - -0.018155, - 0.077297, - 0.0021796, - 0.0026035, - 0.11985, - 0.06021, - 0.073715, - -0.022981, - -0.013611, - 0.012728, - 0.033951, - -0.014218, - 0.033242, - 0.019976, - 0.018095, - -0.038459, - -0.038165, - 0.066076, - -0.056836, - -0.041479, - -0.0057021, - -0.0060214, - 0.021006, - -0.018292, - 0.014338, - 0.055696, - 0.036131, - 0.0028061, - -0.043397, - -0.016633, - -0.0028829, - -0.0088833, - 0.028627, - 0.017766, - -0.091305, - -0.012303, - -0.054823, - 0.05377, - 0.087548, - -0.022052, - -0.052394, - -0.028281, - 0.049271, - 0.031, - 0.0078947, - 0.026773, - -0.0021058, - -0.084383, - -0.052042, - -0.05568, - -0.00025246, - 0.013785, - 0.068624, - 0.039687, - 0.068387, - 0.031875, - 0.037628, - -0.059802, - -0.052604, - 0.02427, - -0.0394, - 0.0068686, - 0.022177, - -0.020811, - 0.027907, - 0.021297, - 0.089498, - 0.054465, - -0.013702, - -0.0014582, - 0.088031, - 0.11041, - 0.025223, - -0.047129, - 0.043377, - -0.084267, - 0.016756, - 0.0018865, - 0.073887, - 0.026674, - -0.032823, - -0.022595, - -0.042231, - 0.002732, - 0.041733, - 0.059136, - -0.036043, - 0.027144, - 0.004661, - 0.0098391, - -0.0055027, - -0.0042707, - 0.02324, - 0.036558, - 0.046562, - -0.050189, - 0.071087, - 0.05439, - 0.005364, - 0.014439, - -0.028915, - -0.00095693, - 0.012506, - 0.039348, - -0.068842, - -0.020474, - 0.046014, - -0.045448, - -0.01261, - -0.020019, - 0.022798, - -0.0031794, - 0.071925, - -0.040075, - -0.072371, - 0.048715, - 0.03697, - 0.03136, - 0.027126, - 0.029666, - -0.076205, - -0.021949, - -0.0054696, - -0.023783, - -0.037977, - 0.03667, - 0.040357, - -0.034233, - -0.09092, - 0.086657, - -0.013318, - 0.012697, - 0.021837, - 0.0054677, - -0.013111, - -0.031663, - -0.010954, - 0.0075968, - -0.025201, - -0.026889, - -0.002861, - 0.017769, - -0.17143, - -0.016312, - -0.028362, - -0.054805, - -0.045036, - -0.024641, - -0.047297, - 0.062448, - 0.048039, - -0.031385, - 0.081403, - -0.00011591, - -0.0022418, - -0.029354, - 0.055767, - 0.038254, - -0.013999, - -0.034735, - -0.028735, - 0.014367, - -0.092915, - -0.0025082, - 0.018329, - 0.055836, - 0.066347, - -0.005808, - 0.027332, - 0.059762, - 0.035693, - -0.004413, - -0.024357, - -0.055165, - -0.076125, - -0.01341, - 0.063058, - -0.025559, - 0.010392, - -0.014265, - 0.0082445, - -0.012781, - 0.10169, - -0.0042348, - -0.075315, - -0.014495, - -0.024008, - -0.043912, - 0.040877, - -0.01621, - 0.086244, - 0.028559, - 0.0067992, - 0.05502, - -0.041924, - -0.0048274, - -0.049051, - -0.041275, - 0.081906, - 0.029309, - -0.0080251, - 0.0065073, - 0.045855, - 0.0079049, - -0.086374, - 0.009658, - -0.0079768, - -0.036735, - 0.014252, - 0.017899, - 0.0056503, - -0.028448, - -0.0030967, - 0.070615, - -0.11673, - -0.055101, - 0.051509, - -0.02611, - -0.03193, - 0.11485, - 0.0026532, - -0.0065717, - 0.082157, - 0.015582, - 0.0074961, - -0.016349, - -0.041368, - -0.034789, - -0.052187, - 0.049586, - 0.018694, - 0.086879, - 0.00032767, - -0.021238, - 0.013445, - -0.015974, - 0.0091071, - -0.018312, - 0.046761, - 0.010514, - -0.0056905, - -0.035793 - ], - "excursion": [ - -0.008315, - 0.016677, - 0.045132, - 0.067662, - -0.0014174, - -0.039354, - -0.045513, - -0.089912, - -0.014025, - -0.026319, - -0.032639, - -0.066767, - -0.016615, - 0.03282, - 0.010864, - -0.06517, - 0.065211, - 0.012471, - 0.0047517, - 0.00095824, - -0.037499, - -0.0032734, - -0.069974, - 0.024261, - 0.026634, - 0.076346, - -0.0087573, - 0.036282, - -0.060859, - -0.01603, - 0.031822, - -0.025865, - 0.032547, - -0.092345, - 0.017275, - 0.036185, - 0.020309, - 0.052239, - -0.01592, - -0.0037772, - 0.028832, - -0.11429, - -0.041624, - -0.013612, - 0.021804, - 0.058575, - 0.039879, - -0.038044, - -0.039228, - 0.0006203, - 0.01728, - 0.047514, - -0.055382, - -0.037531, - -0.075347, - -0.067394, - 0.013166, - -0.01408, - -0.012861, - 0.010008, - 0.017175, - 0.07062, - 0.098425, - 0.037703, - 0.053419, - 0.035291, - 0.0091998, - 0.00070761, - -0.019493, - 0.03077, - 0.0031176, - -0.0015622, - -0.053931, - 0.089041, - 0.063442, - -0.009466, - -0.012553, - -0.0024157, - -0.03643, - 0.020523, - -0.050835, - -0.010794, - -0.0023073, - 0.04373, - -0.066279, - -0.046119, - 0.077763, - -0.013134, - 0.0042648, - -0.055324, - 0.00069737, - 0.071669, - -0.06401, - -0.0082197, - -0.00077904, - 0.01904, - -0.0022579, - 0.023473, - -0.0072513, - -0.040391, - 0.038418, - 0.038742, - -0.012494, - -0.013809, - 0.021374, - -0.038316, - 0.013923, - -0.068224, - -0.036858, - 0.0089045, - 0.046486, - 0.033621, - 0.035362, - 0.059482, - 0.015871, - 0.021644, - 0.02894, - 0.040822, - -0.04073, - 0.0099109, - 0.041111, - 0.034768, - -0.016939, - 0.04355, - 0.077397, - -0.051273, - 0.02777, - -0.041592, - -0.008465, - 0.065271, - 0.060711, - 0.0065689, - -0.067518, - 0.0013831, - -0.035985, - -0.010906, - 0.049561, - 0.027806, - -0.0164, - 0.012983, - -0.014444, - -0.016142, - -0.027909, - 0.012677, - 0.030235, - 0.021888, - -0.005224, - 0.013806, - -0.047029, - -0.021817, - 0.039212, - 0.050922, - -0.069813, - -0.061418, - 0.030426, - 0.078542, - -0.073489, - 0.073814, - -0.03625, - -0.016652, - 0.055991, - 0.048391, - -0.014682, - -0.006133, - -0.038977, - 0.10325, - 0.064146, - -0.048269, - 0.044523, - 0.054356, - 0.050128, - -0.00093778, - -0.033164, - -0.030575, - 0.0017126, - 0.044493, - -0.0056333, - -0.030268, - -0.052809, - 0.068038, - -0.04396, - -0.0044107, - -0.0079165, - -0.037611, - 0.035018, - -0.01187, - -0.03215, - 0.091173, - 0.026709, - -0.012925, - 0.038504, - 0.021712, - 0.016048, - -0.027414, - -0.017505, - 0.012438, - 0.020083, - 0.0094623, - 0.010731, - 0.014491, - -0.11912, - 0.095089, - 0.013297, - -0.060225, - 0.0835, - 0.010708, - -0.0931, - 0.0352, - 0.021872, - -0.017241, - 0.08878, - -0.048857, - 0.025516, - -0.046784, - 0.037526, - 0.03864, - -0.052397, - -0.01643, - 0.012699, - -0.046679, - -0.042627, - -0.0090334, - -0.054779, - 0.062914, - -0.0088622, - 0.015758, - 0.02828, - 0.059942, - -0.018544, - 0.057203, - -0.020482, - -0.064772, - 0.019528, - 0.013446, - 0.039204, - 0.013181, - 0.061506, - 0.02247, - -0.019441, - 0.037672, - 0.035519, - 0.034613, - -0.010576, - -0.092805, - -0.020341, - 0.042863, - 0.040774, - -0.027292, - -0.042665, - 0.042847, - 0.023092, - 0.00090799, - -0.013042, - 0.0043279, - 0.0014555, - -0.06857, - -0.03891, - 0.034625, - 0.046777, - 0.045711, - 0.017118, - 0.0022574, - -0.027151, - -0.042845, - -0.040946, - 0.0027377, - -0.049567, - -0.026292, - 0.011674, - 0.05746, - 0.016525, - 0.059817, - -0.075053, - -0.02326, - -0.00072128, - -0.013068, - 0.031052, - 0.056, - 0.0027513, - -0.0024899, - 0.086406, - -0.011071, - 0.040889, - -0.035695, - -0.010385, - -0.051585, - 0.0011177, - -0.0082634, - 0.015354, - 0.03021, - 0.0075106, - 0.084678, - -0.017123, - -0.057148, - -0.0032265, - -0.00035224, - 0.025587, - -0.0132, - -0.041016, - -0.014877 - ], - "environmental": [ - -0.009382, - -0.039751, - -0.0062195, - 0.038815, - 0.0028809, - -0.019956, - 0.00546, - -0.050845, - 0.080833, - 0.0066442, - 0.0085716, - -0.02124, - -0.030559, - 0.023602, - 0.041963, - -0.0051464, - 0.047791, - 0.057689, - 0.0359, - 0.017796, - -0.012048, - -0.007079, - 0.042441, - 0.087155, - -0.016218, - -0.03752, - -0.017251, - 0.059205, - 0.032416, - 0.011787, - 0.0096133, - -0.0074778, - -0.033148, - -0.076899, - 0.050354, - 0.055352, - -0.0077603, - -0.010759, - 0.0094653, - -0.024758, - 0.010934, - -0.074918, - -0.027608, - 0.010207, - 0.013283, - -0.0045644, - -0.042709, - 0.023955, - -0.025274, - -0.010932, - -0.021765, - 0.03705, - 0.026953, - 0.0067379, - 0.03591, - 0.011447, - 0.014539, - 0.010387, - 0.0047563, - 0.0119, - 0.016791, - -0.0093643, - 0.069621, - -0.012038, - 0.074145, - 0.0085738, - 0.038458, - -0.016914, - 0.036191, - 0.046166, - 0.038593, - -0.0118, - 0.014576, - -0.0014992, - 0.0022484, - -0.010294, - -0.021051, - -0.05074, - 0.0080705, - -0.022481, - -0.017595, - 0.053827, - -0.011145, - 0.0028986, - -0.0039417, - 0.018657, - -0.017132, - 0.014477, - 0.0050223, - 0.019206, - -0.00073193, - 0.016891, - -0.068326, - 0.031314, - -0.014136, - 0.011191, - 0.0056934, - 0.0012321, - 0.020365, - 0.0051405, - -0.016645, - -0.045213, - 0.033171, - -0.0058508, - 0.03049, - -0.026693, - 0.010671, - -0.020006, - 0.035705, - -0.020285, - 0.010222, - 0.078957, - 0.02446, - -0.028019, - 0.024337, - 0.0055596, - -0.025843, - 0.0020884, - -0.017052, - -0.011275, - -0.019828, - 0.0013744, - -0.014203, - -0.0083627, - 0.083962, - -0.011612, - -0.012986, - -0.013447, - 0.026489, - 0.064363, - 0.022704, - -0.018334, - 0.027519, - -0.0073991, - -0.017991, - 0.035661, - 0.055746, - 0.018259, - -0.025031, - 0.036382, - -0.0187, - -0.020496, - 0.018928, - 0.0097318, - -0.046572, - -0.011793, - 0.016559, - -0.0031464, - -0.0026947, - -0.013169, - 0.032155, - 0.12578, - 0.0025897, - -0.035147, - 0.03571, - 0.021772, - 0.014102, - -0.00025698, - 0.047845, - -0.023966, - 0.026833, - -0.027953, - -0.085177, - 0.0033673, - 0.013943, - 0.029622, - 0.0066912, - -0.0127, - 0.0074831, - 0.047714, - 0.021602, - -0.0041175, - 0.017089, - -0.032553, - -0.020452, - 0.05148, - -0.0062258, - 0.0045586, - -0.04229, - 0.020543, - -0.0083125, - 0.034764, - 0.025133, - -0.0023911, - -0.002351, - -0.026708, - -0.015671, - 0.091088, - -0.0028768, - -0.0081328, - -0.021265, - 0.011726, - 0.045716, - 0.0021769, - 0.0018855, - -0.0047577, - 0.037942, - 0.02453, - 0.0040508, - -0.028534, - -0.098177, - -0.036936, - 0.025319, - -0.039757, - 0.010585, - 0.0049943, - -0.016923, - -0.0020524, - 0.013407, - 0.02061, - 0.098735, - 0.016585, - -0.0035504, - -0.0095747, - 0.023595, - 0.018796, - 0.019092, - -0.024617, - -0.043027, - -0.053817, - -0.012606, - 0.039209, - -0.046821, - 0.032244, - -0.0056647, - 0.0374, - -0.01025, - 0.046904, - 0.013126, - -0.0068665, - -0.01362, - -0.025068, - -0.035025, - -0.016773, - -0.015006, - 0.018889, - 0.022765, - 0.0015262, - 0.017518, - -0.007886, - -0.0055962, - 0.030276, - 0.0017199, - 0.016757, - -0.080181, - 0.03936, - -0.0012969, - -0.0056662, - 0.010136, - 0.010786, - 0.049004, - -0.020496, - -0.020865, - -0.030232, - -0.013391, - 0.017137, - 0.030636, - 0.032673, - 0.02235, - -0.017049, - -0.0034534, - -0.005142, - -0.03736, - -0.0094769, - 0.0104, - -0.025579, - 0.016792, - 0.028878, - 0.028024, - 0.003997, - -0.019799, - 0.039098, - -0.062914, - -0.01953, - 0.036858, - -0.054416, - -0.015674, - 0.063159, - -0.023408, - -0.012022, - 0.13557, - 0.033679, - 0.010059, - 0.012929, - 0.0096225, - 0.0061564, - -0.035711, - 0.018917, - 0.035511, - -0.0018155, - -0.0022975, - 0.060393, - -0.012885, - 0.016399, - 0.005952, - -0.0077197, - -0.025041, - 0.036675, - -0.0099534, - -0.0070832 - ], - "religiosity": [ - -0.010762, - -0.01973, - 0.06817, - -0.070497, - -0.04209, - -0.022296, - -0.063014, - -0.054277, - 0.03088, - 0.016403, - 0.029605, - -0.033178, - 0.017296, - -0.017773, - -0.017582, - 0.012744, - 0.037062, - 0.011179, - 0.0046398, - 0.033618, - -0.039306, - 0.0037492, - -0.0033859, - 0.050298, - -0.020091, - 0.029324, - 0.01641, - 0.064876, - -0.021518, - 0.030827, - -0.038067, - -0.00027478, - 0.0084605, - -0.015542, - -0.014932, - 0.053079, - 0.039188, - -0.0059918, - 0.02941, - 0.032454, - -0.023091, - -0.059836, - -0.043968, - 0.0319, - -0.00085532, - -0.026525, - -0.087994, - -0.014666, - 0.021216, - -0.031343, - 0.0095263, - -0.022588, - 0.025046, - 0.023777, - -0.0074899, - 0.017075, - 0.019388, - -0.0041514, - 0.0055009, - -0.0025955, - -0.011232, - -0.041582, - 0.025601, - 0.0069369, - -0.0068633, - -0.036515, - 0.0048489, - 0.0039657, - 0.059734, - -0.029139, - 0.035254, - 0.012436, - 0.014189, - -0.043903, - -0.046116, - 0.030407, - -0.0026857, - 0.009655, - 0.035342, - 0.065229, - -0.03144, - 0.011566, - -0.050907, - 0.075808, - 0.023692, - -0.045079, - 0.024991, - 0.0044694, - -0.054952, - 0.029416, - -0.026118, - 0.047177, - -0.055082, - 0.0052741, - 0.032449, - 0.036987, - -0.026058, - -0.048198, - 0.0019159, - 0.020975, - 0.032942, - 0.0040001, - 0.018509, - -0.06911, - -0.030988, - -0.021287, - 0.051151, - 0.0051284, - -0.00020081, - 0.041676, - 0.0035407, - 0.039863, - 0.019022, - -0.059127, - -0.023428, - 0.012428, - 0.071715, - 0.027796, - -0.044057, - -0.0030093, - 0.026604, - -0.0082366, - -0.0025321, - -0.08547, - 0.037015, - 0.0091594, - -0.037782, - -0.016892, - 0.022541, - 0.10079, - 0.017153, - -0.053203, - 0.018263, - 0.018329, - -0.023704, - 0.015697, - 0.037905, - 0.033549, - 0.0077665, - -0.037232, - 0.017557, - -0.057761, - -0.018101, - 0.048754, - 0.0030804, - -0.033396, - -0.019039, - 0.05778, - -0.010443, - 0.037398, - 0.046671, - 0.028075, - -0.012234, - -0.020764, - -0.026927, - 0.068567, - -0.049683, - 0.0030216, - 0.037793, - 0.0021027, - 0.030407, - 0.0055865, - -0.096522, - -0.030584, - -0.022811, - 0.011348, - 0.021871, - 0.061454, - 0.030442, - -0.046744, - -0.022957, - -0.049724, - -0.025252, - 0.025806, - -0.001533, - 0.042576, - 0.027376, - -0.020779, - -0.00299, - -0.07691, - 0.0024266, - -0.029895, - 0.0069652, - -0.046373, - 0.040942, - -0.11482, - 0.030867, - 0.084633, - -0.0010679, - -0.053772, - 0.096147, - 0.058312, - -0.0076998, - 0.021145, - 0.060315, - 0.0065379, - -0.034517, - 0.045943, - -0.034873, - -0.054455, - -0.1267, - -0.060861, - -0.021439, - -0.032333, - 0.0095571, - 0.056944, - 0.062216, - -0.041815, - 0.024178, - 0.0040299, - 0.072258, - 0.020291, - -0.0073694, - 0.014377, - 0.067898, - 0.044861, - -0.047504, - -0.0098375, - -0.019638, - -0.033185, - -0.10907, - -0.000072975, - -0.066718, - 0.051799, - 0.043166, - -0.053242, - 0.043694, - 0.040053, - -0.033394, - -0.08135, - 0.039652, - 0.0084756, - -0.080556, - -0.016983, - 0.024798, - 0.065296, - 0.032141, - -0.011621, - 0.042456, - -0.049267, - 0.025459, - -0.082216, - -0.0061561, - -0.012701, - -0.00043913, - 0.0056603, - -0.010574, - -0.092629, - -0.050785, - -0.068143, - 0.043562, - -0.059488, - -0.1228, - -0.084261, - 0.054024, - -0.050716, - -0.020148, - 0.0062302, - 0.040941, - -0.057778, - 0.013407, - -0.026686, - 0.0088239, - -0.0097022, - 0.0098871, - -0.028278, - -0.012838, - 0.009494, - 0.0074887, - 0.05515, - 0.0016209, - 0.045926, - -0.069821, - -0.02033, - 0.041566, - -0.041163, - 0.035686, - -0.01975, - -0.080283, - -0.019856, - 0.087082, - -0.030809, - 0.02879, - 0.03507, - -0.014349, - 0.017399, - 0.0095422, - 0.049161, - -0.081324, - -0.007398, - 0.043278, - 0.0099985, - 0.041349, - 0.044997, - -0.0095105, - 0.052212, - 0.051659, - 0.0012271, - 0.018364, - 0.032885 - ], - "Encryption": [ - 0.013313, - 0.061611, - -0.085184, - 0.021702, - -0.016814, - 0.014903, - 0.029871, - -0.032638, - -0.02926, - -0.024524, - 0.012253, - -0.048187, - -0.096887, - 0.03737, - -0.081814, - -0.0030635, - -0.015071, - 0.0030211, - 0.045831, - -0.027234, - -0.016359, - 0.018974, - 0.032925, - 0.015508, - 0.018533, - 0.055804, - 0.0076378, - -0.00090748, - 0.040062, - -0.0062538, - 0.005982, - -0.078903, - -0.037353, - -0.015052, - 0.080031, - -0.049589, - 0.023746, - 0.010751, - 0.050643, - 0.0094559, - -0.0081087, - 0.04698, - -0.011669, - 0.013268, - -0.027032, - -0.074284, - -0.074898, - 0.02264, - -0.007903, - -0.0016738, - 0.016713, - -0.077782, - 0.032419, - -0.011703, - -0.024281, - -0.021632, - 0.017425, - 0.010261, - -0.029728, - 0.0010339, - 0.01729, - -0.072661, - -0.045941, - -0.028842, - -0.073992, - 0.019856, - 0.033423, - 0.011037, - 0.045525, - 0.010988, - -0.035698, - 0.061084, - -0.087183, - 0.04474, - -0.051853, - 0.0017202, - -0.023145, - -0.060056, - 0.090718, - -0.080307, - -0.0044619, - -0.024528, - 0.018353, - -0.020741, - 0.022725, - 0.0021222, - -0.01114, - -0.032127, - 0.021529, - 0.024994, - 0.020373, - -0.048288, - -0.022917, - -0.0041446, - -0.042209, - 0.083863, - 0.046424, - -0.051852, - -0.011885, - 0.05645, - -0.02533, - 0.023572, - 0.063179, - 0.0067108, - -0.078081, - -0.092907, - 0.030242, - 0.050461, - 0.0075604, - -0.0085196, - 0.0039887, - 0.047923, - 0.036135, - 0.012054, - -0.064903, - -0.0050924, - 0.035011, - 0.10397, - 0.047428, - 0.069389, - 0.087764, - 0.0082994, - -0.039339, - -0.048444, - 0.057136, - -0.027814, - -0.04682, - -0.037423, - -0.058306, - 0.1944, - -0.0057943, - -0.00054017, - 0.036831, - -0.0011203, - 0.026858, - -0.07892, - 0.020772, - -0.029678, - -0.0043694, - 0.031519, - 0.054281, - 0.08046, - -0.003096, - 0.00081098, - -0.044555, - 0.0081615, - -0.077575, - -0.062985, - -0.01046, - -0.030326, - 0.0035016, - 0.035749, - 0.051841, - -0.1172, - 0.11729, - 0.072229, - 0.014556, - 0.016011, - 0.0088169, - 0.00054363, - 0.014423, - -0.0069697, - -0.071946, - 0.041904, - 0.021004, - -0.10973, - -0.017056, - -0.00033479, - 0.061842, - -0.036002, - 0.0024681, - 0.080673, - -0.015259, - 0.099505, - -0.062963, - 0.052848, - -0.026395, - 0.024488, - -0.056203, - 0.02705, - -0.0017339, - -0.015095, - 0.023875, - 0.059286, - -0.044402, - 0.10368, - -0.056851, - 0.15627, - 0.053234, - 0.040634, - -0.0011696, - 0.024815, - -0.023033, - 0.0037619, - 0.054892, - 0.059648, - -0.002605, - -0.10506, - -0.04315, - -0.018409, - 0.0088544, - 0.079847, - 0.040976, - 0.072246, - -0.030549, - -0.061178, - 0.02722, - 0.00027203, - 0.046931, - 0.023807, - 0.12449, - 0.022505, - 0.046572, - 0.028003, - 0.021389, - 0.063059, - -0.029641, - -0.010682, - -0.038215, - -0.021936, - 0.072566, - -0.015664, - -0.03541, - 0.050811, - 0.03805, - -0.038784, - 0.030138, - 0.0084876, - 0.021229, - 0.014058, - 0.0046747, - -0.040361, - 0.027317, - -0.063445, - 0.053361, - -0.080176, - -0.0025388, - 0.052583, - 0.021446, - -0.011069, - 0.0097959, - -0.057956, - 0.04617, - -0.039353, - 0.097025, - 0.0031359, - 0.013064, - -0.013137, - 0.013059, - -0.030427, - -0.045394, - -0.017521, - -0.026605, - -0.0023508, - 0.019755, - 0.0027852, - 0.023748, - -0.010577, - -0.044004, - -0.057481, - -0.010101, - 0.024946, - -0.020572, - -0.046148, - 0.011399, - -0.058883, - 0.03536, - -0.028172, - 0.051431, - -0.039355, - -0.014727, - 0.080005, - -0.030571, - 0.037585, - -0.0081771, - -0.041256, - 0.088609, - -0.0012071, - 0.06395, - -0.035771, - 0.050809, - -0.047082, - -0.016069, - 0.040104, - 0.038013, - -0.040914, - 0.03223, - 0.061231, - -0.036317, - -0.021216, - -0.072873, - -0.011596, - -0.0075824, - -0.022778, - 0.0087194, - -0.020545, - -0.0068065, - -0.074638, - -0.020944, - 0.019862 - ], - "wardrobe": [ - -0.064655, - -0.071151, - -0.028796, - 0.044008, - 0.01506, - -0.083908, - 0.062601, - -0.044224, - -0.024305, - -0.0062513, - -0.024929, - -0.030467, - -0.10737, - -0.047339, - -0.045057, - 0.051445, - 0.070849, - -0.0040123, - 0.036515, - 0.027381, - -0.069921, - -0.068255, - -0.070366, - 0.076226, - 0.11445, - 0.049061, - 0.022308, - 0.034063, - -0.047348, - 0.002481, - -0.015757, - -0.033504, - 0.072695, - -0.074657, - 0.015807, - 0.080388, - 0.028904, - 0.06639, - -0.0091379, - -0.0050044, - 0.035764, - -0.11747, - 0.028498, - 0.010863, - 0.0019192, - 0.00080801, - 0.082803, - -0.043207, - -0.060791, - 0.010053, - 0.013358, - -0.082077, - -0.010976, - 0.064784, - -0.066884, - 0.036106, - -0.028467, - -0.025907, - -0.047349, - 0.027475, - -0.067199, - -0.053959, - 0.095313, - 0.022256, - 0.075834, - 0.10043, - -0.027886, - -0.01991, - -0.056686, - 0.039186, - 0.037145, - -0.053999, - -0.031083, - -0.10894, - -0.046493, - 0.072276, - 0.089253, - -0.075684, - -0.046736, - 0.061635, - -0.017527, - -0.023864, - 0.046728, - 0.068141, - -0.033945, - 0.00058149, - -0.063287, - -0.033776, - 0.02693, - -0.015753, - 0.027987, - -0.012178, - -0.066307, - 0.030099, - 0.0077065, - 0.10794, - -0.051967, - 0.067073, - 0.055101, - 0.010638, - 0.063387, - 0.043337, - 0.046125, - 0.046133, - 0.015281, - -0.086395, - 0.0017185, - -0.019917, - -0.05044, - -0.0051918, - 0.030063, - 0.023317, - 0.081628, - 0.034319, - 0.0015721, - -0.081238, - 0.04212, - -0.023563, - -0.059001, - 0.028093, - 0.022491, - 0.040361, - 0.046673, - 0.010963, - 0.045688, - -0.025328, - -0.045032, - -0.053305, - 0.029404, - 0.079974, - -0.01789, - -0.03856, - 0.059567, - -0.058893, - -0.036921, - 0.028807, - -0.060543, - 0.0082607, - 0.015586, - -0.082084, - 0.037552, - -0.011865, - 0.041225, - 0.027213, - -0.043929, - -0.023111, - 0.0021119, - -0.062724, - 0.053803, - -0.028537, - -0.032806, - 0.061653, - 0.019294, - -0.059644, - -0.032894, - 0.022002, - 0.073855, - -0.011205, - 0.0094079, - -0.0057411, - 0.066613, - 0.050943, - -0.062358, - 0.052717, - -0.016539, - -0.0013318, - -0.028861, - -0.14369, - -0.043446, - 0.003749, - 0.0083189, - -0.059697, - -0.091608, - -0.060388, - -0.019559, - 0.052935, - 0.0024574, - 0.09199, - 0.024156, - 0.022696, - 0.050051, - -0.006788, - -0.020453, - -0.088056, - -0.0017115, - -0.028765, - -0.045599, - 0.12071, - -0.068233, - -0.035123, - -0.020646, - 0.021164, - 0.043417, - -0.03686, - -0.045945, - 0.021052, - 0.042711, - 0.0081901, - -0.0010588, - 0.030971, - -0.13651, - 0.040188, - -0.057741, - 0.053593, - 0.00073423, - 0.044824, - -0.051122, - -0.042218, - 0.034671, - -0.018968, - 0.097428, - 0.0068857, - 0.038551, - 0.051559, - -0.0069587, - -0.034808, - -0.054379, - 0.046278, - -0.012349, - -0.0044409, - -0.00274, - 0.089503, - 0.019638, - 0.050895, - 0.0012905, - -0.06876, - 0.054979, - 0.0076911, - 0.0055337, - -0.021931, - -0.039291, - -0.051658, - -0.033381, - -0.066663, - 0.03514, - -0.018451, - -0.015779, - -0.055783, - 0.0071708, - -0.050589, - 0.043661, - -0.060322, - -0.049759, - -0.0088804, - -0.013633, - 0.0086784, - -0.071079, - -0.0078993, - 0.0091847, - 0.0076076, - -0.024, - 0.0024356, - -0.032285, - -0.0025428, - 0.010165, - 0.0095974, - 0.017927, - 0.014439, - 0.095487, - 0.059178, - 0.061775, - -0.033829, - -0.080931, - -0.041201, - 0.082108, - -0.010905, - -0.0076524, - -0.0058703, - 0.02156, - -0.044794, - -0.034955, - 0.065853, - -0.10999, - -0.024577, - 0.0026044, - -0.023485, - -0.038114, - -0.012998, - -0.0051649, - -0.024445, - 0.099326, - 0.0066576, - 0.096775, - -0.10449, - -0.014175, - 0.0032312, - -0.050167, - 0.022684, - -0.027068, - 0.059941, - -0.031144, - 0.062161, - -0.050632, - 0.058352, - -0.097996, - -0.0063449, - 0.044091, - 0.065939, - 0.038314, - 0.00032218 - ], - "elite": [ - 0.039536, - -0.031342, - 0.075757, - -0.0028051, - -0.072394, - -0.054668, - -0.01747, - -0.10096, - 0.011419, - 0.0082315, - 0.061121, - -0.029235, - -0.0010349, - 0.021678, - -0.044688, - -0.022775, - 0.12763, - 0.00083737, - 0.11355, - 0.10032, - -0.01635, - 0.016516, - -0.0063022, - 0.10101, - -0.03651, - -0.024166, - 0.057898, - 0.02624, - 0.037507, - -0.019168, - -0.050343, - -0.043718, - -0.048172, - -0.010527, - 0.058017, - -0.0036587, - 0.042267, - 0.096796, - 0.022982, - 0.048702, - -0.026283, - -0.10601, - -0.040731, - 0.086492, - 0.047417, - 0.030193, - -0.030551, - 0.070733, - -0.033043, - -0.011122, - 0.019362, - -0.0052989, - 0.010785, - -0.010598, - 0.021599, - 0.017708, - 0.045944, - 0.050635, - -0.04463, - 0.041794, - 0.12215, - -0.048789, - 0.09321, - 0.06105, - 0.052416, - 0.018364, - -0.064132, - 0.013962, - 0.099078, - -0.10567, - 0.053478, - 0.0046669, - 0.15043, - -0.0077495, - -0.0033269, - 0.073933, - 0.0055111, - -0.0081587, - 0.0047703, - 0.017843, - -0.025556, - 0.077827, - 0.061415, - 0.17439, - -0.037067, - -0.030971, - -0.024997, - -0.046346, - 0.022029, - 0.02473, - 0.0010327, - 0.058254, - -0.10013, - -0.05566, - 0.071658, - 0.14244, - -0.098951, - -0.11627, - 0.044892, - 0.024133, - 0.039176, - 0.0057073, - 0.04993, - -0.075959, - 0.043903, - -0.14166, - 0.038059, - -0.059251, - 0.012318, - 0.085118, - -0.0060011, - 0.17407, - 0.066443, - 0.026856, - 0.00041468, - -0.0043451, - -0.0080749, - 0.035259, - -0.080107, - 0.023895, - 0.064447, - -0.071125, - -0.0031922, - -0.022636, - 0.13036, - -0.056651, - 0.024501, - -0.12046, - -0.085116, - 0.033552, - -0.050988, - 0.13903, - 0.18273, - -0.0053366, - 0.0069242, - -0.090258, - -0.10767, - 0.08576, - -0.062897, - -0.023954, - -0.062212, - -0.083322, - -0.067072, - 0.050268, - -0.055879, - -0.023319, - 0.0061652, - 0.1066, - -0.052903, - 0.013845, - 0.094628, - 0.10067, - -0.023982, - 0.023613, - 0.082872, - 0.0090004, - 0.00073899, - 0.13447, - 0.0086247, - 0.044739, - 0.060751, - 0.02915, - -0.023782, - 0.070292, - -0.046637, - 0.10963, - -0.035811, - 0.0039886, - -0.00057998, - -0.096268, - 0.083875, - 0.039713, - -0.070713, - 0.083242, - -0.07641, - 0.083702, - 0.041615, - 0.060388, - -0.0031944, - -0.0046874, - -0.011763, - 0.095653, - -0.042814, - 0.042749, - 0.012304, - -0.0079834, - -0.065972, - 0.13076, - 0.028179, - 0.063424, - 0.029083, - 0.080899, - -0.022224, - -0.0073357, - -0.031551, - 0.029957, - -0.0028087, - -0.0042488, - 0.007004, - 0.026877, - -0.1784, - 0.01758, - -0.044228, - 0.026662, - -0.047204, - 0.039069, - 0.0078817, - -0.029144, - 0.037069, - -0.043917, - 0.14667, - -0.040698, - 0.017514, - -0.025314, - -0.064582, - 0.0018165, - -0.068971, - 0.027138, - 0.027605, - 0.020961, - -0.030358, - -0.064319, - -0.021444, - 0.10864, - -0.045842, - -0.0050426, - 0.023877, - 0.046083, - -0.068048, - -0.071588, - -0.049244, - 0.045466, - -0.04019, - 0.012693, - 0.021278, - 0.07889, - -0.050655, - 0.0021019, - -0.025121, - 0.012475, - 0.10646, - 0.071831, - 0.094833, - 0.084703, - -0.060254, - 0.066261, - -0.039362, - -0.020155, - -0.018056, - -0.1682, - 0.013981, - 0.02057, - -0.06246, - 0.092336, - -0.013019, - 0.058612, - -0.08109, - 0.063893, - 0.10716, - 0.017017, - -0.084218, - 0.073989, - 0.030569, - -0.023331, - 0.038707, - 0.081235, - -0.09241, - 0.010647, - -0.0097892, - 0.032427, - -0.041341, - 0.093781, - -0.14586, - -0.052669, - 0.021013, - -0.028223, - 0.0065138, - -0.018578, - 0.0031136, - 0.028804, - 0.1112, - 0.084283, - 0.026246, - 0.075848, - 0.0011993, - -0.040371, - 0.036551, - -0.13655, - -0.00081616, - 0.040215, - -0.043995, - -0.031528, - 0.037043, - -0.00066844, - -0.015659, - 0.011379, - -0.019137, - 0.023486, - -0.019596, - -0.017464 - ], - "institution": [ - 0.016708, - -0.050066, - 0.016593, - -0.020737, - 0.0038646, - -0.07743, - -0.0042459, - -0.065639, - 0.02254, - -0.0335, - -0.031036, - -0.025365, - 0.050912, - 0.0076098, - -0.024155, - 0.058363, - 0.061496, - -0.016951, - 0.044758, - 0.04386, - -0.0047786, - 0.028452, - 0.0090902, - 0.062103, - -0.021183, - 0.051871, - -0.0093459, - 0.0076522, - -0.020789, - 0.022006, - 0.01446, - -0.016055, - -0.052201, - -0.049183, - -0.032273, - 0.035587, - 0.020715, - 0.0070903, - -0.02476, - 0.037495, - -0.0039045, - -0.099449, - 0.027769, - 0.030017, - 0.0089597, - -0.0032491, - 0.037794, - -0.024212, - -0.014649, - -0.015048, - 0.015479, - 0.0097963, - 0.013407, - 0.022757, - -0.04268, - 0.024869, - -0.0083451, - 0.012135, - 0.02656, - 0.02312, - 0.051148, - 0.065877, - 0.076414, - -0.0084209, - 0.0055675, - -0.012588, - -0.018527, - 0.009782, - 0.036234, - -0.011691, - 0.010116, - -0.023841, - 0.0044795, - -0.0042954, - 0.0079694, - -0.019416, - -0.040225, - 0.0076056, - 0.048828, - 0.039475, - -0.0027332, - 0.042134, - -0.030903, - 0.012298, - -0.042198, - 0.016262, - -0.045548, - -0.029038, - -0.010401, - -0.027484, - 0.02843, - 0.031932, - -0.05113, - -0.015526, - -0.0080407, - 0.05292, - 0.029439, - -0.012296, - 0.072159, - 0.014535, - 0.0066292, - -0.0086151, - 0.011411, - -0.031953, - -0.013571, - -0.058702, - -0.0093946, - -0.02633, - -0.03135, - 0.011559, - -0.00071824, - 0.072855, - 0.024102, - 0.043995, - -0.00055972, - 0.025975, - -0.026856, - 0.014481, - -0.0050643, - 0.030205, - 0.012545, - -0.048806, - 0.061837, - 0.028941, - 0.023012, - 0.031759, - 0.0012408, - -0.067457, - -0.0095285, - 0.07006, - -0.0014672, - 0.0028253, - 0.0014108, - 0.0062525, - -0.0069873, - 0.011812, - -0.051429, - 0.015093, - 0.042313, - -0.026102, - -0.0087535, - -0.0092956, - -0.026905, - -0.019114, - -0.023419, - 0.017317, - -0.024627, - 0.049761, - -0.00089529, - 0.028147, - 0.03981, - 0.025114, - 0.004483, - -0.056855, - 0.015109, - -0.0016413, - -0.036272, - 0.01005, - 0.0036797, - -0.03827, - 0.016367, - 0.00029934, - -0.018865, - 0.01585, - 0.032009, - -0.0074014, - 0.024505, - -0.012809, - -0.019566, - -0.0072722, - 0.0099213, - 0.0055723, - -0.014731, - -0.02321, - -0.01133, - 0.042612, - -0.0098851, - 0.048458, - -0.022944, - -0.043364, - -0.031242, - 0.010348, - -0.023493, - 0.056187, - -0.046915, - -0.018397, - -0.033749, - 0.056054, - 0.025842, - 0.0047024, - 0.0048044, - 0.072442, - -0.024254, - -0.048097, - -0.021775, - -0.033483, - -0.0059447, - 0.000488, - 0.0015168, - -0.032609, - -0.11416, - 0.040817, - -0.007506, - -0.035038, - -0.049117, - -0.027221, - -0.00019479, - -0.060615, - -0.03824, - -0.015129, - 0.064798, - 0.0039402, - -0.0074529, - 0.0042221, - -0.065303, - 0.014672, - 0.035054, - -0.00395, - 0.044953, - -0.0098754, - -0.013089, - -0.0071472, - 0.0035258, - 0.081523, - -0.023926, - 0.0035603, - 0.037705, - 0.029982, - 0.0082705, - -0.016097, - -0.023007, - -0.013341, - -0.042211, - -0.005261, - 0.0066433, - 0.0065246, - 0.0073904, - -0.010491, - -0.010911, - 0.011686, - 0.04827, - -0.032055, - 0.019693, - 0.015487, - 0.015482, - 0.0043374, - -0.021905, - -0.0016018, - -0.020225, - -0.0039251, - -0.022841, - 0.01721, - -0.025617, - -0.069035, - -0.006116, - 0.01114, - -0.033161, - 0.04813, - -0.016746, - 0.0001782, - 0.0041114, - -0.04563, - 0.030638, - -0.022389, - 0.02347, - 0.0080194, - 0.013676, - -0.00082507, - 0.0042179, - 0.049478, - -0.0054718, - 0.053743, - -0.081705, - -0.018496, - 0.025683, - -0.0058307, - -0.0052341, - 0.023414, - 0.0019135, - 0.0074247, - 0.04448, - -0.037091, - 0.013819, - -0.031185, - -0.0031217, - -0.0093952, - -0.0024787, - -0.048428, - -0.044094, - 0.017664, - -0.031164, - 0.055125, - 0.0043647, - 0.014144, - -0.018297, - 0.03012, - 0.0012098, - -0.0069608, - -0.058123, - -0.031154 - ], - "History": [ - 0.017248, - -0.032631, - 0.039188, - 0.0061554, - 0.04555, - 0.030298, - 0.035749, - -0.072613, - 0.0076476, - -0.0044445, - 0.012888, - -0.098562, - 0.046288, - -0.00050137, - 0.060426, - -0.02064, - 0.055887, - -0.0299, - 0.05975, - 0.0046132, - -0.028933, - 0.063579, - -0.089762, - 0.069518, - 0.0083124, - -0.03553, - -0.015807, - 0.038497, - 0.015154, - 0.03322, - 0.037893, - -0.0271, - 0.027111, - -0.027042, - 0.06719, - 0.0081398, - 0.014573, - 0.019222, - -0.047022, - 0.008205, - -0.048539, - 0.026238, - 0.048705, - 0.019189, - 0.044219, - 0.035889, - -0.017732, - -0.056773, - -0.027455, - -0.0090348, - -0.0098829, - 0.035866, - -0.01257, - -0.021916, - -0.0081699, - 0.026024, - -0.0093332, - 0.010983, - -0.071966, - 0.033223, - 0.027342, - 0.019789, - -0.038919, - -0.033811, - -0.011836, - -0.016622, - -0.094078, - 0.068574, - 0.046303, - 0.049434, - -0.038735, - -0.038961, - -0.024872, - 0.0016633, - 0.038565, - -0.059312, - 0.025013, - -0.097117, - 0.062811, - 0.0090395, - -0.010752, - 0.028497, - -0.028348, - 0.0021418, - 0.0045552, - 0.00039307, - 0.033165, - -0.11994, - 0.025041, - 0.057274, - 0.046593, - 0.020218, - -0.032311, - 0.012929, - 0.017683, - 0.11212, - -0.028483, - 0.02411, - 0.029625, - -0.014468, - 0.0090145, - 0.012681, - 0.024862, - -0.023093, - -0.04259, - -0.095706, - 0.039441, - 0.01561, - 0.029498, - 0.021677, - -0.01243, - 0.035266, - 0.040902, - 0.031939, - -0.032758, - 0.034593, - -0.015345, - 0.034933, - 0.037076, - 0.072895, - 0.01141, - -0.044342, - 0.016424, - -0.03662, - 0.012626, - 0.067986, - -0.13508, - -0.070643, - 0.041766, - 0.26173, - -0.039037, - 0.041355, - -0.0032993, - 0.0021569, - 0.038471, - -0.049277, - 0.035633, - 0.0017079, - 0.032885, - -0.068825, - 0.014364, - -0.010924, - -0.019498, - -0.068156, - 0.0036895, - -0.043337, - 0.0036719, - -0.024661, - 0.045325, - -0.058571, - 0.088891, - 0.064174, - 0.011091, - -0.080475, - -0.053378, - 0.080029, - 0.093799, - 0.010601, - 0.042131, - -0.044496, - 0.0010553, - 0.0064786, - -0.11218, - 0.007763, - 0.021975, - -0.0088864, - 0.020196, - -0.057969, - 0.02948, - -0.053101, - -0.014963, - -0.061552, - 0.042887, - 0.0065178, - 0.027309, - 0.03282, - 0.03263, - -0.055266, - 0.026099, - 0.061131, - -0.036967, - 0.01191, - 0.031288, - 0.0042898, - 0.036923, - 0.19211, - 0.029559, - 0.13971, - 0.023308, - -0.070936, - 0.063472, - 0.076515, - -0.098912, - 0.012839, - -0.044869, - 0.057376, - -0.027016, - -0.02178, - -0.026328, - 0.014887, - -0.016033, - 0.066552, - 0.022563, - -0.065861, - -0.010104, - 0.00086814, - 0.0063991, - -0.013107, - 0.0091986, - 0.058396, - 0.17684, - 0.0099073, - -0.020774, - 0.022189, - 0.066979, - 0.014515, - -0.034119, - -0.0056019, - -0.01239, - 0.059929, - 0.024283, - -0.022187, - 0.012575, - 0.10699, - -0.0060858, - -0.012632, - 0.056837, - 0.060513, - -0.061803, - -0.042953, - 0.0016183, - -0.068197, - 0.061047, - -0.014414, - 0.0039963, - -0.025498, - 0.015918, - 0.016984, - -0.0077176, - -0.0069344, - 0.043466, - 0.058973, - -0.022189, - 0.061731, - 0.12392, - -0.021831, - -0.066012, - -0.018291, - -0.0117, - -0.12065, - 0.024922, - -0.011023, - 0.013448, - 0.010827, - -0.0031762, - -0.039256, - -0.032687, - 0.020137, - 0.11312, - 0.036901, - -0.0057438, - -0.017713, - 0.025425, - -0.026162, - 0.013127, - -0.041428, - 0.0095613, - 0.0061799, - 0.053108, - 0.0023933, - 0.06584, - 0.098267, - -0.047259, - 0.043185, - -0.010232, - -0.069945, - -0.019487, - 0.010634, - -0.038388, - -0.031929, - 0.032205, - -0.080598, - 0.045753, - -0.039236, - 0.04476, - 0.020619, - -0.013091, - 0.0031816, - 0.016033, - -0.00084736, - -0.069387, - 0.040074, - -0.013169, - 0.00081247, - 0.039203, - 0.0067666, - -0.01503, - -0.036424, - 0.023668, - 0.020029 - ], - "postsecondary": [ - -0.046694, - -0.05024, - -0.040312, - 0.029234, - 0.0082206, - -0.022936, - -0.072736, - -0.0436, - 0.033206, - -0.0047382, - 0.020757, - -0.070418, - -0.050784, - 0.046415, - -0.023634, - 0.011078, - 0.03503, - 0.02233, - 0.014465, - 0.012475, - 0.0031854, - 0.008759, - 0.0013351, - 0.092837, - -0.072438, - 0.02539, - -0.052033, - 0.042602, - -0.01333, - 0.00293, - 0.024275, - -0.014339, - -0.077265, - -0.042177, - 0.025044, - 0.066937, - 0.0057695, - 0.055288, - -0.0875, - 0.032719, - -0.024868, - -0.077845, - 0.0075443, - 0.050636, - -0.010838, - -0.033737, - -0.057998, - 0.035342, - -0.015353, - 0.023103, - -0.018248, - 0.032444, - -0.022278, - 0.0048193, - -0.0043178, - -0.021069, - -0.050658, - 0.018952, - -0.0017457, - -0.022551, - 0.02566, - 0.044816, - 0.092338, - 0.085557, - 0.045123, - -0.098713, - -0.057573, - -0.051213, - -0.008056, - 0.029647, - -0.047118, - -0.022466, - 0.030812, - 0.015568, - 0.022768, - -0.022196, - -0.03059, - -0.0075907, - 0.03854, - 0.01645, - 0.023788, - 0.012885, - -0.022042, - -0.011724, - -0.0079628, - 0.037735, - -0.027518, - -0.0024725, - -0.0044043, - 0.01891, - 0.058557, - 0.0015698, - -0.042943, - 0.035209, - -0.062454, - 0.045579, - 0.046453, - 0.0010346, - 0.004087, - 0.033127, - 0.013258, - -0.040529, - 0.036502, - -0.00031594, - 0.032989, - -0.039716, - -0.0022192, - 0.037229, - -0.016929, - -0.005779, - 0.031471, - 0.050147, - 0.016709, - 0.028571, - 0.0066456, - -0.022018, - -0.00019923, - 0.0012988, - -0.024331, - 0.049624, - -0.0043976, - -0.012422, - 0.0079787, - 0.013347, - 0.0010413, - 0.022508, - -0.035406, - -0.024776, - 0.014517, - 0.039326, - -0.029556, - 0.016823, - 0.026195, - -0.029187, - -0.029766, - 0.018097, - -0.0091802, - -0.0014596, - 0.024406, - -0.010359, - 0.0031973, - -0.045962, - 0.0071731, - 0.017605, - -0.029921, - -0.048575, - -0.061773, - -0.033176, - -0.0049327, - 0.051824, - 0.061008, - 0.079116, - -0.0067453, - -0.04487, - 0.04349, - 0.012154, - -0.027885, - 0.01216, - -0.043379, - -0.041892, - 0.029806, - 0.022509, - 0.0012938, - -0.014649, - 0.00082549, - -0.057178, - 0.0093625, - -0.010917, - -0.023904, - -0.068504, - 0.0096697, - 0.00048636, - -0.034345, - -0.00087287, - -0.046877, - 0.040737, - 0.04696, - 0.054929, - -0.036018, - -0.013885, - -0.00022542, - -0.059835, - -0.038471, - 0.011959, - -0.00631, - -0.024283, - -0.044199, - 0.10084, - -0.0073704, - 0.043814, - 0.017054, - 0.032201, - 0.04758, - 0.01691, - -0.0016688, - -0.013499, - 0.0025482, - -0.022007, - 0.017762, - -0.021272, - -0.10434, - -0.014033, - -0.028037, - 0.015211, - -0.012574, - 0.055985, - 0.0095364, - 0.015863, - -0.046843, - 0.017863, - 0.094013, - -0.0094855, - 0.017115, - 0.031628, - -0.066685, - 0.032928, - 0.010164, - -0.044843, - 0.003803, - -0.014648, - -0.03699, - 0.0023339, - -0.0069085, - 0.059061, - -0.014274, - -0.016557, - 0.036065, - 0.043705, - -0.019321, - -0.010507, - 0.027622, - -0.0096207, - -0.042516, - 0.031695, - 0.037743, - -0.015546, - 0.062104, - 0.017408, - -0.041929, - -0.018442, - 0.015607, - 0.02089, - -0.0020379, - -0.056042, - -0.077187, - 0.0095799, - -0.01615, - -0.054889, - 0.0038274, - 0.0078611, - 0.0079548, - 0.03799, - 0.0073981, - -0.11676, - -0.026219, - 0.016408, - -0.067072, - 0.0038734, - -0.0022013, - -0.0096636, - -0.00052998, - -0.082884, - 0.013391, - -0.022263, - 0.01047, - 0.081879, - -0.0016355, - 0.01321, - -0.049336, - 0.0090184, - -0.0020232, - 0.038253, - -0.079268, - -0.027754, - -0.030765, - -0.032745, - -0.04109, - 0.040305, - 0.045698, - 0.049182, - 0.091327, - -0.031845, - 0.059778, - 0.0097462, - -0.0054945, - 0.0072003, - 0.044843, - -0.011485, - -0.065031, - -0.043295, - -0.0474, - -0.0082182, - -0.0065306, - 0.0058638, - 0.0066926, - 0.0096551, - 0.033806, - -0.041341, - 0.014409, - -0.022045 - ], - "involvements": [ - 0.026548, - -0.04553, - 0.059598, - 0.023812, - -0.00083109, - 0.026328, - -0.046661, - -0.089468, - 0.029448, - 0.0027724, - 0.0036985, - -0.017743, - 0.02589, - 0.0073368, - -0.010772, - 0.046102, - -0.00055891, - -0.0052659, - 0.06111, - -0.021412, - -0.043981, - 0.01767, - 0.00060531, - 0.027924, - -0.022071, - 0.029441, - -0.026136, - -0.01575, - 0.06068, - -0.015178, - -0.010452, - -0.037641, - 0.003773, - -0.048442, - 0.019957, - 0.02532, - -0.043178, - 0.008498, - 0.0031013, - 0.0018114, - -0.03524, - -0.035608, - -0.029932, - -0.023705, - -0.0084577, - 0.028916, - 0.021341, - -0.026876, - 0.014028, - -0.019776, - -0.023974, - 0.037551, - 0.0070312, - 0.0061479, - -0.038119, - 0.019958, - -0.058337, - 0.024202, - -0.040507, - 0.0032045, - -0.03437, - 0.021508, - 0.086935, - -0.030698, - 0.043449, - -0.075312, - 0.016312, - 0.0021589, - -0.012009, - -0.012886, - 0.012033, - -0.008166, - 0.036335, - 0.015762, - 0.071429, - -0.042817, - 0.024828, - 0.0015673, - 0.040889, - 0.0058953, - -0.00010951, - 0.010479, - -0.057718, - 0.086065, - 0.030505, - -0.02271, - 0.012467, - 0.012296, - 0.011651, - -0.012235, - 0.029323, - 0.0033181, - -0.062838, - 0.01766, - 0.0029058, - 0.037522, - -0.04141, - -0.0058671, - -0.028044, - 0.0061237, - 0.0011422, - 0.0031137, - -0.01412, - -0.037766, - 0.093943, - 0.015672, - 0.016828, - -0.029256, - 0.0062619, - 0.034241, - -0.039407, - 0.011376, - 0.019725, - 0.0068036, - 0.0043421, - 0.012744, - -0.027568, - -0.0076259, - -0.047898, - -0.020186, - 0.026026, - -0.055653, - 0.024675, - -0.016833, - 0.13657, - 0.010082, - -0.00034064, - -0.034092, - 0.044644, - 0.11217, - 0.040854, - 0.019457, - 0.035108, - 0.0064367, - -0.047617, - -0.030825, - 0.0035635, - 0.045472, - -0.0054848, - 0.0014843, - -0.0010403, - 0.013828, - -0.012228, - 0.05917, - 0.035184, - 0.01497, - 0.021128, - -0.031741, - 0.066013, - -0.023348, - 0.037719, - 0.065954, - 0.014401, - -0.059385, - -0.019511, - 0.0068939, - -0.0016699, - -0.0017422, - 0.020079, - 0.014855, - 0.050178, - 0.021586, - -0.026892, - 0.0042375, - -0.019498, - 0.023194, - 0.046103, - 0.018684, - -0.0078924, - -0.014667, - 0.054287, - 0.0096754, - 0.0079386, - 0.0088196, - -0.039269, - 0.0087011, - 0.025986, - 0.015102, - -0.0083794, - -0.024094, - 0.024896, - 0.01649, - 0.047834, - 0.0019774, - -0.0020844, - -0.061337, - 0.025816, - 0.058685, - 0.087538, - -0.012883, - 0.010585, - 0.039974, - -0.086373, - 0.020869, - 0.033923, - 0.042056, - -0.0091215, - -0.010501, - -0.01078, - -0.0078306, - -0.12225, - 0.032194, - -0.044246, - -0.049168, - -0.021272, - 0.013899, - -0.026664, - 0.014884, - 0.017688, - -0.016071, - 0.07787, - 0.064374, - 0.0045658, - -0.0022747, - 0.042376, - 0.0024593, - -0.039087, - 0.023021, - -0.070974, - -0.049248, - -0.016224, - -0.02101, - -0.053117, - 0.069011, - 0.10069, - 0.044498, - -0.0015155, - 0.079437, - 0.0047772, - -0.024206, - 0.023812, - -0.0074245, - -0.055211, - -0.01101, - 0.064147, - 0.032583, - 0.038389, - -0.011798, - -0.02656, - 0.02545, - -0.042915, - 0.0020477, - -0.00052942, - -0.016556, - -0.015203, - -0.019448, - -0.047173, - -0.16275, - 0.023306, - -0.042491, - 0.013927, - -0.0043918, - 0.017359, - -0.041514, - -0.029729, - -0.0004873, - 0.04408, - 0.016282, - 0.012066, - 0.023327, - -0.0074684, - -0.0086368, - -0.043261, - -0.00035625, - 0.0030831, - -0.0027858, - -0.035427, - -0.018811, - -0.0039644, - 0.007383, - 0.0018723, - 0.077189, - -0.061025, - -0.057771, - 0.014951, - -0.029072, - 0.018468, - 0.020399, - -0.039723, - 0.081731, - 0.028036, - -0.007932, - 0.0051534, - -0.018764, - 0.030368, - -0.030023, - 0.016256, - -0.0049842, - -0.034499, - -0.015675, - 0.030746, - 0.0088213, - -0.061039, - 0.026755, - -0.011062, - 0.051957, - -0.033543, - 0.041424, - -0.015113, - 0.0065572 - ], - "warfare": [ - -0.0015961, - -0.049501, - 0.074792, - -0.022023, - 0.030695, - -0.0049826, - -0.014436, - -0.095679, - 0.074523, - 0.10896, - 0.0050648, - -0.042976, - 0.0011868, - -0.0012878, - -0.034783, - -0.011988, - 0.12678, - -0.013289, - 0.023141, - 0.028675, - 0.021316, - -0.022907, - 0.051277, - 0.051218, - 0.0039399, - -0.050031, - 0.0094566, - -0.087424, - 0.0094356, - -0.010198, - 0.030039, - 0.036076, - -0.016605, - -0.08291, - 0.074118, - 0.047722, - 0.021126, - 0.03034, - 0.072319, - 0.022486, - -0.090803, - -0.12915, - 0.082067, - -0.026146, - -0.035953, - -0.020588, - -0.0052216, - -0.045048, - -0.010792, - -0.084548, - 0.016005, - 0.0046938, - -0.0017135, - -0.051007, - -0.077991, - 0.045409, - 0.071805, - 0.0038555, - -0.050324, - 0.0071183, - 0.02125, - -0.034094, - 0.0024609, - -0.052343, - 0.0026367, - 0.017249, - 0.0059069, - 0.036513, - 0.066055, - 0.040092, - 0.0035958, - 0.0055526, - -0.040634, - 0.017529, - 0.047638, - -0.050828, - 0.038104, - -0.015402, - -0.043303, - -0.018112, - -0.062991, - -0.037644, - -0.10661, - 0.070369, - -0.028781, - -0.010076, - -0.023343, - 0.011197, - -0.020028, - 0.027467, - -0.056153, - 0.10221, - -0.092803, - 0.011285, - 0.026807, - 0.050426, - -0.14698, - -0.064983, - 0.012861, - -0.040579, - 0.043759, - -0.010043, - 0.089613, - -0.040795, - 0.05292, - -0.059439, - 0.040759, - 0.044093, - -0.01371, - -0.033123, - -0.013921, - 0.058863, - 0.08224, - 0.00041834, - -0.095482, - 0.00091303, - -0.0054849, - 0.030386, - -0.051838, - -0.049042, - -0.045756, - 0.035726, - -0.055575, - 0.019983, - 0.14752, - 0.086688, - -0.015031, - -0.087407, - -0.0013103, - 0.18851, - 0.028729, - -0.004097, - -0.00041662, - 0.070135, - 0.074458, - -0.055926, - -0.0043919, - -0.0067696, - 0.018167, - -0.010202, - -0.026713, - -0.072403, - -0.029596, - 0.015441, - -0.036049, - -0.01739, - 0.032573, - 0.0047771, - 0.038523, - -0.011314, - 0.059204, - 0.052339, - 0.00091463, - -0.068618, - 0.0020304, - 0.071578, - 0.0079268, - 0.07612, - 0.076575, - -0.01545, - 0.051574, - -0.03826, - -0.14732, - -0.015694, - -0.073989, - -0.026764, - 0.0082893, - -0.0096586, - 0.051283, - -0.085818, - 0.042112, - -0.049327, - -0.0019503, - -0.00081272, - -0.01512, - 0.067446, - -0.0093888, - 0.026422, - -0.02697, - -0.030468, - 0.029415, - 0.077287, - 0.0087683, - 0.027701, - 0.039817, - -0.014609, - 0.0018776, - 0.11667, - -0.041472, - 0.036499, - 0.052794, - 0.049001, - -0.030699, - -0.062632, - -0.038808, - 0.0061745, - -0.047811, - 0.099555, - -0.033272, - 0.088814, - -0.21035, - 0.01759, - -0.074499, - 0.035681, - -0.039169, - 0.021415, - -0.032093, - 0.011295, - 0.092006, - 0.028808, - 0.11718, - 0.055818, - -0.0084467, - 0.035748, - 0.11808, - 0.061357, - 0.052308, - -0.036925, - 0.0039748, - -0.092262, - 0.018662, - -0.047886, - -0.021853, - 0.10103, - -0.051029, - -0.050234, - 0.059507, - 0.094008, - -0.07003, - -0.018403, - 0.010327, - -0.043963, - -0.02135, - -0.076875, - 0.030529, - 0.039555, - -0.061492, - 0.016718, - -0.020498, - -0.078144, - 0.011988, - 0.051968, - 0.040792, - -0.048687, - 0.013971, - 0.027551, - -0.071949, - -0.045135, - 0.0346, - 0.087015, - 0.0079747, - 0.042155, - 0.033661, - 0.0040893, - -0.01664, - 0.082375, - 0.098002, - 0.01897, - 0.062142, - 0.040751, - 0.064657, - 0.019185, - 0.015522, - 0.032008, - -0.0060373, - -0.0056507, - 0.042116, - 0.0011913, - -0.029453, - 0.017728, - -0.035897, - 0.074669, - -0.088191, - -0.041945, - -0.043748, - -0.086102, - 0.0203, - -0.0043386, - -0.01309, - -0.05968, - 0.079695, - -0.011859, - -0.00083675, - -0.031739, - -0.004351, - 0.0041222, - 0.015498, - 0.045697, - 0.011418, - 0.0012442, - -0.036229, - 0.044818, - -0.11074, - -0.051747, - 0.021898, - -0.027097, - 0.030361, - 0.073459, - -0.090257, - -0.034562 - ], - "encrypting": [ - 0.0050412, - 0.0023407, - -0.081176, - 0.031382, - 0.035056, - 0.045529, - -0.012337, - -0.070823, - -0.04487, - -0.0045594, - -0.033994, - -0.047561, - -0.10637, - 0.0099108, - -0.084539, - 0.028496, - -0.011174, - -0.0067316, - 0.051421, - 0.002592, - -0.0045975, - 0.0016958, - 0.014455, - -0.0014856, - -0.0067724, - 0.04116, - 0.050719, - 0.024096, - 0.10196, - 0.024634, - 0.01906, - -0.085917, - -0.032485, - -0.04194, - 0.03583, - -0.053412, - -0.040027, - 0.034963, - 0.031907, - -0.0071153, - -0.0051999, - -0.03822, - -0.021641, - -0.0042814, - -0.024073, - -0.054096, - -0.035694, - -0.019413, - 0.02188, - 0.026423, - -0.044634, - -0.10764, - 0.0072654, - 0.0097597, - -0.069269, - 0.014284, - -0.022745, - 0.028157, - 0.024806, - -0.0081261, - -0.021036, - -0.088493, - -0.0011431, - -0.038735, - -0.10714, - -0.020728, - 0.059246, - 0.051484, - 0.031175, - 0.0019743, - -0.05116, - 0.03843, - 0.092644, - 0.044435, - -0.075606, - -0.0068808, - 0.028621, - -0.0039558, - 0.04815, - -0.062758, - -0.001949, - -0.061087, - 0.0021282, - 0.007922, - -0.027024, - 0.01796, - -0.0085202, - -0.020752, - 0.024573, - 0.0012595, - 0.034244, - -0.068393, - -0.054908, - 0.03452, - 0.02551, - -0.0015858, - 0.0065075, - -0.040745, - 0.043368, - 0.057984, - -0.015257, - 0.005982, - 0.02145, - 0.040454, - 0.023314, - -0.058004, - 0.019005, - 0.017945, - 0.012065, - 0.01196, - 0.041306, - 0.072388, - 0.036792, - -0.0083634, - 0.0092169, - -0.024522, - 0.03488, - 0.083586, - -0.033638, - 0.029735, - 0.084453, - -0.018552, - -0.03694, - 0.010402, - 0.020251, - -0.073536, - -0.019625, - -0.026986, - -0.054971, - 0.051231, - -0.0048912, - 0.0021333, - 0.026453, - 0.015928, - 0.039328, - -0.067908, - 0.041445, - -0.019196, - -0.032364, - 0.061596, - 0.023751, - 0.066327, - -0.0034511, - 0.0091072, - -0.027288, - -0.013511, - -0.082331, - -0.070304, - 0.024631, - -0.016499, - 0.02668, - 0.017854, - 0.022583, - -0.064346, - 0.091515, - 0.017396, - -0.026597, - -0.016536, - 0.041519, - -0.0021867, - 0.052023, - -0.028561, - -0.021343, - 0.046236, - 0.024383, - -0.10378, - 0.029726, - 0.062094, - 0.03106, - -0.0072418, - 0.048485, - 0.058023, - 0.0010309, - 0.040697, - -0.041666, - 0.030864, - 0.021459, - 0.040062, - -0.045535, - -0.015817, - 0.042804, - -0.045934, - 0.0029215, - 0.01582, - -0.032679, - -0.058231, - -0.033538, - 0.12022, - 0.011338, - 0.044133, - 0.024322, - 0.014844, - -0.021983, - 0.011625, - 0.055008, - 0.039289, - -0.0026887, - -0.07336, - -0.054741, - 0.026363, - -0.13415, - 0.034015, - -0.001075, - 0.11501, - 0.010477, - -0.021196, - 0.035109, - 0.032767, - 0.02355, - -0.02868, - 0.028101, - 0.043627, - 0.037755, - 0.019532, - -0.014181, - 0.055974, - -0.020752, - -0.021721, - -0.008253, - -0.019562, - 0.10285, - -0.014729, - -0.022337, - 0.059469, - -0.05914, - -0.024607, - 0.023973, - 0.044261, - 0.045779, - 0.017624, - 0.016781, - -0.034341, - 0.0045146, - -0.089628, - 0.055611, - -0.089123, - -0.020465, - 0.041037, - 0.028952, - -0.030998, - 0.044823, - -0.051564, - 0.039472, - -0.02608, - -0.13825, - 0.022746, - 0.012103, - 0.014315, - -0.038182, - 0.056222, - 0.024871, - -0.035947, - -0.040209, - -0.020454, - 0.044776, - 0.037868, - -0.016989, - -0.011491, - -0.057256, - -0.045785, - -0.033399, - 0.015286, - 0.0016882, - 0.091636, - 0.011441, - -0.057952, - 0.058229, - 0.011554, - 0.034943, - 0.015741, - -0.020155, - 0.033942, - -0.073591, - -0.035339, - -0.075347, - -0.029423, - 0.057098, - -0.006709, - 0.055567, - -0.014706, - -0.0037613, - -0.066993, - -0.041687, - 0.019069, - 0.021387, - -0.05314, - 0.0011855, - 0.00073175, - -0.019896, - 0.041723, - -0.029833, - -0.021677, - -0.025823, - -0.0039189, - 0.0001734, - -0.0050049, - -0.025903, - -0.074645, - -0.019472, - 0.0039602 - ], - "instruction": [ - 0.010071, - -0.032686, - -0.016076, - -0.014993, - 0.0093936, - -0.048564, - -0.033793, - -0.072489, - -0.042227, - -0.021886, - 0.023363, - -0.01615, - 0.024516, - 0.059964, - -0.0022554, - 0.0012518, - 0.017804, - 0.042923, - 0.025791, - 0.028042, - -0.024925, - -0.01471, - 0.016083, - 0.061136, - -0.036656, - 0.073104, - -0.027712, - 0.046254, - 0.014636, - 0.029308, - 0.018898, - -0.0019233, - -0.031836, - -0.075433, - 0.026927, - 0.011715, - 0.021114, - -0.00054273, - -0.0080042, - -0.01858, - 0.001385, - -0.095413, - -0.010532, - 0.014378, - -0.0029573, - 0.011105, - 0.032438, - 0.0033385, - -0.032209, - 0.0034417, - 0.02515, - 0.029377, - 0.0023018, - 0.056774, - -0.043492, - 0.063348, - -0.024975, - 0.0012276, - -0.036346, - -0.029925, - -0.029563, - 0.025491, - 0.081073, - 0.051355, - -0.0056531, - -0.034618, - 0.013514, - 0.023718, - 0.0081448, - -0.048115, - 0.0043603, - -0.035768, - 0.016136, - 0.029164, - 0.0021796, - -0.038303, - 0.038813, - -0.024512, - -0.051184, - -0.022796, - -0.031413, - -0.030511, - -0.000084222, - 0.020294, - -0.042676, - 0.026107, - -0.0063006, - -0.0088074, - -0.010434, - 0.019939, - 0.0014043, - 0.010698, - -0.070041, - -0.02592, - -0.013494, - 0.027814, - 0.0098581, - -0.021483, - -0.02566, - 0.019162, - 0.0005439, - 0.016054, - 0.057787, - 0.033614, - 0.010625, - -0.042057, - 0.032776, - -0.0055856, - -0.019751, - -0.053923, - -0.03184, - 0.050105, - 0.046225, - 0.048644, - 0.012746, - -0.034803, - -0.015833, - 0.019196, - -0.046167, - -0.0034401, - 0.013282, - -0.011779, - -0.064672, - 0.011933, - 0.034941, - 0.05223, - -0.048501, - -0.046434, - -0.018154, - 0.098925, - -0.041119, - 0.015577, - 0.019887, - 0.042474, - -0.030337, - -0.0079801, - -0.014183, - 0.015467, - 0.080916, - -0.047376, - 0.0094932, - 0.04749, - -0.028807, - -0.0073029, - -0.0023712, - -0.028977, - -0.043194, - 0.020499, - -0.0080287, - -0.0062771, - 0.054747, - 0.016079, - -0.0081772, - -0.065118, - 0.042252, - 0.028578, - 0.012888, - 0.02825, - -0.033435, - 0.013381, - 0.031583, - 0.039585, - -0.022364, - 0.0024823, - 0.038785, - 0.029939, - 0.017187, - -0.01321, - -0.01697, - -0.0074165, - 0.073884, - -0.016625, - 0.013246, - 0.036578, - 0.001686, - 0.034901, - -0.024094, - 0.0085741, - -0.039724, - 0.013512, - -0.010998, - -0.0043386, - -0.01387, - -0.0044348, - -0.011332, - -0.023924, - -0.0035409, - 0.070313, - -0.0065095, - 0.0093237, - -0.017174, - 0.067852, - -0.014057, - -0.036476, - 0.00042157, - -0.016769, - -0.0066937, - 0.086029, - 0.028809, - -0.036735, - -0.126, - 0.034455, - -0.011094, - -0.0012455, - 0.030219, - 0.0023728, - -0.023905, - 0.019343, - -0.012529, - -0.0087591, - 0.090073, - 0.0091545, - 0.0032244, - 0.018092, - 0.011444, - -0.017499, - 0.021023, - -0.0047485, - -0.029397, - 0.0064221, - -0.029453, - 0.018573, - 0.034451, - 0.099773, - 0.050553, - -0.016937, - 0.00023028, - 0.051418, - -0.048059, - 0.0060629, - -0.0091701, - -0.052739, - -0.020505, - -0.012817, - 0.035989, - 0.029284, - -0.0034075, - -0.0017091, - -0.049044, - -0.023359, - 0.044144, - 0.00101, - 0.046496, - -0.038302, - -0.014775, - 0.030905, - 0.016086, - -0.028329, - 0.001902, - 0.004425, - 0.088746, - 0.043538, - -0.0082045, - 0.030056, - 0.021944, - -0.025075, - -0.001852, - 0.02921, - 0.01712, - 0.014129, - -0.0025874, - -0.014861, - 0.019486, - 0.0021818, - 0.042174, - 0.0084522, - 0.011049, - 0.023243, - -0.026921, - 0.0089017, - -0.0099734, - 0.053588, - -0.085362, - -0.027245, - -0.021548, - 0.0017934, - 0.017246, - 0.019423, - 0.011298, - -0.016035, - 0.049908, - 0.0057084, - 0.0073697, - -0.030665, - 0.0049524, - 0.0081177, - -0.00099358, - 0.050051, - 0.033467, - -0.0098362, - -0.056834, - 0.018068, - 0.030329, - -0.038265, - 0.024487, - 0.02762, - 0.054397, - -0.011498, - 0.015937, - -0.015288 - ], - "automakers": [ - 0.034195, - -0.049171, - 0.0028878, - 0.021953, - -0.10373, - 0.0061729, - -0.077549, - -0.047165, - 0.03681, - 0.038126, - 0.038979, - -0.015567, - -0.017855, - 0.06806, - -0.051125, - 0.094478, - 0.049482, - -0.0067193, - 0.093109, - -0.019231, - 0.05582, - -0.0073522, - 0.020879, - 0.057314, - 0.022359, - -0.038948, - 0.07396, - 0.02107, - 0.055073, - -0.003208, - -0.049209, - -0.012758, - 0.035601, - 0.020603, - -0.0028414, - 0.027202, - -0.018129, - 0.033659, - 0.037269, - 0.04927, - -0.058541, - -0.046091, - 0.024445, - 0.060912, - 0.013956, - 0.016913, - -0.055601, - 0.0067122, - -0.026085, - -0.053012, - 0.023925, - 0.0098835, - -0.0092892, - 0.055007, - -0.028893, - -0.061284, - -0.0095556, - 0.061274, - 0.018063, - -0.0031548, - 0.023398, - -0.039628, - 0.026154, - 0.0082094, - 0.059415, - -0.042503, - -0.0090734, - -0.047807, - 0.080134, - 0.040826, - -0.013448, - 0.010469, - 0.073024, - -0.034764, - -0.020398, - 0.050374, - -0.044842, - -0.033991, - 0.04545, - -0.046203, - -0.036888, - 0.056194, - -0.0089026, - 0.00075271, - 0.012885, - -0.034518, - -0.038767, - -0.019321, - 0.041069, - -0.072021, - -0.0276, - 0.034233, - -0.090441, - -0.039666, - 0.010448, - 0.049666, - 0.045295, - -0.02475, - -0.0094888, - -0.020175, - 0.014358, - -0.047161, - 0.030567, - 0.076465, - 0.037641, - -0.03729, - -0.020587, - -0.032302, - 0.029976, - -0.036763, - 0.068438, - 0.11835, - 0.04242, - 0.068699, - 0.0028326, - -0.098318, - -0.014502, - 0.05254, - -0.026305, - 0.015404, - -0.08435, - 0.00065633, - -0.0080334, - -0.011608, - 0.055567, - 0.036981, - -0.080996, - -0.076741, - 0.073577, - 0.062409, - 0.025879, - 0.16608, - 0.020015, - 0.026458, - 0.066561, - 0.0044617, - 0.03767, - 0.042055, - -0.021916, - 0.051251, - 0.038163, - 0.030933, - 0.058266, - 0.076147, - -0.020374, - -0.029076, - 0.010677, - -0.035768, - 0.063143, - -0.045728, - 0.088124, - 0.092876, - -0.0038332, - 0.012809, - -0.0063597, - -0.012538, - 0.030758, - -0.053835, - 0.04138, - -0.030803, - 0.062869, - 0.0075097, - 0.060601, - -0.029086, - 0.13524, - 0.041167, - -0.016136, - -0.0091944, - 0.089038, - -0.027367, - 0.016688, - -0.040642, - -0.072463, - 0.10026, - -0.049158, - 0.0073281, - -0.080529, - -0.0096578, - -0.052143, - -0.017649, - 0.015197, - -0.022544, - -0.050328, - -0.008352, - 0.037041, - -0.063198, - -0.067473, - 0.084236, - -0.0071027, - 0.056149, - -0.097596, - 0.067488, - -0.085283, - -0.0251, - 0.066201, - 0.10107, - -0.055697, - -0.079863, - -0.0095821, - -0.041356, - -0.075818, - 0.016256, - -0.024326, - -0.04569, - 0.062899, - 0.0078048, - -0.015205, - 0.040944, - -0.0089273, - -0.051087, - 0.027041, - 0.02349, - 0.072142, - 0.034818, - -0.053021, - -0.040487, - -0.017975, - -0.041818, - -0.038474, - -0.049302, - -0.047183, - -0.037085, - 0.037431, - 0.089319, - 0.065533, - 0.000052544, - -0.032522, - 0.032537, - 0.030273, - -0.03801, - -0.030693, - -0.0071324, - -0.064923, - 0.034573, - 0.059504, - -0.065611, - -0.0046007, - -0.035718, - 0.070708, - -0.0016074, - -0.024596, - -0.0046426, - -0.068322, - 0.015006, - 0.053748, - -0.047038, - 0.090907, - -0.033316, - 0.038272, - -0.013774, - 0.032928, - 0.009726, - -0.039505, - 0.0091008, - -0.025438, - 0.033923, - 0.023721, - 0.026489, - -0.039332, - 0.035583, - 0.038387, - 0.041915, - -0.072015, - -0.0093679, - 0.015651, - 0.085569, - 0.046526, - 0.045125, - 0.0077332, - 0.053029, - -0.012776, - 0.076129, - -0.14215, - 0.013933, - 0.032816, - -0.0037274, - -0.11844, - 0.13592, - -0.0058951, - 0.029351, - 0.010379, - 0.015038, - -0.0061136, - 0.017231, - -0.0010399, - -0.044721, - 0.0020131, - -0.08046, - 0.057087, - 0.044189, - -0.0084007, - -0.01618, - 0.021871, - 0.0025802, - 0.0014412, - -0.073326, - 0.040886, - -0.014143, - 0.015317, - 0.0023108 - ], - "dealings": [ - -0.0068848, - 0.022822, - 0.033592, - -0.019932, - -0.048931, - -0.04837, - -0.035645, - -0.0983, - 0.054606, - 0.045348, - -0.055061, - -0.12067, - 0.018368, - -0.036103, - -0.01141, - -0.0080159, - 0.091368, - -0.013899, - 0.087407, - -0.0029012, - -0.0065798, - 0.028901, - 0.014579, - 0.0365, - -0.014853, - -0.024238, - -0.0074185, - -0.000059572, - 0.062291, - -0.0085722, - -0.032627, - 0.04661, - -0.058784, - -0.064563, - 0.047348, - 0.084346, - -0.036413, - 0.040032, - -0.0033191, - 0.054019, - -0.014664, - -0.070232, - 0.0010453, - 0.068519, - -0.013076, - -0.006367, - -0.0014313, - -0.027326, - 0.010117, - -0.048656, - -0.048197, - -0.063126, - 0.056371, - 0.0020781, - -0.10461, - 0.033833, - -0.02855, - -0.011065, - -0.074917, - -0.039603, - 0.01679, - -0.0014957, - 0.14917, - -0.038545, - -0.068678, - -0.084093, - 0.019486, - 0.0071934, - 0.01173, - 0.0034171, - -0.017242, - -0.024917, - 0.042612, - 0.021017, - 0.0005304, - -0.0026536, - 0.020125, - 0.023945, - 0.02075, - -0.047375, - 0.02177, - 0.055535, - -0.040561, - 0.076339, - 0.015207, - -0.01034, - 0.0019693, - -0.019918, - 0.062328, - -0.027067, - -0.010792, - -0.0089428, - -0.057365, - 0.0052701, - 0.0072704, - 0.019939, - -0.024373, - -0.011144, - 0.026398, - -0.028042, - -0.057684, - 0.066949, - -0.072257, - -0.022213, - 0.087265, - -0.01899, - 0.027216, - -0.011397, - 0.061712, - 0.046194, - -0.083328, - 0.076522, - 0.052344, - -0.04354, - -0.025342, - -0.049386, - 0.0015489, - -0.0068896, - -0.040292, - -0.036464, - 0.026028, - -0.050051, - 0.037191, - 0.057099, - 0.075983, - 0.012204, - 0.027282, - -0.095677, - 0.036298, - 0.13279, - 0.019348, - 0.0707, - -0.013199, - 0.021333, - -0.023963, - -0.071168, - -0.017045, - 0.043913, - -0.023257, - 0.035543, - -0.012471, - 0.033775, - -0.043094, - 0.062897, - 0.04085, - 0.0025941, - -0.0030723, - -0.069493, - 0.0034867, - -0.096832, - 0.093688, - 0.084153, - 0.01452, - -0.034366, - -0.051171, - 0.0067733, - 0.034211, - -0.062447, - -0.017921, - 0.059105, - 0.060284, - 0.047831, - -0.059421, - 0.022302, - 0.013108, - 0.016344, - 0.07684, - 0.031898, - -0.01776, - 0.022622, - 0.024668, - -0.018488, - -0.0017624, - 0.055922, - -0.020433, - 0.038336, - -0.019152, - 0.10443, - -0.044722, - -0.0071409, - 0.023742, - 0.01678, - 0.039192, - 0.019739, - 0.0013703, - -0.040172, - 0.021863, - 0.093719, - 0.064768, - 0.020945, - -0.041203, - 0.025287, - -0.053043, - 0.026141, - -0.01244, - 0.02408, - -0.034902, - 0.05277, - -0.034974, - 0.035518, - -0.15456, - 0.099387, - 0.018358, - -0.068335, - -0.052639, - -0.055976, - -0.035856, - -0.039586, - 0.024236, - -0.024346, - 0.074124, - 0.09268, - 0.03378, - 0.0051186, - 0.0017128, - 0.011016, - -0.048706, - -0.029706, - -0.047599, - 0.013231, - 0.0081667, - -0.019993, - -0.039024, - 0.094231, - 0.02089, - 0.036603, - 0.0039898, - 0.081698, - -0.042021, - -0.043031, - -0.039789, - -0.022551, - -0.14163, - -0.057188, - 0.12939, - 0.016785, - -0.0099813, - 0.014985, - 0.025815, - 0.0086548, - -0.021793, - 0.038343, - -0.0016417, - 0.029009, - -0.048778, - -0.028823, - -0.054265, - -0.064514, - 0.0039299, - -0.010249, - 0.020075, - -0.035643, - 0.032828, - 0.027471, - -0.0036228, - -0.044546, - -0.010114, - 0.097499, - -0.048665, - 0.0070759, - 0.0052731, - -0.010786, - -0.061906, - -0.0070321, - 0.00012803, - 0.010483, - 0.0015684, - 0.050993, - -0.069432, - 0.0022373, - -0.027796, - 0.077518, - -0.10159, - -0.061317, - 0.0020878, - -0.086648, - 0.024539, - 0.024118, - -0.041644, - -0.0090318, - 0.018759, - 0.024461, - -0.00043547, - -0.045216, - -0.021411, - 0.020452, - -0.025086, - 0.0229, - -0.06229, - 0.0086421, - -0.0045155, - 0.041377, - -0.057228, - 0.0062153, - -0.069015, - -0.0094677, - -0.023626, - 0.034221, - -0.088105, - 0.017327 - ], - "genesis": [ - -0.0022468, - -0.12596, - 0.029201, - 0.03472, - -0.037034, - -0.049766, - 0.0069259, - -0.11545, - 0.021439, - 0.052651, - 0.016038, - -0.018271, - -0.035005, - 0.013438, - 0.048885, - -0.034722, - 0.13282, - 0.01698, - 0.061233, - 0.032099, - -0.0027488, - 0.075465, - 0.030274, - 0.043536, - -0.015996, - -0.040655, - -0.029358, - 0.048843, - 0.040508, - 0.062148, - 0.013151, - 0.006589, - 0.042404, - -0.087001, - 0.0012776, - 0.040483, - 0.010094, - -0.10363, - 0.021292, - -0.035455, - -0.030641, - -0.090071, - -0.030947, - 0.0085507, - -0.044165, - 0.03913, - -0.007999, - -0.073073, - -0.046615, - -0.07232, - 0.0059478, - -0.029059, - 0.020285, - -0.021391, - -0.034775, - 0.024551, - 0.059155, - -0.073393, - -0.04857, - 0.096972, - 0.0050328, - -0.00031921, - 0.053611, - -0.019272, - 0.07867, - -0.074733, - 0.010442, - 0.055033, - 0.020585, - -0.063433, - -0.023306, - -0.043799, - -0.087542, - -0.017105, - -0.022241, - -0.043103, - -0.06657, - -0.055624, - 0.053624, - -0.060079, - 0.0090399, - 0.017464, - -0.051932, - 0.051294, - -0.044359, - -0.022307, - -0.024163, - -0.032592, - 0.051084, - 0.080623, - 0.015564, - 0.012441, - -0.047817, - 0.018058, - -0.031054, - 0.036077, - 0.062246, - 0.0054244, - -0.0069889, - -0.0012484, - 0.030448, - -0.082259, - 0.022484, - -0.030126, - -0.043445, - -0.050739, - -0.022808, - 0.0078289, - -0.032844, - 0.052058, - 0.0058272, - -0.0079844, - 0.026671, - 0.027827, - -0.012694, - 0.095527, - -0.019469, - 0.043902, - -0.081957, - 0.044083, - -0.072717, - -0.046355, - 0.058057, - 0.045849, - 0.013497, - 0.033375, - 0.034884, - -0.10568, - 0.015349, - 0.10511, - 0.048062, - -0.054665, - -0.030284, - 0.028295, - -0.016142, - -0.065963, - 0.016495, - 0.039726, - 0.022115, - -0.048619, - 0.018172, - 0.075436, - -0.009251, - 0.084439, - 0.016326, - -0.11485, - -0.0095507, - -0.039767, - -0.017382, - 0.050074, - -0.054274, - 0.089439, - 0.032193, - -0.017419, - 0.062177, - -0.003773, - 0.045053, - -0.05318, - 0.030048, - 0.068794, - 0.010201, - 0.043837, - -0.078072, - -0.0031443, - -0.023684, - -0.0067951, - -0.0077967, - 0.0070637, - -0.0017658, - -0.012567, - 0.014816, - -0.027575, - -0.0010397, - -0.044504, - 0.010551, - 0.054557, - 0.016228, - 0.022529, - -0.013249, - -0.029824, - -0.02247, - 0.068622, - -0.047994, - 0.016505, - -0.031405, - -0.042402, - 0.048872, - 0.055203, - 0.020095, - -0.0021055, - 0.095274, - 0.025423, - -0.0070856, - -0.036157, - -0.036266, - -0.0050708, - -0.02344, - 0.023718, - -0.014463, - 0.03486, - -0.17206, - 0.086908, - -0.038435, - -0.087894, - 0.028868, - 0.001921, - 0.055363, - -0.050192, - -0.070537, - -0.071041, - 0.12113, - 0.0042198, - -0.009165, - -0.0011166, - 0.081351, - 0.011902, - -0.068426, - -0.048381, - 0.0025783, - -0.028907, - -0.0022381, - -0.023959, - -0.024427, - 0.08564, - 0.018545, - 0.059755, - 0.11137, - 0.066918, - -0.038185, - -0.032382, - -0.029522, - -0.087132, - -0.11378, - 0.01517, - 0.038712, - -0.019135, - 0.054317, - -0.005205, - 0.019789, - -0.01114, - 0.0041454, - -0.017733, - -0.05722, - -0.032982, - -0.061083, - -0.08252, - -0.06723, - -0.024307, - -0.029169, - 0.067982, - 0.054725, - 0.00051613, - -0.0091286, - -0.00084296, - -0.0060626, - 0.060193, - -0.03454, - 0.034205, - 0.093545, - -0.0057438, - 0.1156, - -0.033476, - -0.014853, - -0.033125, - 0.088639, - -0.039376, - -0.06345, - 0.021467, - -0.021427, - -0.056726, - 0.041608, - 0.087659, - -0.13066, - -0.032711, - 0.031367, - -0.024017, - -0.030408, - 0.04316, - -0.03306, - 0.0053762, - 0.072048, - -0.01252, - 0.048823, - -0.043361, - 0.01666, - -0.025805, - 0.001207, - 0.014747, - -0.0085338, - -0.00062486, - 0.051047, - 0.056697, - -0.005247, - -0.028547, - 0.0073844, - -0.10049, - 0.065151, - 0.016989, - -0.036926, - 0.015079 - ], - "politics": [ - 0.05375, - -0.084751, - 0.046837, - -0.020179, - 0.011449, - -0.037799, - 0.018368, - -0.077458, - 0.076704, - 0.033134, - 0.013757, - -0.065047, - -0.024412, - 0.019418, - -0.0043736, - -0.014671, - 0.13382, - -0.011527, - 0.047962, - 0.017856, - -0.0033976, - 0.010384, - 0.063897, - 0.05659, - -0.013048, - -0.0054569, - 0.0085586, - -0.016236, - 0.045183, - -0.0040197, - 0.017232, - -0.00054749, - -0.069917, - -0.040958, - 0.023646, - 0.022088, - 0.033114, - 0.026791, - 0.010474, - 0.0037003, - -0.063582, - -0.11425, - -0.017606, - 0.030848, - 0.013796, - -0.017294, - -0.013287, - -0.036826, - -0.012099, - -0.028927, - -0.033356, - -0.013749, - 0.067863, - 0.0044433, - -0.069202, - 0.019021, - 0.017952, - 0.032262, - -0.044784, - 0.014072, - -0.028394, - -0.028134, - 0.062709, - 0.0091419, - 0.035764, - 0.0050784, - -0.017543, - 0.033637, - 0.044068, - 0.042834, - 0.016225, - 0.0091221, - 0.014256, - -0.0022177, - 0.056517, - -0.0069543, - -0.0080696, - -0.011743, - -0.025414, - -0.010253, - -0.032531, - 0.017566, - -0.08826, - 0.069422, - -0.041493, - -0.053404, - -0.024595, - -0.03436, - 0.018561, - 0.033198, - 0.061607, - 0.023476, - -0.094947, - 0.049335, - 0.036312, - 0.038312, - -0.023982, - 0.0033162, - -0.0013178, - -0.0028973, - 0.01132, - -0.020286, - 0.0071641, - -0.068243, - 0.03019, - -0.051429, - 0.035253, - 0.01354, - -0.000093042, - -0.0081646, - -0.041653, - 0.081911, - 0.034601, - -0.033987, - -0.01617, - 0.0023941, - 0.060942, - -0.016667, - -0.040788, - 0.052002, - 0.023247, - -0.044059, - 0.006883, - -0.025681, - 0.057275, - 0.0079229, - -0.087358, - -0.053921, - 0.00026193, - 0.17331, - -0.015164, - 0.0027479, - 0.086618, - 0.034622, - -0.014071, - -0.0028231, - 0.032071, - -0.00044368, - 0.015212, - -0.024527, - 0.055561, - -0.073321, - 0.040703, - 0.070781, - 0.040777, - -0.052118, - -0.0032054, - 0.024064, - 0.0030313, - -0.069151, - 0.054626, - 0.06213, - -0.022011, - -0.025662, - -0.040847, - 0.073312, - 0.020751, - 0.045589, - -0.015628, - -0.020591, - 0.046677, - 0.048731, - -0.10474, - -0.012231, - -0.080073, - 0.026288, - 0.035752, - 0.00072826, - -0.018526, - -0.015927, - 0.0013944, - -0.032392, - -0.020296, - -0.015552, - 0.0038003, - 0.064186, - -0.0090885, - 0.076939, - -0.017407, - -0.035028, - -0.032847, - 0.021878, - 0.023525, - -0.046231, - 0.025347, - -0.041829, - 0.02724, - 0.098642, - 0.054872, - -0.039907, - -0.0067632, - 0.081026, - -0.055441, - 0.027456, - 0.012765, - 0.0121, - -0.011437, - 0.0048947, - -0.030507, - -0.00061778, - -0.13934, - -0.00051643, - 0.022128, - -0.11197, - -0.082141, - -0.029831, - -0.013481, - 0.016231, - 0.031618, - 0.0054127, - 0.096829, - 0.021571, - 0.013805, - -0.0088517, - 0.020779, - 0.02951, - -0.012094, - -0.063227, - -0.04468, - -0.07207, - -0.012099, - 0.015006, - -0.042526, - 0.087419, - -0.011621, - 0.033129, - 0.076939, - 0.074746, - -0.052005, - -0.011196, - 0.0038991, - -0.019077, - -0.061034, - -0.029741, - 0.011475, - 0.013685, - 0.0011564, - -0.027338, - -0.011211, - -0.064359, - -0.0067467, - -0.0056632, - -0.0053617, - 0.047279, - 0.026358, - -0.00056659, - -0.022399, - -0.060175, - 0.038256, - 0.0010421, - 0.083828, - 0.00038177, - -0.064148, - 0.030115, - 0.00061555, - 0.019758, - -0.048452, - 0.032057, - 0.038048, - -0.0032939, - -0.010486, - 0.039093, - 0.018565, - 0.035189, - -0.027859, - 0.025354, - -0.025495, - 0.036105, - 0.0045577, - 0.00040671, - 0.0023231, - 0.07136, - -0.10903, - -0.02468, - 0.0088814, - -0.050482, - 0.010261, - 0.046573, - -0.066131, - -0.022164, - 0.068506, - 0.0060286, - -0.029528, - -0.0076881, - -0.0020603, - 0.018977, - 0.082675, - -0.027611, - -0.021225, - 0.0071963, - 0.0077488, - 0.021028, - -0.033062, - 0.01743, - -0.055848, - 0.044209, - -0.044464, - 0.047246, - 0.0028211, - 0.0031767 - ], - "ideologies": [ - 0.045281, - -0.027858, - 0.030184, - 0.012653, - -0.021794, - -0.031619, - 0.024496, - -0.039302, - 0.020732, - 0.01986, - 0.029076, - -0.044011, - 0.0078208, - -0.0051255, - 0.005133, - -0.047981, - 0.050749, - -0.012023, - 0.032936, - 0.040603, - -0.062687, - 0.0096518, - 0.041076, - 0.073384, - -0.048902, - 0.038501, - 0.00036947, - -0.063813, - 0.079025, - -0.010386, - 0.029279, - -0.023655, - -0.015704, - -0.012671, - 0.0062324, - 0.024203, - -0.0209, - 0.0047915, - 0.0051476, - 0.025056, - -0.055031, - -0.10882, - 0.0010296, - 0.026755, - 0.036185, - -0.023301, - 0.011999, - -0.0077497, - -0.004043, - -0.075405, - -0.037031, - 0.027126, - 0.0079167, - 0.032501, - -0.030238, - 0.049623, - 0.073249, - 0.043092, - -0.033959, - 0.0049114, - 0.018707, - -0.034985, - 0.16337, - -0.044159, - 0.094367, - 0.0049977, - -0.0056934, - 0.030423, - 0.018786, - 0.019995, - 0.045744, - 0.016268, - 0.019881, - 0.0053791, - -0.013203, - -0.014686, - 0.021599, - -0.0199, - -0.059599, - 0.05182, - -0.006697, - -0.020666, - -0.062976, - 0.093171, - 0.032726, - -0.056661, - -0.019235, - 0.026997, - -0.032172, - 0.039393, - 0.020162, - -0.0057567, - -0.061299, - 0.035032, - 0.036442, - 0.026125, - 0.012857, - -0.082182, - 0.01175, - -0.00023687, - 0.035961, - 0.0088287, - -0.0017154, - -0.060729, - 0.00446, - -0.0058492, - 0.036336, - 0.0049321, - -0.0039789, - -0.0091278, - 0.0032829, - 0.032957, - 0.04588, - -0.015721, - -0.020349, - -0.017801, - 0.045239, - -0.019565, - -0.033717, - 0.054517, - -0.026737, - -0.066079, - 0.018769, - -0.11305, - 0.091324, - -0.019074, - -0.06985, - 0.030557, - 0.039689, - 0.13108, - -0.0094773, - 0.016231, - 0.08928, - 0.016135, - -0.010177, - 0.059764, - -0.02053, - 0.049132, - -0.017129, - 0.004348, - -0.016773, - -0.052155, - 0.03182, - 0.091833, - 0.043601, - -0.057196, - -0.0069233, - 0.038308, - 0.021706, - -0.0027897, - 0.0082129, - 0.062177, - -0.040656, - 0.013742, - 0.0050909, - 0.050003, - -0.0076979, - 0.022896, - 0.016982, - 0.013937, - 0.018425, - -0.062603, - -0.0092137, - -0.040243, - -0.026721, - -0.045644, - -0.0015535, - 0.014362, - -0.020787, - -0.044231, - -0.033765, - -0.02945, - -0.027631, - -0.021339, - -0.031833, - 0.062384, - -0.027095, - 0.012039, - -0.010135, - -0.060213, - -0.0056531, - 0.033174, - 0.021408, - 0.022408, - 0.015597, - -0.056222, - 0.014652, - 0.10659, - 0.0082096, - -0.019702, - 0.053171, - 0.080103, - -0.086031, - 0.012758, - 0.020763, - 0.013405, - 0.0030347, - 0.015832, - -0.03025, - 0.010941, - -0.10065, - 0.027257, - 0.026066, - -0.054617, - -0.0087369, - -0.011046, - 0.044562, - 0.023182, - 0.044497, - -0.0020886, - 0.054904, - 0.034313, - 0.06691, - 0.012174, - 0.0040113, - 0.053704, - 0.01599, - -0.029215, - -0.086324, - -0.074026, - -0.0527, - 0.0089096, - -0.010834, - 0.061153, - 0.053479, - -0.010444, - 0.030081, - 0.074764, - 0.00073968, - -0.0048612, - 0.014218, - 0.0084485, - -0.086893, - -0.030035, - 0.035514, - 0.048256, - -0.010904, - -0.034106, - -0.00051199, - 0.046178, - -0.026977, - 0.021055, - -0.034595, - 0.028152, - 0.0034935, - 0.0061461, - -0.063633, - -0.059066, - -0.01761, - 0.035555, - -0.012262, - -0.0088397, - -0.037863, - 0.017337, - -0.022097, - 0.042383, - -0.023427, - -0.010614, - -0.0035538, - -0.027379, - 0.057589, - 0.063798, - 0.020101, - -0.010379, - 0.040256, - -0.0093138, - 0.0059306, - 0.028213, - 0.018769, - 0.01349, - 0.027623, - 0.055811, - -0.083764, - -0.057211, - 0.080447, - -0.020387, - -0.015735, - 0.03905, - -0.075625, - -0.006787, - 0.042109, - -0.010573, - 0.043481, - 0.011742, - 0.035422, - 0.0023305, - 0.0029707, - 0.033124, - 0.015873, - 0.0017335, - -0.030643, - -0.0054031, - -0.02629, - -0.032135, - -0.030948, - 0.003899, - 0.030999, - 0.045377, - -0.029467, - 0.0029641 - ], - "legacy": [ - 0.016464, - -0.010578, - 0.024883, - 0.087801, - -0.032195, - -0.010031, - 0.032085, - -0.095534, - 0.028966, - -0.041121, - -0.037389, - -0.044553, - -0.047357, - 0.054731, - -0.0054185, - 0.051558, - 0.10881, - -0.039848, - 0.074913, - 0.063661, - -0.031287, - 0.022826, - -0.036024, - 0.070941, - 0.017004, - 0.013348, - 0.0040772, - -0.057363, - 0.051295, - 0.012816, - -0.000080614, - -0.09087, - -0.014397, - -0.08175, - 0.014174, - 0.0054314, - -0.051262, - -0.029623, - -0.043608, - -0.034147, - -0.022581, - -0.10493, - 0.052836, - 0.066937, - -0.024694, - 0.006742, - 0.012853, - -0.01932, - -0.011238, - -0.046716, - -0.061746, - 0.016154, - 0.0071595, - 0.045355, - -0.036791, - 0.01494, - -0.08262, - 0.025999, - -0.060001, - -0.060418, - 0.095085, - 0.020432, - 0.15893, - -0.064122, - 0.05445, - -0.042702, - -0.032233, - 0.0035953, - 0.036711, - -0.016684, - 0.032526, - 0.011045, - -0.019912, - 0.058917, - 0.074496, - 0.021688, - -0.0094391, - -0.014684, - 0.073355, - 0.023923, - -0.0096956, - -0.013628, - 0.017292, - 0.12256, - 0.034812, - -0.05472, - -0.087934, - 0.0085735, - -0.070855, - -0.021456, - 0.020611, - 0.040872, - -0.11206, - 0.033134, - 0.0081699, - 0.075125, - -0.0094452, - -0.055962, - 0.052484, - 0.063276, - 0.026777, - -0.0047795, - 0.12033, - -0.038399, - -0.048037, - -0.097964, - 0.010866, - -0.079891, - -0.041296, - 0.02663, - 0.010322, - 0.055066, - 0.059197, - -0.012176, - -0.052138, - 0.025081, - -0.056858, - 0.013081, - -0.066196, - 0.041229, - 0.01798, - -0.11496, - -0.019684, - -0.028674, - 0.097679, - 0.07425, - -0.035804, - -0.042739, - 0.10881, - 0.11604, - -0.034189, - -0.035222, - -0.026323, - 0.0080146, - 0.0047573, - 0.01426, - 0.012799, - 0.081411, - 0.015528, - -0.012375, - 0.0070371, - -0.041585, - -0.007962, - 0.016339, - -0.05704, - 0.0052843, - 0.037179, - 0.13657, - -0.030544, - -0.011932, - 0.03545, - 0.065748, - 0.05133, - -0.076436, - -0.014538, - 0.020845, - 0.099625, - 0.03616, - 0.04068, - -0.086322, - 0.034477, - 0.017462, - -0.11347, - -0.029537, - -0.065512, - 0.01639, - 0.0198, - 0.040788, - -0.055269, - -0.03634, - 0.062573, - 0.020239, - 0.005622, - 0.05835, - -0.01349, - 0.049334, - 0.066507, - 0.070114, - -0.023382, - 0.034325, - 0.013493, - -0.032817, - 0.050038, - -0.053118, - 0.0014002, - -0.036627, - -0.037686, - 0.067816, - 0.027705, - -0.057137, - 0.005068, - 0.067123, - -0.043765, - 0.057882, - -0.063509, - -0.066199, - -0.045805, - -0.084601, - 0.0031297, - -0.066158, - -0.14888, - 0.073444, - -0.012979, - -0.1167, - -0.073362, - -0.034784, - 0.096172, - -0.025858, - -0.021523, - -0.021156, - 0.1375, - 0.017786, - 0.02614, - -0.02509, - 0.058469, - 0.042298, - -0.016075, - 0.0050622, - -0.02389, - -0.095089, - 0.03016, - -0.033229, - 0.090812, - 0.12455, - 0.056378, - 0.011031, - -0.0077707, - 0.10221, - -0.02886, - -0.0042487, - -0.0094023, - -0.072583, - -0.088502, - -0.075306, - 0.05238, - 0.024622, - 0.0007931, - 0.04829, - 0.073645, - 0.033584, - 0.077505, - 0.026617, - 0.06666, - -0.032263, - -0.073616, - 0.045106, - -0.049967, - 0.0047385, - 0.033235, - 0.030288, - 0.024752, - -0.0076157, - -0.079084, - 0.1276, - 0.010104, - 0.086179, - -0.0066772, - 0.030788, - 0.048741, - 0.020651, - -0.0022412, - -0.0098388, - -0.043861, - -0.046593, - 0.074264, - -0.062366, - -0.00060564, - -0.0082426, - 0.061501, - -0.095616, - 0.032767, - 0.095429, - -0.15258, - -0.091044, - 0.11757, - -0.081575, - 0.029878, - 0.057793, - 0.01812, - 0.080926, - 0.16323, - 0.042441, - -0.081189, - -0.064966, - -0.01843, - -0.028829, - -0.04965, - 0.016465, - -0.04137, - -0.019541, - -0.022603, - 0.08216, - -0.056686, - -0.032905, - 0.038652, - -0.077237, - 0.025757, - -0.011181, - -0.021043, - -0.012152 - ], - "architect": [ - 0.037281, - -0.026914, - -0.004734, - -0.066359, - 0.0052836, - -0.029458, - -0.026084, - -0.091409, - 0.037615, - 0.016166, - 0.03455, - 0.092309, - 0.028106, - 0.11442, - -0.0065358, - 0.075516, - 0.054467, - 0.018045, - 0.0078545, - -0.017278, - -0.045093, - 0.080212, - 0.053262, - 0.040255, - -0.0011544, - -0.017408, - 0.0083828, - 0.03066, - -0.013974, - 0.046095, - -0.037255, - -0.03252, - -0.014503, - -0.0013284, - -0.064363, - 0.054181, - -0.0074251, - 0.046883, - 0.055512, - -0.033827, - -0.043449, - -0.06761, - -0.013877, - -0.028959, - -0.11654, - 0.098309, - -0.033481, - 0.021202, - -0.00072685, - 0.016561, - -0.016316, - -0.066106, - -0.016266, - 0.040045, - 0.0075657, - 0.0021928, - -0.018609, - -0.03466, - -0.040128, - -0.0029218, - -0.0007254, - 0.034066, - 0.070076, - -0.072573, - 0.021006, - 0.11909, - -0.055672, - -0.034226, - -0.04228, - 0.00068099, - 0.049043, - -0.036183, - 0.063156, - -0.039743, - 0.0010874, - -0.028356, - -0.06109, - -0.0043577, - -0.060582, - 0.055058, - 0.0023769, - 0.10072, - -0.0054816, - 0.043362, - -0.036844, - -0.062229, - -0.041849, - 0.033031, - -0.027175, - 0.040808, - 0.032462, - 0.034981, - -0.086111, - -0.082805, - -0.035755, - 0.075887, - -0.0035723, - -0.01038, - 0.064594, - 0.038912, - 0.077455, - 0.033139, - 0.048218, - 0.066879, - -0.065203, - -0.053472, - 0.040086, - 0.097755, - -0.028921, - 0.043511, - -0.033064, - 0.10747, - 0.048129, - 0.012303, - 0.017968, - -0.036775, - -0.058765, - 0.036623, - 0.040443, - 0.034321, - 0.024988, - -0.078036, - -0.047475, - 0.047603, - 0.056332, - 0.03533, - 0.0025495, - -0.068976, - 0.041611, - 0.084255, - -0.020786, - 0.030733, - 0.0039716, - 0.0054496, - -0.024138, - 0.086568, - 0.0052846, - 0.051663, - 0.0079994, - -0.060661, - 0.03984, - 0.020606, - -0.008596, - 0.014381, - -0.059286, - -0.044224, - 0.028977, - 0.015702, - 0.091664, - -0.04978, - 0.051909, - 0.032621, - 0.0089333, - -0.079057, - 0.014618, - 0.00035458, - 0.074612, - -0.0061764, - -0.020145, - -0.015975, - -0.0017522, - 0.0089578, - -0.028181, - -0.00042874, - 0.020854, - -0.017244, - 0.06186, - -0.034802, - 0.010584, - 0.04723, - 0.014104, - -0.0091689, - -0.0017791, - -0.037052, - 0.019878, - 0.033743, - -0.020577, - 0.01588, - 0.01351, - 0.033996, - -0.01516, - -0.042332, - 0.021296, - -0.024844, - -0.040206, - -0.065122, - 0.020369, - 0.085045, - -0.0038531, - 0.010766, - -0.026766, - 0.10503, - -0.043797, - 0.0098127, - -0.014497, - -0.023448, - 0.026096, - 0.037072, - 0.042327, - -0.03457, - -0.13071, - 0.043369, - -0.072318, - -0.053049, - 0.011628, - -0.032963, - -0.0064806, - -0.045149, - -0.064033, - -0.029202, - 0.093434, - 0.068543, - 0.015743, - 0.019994, - -0.093003, - 0.01546, - 0.045179, - 0.020304, - 0.024502, - 0.043303, - -0.015652, - -0.022811, - 0.038912, - 0.080012, - 0.027786, - -0.016915, - 0.051726, - 0.04803, - -0.024752, - -0.019477, - -0.049222, - -0.037701, - -0.043571, - -0.027177, - -0.03658, - -0.01959, - -0.032131, - -0.019505, - -0.051249, - 0.044459, - 0.049171, - -0.0031772, - 0.0039359, - -0.0093396, - -0.0052342, - 0.022339, - -0.068395, - -0.017877, - -0.030823, - 0.018386, - 0.016718, - -0.072825, - -0.041885, - -0.04588, - 0.060614, - 0.034596, - -0.028879, - 0.062917, - -0.018625, - -0.015123, - 0.011979, - 0.03434, - -0.063161, - 0.047367, - 0.002284, - -0.078784, - -0.0067365, - -0.015438, - 0.013709, - -0.026914, - -0.039643, - 0.082721, - -0.080083, - 0.0014625, - 0.013765, - -0.01965, - 0.048195, - -0.013095, - 0.025406, - 0.010584, - 0.046161, - 0.044227, - -0.0049215, - 0.055914, - -0.0052471, - -0.021436, - -0.028354, - -0.034984, - -0.01022, - 0.050655, - -0.052706, - -0.0032074, - 0.0072682, - 0.03498, - 0.029032, - -0.03967, - -0.00058432, - 0.095559, - -0.044548, - 0.017803 - ], - "family-oriented": [ - -0.0061732, - -0.042225, - 0.016481, - 0.026657, - -0.04782, - 0.026734, - -0.010943, - -0.063758, - -0.010649, - 0.05195, - -0.02204, - -0.044883, - 0.0033653, - -0.011579, - -0.047832, - 0.00018588, - 0.061124, - 0.012509, - 0.029842, - 0.034844, - 0.01382, - -0.016875, - -0.017303, - 0.039713, - 0.018552, - 0.021992, - -0.024337, - 0.029267, - 0.039238, - 0.044055, - -0.030245, - -0.028255, - 0.0026656, - -0.068982, - 0.065968, - 0.020998, - -0.0088072, - -0.022531, - 0.032746, - -0.019763, - 0.02926, - -0.096706, - 0.007928, - -0.01399, - 0.0068478, - -0.055381, - 0.0010271, - 0.0043285, - -0.016997, - -0.023813, - -0.025533, - -0.0036144, - -0.02538, - 0.021278, - 0.027122, - -0.042492, - 0.022023, - -0.010505, - -0.031919, - -0.022738, - -0.0066252, - -0.0014871, - 0.05618, - 0.011168, - 0.052535, - 0.023587, - -0.010045, - -0.013976, - 0.034095, - -0.035937, - 0.031835, - -0.024082, - 0.0055328, - 0.039341, - 0.00032482, - 0.0027009, - -0.0047216, - -0.021327, - 0.02634, - 0.00084276, - -0.030642, - -0.0024361, - 0.040729, - 0.0063887, - -0.0085117, - -0.012607, - 0.021608, - 0.013436, - -0.0098997, - -0.0028205, - -0.010299, - 0.0052782, - -0.069323, - 0.0011405, - 0.01295, - 0.051731, - -0.019467, - 0.02888, - 0.00072385, - 0.0042009, - 0.027085, - 0.006193, - -0.05301, - -0.081725, - -0.034776, - -0.06421, - 0.0056151, - -0.0028244, - -0.048384, - 0.0055139, - -0.045039, - 0.045398, - 0.0022783, - 0.029541, - -0.01528, - -0.066167, - -0.0081487, - -0.024554, - -0.011338, - 0.0036239, - -0.041717, - 0.018984, - 0.03239, - -0.031189, - 0.04773, - 0.016735, - 0.019332, - 0.036304, - 0.052804, - 0.0039009, - 0.034161, - 0.037892, - 0.012819, - -0.017067, - -0.023433, - -0.044458, - 0.041484, - 0.0036121, - -0.01427, - -0.012045, - 0.033314, - -0.0026229, - -0.0052993, - -0.004477, - -0.0052509, - 0.043592, - 0.011818, - 0.027454, - -0.006082, - 0.038867, - 0.040556, - 0.076609, - -0.058742, - -0.014462, - 0.02266, - 0.046421, - -0.023595, - 0.013921, - 0.069262, - 0.00034723, - 0.032395, - 0.016627, - -0.017577, - -0.028346, - -0.011254, - 0.046169, - 0.021522, - 0.018813, - -0.046889, - 0.006779, - 0.000054309, - -0.027882, - 0.030562, - -0.009001, - 0.0031451, - 0.025801, - -0.0016462, - 0.032175, - -0.025931, - -0.030636, - -0.023402, - -0.049094, - 0.020819, - -0.006241, - 0.044529, - -0.013217, - 0.030287, - 0.089552, - -0.018205, - -0.026693, - -0.016488, - 0.063727, - 0.055259, - 0.019345, - 0.0033747, - -0.0041288, - 0.03924, - 0.0032111, - 0.014841, - -0.053747, - -0.085368, - 0.058517, - 0.031667, - -0.041752, - 0.034909, - 0.023435, - -0.026227, - 0.001041, - -0.022819, - -0.00075525, - 0.058363, - -0.0057256, - 0.0067453, - -0.0566, - -0.0011486, - -0.024453, - -0.040411, - -0.0023761, - -0.03368, - 0.017189, - -0.0059304, - -0.037134, - -0.017442, - 0.047554, - -0.046239, - -0.040658, - 0.013496, - 0.046844, - 0.0097096, - -0.026835, - 0.031349, - -0.016342, - -0.022932, - 0.01845, - 0.021963, - 0.037857, - -0.023087, - -0.012974, - 0.014891, - 0.016666, - 0.033281, - 0.013053, - 0.011984, - 0.026035, - -0.080276, - 0.00058032, - 0.0030306, - -0.0055707, - 0.00577, - -0.026344, - 0.022905, - -0.0098369, - 0.0052336, - -0.0083039, - -0.045316, - 0.019649, - -0.048395, - -0.015472, - 0.010251, - -0.027264, - 0.025708, - 0.016188, - -0.010701, - -0.0037721, - 0.017128, - 0.032726, - 0.0012313, - -0.020152, - 0.025741, - 0.030463, - 0.02155, - 0.016089, - -0.043274, - -0.011657, - -0.0091576, - -0.062941, - -0.01018, - 0.036978, - 0.0062677, - 0.054267, - 0.068697, - -0.029147, - 0.029165, - 0.039567, - -0.042084, - 0.034838, - 0.017764, - -0.058779, - 0.008432, - -0.0054709, - -0.0079417, - 0.040289, - 0.031794, - -0.014757, - 0.047137, - 0.040006, - 0.030756, - 0.053199, - -0.03648, - 0.0026683 - ], - "aesthetic": [ - -0.020054, - -0.0037072, - 0.056721, - 0.02725, - -0.015902, - -0.023375, - -0.051542, - -0.044315, - 0.023177, - -0.0079572, - -0.0085889, - -0.067978, - -0.021219, - -0.01063, - -0.02514, - -0.020481, - 0.03146, - 0.048582, - 0.0032594, - 0.012858, - -0.003898, - -0.046817, - 0.07787, - 0.067944, - 0.038415, - -0.011634, - -0.032658, - 0.074789, - 0.053103, - 0.032902, - -0.060657, - -0.061248, - 0.04938, - -0.097904, - 0.038694, - 0.05125, - 0.031273, - 0.038984, - -0.052946, - -0.0094306, - 0.036893, - -0.085483, - -0.062558, - 0.035158, - 0.0048394, - -0.033666, - 0.035483, - -0.0023285, - -0.05565, - -0.012712, - -0.0053654, - -0.0459, - -0.04897, - 0.019603, - 0.040111, - -0.024028, - 0.033444, - -0.0078843, - -0.017839, - 0.01073, - 0.020323, - -0.070411, - 0.10209, - -0.004527, - 0.10502, - 0.041366, - 0.0022493, - -0.016045, - 0.012387, - -0.01448, - 0.12335, - 0.043932, - 0.0065432, - -0.0012927, - 0.030541, - -0.012552, - -0.035807, - -0.047145, - -0.00012159, - -0.012921, - -0.000061386, - 0.044327, - -0.0036108, - 0.0054408, - -0.044684, - -0.029258, - 0.014192, - 0.026577, - 0.0030767, - 0.042765, - 0.011704, - -0.0003038, - -0.079679, - -0.0069765, - -0.00032831, - 0.03539, - -0.032891, - -0.032277, - 0.015701, - 0.081948, - 0.072922, - 0.097097, - -0.017206, - 0.030967, - -0.012501, - -0.075276, - -0.025108, - 0.025402, - -0.03761, - 0.011626, - 0.034818, - 0.085688, - 0.032986, - -0.0014272, - -0.069601, - 0.01994, - -0.023234, - 0.0052965, - -0.038846, - 0.027626, - -0.032154, - -0.0057615, - -0.076148, - -0.0050285, - 0.097327, - -0.028349, - 0.0091097, - -0.045538, - 0.057636, - 0.066775, - 0.014409, - -0.053112, - 0.061003, - 0.0043985, - -0.049138, - 0.0027703, - 0.019915, - 0.075447, - -0.010696, - -0.0073883, - 0.016471, - -0.0020591, - 0.054845, - 0.03752, - -0.039917, - -0.096364, - 0.012911, - -0.020966, - 0.020501, - 0.061264, - 0.039978, - 0.11462, - -0.008017, - -0.014416, - -0.016641, - 0.048718, - 0.042416, - -0.016812, - 0.030395, - -0.0033541, - 0.018294, - -0.039773, - -0.11396, - -0.0030949, - 0.019268, - 0.10466, - 0.041642, - 0.0073762, - -0.0083486, - 0.030297, - 0.057855, - 0.041678, - 0.028252, - -0.020675, - 0.030086, - 0.060115, - 0.02546, - 0.036113, - -0.030872, - -0.029838, - -0.03961, - 0.033862, - -0.024261, - -0.053559, - -0.023251, - -0.045425, - 0.011306, - 0.10665, - -0.014998, - -0.018417, - 0.033518, - 0.0556, - 0.09646, - -0.045662, - -0.053725, - -0.02804, - 0.021962, - -0.043106, - 0.030039, - 0.018542, - -0.10793, - 0.016683, - -0.0080164, - -0.044209, - 0.031928, - -0.027664, - 0.0091645, - 0.075063, - -0.020156, - 0.012973, - 0.096651, - -0.0047477, - -0.018343, - -0.00016819, - 0.044282, - 0.047474, - 0.048366, - -0.0074439, - -0.086337, - -0.0099304, - -0.045693, - 0.022252, - 0.013541, - 0.056646, - 0.043383, - 0.052712, - 0.060231, - 0.071529, - 0.041762, - -0.017121, - -0.032075, - -0.068066, - -0.073853, - -0.011516, - -0.0010352, - 0.061642, - -0.0040079, - -0.034298, - 0.014218, - 0.02152, - 0.046669, - 0.0003973, - -0.056215, - 0.028742, - -0.12732, - 0.027992, - -0.085976, - -0.068285, - -0.050567, - 0.024029, - 0.0069663, - -0.05108, - -0.033862, - 0.00068893, - -0.015298, - 0.02581, - 0.015792, - 0.045225, - 0.039336, - -0.0080305, - 0.010951, - 0.023983, - 0.0027927, - -0.020163, - 0.084854, - 0.0085082, - -0.0043969, - 0.035168, - -0.0070329, - 0.0022142, - 0.01904, - 0.05621, - -0.083868, - -0.035622, - 0.087832, - -0.11754, - 0.011698, - 0.038864, - -0.0009216, - -0.030625, - 0.13421, - 0.044574, - -0.03597, - -0.028811, - 0.040895, - -0.025067, - -0.0029334, - 0.036047, - 0.046987, - 0.01839, - -0.07197, - -0.032406, - 0.0071605, - 0.033316, - -0.0037927, - -0.019398, - 0.0017682, - 0.067396, - 0.00093856, - 0.021007 - ], - "drug-taking": [ - -0.005561, - -0.0069645, - -0.0015762, - 0.05308, - 0.016297, - -0.0076252, - 0.023285, - -0.08104, - 0.0084628, - 0.020345, - -0.039159, - -0.036467, - 0.044707, - -0.014243, - 0.038168, - -0.030784, - 0.053584, - 0.0031422, - 0.037973, - 0.02691, - 0.027434, - -0.0045725, - 0.0087651, - 0.01947, - -0.023489, - -0.00015839, - 0.01696, - 0.036435, - 0.043443, - -0.011648, - -0.010746, - 0.035804, - -0.025802, - -0.034571, - 0.031042, - 0.012698, - -0.013109, - -0.0073582, - 0.021555, - 0.045222, - 0.025567, - -0.076716, - 0.03328, - 0.063945, - 0.023504, - 0.037193, - 0.03127, - -0.00509, - -0.026062, - -0.012963, - -0.068476, - -0.019755, - 0.052922, - 0.0054945, - -0.029924, - -0.013726, - -0.029069, - -0.034234, - -0.03567, - -0.0015696, - 0.046303, - -0.012264, - 0.0062641, - 0.0087336, - -0.049066, - -0.034106, - 0.067003, - -0.037783, - 0.02865, - 0.052606, - 0.060642, - 0.081247, - 0.0070156, - 0.0057674, - 0.029453, - -0.02694, - 0.071177, - 0.0072353, - -0.024675, - -0.0061155, - 0.010085, - 0.035322, - -0.047482, - 0.058944, - -0.012007, - -0.0056379, - 0.039616, - 0.062237, - 0.032444, - -0.011994, - -0.0066253, - 0.025626, - -0.081854, - 0.0057517, - 0.01124, - 0.043901, - -0.040626, - -0.047605, - 0.035752, - 0.050633, - -0.034286, - 0.018743, - 0.0019174, - -0.0063872, - 0.0085481, - -0.028407, - 0.0091465, - -0.0060775, - 0.02294, - 0.056525, - 0.013426, - 0.033605, - 0.0441, - -0.044037, - 0.026525, - -0.023412, - 0.042749, - 0.014934, - -0.053944, - 0.0063921, - 0.079012, - 0.044921, - -0.040174, - -0.045965, - 0.080839, - -0.019473, - -0.010128, - -0.035845, - 0.024458, - 0.046611, - 0.019583, - -0.00013394, - 0.050213, - -0.048979, - 0.030677, - -0.080518, - -0.075684, - 0.066725, - 0.058772, - -0.024955, - 0.042042, - 0.041581, - 0.0084951, - 0.0062601, - 0.071608, - -0.045422, - 0.040769, - 0.014416, - 0.053903, - -0.010097, - 0.012954, - 0.06973, - 0.017533, - 0.0074106, - -0.0030105, - 0.036768, - -0.014643, - 0.085092, - 0.092648, - 0.021331, - 0.077794, - 0.052411, - -0.094021, - 0.009675, - -0.021181, - -0.0034477, - 0.065187, - 0.05791, - -0.018809, - -0.046383, - -0.015354, - -0.013598, - 0.036144, - -0.0038276, - 0.061131, - 0.045775, - -0.014831, - 0.01431, - -0.0026795, - -0.0546, - -0.00041504, - -0.030181, - -0.027471, - 0.0031512, - 0.029853, - -0.090079, - 0.052469, - 0.079844, - 0.030902, - 0.02148, - 0.010603, - 0.030842, - -0.025156, - -0.021965, - 0.043511, - -0.044307, - -0.021536, - -0.0010003, - 0.0060498, - 0.027503, - -0.12066, - 0.0070119, - -0.021687, - 0.0033555, - -0.030136, - 0.068035, - -0.0000010795, - -0.0028307, - 0.021053, - 0.030986, - 0.089649, - 0.035505, - 0.06689, - 0.018493, - 0.031843, - -0.070627, - -0.084473, - 0.034934, - 0.0027947, - -0.029062, - -0.013379, - -0.022331, - -0.028076, - 0.064731, - -0.039683, - 0.0066601, - -0.0046971, - 0.045669, - 0.0065494, - -0.048613, - -0.044097, - -0.010221, - -0.085509, - -0.00091526, - 0.063941, - 0.078929, - 0.020822, - -0.030503, - 0.018715, - -0.019096, - -0.0066385, - -0.027771, - 0.0039012, - 0.00050163, - -0.056267, - 0.022947, - -0.039888, - -0.092649, - -0.026125, - 0.011786, - 0.010765, - 0.027036, - 0.069464, - -0.051253, - 0.029922, - 0.0044711, - -0.020903, - 0.017282, - 0.020117, - 0.0083374, - 0.010471, - -0.0068981, - 0.028651, - 0.046623, - 0.032909, - -0.020169, - -0.044102, - 0.0069568, - 0.023459, - 0.0088474, - -0.036812, - 0.028809, - -0.10695, - -0.038667, - 0.02757, - -0.060966, - 0.046425, - 0.040677, - -0.045884, - 0.019513, - 0.053009, - 0.028372, - -0.052925, - -0.034583, - -0.0034188, - 0.0054705, - -0.0011699, - -0.015701, - 0.0191, - -0.046447, - 0.093962, - -0.026726, - -0.046965, - -0.026418, - -0.11608, - 0.070313, - 0.027569, - 0.057847, - -0.030716, - -0.0083526 - ], - "hacking": [ - -0.066375, - -0.0042137, - -0.038597, - 0.0048489, - -0.044119, - 0.00055133, - -0.034831, - -0.10064, - 0.016462, - -0.026678, - -0.074281, - -0.043558, - -0.11632, - -0.059924, - -0.055753, - -0.010292, - 0.056745, - -0.0366, - 0.030941, - -0.0069934, - -0.014722, - 0.065697, - 0.011741, - 0.0092063, - -0.002247, - 0.018907, - 0.085043, - -0.0033071, - 0.046144, - 0.0010429, - 0.03295, - -0.069244, - -0.073249, - -0.051522, - 0.0308, - -0.047471, - -0.0079662, - 0.020606, - -0.024028, - -0.037876, - -0.074214, - -0.095489, - 0.017683, - -0.057707, - -0.020304, - 0.057527, - 0.059839, - -0.080174, - -0.0036816, - -0.042454, - -0.0091135, - 0.032127, - -0.014042, - -0.020445, - -0.072018, - 0.043925, - 0.09138, - -0.033933, - -0.038528, - 0.076593, - 0.03645, - -0.10884, - 0.021968, - 0.012281, - 0.0040906, - -0.00071911, - 0.048713, - 0.037016, - 0.019363, - 0.063863, - -0.020238, - 0.039386, - 0.065426, - 0.07449, - 0.0026497, - -0.040857, - -0.015854, - 0.007846, - -0.032284, - -0.11585, - -0.033475, - -0.06247, - -0.10491, - 0.060871, - 0.047631, - -0.030369, - -0.060567, - -0.007964, - -0.020565, - 0.095232, - -0.0076252, - -0.0063792, - -0.075056, - -0.028149, - 0.055494, - 0.030365, - -0.009119, - -0.058357, - 0.038233, - 0.057465, - -0.0046238, - 0.061612, - 0.030377, - 0.093498, - 0.041035, - -0.098126, - -0.0043016, - 0.00071524, - -0.031138, - -0.11352, - -0.034014, - 0.027111, - 0.058816, - -0.025083, - -0.0082172, - -0.0077349, - -0.088251, - 0.048033, - -0.064717, - -0.02244, - -0.03383, - 0.003054, - 0.0019549, - 0.039444, - 0.088978, - 0.0094087, - -0.040757, - -0.086476, - -0.10256, - 0.099722, - 0.058771, - -0.0055413, - -0.000914, - 0.01469, - 0.097321, - -0.096514, - 0.051902, - 0.025988, - -0.03812, - 0.0076814, - 0.036391, - 0.0035438, - 0.00042728, - -0.010836, - -0.013154, - 0.059437, - -0.030622, - -0.086488, - 0.071026, - -0.051522, - 0.013825, - 0.034042, - -0.0053615, - -0.081767, - 0.033041, - 0.030749, - 0.020186, - -0.0077227, - 0.040918, - -0.036242, - 0.034409, - 0.041512, - -0.083385, - -0.025399, - -0.047399, - 0.019416, - 0.052634, - 0.071463, - -0.019346, - 0.027771, - 0.023633, - 0.022179, - 0.088543, - 0.075584, - 0.013721, - 0.074575, - 0.014841, - 0.033926, - -0.0098624, - -0.014042, - -0.015763, - 0.011993, - -0.05244, - 0.033725, - -0.020271, - -0.061351, - -0.030816, - 0.10687, - 0.046509, - 0.04052, - -0.043522, - -0.016879, - -0.045673, - -0.021506, - 0.0072488, - 0.025626, - -0.049047, - -0.044338, - -0.020862, - 0.019415, - -0.16716, - 0.05154, - -0.0053185, - 0.094832, - -0.066593, - 0.039112, - 0.0022688, - 0.050939, - 0.050372, - 0.0016555, - 0.075509, - 0.049567, - 0.030376, - -0.00014305, - 0.036071, - -0.013853, - -0.10286, - 0.052423, - 0.029006, - -0.075434, - -0.016255, - -0.027383, - -0.099393, - 0.093085, - -0.022582, - -0.0096734, - 0.012213, - 0.093149, - -0.079806, - 0.004621, - -0.032409, - -0.03638, - -0.031615, - -0.019268, - 0.040561, - 0.01746, - 0.0059028, - 0.029845, - 0.023837, - -0.06317, - 0.063248, - -0.10951, - 0.060883, - -0.0098244, - -0.069511, - 0.059354, - -0.044386, - 0.0014663, - -0.09788, - 0.035077, - 0.027161, - 0.01872, - -0.067908, - 0.0085711, - 0.050794, - 0.048464, - -0.021478, - -0.035943, - -0.099512, - -0.0052733, - 0.010687, - -0.01474, - -0.0072206, - 0.084806, - 0.0012083, - -0.031369, - -0.023973, - 0.042703, - 0.05109, - -0.042411, - -0.10447, - 0.072895, - -0.10378, - -0.0019422, - -0.025265, - -0.09858, - 0.095932, - 0.014548, - 0.053893, - -0.0096397, - 0.089324, - 0.045373, - 0.049161, - 0.0069361, - 0.0098733, - -0.059903, - -0.043124, - -0.023871, - -0.0025958, - 0.066252, - -0.04504, - -0.0087506, - -0.11409, - -0.013118, - -0.0094326, - 0.015699, - -0.11088, - 0.029109, - -0.054773, - -0.10061 - ], - "country": [ - 0.02284, - -0.072221, - 0.028269, - -0.0071952, - -0.020298, - -0.042475, - 0.038516, - -0.10524, - 0.007239, - 0.013149, - -0.045378, - -0.077677, - 0.030828, - -0.019358, - 0.032076, - 0.073497, - 0.10881, - -0.042863, - 0.052286, - 0.0094878, - 0.044512, - -0.038991, - 0.024766, - 0.10028, - 0.019101, - 0.022017, - 0.00098041, - -0.011382, - -0.031896, - -0.031664, - 0.0074738, - 0.02013, - -0.040935, - -0.019573, - -0.016912, - 0.0020931, - -0.013195, - 0.015463, - -0.024433, - 0.028859, - 0.0090684, - -0.079918, - 0.0034975, - -0.078891, - 0.0047608, - -0.067109, - -0.048352, - -0.020692, - 0.0045573, - 0.035283, - 0.014931, - -0.0066534, - -0.0080954, - 0.018225, - -0.054523, - 0.027723, - 0.034961, - 0.01629, - -0.040895, - 0.019475, - -0.036533, - -0.001227, - 0.12541, - 0.0061956, - 0.039286, - -0.083842, - -0.021266, - -0.0048392, - 0.046823, - 0.0072788, - -0.002322, - -0.013385, - -0.002154, - -0.025877, - -0.0045567, - 0.01233, - -0.0045615, - 0.013747, - 0.021854, - -0.0054651, - -0.0019595, - 0.078442, - -0.026824, - 0.057582, - -0.029601, - -0.057347, - -0.044019, - -0.05866, - -0.0040653, - -0.028014, - -0.015492, - 0.068856, - -0.08803, - 0.0056138, - -0.0044924, - 0.08723, - 0.0044147, - -0.0062601, - 0.059534, - -0.0017026, - 0.084166, - -0.042972, - 0.0019729, - -0.081737, - 0.01643, - -0.11668, - -0.015645, - 0.027112, - 0.020375, - -0.032059, - 0.013287, - 0.087363, - 0.033763, - 0.061269, - 0.010291, - -0.04116, - 0.040714, - -0.017675, - -0.04111, - 0.05827, - 0.056221, - -0.039205, - 0.0000058537, - -0.02033, - -0.0089776, - 0.016001, - -0.036727, - -0.13259, - -0.015219, - 0.05149, - -0.028426, - 0.035906, - 0.0062575, - -0.013168, - 0.026795, - -0.03972, - 0.018166, - 0.047364, - 0.017604, - 0.034141, - -0.039217, - -0.064305, - 0.015205, - 0.010352, - 0.024151, - 0.037254, - -0.0034193, - 0.02856, - 0.0085587, - -0.034054, - 0.031921, - 0.035707, - -0.030401, - -0.050019, - 0.033525, - -0.026208, - -0.014766, - 0.005177, - -0.00039915, - -0.046073, - -0.0018596, - -0.020781, - 0.017754, - 0.011179, - -0.022668, - 0.019013, - 0.039452, - -0.044684, - -0.0072511, - -0.0016725, - -0.036962, - 0.0035849, - 0.014456, - 0.02626, - -0.056203, - 0.07725, - -0.01311, - 0.033772, - 0.006111, - 0.056201, - -0.013437, - 0.010118, - 0.005274, - -0.023741, - 0.019284, - -0.02158, - 0.0061016, - 0.094849, - -0.02617, - -0.057952, - 0.042057, - 0.073865, - -0.032756, - -0.0054917, - 0.018098, - 0.020109, - 0.046015, - 0.0052064, - -0.03049, - -0.0086437, - -0.12396, - 0.0049551, - -0.016993, - -0.026999, - -0.039324, - -0.028038, - 0.045158, - -0.053009, - -0.0079143, - -0.0080127, - 0.066322, - -0.06965, - 0.0033577, - 0.028798, - -0.026527, - -0.094592, - 0.042988, - -0.020905, - 0.061108, - -0.044051, - -0.024085, - -0.01111, - 0.017834, - 0.10556, - -0.084226, - 0.037262, - -0.0022146, - 0.036823, - 0.0057049, - -0.02148, - -0.0077634, - -0.024625, - -0.11347, - -0.016425, - -0.0025077, - 0.0074178, - 0.014297, - 0.023922, - 0.039479, - -0.041501, - 0.083774, - -0.0019762, - 0.031445, - 0.0013103, - 0.043174, - -0.054996, - -0.0033073, - 0.043804, - 0.0074152, - 0.032487, - 0.05336, - -0.029956, - 0.017177, - -0.025295, - -0.026332, - 0.044337, - -0.038006, - 0.05821, - 0.011351, - 0.053335, - -0.015828, - 0.010421, - 0.043348, - -0.068236, - -0.00078082, - -0.00089681, - -0.0071836, - 0.018822, - 0.051905, - 0.021647, - -0.042969, - 0.084725, - -0.12493, - -0.017301, - 0.083157, - -0.042417, - -0.0097791, - -0.0090952, - -0.02127, - 0.016348, - -0.0031347, - 0.05294, - -0.0024134, - 0.016119, - -0.016924, - 0.048154, - 0.039457, - -0.1043, - -0.0030648, - 0.047281, - 0.017313, - -0.0029081, - -0.01551, - 0.0049931, - -0.033581, - -0.0050852, - 0.041586, - 0.021936, - -0.017742, - -0.056961 - ], - "sculpture": [ - -0.025981, - 0.0098706, - 0.067556, - -0.0085688, - 0.036613, - -0.01825, - -0.073242, - -0.081268, - 0.06338, - -0.028482, - 0.048514, - -0.035619, - 0.039741, - 0.075857, - -0.025261, - -0.020296, - 0.08174, - 0.044158, - 0.015973, - -0.012063, - -0.010491, - 0.0043459, - 0.015655, - 0.020211, - 0.077462, - -0.0063656, - -0.016688, - -0.0007395, - 0.032045, - 0.066616, - -0.034066, - 0.0018495, - 0.010514, - -0.046927, - 0.029492, - 0.011302, - 0.070098, - -0.025758, - 0.065152, - -0.019008, - -0.017352, - -0.11255, - 0.01456, - 0.012897, - 0.027878, - 0.026223, - 0.047186, - 0.00044908, - -0.0098356, - 0.041855, - -0.02725, - -0.017273, - -0.022377, - 0.072535, - -0.058309, - -0.051896, - 0.028742, - -0.036027, - -0.046788, - -0.0028523, - -0.0064989, - -0.047204, - 0.092267, - 0.038505, - 0.082082, - -0.0056196, - -0.038909, - -0.017499, - 0.011919, - 0.056732, - 0.033283, - 0.039192, - -0.021953, - 0.011755, - 0.03405, - -0.035261, - -0.06289, - -0.048376, - 0.076213, - 0.011246, - -0.017731, - -0.04297, - -0.023356, - 0.027145, - 0.0039048, - -0.029718, - -0.044874, - -0.029571, - -0.03885, - 0.052039, - -0.017901, - 0.026327, - -0.063785, - 0.0024153, - 0.044772, - 0.054963, - 0.013674, - 0.050374, - 0.084757, - 0.01717, - 0.02785, - -0.0053215, - 0.070317, - 0.013461, - -0.023204, - -0.07658, - -0.03389, - 0.079606, - -0.057803, - -0.0074742, - -0.01534, - 0.046513, - 0.05176, - 0.000068779, - 0.026002, - 0.022054, - -0.02992, - 0.074451, - -0.0099743, - 0.036042, - -0.019337, - 0.039981, - -0.091957, - -0.0035311, - 0.05955, - -0.0080306, - 0.025858, - -0.060463, - 0.052207, - 0.083717, - -0.036087, - -0.026588, - -0.0045998, - 0.064357, - 0.010096, - 0.022093, - -0.021746, - 0.020551, - 0.029024, - -0.045745, - 0.011891, - -0.025594, - 0.036628, - -0.045575, - -0.0028532, - -0.027878, - -0.049247, - 0.0085082, - 0.027728, - -0.093901, - 0.0081234, - 0.036135, - 0.016851, - -0.093685, - -0.11707, - 0.020245, - -0.046647, - -0.007066, - -0.024578, - -0.015454, - 0.019328, - -0.029748, - -0.070682, - 0.051304, - 0.040892, - -0.0077375, - -0.0071955, - 0.012053, - 0.0041157, - 0.09003, - 0.036393, - 0.05775, - 0.0078771, - -0.03485, - 0.049298, - 0.022377, - 0.034321, - -0.029302, - -0.015286, - -0.0057464, - 0.022643, - -0.022296, - -0.0077172, - -0.021763, - -0.03188, - -0.01158, - 0.043732, - 0.068225, - 0.0911, - -0.026629, - -0.0018304, - 0.054535, - -0.044532, - -0.0060044, - -0.060677, - 0.019357, - -0.0045039, - -0.027841, - 0.011224, - -0.053287, - -0.14192, - 0.069519, - 0.066978, - -0.021921, - 0.033232, - 0.048347, - 0.0047605, - -0.0072269, - -0.013324, - -0.029402, - 0.1146, - 0.0074265, - -0.0041413, - -0.022676, - 0.028834, - 0.017416, - 0.10096, - 0.019333, - -0.020214, - -0.016999, - 0.018622, - -0.080428, - 0.030518, - 0.084551, - -0.0067319, - 0.091115, - 0.056708, - 0.029837, - 0.030854, - 0.025573, - -0.042907, - -0.050975, - -0.038592, - -0.062093, - 0.00058193, - 0.035967, - -0.0037358, - -0.023245, - -0.049146, - -0.061625, - 0.055311, - 0.017644, - -0.032902, - -0.016662, - 0.0029442, - -0.024845, - -0.10849, - 0.030292, - -0.024331, - 0.0016815, - 0.0065617, - -0.034571, - -0.068525, - 0.0017279, - -0.014696, - 0.022762, - -0.086377, - -0.0076504, - 0.0305, - -0.053397, - 0.023306, - -0.02863, - 0.018831, - -0.029121, - 0.058758, - -0.016881, - 0.0060156, - -0.048735, - -0.010999, - -0.056484, - -0.0026993, - 0.060087, - -0.073234, - -0.012666, - -0.040779, - -0.0076948, - 0.051464, - -0.013948, - 0.0094096, - 0.0038412, - 0.078424, - 0.019074, - -0.018558, - 0.010219, - -0.01871, - -0.026516, - -0.049407, - 0.027848, - -0.049924, - 0.047215, - -0.07705, - -0.0050142, - -0.038933, - -0.024186, - -0.0051371, - 0.057338, - -0.027325, - 0.027754, - 0.003673, - -0.019832 - ], - "transport": [ - 0.02339, - 0.015611, - 0.00099565, - 0.027782, - 0.0056311, - -0.03776, - 0.021307, - -0.074424, - 0.066828, - 0.014825, - 0.0089085, - -0.018302, - -0.041498, - -0.026394, - 0.027284, - -0.029635, - 0.075873, - 0.00010083, - 0.057997, - 0.057408, - 0.0017154, - -0.054963, - 0.026632, - 0.027342, - -0.009473, - 0.0012662, - -0.040376, - -0.0033223, - -0.020477, - 0.046994, - 0.028096, - 0.059911, - -0.02378, - -0.01953, - 0.043301, - 0.04402, - -0.000016626, - -0.003882, - 0.047918, - -0.026253, - 0.010078, - -0.10801, - -0.0010208, - 0.015393, - -0.017241, - -0.012917, - 0.015006, - -0.0012345, - -0.054383, - 0.0053164, - -0.012302, - -0.026793, - 0.058938, - -0.021285, - -0.076585, - -0.01602, - -0.00071911, - 0.01785, - -0.031697, - 0.018287, - 0.0016262, - 0.030662, - 0.099572, - 0.0089811, - 0.051469, - 0.040023, - 0.030616, - -0.075623, - -0.031999, - 0.020932, - 0.025545, - 0.0067195, - 0.066832, - -0.02971, - 0.0014585, - 0.0067071, - -0.043701, - -0.025558, - -0.037615, - -0.022748, - -0.0058291, - -0.033423, - -0.02018, - 0.075997, - 0.0065999, - -0.00069696, - 0.013339, - -0.024481, - 0.021772, - -0.069267, - 0.019793, - 0.011177, - -0.06903, - -0.0033513, - -0.042922, - 0.017868, - 0.0071214, - 0.02592, - -0.010522, - 0.0090478, - 0.017984, - -0.038926, - 0.028498, - 0.034364, - 0.023383, - -0.085297, - 0.0055049, - -0.016155, - 0.047437, - 0.028291, - 0.031014, - 0.073591, - 0.077467, - 0.064035, - -0.007273, - -0.017395, - -0.0012595, - 0.0099952, - -0.036714, - 0.0063852, - 0.039472, - 0.034033, - -0.016356, - -0.0030964, - 0.084468, - -0.0069617, - -0.028851, - -0.086851, - 0.025352, - 0.08555, - -0.003358, - -0.007352, - -0.0084232, - -0.023443, - 0.048354, - -0.008265, - 0.034475, - 0.010327, - 0.01809, - 0.024471, - -0.034113, - 0.035248, - 0.015997, - 0.014357, - 0.019618, - 0.0076489, - -0.037326, - -0.0074776, - -0.053805, - -0.017848, - 0.020399, - 0.082803, - 0.012642, - -0.078676, - 0.026795, - -0.0030443, - -0.091928, - -0.022903, - -0.081127, - 0.01267, - 0.013936, - -0.060756, - -0.071961, - 0.046828, - -0.056678, - -0.034042, - 0.068161, - -0.01055, - 0.036638, - -0.032861, - 0.038444, - 0.017637, - -0.027568, - -0.030482, - 0.0069692, - 0.045198, - -0.039387, - 0.034222, - -0.031166, - 0.054595, - -0.005333, - 0.0097819, - 0.02307, - -0.011568, - 0.0093392, - -0.075418, - -0.076568, - 0.058009, - 0.039374, - -0.055988, - 0.030522, - -0.00050721, - -0.009352, - 0.036052, - -0.0032102, - 0.037667, - -0.028875, - -0.037509, - 0.039068, - 0.0083903, - -0.1403, - 0.069836, - 0.054644, - 0.022999, - 0.0010477, - 0.061678, - -0.063413, - -0.015525, - 0.029825, - 0.0055077, - 0.10917, - -0.018201, - 0.00073441, - 0.014581, - 0.0032026, - 0.10808, - -0.017046, - -0.024013, - -0.001237, - 0.00061937, - 0.014012, - -0.043928, - 0.015212, - 0.092267, - 0.014057, - 0.039976, - 0.0026506, - 0.050999, - -0.044381, - -0.015072, - -0.060803, - -0.022618, - -0.043272, - -0.047672, - 0.029312, - 0.0072324, - -0.0071836, - 0.097584, - -0.0018676, - -0.075449, - 0.080589, - 0.03109, - 0.028843, - -0.022339, - -0.065375, - 0.0047587, - 0.016611, - -0.010156, - -0.0035153, - 0.063802, - 0.026962, - 0.0059425, - -0.0006212, - 0.0034836, - 0.011802, - 0.050834, - 0.027627, - 0.03749, - 0.052158, - 0.041674, - -0.028504, - 0.0053149, - -0.075903, - -0.015615, - 0.011049, - 0.022009, - -0.017307, - 0.0062642, - -0.0029928, - 0.028223, - -0.007859, - 0.083259, - -0.0964, - -0.03405, - -0.071231, - 0.012031, - 0.06473, - -0.003679, - 0.0097151, - 0.025122, - 0.0646, - 0.026517, - -0.042996, - -0.019568, - 0.010841, - 0.0025861, - -0.012782, - 0.022338, - 0.034711, - -0.0091436, - 0.0050841, - 0.079251, - -0.047065, - -0.069507, - 0.0023724, - -0.032254, - 0.030364, - 0.015477, - 0.015358, - -0.027001 - ], - "fashion": [ - -0.056417, - -0.0024771, - 0.038115, - 0.028195, - -0.010043, - -0.02604, - -0.042419, - -0.092615, - 0.019797, - -0.048787, - -0.0085697, - -0.041861, - -0.080819, - -0.012758, - -0.033548, - 0.041106, - 0.10193, - 0.042742, - 0.039447, - 0.041547, - 0.032956, - -0.022916, - -0.050615, - 0.076943, - -0.02752, - 0.0031141, - 0.021228, - 0.080834, - -0.12258, - -0.012746, - -0.022506, - -0.054601, - 0.066186, - -0.1291, - 0.057557, - 0.020255, - 0.037598, - 0.035086, - -0.041328, - 0.035004, - -0.049245, - -0.16092, - -0.011239, - -0.0016618, - -0.015711, - -0.014704, - 0.023548, - -0.024466, - -0.038359, - -0.071182, - 0.031891, - -0.052768, - -0.052204, - 0.03337, - -0.10448, - -0.055631, - 0.046797, - 0.015525, - -0.059788, - 0.009542, - -0.021271, - -0.024111, - 0.089578, - -0.032943, - 0.071907, - 0.04419, - -0.007649, - 0.038744, - 0.014696, - -0.018879, - -0.065126, - -0.027623, - 0.019011, - -0.069593, - 0.021833, - 0.021011, - 0.060637, - -0.015094, - 0.00011745, - 0.015805, - 0.019835, - 0.0061028, - -0.017816, - 0.090144, - 0.025322, - 0.0085168, - -0.042549, - 0.065796, - 0.0064482, - -0.0012404, - 0.025874, - -0.010587, - -0.07573, - 0.03958, - 0.052213, - 0.061119, - -0.060423, - -0.01936, - 0.031018, - 0.036277, - 0.0091573, - 0.016883, - -0.024274, - 0.055089, - -0.048619, - -0.043591, - 0.021407, - 0.012204, - 0.044296, - -0.003946, - -0.033034, - 0.074508, - 0.060667, - 0.015094, - -0.051612, - -0.067356, - 0.013998, - 0.013586, - -0.039049, - -0.00098732, - -0.0027705, - 0.018515, - -0.011431, - -0.025575, - 0.088777, - -0.0035814, - -0.055047, - -0.018442, - 0.066701, - 0.064979, - -0.016515, - 0.013159, - 0.034971, - 0.00067606, - -0.024938, - 0.049576, - -0.066807, - 0.026963, - 0.025415, - -0.081901, - 0.05635, - -0.01803, - 0.054076, - 0.021564, - -0.015671, - -0.027053, - -0.0083875, - -0.026449, - 0.064216, - -0.028286, - 0.04179, - 0.054928, - -0.006006, - -0.014433, - -0.021122, - 0.017502, - 0.00072975, - 0.01571, - 0.010885, - -0.0025349, - 0.016746, - -0.025238, - -0.067505, - 0.049625, - 0.016374, - 0.077578, - 0.0013414, - -0.034939, - -0.014757, - -0.002776, - 0.01095, - 0.020418, - 0.027938, - -0.095868, - -0.014221, - 0.061951, - -0.081066, - 0.090595, - -0.022956, - -0.0098925, - 0.030927, - -0.02199, - -0.012233, - -0.063185, - 0.015839, - -0.031386, - -0.030023, - 0.083189, - -0.016892, - 0.013953, - -0.0077631, - 0.072245, - 0.043157, - -0.041865, - 0.035666, - 0.0044564, - 0.018855, - 0.018037, - 0.027674, - 0.033335, - -0.17757, - 0.051341, - 0.073889, - -0.013463, - 0.0081577, - 0.038395, - 0.0056625, - -0.026142, - 0.019249, - 0.001581, - 0.083443, - -0.0011866, - 0.0084439, - 0.037654, - 0.034019, - 0.0046871, - -0.034378, - -0.014804, - -0.070527, - 0.010573, - -0.069369, - -0.022464, - 0.0048393, - 0.087823, - -0.040979, - 0.012218, - 0.061066, - 0.10686, - 0.00098684, - 0.053186, - -0.017825, - -0.083621, - -0.013264, - -0.030574, - 0.027681, - -0.011988, - -0.034329, - -0.0043147, - 0.059385, - -0.04116, - 0.051551, - -0.022672, - 0.00017961, - 0.05722, - -0.036297, - 0.021468, - -0.051318, - -0.050914, - 0.0085114, - -0.035998, - 0.085287, - 0.013671, - 0.026681, - 0.0087716, - -0.016415, - 0.049379, - -0.05243, - 0.041556, - 0.04194, - 0.053735, - 0.02023, - 0.038365, - -0.0015206, - -0.03729, - -0.036175, - -0.015805, - 0.038692, - -0.0040415, - 0.015402, - 0.020782, - -0.030962, - 0.088885, - -0.077251, - -0.027107, - 0.057851, - -0.078213, - -0.02699, - -0.017297, - -0.079896, - 0.028544, - 0.089286, - 0.034135, - 0.013052, - -0.052053, - -0.060637, - -0.016977, - 0.026444, - -0.058232, - 0.033828, - 0.043833, - -0.027319, - -0.0023264, - 0.027248, - -0.031628, - -0.02252, - -0.067978, - 0.02216, - 0.037069, - 0.025773, - -0.019757 - ], - "snowfalls": [ - 0.077447, - -0.024809, - -0.034752, - -0.082752, - 0.017876, - -0.069209, - -0.07763, - -0.074625, - 0.059021, - -0.031203, - 0.019474, - -0.051795, - -0.040772, - -0.0050536, - 0.023093, - 0.0238, - -0.011359, - 0.0084864, - 0.063331, - -0.00709, - 0.014639, - -0.075205, - -0.090591, - 0.10392, - 0.10601, - -0.012578, - 0.0039124, - 0.044685, - 0.1416, - 0.041671, - 0.03576, - -0.048225, - 0.037624, - -0.081604, - -0.0018633, - 0.072704, - -0.0063784, - 0.053596, - -0.042737, - -0.016399, - 0.018286, - -0.04008, - 0.0024095, - 0.027032, - 0.049613, - 0.058973, - 0.024178, - -0.014302, - -0.025955, - 0.034521, - 0.049776, - -0.0023264, - -0.0022452, - 0.053812, - -0.070079, - 0.032619, - 0.14218, - 0.010788, - -0.010138, - -0.0091848, - 0.045278, - 0.0053097, - 0.099395, - 0.0097617, - -0.0084394, - -0.042668, - 0.032671, - 0.013231, - -0.02703, - 0.035391, - 0.0042257, - -0.017394, - 0.018269, - 0.049843, - -0.092044, - -0.020103, - -0.014735, - -0.030314, - -0.041094, - 0.06421, - -0.054459, - -0.01915, - -0.049304, - 0.037902, - 0.041592, - 0.036355, - 0.013711, - -0.0063049, - -0.010506, - -0.078164, - -0.05998, - -0.058825, - -0.091239, - 0.033542, - -0.052636, - 0.059827, - -0.026351, - 0.11677, - 0.044867, - -0.024193, - 0.045259, - -0.03649, - -0.04641, - 0.035616, - 0.10096, - 0.023936, - -0.0056407, - 0.033671, - 0.040598, - 0.011903, - 0.034274, - 0.018389, - 0.038711, - 0.065714, - -0.025141, - -0.058823, - 0.05552, - 0.0752, - -0.0049514, - 0.057849, - 0.04048, - -0.0011026, - 0.056086, - -0.00002063, - 0.12003, - 0.015719, - 0.0076106, - -0.023675, - -0.0609, - 0.06806, - 0.028681, - 0.019478, - -0.0087572, - 0.05181, - 0.061599, - 0.0023941, - 0.058508, - 0.084333, - -0.075753, - 0.0083711, - 0.078329, - -0.084993, - -0.0057776, - -0.081162, - -0.010454, - 0.021048, - 0.036582, - -0.046347, - -0.0085671, - -0.033096, - 0.022286, - 0.063985, - 0.0054659, - -0.0045534, - 0.029896, - -0.030684, - 0.02857, - 0.042451, - -0.051977, - -0.017983, - 0.051415, - -0.027799, - -0.042612, - 0.0043496, - -0.047533, - -0.012938, - 0.051529, - 0.066098, - 0.038898, - 0.081573, - 0.033569, - 0.013328, - 0.05325, - 0.022128, - 0.1435, - 0.010704, - 0.046504, - -0.05201, - -0.075606, - -0.012946, - 0.024568, - 0.028811, - 0.011026, - -0.078227, - -0.025025, - -0.059909, - -0.013626, - 0.11545, - -0.03352, - -0.011961, - 0.042628, - 0.033112, - -0.044994, - -0.050475, - -0.054533, - -0.017654, - -0.045337, - -0.081842, - -0.0096278, - -0.046163, - -0.13123, - -0.038075, - -0.1324, - 0.036286, - 0.011095, - 0.099622, - -0.010229, - 0.092459, - -0.053589, - -0.052977, - 0.069393, - -0.019073, - -0.014194, - -0.013459, - 0.091816, - -0.024453, - 0.016318, - -0.080486, - -0.033316, - -0.074087, - 0.042014, - 0.0092645, - 0.0069689, - 0.085885, - 0.048106, - 0.099685, - -0.12623, - 0.093642, - -0.052316, - 0.0009748, - 0.030627, - -0.061525, - -0.059567, - 0.013289, - 0.026742, - 0.032378, - 0.13346, - -0.036635, - 0.010344, - -0.028102, - -0.01064, - 0.078617, - -0.010859, - -0.03431, - -0.051449, - 0.044283, - 0.072626, - -0.070474, - -0.029995, - -0.071047, - -0.040657, - 0.027489, - 0.0055699, - 0.060264, - -0.04289, - 0.077042, - -0.0096402, - -0.03554, - 0.054602, - 0.058546, - 0.026094, - -0.0062876, - -0.10253, - -0.0687, - -0.037843, - -0.027159, - 0.028517, - -0.0012395, - 0.047674, - -0.084517, - -0.022854, - 0.08356, - -0.093249, - -0.0021718, - -0.046783, - -0.016229, - -0.066915, - -0.055066, - 0.0095634, - -0.024203, - 0.045528, - -0.0010817, - 0.010058, - -0.025536, - 0.011093, - 0.034893, - -0.0040985, - 0.03872, - -0.072388, - 0.0048161, - -0.08641, - -0.041521, - -0.025524, - -0.052158, - 0.04981, - -0.026558, - 0.016013, - 0.025424, - 0.025132, - -0.041742 - ], - "storytelling": [ - -0.051544, - -0.026291, - -0.0095753, - 0.063913, - -0.047582, - -0.012932, - -0.048976, - -0.048877, - -0.0082889, - 0.0090525, - 0.023074, - -0.0354, - -0.0096954, - 0.0060155, - 0.00075461, - 0.0058885, - 0.037987, - 0.010527, - -0.0022442, - 0.012588, - -0.012495, - -0.0080813, - 0.011116, - 0.021468, - -0.048724, - 0.029212, - -0.00028179, - 0.024338, - -0.0099996, - -0.0024356, - -0.051102, - -0.038126, - 0.033455, - -0.062833, - 0.053461, - 0.011563, - 0.036748, - 0.029328, - -0.078487, - -0.023167, - -0.037404, - -0.094251, - 0.040202, - 0.027802, - 0.027862, - -0.051401, - 0.047628, - 0.0057477, - 0.0032493, - -0.025003, - -0.030264, - 0.037744, - 0.011422, - -0.012828, - -0.027966, - 0.025839, - 0.017669, - -0.062449, - -0.017045, - 0.012615, - -0.058386, - -0.046838, - 0.042546, - -0.018449, - 0.0033997, - 0.0079301, - 0.00058238, - 0.020737, - 0.010714, - 0.00056525, - 0.0045751, - -0.041596, - 0.017519, - 0.023877, - 0.030386, - 0.03543, - -0.0084673, - -0.013844, - 0.012363, - -0.028954, - -0.046074, - -0.024236, - -0.026466, - 0.060023, - -0.000056633, - -0.035248, - 0.013783, - 0.010855, - 0.041104, - 0.030392, - -0.0083934, - 0.040078, - -0.081257, - -0.00035342, - -0.0027629, - 0.058156, - 0.038585, - 0.047588, - -0.021452, - 0.013043, - 0.042248, - -0.0045222, - -0.039777, - 0.0060947, - -0.020127, - -0.053536, - -0.034656, - 0.0062716, - -0.058624, - 0.021408, - -0.01015, - 0.041902, - 0.041925, - 0.011142, - -0.055818, - 0.043729, - -0.060031, - 0.0043766, - -0.047168, - 0.032126, - -0.028722, - -0.027327, - -0.009794, - -0.0093478, - 0.051785, - 0.023269, - -0.011836, - -0.045355, - 0.0031797, - 0.088505, - 0.012008, - -0.022944, - -0.057758, - -0.034073, - 0.054258, - -0.0095392, - -0.0013326, - 0.00015377, - -0.0091919, - -0.019023, - 0.029195, - -0.043373, - 0.038123, - -0.017878, - 0.013033, - -0.080247, - -0.043351, - 0.011128, - -0.014218, - -0.0041264, - 0.033149, - 0.034201, - -0.018799, - -0.065314, - -0.02915, - 0.058421, - 0.016206, - 0.047955, - 0.056937, - 0.0063369, - 0.032014, - 0.084625, - -0.085563, - 0.017263, - -0.038352, - 0.052255, - 0.018702, - 0.021868, - -0.036159, - 0.0070466, - 0.036507, - -0.017033, - 0.036821, - -0.016379, - 0.046529, - 0.043097, - 0.036336, - 0.05087, - -0.045636, - -0.017931, - -0.001983, - -0.016471, - -0.003751, - -0.03182, - -0.038891, - -0.044882, - 0.050853, - 0.088444, - 0.0010464, - -0.03674, - 0.018686, - 0.049717, - 0.0049524, - -0.048326, - -0.056205, - 0.049858, - 0.02852, - -0.010774, - 0.0041323, - 0.0050425, - -0.12045, - 0.018678, - 0.024299, - -0.012766, - 0.02854, - 0.053499, - -0.033354, - 0.026065, - 0.020278, - 0.019189, - 0.055792, - 0.0059848, - 0.0054517, - 0.014817, - 0.0035727, - 0.035092, - 0.033771, - -0.017793, - -0.04914, - -0.0028349, - 0.016506, - 0.0061445, - 0.0070899, - 0.063892, - 0.0028208, - -0.057638, - 0.085933, - 0.05306, - -0.026628, - -0.0092529, - 0.048283, - -0.029657, - -0.035671, - 0.0072164, - 0.024715, - 0.056538, - 0.0049284, - -0.028493, - 0.016413, - -0.023657, - 0.023243, - 0.012682, - -0.0080095, - -0.032422, - -0.026925, - -0.013776, - -0.053365, - -0.027523, - 0.03024, - 0.026363, - 0.026813, - -0.031634, - -0.024879, - 0.036415, - 0.011476, - 0.032431, - -0.034806, - 0.0056846, - -0.015316, - 0.037503, - 0.052521, - 0.0044648, - -0.0080091, - 0.04324, - 0.0014818, - -0.004824, - 0.069926, - -0.016693, - 0.014774, - -0.014058, - 0.0082201, - 0.023334, - -0.07041, - -0.017468, - -0.03177, - -0.021281, - 0.017177, - -0.0011338, - -0.0050607, - 0.043824, - 0.055605, - -0.044328, - -0.025209, - 0.0038824, - 0.0045614, - -0.011386, - 0.033508, - 0.021035, - -0.035795, - -0.0092578, - 0.053087, - 0.018694, - 0.011208, - -0.055459, - 0.042679, - 0.04164, - 0.048203, - -0.025777, - 0.015143, - 0.012344 - ], - "ladylike": [ - -0.059584, - 0.031629, - -0.0078504, - 0.027324, - 0.0083142, - 0.031412, - -0.0086818, - -0.085003, - 0.018855, - 0.041642, - 0.0024255, - -0.026262, - -0.066652, - 0.0084372, - -0.098678, - -0.01392, - 0.086249, - 0.024125, - 0.086726, - -0.02075, - 0.027466, - -0.052434, - -0.013663, - 0.09765, - 0.02703, - 0.012644, - 0.03143, - 0.047389, - 0.027034, - -0.040217, - 0.016004, - -0.10863, - 0.014691, - -0.036664, - 0.046908, - -0.019406, - 0.06564, - 0.040861, - -0.022245, - 0.045615, - 0.065925, - -0.078738, - 0.043303, - -0.086662, - -0.035808, - -0.060524, - 0.11191, - 0.017833, - -0.030075, - -0.070571, - 0.028487, - -0.040763, - 0.042511, - -0.02084, - -0.018795, - -0.093926, - 0.012361, - 0.015529, - -0.030312, - 0.026993, - 0.043392, - -0.013279, - 0.0428, - -0.0049991, - 0.054917, - -0.00028477, - -0.059497, - 0.0094769, - -0.033501, - -0.060356, - 0.015721, - -0.010135, - 0.061026, - -0.07396, - -0.0077541, - 0.024128, - -0.023244, - -0.030411, - -0.022445, - 0.02507, - -0.016355, - -0.015312, - 0.044023, - 0.059989, - 0.01917, - -0.021882, - -0.0022487, - 0.0054236, - -0.028005, - 0.01654, - -0.0071199, - -0.0092725, - -0.11698, - -0.016291, - 0.08658, - 0.044283, - -0.039462, - 0.015369, - 0.021261, - 0.027719, - -0.012418, - 0.082563, - -0.073873, - 0.037453, - -0.11357, - -0.04402, - 0.044183, - 0.00072106, - -0.047049, - 0.0044955, - 0.012563, - 0.071616, - -0.02998, - 0.015716, - -0.083229, - -0.051856, - 0.0021996, - 0.070963, - -0.015123, - -0.043612, - 0.057204, - 0.035368, - -0.0011058, - -0.056482, - 0.097044, - 0.039521, - 0.013133, - 0.0031979, - -0.046026, - 0.023068, - -0.083443, - 0.086662, - -0.02591, - 0.042952, - -0.093453, - -0.068254, - -0.0055579, - 0.026825, - -0.00064906, - -0.087903, - 0.067465, - 0.044929, - 0.078463, - -0.039365, - 0.074713, - 0.01016, - 0.069243, - 0.044073, - 0.035361, - -0.0051769, - -0.041477, - 0.03724, - -0.044345, - 0.0045093, - -0.042763, - 0.031026, - 0.052757, - 0.028021, - -0.024799, - 0.028595, - 0.10788, - 0.016122, - -0.10297, - 0.049069, - -0.046907, - 0.032192, - -0.038802, - 0.0057388, - -0.037092, - -0.019667, - 0.046335, - -0.021782, - -0.050587, - -0.10049, - 0.056894, - 0.05246, - -0.028295, - 0.1075, - -0.013767, - -0.095776, - -0.010871, - -0.02195, - -0.07693, - -0.023895, - -0.0061467, - -0.026879, - -0.056417, - 0.11428, - -0.067613, - 0.015074, - -0.019163, - 0.096526, - 0.024769, - -0.048884, - 0.0064033, - 0.031517, - 0.059104, - 0.078594, - -0.017264, - -0.026174, - -0.16962, - 0.064549, - 0.091463, - -0.037465, - 0.080346, - 0.081614, - -0.025401, - -0.027335, - 0.048471, - -0.046914, - 0.06539, - -0.023348, - -0.023596, - 0.06179, - 0.034366, - 0.037657, - -0.041312, - 0.027814, - -0.13042, - -0.01251, - -0.022809, - -0.046983, - 0.0022902, - 0.072729, - 0.0099712, - 0.025036, - 0.046249, - 0.044379, - -0.01546, - -0.023032, - 0.030427, - -0.036009, - -0.095293, - -0.0087538, - 0.018717, - 0.071803, - -0.0071757, - -0.11243, - 0.042898, - -0.020391, - 0.069946, - -0.068491, - -0.005573, - 0.042092, - -0.078871, - 0.053622, - -0.0096647, - -0.074681, - 0.016253, - -0.078532, - 0.042506, - 0.053179, - 0.0038799, - -3.1244e-7, - 0.091499, - -0.003388, - -0.018173, - 0.035572, - 0.069352, - 0.051795, - -0.0068751, - 0.0077079, - -0.0087334, - -0.0036479, - -0.023267, - -0.00039533, - -0.00026108, - 0.036378, - -0.01856, - -0.0097714, - 0.0068114, - 0.074701, - -0.11936, - -0.04115, - 0.10286, - -0.10659, - -0.061442, - -0.069911, - 0.036291, - -0.030632, - 0.079039, - 0.020869, - 0.024149, - -0.045799, - -0.061303, - 0.024776, - -0.02058, - -0.055251, - 0.047279, - 0.056535, - -0.041468, - 0.05128, - 0.046758, - -0.020772, - -0.011179, - -0.010666, - 0.033856, - 0.049486, - -0.037698, - -0.0040471 - ], - "plaintext": [ - 0.03648, - 0.02378, - 0.0068376, - 0.012663, - 0.040295, - 0.029893, - -0.044438, - -0.094316, - -0.063066, - 0.0088067, - 0.0071025, - -0.014756, - -0.09874, - -0.020092, - -0.072828, - 0.04262, - 0.024552, - 0.036429, - 0.024583, - -0.019836, - 0.010011, - 0.029117, - -0.03584, - 0.045925, - -0.020255, - 0.021677, - 0.0016701, - 0.036586, - -0.045667, - 0.00024315, - 0.03697, - -0.015993, - -0.025352, - -0.066195, - -0.013664, - -0.041782, - -0.05127, - 0.030206, - -0.024065, - -0.02974, - 0.0066673, - -0.11008, - 0.017825, - -0.034521, - -0.020372, - -0.058115, - -0.047533, - 0.037665, - -0.035335, - -0.035934, - -0.0014719, - -0.07297, - 0.057399, - -0.04193, - -0.026026, - -0.030416, - 0.0042649, - 0.035789, - -0.029901, - -0.072942, - -0.11187, - -0.066703, - 0.11195, - -0.070246, - 0.0071611, - -0.0024743, - 0.075026, - 0.017981, - -0.010514, - 0.041672, - -0.069704, - 0.060934, - -0.036586, - 0.031438, - -0.039097, - -0.062176, - -0.035877, - -0.052822, - -0.020491, - -0.031115, - 0.01073, - -0.056176, - 0.027277, - -0.020472, - 0.01925, - 0.037862, - -0.0059989, - -0.0025799, - 0.050962, - 0.011208, - 0.023773, - -0.026454, - 0.0049433, - -0.014875, - -0.004735, - 0.05553, - 0.0054897, - -0.026891, - -0.020246, - 0.033542, - -0.0011105, - -0.011261, - 0.056911, - 0.013477, - -0.042171, - -0.060366, - 0.010554, - -0.010062, - 0.071479, - -0.021051, - 0.031774, - 0.10388, - 0.0013359, - -0.018521, - -0.032241, - -0.085376, - 0.076676, - 0.10886, - -0.044056, - -0.048901, - 0.1329, - 0.034191, - -0.024899, - -0.093694, - 0.007997, - -0.064931, - -0.069438, - 0.029611, - -0.066781, - 0.069222, - -0.039014, - -0.00070196, - -0.0030539, - 0.048796, - 0.010025, - -0.02441, - 0.049885, - -0.015453, - 0.066528, - -0.022097, - 0.02637, - -0.01273, - -0.010519, - 0.026395, - -0.018495, - 0.016426, - -0.11713, - -0.030464, - 0.0010269, - 0.0037116, - -0.001655, - 0.013103, - 0.049316, - -0.021599, - -0.0014834, - -0.051153, - -0.0067759, - -0.030153, - -0.029841, - 0.023646, - -0.022594, - -0.040453, - -0.006965, - -0.0066714, - 0.04086, - -0.10578, - 0.026768, - 0.024071, - -0.02046, - 0.027959, - 0.072613, - 0.045995, - -0.016145, - -0.04124, - -0.069218, - 0.032445, - 0.02136, - 0.025386, - 0.015344, - 0.047598, - -0.0065695, - -0.010452, - -0.01093, - -0.004445, - 0.058946, - 0.02031, - 0.0001992, - 0.12645, - -0.0070599, - 0.039722, - 0.018667, - 0.073109, - -0.069186, - 0.0080446, - 0.026155, - -0.022229, - -0.013342, - -0.041281, - -0.047041, - 0.0016773, - -0.12354, - -0.011279, - -0.066774, - 0.064997, - -0.030908, - -0.018278, - 0.050857, - 0.027176, - 0.019011, - -0.01867, - 0.040589, - -0.022555, - -0.0021462, - -0.034413, - -0.024123, - -0.0077897, - -0.065699, - 0.02687, - -0.0073143, - -0.010549, - 0.074133, - -0.026081, - -0.057591, - 0.083031, - 0.094058, - -0.042446, - 0.032743, - 0.068041, - 0.017743, - 0.076412, - -0.019286, - -0.024214, - -0.062799, - -0.04777, - 0.064257, - -0.11168, - -0.034022, - 0.016097, - 0.00063967, - -0.033419, - 0.090269, - 0.0025041, - -0.0078769, - 0.063824, - -0.058732, - 0.026232, - -0.032138, - 0.021482, - -0.00185, - 0.050927, - 0.021347, - 0.0067161, - -0.0014573, - -0.039238, - 0.074247, - 0.009411, - 0.015611, - -0.016884, - -0.10902, - 0.029252, - -0.0057982, - -0.035479, - -0.02753, - -0.076175, - 0.012164, - -0.011576, - 0.042196, - -0.03178, - -0.03315, - 0.012614, - 0.033661, - 0.087337, - -0.025087, - -0.044114, - 0.084284, - -0.051927, - 0.048736, - -0.0268, - 0.033732, - 0.0069564, - 0.054049, - -0.036261, - -0.014239, - 0.000095145, - -0.022546, - -0.035981, - -0.023983, - 0.026746, - -0.022177, - 0.051585, - -0.052179, - -0.0018998, - -0.064216, - 0.0072554, - 0.048265, - 0.0058392, - 0.012971, - -0.11193, - -0.049652, - 0.041081 - ], - "chickens": [ - -0.027806, - 0.042121, - 0.001528, - -0.096319, - -0.0041167, - -0.056161, - 0.029938, - -0.071628, - 0.033941, - 0.043522, - 0.041777, - -0.04358, - -0.012351, - -0.00036241, - -0.002042, - -0.049799, - 0.032937, - 0.059872, - 0.019901, - 0.027517, - 0.094046, - -0.026442, - 0.016518, - 0.0065849, - 0.034259, - -0.030018, - 0.0054288, - 0.011193, - 0.1204, - 0.052641, - -0.000014573, - -0.0060188, - 0.02183, - 0.05848, - 0.021953, - -0.018661, - 0.0028713, - -0.080394, - 0.089211, - -0.023745, - -0.023799, - -0.043613, - -0.069302, - 0.016044, - -0.00361, - -0.010097, - 0.068932, - -0.03632, - -0.029149, - 0.026097, - 0.042385, - 0.029807, - 0.0088958, - 0.014051, - -0.073186, - -0.024488, - 0.054883, - 0.0061305, - -0.044608, - 0.0065815, - -0.059132, - -0.072421, - 0.10013, - -0.0061058, - 0.066927, - 0.049861, - 0.067597, - -0.039991, - -0.055268, - -0.0087436, - -0.013317, - -0.0097209, - 0.12093, - -0.036143, - -0.06181, - 0.10609, - -0.046649, - -0.023021, - 0.0052477, - 0.022766, - -0.0090736, - -0.061507, - 0.0013787, - 0.06264, - -0.0060854, - 0.021789, - -0.066568, - -0.021361, - 0.0011646, - 0.018142, - -0.041679, - -0.056797, - -0.070346, - -0.02145, - -0.015166, - 0.048091, - 0.016196, - 0.053705, - 0.063111, - -0.049208, - 0.015588, - 0.0064049, - -0.069781, - 0.064372, - 0.063568, - -0.071619, - -0.020888, - -0.053127, - -0.084072, - 0.015232, - -0.025925, - 0.063128, - 0.046579, - -0.02213, - 0.0073911, - -0.034473, - -0.029096, - 0.052079, - -0.04055, - -0.047074, - -0.084347, - 0.0256, - -0.019693, - -0.094344, - 0.06724, - 0.0052533, - 0.048636, - -0.072003, - -0.044223, - 0.018316, - 0.025002, - 0.07006, - 0.056164, - -0.042593, - -0.0037709, - -0.034152, - -0.039808, - 0.081694, - 0.03845, - 0.037798, - 0.043163, - -0.0059867, - 0.0089142, - 0.015645, - 0.049874, - -0.12145, - 0.046909, - 0.045889, - -0.050122, - -0.16492, - -0.01057, - 0.082726, - -0.01773, - 0.012234, - 0.056364, - -0.016441, - 0.053997, - -0.030275, - -0.050133, - -0.080148, - 0.058771, - -0.0013386, - 0.012282, - -0.0047574, - 0.032038, - -0.027749, - 0.027156, - 0.073996, - 0.041782, - -0.013834, - 0.011518, - -0.049033, - 0.0046472, - 0.038522, - -0.068748, - 0.052877, - 0.062922, - 0.039186, - 0.005296, - 0.0051772, - 0.072789, - 0.021909, - 0.0059061, - -0.038994, - -0.10096, - 0.0036053, - 0.070352, - 0.11728, - -0.036399, - -0.06142, - 0.024741, - -0.016566, - -0.090735, - -0.087851, - 0.070868, - 0.029207, - 0.05284, - 0.069671, - 0.04096, - 0.015911, - -0.10692, - 0.056797, - -0.021324, - -0.022617, - -0.022286, - -0.029295, - -0.033135, - -0.063602, - 0.023418, - -0.074219, - 0.095619, - -0.023722, - 0.070683, - -0.04434, - 0.017145, - 0.014263, - -0.017939, - -0.018158, - -0.009151, - -0.0054447, - 0.023486, - -0.043667, - 0.032221, - 0.064791, - 0.04878, - 0.014244, - 0.010814, - 0.048283, - -0.052937, - -0.045493, - -0.03674, - -0.0088636, - -0.10157, - -0.049819, - 0.044005, - 0.0017389, - 0.0087083, - 0.046612, - 0.062629, - -0.024516, - -0.0040736, - -0.089449, - -0.0091741, - -0.023837, - 0.0039223, - 0.048709, - 0.050647, - 0.004745, - 0.035723, - 0.039736, - -0.015819, - -0.013281, - -0.029247, - 0.00042253, - -0.00004825, - -0.0099638, - -0.014048, - -0.05899, - 0.04865, - -0.016955, - -0.013603, - 0.027117, - 0.065371, - -0.076203, - 0.042262, - 0.03592, - 0.0039364, - 0.032286, - -0.02737, - 0.011862, - -0.0068977, - 0.073121, - -0.078442, - -0.0073054, - -0.017778, - -0.05585, - 0.048664, - -0.031304, - -0.021677, - -0.08994, - -0.013827, - 0.082249, - 0.055604, - -0.012615, - -0.0035037, - 0.0010638, - 0.049169, - 0.013391, - -0.019695, - -0.0099203, - 0.073921, - -0.00091129, - -0.086609, - 0.0024605, - -0.029516, - -0.0081819, - -0.010887, - 0.001206, - -0.0063945, - 0.012967 - ], - "topics": [ - 0.043871, - -0.071962, - 0.088843, - -0.031945, - 0.022831, - -0.0023292, - 0.064432, - -0.10853, - 0.044905, - 0.028047, - 0.013574, - -0.079929, - 0.014495, - -0.010006, - 0.06411, - -0.022969, - 0.069837, - 0.047085, - 0.075213, - -0.010275, - 0.0069818, - 0.047736, - 0.12879, - 0.091406, - 0.01423, - -0.031276, - -0.088948, - -0.019935, - 0.13084, - -0.0016139, - 0.052334, - -0.062998, - 0.027003, - -0.10725, - 0.038937, - -0.016943, - 0.020761, - 0.050999, - -0.033166, - 0.023374, - -0.053111, - -0.1095, - -0.0066561, - -0.021667, - 0.039067, - -0.056242, - 0.018817, - -0.056629, - 0.01855, - -0.032739, - -0.026138, - -0.013222, - -0.018088, - 0.0055723, - -0.045857, - 0.042163, - -0.051178, - 0.048517, - -0.046101, - 0.012535, - -0.016848, - -0.038424, - 0.21797, - 0.058544, - 0.12577, - 0.0014606, - 0.034429, - 0.022778, - 0.0018831, - 0.036044, - -0.013335, - 0.040044, - -0.01828, - -0.0046589, - 0.066021, - -0.05586, - 0.00066985, - -0.048664, - 0.014541, - -0.030013, - -0.012328, - 0.031028, - -0.0087646, - 0.068543, - -0.028891, - 0.025871, - 0.025293, - -0.021609, - 0.043483, - 0.046013, - 0.051446, - -0.006293, - -0.042252, - 0.09303, - 0.032853, - -0.025246, - -0.019582, - 0.076016, - -0.12622, - 0.006356, - -0.016232, - -0.012805, - -0.050017, - -0.037734, - 0.030822, - -0.013137, - 0.06118, - -0.0054031, - 0.075969, - -0.058775, - -0.012555, - 0.020569, - 0.061655, - -0.023608, - -0.018524, - 0.029337, - -0.062411, - -0.045658, - -0.043177, - -0.026065, - 0.005466, - 0.014752, - 0.038469, - -0.0792, - 0.13085, - 0.032467, - -0.11116, - -0.10551, - 0.0054065, - 0.10874, - 0.012989, - 0.10543, - -0.018299, - 0.0082686, - 0.019182, - 0.062353, - 0.0024362, - 0.076787, - -0.013117, - 0.091171, - 0.041158, - -0.01017, - -0.031577, - -0.0063366, - -0.0034331, - -0.037433, - -0.044884, - -0.023596, - 0.033029, - -0.018398, - 0.039129, - 0.080052, - -0.028732, - -0.092452, - 0.0014758, - 0.075591, - 0.01154, - 0.023214, - 0.0078751, - 0.056353, - 0.028694, - 0.065004, - 0.0045221, - 0.051854, - 0.0011526, - -0.015696, - -0.00062216, - -0.11228, - -0.019009, - -0.031116, - -0.03475, - -0.0047802, - 0.059159, - -0.014186, - -0.020604, - 0.10122, - -0.06946, - 0.044848, - -0.020829, - 0.016593, - 0.05125, - 0.082255, - 0.020187, - 0.04096, - 0.12336, - -0.080547, - 0.049524, - 0.13405, - -0.028899, - -0.01697, - -0.036983, - 0.085399, - -0.11982, - -0.036568, - 0.013615, - 0.045844, - 0.0127, - -0.032184, - -0.093131, - -0.019166, - -0.13323, - 0.041479, - 0.026584, - -0.060148, - -0.004167, - -0.066909, - -0.041797, - 0.0059228, - 0.039023, - -0.049415, - 0.085225, - 0.014925, - 0.041603, - 0.036726, - 0.079587, - 0.02553, - -0.0019489, - -0.026767, - -0.09424, - -0.063364, - -0.03412, - 0.047459, - -0.086864, - 0.09676, - 0.026285, - -0.062619, - 0.070015, - 0.1388, - 0.0087104, - 0.017829, - 0.010461, - -0.046218, - -0.15018, - 0.013846, - 0.062656, - 0.044106, - -0.033961, - 0.0897, - -0.041059, - -0.072218, - -0.065209, - -0.027008, - -0.035656, - -0.056852, - -0.014681, - 0.025237, - 0.032859, - -0.025784, - 0.0558, - -0.01304, - 0.068432, - 0.0063083, - -0.049679, - 0.0041419, - -0.069325, - -0.065077, - -0.058755, - 0.046747, - 0.077956, - 0.023896, - 0.059484, - 0.012752, - 0.033025, - -0.10389, - -0.011173, - -0.078173, - -0.015724, - -0.002019, - 0.067802, - -0.077538, - 0.045143, - 0.10803, - -0.079558, - -0.056906, - 0.097273, - -0.055479, - 0.0026916, - 0.028697, - -0.041433, - 0.032983, - 0.055539, - -0.023212, - 0.07529, - -0.076803, - 0.0025523, - -0.032221, - 0.04065, - 0.039116, - -0.081837, - 0.05025, - -0.027434, - -0.021064, - -0.0030469, - -0.09022, - 0.052047, - 0.0072738, - 0.0053504, - 0.053223, - -0.028842, - -0.00063779 - ], - "modern": [ - -0.06088, - -0.040429, - 0.058355, - 0.015569, - -0.034374, - -0.031298, - 0.007614, - -0.080321, - -0.0087535, - 0.015077, - -0.015543, - -0.073119, - -0.0050465, - 0.0055498, - 0.0031084, - -0.014239, - 0.1256, - -0.025378, - 0.074754, - 0.035296, - 0.0091573, - -0.0033415, - 0.024357, - 0.073926, - 0.02448, - -0.012602, - -0.0078562, - 0.012984, - 0.094515, - 0.030738, - 0.012124, - -0.010526, - 0.02033, - -0.074601, - 0.052577, - 0.023854, - 0.027912, - 0.018396, - 0.027275, - 0.011207, - -0.00063989, - -0.11745, - 0.010118, - 0.015117, - -0.011995, - -0.056543, - 0.0067595, - -0.017219, - -0.0014308, - -0.008819, - -0.039492, - -0.0075135, - -0.063785, - 0.049773, - 0.024656, - 0.015518, - 0.099252, - 0.0047831, - -0.074896, - 0.013154, - 0.05884, - -0.011609, - 0.13353, - 0.022766, - 0.091075, - 0.04071, - -0.028351, - 0.013191, - 0.038532, - -0.0059386, - 0.021632, - -0.042477, - 0.039797, - -0.019149, - 0.0027371, - 0.010396, - -0.012005, - -0.026169, - 0.0060897, - 0.036977, - 0.001428, - 0.07258, - -0.065479, - 0.084496, - -0.00043379, - -0.0077266, - -0.049095, - -0.064886, - -0.036686, - 0.038185, - -0.019384, - -0.017583, - -0.1009, - -0.017305, - 0.021379, - 0.086946, - -0.042861, - -0.024075, - -0.020754, - -0.039561, - 0.052248, - -0.0067424, - -0.011625, - -0.043569, - -0.023156, - -0.14952, - 0.057802, - 0.0061954, - -0.018713, - 0.018024, - -0.015333, - 0.069221, - 0.044998, - 0.005438, - -0.063849, - 0.015816, - -0.0092684, - 0.029255, - -0.057822, - 0.0009024, - 0.0048884, - -0.01222, - -0.018232, - -0.021386, - -0.026197, - 0.0017685, - -0.054695, - -0.018708, - 0.0014766, - 0.087969, - -0.018199, - 0.088519, - 0.013219, - -0.026455, - -0.022122, - -0.064408, - 0.033326, - 0.01851, - 0.020334, - -0.064455, - 0.021854, - -0.0060539, - -0.016949, - 0.10172, - -0.0017621, - -0.030363, - 0.081366, - 0.039623, - -0.021867, - -0.015318, - 0.091983, - 0.12698, - 0.0282, - -0.036043, - -0.031428, - 0.012114, - 0.012692, - 0.012515, - 0.020656, - -0.052105, - -0.012372, - 0.0066269, - -0.0043496, - 0.015556, - -0.0033793, - -0.0032475, - 0.0004675, - -0.0055933, - 0.0652, - 0.024462, - 0.0072115, - -0.012383, - 0.008192, - 0.036859, - 0.05918, - 0.078352, - -0.023253, - 0.043232, - -0.030496, - 0.0030669, - 0.015237, - 0.045264, - 0.015507, - -0.057062, - -0.0056025, - -0.020841, - -0.035789, - 0.097875, - -0.058441, - -0.0039297, - 0.067115, - 0.106, - -0.012315, - -0.02382, - -0.052841, - -0.010597, - -0.03189, - -0.00098023, - -0.0080817, - 0.032935, - -0.13582, - 0.069075, - 0.0011497, - 0.022136, - -0.012754, - -0.045938, - 0.043004, - -0.02585, - -0.045072, - 0.059548, - 0.18687, - -0.029398, - 0.0050145, - 0.030329, - 0.043034, - 0.054341, - 0.0043294, - -0.029135, - -0.044648, - -0.0024313, - 0.0029236, - 0.01784, - 0.019317, - 0.10733, - -0.082266, - -0.020197, - 0.037498, - 0.083132, - 0.0019728, - -0.095205, - -0.019876, - -0.020295, - -0.044387, - -0.010794, - 0.041422, - 0.0073126, - 0.014124, - 0.037154, - 0.050043, - -0.018566, - 0.077252, - 0.053486, - -0.023109, - 0.062491, - -0.16894, - 0.028141, - -0.06212, - 0.017492, - -0.0078805, - -0.036315, - 0.021007, - 0.018985, - -0.063305, - 0.050992, - -0.033283, - 0.079071, - -0.0035109, - 0.016437, - 0.013694, - 0.029428, - 0.019217, - -0.04309, - 0.035476, - -0.02006, - 0.021119, - -0.016643, - 0.014675, - 0.015149, - 0.030085, - 0.021507, - 0.013344, - 0.096452, - -0.098134, - -0.02484, - -0.018526, - -0.10427, - 0.0084116, - 0.070935, - 0.010412, - -0.037091, - 0.13244, - 0.020872, - -0.020165, - -0.025602, - -0.072101, - -0.0071361, - -0.046212, - -0.078348, - -0.0034088, - 0.038165, - -0.026399, - 0.033926, - 0.056359, - -0.090652, - 0.052275, - 0.018403, - 0.02019, - 0.031494, - -0.043475, - -0.058646 - ], - "marijuana": [ - -0.063221, - -0.0035901, - -0.058288, - 0.12511, - -0.014556, - -0.033773, - 0.012679, - -0.081476, - 0.036232, - 0.039219, - -0.071536, - -0.013175, - 0.00094804, - -0.0097156, - 0.0128, - -0.036497, - 0.087075, - -0.05495, - 0.014598, - 0.061992, - 0.0035282, - 0.0071182, - 0.0055041, - 0.028656, - -0.03953, - -0.096288, - 0.012046, - 0.079816, - 0.084127, - 0.024534, - -0.01044, - 0.00028762, - -0.0043232, - 0.0095383, - 0.043763, - 0.0219, - 0.039654, - -0.035139, - -0.021697, - 0.019563, - 0.030529, - -0.08903, - -0.0021346, - -0.022206, - 0.081137, - -0.015191, - 0.0018235, - 0.058094, - -0.014111, - 0.029358, - -0.049164, - 0.037464, - 0.032269, - 0.035741, - -0.080643, - -0.050649, - -0.016688, - -0.022657, - 0.0028746, - -0.027645, - 0.0094594, - -0.035368, - 0.069445, - 0.034644, - -0.030445, - -0.048555, - 0.11111, - -0.073877, - 0.012423, - 0.030612, - 0.047548, - 0.058759, - 0.0088922, - -0.059212, - -0.049943, - -0.07951, - 0.002566, - -0.0075098, - -0.0046409, - -0.010765, - -0.0093801, - -0.0044739, - -0.095883, - 0.020125, - -0.073761, - -0.052904, - 0.037394, - -0.01267, - 0.058635, - 0.032862, - 0.044266, - 0.0033924, - -0.071836, - 0.0072764, - -0.021529, - 0.040477, - -0.053981, - -0.031285, - 0.00037905, - 0.078129, - 0.014056, - -0.0092683, - -0.014104, - -0.088197, - 0.021724, - -0.072975, - -0.1063, - 0.041802, - 0.065266, - 0.099927, - -0.0027548, - 0.054883, - 0.04959, - 0.011734, - -0.014016, - 0.022696, - 0.0077669, - -0.083093, - -0.047206, - 0.079289, - -0.022158, - 0.02702, - 0.0086984, - -0.071997, - 0.04894, - -0.022953, - -0.031058, - -0.066305, - -0.003404, - 0.050883, - 0.042838, - -0.013588, - 0.046211, - -0.0060624, - 0.036875, - -0.11094, - -0.081687, - 0.0047305, - -0.012083, - -0.0079776, - 0.071949, - 0.043973, - -0.071257, - -0.060366, - 0.00042877, - 0.0068743, - 0.005084, - 0.017988, - 0.0074672, - -0.040179, - 0.015861, - 0.066048, - 0.013466, - -0.057795, - 0.025996, - -0.0075257, - 0.0066142, - -0.023076, - 0.048038, - 0.032562, - 0.060703, - 0.10995, - -0.074378, - 0.016414, - 0.0047665, - -0.088517, - 0.078555, - 0.055755, - -0.0094368, - 0.042163, - -0.028895, - -0.038649, - 0.027206, - 0.025392, - -0.012425, - 0.059542, - -0.022888, - -0.0069134, - -0.038535, - -0.071163, - 0.030612, - -0.0020642, - -0.0086073, - -0.050322, - 0.10711, - -0.053092, - 0.069746, - 0.10942, - 0.010413, - -0.026958, - 0.13754, - 0.0026949, - -0.016946, - 0.038009, - -0.0060901, - -0.023969, - -0.017952, - 0.075319, - 0.0017873, - -0.062319, - -0.14505, - 0.012531, - -0.037514, - 0.036236, - 0.0057078, - 0.018053, - 0.10343, - 0.11662, - 0.012519, - -0.019083, - 0.087467, - 0.0061216, - -0.011491, - 0.02089, - 0.080402, - 0.015916, - -0.032119, - -0.0078629, - -0.025857, - -0.041237, - 0.017157, - -0.014419, - -0.021028, - 0.068438, - 0.0091924, - 0.029545, - -0.0016888, - 0.037061, - -0.012753, - -0.0093381, - -0.091086, - -0.016796, - -0.10792, - -0.0056809, - 0.000057619, - -0.054739, - 0.044475, - 0.00082998, - 0.001419, - -0.079223, - 0.0029872, - -0.047646, - 0.0039474, - -0.043975, - -0.0066773, - -0.025606, - -0.0093803, - -0.0004694, - 0.049681, - 0.0045756, - 0.01224, - 0.052952, - 0.068083, - -0.09088, - -0.0024244, - -0.021581, - -0.017411, - 0.014122, - 0.00051106, - -0.089578, - 0.031516, - 0.020962, - -0.058349, - -0.001524, - 0.043245, - -0.020217, - 0.013731, - -0.055828, - -0.0052335, - 0.064912, - -0.012087, - 0.091769, - -0.10437, - -0.0012303, - -0.061087, - -0.041314, - -0.051935, - 0.032502, - -0.014185, - -0.011587, - 0.090481, - 0.067465, - -0.038204, - -0.050806, - -0.026078, - 0.0074167, - -0.0038688, - 0.044626, - 0.025238, - -0.052173, - 0.055079, - -0.010414, - -0.013807, - 0.046364, - -0.084487, - 0.035796, - 0.023256, - -0.0314, - 0.020104, - -0.01849 - ], - "microclimate": [ - 0.028314, - -0.055964, - -0.014762, - -0.0012173, - -0.011811, - -0.051886, - 0.0068098, - -0.051792, - -0.010561, - 0.018251, - -0.026309, - -0.037558, - -0.034661, - 0.029049, - 0.073816, - -0.01456, - 0.05223, - 0.028629, - 0.036604, - 0.078217, - -0.0064923, - -0.026032, - 0.012863, - 0.045644, - 0.055829, - -0.021284, - -0.025439, - 0.056787, - 0.074238, - 0.041118, - 0.024442, - 0.0065009, - 0.026593, - -0.069724, - 0.0082543, - 0.042376, - 0.074787, - -0.033651, - -0.033226, - -0.023206, - 0.049315, - -0.064981, - -0.0081981, - -0.038438, - -0.024023, - -0.057397, - 0.0075277, - -0.0063089, - -0.046778, - 0.05844, - -0.044442, - 0.020444, - -0.012938, - 0.060376, - -0.042669, - -0.0057019, - 0.042003, - 0.042343, - -0.037986, - -0.00058629, - 0.034668, - 0.010697, - 0.039798, - -0.048062, - 0.076019, - 0.00049228, - 0.0018009, - 0.014038, - 0.050107, - -0.023943, - 0.068071, - 0.063655, - -0.057284, - 0.022554, - -0.04631, - -0.065106, - -0.025303, - -0.049767, - -0.042691, - 0.024571, - -0.011082, - 0.033022, - 0.050271, - 0.051932, - 0.0052316, - -0.018726, - 0.015806, - -0.035013, - -0.00049349, - -0.017511, - 0.0086112, - 0.020978, - -0.055548, - -0.01035, - -0.051868, - 0.096872, - 0.00016173, - 0.11267, - 0.082379, - -0.040041, - 0.031233, - -0.034607, - -0.0052917, - 0.039417, - -0.0012707, - -0.073643, - -0.028922, - -0.0069897, - 0.053836, - 0.005886, - -0.050381, - 0.060156, - 0.021781, - 0.032413, - 0.016325, - -0.033203, - -0.0025496, - 0.063381, - -0.060036, - 0.068096, - 0.01859, - 0.0086633, - 0.03768, - -0.013437, - 0.059493, - -0.05836, - 0.03485, - -0.051881, - 0.0063979, - 0.071086, - 0.014639, - -0.042169, - -0.01061, - -0.0092272, - -0.0034316, - 0.050135, - 0.0067866, - 0.016162, - 0.020516, - -0.0019422, - 0.018552, - -0.029596, - 0.022666, - -0.033167, - -0.023461, - -0.0029949, - -0.021938, - -0.037854, - -0.017925, - 0.0029789, - -0.0059663, - 0.063254, - 0.062932, - -0.021234, - 0.03966, - 0.039783, - 0.018148, - 0.059804, - -0.011993, - 0.038617, - 0.032639, - -0.094934, - -0.079998, - 0.0042595, - -0.0029032, - 0.027385, - 0.0058652, - -0.012028, - 0.037673, - 0.10348, - -0.071673, - 0.034815, - -0.035861, - -0.078008, - -0.029554, - -0.0074413, - 0.018669, - 0.018562, - -0.02066, - -0.015212, - -0.02272, - 0.09696, - -0.0031758, - -0.049857, - -0.0089771, - 0.0085174, - 0.0058683, - 0.030002, - -0.016218, - 0.0082236, - 0.039443, - 0.0086638, - 0.031586, - -0.020149, - -0.073621, - -0.0054798, - 0.014151, - 0.055797, - 0.0076987, - 0.0015517, - -0.11617, - 0.011431, - -0.051937, - -0.020462, - 0.015504, - 0.042452, - 0.0058379, - 0.039951, - -0.070095, - 0.02673, - 0.061673, - 0.01424, - 0.067445, - -0.01903, - 0.069539, - 0.040407, - 0.0084323, - -0.024236, - -0.007539, - -0.0011744, - -0.0093832, - 0.026866, - 0.030439, - 0.048837, - 0.0048021, - 0.015001, - 0.00019633, - 0.031325, - 0.0087458, - -0.036608, - -0.030625, - -0.026771, - -0.055181, - -0.0041547, - 0.0073255, - 0.03879, - 0.03727, - 0.014655, - 0.037606, - 0.019413, - 0.014456, - 0.036256, - 0.028025, - 0.027969, - -0.037905, - 0.035412, - 0.032598, - 0.012549, - 0.010396, - -0.01621, - -0.0050877, - -0.024499, - -0.053584, - -0.080524, - -0.018921, - -0.0079411, - 0.050384, - -0.015144, - 0.027639, - 0.0017116, - 0.057703, - 0.013676, - -0.027623, - -0.02095, - -0.012439, - -0.052102, - -0.029624, - 0.011571, - 0.009498, - -0.010877, - -0.057824, - 0.062676, - -0.080488, - -0.029112, - 0.074197, - -0.088225, - 0.004711, - 0.033134, - -0.045227, - -0.066257, - 0.08659, - -0.00033245, - 0.045236, - 0.022926, - -0.035746, - 0.0036969, - -0.014481, - 0.011077, - -0.032875, - 0.078307, - -0.066112, - 0.044765, - -0.0040702, - 0.0075192, - -0.01322, - -0.014013, - 0.041422, - 0.030201, - -0.0066338, - -0.022663 - ], - "cryptocurrency": [ - 0.014738, - -0.023706, - -0.048161, - -0.013459, - -0.03716, - 0.04558, - 0.037472, - -0.021042, - 0.013304, - 0.05614, - 0.013877, - -0.03212, - -0.12772, - 0.017552, - -0.018267, - 0.052753, - 0.036005, - 0.017422, - 0.046288, - -0.038536, - 0.00030724, - 0.022053, - 0.026031, - 0.025944, - 0.037525, - 0.014688, - 0.0098364, - -0.054454, - 0.052318, - -0.040067, - 0.062686, - -0.011985, - -0.082395, - -0.029911, - 0.027112, - 0.011736, - 0.058177, - -0.0062563, - -0.060897, - -0.0075438, - -0.059808, - -0.085428, - -0.011517, - 0.024246, - -0.004412, - -0.014493, - 0.010138, - 0.023618, - 0.010165, - 0.020823, - -0.0094963, - -0.036286, - -0.020327, - 0.0050388, - -0.051306, - -0.0067318, - 0.044994, - 0.021721, - -0.020645, - 0.010903, - 0.016276, - -0.030348, - 0.021639, - 0.052536, - -0.030355, - 0.0099314, - 0.044688, - 0.019023, - -0.0023731, - -0.037977, - -0.03673, - -0.015096, - -0.0031024, - -0.013363, - 0.0013667, - 0.041137, - -0.029529, - -0.0048655, - 0.016953, - -0.039626, - 0.01363, - 0.00056191, - -0.029225, - 0.054106, - -0.024379, - -0.027925, - -0.047999, - -0.026955, - -0.0055912, - -0.027562, - 0.020036, - 0.01898, - -0.056633, - 0.03617, - -0.02745, - 0.048334, - 0.0058391, - -0.098685, - 0.024602, - 0.041854, - -0.051048, - -0.025217, - 0.011466, - 0.011671, - -0.025962, - -0.044852, - -0.01243, - 0.030649, - -0.015179, - -0.011199, - 0.022602, - 0.01424, - 0.062671, - -0.0051319, - -0.0096827, - 0.058528, - -0.035151, - 0.038134, - -0.034147, - -0.004858, - 0.0010995, - -0.021553, - 0.042277, - -0.041599, - 0.066813, - -0.049609, - -0.012488, - 0.0096239, - 0.051615, - 0.053608, - 0.0050859, - -0.017624, - -0.0019361, - -0.055842, - 0.073055, - 0.026089, - 0.0017328, - 0.023373, - 0.0047762, - 0.00040532, - -0.0016147, - 0.013085, - -0.017205, - -0.013936, - 0.0047105, - 0.023225, - -0.0013145, - -0.085056, - -0.002554, - -0.049435, - 0.04481, - 0.040415, - 0.0048229, - -0.038544, - -0.0085948, - 0.016115, - 0.0080255, - 0.033102, - -0.050451, - 0.041527, - -0.010134, - 0.039139, - -0.047766, - 0.0083549, - -0.027111, - -0.055562, - 0.046028, - -0.00558, - -0.017897, - 0.042931, - -0.040423, - 0.03672, - -0.010235, - -0.0032402, - -0.020901, - 0.020651, - -0.054036, - 0.0068896, - -0.035803, - -0.006863, - 0.00023671, - 0.01992, - 0.0037051, - 0.0025951, - -0.0048731, - -0.047507, - 0.0019553, - 0.072965, - 0.045884, - -0.0051593, - -0.0033969, - 0.046204, - 0.0020708, - 0.00094206, - -0.0028134, - -0.090258, - -0.04518, - -0.019554, - -0.019015, - 0.0033716, - -0.11174, - 0.019299, - -0.016805, - 0.040104, - -0.022215, - -0.0074474, - 0.021599, - -0.017658, - -0.010592, - -0.013245, - 0.076478, - -0.011251, - -0.01813, - -0.055792, - 0.016753, - 0.051952, - -0.031275, - 0.01701, - 0.022952, - 0.0017802, - 0.03567, - -0.050592, - -0.069397, - 0.070307, - -0.033703, - 0.061656, - 0.005282, - 0.056787, - 0.040809, - -0.0090632, - -0.074573, - -0.016175, - 0.01308, - -0.010608, - 0.026311, - -0.042669, - 0.0083468, - 0.055227, - -0.010699, - -0.016164, - 0.00097236, - -0.013416, - 0.036104, - 0.015935, - -0.005315, - -0.047123, - -0.051507, - 0.0055672, - 0.0076345, - -0.0052017, - 0.020843, - 0.00034671, - 0.032763, - -0.013414, - 0.011536, - 0.014534, - -0.033101, - -0.014663, - -0.032891, - 0.00065534, - 0.050803, - 0.032054, - 0.010892, - -0.036128, - 0.00045031, - -0.02882, - 0.019458, - -0.019421, - 0.035365, - 0.013384, - -0.030393, - 0.078127, - -0.087269, - -0.0017779, - 0.029972, - -0.027104, - 0.046244, - -0.030793, - -0.001476, - -0.039058, - 0.096061, - 0.035461, - 0.0034059, - -0.021912, - -0.040081, - -0.07122, - 0.008387, - 0.026936, - -0.050066, - 0.0088161, - -0.04835, - -0.041287, - -0.00086527, - 0.0052252, - 0.016033, - -0.021374, - 0.049535, - -0.032513, - -0.066866, - -0.014926 - ], - "juice": [ - -0.12952, - -0.018379, - -0.042788, - 0.096704, - -0.021979, - -0.048401, - 0.1071, - -0.092761, - 0.012273, - -0.077199, - 0.034867, - 0.025779, - 0.072764, - -0.087397, - -0.023636, - -0.010093, - 0.083443, - 0.033284, - 0.047006, - 0.05234, - 0.021259, - 0.11987, - -0.030384, - 0.0045002, - -0.01639, - -0.10771, - -0.028942, - 0.055065, - 0.038454, - 0.039886, - -0.063688, - -0.0042608, - -0.024236, - 0.0099022, - 0.054968, - -0.082782, - 0.0033779, - -0.011289, - 0.020674, - 0.032548, - 0.064997, - -0.13047, - -0.066696, - -0.0083145, - 0.0074454, - -0.072725, - 0.041232, - 0.087152, - -0.048872, - 0.005479, - 0.032258, - 0.050691, - 0.052059, - -0.13921, - -0.11106, - 0.018562, - -0.088125, - -0.091802, - -0.053521, - 0.014553, - -0.10279, - 0.026472, - 0.11551, - -0.037462, - -0.049997, - -0.04252, - 0.028007, - -0.014733, - -0.036714, - -0.12832, - 0.015978, - 0.035471, - 0.041429, - 0.094709, - -0.14553, - -0.010659, - -0.068935, - -0.0075037, - -0.010148, - -0.024752, - -0.15147, - -0.093791, - -0.022687, - 0.058451, - -0.0094943, - -0.046888, - -0.015444, - -0.050015, - -0.0056543, - -0.053168, - 0.013074, - -0.038117, - -0.093874, - 0.020635, - 0.058874, - 0.12765, - 0.0028298, - 0.023406, - -0.0048059, - 0.017535, - -0.063809, - 0.035407, - -0.006878, - 0.0093747, - 0.018605, - -0.14467, - -0.057844, - -0.0018182, - -0.042603, - 0.10233, - -0.013625, - 0.099563, - 0.059288, - 0.087436, - 0.058716, - -0.042697, - -0.014307, - -0.000019232, - -0.04158, - 0.050235, - -0.11188, - -0.052876, - -0.0071898, - -0.12706, - 0.14562, - 0.045097, - -0.016828, - -0.16447, - -0.033851, - 0.027503, - -0.044921, - -0.065043, - -0.02151, - -0.08726, - -0.029462, - -0.081783, - 0.0018754, - 0.048274, - 0.046802, - 0.11934, - 0.14167, - -0.011646, - 0.090335, - 0.021332, - 0.01901, - -0.10113, - 0.082678, - 0.025334, - -0.091851, - -0.070831, - -0.068027, - 0.070718, - 0.029573, - 0.012977, - 0.07494, - -0.077954, - -0.12478, - -0.044306, - -0.075684, - 0.073775, - 0.039772, - 0.10349, - -0.065439, - 0.0042468, - 0.1039, - 0.011288, - -0.021235, - -0.055563, - 0.096529, - -0.0057117, - 0.030999, - 0.03395, - 0.0027178, - 0.086856, - 0.069145, - 0.063454, - -0.020051, - 0.0088884, - -0.027135, - -0.036964, - -0.060293, - -0.042478, - 0.086391, - -0.1636, - -0.029789, - -0.060954, - -0.05654, - 0.19739, - 0.15775, - 0.051514, - 0.0087104, - -0.020914, - 0.042959, - -0.0046653, - 0.14169, - 0.017451, - 0.0086083, - 0.062156, - 0.011999, - 0.044144, - -0.16607, - 0.02933, - -0.050903, - -0.0010304, - -0.0028963, - 0.033771, - 0.084328, - 0.043846, - 0.029719, - -0.094153, - 0.13822, - -0.0091498, - 0.0050181, - 0.065609, - 0.11055, - 0.071425, - -0.0036542, - -0.0027303, - -0.0077608, - 0.018484, - -0.014611, - 0.038066, - -0.033145, - 0.073024, - 0.075351, - 0.018338, - -0.022025, - -0.001726, - -0.0031407, - -0.025463, - 0.016761, - -0.048462, - -0.080154, - -0.035509, - 0.034406, - -0.013708, - -0.11525, - -0.087599, - 0.065208, - -0.093951, - 0.067937, - 0.0051576, - 0.038598, - -0.10035, - -0.0053319, - -0.0025733, - 0.05493, - -0.012092, - -0.069028, - -0.017155, - 0.032272, - -0.074722, - -0.045861, - 0.021539, - -0.042792, - -0.033781, - 0.013305, - 0.0062522, - -0.067013, - -0.0089802, - -0.0029245, - 0.065046, - 0.053007, - -0.073108, - 0.029931, - 0.02032, - -0.060272, - -0.048065, - 0.010595, - 0.060751, - 0.036094, - 0.090885, - -0.11586, - -0.068788, - -0.061335, - -0.028512, - -0.079217, - 0.096392, - -0.068155, - 0.023522, - 0.089536, - -0.010439, - 0.108, - 0.057629, - -0.089562, - -0.015925, - 0.013127, - 0.090682, - 0.058183, - -0.018782, - 0.012103, - -0.019261, - -0.12087, - 0.080297, - 0.008373, - -0.046775, - -0.010362, - -0.074707, - -0.07394, - 0.063831 - ], - "tastes": [ - -0.0006598, - 0.014244, - 0.022228, - 0.010798, - -0.0055869, - -0.012794, - -0.085828, - -0.060096, - 0.018614, - 0.076973, - -0.030108, - -0.090239, - -0.057535, - -0.056876, - -0.024981, - 0.0065382, - 0.095655, - 0.011392, - 0.057032, - 0.082947, - 0.0020002, - 0.028468, - 0.036923, - 0.1171, - -0.029721, - -0.069664, - 0.016197, - 0.051351, - 0.14914, - -0.078932, - -0.043142, - -0.13439, - 0.03968, - -0.030265, - 0.024909, - 0.018377, - -0.011222, - 0.12355, - -0.09227, - 0.052694, - -0.024933, - -0.053763, - -0.11088, - -0.056469, - 0.019212, - -0.070797, - 0.024701, - -0.052548, - -0.025207, - -0.035472, - -0.021286, - 0.059902, - 0.073352, - 0.015451, - -0.053305, - 0.077994, - 0.064898, - 0.032473, - -0.050555, - -0.059446, - 0.043407, - -0.019675, - 0.17889, - 0.074064, - 0.048577, - 0.089563, - -0.086941, - 0.03043, - -0.023067, - -0.046047, - 0.12923, - 0.043533, - 0.030072, - 0.0048786, - -0.052365, - 0.0084356, - -0.050785, - 0.013232, - -0.013922, - 0.0012701, - -0.051781, - 0.038593, - 0.12649, - 0.042589, - -0.054733, - -0.091428, - 0.01667, - 0.061315, - -0.031507, - 0.017458, - 0.14147, - -0.0097238, - -0.094159, - 0.017069, - -0.019219, - 0.044871, - -0.014601, - 0.073406, - 0.033534, - 0.072567, - 0.042899, - 0.062776, - -0.033013, - -0.023831, - 0.061034, - -0.088023, - -0.087263, - -0.042332, - 0.0046693, - 0.092755, - -0.073083, - 0.013908, - 0.068729, - 0.053537, - 0.015725, - -0.11345, - 0.034498, - 0.011898, - -0.097743, - 0.063707, - -0.0069139, - -0.017252, - -0.050286, - -0.076061, - 0.1852, - -0.012299, - -0.030633, - -0.059777, - 0.034136, - 0.10543, - 0.0092991, - 0.011604, - 0.087645, - -0.053405, - -0.062042, - -0.051871, - -0.062109, - 0.10229, - -0.043078, - 0.011492, - -0.019646, - -0.032835, - 0.037573, - 0.05718, - 0.028908, - -0.094723, - 0.098187, - 0.00027221, - 0.0090982, - 0.054383, - 0.0468, - 0.12234, - 0.067005, - -0.010527, - -0.052353, - 0.0024604, - -0.050296, - 0.04526, - 0.020391, - -0.038009, - 0.065027, - -0.065432, - -0.072738, - -0.065603, - 0.069375, - 0.026048, - -0.056195, - -0.1421, - 0.0090896, - -0.02605, - -0.12572, - -0.036184, - 0.019399, - -0.036805, - 0.032341, - 0.095083, - -0.031817, - -0.016361, - -0.013942, - -0.13298, - 0.037594, - -0.055547, - -0.033815, - -0.096828, - -0.00099649, - -0.047498, - 0.1304, - 0.13502, - -0.021971, - -0.024505, - 0.049036, - 0.049795, - -0.081733, - -0.043674, - -0.044912, - 0.054052, - 0.0028257, - -0.043133, - 0.01104, - 0.10713, - -0.13298, - -0.052338, - 0.017826, - -0.063638, - -0.0054489, - 0.0088641, - 0.042445, - 0.067547, - 0.080553, - -0.011843, - 0.057288, - 0.0059592, - 0.011628, - -0.074013, - -0.023814, - -0.011551, - 0.0047101, - -0.080961, - -0.18682, - 0.0087604, - -0.058294, - -0.018061, - 0.034873, - 0.092296, - 0.10751, - 0.025576, - 0.071621, - 0.11165, - -0.0018709, - 0.015208, - -0.0056596, - 0.018485, - -0.20454, - 0.017757, - 0.1061, - 0.030854, - -0.021188, - -0.032006, - 0.08737, - -0.020211, - -0.010484, - -0.029635, - 0.023101, - -0.0011786, - -0.020368, - 0.033439, - -0.0015838, - -0.16127, - -0.034346, - -0.0591, - 0.028311, - -0.12593, - -0.09023, - 0.024105, - 0.038283, - 0.065238, - -0.069522, - 0.055621, - -0.010053, - 0.014107, - 0.058303, - -0.0035731, - 0.028285, - -0.071832, - 0.010952, - -0.015854, - -0.056896, - 0.053771, - 0.031529, - 0.14719, - 0.069042, - 0.10046, - -0.12666, - -0.057734, - 0.13907, - -0.031972, - -0.010455, - -0.0046501, - 0.0050705, - 0.01244, - 0.013459, - 0.052096, - 0.05075, - -0.033506, - -0.024767, - 0.043688, - -0.086927, - 0.0041951, - 0.069831, - 0.055225, - -0.085269, - 0.035725, - -0.062774, - 0.062183, - -0.014711, - 0.0042327, - 0.0145, - 0.0086775, - -0.071405, - -0.011712 - ], - "activites": [ - 0.038974, - -0.013163, - 0.021816, - -0.023374, - -0.0047145, - -0.06264, - 0.022891, - -0.085324, - 0.016025, - -0.018073, - 0.029548, - -0.06652, - -0.0062518, - -0.044207, - 0.035656, - 0.053766, - 0.076868, - -0.0030537, - 0.067312, - -0.0024901, - -0.043412, - 0.02712, - 0.0055021, - 0.060954, - -0.020015, - 0.031229, - -0.028989, - -0.011699, - 0.026467, - -0.033068, - 0.043209, - -0.040955, - 0.0099266, - 0.0015868, - 0.055036, - 0.056128, - 0.011038, - 0.0070859, - 0.018284, - -0.019989, - -0.010397, - -0.055568, - 0.033326, - -0.038448, - 0.069157, - 0.0062266, - 0.0014924, - -0.020692, - 0.019971, - -0.0042231, - -0.046016, - 0.01875, - 0.00048965, - -0.019366, - -0.084801, - -0.0043257, - -0.057295, - -0.022952, - -0.034678, - 0.015769, - -0.027247, - 0.02517, - 0.14299, - -0.02859, - 0.0036095, - -0.030061, - 0.079228, - 0.012263, - 0.012551, - -0.0062935, - 0.063185, - -0.037053, - 0.074408, - 0.086655, - 0.070138, - -0.032368, - 0.03858, - -0.01567, - 0.000078585, - -0.050841, - -0.018392, - 0.020253, - -0.068156, - 0.10789, - 0.048643, - 0.020754, - -0.0090773, - 0.03894, - -0.019821, - 0.013311, - -0.015651, - 0.050529, - -0.034924, - 0.021529, - 0.0017237, - -0.0063997, - -0.000050092, - 0.0079148, - -0.0052979, - 0.0032256, - 0.012038, - 0.021755, - 0.010831, - -0.0036556, - 0.087083, - -0.03497, - 0.031351, - -0.011973, - 0.013001, - 0.024534, - -0.026455, - 0.021245, - 0.039624, - 0.014846, - -0.0015732, - -0.026419, - -0.064794, - -0.028852, - -0.068992, - -0.026802, - -0.041135, - 0.04773, - 0.024533, - 0.035319, - 0.19223, - 0.012108, - 0.01468, - -0.068062, - -0.030267, - 0.10249, - 0.052654, - 0.024718, - 0.028752, - 0.026482, - -0.047845, - -0.025164, - 0.0012355, - 0.036409, - -0.011713, - 0.0071703, - -0.017054, - 0.023255, - 0.021645, - 0.042392, - 0.014725, - 0.031278, - 0.0038612, - -0.052969, - 0.025572, - 0.015327, - 0.0019714, - 0.045972, - -0.022242, - -0.084951, - 0.012704, - 0.037487, - -0.038386, - 0.059899, - 0.041587, - -0.0063663, - 0.04462, - 0.060583, - -0.010982, - 0.0043135, - -0.010464, - 0.031527, - -0.00081354, - -0.025647, - -0.012024, - -0.0084632, - 0.085223, - 0.0052417, - 0.060185, - 0.012832, - -0.026057, - 0.049098, - -0.023782, - 0.010091, - -0.027277, - 0.0030499, - 0.0038763, - 0.017323, - 0.0089553, - 0.056147, - -0.00041773, - -0.062162, - 0.033727, - 0.06349, - 0.033702, - -0.017362, - 0.059273, - 0.086469, - -0.049986, - 0.021595, - 0.067511, - -0.0069703, - -0.00043518, - 0.031956, - -0.048862, - 0.022432, - -0.094336, - 0.059038, - -0.0053463, - -0.010654, - 0.034741, - 0.024832, - -0.064096, - 0.0078341, - 0.014688, - 0.0085582, - 0.086566, - 0.060042, - 0.013808, - -0.0064516, - 0.0083495, - -0.018912, - -0.054595, - 0.065829, - -0.059812, - -0.013612, - -0.0066636, - -0.026658, - -0.023323, - 0.10549, - 0.0066217, - 0.031306, - 0.016496, - 0.14231, - -0.04213, - 0.0077706, - -0.014228, - -0.032891, - -0.034975, - 0.00015324, - 0.086855, - 0.029263, - 0.058167, - 0.0016225, - -0.045735, - -0.005174, - -0.03252, - 0.026407, - 0.036454, - -0.063069, - -0.03964, - 0.056828, - -0.041387, - -0.03876, - 0.014226, - 0.037058, - 0.039412, - -0.0039852, - -0.0079882, - 0.00083574, - -0.063422, - -0.032768, - 0.016818, - 0.041998, - 0.024194, - 0.046792, - 0.018754, - 0.035644, - -0.034602, - 0.02673, - -0.0054293, - -0.0040088, - -0.010003, - -0.0087884, - 0.0043974, - 0.0030079, - 0.054883, - 0.071377, - -0.045171, - -0.085974, - -0.0090315, - -0.026461, - 0.026435, - -0.029208, - -0.067697, - 0.011665, - -0.016129, - -0.017443, - 0.040375, - -0.019655, - 0.04292, - -0.0041053, - 0.0032679, - 0.022568, - -0.0011031, - 0.0024901, - 0.024288, - 0.045444, - -0.065863, - 0.0091378, - -0.020439, - 0.044559, - -0.0577, - 0.037285, - -0.046284, - -0.0085306 - ], - "childcare": [ - -0.0050451, - -0.061612, - 0.021325, - -0.053027, - -0.015607, - 0.019891, - 0.050832, - -0.048434, - 0.08336, - -0.026192, - 0.011342, - 0.0097876, - -0.047198, - 0.044064, - -0.049472, - -0.03781, - 0.079841, - 0.016368, - 0.044826, - 0.0029006, - -0.011047, - 0.066026, - 0.014608, - 0.040557, - 0.0066125, - 0.09453, - -0.015425, - 0.029963, - -0.012603, - -0.011463, - 0.0075738, - 0.015435, - -0.076349, - -0.068183, - 0.086159, - 0.067052, - 0.0033192, - -0.090378, - 0.042384, - 0.019652, - -0.040638, - -0.12589, - 0.012204, - -0.025858, - 0.060175, - -0.015942, - -0.0025484, - 0.0086783, - -0.037773, - 0.02386, - -0.05629, - -0.019661, - 0.034872, - 0.020399, - -0.04818, - -0.016782, - -0.021401, - -0.07109, - -0.044113, - -0.048684, - -0.041351, - -0.048337, - 0.065627, - 0.12798, - 0.02939, - -0.0086122, - -0.014033, - -0.10917, - -0.063642, - -0.048176, - 0.023286, - 0.0055586, - 0.015017, - -0.0022413, - -0.0050407, - -0.031121, - -0.048268, - -0.0029478, - -0.021618, - 0.018747, - -0.029074, - -0.0033846, - -0.023418, - 0.11049, - -0.037682, - 0.04124, - -0.040328, - -0.046577, - -0.038252, - 0.0061621, - 0.045926, - 0.041449, - -0.082785, - 0.015522, - -0.04343, - 0.049257, - 0.040194, - 0.087431, - 0.011737, - -0.099505, - 0.035574, - -0.044658, - -0.033339, - -0.035117, - 0.013879, - -0.048001, - 0.047063, - 0.070344, - 0.00085883, - -0.048091, - 0.04403, - 0.10679, - 0.075835, - 0.071766, - -0.011637, - -0.01833, - -0.035495, - -0.0029238, - -0.029474, - 0.0078087, - -0.067686, - 0.051839, - 0.043721, - 0.0027203, - 0.06251, - -0.051317, - -0.045269, - -0.060752, - 0.056581, - 0.078182, - 0.013363, - -0.011608, - 0.0015279, - 0.018653, - -0.072071, - 0.002772, - -0.04013, - -0.012383, - -0.052885, - -0.0034919, - 0.027716, - 0.034079, - 0.046318, - 0.051852, - -0.028437, - 0.030269, - 0.0013596, - 0.042893, - -0.039344, - -0.023647, - 0.027238, - 0.066747, - -0.040028, - -0.10379, - 0.040828, - 0.023469, - 0.040418, - 0.033005, - 0.045244, - -0.015962, - 0.086819, - -0.031935, - -0.067332, - 0.0076802, - -0.013148, - 0.0024362, - 0.05635, - -0.016348, - -0.041058, - -0.074508, - 0.014633, - -0.016882, - -0.037478, - -0.036496, - 0.037934, - 0.03942, - -0.05552, - 0.078212, - -0.0011178, - 0.0046128, - -0.027879, - -0.048673, - -0.0039912, - -0.0020933, - 0.014852, - -0.081442, - 0.026442, - 0.1043, - 0.01882, - 0.055761, - 0.01515, - 0.05541, - -0.0060221, - -0.080812, - 0.039209, - -0.066827, - -0.012153, - -0.019752, - -0.011816, - -0.085137, - -0.13596, - 0.044754, - -0.025681, - -0.0073116, - 0.022248, - 0.046893, - -0.045761, - -0.11288, - -0.0237, - -0.016019, - 0.11896, - 0.0016178, - -0.019215, - 0.029621, - -0.026204, - 0.050879, - -0.024525, - -0.027816, - -0.033918, - -0.044716, - 0.094733, - -0.02352, - -0.0076774, - 0.082489, - 0.028332, - -0.029122, - -0.046134, - 0.033705, - 0.023705, - -0.022844, - 0.023413, - -0.012821, - -0.052016, - -0.010143, - 0.0057905, - 0.084723, - 0.013654, - -0.036683, - -0.018843, - -0.063991, - 0.020522, - 0.0032515, - 0.018095, - -0.078903, - -0.0088596, - 0.040822, - 0.0010383, - -0.0098608, - 0.035448, - 0.030238, - -0.018196, - 0.029521, - -0.019919, - -0.019296, - -0.0031927, - -0.017969, - -0.053557, - 0.010444, - -0.0031278, - 0.038057, - 0.0059285, - -0.052022, - -0.0087894, - -0.0042863, - 0.0073329, - 0.069287, - -0.052924, - 0.015046, - 0.013183, - 0.014088, - -0.0096529, - 0.060185, - -0.11412, - -0.018487, - -0.068898, - 0.0088635, - 0.047355, - 0.047328, - 0.035033, - 0.094002, - 0.10862, - -0.020573, - 0.07003, - 0.044801, - -0.0089467, - 0.12397, - -0.015392, - 0.036283, - 0.0034002, - 0.0035561, - 0.081175, - -0.017183, - -0.024908, - -0.014404, - 0.021525, - 0.051755, - 0.0056235, - 0.13632, - 0.040741, - -0.040711 - ], - "manner": [ - -0.050066, - 0.020805, - 0.046476, - 0.0052722, - 0.0080974, - -0.0063757, - -0.05253, - -0.10003, - -0.038419, - 0.0018925, - -0.042521, - -0.075612, - 0.027011, - 0.0091153, - -0.021521, - 0.048406, - 0.081999, - 0.046041, - 0.059341, - 0.05712, - -0.008334, - -0.025041, - -0.0053536, - 0.07491, - -0.070048, - -0.024658, - -0.020366, - 0.025614, - -0.1521, - -0.0018079, - -0.018492, - -0.0060869, - 0.0035017, - -0.18482, - 0.021704, - 0.037434, - -0.020809, - 0.004429, - -0.031311, - -0.02044, - 0.046681, - -0.16625, - 0.055407, - -0.014088, - -0.039867, - -0.04565, - -0.01189, - -0.052838, - -0.03442, - -0.085524, - 0.039746, - -0.023761, - 0.030211, - 0.02086, - -0.082271, - -0.028559, - 0.029733, - -0.0023497, - -0.047693, - -0.022902, - 0.00084201, - 0.016543, - 0.1038, - -0.036811, - 0.087834, - 0.0067732, - 0.0011124, - 0.048474, - -0.012751, - -0.0002589, - -0.034438, - -0.032099, - -0.0086549, - -0.013237, - 0.0019439, - 0.011785, - 0.052282, - -0.037007, - -0.027431, - -0.0066513, - -0.0084473, - 0.0030027, - 0.027162, - 0.10653, - 0.083641, - -0.022813, - 0.0019436, - 0.04473, - -0.010389, - -0.013343, - -0.020209, - -0.052248, - -0.058716, - 0.0055746, - 0.011767, - 0.10735, - -0.017434, - -0.022052, - 0.088805, - 0.034975, - -0.029883, - -0.0073257, - -0.067237, - 0.039152, - -0.066658, - -0.0085962, - 0.031907, - 0.02635, - -0.036871, - -0.026309, - -0.043495, - 0.0873, - 0.049102, - 0.0029138, - -0.037634, - -0.064931, - -0.0025912, - 0.016298, - -0.053912, - -0.025914, - -0.0058595, - 0.0090978, - -0.00020509, - -0.016572, - 0.05763, - 0.024362, - -0.0052019, - 0.0025592, - 0.025122, - 0.01061, - -0.020474, - -0.015091, - 0.001112, - 0.056536, - -0.045947, - 0.0016337, - -0.017752, - 0.0252, - 0.05517, - -0.013246, - -0.048625, - -0.025933, - -0.0059282, - -0.088488, - 0.0060396, - -0.049899, - 0.027991, - -0.037709, - 0.05288, - 0.024069, - 0.009707, - 0.026485, - -0.033335, - -0.046668, - -0.0018284, - -0.01026, - -0.0082806, - -0.020949, - -0.045309, - -0.025955, - 0.012145, - -0.0071929, - -0.043505, - 0.024779, - 0.021509, - 0.029478, - 0.026422, - -0.033963, - -0.045981, - -0.005941, - 0.038097, - 0.02267, - 0.01681, - -0.023231, - -0.0091403, - 0.051486, - -0.07803, - 0.079625, - 0.013843, - -0.035405, - 0.04355, - -0.016661, - -0.022155, - 0.030246, - -0.027683, - -0.062701, - -0.00094075, - 0.10699, - 0.032192, - -0.02364, - 0.072396, - 0.077441, - 0.013104, - 0.0019813, - 0.0094158, - 0.012311, - 0.022233, - 0.022339, - -0.026707, - 0.022335, - -0.20798, - 0.019334, - 0.1077, - 0.0087104, - -0.0061811, - -0.010729, - 0.0088966, - 0.016702, - -0.035382, - -0.014066, - 0.050395, - 0.0089956, - 0.038934, - 0.06148, - 0.088714, - 0.013131, - 0.029862, - -0.014599, - -0.11776, - 0.029061, - -0.047922, - 0.00065238, - -0.0007252, - 0.10801, - -0.051361, - 0.024354, - 0.063374, - 0.10987, - -0.023814, - 0.059664, - -0.051611, - -0.10692, - -0.06565, - -0.047356, - 0.035922, - 0.0044261, - -0.033418, - 0.012186, - 0.057371, - -0.048155, - 0.028195, - -0.021621, - -0.0059407, - 0.051276, - -0.021267, - 0.01014, - -0.030786, - -0.057065, - 0.027818, - -0.031827, - 0.055882, - 0.010163, - 0.015722, - -0.0092003, - -0.023345, - 0.013603, - -0.017304, - 0.080401, - -0.020488, - -0.026984, - -0.0090216, - 0.0038342, - -0.0055816, - -0.049594, - -0.029209, - -0.030569, - 0.052874, - -0.030712, - -0.043469, - 0.053385, - -0.020498, - 0.079373, - -0.10786, - -0.086798, - 0.11265, - -0.13809, - 0.033125, - -0.00049595, - -0.0018279, - 0.016954, - 0.038613, - -0.025605, - 0.020534, - -0.096509, - -0.054682, - 0.0308, - 0.0060416, - -0.038102, - 0.039367, - 0.052535, - 0.014495, - -0.015249, - 0.036827, - -0.05892, - -0.01023, - -0.030577, - 0.018081, - -0.029157, - -0.034849, - -0.019841 - ], - "financier": [ - 0.081635, - -0.061442, - -0.030261, - 0.0040851, - -0.074974, - -0.043006, - -0.015733, - -0.094893, - 0.062366, - 0.055285, - 0.050161, - 0.061088, - 0.027969, - 0.00086302, - -0.043125, - 0.010529, - 0.049307, - -0.047384, - 0.038583, - 0.04756, - -0.010174, - 0.045336, - -0.0063389, - 0.069805, - 0.0035671, - 0.042572, - 0.0013351, - 0.071928, - -0.012418, - 0.0049824, - -0.02634, - 0.0084904, - -0.041906, - -0.0049104, - -0.013207, - 0.054174, - -0.07814, - 0.035357, - -0.0047828, - 0.034799, - -0.026732, - -0.1178, - -0.0018383, - 0.021267, - -0.035262, - 0.095277, - -0.0098715, - -0.023112, - -0.00403, - -0.0261, - -0.0095708, - 0.025689, - -0.0016489, - -0.023487, - 0.03893, - -0.072588, - -0.054971, - -0.037693, - -0.050681, - 0.040804, - -0.031076, - 0.0076201, - 0.068906, - -0.0028869, - -0.012185, - 0.0090296, - 0.025447, - -0.042686, - -0.019954, - -0.0094465, - 0.041567, - -0.02098, - 0.051597, - 0.031687, - -0.0031286, - 0.042309, - -0.030302, - -0.032207, - 0.0080493, - 0.026768, - 0.031857, - 0.074643, - -0.084644, - 0.012474, - -0.0074268, - -0.035372, - -0.044612, - 0.041764, - -0.0057521, - -0.040938, - 0.044031, - 0.010516, - -0.077983, - -0.070357, - -0.039505, - 0.097021, - -0.067481, - -0.059194, - -0.031281, - -0.0028727, - -0.0030795, - -0.030419, - 0.016825, - -0.031965, - -0.051163, - -0.08603, - -0.026486, - -0.018213, - -0.029881, - 0.043707, - -0.026091, - 0.083149, - 0.042839, - 0.00062466, - -0.0031024, - -0.028516, - 0.027751, - -0.0061253, - -0.0068144, - 0.03981, - 0.061013, - -0.10378, - 0.036706, - 0.013815, - 0.054426, - 0.013818, - -0.0086711, - -0.039707, - -0.0084151, - 0.075293, - 0.041633, - 0.016867, - 0.0032785, - -0.034213, - 0.027105, - 0.027839, - 0.0088851, - 0.075438, - 0.014057, - -0.025581, - -0.010594, - 0.03488, - -0.029242, - 0.044419, - -0.020892, - -0.028252, - -0.022258, - -0.05913, - -0.0074844, - -0.096151, - 0.059628, - 0.091257, - -0.0070313, - -0.072237, - -0.050485, - -0.030292, - 0.013627, - 0.0028162, - 0.040801, - 0.012057, - 0.043544, - -0.011519, - -0.051271, - 0.052342, - -0.023908, - -0.021665, - -0.025841, - -0.030188, - -0.0032474, - 0.026684, - -0.0070544, - -0.027498, - -0.054712, - 0.02409, - -0.034785, - 0.0306, - -0.000045029, - -0.0014723, - -0.013283, - 0.016931, - -0.046586, - -0.012469, - 0.030322, - -0.056837, - -0.039006, - -0.063262, - -0.024883, - 0.067452, - 0.02819, - -0.0078145, - -0.022885, - 0.075255, - -0.012863, - 0.038575, - -0.034095, - -0.0082011, - 0.010065, - 0.053682, - -0.015035, - -0.026749, - -0.12774, - 0.028819, - -0.033299, - -0.0072435, - 0.055282, - -0.0023934, - -0.007389, - -0.069935, - -0.065577, - -0.041867, - 0.11242, - 0.037643, - -0.01532, - -0.0076485, - -0.037239, - 0.091688, - -0.023134, - -0.011633, - 0.043888, - 0.052094, - 0.049363, - -0.013712, - -0.01568, - 0.090368, - 0.031892, - 0.040753, - 0.019466, - 0.061118, - -0.00033417, - -0.0242, - -0.073851, - -0.024466, - -0.0053503, - -0.038162, - -0.021332, - -0.019935, - -0.048548, - -0.016433, - -0.078888, - 0.027964, - 0.040517, - 0.003912, - 0.010634, - 0.03794, - 0.011474, - 0.0057328, - 0.020686, - 0.0094532, - 0.025095, - 0.0047521, - 0.0015294, - -0.077732, - -0.023499, - -0.03621, - 0.037099, - 0.017977, - -0.045815, - 0.037955, - -0.0067038, - 0.066674, - 0.020492, - 0.0084757, - -0.010253, - 0.045254, - -0.066057, - 0.030713, - -0.091606, - 0.0066481, - 0.0090531, - 0.048489, - 0.011257, - 0.08244, - -0.083822, - 0.00011397, - 0.034239, - -0.054298, - -0.0017038, - 0.010644, - 0.050101, - -0.037509, - 0.055667, - 0.038725, - -0.0075673, - -0.02683, - -0.054886, - -0.016837, - -0.028578, - -0.10896, - -0.040666, - 0.054752, - 0.00062629, - 0.0065637, - -0.060647, - 0.087194, - -0.03374, - -0.052386, - -0.0056577, - 0.02579, - -0.10256, - -0.046952 - ], - "fashions": [ - -0.031491, - -0.025617, - 0.046433, - 0.011762, - 0.030002, - -0.045736, - -0.031291, - -0.069463, - 0.052224, - -0.0039504, - 0.018395, - -0.048009, - -0.092449, - -0.032554, - -0.035051, - 0.012488, - 0.10351, - 0.042932, - 0.048645, - 0.05934, - 0.032812, - -0.024568, - -0.027652, - 0.077919, - 0.013895, - 0.019265, - 0.02591, - 0.052597, - 0.0045335, - -0.022119, - -0.0015474, - -0.10179, - 0.05157, - -0.085122, - 0.042468, - -0.0014416, - 0.060862, - 0.04778, - -0.038812, - 0.037999, - -0.036242, - -0.082663, - -0.048318, - -0.00041905, - -0.027636, - -0.019102, - 0.048974, - -0.03402, - -0.058624, - -0.090521, - 0.00056464, - -0.028142, - -0.022925, - 0.087899, - -0.038752, - 0.024409, - 0.090516, - 0.050132, - -0.038025, - -0.0022833, - -0.0013354, - -0.044882, - 0.14125, - -0.0062477, - 0.065538, - 0.063651, - -0.048543, - 0.026338, - 0.02282, - -0.0065187, - -0.023292, - -0.026838, - 0.033412, - -0.091908, - 0.024614, - 0.031745, - 0.080272, - -0.036167, - -0.037177, - 0.022501, - 0.032636, - 0.010163, - -0.02605, - 0.056988, - 0.022887, - -0.0055966, - -0.042546, - 0.016165, - -0.022217, - -0.018622, - 0.062841, - -0.010328, - -0.054058, - 0.098702, - 0.015486, - 0.03904, - -0.036981, - -0.022125, - 0.023131, - 0.033589, - 0.022243, - 0.048224, - -0.014349, - 0.034883, - 0.0093826, - -0.031329, - 0.016578, - 0.014838, - 0.055037, - 0.015369, - -0.038984, - 0.016288, - 0.063386, - 0.043006, - -0.073836, - -0.070562, - -0.0017989, - 0.0078655, - -0.0061091, - 0.027818, - -0.0069886, - 0.017126, - -0.035007, - -0.014851, - 0.11605, - -0.048501, - -0.06819, - 0.029744, - 0.04426, - 0.081607, - 0.023161, - 0.040696, - 0.056573, - 0.028587, - -0.010184, - 0.036156, - -0.051136, - 0.049626, - -0.0050541, - -0.080239, - 0.060474, - -0.015147, - 0.023309, - 0.10865, - 0.055259, - 0.0054371, - 0.016456, - 0.018671, - 0.010238, - 0.0089105, - 0.029646, - 0.070376, - -0.0080125, - -0.021758, - -0.02903, - 0.0032005, - 0.0030737, - 0.023542, - -0.0023624, - 0.05917, - 0.034964, - -0.026797, - -0.016004, - 0.025951, - 0.0088516, - 0.023738, - -0.027459, - -0.078629, - -0.018188, - 0.015172, - -0.015552, - -0.00016578, - 0.031473, - -0.081479, - -0.035803, - 0.063102, - -0.067597, - 0.074839, - -0.001307, - -0.033907, - 0.073686, - 0.0074212, - -0.023085, - -0.10304, - 0.0039231, - -0.015956, - -0.0068164, - 0.13593, - -0.016853, - 0.0084589, - 0.011866, - 0.044905, - -0.054927, - -0.083685, - 0.031901, - 0.0019073, - -0.011966, - 0.013238, - 0.0088751, - 0.044279, - -0.16309, - 0.0087528, - 0.073979, - -0.032773, - 0.030096, - 0.034182, - 0.013302, - -0.017588, - 0.058197, - -0.034911, - 0.078895, - 0.047454, - 0.050013, - 0.038649, - 0.042334, - -0.023067, - -0.046072, - -0.0015679, - -0.10102, - -0.07231, - -0.064346, - -0.021659, - 0.030381, - 0.065085, - 0.046356, - -0.017348, - 0.060574, - 0.082176, - -0.035299, - 0.07361, - -0.0056772, - -0.038358, - -0.077162, - -0.0085518, - 0.026942, - 0.019808, - -0.026401, - -0.0099476, - 0.098866, - -0.017086, - -0.023726, - -0.0027101, - -0.025116, - -0.014565, - 0.005583, - 0.041182, - -0.062216, - -0.048782, - -0.0010862, - -0.021503, - 0.037455, - -0.011121, - 0.025745, - -0.025109, - -0.029322, - 0.058239, - -0.034271, - 0.031829, - 0.046285, - 0.033387, - 0.035098, - 0.0050479, - 0.0047403, - -0.061881, - 0.034986, - 0.0017103, - 0.021858, - 0.0208, - 0.024822, - 0.024315, - -0.0096746, - 0.07096, - -0.083222, - -0.028819, - 0.050178, - -0.045088, - -0.017273, - -0.018825, - -0.062113, - -0.0011437, - 0.056628, - 0.030862, - 0.049544, - -0.065899, - -0.0043788, - 0.0087206, - -0.03564, - -0.0018384, - 0.03525, - 0.06662, - -0.043933, - 0.01726, - -0.014298, - -0.016417, - -0.051747, - -0.051505, - 0.028119, - 0.051739, - 0.032404, - -0.032895 - ], - "accompany": [ - -0.031237, - 0.026546, - 0.00076445, - 0.018158, - 0.052441, - -0.020359, - 0.0016929, - -0.082872, - -0.017904, - 0.037655, - -0.0094463, - 0.013598, - -0.020606, - 0.0057006, - 0.00028412, - -0.0067888, - 0.029195, - -0.0047754, - 0.057244, - -0.0062168, - -0.0073265, - -0.0067521, - -0.026419, - 0.068071, - -0.042792, - 0.028521, - -0.028676, - 0.070462, - -0.0026066, - -0.035275, - -0.050717, - 0.02211, - -0.011378, - 0.062028, - -0.013009, - 0.028394, - -0.04488, - 0.038109, - 0.038005, - -0.023068, - -0.01121, - -0.069994, - -0.0057498, - -0.012348, - 0.0080488, - 0.06384, - -0.0087556, - -0.021206, - -0.044181, - -0.0050841, - 0.017813, - 0.03777, - -0.049305, - -0.017899, - -0.090749, - 0.011252, - -0.004243, - -0.032476, - -0.016666, - 0.00014922, - 0.012637, - 0.0034631, - 0.082194, - 0.023066, - 0.024279, - 0.022712, - 0.0085998, - -0.021703, - 0.0024169, - -0.000049845, - 0.033645, - -0.0079775, - 0.083774, - -0.012865, - -0.026162, - 0.016458, - 0.0024019, - -0.021792, - -0.033911, - -0.014694, - -0.0078021, - 0.028285, - 0.0061846, - 0.044608, - 0.0087337, - -0.03838, - 0.0042242, - 0.026133, - -0.030058, - -0.016821, - -0.057045, - 0.049786, - -0.075978, - -0.017514, - -0.0017862, - -0.010519, - 0.0052203, - 0.022626, - 0.023066, - -0.011117, - 0.065128, - 0.012457, - 0.060783, - -0.034145, - -0.04274, - -0.071689, - -0.029476, - -0.043601, - -0.030585, - -0.011977, - 0.037129, - 0.070435, - 0.044031, - 0.026938, - -0.0038473, - -0.0040482, - 0.023526, - -0.0026907, - 0.0021618, - -0.0079256, - 0.043341, - 0.018986, - 0.016688, - -0.0046369, - 0.056572, - -0.028163, - -0.011598, - -0.022121, - 0.032025, - 0.07313, - -0.011681, - 0.019318, - -0.071977, - 0.014454, - 0.0073189, - -0.019826, - 0.01897, - 0.036276, - 0.043666, - 0.035222, - -0.0046409, - 0.012167, - -0.0045121, - -0.038249, - -0.036107, - -0.0035101, - -0.013907, - 0.010309, - -0.030347, - 0.0083726, - -0.043206, - 0.090084, - 0.01005, - -0.068057, - 0.060927, - 0.00067877, - -0.049356, - 0.050859, - -0.022116, - -0.031483, - -0.0023312, - -0.014175, - -0.0020566, - 0.023712, - -0.00027516, - -0.018808, - 0.043462, - -0.042734, - 0.018494, - 0.017932, - 0.023707, - 0.03785, - -0.0059606, - -0.015039, - 0.0063306, - 0.019249, - -0.02207, - 0.010262, - -0.046531, - -0.018971, - 0.040376, - -0.014243, - 0.028932, - -0.0077925, - -0.029129, - -0.041317, - -0.015619, - 0.10261, - 0.040487, - -0.035778, - -0.015618, - 0.018898, - -0.091136, - -0.0449, - 0.0008969, - 0.034617, - 0.01198, - 0.0055627, - 0.025945, - 0.010316, - -0.15315, - 0.090025, - 0.00068218, - -0.00076077, - 0.058043, - -0.01834, - -0.024241, - 0.017681, - 0.00013361, - -0.054145, - 0.063593, - 0.03763, - 0.096691, - -0.031666, - -0.04866, - 0.0072428, - 0.038474, - 0.039207, - 0.0072113, - -0.017959, - 0.014508, - -0.013365, - -0.022006, - 0.07439, - -0.013867, - -0.019096, - -0.0020552, - 0.077975, - -0.026943, - -0.00073386, - -0.017076, - -0.079419, - -0.031224, - -0.018654, - 0.074904, - 0.025822, - 0.01252, - -0.025871, - -0.021677, - -0.074621, - 0.1169, - 0.039099, - -0.040946, - -0.00081878, - -0.047793, - 0.011171, - -0.0028274, - -0.047208, - -0.0077803, - 0.019225, - 0.081641, - 0.011183, - 0.027582, - -0.01225, - -0.019077, - -0.059985, - 0.042552, - 0.019674, - 0.038014, - 0.0042979, - -0.013662, - -0.000014234, - -0.029678, - -0.089807, - 0.061391, - -0.02507, - 0.0096, - -0.021979, - 0.014504, - -0.01683, - 0.050496, - 0.073768, - -0.094904, - -0.03728, - -0.07346, - -0.0010081, - -0.021707, - -0.025006, - -0.0067212, - 0.025439, - 0.016716, - 0.014682, - 0.017421, - -0.033136, - 0.0052033, - -0.020022, - 0.032219, - 0.050646, - -0.043295, - -0.006259, - 0.024578, - 0.026769, - 0.0026887, - -0.0032505, - -0.028477, - 0.0041257, - 0.032154, - 0.043078, - -0.0315, - 0.031801 - ], - "handsets": [ - 0.0093539, - 0.000018199, - -0.0082999, - -0.037615, - 0.03167, - 0.0037912, - 0.06199, - -0.066253, - 0.02725, - 0.032352, - -0.0048319, - 0.011319, - -0.054551, - -0.0091055, - 0.022775, - -0.049175, - 0.10236, - -0.028104, - 0.061127, - -0.05618, - -0.0025618, - -0.10551, - 0.0010223, - 0.062286, - 0.06147, - -0.0066661, - 0.041783, - -0.02353, - 0.087011, - -0.078343, - -0.082651, - 0.018339, - 0.10846, - -0.011668, - 0.026571, - -0.015295, - 0.01106, - 0.0068285, - -0.0089343, - -0.030658, - -0.041357, - -0.094374, - -0.028938, - 0.029975, - 0.017562, - -0.072578, - -0.034266, - -0.066903, - 0.0089144, - -0.038953, - -0.054139, - -0.011192, - -0.058667, - -0.028476, - -0.086257, - 0.10364, - 0.036059, - 0.039229, - -0.0024443, - 0.0045022, - -0.043749, - 0.011543, - 0.12387, - 0.052848, - 0.010945, - -0.019642, - 0.034514, - -0.031707, - -0.066709, - 0.031921, - -0.052325, - -0.063557, - 0.044869, - -0.0028769, - -0.10506, - 0.034726, - 0.074083, - -0.028538, - -0.035736, - -0.046444, - 0.013398, - -0.10793, - -0.039147, - 0.077929, - 0.010369, - -0.048439, - -0.034919, - 0.010958, - -0.11189, - -0.026203, - -0.036668, - -0.046311, - -0.057808, - 0.086794, - -0.010434, - 0.05812, - -0.01294, - -0.10985, - -0.010737, - 0.030537, - 0.02532, - 0.0093574, - 0.0068848, - 0.069653, - 0.045162, - -0.029718, - -0.0079262, - 0.014646, - 0.0075661, - 0.0026317, - 0.045606, - 0.03521, - 0.053785, - 0.050216, - -0.089118, - -0.052444, - 0.013448, - 0.020039, - -0.061781, - -0.077641, - 0.026554, - 0.072351, - 0.0314, - -0.077992, - 0.12988, - 0.10449, - -0.018031, - 0.010055, - 0.089561, - 0.050549, - 0.049161, - 0.091995, - -0.024448, - -0.069852, - 0.07141, - 0.043348, - 0.0035444, - -0.009065, - -0.068946, - 0.051979, - 0.032421, - 0.045145, - 0.03295, - -0.001371, - 0.011942, - -0.047008, - -0.014303, - 0.072875, - 0.019329, - -0.0058028, - 0.023293, - 0.048439, - -0.012016, - -0.062488, - -0.02397, - 0.040019, - -0.020403, - -0.0080663, - 0.0082149, - 0.013174, - 0.067981, - -0.027077, - 0.052598, - 0.028112, - 0.016092, - -0.034459, - 0.010803, - 0.034827, - -0.017827, - 0.026625, - -0.0079374, - 0.16392, - 0.021167, - 0.054327, - -0.07036, - 0.063, - 0.01493, - 0.0032494, - -0.027001, - -0.054471, - 0.031245, - -0.0012352, - -0.010009, - -0.036865, - 0.046773, - 0.0048988, - -0.0066968, - 0.15282, - 0.030746, - 0.04373, - -0.052782, - 0.08504, - -0.063406, - -0.021652, - 0.02095, - -0.0082366, - -0.0024252, - -0.0061464, - 0.034745, - 0.039097, - -0.14451, - 0.049872, - -0.028903, - 0.075689, - -0.047103, - 0.052946, - 0.01816, - -0.0029764, - -0.052033, - -0.063744, - 0.074245, - -0.016732, - 0.060957, - 0.013904, - -0.0047764, - -0.035728, - -0.041908, - 0.072221, - -0.072296, - -0.018743, - 0.035379, - -0.048516, - 0.055336, - 0.070582, - 0.033126, - -0.069438, - -0.011682, - -0.0014979, - -0.017251, - 0.053974, - 0.036987, - 0.021275, - -0.045523, - 0.0078007, - 0.065112, - 0.065728, - -0.001013, - -0.044671, - 0.08682, - -0.0092281, - -0.020096, - -0.050962, - 0.025579, - 0.016849, - 0.033475, - -0.0036249, - -0.00080533, - -0.019072, - 0.025169, - -0.0036377, - -0.028374, - 0.028538, - -0.038763, - 0.033379, - -0.034368, - 0.047416, - -0.0055408, - 0.014309, - -0.037017, - 0.042164, - -0.014227, - 0.039348, - -0.028917, - -0.051919, - 0.028425, - 0.0078872, - -0.027509, - -0.011043, - 0.091699, - 0.083488, - 0.01488, - 0.068314, - -0.090125, - -0.041782, - 0.0011127, - -0.013693, - 0.012263, - 0.052385, - 0.0033527, - 0.0070518, - 0.027824, - -0.045715, - -0.044624, - 0.037008, - -0.026949, - -0.12393, - -0.13944, - 0.062978, - 0.06761, - -0.057183, - -0.026393, - 0.0016562, - -0.1024, - 0.0013925, - 0.058868, - -0.033633, - -0.013008, - -0.01467, - 0.015888, - -0.042821 - ], - "metaphysics": [ - -0.018321, - -0.063478, - 0.013218, - -0.033468, - 0.0099621, - -0.109, - 0.0073959, - -0.084007, - 0.012536, - -0.0094325, - 0.011648, - -0.051391, - 0.047378, - -0.031808, - -0.049004, - -0.098679, - 0.095494, - 0.045075, - 0.033033, - -0.016117, - -0.041713, - 0.0075543, - 0.032313, - 0.051177, - 0.010593, - 0.0038166, - 0.012895, - 0.042386, - 0.016825, - 0.02711, - 0.042991, - -0.0111, - -0.0031788, - -0.042893, - 0.0083333, - 0.032617, - -0.00073316, - -0.0091839, - -0.00059065, - 0.008178, - -0.015043, - -0.09007, - -0.019571, - 0.023108, - -0.034471, - -0.026089, - -0.069963, - -0.029228, - 0.0084294, - -0.022966, - -0.02639, - -0.031379, - 0.018146, - 0.030501, - -0.028553, - 0.0291, - -0.020159, - 0.06552, - -0.010992, - 0.037775, - 0.049955, - -0.085048, - 0.05109, - 0.029573, - -0.011361, - 0.0084484, - 0.017593, - 0.00040216, - -0.016896, - -0.0093603, - 0.011407, - -0.016238, - -0.022611, - 0.0037284, - 0.019535, - -0.044649, - -0.013042, - -0.032333, - 0.013783, - -0.0048234, - -0.014651, - 0.006422, - -0.055603, - 0.040473, - -0.067128, - -0.03151, - 0.056444, - -0.017023, - 0.030332, - 0.049572, - 0.038878, - -0.0062986, - -0.047258, - 0.028253, - 0.026329, - 0.048896, - 0.042871, - -0.064674, - -0.035575, - 0.010063, - -0.001014, - 0.05992, - -0.037641, - 0.031172, - -0.0054689, - -0.042255, - 0.033715, - 0.069544, - -0.019612, - -0.032248, - 0.022579, - 0.071804, - 0.014511, - -0.0065717, - 0.00030198, - 0.048799, - 0.05045, - 0.017772, - -0.030568, - 0.023135, - -0.023463, - -0.0021238, - -0.052671, - -0.050143, - 0.037241, - 0.0076384, - -0.076909, - -0.038448, - 0.0094123, - 0.10831, - -0.0026849, - -0.018438, - -0.014288, - 0.023652, - 0.0090603, - -0.013522, - 0.062684, - 0.016097, - -0.0090243, - -0.019652, - 0.042389, - -0.011985, - 0.02511, - 0.026441, - 0.010848, - -0.077307, - 0.010117, - -0.0074271, - -0.04122, - -0.033371, - 0.02203, - 0.037349, - -0.026733, - -0.022875, - -0.024417, - 0.053667, - -0.017976, - -0.053304, - 0.025182, - 0.028417, - 0.0098254, - 0.0024184, - -0.092217, - -0.0103, - 0.036814, - 0.032176, - -0.004969, - 0.028391, - -0.0069489, - 0.017815, - -0.018949, - -0.043932, - -0.01947, - -0.0070447, - 0.095207, - 0.044888, - 0.020851, - 0.046736, - -0.0069812, - 0.0082951, - 0.016667, - 0.031256, - 0.03614, - -0.0030254, - 0.032606, - -0.01162, - 0.041916, - 0.076346, - -0.011511, - -0.013364, - 0.074296, - 0.071679, - -0.03123, - -0.021173, - 0.014397, - -0.016296, - -0.052065, - 0.022124, - 0.023465, - -0.0067471, - -0.11576, - -0.017711, - 0.00089104, - -0.014809, - 0.022476, - -0.013176, - 0.04398, - -0.044173, - 0.011226, - 0.012081, - 0.081806, - 0.0062305, - 0.0099592, - -0.019442, - 0.054499, - 0.071495, - -0.010841, - 0.0012465, - -0.010766, - -0.039551, - -0.0056378, - 0.078503, - -0.059927, - 0.081416, - -0.0042394, - 0.013718, - 0.041439, - 0.045086, - -0.015221, - -0.020583, - -0.058002, - -0.01635, - -0.053699, - -0.030892, - 0.021905, - 0.012074, - -0.0072161, - -0.032476, - 0.022233, - -0.029134, - 0.018946, - -0.027314, - 0.010648, - 0.01163, - 0.0020375, - 0.025148, - -0.027867, - -0.021923, - -0.060634, - 0.029882, - 0.016343, - -0.037114, - -0.010304, - 0.011281, - 0.0028997, - 0.0048826, - -0.011591, - 0.017519, - 0.051398, - 0.016031, - 0.045536, - 0.026727, - 0.011181, - 0.014861, - -0.044617, - 0.0050029, - -0.023887, - 0.028595, - 0.067544, - -0.0045645, - 0.011563, - 0.066846, - -0.040706, - -0.012459, - 0.00014788, - -0.02518, - -0.010831, - 0.009475, - 0.023256, - -0.0061512, - 0.060504, - -0.032523, - -0.044514, - -0.080755, - -0.024181, - -0.0482, - 0.012655, - 0.0022941, - -0.047645, - 0.053109, - 0.023993, - -0.063748, - -0.00066871, - -0.052925, - -0.073822, - 0.027652, - 0.020688, - 0.036492, - -0.032664, - 0.086505 - ], - "competency": [ - -0.034061, - -0.04355, - -0.022749, - -0.043003, - -0.061899, - 0.011097, - -0.0045734, - -0.071008, - 0.089811, - 0.0013296, - 0.0016414, - -0.010602, - 0.015223, - 0.033864, - -0.0075111, - 0.034428, - 0.072022, - 0.045716, - 0.051441, - 0.0015311, - -0.052964, - -0.014303, - 0.064569, - 0.054686, - -0.10053, - 0.000002232, - -0.015214, - 0.023813, - 0.0063182, - -0.0013902, - 0.041082, - -0.014363, - -0.011332, - -0.075146, - -0.0036762, - 0.045144, - 0.022925, - -0.027898, - 0.011089, - 0.032469, - -0.0039791, - -0.09439, - 0.024698, - 0.030417, - 0.020816, - -0.032062, - -0.043615, - 0.013812, - -0.037164, - 0.030974, - 0.061536, - -0.0088095, - -0.0086551, - 0.055841, - -0.029284, - 0.050146, - 0.014579, - 0.012299, - -0.018019, - 0.0058265, - -0.0036069, - -0.044012, - 0.053767, - 0.020501, - 0.041021, - -0.028721, - -0.0058716, - -0.01084, - 0.01957, - -0.07979, - 0.06155, - -0.054263, - -0.013673, - 0.0075037, - 0.060698, - 0.0034507, - 0.022003, - -0.022825, - 0.010591, - -0.0031131, - -0.033005, - 0.0094083, - 0.01671, - 0.051099, - 0.001618, - -0.025037, - 0.05622, - -0.017767, - -0.036784, - 0.0075709, - 0.02251, - 0.0051658, - -0.078316, - -0.016007, - 0.011307, - 0.059681, - 0.036229, - -0.01257, - 0.002633, - 0.022913, - 0.031059, - 0.039206, - 0.0052037, - 0.0050864, - -0.019617, - -0.035288, - 0.08707, - -0.052603, - -0.034336, - -0.031264, - 0.034825, - 0.045243, - 0.053254, - -0.060712, - 0.02504, - -0.028812, - -0.017464, - -0.04731, - -0.061721, - -0.040735, - -0.0029492, - -0.0095286, - 0.014372, - -0.036391, - 0.050495, - 0.056982, - 0.022794, - -0.11304, - 0.031773, - 0.090017, - 0.020811, - -0.051412, - -0.026512, - -0.032274, - -0.0024257, - -0.0042339, - 0.028254, - 0.043101, - 0.028059, - -0.017743, - -0.057339, - -0.0098563, - -0.076124, - -0.01662, - -0.025394, - -0.061278, - -0.048781, - -0.018934, - 0.0082676, - 0.071901, - 0.051204, - 0.052366, - 0.022978, - -0.093906, - -0.0078594, - 0.030574, - -0.0089838, - -0.0066299, - -0.0049096, - 0.0058585, - 0.045878, - 0.044752, - -0.081941, - -0.012615, - 0.0081483, - 0.016089, - 0.040894, - -0.055678, - -0.038524, - -0.0033441, - 0.0052644, - 0.026038, - -0.026758, - 0.028144, - 0.0057754, - 0.032274, - 0.016231, - 0.010499, - -0.041387, - 0.022053, - 0.0043793, - -0.027849, - -0.036826, - -0.0083571, - 0.05272, - -0.053405, - -0.023303, - 0.084299, - 0.0364, - 0.053089, - -0.020882, - 0.055037, - 0.0061018, - -0.090815, - 0.050031, - -0.0000053961, - 0.03695, - 0.012881, - -0.022557, - -0.038173, - -0.13661, - 0.0048464, - -0.0043025, - -0.02221, - -0.063154, - -0.043629, - 0.021813, - -0.037138, - 0.012153, - -0.0038209, - 0.087625, - -0.025245, - -0.032438, - 0.021057, - 0.020948, - 0.0051245, - -0.031689, - 0.012353, - -0.057337, - 0.023151, - -0.039914, - -0.019352, - 0.0078953, - 0.075083, - 0.053089, - -0.013582, - 0.003831, - 0.080079, - -0.0042867, - -0.027777, - -0.0054843, - -0.033904, - -0.069589, - 0.031409, - -0.027206, - 0.018585, - 0.027754, - 0.0059218, - -0.0029807, - 0.0010558, - 0.050183, - 0.026536, - -0.018762, - 0.015836, - -0.039463, - -0.023601, - -0.020996, - -0.05537, - -0.043978, - -0.002362, - 0.029601, - 0.035262, - -0.047049, - -0.042424, - 0.04517, - 0.01969, - -0.016157, - 0.050319, - 0.025449, - -0.030394, - -0.05247, - 0.025246, - 0.0089668, - -0.01556, - -0.018313, - 0.0017673, - 0.059452, - 0.029942, - -0.026605, - -0.066521, - 0.0084634, - 0.039551, - -0.11056, - -0.05505, - 0.021709, - -0.020194, - 0.028421, - 0.038916, - 0.017559, - -0.044868, - 0.091506, - 0.043486, - -0.027688, - -0.0076571, - 0.059167, - 0.049242, - 0.014463, - 0.032296, - -0.023669, - -0.035425, - 0.016349, - -0.028005, - 0.0059252, - 0.0065864, - -0.023301, - -0.0076706, - -0.042718, - -0.050835, - -0.01603, - -0.039795 - ], - "safety-related": [ - -0.030968, - -0.031183, - -0.012046, - 0.014751, - -0.017328, - 0.0057646, - -0.020029, - -0.068263, - 0.019336, - 0.0056097, - -0.023623, - -0.059107, - -0.034555, - 0.046661, - -0.013964, - -0.00147, - 0.042646, - 0.086315, - 0.045518, - 0.012328, - -0.0077065, - 0.0028566, - 0.056832, - 0.0543, - 0.058946, - 0.04987, - -0.051815, - 0.013219, - 0.092458, - -0.031109, - 0.030776, - -0.032945, - 0.067968, - -0.084493, - 0.090719, - 0.000667, - -0.024683, - 0.0020927, - 0.048258, - -0.021448, - 0.015926, - -0.047724, - 0.010253, - 0.03291, - -0.0079531, - -0.047026, - 0.038928, - 0.0057409, - -0.0026094, - 0.035252, - 0.014397, - 0.0061977, - 0.00015897, - 0.011841, - -0.01422, - -0.01602, - -0.015664, - -0.00013633, - 0.019389, - 0.0018899, - 0.011488, - -0.024492, - 0.10981, - 0.056785, - 0.02533, - 0.002399, - 0.015113, - 0.0031623, - 0.06414, - 0.03846, - 0.055718, - 0.0012182, - 0.036503, - -0.004867, - 0.022917, - -0.014468, - 0.022714, - -0.020845, - -0.019041, - -0.012474, - 0.017624, - 0.021677, - -0.014236, - 0.014227, - -0.021352, - 0.025995, - 0.0060365, - 0.018988, - -0.010255, - -0.026223, - 0.017364, - 0.0031321, - -0.084037, - 0.044266, - -0.045983, - -0.028485, - 0.025547, - -0.0043088, - 0.0055853, - 0.019512, - -0.048051, - -0.01881, - -0.049597, - -0.003152, - 0.0064734, - -0.019777, - 0.0072508, - 0.018302, - 0.044694, - 0.011643, - 0.015123, - 0.032801, - 0.029367, - 0.017229, - 0.016824, - -0.062228, - -0.041262, - 0.0179, - -0.028749, - 0.0048467, - -0.011472, - 0.046152, - -0.02617, - -0.0034977, - 0.13712, - -0.0083396, - -0.013659, - -0.020321, - 0.02953, - 0.061967, - 0.0017972, - 0.019277, - 0.0064562, - -0.010569, - -0.01417, - 0.0073736, - 0.048591, - 0.076751, - 0.014265, - 0.027857, - 0.023, - 0.047784, - -0.026268, - 0.0019726, - -0.040265, - 0.0061863, - -0.0098986, - -0.00048825, - 0.062537, - -0.010215, - 0.020959, - 0.12274, - -0.028736, - -0.093152, - 0.0088731, - 0.0012796, - 0.0072081, - -0.0027392, - -0.013567, - 0.0035506, - 0.028687, - 0.0034028, - -0.03659, - -0.0057755, - 0.047791, - 0.0099536, - 0.018367, - 0.01209, - -0.00083951, - -0.061589, - 0.049626, - -0.0022794, - 0.01607, - 0.0046622, - 0.0012527, - 0.038483, - -0.012499, - 0.009901, - -0.035984, - -0.0053273, - -0.0010885, - -0.0024014, - 0.040819, - 0.000016525, - 0.006899, - -0.02672, - -0.039169, - 0.061923, - 0.0064931, - -0.017544, - -0.035901, - 0.0091382, - 0.024762, - -0.01427, - 0.044313, - 0.041323, - -0.0033433, - 0.0073016, - -0.0098372, - -0.049902, - -0.10811, - 0.0099682, - -0.026148, - -0.019508, - 0.0015799, - -0.0033016, - -0.019058, - 0.030167, - -0.018049, - 0.0044419, - 0.081012, - 0.015646, - 0.0049152, - 0.050043, - 0.016034, - -0.032824, - 0.013953, - -0.019681, - -0.034999, - -0.019582, - -0.033394, - -0.006317, - -0.026387, - 0.051179, - 0.0064189, - -0.023386, - -0.049924, - 0.046694, - 0.034165, - -0.008627, - -0.042571, - -0.036488, - -0.05346, - -0.00051464, - -0.0080773, - -0.025194, - 0.009796, - 0.011561, - 0.012325, - 0.0049541, - -0.011786, - 0.0069721, - 0.016021, - -0.0014358, - -0.13628, - -0.040383, - 0.028259, - 0.0037001, - -0.013226, - 0.014374, - -0.0080273, - 0.065193, - 0.015707, - -0.00021618, - -0.058541, - -0.018133, - 0.017081, - -0.0021928, - 0.0054984, - -0.011438, - -0.0027239, - -0.010386, - -0.052105, - -0.023432, - 0.0034041, - 0.011797, - -0.009109, - 0.042281, - 0.0095936, - -0.030339, - -0.0029591, - 0.046911, - -0.077651, - -0.056184, - 0.0099237, - -0.068169, - -0.014635, - 0.03703, - -0.015747, - -0.026952, - 0.077057, - -0.024599, - -0.021884, - 0.0088483, - -0.011195, - -0.017554, - -0.039607, - 0.028827, - 0.031124, - 0.0005086, - 0.073032, - 0.01424, - -0.00459, - -0.0078778, - -0.00060747, - -0.0094134, - 0.0094786, - 0.014772, - 0.012023, - -0.009162 - ], - "handicraft": [ - -0.024076, - -0.040319, - 0.040189, - -0.10124, - -0.075527, - -0.065978, - 0.011779, - -0.083828, - 0.020767, - -0.053211, - -0.0011249, - -0.015552, - -0.022426, - -0.047252, - 0.015032, - 0.050573, - 0.10252, - 0.015764, - 0.020067, - 0.033038, - 0.0093313, - 0.0037661, - -0.024207, - 0.055527, - -0.039029, - -0.062553, - 0.0019778, - -0.010065, - -0.042863, - -0.040139, - 0.023108, - -0.010818, - 0.083658, - -0.025827, - 0.057274, - -0.02645, - 0.11123, - 0.010201, - -0.010859, - 0.016866, - 0.010443, - -0.11903, - -0.034772, - 0.016422, - 0.015506, - -0.05821, - -0.036567, - -0.0045595, - 0.033033, - -0.028331, - -0.084038, - 0.00045619, - -0.060612, - 0.027865, - 0.015777, - -0.026167, - 0.018768, - -0.063802, - -0.02099, - -0.031415, - -0.07312, - -0.038386, - 0.082257, - 0.060982, - 0.023759, - -0.0022637, - -0.036715, - 0.0055651, - -0.0010411, - -0.036013, - 0.012262, - -0.055306, - 0.016932, - -0.02289, - 0.056721, - 0.0019742, - -0.031543, - -0.040101, - 0.037867, - -0.018972, - -0.0021722, - -0.023564, - -0.075875, - -0.0049921, - -0.043064, - -0.055451, - -0.050074, - 0.018071, - -0.044634, - -0.040172, - -0.053495, - 0.023211, - -0.064628, - -0.0060569, - -0.024502, - 0.074024, - 0.039529, - 0.017702, - 0.027106, - 0.022841, - -0.0070123, - -0.018076, - -0.023244, - 0.029065, - 0.00015341, - -0.078349, - 0.0076293, - 0.083155, - -0.039885, - -0.038134, - 0.017252, - 0.094527, - 0.07326, - 0.12736, - -0.0058687, - 0.010847, - -0.034803, - 0.014943, - -0.0458, - 0.0084865, - -0.030044, - 0.074296, - -0.060503, - -0.017178, - 0.095319, - 0.00063677, - -0.000081552, - -0.067193, - 0.052266, - 0.081799, - 0.017339, - 0.032231, - 0.0057662, - 0.022979, - -0.039087, - -0.028111, - 0.0025214, - 0.019071, - 0.0091387, - -0.022839, - -0.021894, - 0.0032025, - -0.014647, - 0.02071, - 0.016358, - 0.011118, - -0.048696, - 0.034226, - -0.037672, - 0.0058667, - 0.067185, - 0.027989, - -0.0091486, - -0.067937, - -0.024818, - 0.033179, - -0.018185, - 0.0042751, - -0.018097, - 0.014255, - 0.0022719, - -0.034234, - -0.075253, - 0.10482, - 0.0060387, - 0.063756, - 0.032281, - -0.061451, - 0.049866, - 0.088707, - 0.096731, - 0.045752, - 0.0037436, - 0.029533, - -0.022549, - 0.052348, - 0.010486, - 0.066764, - -0.060541, - 0.063559, - -0.043416, - 0.027292, - 0.0021812, - -0.038493, - -0.018601, - -0.039424, - 0.03158, - 0.098984, - -0.031096, - -0.053104, - -0.044138, - 0.073015, - -0.014421, - -0.024395, - -0.036331, - 0.040057, - 0.046963, - 0.022484, - -0.0018256, - 0.027697, - -0.12168, - 0.03641, - 0.010235, - -0.018706, - 0.063662, - 0.057592, - -0.042903, - 0.027484, - 0.065908, - -0.0093616, - 0.084613, - -0.00010634, - 0.019982, - -0.049177, - 0.001452, - 0.060072, - -0.047384, - 0.031503, - -0.010154, - 0.049816, - -0.0032996, - -0.07228, - -0.028599, - 0.082766, - 0.024969, - 0.010112, - 0.04216, - 0.068859, - -0.0086935, - 0.000589, - 0.00064048, - -0.020045, - -0.078972, - -0.0085565, - 0.011607, - 0.020447, - -0.048777, - -0.02459, - 0.0086744, - 0.016015, - 0.062776, - -0.0081151, - 0.012117, - 0.0053821, - -0.0015983, - 0.0081206, - -0.070877, - 0.026246, - 0.038928, - 0.0049122, - 0.0082801, - -0.022218, - -0.0050833, - 0.022154, - -0.0012224, - 0.040455, - -0.04296, - 0.017165, - -0.015452, - -0.01472, - -0.0091356, - 0.021338, - 0.039855, - 0.015314, - 0.0069247, - 0.015333, - 0.013415, - -0.0033634, - -0.019584, - -0.028673, - 0.031386, - 0.075689, - -0.076187, - -0.052165, - 0.019908, - -0.016694, - 0.054232, - 0.0089527, - -0.093208, - -0.035348, - 0.079273, - 0.0015386, - 0.0070384, - -0.020595, - -0.050831, - 0.11171, - 0.016638, - -0.033892, - -0.029031, - 0.01532, - -0.083359, - 0.049703, - 0.020331, - -0.013814, - 0.0083847, - 0.073631, - 0.012219, - -0.03191, - -0.014122, - -0.059032 - ], - "fixed-line": [ - 0.03109, - 0.018971, - 0.0096167, - -0.034586, - -0.040832, - 0.0064108, - 0.0076096, - -0.078343, - 0.032787, - -0.049016, - 0.033122, - -0.018981, - -0.035016, - -0.0014118, - 0.01642, - -0.0098326, - 0.078329, - -0.024701, - 0.07246, - -0.033035, - 0.01176, - -0.093838, - 0.021742, - 0.065924, - 0.0087935, - 0.036252, - 0.018698, - -0.024289, - 0.0026422, - 0.024891, - -0.034089, - 0.046641, - -0.025192, - -0.022281, - 0.054782, - -0.01454, - 0.004754, - 0.030913, - 0.071647, - -0.018595, - -0.026349, - -0.086902, - 0.000063311, - 0.0091816, - -0.036091, - -0.03412, - -0.053412, - -0.078953, - -0.048463, - -0.028166, - 0.036949, - -0.037885, - -0.0062012, - -0.021811, - 0.020886, - -0.023017, - -0.026596, - 0.036574, - -0.039561, - 0.013896, - -0.053401, - 0.048581, - 0.11855, - 0.010846, - -0.036863, - -0.014577, - -0.0035239, - -0.044598, - -0.034184, - -0.071718, - -0.049681, - -0.024121, - 0.068057, - 0.0064576, - -0.010992, - -0.027831, - 0.0025965, - -0.011567, - -0.017496, - -0.015342, - 0.0053871, - -0.02327, - -0.058838, - 0.012789, - 0.032368, - -0.037137, - 0.00053505, - -0.028183, - -0.061987, - 0.012233, - 0.0028924, - -0.0021904, - -0.11063, - 0.013195, - -0.0051968, - 0.066305, - -0.020896, - -0.039885, - -0.023353, - -0.016211, - -0.026737, - 0.025673, - -0.047651, - -0.0063955, - -0.0026874, - -0.070046, - -0.042983, - -0.025487, - 0.069094, - -0.04031, - 0.034293, - 0.070376, - 0.080821, - 0.036, - -0.051569, - -0.00021244, - 0.011841, - 0.030084, - 0.010726, - 0.023223, - 0.018354, - 0.063302, - 0.037907, - 0.00027396, - 0.059208, - 0.005579, - 0.048346, - -0.052483, - 0.056177, - 0.052486, - 0.014027, - -0.0098522, - -0.04616, - -0.035199, - 0.0029795, - 0.014245, - 0.078502, - -0.0036989, - 0.005822, - 0.066299, - 0.021682, - -0.032216, - -0.012974, - -0.021776, - 0.00039242, - -0.051006, - 0.01314, - 0.044236, - -0.023297, - -0.073998, - 0.059291, - 0.085062, - 0.020491, - -0.019512, - -0.049956, - 0.029997, - -0.029305, - -0.012026, - -0.02289, - 0.053265, - 0.036527, - 0.017149, - -0.022038, - -0.0082288, - 0.0089222, - 0.013471, - 0.018865, - 0.018148, - -0.0059516, - -0.012701, - -0.03844, - 0.088961, - 0.0076312, - 0.088688, - -0.040392, - 0.033116, - -0.053887, - 0.0085817, - -0.0049036, - -0.031345, - 0.011683, - 0.0024324, - -0.032831, - 0.017358, - 0.00048211, - -0.055622, - -0.013886, - 0.15602, - -0.0087681, - -0.010139, - -0.021733, - 0.055956, - 0.024958, - -0.011031, - 0.016922, - -0.0064154, - -0.020232, - 0.012196, - 0.023029, - 0.0059701, - -0.11409, - 0.0081689, - -0.022661, - 0.029061, - -0.0027607, - 0.052981, - 0.071883, - 0.010813, - -0.05298, - 0.00083039, - 0.10125, - -0.028301, - -0.0138, - -0.049876, - -0.083595, - 0.0071589, - -0.022577, - -0.043422, - 0.0035811, - 0.013734, - 0.056119, - -0.026563, - 0.067441, - 0.11372, - -0.034672, - 0.0013573, - 0.032338, - 0.027749, - 0.021331, - -0.027947, - 0.054429, - -0.014805, - -0.042973, - -0.02322, - 0.055685, - 0.053198, - -0.0062694, - 0.019357, - 0.039571, - -0.0044285, - 0.055678, - 0.0035563, - 0.040487, - 0.056722, - -0.10126, - -0.014762, - -0.041157, - 0.024925, - -0.021585, - -0.016305, - -0.0087833, - -0.016646, - -0.015962, - 0.048318, - 0.021592, - 0.076743, - -0.038019, - 0.0037825, - -0.039077, - 0.024786, - -0.037034, - 0.0024475, - 0.027286, - -0.024089, - 0.010946, - 0.042834, - -0.016934, - -0.014616, - 0.090071, - 0.037496, - -0.038975, - 0.065213, - -0.089648, - -0.039368, - -0.029934, - 0.0061373, - 0.074474, - -0.0099065, - 0.023468, - -0.011039, - 0.10908, - -0.035602, - -0.04249, - 0.058704, - -0.019534, - -0.02468, - -0.074058, - 0.012861, - 0.04639, - -0.023705, - 0.020344, - 0.0054549, - -0.051115, - 0.0075828, - 0.054831, - -0.029923, - -0.043493, - 0.04814, - 0.044523, - -0.029708 - ], - "trip": [ - -0.076999, - 0.032886, - 0.020013, - 0.097117, - 0.022257, - -0.03699, - -0.062568, - -0.15289, - -0.029374, - -0.012872, - -0.055492, - -0.11811, - -0.015812, - -0.020146, - 0.018357, - -0.064536, - 0.16552, - -0.058992, - 0.031021, - -0.028156, - -0.0024891, - 0.08976, - -0.099365, - 0.064906, - 0.059733, - 0.060274, - 0.00065957, - 0.052272, - -0.11419, - 0.018761, - -0.042111, - 0.041521, - 0.055834, - -0.12063, - -0.026916, - 0.036233, - -0.025363, - 0.10615, - -0.00079688, - -0.021774, - 0.051222, - -0.12268, - -0.039196, - -0.025568, - 0.050146, - 0.098678, - 0.063944, - 0.02611, - -0.0093306, - 0.034471, - 0.037362, - 0.037447, - -0.057362, - -0.039461, - -0.18316, - -0.018928, - -0.038644, - -0.093751, - -0.10207, - 0.022914, - -0.033509, - 0.027146, - 0.17066, - 0.016342, - 0.019046, - 0.0089063, - 0.056644, - -0.028253, - -0.078991, - 0.099392, - -0.045121, - 0.055333, - -0.06182, - 0.046587, - 0.057956, - 0.01823, - 0.0058414, - 0.0035961, - -0.028414, - 0.02359, - -0.058384, - -0.010336, - -0.0088915, - 0.067551, - -0.074255, - -0.12431, - 0.10417, - -0.062787, - 0.070701, - -0.13021, - 0.048311, - 0.087791, - -0.14889, - -0.02511, - 0.034232, - 0.017704, - 0.0036685, - 0.042207, - 0.013254, - -0.069193, - 0.13586, - 0.041317, - 0.010316, - -0.061225, - 0.0042142, - -0.10482, - -0.043966, - -0.093358, - -0.014837, - 0.052679, - 0.081312, - -0.034235, - 0.088202, - 0.082213, - 0.019795, - 0.0067151, - 0.016555, - -0.068407, - -0.086193, - 0.07793, - 0.10404, - 0.065406, - -0.049753, - 0.12991, - 0.072666, - -0.065916, - -0.030363, - -0.19204, - 0.02016, - 0.11464, - 0.052134, - -0.01288, - -0.087527, - -0.01806, - -0.031252, - 0.012532, - 0.01757, - 0.034606, - -0.032256, - 0.043194, - -0.0027703, - -0.053857, - 0.027874, - 0.0063199, - 0.0022834, - 0.04029, - -0.03449, - 0.0028152, - -0.064074, - -0.11255, - 0.0064455, - 0.048596, - -0.11186, - -0.16138, - 0.076882, - 0.022723, - -0.065619, - 0.029094, - -0.049287, - -0.087869, - 0.083159, - 0.11197, - -0.0304, - 0.0046357, - -0.020502, - 0.03631, - 0.11472, - -0.06251, - 0.10733, - 0.077919, - 0.074202, - 0.036421, - -0.094809, - -0.025127, - -0.0049118, - 0.081935, - 0.015255, - 0.023697, - -0.016479, - 0.066245, - -0.03479, - -0.020541, - -0.004849, - -0.090278, - 0.011455, - -0.029371, - -0.058302, - 0.14613, - 0.0096408, - -0.079688, - 0.10243, - 0.043923, - -0.062052, - -0.031979, - -0.059701, - 0.074108, - -0.048495, - 0.0056839, - -0.0010504, - 0.028932, - -0.19371, - 0.12619, - 0.095445, - -0.078416, - 0.06484, - -0.00027466, - -0.15423, - -0.0055468, - 0.097472, - -0.067348, - 0.12501, - -0.077409, - 0.0031677, - -0.060026, - 0.066209, - -0.047104, - -0.043833, - -0.096756, - 0.01549, - -0.1581, - -0.046977, - 0.034217, - -0.11359, - 0.12039, - -0.041377, - 0.044905, - -0.067487, - 0.11782, - -0.043125, - 0.068383, - -0.013771, - -0.17188, - -0.024866, - -0.015648, - 0.083025, - 0.0038064, - 0.076802, - 0.058444, - -0.025524, - 0.023457, - 0.14223, - 0.034399, - 0.070047, - -0.13059, - -0.023555, - 0.089555, - 0.070005, - -0.053586, - -0.0065019, - 0.10406, - 0.055358, - 0.011061, - -0.0083386, - -0.0032014, - -0.0010148, - -0.066672, - -0.017519, - 0.058688, - 0.029439, - 0.10606, - 0.0097735, - 0.060108, - -0.079536, - -0.11095, - 0.049879, - 0.0030425, - -0.109, - 0.037345, - 0.014972, - 0.043484, - -0.0074707, - 0.13429, - -0.16951, - -0.022766, - 0.0025505, - -0.049869, - -0.027828, - -0.012937, - -0.0010588, - 0.035491, - 0.054561, - -0.011182, - -0.044672, - -0.024985, - -0.017295, - -0.091746, - -0.029953, - 0.0074469, - -0.059114, - -0.04525, - 0.055405, - 0.052932, - -0.036142, - 0.009695, - -0.027403, - 0.016634, - 0.042549, - 0.024876, - -0.064285, - -0.059714 - ], - "WiFi": [ - -0.066849, - 0.031624, - -0.024466, - -0.0017785, - -0.081518, - -0.0042353, - 0.18163, - -0.040526, - 0.094689, - 0.072899, - -0.12218, - -0.051281, - -0.1332, - -0.091813, - -0.013876, - 0.043805, - 0.06215, - -0.064638, - 0.070967, - -0.23865, - 0.040073, - 0.011955, - 0.10636, - 0.000087095, - 0.0035541, - -0.023016, - 0.10591, - -0.10787, - 0.060882, - -0.013939, - 0.033679, - -0.030776, - -0.027003, - -0.022132, - 0.13961, - -0.066219, - 0.11255, - 0.097432, - 0.030685, - -0.12621, - -0.02385, - -0.072262, - -0.0043119, - 0.1476, - 0.037858, - -0.071559, - -0.049357, - -0.0217, - -0.052731, - 0.098294, - 0.08519, - 0.0051693, - 0.066621, - -0.079288, - -0.054793, - 0.082486, - 0.0060624, - 0.044982, - -0.008729, - 0.022278, - 0.022269, - -0.1259, - 0.063609, - 0.00035336, - -0.022226, - 0.047659, - 0.04064, - -0.040502, - -0.21816, - 0.03931, - 0.058479, - 0.024993, - -0.044567, - 0.017325, - -0.10234, - -0.070233, - 0.0067463, - -0.084518, - 0.013672, - -0.013392, - -0.0073049, - -0.011462, - 0.03347, - 0.078503, - 0.058578, - 0.056261, - -0.062724, - -0.081851, - -0.11059, - 0.052427, - 0.015422, - -0.027245, - -0.015554, - 0.014775, - -0.0066237, - 0.12711, - 0.045333, - -0.061733, - -0.10287, - 0.027422, - 0.023254, - 0.20065, - 0.062612, - -0.11205, - -0.02533, - -0.18864, - -0.020158, - -0.017932, - 0.10185, - -0.0081368, - 0.0096691, - 0.049806, - 0.074423, - 0.15735, - 0.093145, - -0.036446, - -0.089847, - 0.070292, - 0.04275, - 0.08348, - 0.035197, - 0.050571, - 0.016196, - -0.014519, - 0.071464, - 0.10468, - 0.038832, - -0.046886, - 0.036873, - 0.13713, - 0.047341, - -0.037418, - -0.10284, - -0.10374, - -0.021442, - 0.00053127, - 0.067641, - -0.046414, - -0.12893, - -0.055099, - 0.13007, - -0.0032739, - 0.053006, - -0.079873, - -0.073806, - -0.011595, - 0.034607, - -0.038481, - 0.035283, - -0.061395, - 0.037925, - 0.093716, - 0.0026512, - -0.03801, - 0.04136, - 0.1003, - 0.064003, - 0.020252, - -0.064237, - 0.022057, - 0.049682, - -0.13656, - -0.14142, - -0.084612, - 0.019033, - -0.10228, - 0.10739, - 0.088008, - 0.11711, - 0.063082, - -0.069801, - 0.28546, - 0.043922, - 0.01376, - -0.021312, - 0.087638, - -0.040953, - 0.028925, - -0.00628, - -0.07625, - 0.049648, - -0.038066, - 0.026384, - -0.0021366, - 0.01182, - 0.014672, - 0.010931, - 0.24808, - -0.033546, - 0.047939, - 0.08237, - 0.042551, - 0.073833, - 0.014052, - 0.068374, - 0.029981, - -0.063267, - 0.072477, - 0.034644, - -0.079702, - -0.073228, - 0.15395, - -0.03704, - 0.046839, - 0.032165, - 0.073666, - -0.039962, - -0.037886, - -0.19679, - 0.0050726, - 0.1597, - -0.0028024, - 0.016476, - 0.015169, - 0.057258, - 0.055031, - -0.030071, - -0.022225, - 0.012481, - -0.032419, - 0.1349, - 0.0046616, - 0.053281, - 0.077324, - 0.058644, - -0.014806, - 0.073301, - -0.036494, - -0.05063, - 0.0039921, - -0.11376, - -0.10007, - -0.10099, - -0.010091, - 0.06794, - 0.10271, - 0.10036, - 0.096853, - 0.062255, - -0.042718, - 0.048211, - -0.085884, - 0.26822, - -0.11627, - 0.037901, - 0.041698, - 0.069146, - 0.019041, - 0.036922, - -0.14274, - -0.02212, - -0.072506, - -0.31341, - -0.12028, - 0.024345, - 0.046784, - -0.0091238, - -0.038307, - -0.039672, - 0.14108, - -0.025698, - 0.13264, - -0.049746, - -0.054803, - -0.020173, - 0.03733, - 0.054083, - 0.013789, - 0.051116, - 0.1417, - -0.12555, - 0.042617, - -0.066723, - 0.017956, - -0.11942, - -0.036264, - -0.0046562, - 0.072308, - 0.081328, - 0.052281, - 0.20403, - -0.08794, - -0.0109, - 0.076391, - 0.0077605, - -0.12396, - -0.1944, - 0.074423, - 0.11525, - -0.040591, - 0.085099, - -0.030956, - -0.15701, - -0.028304, - 0.075384, - 0.067196, - -0.037077, - 0.039546, - 0.057705, - 0.087327 - ], - "aftermarket": [ - 0.043623, - 0.0057837, - 0.012718, - 0.037598, - -0.050528, - 0.0010408, - -0.021296, - -0.080188, - 0.020848, - 0.012592, - -0.037347, - -0.058282, - -0.056657, - -0.066651, - -0.0047648, - 0.015718, - 0.04152, - 0.0047099, - 0.047561, - 0.01501, - 0.034626, - 0.012726, - 0.011145, - 0.055418, - 0.049073, - -0.007565, - 0.042593, - -0.060882, - -0.039079, - -0.0088242, - -0.009543, - -0.03906, - 0.018741, - -0.068222, - 0.060751, - 0.086171, - 0.010878, - 0.032054, - 0.046863, - 0.021325, - 0.027103, - -0.058888, - -0.0068546, - 0.039587, - 0.00033026, - -0.047834, - -0.05401, - 0.0017532, - -0.071306, - 0.011966, - 0.0008339, - 0.030774, - -0.022362, - -0.0081909, - 0.021085, - -0.076514, - -0.0075933, - 0.061744, - -0.03604, - 0.012971, - -0.013527, - -0.0077769, - 0.11329, - 0.032365, - 0.030402, - -0.011507, - 0.0075699, - -0.03013, - 0.04798, - -0.0092337, - -0.020385, - -0.041521, - 0.0023262, - -0.018345, - -0.06262, - 0.012552, - 0.0054954, - -0.033258, - -0.013252, - -0.019122, - 0.0045466, - 0.0051308, - -0.05223, - 0.016147, - 0.050351, - 0.0005729, - -0.038062, - 0.014106, - -0.047929, - -0.069954, - 0.066387, - 0.010922, - -0.051363, - 0.010626, - -0.014813, - 0.075438, - 0.0014843, - 0.0076426, - -0.026578, - -0.05488, - -0.042042, - 0.0073463, - 0.019857, - -0.0084151, - 0.0034416, - -0.040552, - -0.014338, - -0.036946, - -0.0018485, - 0.029319, - 0.016724, - 0.11434, - 0.036596, - 0.028092, - 0.017697, - -0.047182, - -0.043018, - -0.039467, - -0.042568, - 0.0032925, - 0.032295, - 0.038027, - -0.06081, - 0.0078406, - 0.053863, - 0.0096932, - -0.018986, - 0.010852, - 0.074824, - 0.021659, - 0.03578, - 0.048929, - 0.0078609, - -0.0064028, - 0.033711, - -0.0060608, - -0.0044872, - -0.042787, - 0.024365, - -0.05141, - -0.033375, - 0.064466, - -0.072219, - 0.035387, - -0.014582, - -0.052342, - -0.0045929, - -0.085685, - 0.028825, - 0.03813, - 0.026981, - 0.086139, - 0.042935, - -0.075971, - -0.0099377, - 0.015882, - -0.034886, - -0.036619, - -0.060896, - 0.0097785, - 0.017504, - -0.010933, - -0.0094609, - -0.047339, - 0.078583, - 0.031226, - -0.036312, - 0.000060463, - -0.0032797, - 0.014685, - 0.051079, - 0.063872, - 0.030317, - 0.020427, - -0.043984, - 0.023973, - 0.02951, - 0.011758, - -0.053235, - -0.021758, - -0.0051178, - -0.00095558, - -0.056849, - -0.030304, - -0.0014557, - 0.051592, - -0.0059873, - 0.09378, - 0.0064204, - -0.0064564, - -0.083604, - 0.028452, - -0.0070108, - -0.013322, - 0.066778, - -0.02518, - -0.0067055, - -0.070532, - 0.0018732, - 0.02972, - -0.10539, - 0.023971, - -0.061814, - -0.0067519, - 0.03145, - -0.039399, - 0.0020095, - 0.040522, - 0.03982, - -0.0090754, - 0.1074, - 0.0019283, - 0.047068, - -0.032131, - 0.013264, - 0.013629, - -0.053209, - -0.044296, - 0.013406, - -0.0025263, - 0.039777, - -0.04316, - 0.017829, - 0.080948, - -0.051427, - -0.086745, - -0.014624, - 0.074915, - -0.00061911, - 0.0074068, - -0.0076247, - -0.046277, - -0.027625, - -0.0010496, - 0.03385, - -0.0025966, - 0.025596, - 0.0017037, - 0.013563, - -0.07752, - -0.02422, - -0.043026, - -0.047705, - -0.0047209, - -0.088728, - -0.020635, - -0.055873, - 0.0071494, - 0.029676, - -0.055383, - 0.0021575, - 0.007811, - -0.053527, - 0.10996, - -0.0060156, - -0.014149, - 0.026706, - -0.027547, - 0.014844, - -0.016374, - 0.075192, - 0.0082858, - -0.043662, - -0.048343, - 0.042641, - 0.045208, - 0.037306, - -0.0041564, - 0.0080752, - 0.010634, - 0.011214, - 0.048744, - -0.070151, - 0.0085527, - 0.0059131, - -0.026579, - -0.036123, - 0.080723, - -0.054516, - -0.02506, - 0.021241, - 0.052717, - -0.001519, - 0.062247, - -0.032923, - -0.070165, - -0.037382, - -0.0099722, - -0.036948, - 0.033338, - -0.043837, - -0.0057867, - 0.00070971, - 0.039858, - -0.016068, - -0.071645, - 0.047599, - -0.03772, - 0.021478, - -0.034693 - ], - "life-time": [ - -0.059252, - -0.074289, - 0.031778, - -0.010988, - 0.0030578, - -0.015283, - -0.025304, - -0.094735, - 0.11298, - -0.015784, - 0.056509, - -0.009933, - 0.012395, - -0.054522, - -0.00297, - -0.0038261, - 0.058722, - 0.033227, - 0.053357, - 0.034271, - 0.0012045, - 0.015352, - -0.069822, - 0.098227, - 0.064046, - -0.055452, - -0.0034646, - 0.0027831, - -0.0014752, - -0.027428, - -0.013112, - -0.017825, - -0.022323, - -0.029503, - -0.047918, - 0.065425, - -0.01325, - -0.033083, - 0.036965, - 0.090723, - -0.011063, - -0.015209, - -0.0043232, - 0.017757, - -0.014722, - 0.0013695, - -0.0022386, - -0.060391, - -0.012767, - 0.048409, - -0.073261, - 0.042982, - -0.030234, - -0.00046824, - 0.05023, - 0.0073788, - -0.048213, - -0.01357, - -0.021322, - -0.017499, - 0.037543, - -0.01465, - 0.17062, - -0.0089368, - 0.0074348, - 0.031459, - 0.029026, - -0.044188, - -0.0027043, - -0.031863, - 0.0072402, - 0.016681, - 0.011121, - -0.0039, - -0.010086, - 0.030104, - -0.012167, - -0.025615, - -0.0088275, - -0.01265, - 0.042947, - -0.0088397, - 0.037761, - 0.067754, - -0.020679, - -0.011927, - -0.037287, - 0.003105, - -0.039518, - -0.035677, - 0.083068, - 0.055159, - -0.10035, - -0.030514, - -0.054761, - 0.045943, - -0.0071633, - 0.0089764, - 0.069523, - 0.038276, - 0.0067818, - -0.0027417, - 0.0062327, - -0.028, - 0.0074124, - -0.055514, - 0.066193, - -0.0025272, - -0.015278, - 0.0088978, - -0.0087859, - -0.020682, - 0.033421, - 0.0095096, - -0.022089, - -0.015736, - 0.0010231, - 0.016322, - -0.099465, - 0.035658, - -0.026722, - -0.0060317, - 0.0043589, - 0.038793, - 0.022422, - 0.0094679, - 0.035859, - -0.11467, - 0.05092, - 0.0090537, - 0.020073, - -0.010731, - 0.011505, - -0.054457, - -0.052205, - 0.043802, - 0.040749, - 0.053243, - 0.013872, - -0.0135, - 0.036659, - -0.017054, - 0.0030072, - -0.013491, - -0.017706, - 0.022026, - -0.021231, - -0.01124, - 0.026051, - 0.02198, - 0.040329, - 0.06994, - -0.039616, - -0.029726, - 0.011353, - -0.049631, - -0.011907, - 0.011823, - 0.0069464, - -0.042188, - 0.041055, - 0.082865, - -0.03932, - 0.013764, - -0.013065, - -0.01409, - 0.019286, - -0.025212, - -0.062952, - -0.018017, - 0.037679, - 0.012258, - -0.037476, - 0.0049567, - -0.020436, - 0.011577, - 0.030196, - -0.028453, - -0.01664, - 0.0071328, - -0.013604, - -0.018449, - -0.014352, - 0.031925, - -0.0025341, - -0.062528, - 0.033449, - 0.00030928, - 0.056868, - 0.010635, - 0.045629, - 0.068633, - 0.055984, - -0.014003, - 0.00029858, - -0.01929, - -0.030551, - 0.036532, - 0.0055095, - 0.022088, - -0.13064, - 0.038114, - -0.0019648, - -0.074914, - -0.014171, - -0.026943, - 0.043697, - -0.011187, - -0.013959, - -0.011847, - 0.14228, - 0.023428, - -0.023742, - -0.0090401, - 0.0084644, - -0.0051312, - -0.057462, - 0.0032122, - 0.034943, - -0.086103, - 0.0035794, - 0.0065543, - 0.063573, - 0.076403, - 0.058051, - 0.0097143, - -0.002774, - 0.061236, - -0.014303, - -0.073015, - 0.023934, - -0.1365, - -0.021121, - 0.011286, - -0.018701, - -0.0038475, - 0.0036004, - 0.01964, - -0.026025, - 0.0081395, - 0.0795, - -0.03151, - 0.073791, - -0.0055408, - -0.15398, - -0.024551, - 0.012515, - -0.10987, - 0.025689, - -0.003145, - -0.033298, - 0.036521, - 0.037954, - 0.026333, - 0.01231, - -0.0057419, - 0.03155, - -0.046243, - 0.11327, - 0.029179, - -0.020083, - 0.021773, - -0.030183, - -0.036143, - 0.014776, - -0.016152, - 0.003106, - -0.013708, - 0.10127, - -0.0066361, - 0.037649, - 0.074971, - -0.064836, - -0.017775, - 0.023291, - -0.094275, - 0.001831, - 0.0067147, - 0.0059783, - 0.016868, - 0.061316, - 0.0018396, - -0.059878, - -0.04298, - 0.034553, - 0.024633, - -0.060034, - -0.039923, - 0.011088, - 0.044749, - 0.07985, - 0.022455, - -0.017359, - -0.057823, - 0.034124, - 0.032286, - -0.0097248, - -0.014206, - -0.013142, - 0.01092 - ], - "sciences": [ - -0.030356, - -0.089914, - -0.011284, - -0.049495, - 0.021588, - -0.078523, - 0.014843, - -0.086964, - 0.10923, - 0.0077297, - -0.0196, - -0.064973, - 0.052931, - 0.0050165, - 0.052668, - -0.020923, - 0.082424, - 0.053759, - 0.024342, - 0.024834, - -0.046614, - 0.025682, - 0.089424, - 0.07715, - -0.00033921, - -0.037817, - -0.0075961, - 0.058183, - 0.070614, - 0.004749, - 0.020612, - -0.00070635, - 0.024362, - -0.059438, - 0.053719, - 0.059452, - 0.013464, - -0.0037589, - -0.0062327, - 0.043415, - -0.056702, - -0.13661, - -0.017638, - 0.034831, - -0.0025246, - -0.046111, - -0.033955, - -0.02265, - 0.0080254, - -0.014886, - -0.027265, - 0.010861, - 0.022916, - -0.015, - -0.094086, - 0.037753, - 0.020086, - 0.048373, - 0.052106, - 0.041606, - 0.026026, - 0.037535, - 0.10615, - 0.025753, - 0.063852, - -0.01043, - -0.019223, - -0.022573, - 0.039327, - -0.010106, - 0.0557, - -0.015063, - 0.022893, - -0.022289, - 0.023518, - 0.021953, - 0.01899, - -0.034738, - 0.028388, - -0.024853, - -0.01752, - 0.017133, - -0.062211, - 0.018795, - -0.059616, - 0.045413, - 0.011958, - -0.022372, - 0.009922, - 0.046172, - 0.055911, - 0.000035196, - -0.062873, - 0.049381, - 0.0038709, - 0.091757, - 0.027299, - 0.017836, - -0.03902, - 0.071813, - 0.0049759, - -0.018453, - 0.028945, - -0.026848, - 0.065195, - -0.068284, - -0.010373, - 0.060594, - 0.097411, - -0.016824, - -0.069148, - 0.078772, - 0.037133, - 0.02971, - 0.013956, - 0.002785, - 0.022867, - -0.031806, - -0.0077649, - 0.019846, - -0.016505, - -0.0052559, - -0.084182, - 0.0033503, - 0.1035, - 0.027059, - -0.10208, - -0.044676, - 0.0084007, - 0.1495, - 0.014597, - 0.061615, - -0.021728, - 0.033623, - -0.019182, - -0.016288, - 0.033089, - -0.00087402, - 0.0035713, - -0.010947, - 0.020016, - -0.032707, - -0.016226, - 0.019293, - -0.0035477, - 0.0093899, - -0.053527, - 0.042137, - -0.023592, - -0.015466, - 0.091666, - 0.081781, - 0.013405, - -0.039631, - 0.042575, - 0.068513, - 0.039768, - 0.016562, - 0.00512, - -0.0065779, - 0.047582, - -0.013378, - -0.049741, - -0.019481, - 0.032211, - 0.015184, - -0.076136, - 0.02156, - -0.020649, - -0.019895, - 0.070849, - -0.036506, - -0.0055404, - 0.00066691, - 0.064873, - 0.057321, - 0.036515, - 0.078385, - -0.02281, - -0.006826, - 0.036051, - 0.013007, - 0.00022617, - -0.018533, - -0.00145, - -0.027996, - 0.018015, - 0.12929, - -0.034022, - 0.057932, - -0.015282, - 0.091503, - -0.056961, - -0.047267, - -0.020462, - -0.027483, - -0.074582, - -0.0040207, - -0.01437, - -0.040156, - -0.13972, - -0.064187, - 0.045969, - 0.0069639, - 0.0081147, - 0.007486, - 0.013608, - -0.055249, - -0.0047924, - 0.028354, - 0.072109, - 0.0058508, - -0.016764, - 0.017448, - 0.055238, - 0.09643, - 0.0088041, - 0.004529, - -0.091535, - -0.0036967, - -0.026048, - 0.062942, - -0.091186, - 0.08969, - 0.03484, - 0.026166, - 0.026301, - 0.084384, - 0.019237, - 0.019766, - 0.013483, - 0.0056098, - -0.05623, - -0.00090693, - 0.0074824, - 0.022595, - -0.055056, - -0.039331, - -0.046499, - -0.0088688, - -0.04128, - -0.035414, - 0.02111, - 0.057128, - 0.034904, - 0.047359, - -0.048701, - 0.0018238, - -0.011422, - 0.042292, - 0.07925, - 0.041971, - 0.02714, - -0.050545, - -0.080371, - 0.050675, - -0.009441, - 0.042419, - 0.077405, - 0.0060757, - -0.021293, - 0.038042, - 0.005122, - -0.015031, - 0.0044835, - 0.0080349, - 0.070454, - 0.035473, - 0.098421, - -0.00081633, - 0.01888, - 0.077689, - -0.072107, - -0.017513, - 0.036763, - -0.048696, - -0.042013, - 0.011954, - 0.012175, - -0.039726, - 0.046916, - -0.070799, - -0.01562, - -0.084041, - -0.015518, - 0.0075173, - -0.10494, - -0.022564, - -0.0087164, - 0.012229, - -0.083658, - 0.043106, - -0.096467, - -0.017891, - -0.045375, - 0.020436, - -0.011081, - 0.022867, - 0.014702, - 0.05608 - ], - "anti-drug": [ - -0.031865, - -0.0714, - 0.040353, - 0.10099, - -0.034833, - -0.034277, - -0.025086, - -0.082206, - 0.033439, - 0.070297, - 0.054486, - -0.056394, - 0.010192, - 0.0054811, - 0.043815, - -0.0062368, - 0.10642, - 0.016992, - 0.062453, - 0.063572, - -0.0055626, - -0.041123, - 0.029235, - 0.063516, - -0.013436, - -0.05803, - 0.030081, - 0.055162, - 0.035025, - 0.021069, - -0.018692, - -0.0079648, - 0.015728, - -0.11192, - 0.12465, - 0.03683, - -0.0085407, - -0.05563, - 0.026532, - -0.040454, - 0.0084663, - -0.11049, - 0.028097, - 0.047926, - 0.14326, - 0.044474, - 0.046489, - 0.095934, - -0.0066724, - 0.014845, - 0.0071219, - 0.0033741, - 0.061815, - -0.015614, - 0.012161, - 0.030672, - 0.025345, - -0.063138, - -0.0067212, - 0.099966, - -0.037939, - -0.026579, - 0.1305, - -0.006192, - -0.098164, - -0.017646, - 0.10251, - -0.094066, - 0.09384, - 0.067863, - -0.021327, - 0.10864, - -0.0039329, - -0.019429, - 0.0085497, - -0.046035, - 0.090458, - 0.017391, - 0.030371, - -0.035286, - -0.041841, - 0.0026298, - -0.076732, - -0.034629, - -0.013539, - -0.0041253, - -0.0088914, - 0.022348, - 0.028367, - -0.0096136, - -0.035997, - 0.11101, - -0.08054, - 0.0037512, - 0.025147, - 0.03686, - -0.029486, - -0.038587, - 0.052818, - 0.058248, - 0.034265, - -0.031031, - -0.035955, - -0.068116, - -0.030409, - -0.065201, - -0.024309, - -0.036024, - 0.033786, - 0.10984, - -0.000025499, - 0.038932, - 0.028925, - -0.024761, - 0.034036, - -0.027869, - 0.04566, - -0.042883, - -0.011702, - 0.036795, - -0.00094069, - -0.010667, - -0.080567, - -0.076597, - 0.098899, - 0.00072439, - 0.022165, - 0.045881, - 0.044747, - 0.12991, - -0.046602, - 0.0076712, - 0.019458, - -0.006689, - 0.020372, - -0.043349, - -0.028178, - 0.023758, - -0.023891, - 0.045551, - 0.0355, - 0.077071, - -0.0073349, - 0.00026918, - -0.1097, - -0.0022496, - 0.012231, - 0.040596, - 0.043786, - -0.078988, - 0.074283, - 0.17198, - -0.026675, - -0.0039976, - -0.026347, - -0.020858, - -0.06235, - 0.040707, - 0.074033, - 0.024351, - 0.058524, - 0.063972, - -0.13973, - 0.00014709, - -0.043782, - -0.069256, - 0.10216, - -0.0065296, - -0.053516, - -0.051244, - 0.011234, - -0.05513, - 0.033699, - -0.029161, - -0.049699, - 0.047028, - -0.053104, - 0.040683, - -0.050965, - 0.0017305, - -0.073613, - -0.031877, - 0.0071225, - 0.044602, - 0.076045, - -0.011794, - 0.11891, - 0.13549, - 0.035185, - -0.06662, - 0.079008, - 0.081374, - 0.096474, - 0.034122, - 0.065015, - -0.063475, - 0.034276, - 0.10076, - 0.016966, - -0.034756, - -0.10336, - -0.013252, - -0.01432, - 0.098283, - 0.035853, - 0.031579, - 0.033414, - 0.05316, - 0.016276, - 0.0056275, - 0.16518, - 0.048405, - -0.02266, - 0.02027, - -0.030008, - -0.065387, - -0.057613, - 0.076047, - 0.008132, - -0.059485, - -0.035682, - -0.020323, - 0.041582, - 0.096817, - -0.025226, - -0.02209, - 0.0041953, - 0.047364, - 0.033497, - 0.00053797, - -0.020819, - -0.056544, - 0.020511, - -0.032817, - 0.019337, - -0.023488, - -0.064715, - -0.095489, - -0.011724, - -0.0030483, - 0.022887, - -0.037934, - 0.033999, - -0.057878, - -0.085443, - 0.030435, - -0.023446, - -0.055864, - 0.069857, - 0.073375, - 0.072602, - 0.029847, - 0.034993, - -0.023153, - 0.018979, - 0.002875, - 0.025523, - -0.00015647, - 0.030931, - -0.07773, - 0.0057827, - 0.0094452, - -0.00063233, - 0.023273, - 0.072115, - -0.016247, - -0.011996, - 0.06124, - 0.073269, - 0.10925, - -0.0051434, - 0.060682, - -0.082912, - -0.033916, - -0.00067643, - -0.090381, - -0.036284, - 0.020376, - -0.062135, - 0.028828, - 0.19946, - -0.023739, - -0.053538, - -0.031362, - 0.017176, - 0.043613, - 0.05094, - -0.031019, - 0.0235, - -0.11738, - 0.0078161, - -0.067246, - 0.064876, - 0.0847, - -0.078252, - 0.012411, - 0.05751, - 0.0046881, - -0.047536, - -0.083549 - ], - "animation": [ - -0.096395, - -0.013836, - 0.0084151, - 0.032537, - -0.026124, - -0.01314, - -0.0049906, - -0.097704, - 0.038098, - -0.025584, - 0.030514, - -0.049501, - 0.016074, - 0.030688, - -0.0052378, - -0.0063825, - 0.059293, - 0.065074, - 0.026637, - -0.012719, - 0.030113, - -0.013006, - -0.023236, - 0.066386, - -0.017077, - -0.0078636, - 0.0015805, - 0.021548, - 0.015139, - 0.044096, - -0.12147, - -0.025274, - 0.037725, - -0.080586, - 0.071195, - 0.0054764, - 0.02483, - -0.075227, - 0.0019404, - -0.043402, - -0.028324, - -0.10401, - 0.0017427, - -0.06447, - -0.037396, - -0.0064117, - 0.068275, - -0.029548, - -0.0058946, - 0.011939, - -0.00908, - -0.011186, - 0.016684, - 0.027125, - -0.051106, - -0.0055573, - -0.0013314, - -0.073881, - -0.021272, - 0.04168, - -0.015638, - -0.042639, - 0.078931, - 0.021129, - 0.064283, - 0.041952, - -0.033281, - -0.03253, - 0.0074404, - 0.014919, - -0.017116, - -0.058506, - -0.0037652, - 0.057899, - 0.011152, - -0.036227, - 0.020537, - -0.0084826, - -0.0089566, - -0.039329, - -0.0064074, - -0.021126, - -0.038714, - 0.0066326, - -0.00019727, - -0.013124, - -0.049372, - -0.0048349, - 0.0019618, - 0.027431, - 0.031889, - 0.048954, - -0.056442, - 0.0033423, - 0.010886, - 0.057672, - 0.062347, - 0.044908, - 0.01094, - 0.012061, - 0.02502, - -0.060551, - -0.023065, - 0.0264, - -0.0069971, - -0.07131, - -0.029646, - -0.018218, - -0.017781, - -0.025191, - -0.04871, - 0.074331, - 0.0208, - 0.043586, - 0.043887, - -0.006704, - -0.045837, - -0.035873, - -0.034518, - 0.013545, - -0.038181, - -0.00078819, - -0.0025213, - -0.0098646, - 0.057412, - 0.057691, - 0.021026, - -0.042941, - 0.0043236, - 0.096545, - -0.043173, - 0.010389, - -0.058863, - -0.016243, - 0.087643, - 0.040906, - 0.03586, - 0.019573, - 0.056201, - 0.042805, - -0.016679, - 0.041844, - 0.098094, - 0.037812, - 0.015638, - -0.0079414, - -0.087569, - -0.078088, - -0.059569, - -0.042576, - 0.04257, - 0.066592, - -0.038321, - -0.053333, - -0.029032, - 0.044758, - -0.038934, - 0.041003, - -0.032318, - 0.019423, - 0.015314, - -0.015676, - -0.070535, - -0.00060264, - -0.038082, - 0.055575, - -0.085621, - 0.016643, - -0.0037212, - -0.047337, - 0.047129, - 0.012726, - -0.024104, - 0.027434, - 0.019384, - 0.038916, - -0.011013, - 0.044366, - -0.0069272, - 0.0064617, - -0.032128, - -0.0068629, - -0.03505, - -0.031897, - 0.00041476, - -0.025846, - 0.0056035, - 0.075476, - -0.0071309, - -0.051466, - 0.035431, - 0.090309, - -0.016959, - -0.046623, - -0.038414, - 0.029853, - 0.083216, - 0.00025718, - 0.030835, - 0.013712, - -0.15354, - 0.045833, - 0.042762, - -0.03454, - 0.025306, - 0.084516, - -0.0091785, - -0.0048237, - -0.018892, - -0.018945, - 0.11111, - 0.01757, - 0.0067076, - -0.014622, - 0.028985, - -0.016344, - 0.060704, - 0.039568, - -0.012849, - -0.0075491, - -0.02266, - 0.030521, - 0.030161, - 0.086725, - -0.0071124, - -0.021129, - 0.07742, - 0.062054, - 0.0072114, - -0.00025939, - 0.035451, - -0.037665, - -0.046226, - 0.048694, - 0.016313, - -0.026753, - -0.010415, - -0.041325, - -0.036066, - -0.014996, - 0.015507, - 0.070241, - -0.078343, - 0.010638, - -0.015158, - 0.045469, - 0.039789, - -0.023366, - -0.030295, - -0.0017281, - 0.079589, - -0.056, - 0.022729, - 0.03883, - -0.015703, - -0.0063631, - -0.0097481, - 0.010704, - -0.0066041, - 0.013489, - 0.026052, - -0.015209, - 0.035298, - -0.030549, - 0.00040875, - 0.0036472, - 0.051037, - -0.02486, - 0.039602, - -0.023706, - 0.016259, - 0.075327, - -0.069165, - -0.018882, - -0.033898, - -0.028763, - 0.021357, - 0.020875, - 0.0021119, - -0.065752, - 0.082988, - 0.019507, - 0.021696, - -0.023032, - -0.030269, - -0.032857, - 0.0018986, - 0.0090079, - -0.012483, - 0.043767, - -0.037895, - -0.02475, - -0.016531, - -0.02533, - 0.037928, - 0.031164, - -0.020179, - 0.00986, - 0.07543, - 0.046003 - ], - "financials": [ - 0.029264, - -0.044069, - -0.036172, - 0.00049651, - 0.0071482, - -0.015927, - -0.00019674, - -0.066099, - 0.04199, - -0.016522, - 0.0057963, - -0.04364, - 0.016081, - -0.012981, - -0.02029, - 0.037945, - 0.064743, - -0.033216, - 0.029607, - -0.021541, - 0.019964, - -0.031804, - -0.0013026, - 0.069517, - -0.010163, - 0.050296, - 0.016464, - 0.021132, - 0.067144, - 0.0011039, - 0.015184, - -0.0027138, - -0.060625, - -0.019236, - 0.024423, - 0.048878, - -0.045812, - 0.0044208, - -0.0090712, - -0.0001854, - -0.011397, - -0.07716, - 0.023959, - 0.053226, - 0.0059713, - -0.019761, - 0.033144, - -0.032753, - 0.00026893, - -0.061576, - -0.015282, - -0.036453, - -0.003577, - -0.0017549, - -0.05456, - 0.032308, - -0.062802, - 0.0067953, - -0.00082176, - 0.039382, - 0.020787, - -0.0017118, - 0.094433, - 0.029762, - 0.037776, - -0.016738, - 0.031123, - -0.0014424, - 0.022344, - 0.025317, - -0.042448, - -0.066581, - 0.065827, - -0.024583, - -0.0041477, - 0.023784, - 0.027183, - -0.050338, - -0.011093, - -0.041193, - 0.0095006, - -0.006628, - -0.037505, - 0.063167, - -0.0055105, - -0.0032967, - 0.011906, - -0.019013, - 0.014471, - -0.031787, - 0.0098746, - -0.016217, - -0.06883, - 0.022167, - -0.013864, - 0.042308, - -0.0057554, - -0.017861, - 0.021641, - 0.045, - -0.027295, - 0.011053, - 0.012797, - 0.011406, - 0.027694, - -0.077603, - -0.035202, - -0.033089, - 0.049783, - 0.0815, - 0.00052266, - 0.056988, - 0.022055, - -0.033237, - 0.0096545, - -0.068416, - -0.085985, - 0.0095, - -0.06111, - -0.024149, - -0.004344, - -0.042514, - 0.096744, - 0.0086598, - 0.08661, - 0.011827, - -0.078345, - -0.011882, - 0.033038, - 0.10781, - 0.0114, - 0.027348, - -0.011407, - -0.00082339, - -0.039123, - -0.012912, - 0.039556, - 0.043613, - 0.0035002, - 0.041971, - -0.047188, - 0.010849, - -0.05012, - 0.049051, - 0.020788, - -0.030791, - -0.011147, - -0.04662, - 0.0088736, - -0.022068, - 0.006983, - 0.09477, - 0.067231, - -0.034811, - 0.017904, - 0.016223, - 0.038308, - -0.05022, - -0.020163, - 0.016728, - 0.101, - 0.052666, - -0.028896, - 0.032447, - 0.054386, - 0.04526, - -0.088336, - -0.040484, - 0.017022, - 0.056257, - -0.050503, - -0.016398, - 0.012104, - 0.036068, - 0.0024274, - 0.02681, - -0.026858, - -0.033172, - -0.0055812, - 0.0024865, - 0.039714, - 0.000095431, - -0.022967, - -0.024307, - 0.014495, - -0.034211, - -0.032347, - 0.047758, - -0.016736, - 0.0073627, - -0.061069, - 0.080225, - -0.03269, - -0.037422, - 0.066467, - -0.0312, - -0.048538, - -0.051787, - -0.012986, - -0.070158, - -0.15187, - 0.0037673, - -0.016154, - -0.047333, - 0.038477, - -0.030374, - -0.069356, - -0.045119, - 0.024183, - 0.0083091, - 0.060236, - 0.023056, - 0.003297, - 0.0035871, - -0.01202, - -0.0053336, - 0.027186, - 0.050688, - -0.045943, - -0.00091292, - 0.062764, - -0.0020252, - -0.045205, - 0.069755, - 0.051114, - 0.015196, - -0.017494, - 0.033872, - 0.024816, - 0.015408, - 0.042477, - -0.011781, - -0.072037, - 0.053313, - 0.031181, - -0.051271, - -0.013938, - -0.0066908, - -0.0044295, - -0.063208, - -0.0076836, - 0.036344, - 0.015179, - 0.0038557, - -0.020309, - -0.024499, - -0.052079, - -0.057998, - 0.0089153, - -0.0033973, - 0.056256, - -0.04316, - -0.023754, - -0.0040846, - -0.048368, - -0.018552, - -0.025649, - -0.016884, - 0.0053138, - 0.077625, - 0.030782, - 0.043491, - -0.043298, - -0.0073446, - 0.048405, - 0.058323, - 0.010836, - 0.05327, - -0.040516, - 0.017362, - -0.008264, - 0.048784, - -0.099126, - -0.026339, - -0.010369, - -0.047992, - 0.011341, - 0.027277, - 0.01347, - 0.05767, - 0.037744, - 0.008481, - 0.0014089, - 0.042132, - 0.021143, - -0.020845, - -0.031139, - -0.021538, - -0.13286, - -0.011409, - 0.030585, - 0.032622, - 0.0073761, - 0.072709, - 0.0020887, - -0.042581, - -0.035345, - 0.014428, - 0.0066115, - -0.0070535 - ], - "rodents": [ - -0.011901, - -0.042864, - -0.065213, - -0.036677, - -0.059527, - -0.0093905, - -0.0051223, - -0.084833, - 0.022566, - -0.0087973, - -0.0061761, - -0.036076, - 0.047862, - -0.048215, - 0.02506, - -0.039675, - -0.0037355, - 0.021716, - -0.013625, - -0.0082902, - 0.036134, - -0.043112, - 0.0031329, - 0.044704, - 0.068782, - -0.043337, - -0.048603, - 0.025019, - 0.19118, - 0.037458, - -0.0077071, - -0.014286, - 0.018861, - 0.042281, - 0.055707, - 0.022809, - -0.00030899, - -0.122, - -0.0096635, - -0.092623, - 0.033319, - -0.031146, - 0.027373, - -0.033582, - 0.0078974, - 0.0029727, - 0.017647, - 0.02727, - 0.0080008, - -0.031119, - 0.013789, - 0.077109, - -0.0082429, - -0.083689, - -0.11083, - 0.041321, - -0.0075375, - 0.017278, - -0.0010413, - 0.0086178, - 0.0060356, - 0.017637, - 0.12188, - 0.025989, - 0.0059001, - 0.0064427, - -0.0011513, - 0.022322, - -0.0057198, - 0.037232, - -0.0091977, - 0.082736, - 0.118, - -0.027401, - -0.031981, - 0.092775, - -0.0061423, - 0.013772, - -0.024815, - 0.022292, - 0.0013358, - 0.039143, - 0.0366, - 0.034885, - 0.094313, - -0.019295, - 0.046284, - 0.012678, - 0.037758, - -0.0077848, - -0.066318, - -0.024534, - -0.062534, - 0.020962, - 0.028601, - 0.094051, - -0.036695, - 0.082107, - 0.038206, - -0.046602, - 0.018323, - 0.051336, - -0.043136, - 0.053399, - 0.07266, - -0.071459, - -0.05942, - -0.091522, - 0.081853, - -0.028167, - -0.027123, - 0.050174, - 0.00043945, - 0.021381, - -0.01606, - -0.00057022, - 0.022041, - 0.031553, - -0.063636, - 0.014114, - -0.019282, - 0.080332, - -0.015945, - -0.08003, - 0.12465, - 0.037402, - -0.022856, - -0.031526, - 0.036721, - 0.03949, - 0.004711, - 0.030041, - 0.0097955, - -0.017875, - 0.091215, - -0.0028031, - -0.089881, - 0.10623, - 0.098813, - -0.020714, - 0.034788, - 0.091139, - 0.053496, - -0.024691, - 0.049604, - -0.089973, - 0.026482, - -0.019787, - 0.027767, - -0.081286, - 0.025883, - 0.10972, - 0.0086734, - -0.022989, - 0.023219, - -0.013448, - -0.015992, - -0.039581, - -0.019539, - -0.059723, - 0.011902, - -0.0074883, - 0.004589, - -0.10867, - 0.038031, - -0.0013156, - -0.018241, - -0.0096708, - 0.041876, - -0.0047063, - 0.006842, - -0.042235, - 0.084506, - 0.060648, - -0.0055109, - 0.083774, - 0.046303, - 0.043097, - -0.062118, - 0.044177, - 0.091459, - 0.000032327, - 0.014958, - -0.068172, - -0.079363, - -0.068302, - 0.022454, - 0.12288, - 0.012904, - -0.046246, - 0.027744, - 0.06642, - -0.13866, - -0.0056163, - -0.058533, - 0.10918, - -0.048441, - 0.073956, - 0.066653, - 0.035039, - -0.11239, - 0.02336, - -0.014143, - -0.034614, - -0.062643, - -0.0077574, - 0.017126, - 0.02365, - -0.077978, - -0.028068, - 0.068412, - -0.041875, - 0.10454, - -0.02707, - -0.033339, - 0.02064, - 0.031285, - -0.038532, - -0.0036908, - -0.019794, - -0.071593, - 0.052335, - -0.060054, - 0.060326, - 0.016884, - 0.023105, - 0.069689, - 0.078767, - 0.00064232, - -0.0030332, - -0.081313, - 0.016641, - -0.049121, - -0.024894, - 0.028577, - 0.023894, - 0.065744, - 0.019704, - 0.015063, - -0.036869, - -0.022273, - -0.017519, - 0.056528, - 0.072316, - -0.00094053, - 0.12943, - 0.004169, - -0.0060045, - -0.0079498, - -0.027575, - 0.028307, - 0.052303, - 0.0060416, - -0.052971, - -0.086184, - 0.056017, - 0.032652, - -0.045236, - 0.074402, - -0.078051, - 0.04937, - 0.002971, - -0.022751, - -0.0086954, - -0.0059712, - 0.12175, - -0.00392, - 0.040229, - -0.055003, - 0.0027349, - -0.085458, - 0.06699, - -0.11462, - -0.0038596, - -0.004668, - -0.05973, - 0.055235, - -0.046903, - 0.021971, - -0.030819, - -0.034475, - 0.026198, - 0.0046717, - 0.024814, - -0.0093202, - 0.092187, - 0.01558, - -0.054261, - -0.011707, - -0.020809, - 0.02012, - 0.097117, - -0.087677, - -0.13693, - 0.02456, - -0.0038118, - -0.06484, - 0.063567, - -0.065342, - 0.017653 - ], - "educator": [ - 0.024261, - -0.10625, - 0.014735, - 0.062872, - -0.01599, - -0.039465, - -0.020971, - -0.092117, - 0.099235, - -0.023728, - 0.049593, - 0.040867, - -0.0030963, - 0.017823, - 0.00012112, - 0.010175, - 0.018816, - 0.023222, - 0.032104, - 0.033744, - -0.010401, - 0.039212, - 0.03422, - 0.093248, - -0.087927, - 0.038237, - -0.021478, - 0.040196, - -0.071383, - 0.0033672, - 0.080492, - -0.016822, - 0.027462, - -0.048704, - -0.032981, - 0.054923, - -0.015917, - -0.0085119, - -0.0090291, - -0.0015063, - 0.036802, - -0.13007, - -0.040837, - 0.005649, - 0.053404, - 0.08465, - 0.0054167, - 0.01311, - -0.0021656, - 0.040352, - -0.052829, - 0.026392, - 0.027067, - -0.043274, - 0.021031, - 0.028614, - -0.0012434, - 0.000012063, - -0.0029788, - -0.052642, - -0.023586, - -0.041305, - 0.084971, - 0.0030864, - -0.0050211, - 0.01612, - -0.067468, - -0.055705, - 0.012208, - -0.059354, - 0.066208, - -0.05809, - 0.08665, - 0.021931, - -0.0091769, - 0.010184, - -0.053578, - -0.0030092, - 0.048764, - 0.032945, - 0.017604, - 0.076686, - -0.11801, - 0.016542, - -0.075288, - -0.01637, - -0.074546, - 0.046562, - -0.035146, - -0.024426, - 0.051325, - 0.049742, - -0.086464, - -0.048222, - -0.060656, - 0.11179, - 0.072176, - 0.031572, - 0.0013111, - 0.0012999, - 0.019751, - 0.012248, - 0.076792, - -0.024311, - -0.060394, - -0.058446, - 0.099711, - 0.026222, - -0.041379, - 0.010493, - -0.059555, - 0.13638, - 0.01352, - -0.012713, - -0.024895, - -0.017811, - -0.056399, - -0.03276, - 0.03404, - -0.01063, - -0.015528, - -0.028753, - 0.020555, - 0.012152, - 0.06868, - 0.04623, - 0.022759, - -0.033104, - 0.061967, - 0.075736, - 0.017055, - 0.014414, - -0.056139, - -0.055589, - -0.04725, - 0.012668, - -0.0013695, - 0.082465, - 0.0178, - -0.012239, - 0.035959, - -0.00051588, - 0.031747, - -0.048104, - -0.069852, - -0.052926, - -0.07997, - 0.015032, - -0.019988, - -0.030776, - 0.037088, - 0.060347, - -0.04672, - -0.12509, - 0.015593, - 0.011812, - 0.048001, - 0.054002, - 0.022719, - -0.046603, - 0.021305, - 0.079598, - -0.046059, - -0.021818, - 0.024948, - -0.037901, - 0.016387, - -0.041611, - -0.0079083, - -0.028879, - -0.021016, - -0.017333, - -0.026573, - -0.015906, - 0.026032, - 0.068825, - 0.012833, - 0.026043, - -0.040203, - 0.043745, - -0.058495, - -0.013966, - 0.034714, - -0.066668, - -0.0075917, - -0.10274, - 0.0156, - 0.14613, - -0.025894, - -0.01245, - -0.013433, - 0.096597, - -0.015383, - -0.018533, - 0.0011877, - -0.050607, - 0.080468, - 0.061642, - 0.035968, - -0.038269, - -0.12946, - -0.00088458, - 0.051301, - -0.019448, - -0.016904, - 0.0074979, - -0.040136, - 0.033434, - -0.026588, - -0.045135, - 0.09641, - 0.028104, - -0.013269, - 0.05321, - -0.11855, - 0.077956, - 0.053042, - -0.052298, - 0.038363, - 0.073395, - -0.041881, - 0.022256, - -0.0092047, - 0.087166, - 0.050051, - -0.058539, - 0.054485, - 0.094019, - -0.021244, - 0.048669, - 0.059576, - -0.013112, - 0.029182, - -0.050095, - -0.0035995, - 0.080167, - 0.060278, - 0.02002, - -0.092014, - 0.028722, - 0.060873, - 0.0079834, - 0.034876, - -0.018665, - 0.058568, - 0.0070622, - 0.021364, - -0.035918, - 0.024277, - 0.0079779, - 0.04164, - -0.048289, - 0.012145, - -0.084637, - 0.076324, - -0.026994, - -0.00025974, - 0.092858, - 0.0075193, - -0.023898, - 0.020219, - -0.0074892, - 0.031567, - 0.040309, - -0.036442, - -0.028681, - 0.0089311, - 0.011179, - 0.070042, - 0.003479, - 0.020997, - 0.055743, - -0.093862, - 0.0023774, - 0.019167, - -0.019642, - -0.053594, - -0.019932, - 0.032183, - 0.044011, - 0.068435, - 0.041646, - -0.0168, - -0.05994, - -0.027512, - -0.010014, - -0.076645, - -0.057317, - -0.054612, - 0.018773, - -0.055988, - -0.022676, - -0.013879, - 0.044445, - 0.022792, - 0.061479, - 0.016309, - 0.059329, - 0.026473, - -0.028903 - ], - "performance": [ - -0.021047, - -0.022207, - -0.0089306, - 0.04709, - 0.0018421, - -0.038028, - 0.00072253, - -0.061249, - 0.066476, - -0.033018, - 0.01504, - -0.053558, - 0.054729, - 0.008364, - -0.0089381, - 0.023439, - 0.049946, - 0.032932, - 0.032026, - 0.018494, - -0.039179, - -0.036067, - 0.0060901, - 0.04352, - 0.01489, - 0.03229, - -0.027011, - -0.0025844, - 0.019161, - -0.033114, - -0.025827, - -0.020008, - -0.019895, - -0.068174, - -0.0048823, - 0.028693, - 0.011158, - 0.034254, - 0.02336, - -0.0144, - 0.015348, - -0.082918, - -0.0071732, - 0.0073549, - -0.039996, - -0.00091204, - 0.060458, - -0.045258, - -0.016204, - 0.014798, - -0.0094807, - 0.023343, - 0.027299, - 0.027747, - -0.049029, - -0.0089286, - -0.031009, - -0.0078778, - -0.061399, - -0.0025067, - -0.0117, - -0.0034702, - 0.097647, - 0.013115, - 0.031384, - -0.010983, - 0.020994, - 0.019857, - 0.050342, - -0.0082848, - 0.0072274, - 0.023495, - 0.016033, - -0.023175, - 0.01089, - 0.04843, - 0.017132, - -0.0023388, - 0.019311, - 0.017924, - 0.015092, - 0.0035905, - -0.011156, - 0.051137, - 0.038302, - -0.016595, - -0.010434, - -0.0096107, - -0.027561, - -0.015097, - -0.019309, - 0.00491, - -0.073137, - 0.0075996, - -0.0075276, - 0.021873, - -0.0067771, - -0.0074556, - 0.052063, - 0.051137, - 0.012191, - -0.010836, - 0.0065565, - 0.015235, - -0.0021358, - -0.026829, - 0.036044, - -0.03707, - 0.041289, - 0.035234, - 0.033254, - 0.036798, - 0.043922, - 0.0067119, - 0.06811, - -0.02947, - -0.0051658, - 0.024236, - -0.046717, - -0.013288, - -0.0091798, - -0.0063625, - -0.012779, - 0.024774, - 0.046248, - 0.01322, - 0.014312, - -0.075041, - 0.02415, - 0.066088, - 0.042358, - -0.038185, - 0.012748, - -0.0066089, - -0.027749, - -0.026332, - 0.022766, - 0.031328, - -0.011953, - 0.028379, - -0.016306, - 0.01776, - -0.00065003, - -0.034375, - -0.012958, - -0.01195, - -0.017005, - -0.026391, - 0.01929, - 0.020937, - 0.021998, - 0.035795, - 0.034132, - -0.081805, - -0.051214, - 0.016731, - 0.010464, - 0.039706, - -0.0392, - 0.0013373, - 0.028877, - 0.041039, - -0.068112, - -0.033351, - 0.038237, - 0.031205, - 0.0089633, - -0.020828, - -0.010623, - 0.018059, - 0.021174, - -0.01308, - 0.01256, - 0.031715, - 0.037508, - 0.030481, - -0.040052, - -0.019345, - -0.054533, - -0.018947, - -0.0023266, - 0.014884, - -0.028965, - -0.030179, - -0.034358, - -0.052434, - -0.064916, - 0.054025, - -0.0054395, - 0.041028, - 0.018658, - 0.02172, - -0.011411, - -0.085041, - -0.018821, - 0.028614, - 0.029587, - 0.0019927, - 0.02368, - -0.03349, - -0.10785, - 0.080988, - 0.0011979, - -0.019592, - -0.015577, - 0.005846, - -0.023767, - 0.020943, - 0.011837, - -0.0068517, - 0.077714, - -0.0071925, - -0.017603, - 0.015065, - 0.025448, - 0.0091965, - 0.027763, - -0.0062934, - -0.038258, - -0.0034051, - -0.0029127, - 0.011721, - 0.021664, - 0.083109, - 0.026368, - -0.037513, - 0.01498, - 0.054334, - -0.022383, - -0.0054636, - 0.01433, - -0.044097, - -0.042396, - -0.017247, - 0.041967, - -0.004534, - 0.027342, - -0.029311, - 0.036564, - 0.014289, - 0.020201, - -0.015913, - 0.00067479, - -0.048346, - -0.052207, - 0.017356, - -0.047678, - -0.065253, - 0.038835, - -0.013466, - 0.040774, - -0.0071545, - -0.0084764, - 0.02213, - 0.0242, - 0.0083411, - 0.012146, - 0.035788, - 0.0019901, - -0.01086, - 0.016712, - 0.0075966, - 0.0012413, - -0.027557, - 0.016034, - 0.018046, - 0.0089718, - 0.010051, - -0.020817, - 0.012535, - 0.036797, - 0.048729, - -0.087405, - -0.046462, - 0.017363, - -0.010963, - 0.038241, - 0.007219, - 0.027149, - 0.019607, - 0.059821, - 0.042921, - -0.039227, - 0.016154, - 0.037443, - -0.025383, - -0.0067182, - 0.021893, - -0.019179, - -0.034059, - 0.011093, - -0.016176, - -0.002152, - 0.0052791, - 0.014911, - 0.010346, - 0.0097268, - -0.023706, - -0.0035879, - 0.0026984 - ], - "fashionably": [ - -0.04667, - 0.048687, - 0.01069, - 0.024551, - 0.030789, - -0.020206, - -0.01366, - -0.054845, - 0.038213, - 0.01286, - -0.012488, - -0.048868, - -0.049957, - -0.015145, - -0.048239, - -0.012322, - 0.1384, - 0.050958, - 0.018043, - -0.0088736, - 0.019553, - -0.0030686, - -0.041525, - 0.060633, - -0.030066, - 0.021436, - 0.012243, - 0.057228, - 0.0022794, - -0.022986, - -0.0094565, - -0.048017, - 0.024905, - 0.018368, - -0.0057244, - 0.020459, - 0.0095401, - 0.068002, - 0.027486, - 0.018217, - 0.013711, - -0.046598, - -0.030434, - 0.0085253, - 0.0059596, - -0.010528, - 0.0090604, - 0.021888, - -0.025159, - -0.071547, - -0.028359, - -0.021678, - -0.034673, - 0.011605, - -0.081433, - -0.0046721, - 0.017353, - 0.003888, - -0.016809, - 0.0047073, - 0.013936, - 0.02285, - 0.11481, - -0.0032588, - 0.023141, - 0.057983, - 0.0022772, - 0.00064675, - -0.022466, - -0.044711, - 0.030679, - 0.0060105, - 0.021387, - -0.036755, - -0.018965, - 0.041823, - 0.026967, - -0.006198, - 0.024975, - 0.039385, - 0.060797, - -0.04766, - 0.048352, - 0.031023, - 0.0046729, - 0.016722, - -0.038355, - 0.040818, - -0.022092, - 0.0054459, - -0.0068747, - -0.017897, - -0.066488, - 0.014535, - 0.073274, - 0.01189, - -0.036533, - -0.056084, - -0.0051417, - 0.030723, - 0.00067572, - 0.033615, - -0.029515, - 0.028001, - -0.064347, - -0.12829, - 0.021476, - 0.03479, - 0.021528, - -0.0079121, - -0.030891, - 0.095432, - 0.01599, - -0.0039805, - -0.055743, - -0.054651, - 0.012747, - 0.013936, - -0.011647, - 0.019991, - 0.01675, - -0.024019, - -0.0098826, - 0.041803, - 0.041637, - -0.03185, - -0.0060358, - 0.05504, - 0.020329, - -0.10237, - -0.0073129, - 0.068052, - 0.039863, - 0.0054584, - -0.062393, - 0.02216, - -0.022654, - 0.0090265, - 0.039374, - -0.058376, - 0.038824, - -0.0021999, - 0.025606, - 0.042892, - 0.0060201, - -0.002668, - 0.015188, - 0.040014, - 0.0093385, - -0.018776, - 0.049306, - 0.084622, - -0.0036497, - -0.026529, - -0.045034, - -0.011713, - 0.044043, - 0.0028773, - 0.0057871, - 0.0031026, - 0.057008, - -0.0022044, - 0.0094891, - 0.0065326, - -0.0099668, - 0.029681, - -0.0021788, - -0.028553, - -0.036002, - 0.010381, - -0.031721, - -0.013222, - 0.0091618, - -0.016689, - 0.0014718, - 0.036985, - 0.0013532, - 0.026451, - -0.012271, - 0.0012768, - -0.019511, - -0.0049952, - 0.015025, - -0.0096953, - 0.015353, - 0.038472, - -0.069223, - 0.11437, - -0.037244, - 0.0070883, - 0.023665, - 0.063378, - -0.040256, - -0.02231, - 0.014837, - -0.0088077, - 0.0034861, - 0.0051005, - 0.015019, - 0.036489, - -0.11208, - -0.0051561, - 0.027371, - 0.021767, - 0.017339, - 0.033642, - -0.028075, - -0.011541, - -0.0096103, - -0.14055, - 0.026804, - -0.062622, - 0.047141, - 0.067296, - 0.055964, - 0.041076, - -0.051587, - 0.016351, - -0.072349, - -0.00764, - -0.038745, - -0.0013551, - 0.010298, - 0.074748, - -0.08856, - 0.00029418, - 0.026628, - 0.056533, - -0.0083037, - -0.02617, - 0.00089851, - 0.061306, - -0.0023199, - 0.017632, - -0.024893, - -0.019165, - -0.00052362, - -0.024577, - 0.019402, - -0.021183, - 0.11794, - -0.0072079, - -0.01751, - -0.017044, - -0.062413, - 0.026174, - -0.042391, - -0.049585, - -0.010638, - -0.091437, - 0.021046, - 0.01614, - -0.037443, - 0.00083856, - 0.019119, - 0.024674, - -0.025071, - -0.0040597, - 0.031914, - 0.034061, - -0.00084318, - 0.012762, - -0.010836, - 0.059106, - 0.021317, - 0.0042226, - 0.015247, - -0.018189, - 0.017121, - 0.042716, - -0.005759, - 0.047106, - -0.043479, - -0.015024, - 0.046439, - -0.056722, - 0.0037409, - 0.011263, - -0.045378, - 0.00073436, - 0.026448, - 0.071795, - 0.022703, - -0.0094719, - -0.010177, - -0.014048, - 0.0027421, - -0.039308, - 0.068353, - 0.0070226, - -0.016721, - -0.023285, - 0.023903, - -0.0041628, - -0.044104, - -0.037911, - 0.0050656, - 0.076393, - -0.038372, - -0.016401 - ], - "high-technology": [ - -0.040664, - -0.033867, - 0.015038, - -0.021493, - -0.013393, - 0.0015676, - 0.016122, - -0.063946, - 0.014232, - 0.045008, - -0.023868, - -0.014321, - 0.01559, - 0.02617, - -0.016046, - 0.016443, - 0.078569, - 0.039916, - 0.029479, - 0.022345, - 0.019503, - 0.012688, - -0.0025671, - 0.049253, - -0.0058696, - -0.024656, - -0.0014713, - 0.017872, - 0.043879, - 0.0010567, - -0.01981, - -0.00092195, - 0.0018491, - -0.053287, - 0.051516, - 0.017465, - -0.014772, - 0.0088024, - 0.054045, - 0.026683, - -0.029124, - -0.10301, - -0.0040262, - 0.014898, - 0.020676, - -0.050217, - -0.013415, - 0.014056, - -0.017046, - 0.0049129, - -0.01903, - 0.020391, - -0.062635, - 0.02819, - -0.0281, - 0.016666, - 0.019014, - 0.0017506, - 0.022699, - 0.0093594, - -0.012072, - 0.022769, - 0.07369, - 0.010886, - 0.04192, - 0.010927, - -0.0042133, - -0.032978, - -0.0052266, - -0.0083911, - 0.032381, - -0.019938, - 0.0024523, - 0.022562, - -0.01328, - 0.010051, - 0.025275, - -0.023741, - 0.0052061, - -0.017074, - -0.010363, - -0.0067524, - -0.026596, - 0.024814, - -0.023197, - -0.016006, - -0.036698, - -0.017358, - -0.0083087, - -0.00066247, - -0.000068108, - -0.0015192, - -0.052382, - 0.013633, - 0.012022, - 0.04416, - -0.019952, - -0.051412, - -0.037015, - 0.023227, - -0.0024189, - -0.028882, - 0.0024987, - -0.058718, - -0.0040734, - -0.041019, - 0.043051, - 0.024268, - 0.033166, - -0.011106, - -0.0052126, - 0.056866, - 0.029124, - 0.044286, - -0.022772, - 0.0086834, - -0.045264, - -0.020297, - -0.036517, - 0.062282, - -0.038139, - 0.0005818, - -0.0077436, - -0.042935, - 0.057272, - -0.029367, - -0.029981, - -0.017953, - -0.018172, - 0.055046, - 0.014906, - 0.0066852, - -0.0053139, - -0.0075481, - 0.050179, - -0.041112, - 0.053896, - -0.0043128, - -0.004389, - 0.028066, - 0.037345, - 0.00033263, - -0.0097737, - 0.037116, - -0.023419, - 0.0081606, - 0.021539, - 0.011222, - -0.0019284, - 0.019123, - 0.054317, - 0.068275, - 0.0098439, - -0.041901, - 0.0077152, - 0.034577, - -0.014728, - 0.024663, - 0.012298, - -0.0090446, - 0.036516, - -0.020638, - -0.032074, - 0.030631, - -0.020756, - 0.0058643, - -0.013584, - -0.033786, - -0.00046966, - -0.020197, - 0.046222, - 0.026023, - -0.024089, - 0.035579, - 0.0034465, - 0.025394, - 0.0021128, - 0.041927, - -0.038852, - 0.051748, - 0.0043556, - 0.024537, - -0.029684, - -0.010515, - -0.0075567, - 0.011458, - -0.013791, - 0.073107, - -0.022007, - 0.042492, - -0.053068, - 0.021945, - 0.0092373, - -0.010735, - -0.0094666, - 0.013867, - -0.013407, - 0.0237, - -0.0086525, - -0.017792, - -0.086636, - 0.018478, - -0.0080886, - -0.0081008, - -0.012135, - -0.0056071, - -0.027536, - 0.024879, - 0.016468, - 0.0054279, - 0.085817, - 0.006154, - 0.028561, - 0.020491, - 0.021731, - 0.017625, - 0.0037272, - -0.016428, - -0.017795, - 0.0068735, - -0.013736, - 0.0070027, - 0.013666, - 0.056938, - -0.047087, - -0.0082226, - -0.00008838, - 0.025239, - 0.0055174, - -0.023261, - -0.015327, - -0.0042248, - -0.040511, - -0.055741, - 0.026935, - -0.0076497, - -0.013187, - -0.00085011, - -0.021981, - -0.034739, - 0.014858, - 0.0056075, - 0.013436, - 0.020243, - -0.059052, - -0.012833, - -0.0081521, - 0.014826, - 0.027226, - -0.0066024, - -0.0096182, - -0.0096529, - -0.019611, - -0.029915, - -0.045042, - 0.079377, - 0.014232, - -0.00064177, - 0.01674, - 0.0137, - -0.0055336, - -0.0025864, - 0.0008502, - 0.013827, - -0.019694, - 0.0074674, - 0.016617, - -0.039815, - 0.0025393, - -0.013944, - -0.018496, - 0.067428, - -0.048311, - -0.022286, - -0.030641, - -0.039496, - 0.024194, - 0.025694, - -0.0000038259, - -0.023948, - 0.091865, - -0.0031762, - -0.016062, - 0.022434, - -0.05614, - -0.027782, - -0.038732, - -0.0045238, - -0.008889, - -0.0089606, - -0.054432, - 0.018301, - -0.010388, - -0.0062059, - -0.01871, - -0.014269, - -0.0042262, - 0.010084, - -0.0063801, - -0.014791 - ], - "competence": [ - -0.027596, - -0.022011, - -0.022173, - -0.064806, - -0.067807, - -0.0055362, - 0.010488, - -0.07381, - 0.07267, - -0.0062516, - 0.0019638, - -0.0052172, - 0.013107, - 0.010438, - -0.0021131, - 0.02966, - 0.049508, - 0.055703, - 0.049696, - 0.0052451, - -0.024176, - 0.0070851, - 0.091583, - 0.065483, - -0.097517, - 0.010116, - -0.014361, - 0.0040878, - -0.016331, - -0.0046062, - 0.024805, - -0.0096424, - -0.012877, - -0.061577, - -0.030156, - 0.041208, - 0.019536, - -0.0019671, - 0.022097, - 0.0058121, - -0.0091605, - -0.075471, - 0.015381, - 0.026422, - 0.040117, - -0.049852, - -0.062664, - -0.012585, - -0.035155, - 0.022331, - 0.063966, - -0.021495, - 0.014462, - 0.050165, - -0.039071, - 0.023998, - 0.013504, - 0.022157, - -0.014208, - 0.013881, - -0.0098198, - -0.034412, - 0.049355, - -0.0083809, - 0.053608, - -0.010162, - 0.0056911, - -0.048763, - 0.014228, - -0.063742, - 0.09361, - -0.036372, - 0.000015257, - 0.032925, - 0.031597, - -0.014669, - -0.0065421, - -0.015057, - -0.0014177, - 0.0053694, - -0.047962, - 0.014851, - 0.034834, - 0.073662, - 0.030642, - -0.013306, - 0.033149, - -0.02827, - 0.00032466, - -0.00003017, - 0.0017736, - -0.017501, - -0.059022, - -0.038828, - 0.021436, - 0.06615, - 0.013959, - -0.014805, - 0.028172, - 0.018477, - 0.0079215, - 0.020606, - -0.002861, - 0.0037132, - 0.002408, - -0.040578, - 0.10374, - -0.050717, - -0.020468, - -0.019601, - -0.011038, - 0.032684, - 0.047587, - -0.059056, - 0.024748, - -0.025384, - -0.018859, - -0.041468, - -0.046641, - -0.036423, - 0.014822, - 0.0055215, - 0.010078, - -0.052225, - 0.053939, - 0.031622, - 0.014602, - -0.11762, - 0.046202, - 0.093632, - -0.010229, - -0.038676, - -0.036137, - -0.039024, - -0.01457, - -0.030042, - 0.017375, - 0.056638, - 0.020402, - 0.0080805, - -0.031171, - -0.01354, - -0.04242, - -0.017677, - -0.025808, - -0.03533, - -0.032966, - -0.0014452, - 0.0090521, - 0.044132, - 0.044565, - 0.039258, - 0.036432, - -0.090525, - -0.019586, - 0.04334, - 0.015826, - 0.025279, - -0.0062888, - -0.0045604, - 0.032082, - 0.018728, - -0.069423, - -0.031005, - -0.011057, - 0.050637, - 0.025251, - -0.038234, - -0.0033268, - -0.0015914, - 0.047289, - 0.014487, - -0.0006794, - 0.031737, - 0.0084508, - 0.02816, - 0.035647, - 0.042876, - -0.024842, - 0.0079561, - -0.020256, - -0.0082689, - -0.0063832, - -0.018149, - 0.054254, - -0.063181, - -0.002603, - 0.078754, - 0.049877, - 0.082667, - -0.015946, - 0.062935, - -0.020844, - -0.10304, - 0.018661, - 0.023288, - 0.046932, - 0.0075031, - -0.0064017, - -0.003958, - -0.14189, - -0.016739, - -0.011538, - -0.033986, - -0.061786, - -0.013684, - 0.022385, - -0.051828, - -0.006951, - -0.0033656, - 0.078731, - -0.025244, - -0.043058, - 0.027641, - 0.022236, - 0.0028391, - -0.02803, - 0.00069933, - -0.056045, - 0.052609, - -0.050602, - -0.012397, - -0.0081846, - 0.070302, - 0.067095, - -0.019531, - 0.024754, - 0.086532, - -0.003461, - -0.02779, - -0.0028623, - -0.018858, - -0.10304, - 0.016531, - -0.03352, - 0.0089042, - 0.021452, - -0.027556, - -0.00238, - -0.0012177, - 0.062219, - 0.017786, - -0.017337, - -0.0075196, - -0.036524, - -0.0067072, - -0.045283, - -0.067991, - -0.040577, - -0.018943, - 0.039323, - 0.069553, - -0.024051, - -0.028233, - 0.062571, - 0.041592, - -0.027081, - 0.042225, - 0.022529, - -0.029866, - -0.031631, - -0.0077345, - 0.0080585, - -0.006735, - -0.011609, - 0.012046, - 0.02216, - 0.027862, - -0.0266, - -0.052303, - 0.0017999, - 0.043159, - -0.094204, - -0.049968, - 0.017493, - -0.017784, - 0.052297, - 0.0397, - 0.018791, - -0.048202, - 0.059597, - 0.03439, - -0.040871, - -0.017169, - 0.083065, - 0.053221, - 0.019083, - 0.033831, - -0.015149, - -0.011408, - 0.0036426, - -0.020083, - 0.026882, - 0.0012174, - 0.0075221, - 0.0098056, - -0.020834, - -0.033898, - -0.015452, - -0.029409 - ], - "belief": [ - -0.01312, - 0.051411, - -0.020284, - -0.046526, - -0.12125, - -0.015066, - -0.036331, - -0.11537, - -0.025703, - 0.017224, - 0.011771, - -0.060826, - 0.039204, - -0.043944, - -0.003842, - -0.047172, - 0.10202, - -0.026243, - 0.040516, - 0.063831, - -0.084327, - 0.025237, - 0.040151, - 0.076047, - -0.078957, - 0.0089368, - 0.025025, - 0.03049, - 0.054506, - -0.025723, - 0.0090632, - 0.042718, - 0.027317, - -0.097347, - -0.015459, - 0.070529, - -0.073691, - -0.08077, - 0.027948, - 0.014953, - 0.0063935, - -0.12964, - -0.010418, - 0.05388, - -0.0070044, - -0.024224, - -0.033675, - 0.041999, - 0.0082536, - -0.025465, - 0.009526, - 0.021844, - -0.029919, - 0.0094415, - 0.010178, - 0.037554, - 0.099628, - 0.0047895, - -0.082082, - -0.0083445, - -0.05227, - 0.015725, - 0.12158, - -0.03502, - 0.057896, - 0.0070184, - -0.061447, - 0.045945, - 0.013472, - -0.014141, - 0.044769, - 0.026159, - -0.038549, - -0.0040669, - -0.0077605, - 0.0015847, - 0.04666, - 0.0011107, - -0.001353, - 0.053081, - -0.040054, - 0.016929, - 0.018749, - 0.12512, - -0.0029033, - -0.0015953, - 0.013529, - -0.001692, - 0.0035875, - 0.043721, - -0.0017504, - 0.031117, - -0.097581, - -0.074509, - 0.0072713, - 0.042386, - 0.039665, - -0.057656, - 0.018849, - -0.031366, - -0.056403, - -0.014712, - 0.092041, - -0.064373, - -0.020977, - -0.067364, - -0.016716, - 0.017791, - -0.011841, - -0.0080019, - -0.025941, - 0.02293, - 0.070714, - 0.011672, - -0.0064753, - -0.016043, - -0.049406, - -0.01169, - -0.068302, - 0.046479, - -0.0078707, - 0.029812, - -0.055267, - -0.087454, - 0.061841, - 0.033461, - 0.0048074, - -0.015751, - -0.0034475, - 0.18175, - 0.043313, - -0.056471, - 0.053402, - 0.021472, - -0.019639, - 0.017849, - -0.043296, - 0.079419, - -0.020578, - -0.044177, - 0.0014562, - -0.082268, - -0.0067544, - 0.044726, - -0.060231, - -0.12856, - -0.031338, - -0.052711, - 0.005168, - 0.018633, - 0.048906, - 0.03388, - -0.035088, - -0.074392, - -0.04015, - 0.070094, - -0.015358, - -0.05113, - -0.019376, - -0.012002, - 0.038667, - 0.023656, - -0.094587, - -0.016489, - 0.068235, - -0.13085, - 0.031752, - 0.042708, - 0.015328, - -0.023509, - -0.033081, - -0.03713, - -0.030927, - 0.03005, - 0.054657, - 0.046725, - 0.051442, - 0.080463, - -0.0023017, - -0.082127, - -0.024426, - -0.0045013, - -0.0029594, - -0.027988, - 0.021665, - -0.092628, - 0.031828, - 0.089989, - 0.0069469, - -0.051035, - 0.072086, - 0.17101, - -0.04311, - -0.057423, - 0.042814, - -0.032042, - -0.0074567, - 0.019483, - -0.021829, - -0.007148, - -0.18302, - 0.039813, - -0.020319, - 0.0097521, - 0.021993, - 0.032737, - 0.11073, - -0.036819, - 0.098186, - 0.011618, - 0.071233, - 0.022161, - -0.041207, - 0.015233, - -0.022144, - -0.0068691, - -0.0054256, - -0.019634, - 0.0038825, - -0.048749, - -0.034579, - -0.0067413, - -0.017248, - 0.13313, - 0.11117, - -0.044928, - -0.0049058, - 0.096543, - 0.0018167, - -0.029189, - 0.012765, - -0.10889, - -0.14081, - -0.061357, - 0.084073, - 0.03116, - -0.05873, - 0.022193, - 0.042106, - 0.050149, - 0.05265, - -0.025311, - 0.024537, - 0.050375, - -0.098662, - -0.06148, - -0.03876, - -0.10252, - -0.049801, - -0.006412, - 0.078445, - 0.015234, - -0.010217, - 0.020372, - 0.050438, - -0.042423, - -0.00092477, - 0.0050727, - 0.032446, - 0.010369, - 0.03699, - 0.027824, - -0.0097362, - 0.016225, - 0.015541, - -0.027734, - 0.0020346, - -0.0043089, - 0.03173, - 0.036038, - -0.0014843, - 0.098341, - -0.12541, - -0.04944, - 0.11594, - -0.042882, - 0.014963, - -0.043647, - -0.046712, - -0.033136, - 0.098203, - -0.022856, - -0.083865, - 0.030853, - 0.031882, - -0.020408, - 0.050444, - 0.010576, - -0.07843, - 0.045171, - 0.053427, - 0.033128, - 0.059744, - -0.01562, - -0.02308, - 0.05699, - 0.024414, - -0.028147, - -0.029581, - 0.055371 - ], - "spook": [ - -0.017784, - -0.071518, - -0.080546, - 0.034777, - -0.081578, - -0.062663, - -0.0051919, - -0.10917, - 0.076346, - 0.021901, - -0.034762, - 0.054307, - 0.054901, - -0.056459, - -0.1229, - -0.028175, - 0.082242, - -0.0018778, - 0.081095, - -0.085658, - 0.06373, - -0.045876, - 0.07202, - 0.04968, - 0.0025479, - 0.034183, - 0.11385, - 0.040101, - -0.023849, - 0.099822, - -0.0070533, - -0.13588, - -0.06693, - 0.08414, - 0.0046361, - -0.01787, - 0.0013027, - 0.077254, - 0.050289, - -0.0070349, - 0.043495, - -0.12187, - -0.10656, - 0.0066379, - 0.046555, - 0.031582, - -0.055485, - -0.0076005, - -0.00018647, - -0.057802, - 0.015446, - 0.087561, - 0.045914, - -0.10974, - -0.037242, - 0.067106, - 0.0041513, - -0.031697, - -0.082839, - 0.01962, - 0.011747, - -0.0053791, - 0.10985, - -0.091143, - -0.035969, - 0.064077, - -0.023428, - -0.030308, - -0.0057804, - 0.068589, - 0.027526, - -0.033906, - 0.088377, - 0.015407, - -0.051863, - 0.065697, - 0.067269, - 0.028204, - 0.039211, - -0.060698, - 0.031982, - 0.051745, - -0.013577, - 0.14229, - 0.047382, - -0.019046, - 0.029249, - 0.023062, - 0.11381, - 0.053067, - -0.00095021, - 0.047033, - -0.15441, - -0.069822, - 0.08666, - 0.025235, - -0.07134, - -0.077729, - -0.01327, - 0.033311, - -0.00040522, - -0.0024918, - -0.041561, - -0.036153, - -0.015058, - -0.17424, - 0.081668, - -0.10039, - 0.042619, - 0.06817, - -0.056853, - 0.15221, - 0.053236, - 0.035192, - -0.062424, - -0.030886, - -0.072441, - 0.029858, - -0.036775, - -0.0063452, - 0.095875, - 0.046803, - -0.014795, - 0.014418, - 0.11684, - 0.093751, - 0.052533, - -0.056833, - -0.11181, - 0.067565, - -0.018254, - 0.11489, - -0.013086, - 0.035188, - 0.089193, - -0.14076, - -0.033195, - 0.093949, - -0.044718, - 0.11497, - -0.12921, - -0.043329, - -0.03293, - 0.056484, - -0.017026, - -0.069453, - -0.046359, - 0.0059797, - -0.0087425, - -0.072371, - 0.039272, - 0.19662, - -0.078295, - -0.046508, - -0.019262, - -0.088999, - -0.047304, - -0.026255, - -0.039897, - -0.050328, - 0.054857, - 0.025497, - -0.066877, - -0.016457, - -0.031586, - -0.089314, - 0.025779, - -0.02107, - 0.019681, - 0.074151, - -0.068967, - -0.10928, - -0.065402, - 0.009415, - 0.054812, - 0.044843, - 0.084851, - 0.037544, - 0.050375, - 0.016391, - -0.070502, - 0.028367, - -0.0011283, - -0.10196, - -0.049292, - -0.086929, - 0.022803, - 0.090993, - 0.086342, - 0.066827, - -0.049188, - 0.02612, - -0.084311, - -0.039905, - 0.05953, - 0.011239, - 0.023275, - 0.087421, - -0.062766, - 0.066096, - -0.204, - 0.090293, - -0.043201, - 0.11011, - 0.034231, - -0.029001, - -0.021829, - -0.028292, - -0.055137, - -0.0029462, - 0.095942, - -0.0060773, - 0.028817, - 0.040793, - -0.022471, - 0.019519, - -0.083048, - -0.022566, - 0.059265, - 0.047492, - 0.032061, - -0.040968, - -0.073198, - 0.12682, - 0.024698, - -0.035749, - 0.02139, - 0.083589, - -0.0041299, - -0.011587, - 0.038568, - -0.064378, - -0.027773, - -0.076783, - 0.035695, - -0.11699, - 0.05767, - 0.022214, - 0.042783, - -0.083248, - 0.16726, - 0.034916, - 0.061544, - 0.010441, - -0.066205, - 0.024396, - -0.11302, - 0.017085, - 0.010208, - -0.022465, - 0.021532, - -0.074181, - -0.049532, - 0.070046, - 0.059064, - -0.022195, - 0.0075539, - 0.045649, - -0.033884, - 0.066819, - 0.16487, - -0.074661, - -0.055169, - -0.06405, - -0.082992, - -0.046574, - 0.041341, - -0.0052243, - 0.022414, - -0.05434, - -0.088374, - 0.11234, - -0.11938, - -0.067308, - 0.043186, - -0.075138, - 0.13894, - -0.05894, - -0.0045119, - -0.045568, - 0.04571, - -0.012031, - 0.07024, - 0.084834, - 0.0043585, - -0.03594, - 0.086277, - -0.04854, - -0.074877, - -0.039168, - 0.030252, - 0.066206, - -0.03259, - 0.024835, - -0.06745, - -0.00012152, - -0.0066021, - 0.060756, - -0.081059, - 0.011412 - ], - "paramilitary": [ - 0.075591, - -0.023229, - -0.013405, - -0.043417, - -0.040128, - -0.056681, - 0.0366, - -0.068462, - 0.0085133, - -0.0051529, - 0.024864, - -0.015738, - -0.020592, - 0.029066, - 0.013787, - 0.080128, - 0.080939, - 0.015897, - 0.0093632, - 0.039062, - 0.015778, - -0.034679, - -0.022986, - 0.053811, - -0.029786, - 0.010357, - 0.015542, - 0.0012298, - -0.012949, - 0.065715, - 0.038596, - -0.018199, - -0.028206, - -0.015807, - 0.062679, - 0.022702, - 0.022519, - 0.049154, - 0.01486, - -0.014188, - -0.021872, - -0.067613, - 0.047467, - -0.020433, - 0.032462, - 0.0056378, - 0.043394, - 0.012821, - 0.0045512, - -0.054358, - -0.01847, - 0.046064, - -0.0056959, - -0.01786, - 0.027797, - -0.02213, - 0.017068, - -0.050035, - -0.024084, - 0.0097021, - -0.039128, - 0.0010022, - 0.085119, - -0.022261, - 0.0052463, - -0.045196, - 0.052038, - -0.073173, - 0.040099, - 0.020295, - 0.012733, - 0.0065153, - 0.024461, - 0.00075785, - -0.0022964, - -0.041294, - 0.022499, - -0.010124, - 0.005465, - -0.023889, - -0.0015754, - 0.012645, - -0.058559, - 0.0048414, - 0.020689, - -0.007528, - -0.025727, - 0.0038991, - 0.01783, - -0.0071816, - -0.027682, - 0.047315, - -0.069173, - -0.028251, - 0.054993, - 0.056454, - -0.082185, - -0.060877, - 0.042293, - -0.03483, - -0.014535, - 0.0062503, - 0.026413, - -0.056993, - 0.015223, - -0.075703, - 0.029393, - -0.033249, - -0.027087, - 0.0088611, - -0.0054261, - 0.059278, - 0.0064264, - -0.046956, - -0.0064051, - 0.029467, - 0.051907, - 0.0086756, - -0.0055164, - 0.013388, - -0.021985, - 0.0034664, - -0.016546, - -0.041199, - 0.086831, - 0.052076, - 0.016438, - -0.019122, - -0.025856, - 0.053303, - -0.066501, - 0.035496, - 0.024512, - 0.025216, - 0.0099957, - -0.0040892, - 0.0058639, - 0.024571, - 0.014639, - 0.024086, - -0.063279, - -0.013481, - 0.014615, - 0.033056, - -0.027087, - 0.029037, - 0.0067516, - 0.030493, - 0.0011201, - 0.015979, - 0.044838, - 0.10576, - 0.017304, - -0.01155, - -0.021043, - 0.046179, - -0.010541, - 0.0024949, - -0.011461, - 0.01742, - 0.028517, - -0.015786, - -0.054941, - 0.03052, - -0.041099, - 0.048423, - 0.012661, - 0.00022138, - -0.0017061, - -0.023754, - 0.077443, - -0.071481, - 0.014046, - -0.03029, - -0.00043852, - 0.040502, - 0.0031001, - 0.03764, - -0.039656, - -0.071784, - -0.034158, - 0.0044049, - 0.038735, - 0.062997, - 0.012583, - -0.022985, - 0.0091412, - 0.099619, - 0.045084, - -0.032375, - 0.023265, - 0.053689, - 0.030494, - 0.019066, - 0.025525, - 0.02699, - 0.0010316, - 0.051814, - -0.031391, - 0.020339, - -0.10555, - 0.010827, - -0.062673, - 0.096788, - 0.0025381, - -0.024002, - 0.019994, - 0.07286, - -0.0018404, - 0.010991, - 0.088923, - 0.018397, - 0.018991, - 0.0055949, - -0.019195, - 0.037514, - -0.049628, - 0.061254, - 0.022953, - 0.019647, - -0.022196, - -0.059161, - 0.018365, - 0.064821, - -0.0022857, - -0.023995, - -0.0082567, - 0.026091, - -0.01169, - -0.046626, - 0.017419, - 0.0013406, - -0.04746, - -0.0065842, - -0.012175, - -0.0081628, - -0.020053, - -0.011851, - 0.0056177, - -0.0011695, - 0.0081749, - -0.0037069, - 0.059471, - 0.010666, - -0.077256, - 0.00042045, - -0.044471, - -0.012241, - -0.027693, - -0.016522, - 0.011111, - 0.043091, - 0.027248, - 0.007047, - -0.016461, - 0.017729, - 0.050197, - 0.0083603, - 0.029269, - -0.029366, - -0.0063876, - 0.0053822, - -0.017044, - 0.054145, - -0.010615, - 0.01514, - -0.049915, - 0.011999, - 0.020976, - 0.0011459, - -0.029062, - 0.049662, - -0.065231, - -0.02123, - 0.0066623, - -0.043213, - 0.023384, - 0.0069978, - -0.0087842, - 0.062852, - 0.086561, - -0.0065141, - 0.033361, - 0.039612, - 0.0082743, - -0.0020942, - 0.013525, - -0.062957, - -0.019581, - 0.0033805, - -0.022587, - 0.0062371, - -0.034477, - -0.000108, - -0.043553, - 0.02354, - -0.0019405, - 0.03349, - -0.068673, - -0.047118 - ], - "theatre": [ - -0.025392, - -0.085884, - 0.068153, - 0.010733, - 0.03459, - -0.024159, - 0.031254, - -0.080141, - 0.077904, - -0.03648, - 0.093671, - -0.073435, - 0.10601, - -0.066313, - -0.020786, - -0.013457, - 0.16535, - -0.024261, - 0.033966, - -0.0015421, - -0.054248, - -0.065167, - 0.036983, - 0.058085, - 0.015051, - 0.082442, - -0.041, - 0.036354, - -0.0077439, - -0.021803, - -0.03752, - 0.020291, - -0.054662, - -0.050082, - 0.047041, - 0.056157, - 0.059049, - 0.0056328, - 0.072782, - -0.076217, - -0.029051, - -0.15881, - -0.0085748, - -0.016743, - 0.0068169, - -0.0051482, - 0.13458, - -0.048601, - -0.020371, - 0.024355, - 0.022032, - 0.011343, - 0.037128, - 0.029206, - -0.066686, - 0.00036497, - -0.01211, - -0.013201, - -0.066902, - -0.016922, - 0.0038451, - -0.027339, - 0.082906, - 0.0044637, - 0.049467, - 0.075698, - -0.021073, - -0.0096769, - 0.0060366, - -0.0019056, - 0.041552, - -0.051729, - 0.0070992, - 0.062757, - 0.10245, - 0.0050336, - -0.019052, - -0.033055, - 0.044269, - 0.079431, - -0.018334, - 0.0060015, - -0.082883, - 0.03775, - -0.10928, - -0.0095418, - -0.10937, - -0.03743, - -0.07766, - -0.0042905, - 0.0034995, - 0.06107, - -0.078594, - 0.029295, - 0.023268, - 0.12361, - -0.032066, - 0.11422, - -0.01197, - 0.025249, - 0.11047, - 0.083085, - -0.030559, - -0.017236, - 0.018529, - -0.1092, - -0.0065702, - 0.03766, - -0.02314, - 0.039444, - -0.017168, - 0.11129, - 0.083826, - -0.011893, - 0.054964, - -0.05126, - 0.019606, - 0.01778, - -0.035066, - 0.030412, - -0.029139, - -0.078162, - -0.12492, - 0.0045055, - 0.032165, - 0.062276, - -0.02137, - -0.095829, - -0.0012574, - 0.10829, - 0.018778, - 0.027497, - 0.023484, - 0.024517, - 0.015141, - 0.02438, - -0.033933, - 0.0074106, - -0.013623, - -0.045199, - -0.032453, - -0.019433, - -0.0249, - 0.031744, - -0.020019, - -0.03317, - -0.012369, - -0.08345, - 0.041803, - 0.044803, - 0.04399, - 0.071769, - 0.018658, - -0.06633, - -0.088616, - 0.0021338, - 0.04866, - 0.071973, - 0.052759, - -0.021072, - 0.013555, - 0.0033341, - -0.055775, - 0.047181, - -0.05974, - 0.024914, - 0.048632, - -0.064086, - -0.046144, - 0.035113, - 0.065739, - -0.028146, - 0.048585, - 0.01363, - 0.040832, - 0.052771, - -0.050249, - -0.041924, - -0.057102, - -0.016927, - -0.0035386, - 0.055116, - -0.027896, - -0.064946, - -0.01152, - 0.0035746, - -0.0041011, - 0.083954, - -0.0045332, - -0.0035267, - 0.018292, - 0.076799, - -0.0042881, - -0.10228, - -0.058768, - 0.021428, - -0.022799, - 0.013848, - 0.047511, - 0.017406, - -0.17506, - 0.035587, - -0.078712, - -0.0054319, - 0.063126, - 0.038516, - -0.0062727, - 0.055607, - -0.061501, - -0.014083, - 0.14195, - -0.036407, - -0.0053198, - 0.035008, - -0.0097072, - 0.027837, - 0.10974, - -0.025357, - 0.045807, - -0.029605, - 0.086284, - 0.056817, - -0.032035, - 0.098444, - -0.035962, - -0.064169, - 0.0016439, - 0.068541, - -0.014582, - 0.0033145, - 0.0013387, - -0.045153, - -0.03019, - -0.0099048, - 0.0014494, - -0.08034, - 0.035428, - -0.063916, - -0.0074377, - -0.032812, - 0.052324, - -0.028261, - 0.0055746, - 0.055789, - 0.011663, - -0.036085, - -0.10645, - 0.028999, - 0.057329, - 0.019963, - 0.01343, - 0.0023066, - -0.039094, - 0.032842, - -0.056131, - 0.027919, - -0.05215, - 0.025565, - -0.0050333, - -0.022529, - 0.057523, - 0.025187, - -0.046537, - -0.012763, - -0.019644, - 0.068883, - -0.014921, - 0.00051959, - -0.031465, - -0.0011259, - 0.032098, - 0.097067, - -0.09799, - -0.014029, - -0.024129, - -0.018298, - 0.070549, - 0.029252, - -0.0347, - 0.0086931, - 0.082142, - -0.0013583, - -0.046301, - -0.027422, - -0.036279, - 0.02444, - -0.0078316, - -0.04435, - 0.06088, - 0.029727, - 0.060336, - 0.10108, - -0.031294, - 0.012386, - -0.02169, - 0.028799, - 0.018189, - 0.06861, - 0.014692, - 0.017324 - ], - "classy": [ - 0.016416, - 0.0025183, - 0.015198, - 0.052807, - -0.0042699, - 0.018083, - -0.029807, - -0.08035, - -0.019042, - 0.04968, - 0.0020803, - -0.081927, - 0.00086984, - 0.06359, - -0.11488, - -0.028926, - 0.088147, - 0.035903, - 0.070384, - -0.029082, - 0.043791, - -0.033957, - -0.0081076, - 0.072999, - 0.068195, - -0.01003, - 0.085909, - -0.0059181, - 0.039392, - 0.025114, - -0.012068, - -0.060844, - 0.051464, - -0.082675, - 0.045155, - 0.025344, - 0.030247, - 0.082707, - -0.033232, - 0.066833, - 0.038266, - -0.12333, - -0.043823, - -0.050159, - -0.014636, - -0.055259, - 0.091888, - 0.014238, - -0.042719, - -0.020089, - 0.02202, - -0.075954, - -0.0044908, - -0.020045, - -0.014673, - -0.031051, - -0.058226, - -0.025705, - -0.085826, - -0.0080071, - 0.021613, - -0.029631, - 0.11459, - 0.034639, - 0.095022, - 0.057314, - -0.037006, - -0.0037722, - 0.015107, - -0.056238, - 0.033781, - -0.023788, - -0.021322, - -0.015702, - 0.037881, - -0.013042, - -0.039072, - -0.11063, - 0.010848, - 0.02428, - 0.053731, - 0.00032429, - 0.10079, - 0.090118, - 0.00454, - -0.056597, - -0.048371, - 0.039889, - 0.016624, - -0.032278, - -0.063776, - -0.016632, - -0.1145, - 0.011021, - 0.089443, - 0.080266, - -0.070845, - 0.054253, - 0.0523, - 0.027591, - 0.050328, - 0.063591, - -0.077494, - 0.04216, - -0.090653, - -0.17215, - 0.035868, - 0.000021232, - 0.045037, - 0.030834, - -0.028639, - 0.094722, - 0.034389, - -0.004758, - -0.089002, - -0.04469, - -0.013727, - 0.00033094, - -0.066402, - 0.0027419, - 0.063769, - -0.022312, - 0.0048789, - -0.017267, - 0.045775, - 0.024427, - 0.042971, - 0.019073, - -0.037118, - 0.014248, - -0.045412, - 0.11962, - 0.00075393, - -0.066809, - -0.10375, - -0.11738, - -0.052699, - 0.047929, - -0.064483, - -0.07978, - 0.03378, - 0.0078958, - 0.022944, - -0.041251, - 0.038484, - 0.043674, - 0.064409, - 0.055021, - -0.058616, - 0.054129, - -0.024832, - 0.070754, - 0.024262, - -0.038505, - -0.076302, - 0.034082, - 0.035907, - -0.00020776, - 0.055493, - 0.01286, - 0.11834, - -0.003513, - -0.042031, - -0.054911, - -0.027192, - 0.06776, - -0.0047031, - 0.0087407, - -0.059067, - 0.042067, - 0.11427, - -0.015477, - 0.044655, - -0.015884, - 0.034958, - 0.091018, - -0.081906, - 0.082985, - 0.011983, - -0.032941, - -0.034985, - -0.022785, - -0.027343, - -0.052014, - 0.041107, - -0.023854, - -0.043188, - 0.12353, - -0.010307, - 0.030082, - 0.043194, - 0.052494, - -0.0017208, - -0.0013875, - -0.075492, - 0.047459, - 0.053833, - -0.032466, - 0.039847, - 0.0095356, - -0.16119, - 0.13586, - 0.076268, - 0.0088283, - -0.035542, - -0.0069088, - -0.075775, - -0.086198, - 0.02589, - -0.070376, - 0.074826, - -0.064786, - 0.032372, - 0.036714, - 0.025045, - -0.021413, - -0.050921, - 0.025472, - -0.14064, - 0.063952, - -0.00079955, - -0.015593, - 0.019533, - 0.079095, - -0.06296, - 0.0090088, - 0.0057148, - 0.034426, - -0.0073057, - -0.06218, - 0.06304, - -0.030194, - -0.0059511, - -0.016539, - 0.12254, - -0.026136, - -0.095664, - -0.046413, - 0.051968, - -0.072739, - 0.11997, - -0.034054, - 0.013059, - 0.0040088, - -0.090045, - 0.049735, - 0.015101, - -0.02975, - 0.0031717, - -0.074509, - 0.015986, - -0.026791, - -0.076869, - 0.012177, - -0.00021768, - -0.021938, - -0.079584, - 0.013822, - 0.03044, - 0.04199, - 0.0092325, - 0.071826, - 0.042249, - -0.027237, - -0.017967, - -0.010939, - 0.043344, - -0.039403, - 0.011903, - 0.054969, - -0.054233, - 0.091879, - -0.11824, - 0.024427, - 0.067855, - -0.083347, - -0.018498, - 0.0088091, - 0.036435, - 0.0077623, - 0.11496, - 0.07912, - 0.057358, - -0.022156, - -0.099295, - -0.095466, - 0.097697, - -0.039458, - 0.044096, - -0.020154, - -0.023288, - 0.012629, - 0.042725, - 0.0066902, - -0.035757, - -0.021928, - 0.046481, - 0.065241, - -0.025902, - -0.064278 - ], - "tenure": [ - -0.0064064, - -0.059138, - 0.040239, - -0.010157, - -0.0044071, - -0.040857, - -0.011407, - -0.10105, - 0.12097, - 0.021625, - -0.022093, - 0.0071199, - 0.01966, - 0.050832, - -0.042697, - 0.052204, - 0.11302, - 0.039709, - 0.011272, - 0.024686, - -0.043248, - -0.030693, - -0.059829, - 0.047617, - 0.040434, - -0.02234, - -0.055594, - 0.0092275, - -0.011805, - -0.043614, - -0.013202, - -0.030058, - -0.038869, - -0.10494, - -0.043074, - 0.061324, - 0.0017116, - -0.015088, - -0.0077521, - 0.013857, - 0.022739, - -0.11624, - 0.066159, - -0.0045674, - -0.028563, - 0.059257, - 0.077857, - -0.1371, - 0.018367, - -0.0069913, - -0.013761, - 0.040022, - 0.055961, - 0.056442, - -0.093949, - 0.058401, - -0.099758, - 0.036344, - -0.037025, - 0.0445, - 0.041098, - 0.030681, - 0.18022, - -0.012035, - 0.0057851, - -0.02732, - 0.046697, - -0.071258, - 0.066218, - -0.024217, - -0.083867, - -0.013616, - -0.012016, - -0.081327, - 0.017025, - 0.082141, - -0.026241, - 0.043541, - 0.028123, - 0.11258, - 0.0015149, - -0.084774, - 0.028019, - 0.064911, - -0.060553, - 0.078142, - -0.0073335, - -0.026736, - -0.044354, - -0.011732, - 0.054502, - 0.013358, - -0.10753, - 0.034802, - -0.017364, - 0.080437, - -0.0051633, - 0.02592, - 0.053328, - -0.012805, - -0.025086, - 0.020218, - 0.056214, - -0.051183, - -0.019555, - -0.058081, - -0.0040933, - -0.02197, - 0.054728, - 0.021945, - 0.018059, - -0.012036, - 0.00458, - 0.071851, - -0.0080768, - 0.073233, - 0.022916, - -0.01358, - -0.0077343, - 0.032478, - -0.0094178, - -0.060587, - 0.099345, - 0.0089225, - 0.0046822, - 0.032458, - 0.013977, - -0.10119, - -0.00019037, - 0.11653, - 0.086741, - -0.052543, - -0.019397, - 0.046261, - -0.050611, - -0.011497, - -0.082695, - 0.0013488, - -0.042711, - 0.052639, - -0.021446, - -0.041422, - 0.048161, - -0.0043315, - 0.022622, - -0.030694, - 0.0019693, - 0.035677, - 0.019526, - -0.012968, - 0.00092862, - 0.019852, - 0.020919, - -0.060076, - 0.10582, - -0.017755, - 0.089545, - 0.065356, - -0.036841, - 0.015747, - 0.062795, - 0.075044, - -0.05081, - -0.061194, - -0.015575, - -0.023541, - 0.1303, - -0.13012, - 0.087718, - -0.02521, - 0.069173, - 0.012094, - -0.003945, - -0.011278, - -0.0084149, - 0.023354, - 0.0076918, - 0.06589, - -0.059017, - 0.00010375, - -0.033576, - 0.0081596, - 0.074968, - 0.054081, - -0.028369, - -0.085811, - 0.017524, - 0.099275, - -0.06954, - 0.10323, - -0.0059376, - 0.1022, - -0.032734, - 0.053054, - -0.047918, - -0.050196, - 0.017581, - -0.02461, - 0.046763, - -0.015529, - -0.14414, - 0.083315, - -0.0019389, - -0.14117, - -0.10936, - -0.06378, - 0.019017, - -0.013903, - 0.023268, - -0.037886, - 0.18294, - -0.0057177, - 0.010365, - -0.013498, - 0.03199, - 0.024476, - -0.0075301, - -0.015486, - -0.031384, - -0.17349, - -0.011612, - -0.0099907, - 0.082855, - 0.10603, - 0.0028814, - -0.080134, - 0.057587, - 0.081295, - -0.017355, - -0.035882, - 0.053211, - -0.13053, - -0.055826, - -0.0026184, - 0.0033323, - -0.013398, - -0.054716, - -0.030644, - 0.018671, - 0.0076839, - 0.091148, - 0.0064499, - 0.088587, - 0.13338, - -0.021633, - -0.0075695, - -0.081194, - -0.17542, - -0.03084, - 0.043072, - -0.028582, - 0.059796, - 0.025503, - -0.057938, - 0.069611, - -0.082833, - 0.08013, - 0.016592, - 0.14643, - -0.038401, - 0.025656, - -0.057047, - 0.04944, - -0.039133, - -0.0064268, - 0.048968, - 0.030642, - -0.013572, - -0.019869, - -0.053256, - -0.0077213, - 0.076291, - -0.12197, - -0.043221, - 0.015433, - -0.049604, - -0.030597, - 0.010747, - 0.045417, - -0.003146, - 0.085801, - -0.020545, - -0.050865, - -0.027975, - 0.053387, - 0.042472, - -0.072591, - -0.0094418, - -0.16772, - 0.011933, - -0.0041279, - -0.054515, - 0.028632, - -0.02066, - 0.052709, - 0.074724, - -0.17983, - 0.044561, - -0.048457, - 0.016339 - ], - "automaker": [ - 0.03371, - -0.043652, - 0.038668, - 0.037878, - -0.033044, - 0.013965, - -0.092851, - -0.064049, - 0.041659, - 0.010446, - 0.0053786, - 0.010912, - 0.0010849, - 0.11886, - -0.13128, - 0.10285, - 0.067221, - -0.0025436, - 0.075125, - 0.0015464, - 0.046998, - 0.0091797, - -0.013146, - 0.065191, - 0.037474, - 0.013794, - 0.054056, - 0.041858, - -0.018598, - -0.004833, - -0.0093966, - 0.0028948, - 0.033693, - 0.018233, - -0.045106, - -0.0024762, - -0.041539, - 0.0036262, - 0.061547, - 0.033063, - -0.0080068, - -0.074172, - 0.036329, - 0.0096576, - 0.048277, - 0.052626, - -0.062588, - -0.016888, - -0.019951, - -0.018182, - 0.043431, - 0.0068857, - -0.074027, - 0.037063, - -0.0011961, - -0.11908, - -0.049525, - 0.013475, - 0.023337, - 0.021264, - 0.02355, - -0.024903, - 0.048547, - 0.022257, - 0.041255, - -0.023318, - 0.011525, - -0.0084494, - 0.072787, - 0.036283, - -0.0028834, - -0.0055526, - 0.049863, - -0.031388, - -0.025131, - 0.050491, - -0.052252, - 0.02025, - 0.041209, - -0.067156, - 0.021205, - 0.096125, - -0.064416, - -0.012944, - -0.0068419, - -0.041587, - -0.079696, - -0.019751, - 0.087886, - -0.066412, - -0.02192, - 0.035617, - -0.085551, - -0.073714, - -0.015585, - 0.083705, - 0.043803, - -0.035069, - 0.0036, - -0.043259, - -0.025972, - -0.038407, - 0.0095391, - 0.063592, - -0.022134, - -0.080194, - -0.01243, - -0.016761, - 0.0069477, - -0.044292, - 0.060533, - 0.091893, - 0.019383, - 0.083273, - 0.011271, - -0.12977, - -0.0024203, - 0.046183, - -0.015292, - -0.0040023, - -0.07754, - -0.05451, - -0.012855, - 0.021672, - 0.052448, - 0.055661, - -0.010891, - -0.081392, - 0.094141, - 0.036723, - -0.0047645, - 0.061371, - -0.0039443, - -0.016673, - 0.093011, - -0.019005, - 0.051699, - 0.074546, - -0.0028464, - -0.0061659, - 0.0094301, - 0.022889, - 0.037613, - 0.066291, - -0.035029, - -0.01503, - 0.0049611, - -0.02974, - 0.062523, - -0.053267, - 0.092658, - 0.042747, - 0.012269, - -0.030844, - 0.0051493, - -0.0019793, - 0.029667, - -0.036131, - 0.051834, - -0.020526, - 0.055621, - -0.0027174, - 0.0019818, - -0.025746, - 0.15117, - 0.013376, - -0.00062159, - -0.034946, - 0.053553, - -0.0059562, - 0.019599, - -0.10836, - -0.079858, - 0.094586, - -0.00065223, - 0.02424, - -0.042264, - -0.016018, - -0.068972, - -0.0051166, - -0.0080114, - -0.0071413, - -0.03676, - -0.012124, - 0.047665, - -0.071788, - -0.05527, - 0.10136, - -0.017221, - 0.029605, - -0.077048, - 0.058915, - -0.0081238, - -0.026328, - 0.0096248, - 0.047039, - -0.04572, - -0.057515, - 0.030597, - -0.021937, - -0.092104, - 0.029969, - -0.059005, - -0.04945, - 0.029456, - -0.0072392, - -0.028597, - 0.057448, - -0.034127, - -0.067799, - 0.063018, - 0.024221, - 0.0018364, - -0.00046226, - -0.054852, - -0.030183, - -0.015332, - -0.045044, - 0.032747, - 0.018738, - -0.038018, - -0.0082877, - 0.033484, - 0.088538, - 0.021809, - -0.042358, - -0.032611, - 0.037083, - 0.011948, - -0.0084953, - -0.0348, - -0.027728, - -0.045457, - 0.03731, - 0.031837, - -0.028269, - -0.0377, - -0.02764, - 0.075096, - 0.010496, - 0.043367, - -0.009206, - -0.085647, - 0.037861, - 0.04864, - -0.066549, - 0.067619, - -0.0016693, - 0.014816, - -0.085098, - -0.02319, - -0.017099, - 0.011479, - -0.019631, - -0.0041033, - -0.03413, - 0.019153, - 0.049003, - -0.015735, - 0.02284, - 0.036381, - 0.043865, - -0.066528, - 0.019559, - -0.0038342, - 0.045453, - 0.0098885, - 0.044292, - 0.035797, - 0.044095, - 0.0049989, - 0.069582, - -0.15024, - -0.0045443, - 0.018632, - -0.022029, - -0.10875, - 0.094157, - -0.064427, - 0.066055, - 0.0532, - -0.030044, - 0.032807, - 0.0061444, - -0.019313, - -0.051263, - 0.0021544, - -0.085278, - 0.046754, - 0.081358, - -0.0023779, - -0.043274, - 0.06286, - -0.0055453, - 0.013735, - -0.07229, - 0.059709, - -0.019835, - 0.013102, - 0.0017538 - ], - "astrophysics": [ - -0.024248, - -0.058426, - -0.026357, - -0.048738, - 0.019659, - -0.059374, - 0.074898, - -0.086074, - 0.032714, - 0.023152, - 0.0086555, - -0.046591, - 0.017533, - -0.022235, - -0.038566, - 0.0061177, - 0.063602, - 0.065152, - 0.019542, - 0.0077122, - 0.03579, - 0.026713, - 0.007501, - 0.06377, - 0.035273, - 0.02024, - 0.008006, - -0.025619, - 0.0090639, - 0.0086257, - 0.024332, - -0.0023711, - 0.011383, - -0.026887, - 0.017849, - 0.039876, - 0.0044692, - -0.043235, - 0.016441, - -0.011046, - -0.10968, - -0.091777, - 0.030721, - -0.017422, - -0.038978, - -0.0086528, - -0.032797, - -0.067003, - 0.021496, - 0.02684, - -0.055237, - -0.00044629, - 0.0070861, - 0.03682, - -0.042806, - -0.031736, - -0.049516, - 0.03106, - -0.016273, - 0.047719, - 0.097889, - 0.026737, - 0.049044, - 0.0024149, - 0.019314, - 0.047095, - 0.016491, - -0.0055608, - 0.015328, - -0.013285, - 0.013474, - -0.02995, - 0.018429, - -0.032382, - 0.016218, - 0.0017225, - 0.016041, - -0.01863, - 0.047144, - 0.024, - -0.014487, - 0.045555, - -0.05127, - 0.019555, - -0.05538, - 0.050838, - 0.051596, - -0.012649, - 0.044126, - -0.037358, - 0.068634, - 0.03589, - -0.073321, - 0.0020517, - 0.027968, - 0.072381, - -0.022306, - 0.0059559, - -0.046516, - -0.02643, - -0.0086485, - 0.0062805, - -0.02416, - -0.02517, - -0.0039572, - -0.025264, - 0.035763, - 0.070483, - 0.047362, - 0.0051015, - -0.021327, - 0.10882, - 0.026324, - 0.028051, - 0.045542, - -0.012186, - -0.0063404, - 0.012782, - -0.023471, - -0.011844, - -0.03744, - -0.0010073, - -0.093839, - -0.03873, - 0.026008, - -0.053202, - -0.041635, - -0.034128, - -0.017847, - 0.090666, - -0.023489, - 0.029147, - -0.022444, - 0.019779, - 0.025368, - -0.0055487, - 0.042144, - -0.010325, - -0.024325, - -0.011727, - 0.052353, - -0.011279, - 0.017252, - 0.011113, - -0.023227, - 0.00043352, - -0.038839, - 0.0096635, - -0.065994, - -0.0012179, - 0.035547, - 0.042297, - -0.014608, - -0.068387, - 0.0648, - 0.044367, - 0.027052, - 0.035109, - 0.0069422, - 0.0023642, - 0.018027, - 0.014147, - -0.058878, - 0.035391, - -0.052758, - -0.026208, - -0.060198, - -0.037232, - -0.0093594, - -0.0086632, - 0.033821, - -0.070216, - -0.017638, - 0.0077989, - 0.044622, - 0.033012, - -0.03891, - 0.014826, - -0.03383, - -0.019426, - -0.027144, - 0.024724, - -0.012877, - 0.0083223, - 0.024249, - -0.013353, - 0.017028, - 0.078369, - 0.048087, - 0.026428, - 0.021937, - 0.093858, - -0.03767, - -0.047316, - -0.026107, - 0.0063147, - -0.049947, - -0.019642, - -0.0017063, - -0.02237, - -0.10493, - -0.020956, - 0.012169, - -0.020351, - -0.0014651, - -0.01143, - 0.029646, - -0.013111, - -0.050602, - 0.0072628, - 0.088834, - 0.017165, - -0.0042457, - -0.051508, - 0.021562, - 0.033463, - 0.010327, - -0.024055, - -0.044765, - -0.020806, - 0.0018597, - 0.015062, - -0.043138, - 0.073915, - -0.038573, - 0.056568, - 0.022843, - 0.093411, - -0.003373, - -0.026634, - -0.024272, - -0.029396, - -0.033914, - 0.0087816, - 0.019452, - 0.021986, - 0.013632, - 0.00085805, - -0.04884, - -0.016929, - 0.012169, - -0.077889, - 0.0060641, - -0.032644, - 0.026496, - 0.015792, - -0.022813, - -0.034513, - -0.035502, - 0.036593, - 0.021598, - 0.0076646, - -0.008712, - -0.0096792, - -0.014802, - 0.011059, - -0.010976, - 0.028382, - 0.017401, - 0.014647, - 0.050882, - 0.0072787, - 0.0011277, - -0.0036274, - -0.023463, - -0.025343, - -0.036011, - 0.014119, - 0.10521, - -0.048638, - 0.031162, - 0.06984, - -0.066234, - -0.016365, - -0.0032486, - -0.0091487, - -0.016904, - -0.052936, - 0.032901, - -0.027103, - 0.048509, - 0.0014982, - 0.012341, - -0.033838, - -0.042092, - -0.07682, - -0.030489, - -0.028742, - -0.054987, - -0.010944, - 0.026174, - 0.018652, - -0.014385, - -0.070107, - 0.035687, - 0.032976, - -0.014745, - 0.016645, - 0.0036489, - 0.067694 - ], - "parenting": [ - -0.004916, - -0.054448, - 0.033572, - -0.01017, - -0.035095, - 0.031662, - 0.017878, - -0.061729, - 0.057456, - 0.05768, - -0.021318, - -0.02291, - -0.012722, - 0.029352, - -0.043557, - -0.040324, - 0.012274, - -0.0035976, - -0.021946, - 0.043046, - 0.010388, - 0.05623, - 0.0098861, - 0.039612, - -0.038426, - 0.05351, - 0.0078639, - 0.042226, - 0.027486, - 0.00022332, - 0.039073, - -0.044854, - -0.015922, - -0.055273, - 0.065009, - 0.017896, - -0.033874, - -0.11726, - 0.0042751, - -0.046628, - -0.032843, - -0.060163, - 0.02041, - -0.02808, - -0.0064562, - -0.029357, - 0.015222, - 0.069346, - -0.071468, - -0.024562, - -0.012357, - -0.0053888, - 0.060019, - 0.032268, - -0.002231, - -0.041334, - 0.0071278, - -0.11423, - -0.029506, - 0.0035108, - -0.0096697, - -0.054928, - 0.04708, - 0.03307, - 0.027047, - -0.038595, - 0.0077085, - 0.0047232, - -0.018991, - -0.065053, - 0.034253, - 0.017904, - 0.076834, - -0.0071591, - 0.076241, - -0.039798, - -0.0076602, - 0.036532, - 0.021564, - -0.0073109, - 0.0037053, - -0.0055574, - 0.0042994, - 0.070502, - 0.0077098, - -0.00076826, - 0.028984, - 0.032978, - -0.017415, - 0.0070241, - 0.04891, - 0.050743, - -0.067062, - -0.020163, - -0.0073666, - 0.068743, - 0.0067687, - 0.046986, - 0.0073196, - -0.027182, - -0.034177, - 0.0010049, - -0.01542, - -0.048454, - -0.020893, - -0.07235, - 0.029601, - 0.031451, - 0.046661, - -0.047801, - 0.0015858, - 0.082881, - 0.012037, - -0.0050852, - 0.026519, - -0.047073, - -0.028601, - -0.0022168, - -0.039763, - 0.013147, - 0.0062461, - 0.046464, - 0.10493, - 0.017119, - 0.021753, - -0.057154, - -0.023412, - -0.091113, - 0.058825, - 0.091527, - 0.010196, - -0.018702, - 0.0001497, - -0.013509, - -0.04611, - 0.0028362, - -0.047138, - -0.000688, - 0.015544, - 0.006185, - 0.027778, - -0.00083896, - -0.0041111, - 0.069056, - -0.0098308, - 0.02905, - -0.0041112, - 0.018829, - -0.036121, - -0.024194, - 0.039208, - 0.06495, - -0.026922, - -0.10475, - -0.024069, - 0.05504, - 0.048361, - 0.051811, - 0.12265, - -0.046694, - 0.057011, - 0.026973, - -0.060225, - -0.015854, - 0.016503, - 0.045985, - 0.042908, - 0.028518, - 0.0017279, - -0.042135, - 0.030097, - 0.015635, - 0.006433, - -0.00311, - -0.0055543, - 0.061752, - 0.0064829, - 0.041141, - 0.0076728, - -0.042169, - 0.0079691, - -0.09108, - -0.023532, - -0.01876, - 0.04375, - -0.059263, - 0.048463, - 0.12043, - -0.022411, - -0.001279, - -0.041286, - 0.069646, - -0.0082252, - -0.046701, - -0.016802, - -0.022745, - 0.053379, - 0.020098, - -0.0028788, - -0.03778, - -0.14033, - 0.027172, - 0.034513, - 0.01227, - -0.003732, - 0.067306, - -0.044383, - -0.012449, - 0.033963, - 0.043321, - 0.069522, - 0.025474, - -0.0028716, - 0.043292, - -0.049702, - 0.046605, - -0.037885, - -0.062837, - -0.067702, - -0.032141, - 0.029419, - -0.022559, - 0.032479, - 0.051615, - -0.02949, - -0.078535, - 0.0043594, - 0.034978, - 0.022122, - -0.051731, - 0.056165, - -0.025187, - -0.080907, - 0.025469, - -0.0032621, - 0.1089, - 0.054646, - 0.0037012, - -0.019496, - -0.059156, - 0.022416, - -0.032888, - -0.0049356, - -0.0074948, - -0.057247, - 0.034331, - 0.014282, - -0.019805, - 0.041506, - 0.028526, - 0.050129, - 0.010153, - 0.023855, - 0.02818, - 0.017437, - -0.034724, - -0.029233, - 0.0097843, - 0.0065368, - -0.022597, - 0.031435, - -0.019315, - 0.030477, - 0.087894, - 0.0068357, - -0.0027376, - 0.0047217, - 0.045341, - 0.085159, - 0.033416, - 0.018478, - 0.034415, - -0.086864, - -0.0032674, - 0.020267, - -0.0071126, - -0.0075782, - 0.042416, - -0.0071203, - 0.058636, - 0.060348, - 0.013995, - 0.064292, - -0.026322, - 0.031893, - 0.077697, - -0.020763, - -0.00099101, - -0.035536, - 0.0041365, - 0.016474, - -0.037715, - 0.015962, - -0.036893, - 0.0077901, - 0.036222, - 0.053125, - 0.075006, - -0.013737, - -0.019564 - ], - "cipher": [ - 0.016055, - -0.040652, - 0.013052, - 0.1133, - -0.045788, - -0.041155, - 0.017448, - -0.077171, - -0.062158, - 0.055081, - 0.03591, - -0.01828, - -0.060869, - 0.094202, - -0.07752, - 0.02959, - 0.042834, - 0.007293, - 0.0139, - -0.01575, - 0.035021, - 0.082534, - 0.019315, - 0.02857, - 0.028814, - 0.087804, - 0.023597, - -0.039743, - 0.018904, - -0.07136, - -0.088518, - -0.033075, - -0.090467, - 0.0052601, - 0.035531, - -0.07856, - -0.0095084, - 0.039041, - 0.077914, - -0.037121, - 0.00013807, - -0.11873, - -0.022935, - -0.038564, - -0.02816, - -0.019858, - -0.04306, - 0.059366, - -0.015422, - 0.057018, - -0.011494, - -0.10777, - 0.040422, - -0.020231, - -0.011925, - -0.021485, - 0.079747, - 0.012239, - 0.02017, - -0.038871, - -0.13062, - -0.14158, - 0.10839, - -0.079727, - -0.056396, - 0.031057, - -0.025931, - 0.11778, - -0.065036, - -0.024164, - -0.092753, - 0.047725, - 0.00084892, - 0.010956, - 0.00018211, - -0.039514, - 0.015418, - -0.015016, - 0.038296, - -0.058485, - 0.022748, - -0.039957, - -0.0021762, - -0.0052573, - -0.086592, - 0.019012, - 0.014574, - -0.013781, - 0.045732, - -0.0043973, - 0.04058, - -0.017875, - -0.078911, - 0.0033503, - -0.0051395, - 0.10869, - 0.013421, - -0.034343, - 0.07376, - 0.062568, - 0.039274, - 0.082724, - 0.055376, - -0.0048555, - -0.046281, - -0.16604, - 0.071242, - 0.043116, - -0.053173, - 0.025232, - 0.029347, - 0.049403, - 0.063819, - 0.052297, - -0.057542, - 0.0058583, - 0.09896, - 0.13276, - -0.015282, - -0.092732, - 0.18507, - -0.048568, - -0.18059, - -0.00025304, - 0.096212, - -0.034281, - 0.0067766, - -0.045794, - -0.075649, - 0.059068, - 0.015178, - -0.034348, - 0.093201, - 0.025459, - -0.019738, - -0.14004, - 0.033325, - 0.072117, - 0.057905, - -0.014378, - 0.10467, - 0.021093, - -0.036416, - 0.0044177, - -0.050361, - -0.086361, - -0.07453, - -0.1091, - 0.04138, - -0.11261, - -0.055891, - 0.042148, - 0.083005, - -0.030326, - 0.15418, - 0.043518, - -0.0063545, - 0.049033, - 0.0092708, - 0.099397, - 0.018839, - -0.019196, - -0.11217, - 0.05089, - 0.0043938, - -0.17653, - -0.067773, - -0.016766, - -0.006268, - -0.0093204, - 0.038266, - 0.041219, - -0.026341, - 0.059137, - -0.022154, - 0.044, - 0.014809, - 0.070105, - -0.055583, - 0.039358, - -0.044101, - -0.018276, - 0.00726, - -0.0047405, - 0.029497, - 0.011561, - -0.06289, - 0.10422, - 0.096705, - 0.105, - 0.036908, - 0.051625, - 0.017596, - -0.046544, - 0.055499, - 0.031568, - -0.12144, - -0.010579, - -0.059222, - 0.067438, - -0.13335, - 0.047028, - -0.048608, - 0.08347, - -0.017763, - -0.068601, - 0.10994, - -0.051145, - -0.052291, - -0.045899, - 0.097468, - 0.020604, - -0.028949, - 0.10077, - 0.017029, - 0.065119, - -0.11674, - 0.01303, - 0.00828, - -0.0057093, - 0.046825, - 0.012408, - -0.040401, - 0.073913, - 0.022604, - -0.083851, - 0.11412, - 0.012493, - 0.093155, - 0.034045, - -0.015666, - -0.025297, - -0.013764, - -0.098172, - -0.047156, - -0.16079, - -0.0038546, - -0.015806, - 0.018851, - -0.044031, - 0.042085, - -0.064286, - 0.01372, - -0.026888, - -0.033706, - 0.074625, - -0.080506, - 0.067162, - 0.042254, - 0.090827, - -0.035457, - 0.022858, - 0.010839, - 0.071076, - 0.046632, - 0.086215, - 0.061074, - -0.0047923, - 0.032253, - -0.048828, - -0.040573, - -0.024878, - 0.053435, - -0.012161, - 0.11243, - -0.12831, - 0.025408, - -0.034714, - 0.0064137, - 0.01565, - -0.015764, - 0.091498, - -0.05299, - -0.039406, - -0.015858, - -0.062856, - 0.15549, - -0.083441, - 0.091828, - -0.04978, - 0.095857, - -0.031815, - -0.021774, - -0.054004, - -0.02396, - 0.033912, - -0.001062, - 0.0034383, - -0.095215, - 0.058978, - -0.14135, - -0.010415, - -0.036775, - -0.042323, - 0.016042, - 0.0085407, - 0.067446, - -0.083099, - -0.12683, - 0.034851 - ], - "experiences": [ - -0.0094357, - -0.007137, - 0.01774, - -0.000094422, - 0.0066961, - -0.012162, - -0.0078738, - -0.070213, - 0.032975, - -0.021592, - -0.012339, - -0.040636, - 0.0079152, - 0.0001484, - 0.012764, - -0.021787, - 0.040299, - 0.010654, - 0.050593, - 0.0215, - -0.043153, - 0.02963, - -0.037823, - 0.065866, - -0.025233, - 0.017428, - -0.028797, - -0.016961, - 0.068144, - -0.024577, - -0.0001245, - -0.024115, - 0.0072287, - -0.031712, - 0.021653, - 0.026329, - -0.017571, - 0.0069225, - -0.044861, - -0.0081653, - 0.0070297, - -0.075896, - -0.014456, - 0.020934, - 0.007138, - 0.011179, - 0.017263, - -0.033701, - -0.0066242, - 0.0073102, - -0.003021, - -0.0078883, - -0.016672, - 0.021161, - -0.049374, - 0.0096942, - 0.026771, - -0.0096428, - -0.016433, - -0.010334, - -0.039028, - -0.011959, - 0.12305, - -0.049864, - 0.035361, - -0.064844, - -0.017665, - 0.022988, - -0.063415, - 0.036889, - 0.0058161, - 0.010199, - 0.038337, - 0.046505, - 0.0051087, - -0.038857, - 0.011808, - -0.02599, - 0.013656, - -0.002496, - 0.028609, - 0.029359, - 0.029519, - 0.054603, - -0.034747, - -0.0048586, - 0.048394, - -0.0076349, - 0.00030971, - -0.0093257, - 0.019323, - 0.0047089, - -0.068462, - 0.0040344, - -0.042838, - 0.027402, - 0.060333, - -0.029192, - 0.04437, - -0.014087, - 0.039545, - -0.0090305, - -0.028597, - -0.012406, - 0.0848, - -0.032575, - -0.014293, - -0.018298, - 0.00098243, - 0.012909, - -0.053333, - 0.0088261, - 0.032833, - 0.036507, - 0.012436, - -0.0044527, - -0.026472, - -0.030068, - -0.035291, - 0.037553, - 0.025823, - -0.044629, - -0.0015084, - -0.023583, - 0.10479, - -0.017821, - 0.016577, - -0.016092, - 0.034239, - 0.097846, - 0.014622, - 0.02963, - -0.006271, - -0.060094, - 0.010464, - -0.045166, - 0.01903, - 0.047773, - -0.02308, - -0.0011566, - -0.018037, - -0.033995, - -0.009384, - 0.041582, - 0.0037919, - -0.033335, - -0.0097086, - -0.017069, - 0.011817, - 0.037573, - 0.033533, - 0.041618, - -0.002103, - -0.059702, - -0.019409, - -0.01797, - -0.012618, - 0.063879, - 0.012857, - -0.013833, - 0.03645, - 0.039194, - -0.000070365, - -0.012091, - 0.020124, - -0.026071, - 0.025545, - -0.061717, - 0.02422, - -0.0044314, - 0.022158, - 0.015393, - -0.019314, - -0.012829, - 0.011065, - 0.039234, - -0.018379, - 0.0068589, - -0.026825, - -0.040549, - 0.022546, - 0.022293, - -0.033622, - -0.037518, - 0.019774, - -0.050871, - 0.049772, - 0.066672, - 0.0085701, - 0.0064062, - 0.015815, - 0.049248, - -0.068615, - -0.020859, - -0.01526, - 0.0080735, - -0.0090818, - 0.018431, - 0.0059991, - -0.01257, - -0.10407, - 0.019798, - -0.014372, - -0.052155, - -0.0013486, - 0.00012049, - 0.0070122, - 0.056363, - 0.034303, - -0.040557, - 0.056418, - 0.055761, - 0.015222, - -0.044685, - 0.026171, - 0.011981, - 0.061967, - -0.040859, - -0.061578, - -0.023605, - -0.028509, - -0.043574, - -0.003218, - 0.069318, - 0.091647, - -0.026707, - 0.014781, - 0.087808, - -0.018845, - 0.018308, - 0.032126, - -0.041145, - -0.083141, - 0.0069639, - 0.040148, - 0.037664, - 0.031235, - 0.039783, - 0.0087809, - -0.0019381, - 0.0068978, - 0.045298, - 0.03825, - -0.016605, - -0.033167, - -0.00077872, - -0.010774, - -0.08905, - 0.006562, - 0.028231, - 0.061484, - 0.036632, - 0.015837, - -0.030847, - -0.015465, - 0.0028001, - 0.010271, - 0.063583, - 0.030194, - 0.0064031, - 0.0082014, - 0.00791, - -0.018779, - -0.031049, - 0.026178, - -0.01902, - 0.0108, - 0.021119, - 0.020405, - -0.0084948, - -0.025528, - 0.059, - -0.08707, - -0.049137, - 0.053035, - -0.028822, - -0.0035234, - -0.016674, - -0.0047044, - 0.040229, - 0.013164, - 0.01189, - 0.013164, - -0.017446, - 0.0030366, - -0.014422, - -0.054587, - 0.01505, - -0.023049, - -0.00074084, - 0.020252, - 0.055611, - -0.066503, - -0.0075878, - -0.035491, - 0.05714, - 0.028563, - 0.042706, - -0.031583, - 0.02051 - ], - "societal": [ - 0.009431, - -0.0035474, - 0.023116, - 0.034514, - -0.04652, - -0.0017921, - 0.0041283, - -0.046746, - 0.049552, - 0.054953, - 0.049022, - -0.080979, - 0.014699, - -0.038008, - -0.019707, - 0.046946, - 0.087044, - 0.0026656, - 0.032918, - 0.079459, - -0.044531, - 0.023192, - 0.070531, - 0.12286, - -0.035509, - -0.000085687, - -0.004703, - 0.011418, - 0.042186, - 0.015183, - -0.047495, - -0.10524, - -0.0070206, - -0.086523, - 0.037076, - 0.069059, - 0.010908, - 0.054187, - 0.0030942, - 0.018922, - -0.037621, - -0.10312, - -0.01757, - 0.038063, - 0.032531, - -0.021424, - 0.0071493, - 0.0018694, - -0.065745, - -0.048549, - 0.0072695, - -0.025263, - -0.023791, - -0.0023655, - 0.067499, - 0.048611, - 0.076203, - 0.021446, - -0.0099089, - -0.011474, - 0.046947, - -0.0049315, - 0.07081, - 0.014182, - 0.10907, - 0.0081074, - 0.039946, - -0.0064334, - 0.084421, - -0.0060084, - 0.095246, - 0.02841, - 0.0029073, - -0.069412, - -0.023474, - -0.014032, - -0.04425, - -0.093719, - -0.0091507, - 0.023614, - -0.038881, - 0.037475, - -0.035903, - 0.074298, - -0.0027312, - 0.035275, - 0.0031199, - -0.0093048, - -0.027781, - 0.014634, - 0.0082326, - 0.020066, - -0.064535, - 0.00043484, - -0.025471, - 0.011187, - 0.02414, - -0.060291, - 0.035519, - 0.016279, - -0.029808, - -0.060713, - 0.012725, - -0.096471, - 0.078544, - -0.050045, - 0.08012, - 0.031529, - 0.023888, - -0.035111, - 0.0094116, - 0.07, - 0.042746, - -0.018531, - -0.032432, - -0.020418, - -0.0039428, - -0.023087, - -0.010396, - 0.051132, - -0.017953, - -0.0072658, - 0.013859, - 0.083412, - 0.12648, - 0.014288, - 0.015432, - -0.054043, - 0.014686, - 0.1073, - 0.02255, - -0.013732, - 0.060814, - 0.014671, - -0.016429, - 0.034172, - -0.00265, - 0.065159, - 0.020944, - 0.027944, - 0.030888, - -0.072073, - -0.022926, - 0.03016, - -0.080972, - -0.061804, - -0.021966, - -0.0056241, - 0.054138, - 0.017322, - -0.020576, - 0.18722, - 0.01427, - -0.0025699, - 0.052989, - 0.019745, - -0.0051883, - 0.018408, - 0.052624, - -0.067564, - 0.054295, - 0.015542, - -0.11294, - 0.002142, - -0.032931, - 0.03988, - -0.019404, - 0.02713, - -0.0036, - -0.074099, - 0.010248, - 0.034726, - 0.013431, - -0.010867, - -0.054196, - 0.10141, - 0.043393, - 0.037934, - 0.016511, - -0.084935, - -0.023987, - 0.077493, - -0.025494, - -0.017422, - -0.029712, - -0.021797, - -0.045859, - 0.18083, - 0.039037, - 0.0084969, - -0.0073903, - -0.033963, - 0.12813, - -0.014091, - -0.013661, - -0.025517, - -0.063037, - -0.022263, - -0.0088428, - -0.0060791, - -0.14834, - -0.054213, - 0.072675, - -0.057359, - 0.043884, - 0.020999, - 0.011628, - 0.038297, - 0.050134, - 0.016948, - 0.11524, - -0.022881, - -0.016842, - -0.0012482, - 0.053251, - 0.045835, - -0.012021, - 0.0061145, - -0.016004, - -0.049936, - -0.0055697, - -0.0097366, - -0.051241, - 0.042204, - 0.0054844, - -0.0026912, - 0.030141, - 0.06419, - 0.021645, - -0.061176, - -0.0042781, - -0.055355, - -0.087166, - -0.029172, - -0.022041, - 0.050181, - 0.047321, - 0.047083, - -0.0076269, - -0.0025387, - 0.015966, - 0.015365, - -0.0095985, - 0.058754, - -0.16527, - 0.014995, - -0.045742, - 0.026819, - -0.00075212, - -0.03742, - -0.0064111, - 0.04744, - -0.030311, - -0.040257, - -0.046199, - 0.036128, - 0.016834, - 0.043611, - 0.054899, - -0.029254, - -0.020756, - -0.0060574, - -0.017125, - -0.034148, - 0.064513, - -0.01006, - 0.05597, - 0.06942, - 0.063719, - 0.071069, - -0.01609, - 0.06163, - -0.085947, - -0.034385, - 0.10079, - -0.10078, - -0.0023605, - 0.030811, - -0.027358, - 0.026769, - 0.2165, - 0.011763, - -0.032958, - -0.038229, - 0.038078, - 0.018436, - 0.0096402, - 0.011354, - -0.0064858, - -0.0096193, - -0.0053984, - 0.073849, - -0.021881, - 0.025231, - -0.016481, - 0.03387, - 0.030994, - 0.04916, - 0.017948, - -0.0070603 - ], - "device": [ - -0.14052, - -0.025155, - -0.0011538, - 0.090441, - -0.066058, - -0.074018, - -0.0088655, - -0.10363, - 0.0042973, - -0.0068675, - -0.05533, - -0.018619, - -0.025526, - 0.039781, - -0.026705, - -0.027501, - 0.13734, - 0.01243, - 0.074847, - 0.020627, - 0.082023, - -0.020784, - 0.028224, - 0.043728, - 0.038085, - -0.020606, - -0.014484, - -0.0048582, - 0.018574, - -0.0026662, - -0.023815, - -0.075862, - 0.031576, - -0.052918, - 0.026132, - -0.010047, - 0.015603, - -0.0092282, - 0.0094371, - -0.047175, - -0.0088199, - -0.16936, - 0.040403, - 0.011527, - -0.040503, - -0.028302, - -0.02857, - 0.0031929, - -0.019685, - 0.001751, - 0.010961, - 0.05214, - -0.054246, - -0.029063, - -0.062545, - 0.081732, - 0.031613, - 0.064994, - -0.035355, - 0.0072734, - -0.016352, - -0.059896, - 0.15537, - 0.0040045, - 0.05878, - 0.021417, - 0.076132, - 0.023391, - -0.031413, - -0.0007285, - -0.032026, - 0.010494, - -0.032463, - -0.0045724, - -0.062503, - 0.071608, - -0.023085, - -0.045991, - -0.021317, - -0.083831, - -0.0066582, - -0.014059, - -0.061066, - 0.032184, - -0.016689, - -0.030305, - 0.0016098, - -0.011244, - -0.031535, - -0.097156, - 0.049241, - 0.013147, - -0.084074, - -0.002029, - 0.0078937, - 0.070328, - -0.041295, - -0.12358, - 0.059641, - 0.083061, - 0.029319, - 0.031435, - 0.058724, - -0.0023262, - -0.046548, - -0.1086, - 0.017875, - 0.086962, - 0.011091, - -0.0075514, - -0.00018128, - 0.079004, - 0.099584, - -0.0096029, - 0.019357, - 0.08551, - -0.041227, - -0.036276, - -0.056633, - 0.0036107, - 0.038784, - -0.0062317, - -0.062419, - 0.017886, - 0.12717, - 0.0058499, - 0.0088534, - -0.1252, - -0.0041025, - 0.064485, - -0.0077539, - -0.036099, - -0.03514, - -0.087613, - 0.067739, - -0.030691, - -0.0064644, - 0.031579, - 0.018189, - -0.013971, - 0.019866, - 0.041444, - 0.027322, - -0.03303, - -0.041517, - -0.0072607, - -0.054653, - 0.0062458, - 0.079544, - 0.075319, - 0.035164, - 0.060703, - -0.0011906, - -0.1245, - -0.026982, - 0.037827, - -0.044792, - -0.015728, - 0.022837, - 0.011224, - 0.062863, - 0.012673, - -0.071009, - -0.00484, - 0.076247, - 0.0076184, - 0.030601, - 0.053142, - 0.0068875, - -0.038239, - 0.0018834, - 0.098354, - -0.070415, - -0.010107, - -0.039262, - 0.054262, - -0.053922, - -0.055393, - -0.062564, - -0.010713, - -0.019799, - -0.01456, - -0.018453, - -0.026492, - -0.063988, - -0.045601, - -0.052663, - 0.093576, - 0.078045, - -0.0099398, - -0.0015054, - 0.055899, - -0.0063267, - 0.021882, - -0.00063765, - 0.039833, - -0.032747, - 0.05852, - -0.00085517, - 0.080631, - -0.17181, - 0.079132, - 0.016685, - 0.054006, - 0.042929, - -0.012421, - -0.03548, - 0.040764, - -0.12972, - -0.053418, - 0.09046, - 0.0104, - 0.031797, - 0.10636, - -0.0064182, - 0.018403, - -0.026243, - -0.022762, - -0.015277, - -0.0032081, - -0.004731, - -0.02499, - 0.030758, - 0.11686, - 0.0052161, - -0.08557, - 0.020057, - 0.034089, - -0.0063303, - 0.038694, - -0.032748, - -0.087281, - -0.054827, - -0.083224, - 0.0030391, - 0.0098988, - 0.10064, - -0.036016, - 0.0062745, - -0.063839, - 0.044562, - 0.016691, - 0.010632, - 0.0062445, - 0.010853, - 0.0011595, - -0.0025061, - 0.062579, - 0.014137, - 0.035666, - -0.01395, - 0.029628, - -0.077937, - -0.000062744, - 0.0058575, - -0.031462, - 0.031665, - 0.052202, - -0.042618, - -0.033773, - -0.000446, - 0.049197, - -0.019557, - -0.019408, - 0.0095354, - -0.062372, - 0.014622, - 0.0049367, - -0.020895, - 0.050521, - -0.026449, - 0.10228, - -0.12464, - -0.041257, - 0.022999, - -0.0083992, - 0.0213, - -0.017991, - 0.052681, - 0.0044444, - 0.064543, - -0.065759, - -0.038395, - 0.04818, - -0.034651, - -0.026736, - -0.06394, - 0.012368, - 0.088657, - 0.050226, - -0.02467, - 0.0049715, - -0.023275, - -0.051293, - -0.0087288, - -0.016303, - 0.0088283, - -0.05095, - 0.0299, - 0.033399 - ], - "Wi-Fi": [ - -0.034303, - 0.0057238, - -0.017732, - 0.0051391, - -0.098538, - -0.025105, - 0.1544, - -0.079616, - 0.088416, - 0.10428, - -0.076272, - -0.030627, - -0.16773, - -0.068264, - -0.034227, - 0.090845, - 0.076926, - -0.012783, - 0.08197, - -0.21637, - 0.052535, - 0.0090386, - 0.10929, - 0.015327, - 0.0029816, - -0.034129, - 0.10703, - -0.094888, - 0.065364, - -0.03304, - -0.0030994, - 0.015449, - -0.00982, - -0.029227, - 0.12384, - -0.024261, - 0.062093, - 0.1284, - 0.019038, - -0.10112, - -0.016752, - -0.072371, - 0.019734, - 0.15113, - 0.052458, - -0.071368, - -0.054653, - 0.026787, - -0.046562, - 0.05841, - 0.046442, - 0.010119, - 0.021901, - -0.098172, - -0.075369, - 0.097629, - -0.025135, - 0.017234, - -0.041894, - 0.026981, - -0.00057509, - -0.14478, - 0.068935, - -0.0018691, - -0.03016, - 0.0060111, - 0.045021, - -0.046551, - -0.15994, - 0.052481, - 0.065259, - 0.060051, - -0.044102, - -0.0024469, - -0.054754, - -0.014957, - 0.022906, - -0.096599, - 0.0028539, - -0.026435, - -0.025551, - -0.024859, - 0.018775, - 0.020971, - 0.030158, - 0.05523, - -0.051582, - -0.085215, - -0.030391, - 0.031011, - 0.0042463, - 0.016197, - -0.078744, - 0.0049046, - -0.021521, - 0.10437, - 0.055235, - -0.054404, - -0.11654, - 0.056431, - -0.0089037, - 0.21039, - 0.072402, - -0.095882, - -0.033523, - -0.14478, - 0.0039064, - 0.0077196, - 0.05964, - 0.0047576, - -0.0032157, - 0.035809, - 0.078625, - 0.10282, - 0.084143, - 0.0128, - -0.048465, - 0.080264, - -0.0024609, - 0.12074, - 0.037017, - 0.036646, - 0.023001, - -0.0042381, - 0.046107, - 0.086152, - 0.012619, - -0.039879, - 0.047301, - 0.11387, - 0.035747, - -0.035433, - -0.12271, - -0.094511, - 0.018406, - -0.015983, - 0.070797, - -0.011178, - -0.05352, - -0.050833, - 0.14183, - 0.040155, - 0.029801, - -0.075146, - -0.06375, - 0.0028023, - 0.020667, - -0.070179, - 0.01355, - -0.061594, - 0.057473, - 0.098184, - -0.023915, - -0.014364, - 0.077135, - 0.063304, - 0.061711, - 0.031395, - -0.055453, - 0.018844, - 0.028618, - -0.08819, - -0.111, - -0.030184, - 0.033309, - -0.089512, - 0.082245, - 0.088647, - 0.10764, - 0.10723, - -0.063541, - 0.16812, - 0.013432, - 0.04361, - 0.014661, - 0.042432, - -0.024367, - 0.052291, - -0.049213, - -0.075033, - 0.060491, - -0.053746, - 0.041245, - -0.0033046, - 0.015966, - -0.004106, - 0.0026101, - 0.13788, - -0.054868, - 0.026812, - 0.079077, - 0.034277, - 0.028827, - -0.018848, - 0.038943, - -0.021117, - -0.019659, - 0.022894, - 0.091201, - -0.099679, - -0.10834, - 0.14522, - -0.028841, - 0.049167, - -0.0025561, - 0.048849, - -0.020202, - -0.0054945, - -0.19219, - -0.0069152, - 0.16956, - 0.0081479, - 0.02379, - 0.014688, - 0.059969, - 0.044299, - 0.0093379, - -0.028535, - 0.023822, - -0.021352, - 0.092302, - 0.012686, - 0.078499, - 0.10297, - 0.047618, - -0.037248, - 0.067628, - -0.021837, - -0.02526, - -0.030412, - -0.11784, - -0.065068, - -0.10529, - -0.027155, - 0.021075, - 0.073965, - 0.075406, - 0.04615, - 0.085329, - -0.026663, - 0.03248, - -0.074799, - 0.18947, - -0.11308, - 0.030692, - 0.08195, - 0.055341, - 0.005123, - 0.015548, - -0.10536, - 0.0011474, - -0.096458, - -0.23869, - -0.073216, - 0.022649, - 0.085335, - -0.005509, - -0.048915, - -0.031176, - 0.086568, - -0.013722, - 0.16657, - -0.03262, - -0.025641, - -0.011132, - 0.087134, - 0.04257, - -0.0045816, - 0.041924, - 0.12315, - -0.10366, - 0.069874, - -0.088404, - 0.049791, - -0.1058, - -0.047042, - -0.039909, - 0.062933, - 0.031549, - 0.019665, - 0.17134, - -0.09579, - -0.04377, - 0.1426, - 0.037602, - -0.13612, - -0.13617, - 0.083272, - 0.11035, - -0.027116, - 0.073712, - -0.061157, - -0.13271, - -0.068672, - 0.058874, - 0.034986, - -0.034017, - 0.041345, - 0.080769, - 0.068365 - ], - "gallery": [ - -0.031267, - -0.059817, - 0.10088, - -0.04895, - -0.015341, - 0.019114, - 0.0088849, - -0.093362, - -0.039107, - -0.017769, - -0.0028505, - -0.10978, - 0.024518, - -0.06571, - -0.020117, - -0.019933, - 0.11784, - 0.053657, - 0.025693, - -0.077987, - -0.044619, - -0.013296, - -0.062634, - 0.079456, - -0.0083411, - 0.0022091, - -0.019579, - 0.046161, - -0.017593, - 0.050847, - -0.025426, - -0.0016341, - 0.034301, - -0.042683, - 0.017307, - 0.010268, - 0.011713, - 0.0052722, - -0.019912, - -0.035162, - -0.053971, - -0.13667, - 0.028864, - 0.034426, - -0.0032169, - 0.027046, - 0.046279, - 0.04001, - -0.042446, - -0.02339, - 0.012617, - -0.067895, - -0.027836, - 0.015022, - -0.046812, - -0.071278, - 0.0095035, - 0.010988, - -0.056086, - -0.010729, - -0.042049, - -0.018069, - 0.10151, - -0.0139, - 0.028119, - 0.037917, - -0.068379, - -0.045236, - 0.032599, - 0.065882, - 0.10025, - 0.041294, - -0.0086996, - 0.0028817, - 0.015265, - 0.028692, - -0.040147, - -0.033674, - 0.086686, - 0.08169, - -0.0056786, - -0.010645, - -0.032704, - 0.025545, - -0.038888, - -0.11424, - -0.059681, - -0.042951, - -0.01401, - 0.04606, - -0.014908, - 0.037834, - -0.084476, - 0.0014877, - 0.029746, - 0.10766, - -0.021326, - 0.13332, - 0.025811, - -0.033476, - 0.0944, - 0.063949, - 0.036768, - 0.062182, - 0.030388, - -0.094729, - -0.046352, - -0.02063, - -0.020845, - 0.058073, - -0.022876, - 0.074509, - 0.062691, - 0.00077719, - 0.053971, - -0.067542, - 0.005439, - -0.033697, - -0.059621, - 0.030017, - -0.035746, - 0.00097238, - -0.0040113, - 0.032149, - 0.040685, - 0.0012496, - -0.023939, - -0.071565, - 0.083097, - 0.067818, - -0.029664, - -0.010688, - -0.05719, - 0.059438, - 0.033573, - -0.011221, - -0.10032, - 0.047009, - -0.055011, - -0.039237, - -0.014685, - 0.01583, - -0.071887, - -0.042002, - 0.014617, - -0.047292, - -0.060807, - 0.032674, - 0.029938, - -0.067164, - -0.017824, - 0.046647, - 0.01468, - -0.063321, - -0.047382, - 0.006309, - -0.033817, - 0.063113, - -0.01371, - 0.041066, - -0.019907, - 0.040857, - -0.032312, - 0.054104, - -0.11126, - 0.0074099, - 0.025801, - -0.021931, - -0.043656, - 0.08203, - -0.0041976, - 0.046594, - 0.024574, - 0.0049644, - 0.02706, - 0.040646, - -0.018842, - -0.015677, - -0.013797, - 0.0039173, - 0.060729, - -0.0095916, - -0.014828, - -0.030011, - -0.055457, - 0.060639, - 0.02294, - 0.065893, - 0.064776, - 0.0050855, - 0.046049, - 0.072859, - -0.0094732, - 0.012162, - -0.054894, - -0.0090696, - 0.033853, - -0.011905, - 0.016577, - 0.046321, - -0.14115, - 0.069907, - 0.0031391, - -0.018851, - 0.03491, - 0.010711, - -0.051464, - 0.001887, - 0.019147, - -0.052029, - 0.11519, - -0.035075, - 0.013428, - 0.0022613, - -0.039573, - 0.013078, - 0.068702, - 0.086146, - 0.10121, - -0.0094672, - 0.043894, - -0.060871, - 0.013259, - 0.082467, - -0.0084121, - 0.062108, - 0.10225, - 0.043165, - 0.047259, - -0.029774, - -0.067828, - -0.06804, - 0.0203, - 0.00084608, - -0.0030695, - 0.039347, - 0.036959, - -0.01315, - -0.011174, - -0.038883, - 0.075328, - -0.048362, - 0.0020343, - 0.00077943, - -0.00092437, - 0.03688, - -0.055179, - 0.049939, - -0.064077, - -0.027419, - -0.013211, - -0.058622, - 0.0070848, - -0.0028014, - -0.0014814, - -0.029851, - -0.056868, - 0.014972, - 0.025668, - 0.02649, - 0.070508, - 0.011739, - 0.047773, - -0.045308, - -0.0080462, - -0.0051988, - 0.067238, - -0.0033954, - 0.017249, - -0.027411, - 0.0092172, - 0.10102, - -0.12285, - -0.0048323, - -0.017328, - -0.0054541, - 0.032315, - 0.090663, - 0.0025516, - -0.066582, - 0.058388, - 0.023989, - 0.073321, - 0.0038974, - -0.040067, - -0.055172, - -0.041123, - -0.013765, - 0.029094, - 0.034504, - -0.077609, - 0.089775, - 0.021534, - -0.0059398, - -0.048704, - -0.046086, - -0.062045, - 0.014614, - 0.014108, - 0.077595 - ], - "achievement": [ - -0.011365, - -0.030727, - -0.0044007, - 0.0010063, - -0.032215, - -0.047638, - -0.026199, - -0.07614, - 0.048369, - -0.00018641, - 0.027044, - -0.0064379, - 0.052461, - 0.048884, - 0.044313, - 0.048494, - 0.016535, - 0.030203, - 0.019458, - 0.031766, - -0.025001, - 0.027902, - -0.011975, - 0.045724, - -0.075268, - -0.022126, - -0.029978, - -0.004814, - 0.037161, - -0.02323, - 0.022224, - -0.012275, - -0.0080037, - -0.071998, - -0.03788, - 0.03419, - -0.0068523, - -0.018983, - -0.0093882, - -0.019348, - 0.027861, - -0.058587, - -0.0020149, - 0.035205, - 0.028584, - -0.0068343, - -0.015318, - -0.016172, - -0.010528, - 0.054046, - 0.02375, - 0.019058, - -0.062696, - -0.022409, - -0.029612, - 0.0093915, - -0.00017513, - -0.0089283, - -0.041697, - 0.00045938, - 0.014655, - -0.0067464, - 0.064568, - -0.018747, - 0.088413, - -0.042859, - -0.0055447, - -0.0032052, - 0.036764, - 0.010711, - 0.0030203, - -0.0051009, - 0.0014879, - 0.011566, - 0.010463, - 0.012871, - -0.031129, - -0.011129, - 0.03752, - 0.075065, - 0.0074673, - 0.014102, - -0.01235, - 0.054153, - 0.021585, - 0.006487, - -0.022944, - 0.0099204, - -0.036482, - -0.0098041, - -0.0075358, - -0.010709, - -0.069832, - -0.013619, - 0.0092798, - 0.016712, - -0.032185, - -0.026403, - 0.054223, - 0.033059, - 0.0080464, - -0.043186, - 0.039716, - 0.020027, - -0.022771, - -0.035799, - 0.020639, - 0.02772, - -0.0047876, - 0.024425, - 0.031914, - 0.035521, - 0.034447, - -0.01729, - 0.000018935, - -0.014302, - 0.0012155, - -0.011316, - -0.038808, - -0.0079615, - 0.0052197, - -0.022608, - -0.010393, - 0.021271, - 0.073095, - 0.00038397, - 0.016197, - -0.11659, - 0.026256, - 0.072178, - -0.00018377, - -0.059733, - 0.0087753, - -0.0093143, - -0.0095348, - -0.045185, - 0.05046, - 0.028767, - -0.018381, - 0.019148, - 0.0062722, - -0.03246, - 0.02591, - -0.043615, - -0.039132, - -0.0019589, - -0.02058, - -0.033567, - 0.019214, - 0.05941, - 0.052958, - 0.030139, - 0.020899, - -0.095966, - -0.010153, - -0.015864, - 0.095771, - 0.027381, - 0.018975, - -0.020276, - 0.037286, - -0.0057782, - -0.070913, - -0.063645, - -0.0052953, - 0.014223, - 0.0079754, - -0.0068776, - 0.012764, - -0.013259, - 0.058077, - 0.019336, - -0.01887, - 0.04681, - 0.0030122, - 0.033606, - -0.02291, - 0.0016088, - -0.035733, - 0.019913, - -0.047744, - -0.02894, - 0.024029, - -0.071435, - -0.028753, - -0.091955, - -0.035423, - 0.062115, - 0.031748, - 0.039755, - 0.0058103, - 0.051171, - -0.012561, - -0.042864, - -0.016156, - 0.0017109, - -0.011758, - -0.023857, - 0.0028927, - -0.016832, - -0.10411, - 0.073334, - 0.0053868, - -0.047886, - -0.046585, - 0.028653, - 0.025576, - -0.003737, - 0.027358, - -0.0084266, - 0.057055, - -0.016045, - -0.033098, - 0.018379, - 0.04305, - -0.012231, - -0.034746, - 0.0010686, - -0.02735, - -0.032508, - -0.026805, - 0.010724, - 0.042407, - 0.069757, - 0.02406, - 0.0054397, - 0.027189, - 0.083217, - 0.030337, - -0.031639, - 0.021032, - -0.063757, - -0.041579, - 0.02971, - 0.073391, - 0.025085, - 0.021736, - -0.036232, - -0.053297, - 0.065158, - 0.039882, - -0.0060797, - 0.029511, - -0.022893, - -0.066678, - 0.036933, - -0.030415, - -0.078274, - 0.022778, - -0.019436, - 0.017381, - -0.0033622, - 0.024331, - -0.0041703, - 0.024517, - 0.015144, - -0.039008, - 0.064125, - 0.054621, - -0.013671, - -0.031779, - -0.038167, - 0.02521, - -0.014018, - 0.010004, - 0.014939, - -0.0018568, - -0.013062, - 0.022374, - 0.011849, - 0.031079, - 0.05277, - -0.094325, - -0.046343, - 0.045383, - -0.054044, - 0.027488, - -0.010097, - 0.020768, - 0.014247, - 0.050843, - 0.026037, - -0.01713, - -0.01516, - 0.028137, - 0.0054994, - -0.045317, - 0.028093, - -0.013049, - -0.021879, - 0.013357, - -0.02007, - 0.0059889, - -0.03146, - -0.019437, - 0.041047, - 0.022929, - -0.015641, - -0.0096491, - 0.036945 - ], - "constitution": [ - 0.018207, - 0.032835, - 0.025961, - -0.025685, - 0.014773, - -0.032408, - 0.019496, - -0.069781, - -0.017431, - 0.026897, - 0.00061346, - -0.062415, - 0.039724, - 0.03962, - 0.020031, - 0.060427, - 0.094889, - -0.0049513, - 0.019451, - 0.0053957, - -0.014659, - -0.03077, - 0.0271, - 0.041829, - 0.017304, - -0.013608, - 0.010318, - -0.022428, - 0.0021571, - -0.002319, - 0.033446, - -0.0036496, - -0.024105, - -0.052615, - 0.0090339, - 0.0081745, - 0.021277, - -0.028931, - -0.04523, - 0.056259, - -0.0046846, - -0.081786, - -0.0089916, - -0.013544, - -0.005442, - 0.017986, - -0.042431, - -0.015953, - -0.0004454, - 0.00089689, - -0.013979, - 0.0088424, - 0.031462, - 0.033528, - -0.044903, - 0.014884, - 0.019526, - -0.079011, - -0.035025, - 0.028577, - 0.0016096, - 0.03183, - 0.07285, - 0.011991, - 0.029509, - -0.01568, - -0.018287, - 0.009985, - 0.029317, - -0.013291, - -0.0073006, - -0.034494, - -0.031255, - -0.026038, - -0.018943, - -0.012082, - -0.023497, - -0.0054086, - -0.071947, - 0.023915, - 0.023568, - 0.003496, - 0.00021825, - 0.064757, - -0.0039788, - 0.01612, - -0.010853, - -0.031206, - 0.011193, - 0.054078, - -0.00057607, - 0.013982, - -0.057869, - -0.013929, - -0.020264, - 0.017876, - 0.025018, - -0.0032091, - 0.069958, - 0.001294, - 0.057173, - 0.036225, - 0.014575, - -0.020219, - -0.050077, - -0.036277, - 0.027778, - -0.0026259, - -0.052654, - -0.014224, - 0.016493, - 0.028069, - 0.051456, - 0.0054186, - 0.034742, - 0.073966, - 0.039672, - -0.019614, - -0.028176, - 0.082296, - 0.026039, - 0.00096402, - 0.026413, - 0.003602, - 0.025472, - 0.0569, - 0.0082334, - -0.055225, - -0.0073133, - 0.070416, - -0.0069747, - -0.0027193, - 0.031478, - 0.022983, - -0.015083, - 0.0046517, - 0.020419, - 0.0069603, - 0.05225, - 0.025433, - 0.065116, - -0.049201, - -0.023337, - 0.031266, - -0.0064198, - 0.017128, - 0.015796, - 0.018105, - -0.0074946, - -0.0035704, - 0.017254, - 0.011607, - 0.046072, - -0.0070868, - 0.02305, - 0.032504, - -0.0055162, - -0.034478, - 0.0016586, - -0.0070448, - 0.043633, - 0.024195, - -0.050108, - 0.035264, - -0.010105, - -0.05857, - 0.016894, - 0.0040181, - -0.011367, - -0.0062849, - -0.011503, - -0.026666, - -0.028245, - -0.025966, - -0.032579, - 0.019938, - 0.010113, - 0.035047, - -0.022201, - -0.036229, - -0.011212, - 0.053455, - 0.014488, - 0.0051558, - 0.035266, - 0.004787, - 0.013869, - 0.064771, - 0.04852, - -0.015924, - 0.012091, - 0.055437, - -0.014111, - -0.044813, - -0.0026963, - -0.020424, - 0.03525, - -0.020892, - -0.011677, - 0.0021982, - -0.12862, - 0.0065206, - 0.012534, - -0.019989, - -0.009053, - -0.029755, - 0.055254, - -0.0011213, - -0.021111, - -0.010492, - 0.069528, - 0.0096961, - 0.004757, - 0.024655, - -0.017814, - -0.011557, - 0.026656, - 0.016315, - -0.0050102, - -0.020522, - 0.017169, - -0.0088847, - 0.024174, - 0.072545, - -0.022791, - 0.030232, - 0.028484, - 0.011719, - -0.0059928, - -0.037605, - -0.010622, - -0.041642, - -0.053177, - 0.01261, - -0.0036307, - -0.058723, - -0.0013322, - -0.0016461, - -0.0069198, - 0.014895, - 0.033711, - -0.028012, - 0.017922, - 0.020318, - -0.016186, - -0.00084905, - -0.013693, - -0.025574, - -0.036848, - -0.024382, - 0.035039, - -0.0044563, - -0.0014417, - -0.023762, - -0.00084802, - 0.039182, - -0.0038653, - 0.00082939, - -0.0040543, - -0.010372, - -0.0076844, - -0.016296, - -0.0052146, - -0.031057, - 0.03876, - -0.0076307, - -0.037429, - 0.023868, - -0.020654, - 0.03577, - 0.047904, - 0.046477, - -0.075108, - 0.00084734, - -0.00098818, - -0.0011709, - -0.00012768, - 0.016461, - 0.0022264, - -0.0000098556, - 0.048164, - -0.028954, - 0.0083937, - -0.025895, - -0.014725, - 0.031428, - -0.044132, - -0.0034545, - 0.015518, - 0.093603, - -0.00060758, - 0.014553, - 0.055138, - -0.016306, - 0.0028062, - 0.027413, - -0.043861, - -0.040488, - -0.051664, - 0.018332 - ], - "realtor": [ - 0.12019, - -0.019924, - 0.0011069, - 0.069462, - 0.0072785, - -0.035973, - -0.023394, - -0.10605, - 0.058229, - 0.038343, - -0.043673, - 0.014472, - -0.035338, - 0.017752, - -0.032884, - -0.01488, - 0.062277, - 0.016468, - -0.021968, - -0.012747, - 0.023251, - -0.020942, - -0.027147, - 0.044121, - 0.019515, - -0.050724, - 0.026742, - 0.12561, - 0.12524, - 0.067459, - -0.088975, - -0.010875, - -0.042925, - -0.0097092, - -0.019584, - 0.040382, - 0.029081, - -0.021102, - -0.062593, - 0.023739, - 0.028091, - -0.10124, - 0.031695, - -0.037605, - -0.034158, - 0.05638, - -0.045238, - 0.0085269, - -0.0027238, - 0.010102, - -0.029778, - -0.028615, - -0.042073, - -0.036539, - 0.068829, - -0.030778, - -0.038801, - 0.063789, - -0.048032, - -0.10866, - -0.0079918, - 0.010613, - 0.13618, - -0.036622, - 0.0006718, - -0.0044787, - -0.026879, - -0.025382, - -0.056091, - -0.14331, - 0.022883, - 0.00044164, - 0.11389, - -0.075632, - 0.0097247, - -0.026145, - -0.090367, - -0.013069, - -0.070201, - 0.0026428, - 0.075692, - 0.067043, - -0.059686, - 0.024068, - -0.11617, - -0.032148, - -0.011882, - 0.04811, - -0.0071319, - -0.017161, - 0.022061, - 0.043255, - -0.14171, - -0.10389, - -0.0017041, - 0.19002, - 0.013507, - -0.017637, - 0.048626, - -0.058489, - 0.00051858, - 0.095378, - -0.077208, - -0.035303, - -0.04239, - -0.13054, - 0.077056, - 0.035636, - 0.064148, - 0.030002, - -0.031508, - 0.10905, - 0.0077391, - 0.015416, - 0.031039, - -0.050077, - -0.04738, - -0.12224, - -0.023236, - -0.062509, - -0.086861, - -0.016373, - 0.058491, - 0.012996, - 0.090002, - -0.032977, - 0.062765, - -0.036789, - -0.019559, - 0.073392, - 0.064753, - -0.010925, - 0.050595, - -0.0535, - -0.033209, - 0.033579, - 0.032546, - 0.11621, - -0.067648, - -0.05755, - 0.02983, - 0.041703, - -0.013548, - -0.020751, - -0.050531, - -0.048975, - -0.042239, - -0.035007, - 0.0066521, - -0.030445, - 0.04647, - 0.056155, - -0.0094551, - -0.09814, - -0.035682, - -0.085957, - 0.069445, - -0.030764, - 0.0087247, - 0.066337, - 0.051992, - 0.014472, - -0.0053568, - -0.025975, - 0.021791, - -0.063195, - -0.032052, - -0.03139, - -0.01102, - 0.086669, - -0.057149, - -0.072569, - 0.012857, - -0.035583, - -0.059453, - 0.04501, - 0.011873, - -0.025371, - 0.020509, - 0.055898, - 0.0020177, - -0.05734, - 0.024976, - -0.072003, - 0.02596, - 0.012653, - 0.0055869, - 0.064508, - -0.010641, - -0.047018, - -0.052178, - 0.16946, - 0.018367, - 0.090911, - 0.093723, - 0.013612, - 0.10805, - 0.086026, - 0.033817, - 0.071663, - -0.11594, - 0.011184, - 0.037105, - -0.060181, - 0.1265, - -0.029369, - -0.004344, - -0.053732, - -0.053957, - -0.028608, - 0.12571, - 0.055309, - 0.024456, - -0.051982, - -0.1446, - -0.014976, - 0.021613, - -0.015849, - 0.052376, - -0.0051673, - 0.0017921, - -0.055907, - -0.06548, - 0.12846, - 0.02578, - -0.051639, - 0.060325, - 0.12213, - -0.056307, - 0.003028, - 0.012691, - -0.050611, - 0.001831, - -0.0026354, - -0.06238, - -0.033676, - 0.024618, - 0.0090043, - -0.028412, - -0.0046477, - 0.088704, - -0.088628, - 0.072692, - -0.039695, - -0.030823, - -0.005117, - -0.072207, - 0.036038, - 0.019202, - 0.015754, - 0.030169, - -0.12359, - 0.045131, - 0.0009532, - 0.079857, - -0.046576, - -0.029865, - 0.027701, - 0.00057983, - -0.02452, - 0.051845, - 0.073199, - -0.059046, - 0.10389, - -0.0053619, - 0.024509, - 0.047991, - 0.0042518, - 0.012206, - -0.0025998, - -0.12087, - 0.076571, - -0.09017, - -0.01319, - 0.033222, - -0.025394, - 0.02048, - 0.051871, - 0.052412, - -0.017386, - -0.017944, - 0.043046, - -0.0042506, - 0.046739, - -0.037674, - -0.013362, - -0.032936, - -0.16054, - -0.1414, - -0.040431, - -0.021383, - -0.065464, - 0.078786, - 0.055208, - -0.054951, - 0.031227, - -0.04887, - 0.041789, - -0.05933, - -0.038504 - ], - "cellphone": [ - -0.061006, - -0.0040258, - -0.016088, - 0.028335, - -0.0017699, - -0.030202, - 0.040169, - -0.058121, - 0.07901, - 0.077275, - -0.019472, - -0.025522, - -0.050207, - -0.010617, - -0.0413, - -0.050233, - 0.075323, - 0.020059, - 0.0083273, - 0.013656, - 0.039221, - -0.069741, - 0.015695, - 0.036534, - 0.027538, - -0.031446, - 0.089617, - 0.066511, - 0.0093088, - -0.054983, - -0.017482, - 0.043204, - 0.038117, - -0.013565, - 0.034383, - -0.027144, - 0.026828, - 0.041332, - -0.0014002, - -0.047386, - -0.062421, - -0.109, - -0.0055448, - 0.032664, - 0.1047, - -0.012462, - 0.012098, - -0.039084, - -0.0045973, - -0.023513, - 0.040143, - -0.041639, - -0.01283, - -0.013356, - -0.039055, - 0.053038, - -0.022775, - 0.0044972, - -0.0081586, - 0.037319, - -0.033708, - -0.012255, - 0.10941, - 0.044915, - 0.0024946, - 0.0077458, - 0.043966, - 0.02026, - -0.046185, - -0.015099, - -0.019799, - -0.015415, - 0.026383, - -0.024224, - -0.04639, - 0.020612, - 0.057495, - -0.03322, - 0.0093258, - -0.03245, - -0.015991, - -0.05594, - -0.044662, - 0.013238, - -0.037905, - -0.068898, - -0.044785, - -0.0012607, - -0.037818, - 0.056947, - 0.0097666, - 0.025939, - -0.084628, - 0.0025953, - 0.0045589, - 0.060453, - 0.0034586, - -0.1157, - 0.017763, - -0.015523, - 0.031055, - 0.02745, - -0.011526, - -0.03582, - 0.014233, - -0.078545, - -0.0037744, - 0.027715, - 0.081207, - 0.0026889, - 0.044389, - 0.042113, - 0.060497, - 0.035539, - -0.067842, - -0.010154, - -0.049913, - 0.017142, - -0.053456, - -0.0071183, - -0.020893, - 0.074621, - 0.024158, - -0.013034, - 0.043367, - 0.011497, - 0.01132, - -0.0651, - 0.049357, - 0.061729, - -0.0042306, - -0.035002, - -0.051674, - 0.01071, - 0.062011, - -0.029851, - 0.059828, - 0.019032, - -0.022642, - 0.039396, - 0.092347, - 0.04088, - 0.049887, - 0.021952, - -0.019251, - 0.015286, - -0.02769, - 0.044708, - 0.054687, - -0.096666, - -0.017747, - 0.056327, - -0.018969, - -0.027861, - -0.0061079, - 0.028835, - -0.034209, - -0.022214, - -0.0025132, - 0.023972, - 0.042711, - 0.0024573, - -0.018084, - 0.004373, - -0.023802, - -0.049985, - 0.0073962, - -0.019495, - 0.019766, - 0.0535, - -0.032826, - 0.10424, - 0.010362, - 0.0853, - -0.058103, - 0.048369, - -0.0048505, - 0.0054422, - -0.031646, - -0.009642, - 0.072207, - -0.018684, - 0.011924, - -0.0075471, - -0.040468, - -0.049293, - -0.054217, - 0.0946, - 0.086931, - 0.0044444, - 0.0041381, - 0.032678, - 0.041233, - 0.052457, - 0.04296, - -0.014173, - 0.010207, - 0.034828, - 0.040892, - 0.027653, - -0.10324, - 0.072378, - -0.030101, - 0.031406, - 0.026259, - 0.076424, - 0.013974, - 0.019199, - -0.073993, - -0.045347, - 0.12385, - 0.013671, - 0.018086, - 0.035761, - -0.0055422, - -0.028943, - -0.044073, - -0.0090584, - 0.011665, - -0.0039657, - 0.015823, - -0.044002, - -0.0072505, - 0.076632, - 0.036865, - -0.03427, - 0.0026025, - 0.03627, - -0.03817, - -0.048293, - 0.0062611, - -0.062336, - -0.045288, - -0.0026723, - 0.044215, - 0.04365, - 0.050391, - 0.044945, - 0.057032, - -0.045137, - 0.017314, - -0.045847, - 0.041024, - -0.028197, - -0.023629, - -0.035953, - 0.035637, - 0.0069987, - -0.016571, - -0.0068617, - -0.017692, - -0.033317, - -0.11824, - 0.013715, - 0.037926, - -0.034847, - -0.037536, - -0.002127, - -0.052552, - 0.027457, - -0.017434, - 0.0098716, - -0.014152, - -0.0094728, - 0.013795, - 0.0070989, - -0.033953, - -0.0004649, - 0.06174, - 0.05109, - -0.080239, - 0.07294, - -0.11007, - -0.012641, - -0.023322, - -0.012899, - -0.065753, - 0.02476, - 0.063968, - 0.021891, - 0.081132, - -0.045005, - -0.06027, - 0.0078042, - -0.019696, - -0.036575, - -0.14588, - 0.017357, - 0.028805, - -0.014933, - 0.041933, - -0.02113, - -0.080038, - 0.022467, - 0.048454, - 0.010406, - -0.0069709, - 0.00081307, - 0.071827, - -0.026931 - ], - "technology-related": [ - -0.047984, - -0.04839, - -0.0097916, - -0.015142, - 0.0087263, - 0.0014571, - 0.016945, - -0.056771, - 0.01687, - 0.035049, - -0.020571, - -0.056259, - -0.010797, - 0.025929, - 0.0151, - 0.050115, - 0.056845, - 0.034277, - 0.033339, - -0.016489, - -0.013108, - 0.022144, - 0.0066144, - 0.05607, - -0.031506, - 0.028813, - -0.045018, - 0.004328, - 0.062244, - -0.0011611, - 0.022279, - 0.0034239, - -0.0064036, - -0.047682, - 0.065534, - 0.0070534, - 0.01468, - 0.0047259, - 0.03813, - 0.0042929, - -0.046417, - -0.033346, - -0.026209, - 0.0082057, - 0.017236, - -0.022447, - 0.0097933, - 0.0062717, - -0.00079222, - 0.019442, - 0.0052347, - 0.0033041, - -0.0057548, - 0.023756, - -0.017548, - 0.023739, - -0.009018, - -0.0055212, - 0.010446, - 0.016693, - -0.015929, - 0.022322, - 0.091303, - 0.043983, - 0.017464, - -0.026908, - -0.011516, - 0.0014377, - -0.013577, - -0.012112, - 0.012803, - -0.0063862, - 0.028142, - 0.029257, - 0.0041364, - -0.00797, - 0.0053383, - -0.019589, - 0.026544, - -0.030767, - 0.0062707, - -0.0025711, - -0.01443, - -0.0013066, - -0.005628, - 0.016216, - -0.022739, - 0.0019465, - 0.0030834, - 0.014544, - 0.031163, - 0.0028457, - -0.053423, - 0.036734, - -0.028209, - -0.0068973, - -0.00045082, - -0.041674, - -0.016115, - 0.033723, - -0.0073718, - -0.0056104, - -0.022089, - -0.0382, - 0.023222, - -0.042176, - 0.033858, - 0.031562, - 0.025922, - -0.028313, - -0.026574, - 0.025649, - 0.018541, - 0.032811, - -0.0081997, - 0.0041657, - -0.04549, - -0.026858, - -0.026157, - 0.032184, - -0.049476, - 0.022522, - 0.0029159, - -0.02533, - 0.084899, - 0.012598, - -0.047511, - -0.0088478, - -0.042633, - 0.051626, - -0.002934, - 0.0014304, - -0.015922, - -0.011756, - 0.010521, - 0.017071, - 0.041054, - 0.029746, - -0.0041402, - 0.017716, - 0.033267, - -0.0017737, - 0.0067834, - 0.012245, - -0.051439, - -0.010162, - -0.027828, - 0.00019024, - 0.007261, - 0.00038534, - 0.026499, - 0.098201, - -0.021487, - -0.069076, - 0.0021367, - -0.000090211, - -0.0090411, - 0.011371, - -0.024479, - -0.004263, - 0.0041845, - 0.016898, - -0.0068096, - -0.0028968, - 0.0094934, - 0.011099, - -0.028942, - -0.041177, - -0.026679, - -0.032502, - 0.0022206, - 0.019915, - 0.02305, - 0.01958, - -0.0024596, - 0.031459, - -0.013195, - 0.025881, - -0.030589, - 0.019097, - 0.01233, - -0.00075601, - -0.014607, - 0.0020042, - -0.0076056, - -0.02719, - -0.01752, - 0.061569, - 0.006582, - 0.040047, - -0.056835, - 0.01518, - -0.001161, - 0.010753, - 0.030714, - 0.010497, - 0.0084983, - 0.0097058, - 0.0008508, - -0.027269, - -0.077974, - 0.0063132, - 0.0025208, - 0.0028317, - 0.0056515, - 0.012898, - -0.02504, - 0.045527, - 0.015715, - 0.0017648, - 0.045524, - 0.020029, - 0.013417, - -0.0047316, - 0.015257, - -0.0048173, - -0.0061921, - 0.0015892, - -0.024115, - -0.016189, - -0.010209, - 0.018295, - 0.0038755, - 0.054819, - -0.01136, - -0.040789, - 0.006105, - 0.051632, - 0.034014, - -0.0020418, - 0.0078273, - -0.017695, - -0.054694, - -0.0071033, - 0.01598, - 0.0067124, - 0.0059985, - -0.0059816, - -0.010286, - -0.019579, - -0.016581, - -0.017445, - 0.030138, - 0.0069535, - -0.08834, - -0.0062553, - -0.0019013, - 0.016535, - 0.005016, - 0.021683, - 0.017933, - 0.0030248, - -0.0030884, - -0.026695, - -0.026672, - 0.011559, - -0.022244, - 0.012493, - 0.016154, - 0.013561, - 0.018094, - -0.020205, - -0.018712, - -0.0028206, - -0.004122, - -0.014849, - 0.0036203, - 0.017636, - 0.0073936, - -0.0091054, - 0.00098665, - 0.038762, - -0.0586, - -0.034979, - 0.0067242, - -0.067226, - 0.0081102, - 0.019727, - -0.03509, - -0.037238, - 0.05066, - -0.00047129, - 0.035515, - -0.0026503, - -0.017095, - -0.020038, - -0.015483, - 0.016721, - -0.035605, - -0.012218, - -0.034942, - 0.0083021, - -0.0097551, - 0.0085719, - 0.0054762, - -0.0018888, - -0.014146, - 0.0094587, - 0.022989, - -0.034208 - ], - "chemistry": [ - -0.076442, - -0.028309, - -0.010977, - 0.0061826, - 0.014826, - -0.070846, - 0.060209, - -0.072238, - 0.061442, - 0.024588, - 0.0030907, - -0.038538, - 0.051434, - 0.02182, - 0.015116, - 0.0017385, - 0.10833, - 0.08482, - 0.048628, - -0.020449, - 0.049302, - 0.074696, - 0.050598, - 0.049314, - -0.023409, - -0.092773, - -0.019664, - -0.041715, - -0.000024016, - 0.029295, - 0.034339, - -0.0061888, - 0.037118, - -0.034222, - 0.02522, - 0.043464, - -0.0038177, - -0.0077373, - -0.03392, - -0.02684, - -0.029026, - -0.1464, - 0.0070251, - -0.04394, - 0.029284, - -0.027581, - 0.0028913, - -0.023139, - -0.0048254, - 0.03392, - -0.013963, - 0.021025, - 0.013359, - 0.031407, - -0.038597, - 0.0030712, - -0.0055, - 0.049235, - -0.020383, - 0.027717, - 0.03365, - 0.052361, - 0.07904, - 0.048152, - 0.033214, - -0.007083, - 0.061107, - 0.018448, - 0.014382, - -0.032491, - 0.041457, - -0.0064726, - 0.0145, - -0.040109, - 0.025853, - -0.034961, - -0.054082, - -0.028273, - -0.0032901, - -0.0067126, - -0.037243, - 0.013097, - -0.03959, - 0.050564, - -0.062105, - 0.04951, - 0.068498, - -0.02329, - 0.034247, - -0.0048657, - 0.060553, - 0.01872, - -0.078801, - 0.027228, - 0.022035, - 0.098542, - 0.051286, - 0.062762, - 0.02286, - 0.024184, - 0.00968, - 0.017992, - 0.011139, - 0.031167, - 0.00023118, - -0.05877, - -0.01351, - 0.022775, - 0.045525, - -0.0053497, - 0.016784, - 0.068278, - 0.026275, - -0.0024156, - -0.0064012, - -0.022661, - 0.052704, - -0.03801, - -0.031836, - -0.031814, - -0.017883, - -0.016629, - -0.015287, - -0.02771, - 0.038226, - 0.022444, - -0.080693, - -0.037076, - -0.025706, - 0.12913, - -0.013071, - 0.003382, - -0.08967, - -0.0051452, - 0.02232, - 0.00741, - 0.042642, - 0.0043323, - 0.039006, - -0.044531, - 0.025871, - 0.031884, - 0.024578, - 0.012275, - 0.045777, - 0.024037, - -0.0056938, - -0.016281, - 0.00040614, - 0.016002, - 0.025947, - 0.067311, - 0.051874, - -0.048019, - -0.0019125, - 0.063376, - -0.010175, - 0.03105, - 0.024783, - 0.0095747, - 0.02017, - -0.02534, - -0.090844, - -0.018687, - 0.058395, - -0.013506, - -0.063285, - -0.019727, - 0.043178, - -0.028307, - 0.026459, - -0.036164, - -0.014218, - 0.016963, - 0.070934, - 0.046948, - -0.041641, - 0.074962, - -0.0056345, - -0.038118, - -0.030199, - 0.012871, - 0.011369, - -0.042864, - 0.05272, - -0.064863, - 0.022559, - 0.094209, - -0.0024918, - 0.028419, - 0.038175, - 0.081299, - -0.039961, - -0.023872, - -0.037141, - -0.0064564, - -0.020889, - -0.0060191, - -0.0051138, - 0.006353, - -0.12002, - -0.037618, - -0.024101, - -0.052503, - -0.019171, - 0.0025685, - -0.018205, - -0.012532, - -0.015029, - -0.013483, - 0.12242, - 0.037246, - 0.021706, - 0.030406, - 0.037444, - 0.016147, - -0.0003429, - 0.053562, - -0.06225, - -0.039474, - 0.031881, - 0.015467, - -0.079664, - 0.074384, - -0.010107, - 0.0184, - 0.058736, - 0.088434, - 0.010438, - -0.028776, - 0.038021, - -0.027577, - -0.055101, - 0.018929, - -0.0049558, - -0.0096635, - 0.025019, - 0.001539, - -0.066345, - -0.022254, - 0.0090947, - 0.0031168, - 0.044092, - 0.0095177, - 0.038447, - 0.044487, - -0.092211, - -0.012534, - 0.044498, - 0.058079, - 0.036561, - -0.038616, - -0.028023, - -0.0083729, - 0.039202, - 0.015946, - 0.030404, - 0.049452, - 0.044039, - -0.00471, - 0.018745, - 0.051391, - -0.00083956, - 0.034867, - -0.053035, - -0.031115, - -0.039928, - 0.035036, - 0.016899, - 0.012989, - 0.017552, - 0.054668, - -0.092432, - -0.021569, - 0.0032012, - -0.003257, - -0.031905, - 0.055011, - 0.080491, - -0.023877, - 0.0866, - -0.012916, - -0.027349, - -0.054652, - -0.050479, - -0.035952, - -0.019015, - -0.0070638, - -0.027712, - 0.0027704, - -0.023897, - 0.065068, - -0.057475, - 0.0013096, - -0.071414, - -0.0096293, - 0.077606, - -0.011331, - 0.03739, - 0.00052222 - ], - "hinduism": [ - -0.062009, - -0.067381, - 0.08043, - -0.11936, - -0.047403, - -0.056196, - 0.032755, - -0.02881, - -0.017857, - -0.096861, - 0.043858, - -0.063406, - 0.098328, - -0.033267, - 0.0084899, - -0.02476, - 0.17485, - -0.089545, - 0.039701, - 0.00134, - -0.095168, - 0.026986, - 0.038174, - 0.057437, - -0.015574, - -0.075934, - 0.051667, - -0.051416, - 0.028213, - -0.0087838, - 0.047198, - 0.045541, - 0.026668, - -0.0056247, - -0.014427, - 0.060777, - 0.034627, - -0.031638, - -0.0043587, - 0.053626, - 0.015685, - -0.089815, - 0.038832, - -0.038002, - 0.035366, - -0.03966, - 0.0055553, - -0.010391, - 0.05974, - -0.045964, - -0.01695, - -0.028074, - 0.033986, - -0.024344, - -0.060453, - 0.021493, - -0.020222, - -0.067351, - -0.029165, - 0.045435, - 0.03436, - -0.011867, - 0.07181, - -0.035825, - 0.0043286, - -0.0073783, - 0.0036702, - 0.0059121, - 0.013251, - -0.055652, - -0.001562, - -0.018568, - 0.042902, - -0.064733, - -0.029863, - -0.020971, - -0.020565, - 0.010873, - 0.044099, - 0.062701, - 0.024751, - 0.035262, - -0.021946, - 0.087019, - -0.023946, - 0.031366, - -0.084378, - -0.0087371, - -0.014833, - 0.0035235, - 0.0084819, - 0.013754, - -0.068019, - 0.027129, - 0.011059, - -0.036, - 0.022378, - -0.055265, - 0.016578, - -0.034345, - 0.0031656, - -0.0014795, - 0.045693, - -0.041276, - -0.022208, - -0.036946, - 0.047343, - 0.022333, - -0.039842, - 0.042631, - -0.010396, - 0.10909, - 0.032623, - -0.063308, - -0.0091936, - 0.064203, - -0.055921, - 0.055759, - -0.081402, - 0.042486, - 0.034566, - 0.031752, - 0.0081165, - -0.058744, - 0.011331, - 0.082282, - -0.070414, - -0.011061, - -0.0066121, - 0.10589, - 0.022936, - -0.048586, - 0.021211, - 0.052705, - -0.076622, - -0.061376, - 0.046221, - -0.010352, - 0.034852, - -0.10817, - -0.053577, - -0.089264, - 0.028742, - 0.071639, - -0.0086248, - -0.052441, - 0.0020665, - 0.037046, - 0.0055063, - -0.038204, - 0.099491, - -0.028567, - -0.06257, - -0.089439, - -0.028614, - 0.044918, - 0.0013266, - -0.011085, - 0.10338, - 0.022055, - 0.005823, - 0.010004, - -0.056607, - 0.015712, - 0.097929, - -0.053849, - 0.028672, - 0.039358, - -0.026329, - 0.064558, - -0.010937, - -0.030603, - -0.0033194, - -0.002245, - -0.010777, - 0.075524, - 0.025511, - -0.0023371, - 0.0096739, - -0.065326, - -0.010855, - 0.065328, - -0.017006, - 0.049062, - 0.060602, - -0.017193, - 0.0039387, - 0.079624, - -0.056173, - -0.047645, - 0.0082231, - 0.064628, - -0.11292, - 0.032928, - 0.033931, - 0.028443, - -0.067762, - -0.046328, - -0.034579, - 0.0087508, - -0.1776, - -0.0075724, - -0.012419, - -0.047202, - 0.041904, - 0.080594, - 0.082839, - -0.018611, - 0.10955, - -0.020191, - 0.054049, - 0.0020792, - 0.010788, - -0.0066182, - 0.078192, - 0.077275, - 0.015026, - 0.018433, - 0.059842, - 0.017998, - -0.067504, - -0.0063864, - -0.0076837, - 0.06688, - -0.066839, - 0.017329, - 0.048699, - 0.13461, - 0.014286, - -0.021883, - 0.0073955, - -0.10305, - -0.062103, - -0.011878, - 0.15675, - -0.014604, - -0.020652, - 0.059024, - -0.006033, - 0.020264, - 0.05173, - -0.076133, - -0.06016, - -0.015462, - -0.075752, - 0.0061741, - 0.063099, - 0.023107, - -0.076744, - -0.0015546, - 0.01186, - -0.064696, - -0.080551, - 0.034748, - -0.0060923, - -0.007977, - -0.015185, - -0.0007354, - -0.037049, - -0.031306, - 0.037856, - 0.083672, - 0.016149, - -0.028214, - 0.05434, - 0.029594, - 0.031329, - 0.087917, - 0.00059643, - 0.035097, - 0.023432, - 0.047386, - -0.03138, - -0.049852, - 0.015623, - -0.042685, - 0.040108, - -0.026515, - -0.081811, - -0.013891, - -0.0061408, - -0.031522, - 0.030347, - -0.031609, - -0.038891, - 0.021777, - 0.088007, - 0.051369, - -0.01385, - 0.021018, - -0.090021, - -0.08803, - -0.0058929, - -0.046905, - 0.051591, - 0.031055, - 0.071134, - 0.081897, - 0.00090236, - 0.014044 - ], - "snooping": [ - -0.049767, - 0.031898, - -0.07667, - 0.047401, - -0.0405, - -0.03588, - 0.010092, - -0.11488, - -0.017921, - -0.022153, - -0.058018, - -0.049354, - -0.030047, - -0.0069373, - -0.075118, - 0.052131, - 0.07018, - -0.034245, - 0.052035, - -0.00038109, - -0.0024505, - -0.029982, - 0.018176, - 0.0034564, - -0.032948, - 0.033956, - 0.063347, - -0.010317, - 0.03334, - -0.024458, - 0.027189, - -0.12398, - -0.062605, - -0.0474, - 0.057024, - -0.039937, - 0.0081698, - 0.04254, - 0.047608, - -0.071405, - 0.00085159, - -0.10227, - -0.047348, - -0.0032074, - -0.0062765, - 0.043951, - 0.04418, - 0.0033509, - -0.0033751, - 0.0086922, - -0.027109, - -0.050221, - 0.05023, - 0.018166, - -0.056054, - -0.042756, - -0.042668, - 0.007283, - -0.0072688, - -0.015736, - 0.022212, - -0.046665, - 0.011623, - -0.061876, - -0.10716, - -0.065914, - 0.026626, - -0.012792, - 0.040488, - 0.074215, - 0.05661, - 0.14538, - 0.05788, - 0.0078636, - -0.0063785, - -0.011317, - 0.091375, - -0.0039915, - 0.0053553, - -0.031911, - -0.049437, - -0.016931, - 0.0030731, - 0.10425, - 0.051034, - 0.012066, - -0.011021, - 0.030896, - 0.010476, - 0.074398, - -0.051629, - 0.0055753, - -0.070202, - -0.0068593, - 0.056679, - 0.046906, - 0.027279, - -0.027002, - -0.040371, - 0.062122, - 0.011865, - 0.040645, - -0.023069, - -0.023584, - 0.061073, - -0.092744, - 0.065016, - 0.0084346, - 0.13519, - 0.025632, - 0.013873, - 0.034949, - 0.057013, - 0.055872, - 0.0034371, - 0.011334, - -0.057459, - 0.075756, - -0.060742, - 0.0076179, - 0.030901, - 0.049866, - 0.040864, - 0.046518, - 0.093497, - -0.047769, - 0.012535, - -0.020794, - -0.060539, - 0.1144, - 0.0048024, - -0.02276, - 0.018998, - 0.0529, - 0.065824, - -0.11525, - -0.011975, - 0.070194, - -0.040629, - 0.032928, - 0.034282, - 0.041467, - 0.01004, - 0.01041, - -0.025164, - 0.031908, - 0.048481, - -0.033022, - 0.11328, - -0.087492, - 0.047958, - 0.069195, - 0.02918, - -0.075527, - 0.058624, - 0.024011, - 0.056743, - 0.019148, - 0.010382, - -0.054413, - 0.064435, - 0.00076018, - -0.083587, - -0.013736, - -0.035848, - -0.032206, - 0.043687, - 0.053963, - -0.0039934, - -0.019072, - -0.019002, - 0.0098032, - -0.090722, - 0.058248, - -0.0066651, - 0.05129, - -0.031938, - 0.015462, - 0.05191, - -0.010241, - 0.027035, - -0.098576, - 0.013092, - 0.020022, - -0.011871, - -0.049577, - 0.065622, - 0.091757, - 0.051677, - 0.03585, - -0.0057943, - -0.014047, - -0.010105, - -0.014287, - 0.011815, - 0.052827, - -0.031825, - 0.02708, - -0.0019148, - 0.070914, - -0.13657, - 0.059, - -0.041043, - 0.067611, - -0.033388, - -0.018473, - -0.02553, - -0.023682, - -0.013114, - -0.015773, - 0.075511, - 0.032746, - 0.012755, - 0.048308, - 0.05387, - -0.01528, - -0.10951, - -0.051013, - 0.0098935, - -0.044973, - 0.031586, - -0.020505, - -0.017222, - 0.083542, - -0.0056934, - 0.0081534, - 0.015135, - 0.10446, - -0.02443, - -0.014477, - -0.025292, - -0.042593, - -0.01469, - -0.047249, - 0.076941, - -0.078568, - 0.061075, - 0.03257, - 0.016427, - -0.03353, - 0.047521, - -0.11711, - 0.064649, - -0.061384, - -0.084993, - 0.031847, - -0.012225, - -0.022906, - -0.044094, - 0.053384, - 0.015519, - -0.052039, - -0.12594, - -0.055232, - 0.080383, - -0.0053877, - -0.071825, - -0.021066, - -0.069602, - 0.014892, - -0.010177, - 0.022626, - 0.0091525, - 0.088027, - -0.044377, - -0.069155, - 0.024956, - 0.079289, - -0.032286, - 0.026982, - -0.12182, - 0.071293, - -0.10264, - -0.0018021, - -0.022794, - -0.081724, - 0.070145, - -0.030886, - 0.034061, - -0.0023206, - 0.06784, - -0.025643, - 0.021403, - -0.0040349, - 0.014648, - -0.0022514, - -0.074764, - 0.0023222, - 0.051471, - -0.021829, - -0.018657, - 0.024532, - -0.07961, - 0.024463, - 0.011302, - 0.072396, - -0.081209, - -0.015252, - -0.037643, - 0.036989 - ], - "chronicle": [ - -0.031836, - -0.1041, - 0.092166, - 0.062309, - 0.026703, - -0.028604, - -0.00016755, - -0.10575, - -0.0060237, - 0.042771, - 0.011684, - -0.064047, - 0.028256, - 0.044476, - 0.067768, - 0.016184, - 0.056914, - -0.091399, - 0.018017, - 0.035289, - -0.011378, - 0.036409, - -0.032852, - 0.068764, - -0.020638, - 0.0060356, - -0.021638, - 0.034518, - -0.0046272, - -0.011806, - 0.016113, - 0.033878, - -0.020298, - -0.041257, - 0.0082559, - 0.0060654, - 0.012279, - 0.082502, - -0.006167, - -0.0025812, - 0.0089618, - -0.063918, - 0.055298, - 0.052699, - 0.015884, - 0.048858, - 0.013632, - 0.018037, - -0.023966, - -0.043268, - -0.0018264, - -0.044469, - -0.045719, - -0.045699, - -0.039452, - 0.0065542, - -0.063647, - -0.011483, - -0.029012, - 0.016084, - 0.034054, - -0.024591, - 0.08499, - -0.068912, - 0.13184, - -0.028242, - -0.052946, - 0.088213, - 0.017707, - 0.0553, - -0.028406, - -0.022074, - -0.0049012, - 0.0046073, - 0.013558, - 0.053312, - -0.011855, - -0.046063, - -0.02735, - -0.050859, - -0.0094153, - 0.014559, - -0.025, - 0.011644, - -0.028744, - -0.022752, - 0.063563, - 0.0019549, - 0.028437, - 0.021901, - -0.015336, - -0.018161, - -0.046379, - -0.033892, - -0.0017321, - 0.021773, - 0.022849, - 0.010127, - 0.083169, - 0.030496, - -0.012596, - -0.063154, - 0.047797, - 0.0084734, - -0.032675, - -0.049442, - 0.025174, - -0.046039, - 0.021255, - 0.054611, - -0.033775, - 0.029657, - 0.021262, - 0.00097904, - -0.059747, - 0.040143, - 0.010693, - 0.03146, - -0.038251, - 0.027175, - -0.050086, - -0.037535, - 0.045349, - 0.035757, - 0.05132, - -0.022382, - -0.0050019, - -0.011782, - 0.025253, - 0.11387, - 0.0048302, - -0.0003817, - -0.030424, - -0.060175, - 0.057927, - -0.007599, - 0.021026, - 0.020964, - 0.027855, - -0.058294, - 0.065702, - -0.034811, - 0.033009, - -0.03595, - -0.06327, - -0.0046611, - 0.027047, - -0.025538, - -0.065261, - -0.012994, - -0.014468, - 0.077759, - 0.02658, - -0.042648, - 0.015422, - -0.020462, - 0.0064656, - 0.083459, - -0.0053298, - -0.043144, - -0.0090058, - 0.08317, - -0.018748, - -0.029607, - -0.082142, - 0.037979, - 0.02749, - -0.035101, - 0.02041, - 0.030508, - -0.013869, - -0.0045655, - 0.033847, - 0.01567, - 0.024241, - 0.012195, - -0.025022, - -0.034515, - -0.027166, - 0.056948, - 0.034774, - 0.0061036, - 0.0066352, - -0.037688, - -0.055302, - 0.0098548, - 0.033782, - 0.053055, - -0.0044625, - -0.0086142, - 0.013233, - 0.011017, - -0.056909, - 0.022511, - -0.031004, - 0.035419, - -0.03057, - 0.0149, - -0.0077256, - 0.029232, - -0.12464, - 0.046084, - -0.034155, - -0.053326, - 0.022056, - 0.013048, - 0.0068713, - 0.039649, - 0.014996, - -0.031912, - 0.05169, - 0.021815, - 0.003509, - 0.021024, - -0.00838, - -0.0056303, - -0.033122, - 0.01249, - -0.022859, - 0.071668, - 0.0084876, - -0.03931, - 0.037906, - 0.056398, - 0.0037564, - -0.014934, - 0.10163, - 0.046317, - -0.053221, - 0.032413, - -0.013292, - -0.1155, - -0.006591, - 0.050172, - 0.088958, - -0.0090574, - 0.047292, - 0.0045818, - 0.024645, - -0.031387, - 0.12997, - -0.0057354, - -0.00017586, - -0.0075858, - -0.075521, - -0.029583, - -0.040907, - -0.016627, - -0.0012707, - 0.013524, - 0.087515, - -0.017989, - 0.030535, - 0.0051165, - -0.010333, - 0.017176, - 0.0088704, - 0.062171, - 0.068035, - 0.038438, - 0.0092128, - -0.0037363, - -0.013199, - -0.078525, - 0.081439, - -0.03752, - -0.030872, - 0.038207, - 0.017964, - 0.021051, - 0.039182, - 0.066922, - -0.06986, - 0.024708, - -0.012824, - 0.022871, - -0.083911, - -0.012393, - -0.027064, - 0.026185, - 0.029007, - -0.045548, - 0.044908, - -0.039635, - -0.041073, - 0.031817, - -0.013923, - -0.0061613, - -0.014608, - 0.0020067, - 0.028192, - 0.031975, - 0.0055864, - -0.0086741, - -0.036616, - 0.0088744, - 0.040792, - 0.017093, - -0.019955, - 0.028404 - ], - "monotheism": [ - -0.025333, - -0.039955, - 0.040361, - -0.033488, - -0.027804, - 0.017909, - 0.0037028, - -0.10906, - 0.019472, - 0.043859, - 0.085145, - -0.031114, - -0.010103, - 0.039737, - 0.042176, - -0.021827, - 0.10807, - -0.059725, - 0.015139, - -0.025941, - 0.013379, - 0.050634, - 0.012856, - 0.039741, - -0.0069903, - 0.0011735, - 0.02171, - 0.038126, - 0.048186, - 0.041774, - -0.0098984, - -0.0022986, - 0.028273, - -0.017067, - -0.036943, - 0.024954, - -0.029736, - -0.029368, - 0.029148, - -0.011372, - -0.053228, - -0.10337, - -0.038721, - 0.057126, - -0.068189, - -0.026518, - -0.06081, - -0.059549, - -0.0048078, - -0.087259, - 0.012409, - -0.048001, - 0.03118, - 0.012357, - -0.037759, - 0.018389, - 0.059564, - -0.044272, - -0.013483, - 0.0076997, - 0.056113, - 0.0016152, - 0.034175, - -0.01762, - -0.032087, - -0.0036845, - 0.0048862, - 0.021193, - 0.043098, - -0.066274, - 0.061908, - 0.03699, - -0.053574, - -0.051325, - -0.092441, - -0.040377, - -0.015398, - -0.0081593, - 0.073656, - 0.10071, - 0.00022118, - 0.031857, - -0.011596, - 0.070821, - -0.031229, - -0.040862, - -0.016941, - 0.010212, - -0.040208, - 0.061302, - 0.0080907, - 0.033934, - -0.064342, - 0.0036335, - 0.013727, - -0.0068074, - 0.022252, - -0.10236, - -0.012136, - -0.090561, - 0.024819, - 0.028772, - 0.021089, - 0.024428, - -0.045425, - -0.030625, - 0.033985, - 0.047568, - -0.084758, - 0.012057, - 0.053746, - 0.036515, - 0.017801, - 0.0071318, - -0.06569, - 0.055835, - 0.0078073, - 0.059621, - -0.063813, - 0.0084669, - -0.044881, - -0.015166, - -0.0049449, - -0.068353, - 0.028336, - -0.014914, - -0.025748, - -0.026078, - 0.034207, - 0.10248, - 0.027821, - -0.044192, - -0.028699, - 0.027558, - 0.0040973, - -0.020196, - -0.019107, - 0.015306, - -0.051661, - -0.10635, - 0.014581, - -0.0046836, - -0.015759, - 0.019757, - -0.012077, - -0.042973, - -0.040065, - -0.0045135, - -0.0019324, - -0.026852, - 0.049535, - 0.055668, - -0.0081516, - -0.062907, - -0.028896, - 0.03177, - 0.017085, - -0.020809, - 0.056637, - 0.012072, - 0.020735, - -0.011645, - -0.078947, - -0.019719, - 0.10029, - -0.051564, - 0.010553, - 0.072151, - 0.019523, - 0.014947, - -0.03367, - -0.048123, - -0.047117, - 0.082069, - 0.0081492, - 0.031397, - 0.034777, - 0.032292, - 0.013091, - -0.032992, - -0.0086799, - 0.059276, - -0.0081849, - 0.040902, - 0.015685, - 0.037016, - 0.041992, - 0.054361, - -0.056562, - -0.075516, - 0.053179, - 0.082155, - -0.092923, - -0.017056, - 0.037681, - 0.0023026, - -0.043781, - -0.033715, - -0.03762, - -0.02614, - -0.17752, - 0.028748, - -0.021443, - -0.055459, - -0.048903, - 0.035541, - 0.07685, - -0.048504, - 0.095445, - 0.0067264, - 0.056365, - 0.010603, - 0.0048522, - 0.012834, - 0.05669, - 0.097279, - -0.053301, - 0.0064869, - 0.010054, - -0.086994, - -0.048487, - 0.058668, - -0.045364, - 0.07847, - 0.0017726, - -0.01996, - 0.069876, - 0.073657, - 0.057658, - -0.0064654, - 0.012007, - -0.034923, - -0.053415, - -0.034448, - 0.057148, - 0.046856, - -0.032208, - -0.01108, - -0.0039773, - -0.018109, - 0.045333, - -0.031904, - -0.037177, - -0.013522, - -0.0092196, - -0.046331, - -0.0036641, - -0.040762, - -0.10649, - -0.04605, - 0.017023, - -0.06829, - 0.0022338, - 0.066758, - 0.042078, - 0.044312, - 0.024256, - 0.03963, - 0.0075111, - -0.046553, - 0.060127, - -0.0050182, - 0.0074489, - -0.0081653, - 0.028514, - 0.00026346, - 0.023444, - 0.028813, - -0.0058898, - 0.047367, - -0.020722, - 0.066659, - -0.077232, - -0.014586, - -0.0031738, - -0.045919, - -0.0034667, - -0.040855, - -0.07244, - -0.040722, - 0.073199, - -0.069175, - 0.013244, - 0.0047343, - -0.046741, - -0.029424, - 0.026778, - 0.039704, - -0.017672, - 0.039364, - 0.01913, - -0.059997, - 0.046597, - -0.062684, - 0.047254, - -0.026766, - 0.066977, - 0.054361, - -0.020286, - -0.0084696 - ], - "mobile": [ - -0.0057042, - -0.03378, - -0.0013962, - -0.013195, - 0.002738, - -0.033428, - 0.031894, - -0.098668, - 0.037054, - 0.022724, - 0.033279, - 0.00075724, - -0.046635, - 0.020362, - 0.043881, - -0.076056, - 0.12967, - 0.035939, - 0.092298, - -0.015646, - 0.043603, - -0.065943, - 0.01723, - 0.06124, - 0.034745, - 0.01437, - -0.032125, - -0.024637, - 0.024502, - -0.013326, - -0.04043, - -0.0047237, - 0.044434, - -0.036159, - 0.093149, - 0.020824, - 0.016416, - -0.055501, - 0.017474, - -0.074133, - -0.017561, - -0.16397, - 0.037293, - -0.018117, - 0.040815, - -0.095196, - -0.0075694, - -0.067104, - -0.037197, - -0.038709, - 0.018083, - -0.030733, - 0.044415, - -0.033181, - -0.013319, - 0.0399, - 0.075628, - 0.017629, - -0.051925, - -0.0013825, - -0.008113, - 0.014583, - 0.13748, - 0.05243, - 0.071012, - 0.013573, - -0.0026446, - -0.051408, - -0.056785, - -0.059791, - -0.0045331, - 0.00098333, - 0.057776, - -0.03465, - -0.024905, - 0.0090966, - -0.010027, - -0.012741, - 0.014398, - -0.044867, - 0.0095429, - -0.080905, - -0.05384, - 0.063326, - -0.036497, - -0.019103, - -0.010633, - -0.0081976, - 0.0089869, - 0.0099371, - 0.041789, - 0.0062643, - -0.11024, - -0.019836, - -0.0078079, - 0.10687, - -0.060806, - -0.05413, - -0.010679, - 0.022567, - 0.089277, - 0.022033, - 0.036311, - -0.031213, - 0.011783, - -0.13675, - -0.079976, - 0.018001, - -0.0029988, - -0.0036527, - 0.026201, - 0.092065, - 0.060402, - 0.11197, - -0.078798, - 0.044631, - -0.012078, - 0.043949, - -0.042199, - -0.057957, - -0.049517, - 0.072444, - 0.021208, - 0.010272, - 0.071916, - 0.062503, - 0.019538, - -0.067117, - 0.10874, - -0.011947, - -0.0016312, - 0.032519, - -0.00013698, - -0.12158, - 0.037158, - 0.050351, - 0.089358, - -0.041435, - -0.095364, - 0.058005, - 0.018527, - -0.028639, - 0.090582, - -0.011684, - -0.020972, - 0.042521, - -0.028573, - 0.055404, - 0.027589, - -0.032366, - 0.066836, - 0.097886, - 0.045669, - -0.04649, - 0.0046564, - 0.020901, - -0.074772, - 0.041571, - -0.0047718, - 0.0025181, - 0.030243, - -0.046377, - -0.05611, - 0.027923, - 0.025905, - -0.040286, - 0.021924, - 0.039842, - -0.049259, - 0.033279, - -0.053229, - 0.1077, - -0.017193, - 0.09156, - -0.082438, - 0.09002, - -0.056357, - -0.0072159, - -0.038399, - -0.016397, - 0.022612, - 0.038489, - -0.044869, - 0.033124, - -0.036339, - -0.026076, - 0.040192, - 0.12911, - 0.02713, - -0.01357, - 0.085389, - 0.037042, - 0.041106, - 0.025588, - 0.012757, - 0.014976, - -0.0037843, - 0.040487, - 0.067719, - 0.02593, - -0.15877, - 0.12199, - -0.035491, - 0.08824, - -0.036701, - 0.053233, - -0.00033707, - -0.049482, - -0.036736, - -0.05306, - 0.14169, - -0.024556, - 0.023297, - -0.0039684, - -0.024332, - 0.030902, - -0.032929, - 0.0017247, - -0.025216, - 0.017002, - 0.024833, - -0.086926, - 0.031017, - 0.11386, - -0.053353, - -0.074184, - 0.0356, - 0.082098, - -0.09043, - -0.041127, - 0.011257, - 0.012434, - -0.031219, - -0.027678, - 0.059671, - 0.09783, - 0.043067, - 0.0067294, - -0.053998, - -0.087614, - 0.067898, - 0.036342, - 0.0076757, - -0.016851, - -0.12569, - -0.046124, - -0.06887, - -0.025006, - -0.016584, - -0.04593, - -0.028606, - 0.046022, - -0.064195, - 0.0056476, - 0.0070287, - 0.032523, - -0.068006, - -0.045542, - -0.018983, - 0.032995, - -0.030319, - 0.041223, - -0.095157, - 0.025269, - 0.064362, - 0.025264, - 0.051689, - -0.003792, - 0.03707, - 0.025763, - -0.11393, - 0.087156, - -0.11912, - -0.0027945, - -0.042322, - -0.094557, - 0.096397, - 0.037483, - 0.02898, - -0.034451, - 0.15328, - -0.054528, - -0.04491, - 0.022096, - -0.085791, - -0.051145, - -0.11818, - -0.078121, - 0.088424, - -0.010473, - 0.031004, - -0.020467, - -0.065309, - 0.0097965, - 0.068709, - -0.11256, - -0.040356, - 0.08057, - 0.055816, - -0.025125 - ], - "doggie": [ - -0.01649, - -0.052888, - -0.009685, - -0.036915, - -0.08788, - -0.0020482, - -0.013248, - -0.068454, - 0.049813, - 0.017507, - -0.036581, - -0.04666, - 0.022121, - -0.010737, - -0.071117, - -0.011684, - 0.1023, - 0.034074, - 0.051267, - -0.03595, - -0.0017476, - -0.12198, - -0.018008, - 0.06344, - 0.12703, - 0.05113, - 0.081888, - 0.093979, - -0.019254, - -0.072272, - -0.045342, - -0.023552, - 0.058483, - -0.049559, - -0.031964, - 0.024064, - 0.08474, - -0.066, - 0.022163, - -0.051893, - -0.0029758, - -0.13556, - 0.045995, - 0.01718, - 0.063181, - 0.00060054, - -0.0031022, - 0.04818, - -0.013465, - -0.030001, - -0.017036, - 0.074215, - 0.062941, - -0.10089, - 0.016983, - -0.10619, - 0.0020905, - -0.014629, - -0.018782, - -0.069691, - -0.019008, - -0.092314, - 0.10635, - -0.025542, - -0.028178, - 0.068798, - -0.022877, - 0.02171, - -0.051148, - -0.039922, - 0.011893, - -0.02087, - 0.10143, - -0.021541, - -0.01535, - 0.059516, - -0.052663, - -0.081448, - -0.04488, - -0.055876, - -0.038137, - -0.074598, - 0.10805, - 0.046297, - -0.022036, - -0.057423, - -0.057816, - 0.024619, - 0.095673, - 0.10481, - -0.032734, - 0.024897, - -0.1233, - -0.039137, - 0.10404, - 0.082213, - 0.030903, - 0.15293, - -0.038245, - 0.060594, - -0.01055, - 0.063514, - -0.00035448, - -0.056607, - -0.030109, - -0.2249, - 0.0055459, - -0.017946, - 0.024706, - -0.077682, - 0.022062, - 0.069134, - 0.003021, - 0.033666, - 0.063196, - -0.027, - -0.037276, - -0.027328, - -0.065658, - 0.041483, - -0.032616, - 0.061119, - 0.022989, - -0.11112, - 0.14538, - 0.042938, - 0.021144, - 0.000831, - -0.063493, - 0.099817, - -0.0016657, - -0.0053069, - -0.047055, - -0.0075951, - 0.018156, - -0.056905, - -0.019325, - 0.019658, - 0.043851, - -0.072448, - -0.067297, - -0.038843, - 0.020137, - 0.0080211, - -0.079636, - -0.037282, - 0.036832, - -0.039192, - 0.026396, - -0.037851, - 0.030302, - 0.060158, - 0.017798, - -0.0054539, - -0.060876, - -0.066646, - -0.014262, - -0.038473, - 0.0022249, - 0.0024313, - 0.056493, - -0.025901, - -0.020152, - -0.025098, - 0.012245, - -0.071957, - -0.078072, - 0.0036594, - -0.14489, - 0.037428, - 0.018251, - 0.068103, - 0.013209, - -0.090323, - -0.013229, - 0.076133, - -0.044316, - 0.0044143, - 0.019459, - -0.0087369, - -0.020624, - -0.11545, - -0.0046329, - -0.11094, - 0.10091, - -0.090512, - 0.062483, - 0.13735, - 0.023869, - -0.050316, - 0.019483, - 0.026508, - 0.025042, - -0.0036084, - 0.02265, - 0.043653, - -0.0042087, - 0.084972, - 0.01674, - 0.043873, - -0.12366, - 0.13405, - 0.090872, - -0.0053839, - 0.027803, - -0.12196, - -0.015196, - -0.040676, - -0.0032512, - -0.011219, - 0.11632, - 0.048419, - 0.023046, - 0.012786, - 0.052231, - -0.095513, - -0.004383, - -0.10765, - -0.051316, - -0.06554, - -0.011096, - -0.069759, - 0.0025024, - 0.075935, - 0.057878, - 0.060148, - 0.0084983, - 0.068393, - 0.032521, - 0.010508, - -0.071549, - -0.15169, - -0.043738, - -0.036205, - 0.037357, - 0.037807, - 0.025333, - -0.09259, - 0.021455, - 0.087713, - 0.050077, - 0.056175, - 0.075203, - -0.078875, - -0.072876, - 0.090029, - 0.085965, - 0.045676, - 0.0014711, - 0.0075791, - -0.097742, - 0.016946, - -0.029118, - 0.087884, - -0.0013934, - -0.029497, - 0.040921, - -0.078829, - 0.024242, - 0.057637, - -0.050941, - -0.082726, - 0.0099348, - -0.065103, - 0.072282, - 0.018896, - 0.036148, - 0.059649, - 0.026175, - 0.039401, - -0.05362, - 0.10675, - -0.092209, - -0.007254, - 0.074033, - -0.099192, - -0.038857, - 0.022006, - -0.0021294, - -0.021589, - 0.18758, - 0.050333, - 0.098582, - 0.044347, - -0.10282, - -0.013233, - -0.0064065, - -0.032193, - 0.028917, - 0.025289, - 0.03821, - -0.028291, - -0.066686, - -0.052208, - -0.027751, - -0.054384, - 0.1094, - 0.12884, - -0.033732, - 0.061811 - ], - "seafood": [ - -0.13515, - -0.036601, - -0.0076805, - 0.037248, - 0.01391, - -0.037497, - -0.056053, - -0.10353, - 0.008964, - 0.11017, - -0.079357, - 0.0075731, - -0.071277, - -0.037508, - -0.061212, - -0.028827, - 0.10302, - 0.044117, - 0.034037, - 0.048843, - 0.038259, - 0.0055014, - -0.032514, - 0.050457, - 0.0010006, - -0.040957, - -0.059066, - 0.066299, - 0.067337, - 0.032635, - 0.0088924, - -0.038913, - 0.063933, - -0.013894, - 0.067384, - 0.025013, - -0.0212, - 0.086693, - 0.12065, - 0.052124, - 0.00074898, - -0.1358, - -0.042079, - 0.09782, - 0.045925, - -0.069827, - -0.02734, - -0.03482, - -0.014902, - -0.022565, - -0.025439, - -0.0047627, - 0.056256, - -0.0057866, - -0.08661, - 0.000052981, - 0.061891, - 0.078832, - -0.033686, - -0.11712, - -0.056338, - 0.0032032, - 0.10132, - -0.011053, - -0.007757, - 0.044211, - 0.0068482, - -0.030395, - 0.027002, - -0.043994, - 0.035084, - -0.076572, - 0.072931, - 0.023666, - 0.01068, - -0.068282, - -0.051923, - -0.013508, - 0.015814, - 0.013002, - -0.044312, - -0.026172, - 0.015327, - 0.010258, - -0.020745, - 0.024572, - -0.032517, - -0.043091, - -0.0038623, - -0.019464, - -0.0055131, - 0.038629, - -0.10111, - -0.011047, - -0.071036, - 0.087979, - 0.11352, - 0.12378, - 0.029904, - -0.044075, - -0.11281, - -0.058008, - -0.024583, - -0.02677, - 0.007976, - -0.11035, - -0.11529, - 0.086641, - -0.055122, - -0.014545, - 0.026702, - 0.080832, - 0.064605, - 0.049592, - -0.018002, - 0.050277, - -0.023069, - 0.099515, - -0.060877, - 0.043414, - -0.056189, - 0.078001, - -0.019423, - -0.10412, - 0.12227, - 0.018929, - -0.026192, - -0.1085, - -0.050989, - 0.090472, - 0.025191, - 0.014825, - 0.043889, - -0.081872, - -0.10034, - 0.0012148, - -0.014285, - 0.02288, - -0.009583, - 0.022191, - 0.028472, - 0.041471, - -0.015311, - -0.0057952, - 0.022097, - -0.08496, - -0.014335, - -0.01905, - -0.05029, - -0.0056695, - 0.040159, - 0.092061, - 0.077928, - -0.049335, - 0.070489, - -0.020833, - -0.054533, - 0.038381, - -0.020609, - 0.012591, - 0.022282, - 0.06958, - -0.070963, - -0.053801, - 0.03828, - 0.036415, - -0.0023036, - -0.038843, - 0.029359, - 0.074538, - 0.056547, - 0.026505, - 0.030051, - -0.079098, - -0.019129, - 0.069234, - 0.0010404, - -0.018927, - -0.10446, - 0.013387, - 0.027483, - -0.018154, - 0.18514, - -0.14484, - 0.047307, - -0.073814, - 0.015547, - 0.11967, - -0.088684, - 0.0077612, - -0.01584, - 0.057406, - 0.036584, - -0.038803, - 0.0043492, - 0.0097414, - 0.095002, - 0.03171, - 0.01213, - 0.027179, - -0.18007, - 0.025171, - -0.070822, - -0.058183, - 0.023495, - 0.052074, - 0.0010732, - -0.087152, - 0.0080451, - -0.011381, - 0.10859, - -0.023736, - 0.045355, - 0.063044, - 0.055906, - -0.074919, - -0.0029841, - 0.023132, - 0.012663, - -0.001708, - -0.034223, - -0.034384, - -0.070897, - 0.13602, - -0.019438, - 0.097467, - -0.047594, - 0.05692, - -0.017567, - -0.050902, - -0.057449, - -0.009335, - -0.097545, - 0.010461, - 0.018208, - -0.030095, - -0.044271, - 0.054319, - 0.07936, - -0.099563, - 0.017664, - -0.042299, - -0.039335, - -0.13917, - -0.042308, - 0.0096269, - -0.024229, - 0.0044496, - 0.050517, - -0.042264, - 0.0045209, - -0.11135, - -0.094039, - -0.064832, - -0.021123, - 0.019136, - -0.059459, - -0.023666, - 0.0048766, - 0.021337, - 0.012453, - 0.052867, - 0.073309, - 0.0092885, - -0.01422, - 0.069747, - -0.0083268, - -0.042932, - 0.021383, - -0.025302, - -0.021511, - 0.086085, - -0.097447, - -0.051209, - -0.051672, - -0.054698, - -0.03885, - 0.027225, - -0.052925, - 0.026395, - 0.12531, - 0.081882, - 0.0079285, - 0.039692, - -0.025032, - 0.015899, - 0.011477, - 0.019221, - 0.050661, - -0.089576, - 0.010847, - 0.17169, - -0.034167, - -0.0032719, - -0.024574, - -0.081831, - -0.065751, - 0.018436, - -0.053769, - -0.072701 - ], - "visiting": [ - 0.000045622, - -0.037851, - 0.039863, - -0.054924, - -0.023523, - -0.026836, - -0.023302, - -0.10725, - 0.015924, - -0.014364, - -0.027642, - -0.024428, - 0.024813, - 0.0049088, - -0.0072356, - 0.021692, - -0.0016659, - 0.004165, - 0.042858, - -0.017483, - -0.016, - 0.035328, - -0.03933, - 0.06278, - 0.031124, - -0.0069986, - -0.015477, - 0.042547, - 0.017696, - 0.0079123, - -0.052154, - 0.0029705, - -0.0019064, - 0.010284, - 0.018357, - -0.033469, - -0.00047361, - -0.0035291, - -0.0050006, - -0.045713, - 0.0037037, - -0.085272, - -0.051785, - -0.027465, - 0.033546, - 0.043721, - 0.020574, - -0.05224, - -0.0059372, - 0.071792, - 0.031366, - 0.023252, - -0.036552, - -0.0000079808, - -0.059521, - -0.024253, - 0.0056035, - 0.016459, - -0.079504, - -0.0077534, - -0.020121, - 0.012537, - 0.081144, - 0.022365, - -0.035709, - 0.019786, - 0.0086876, - 0.014458, - -0.034863, - 0.030115, - -0.0063923, - 0.02024, - 0.12214, - 0.020121, - 0.022232, - -0.011456, - 0.05452, - -0.0049729, - 0.01406, - 0.017875, - 0.0038719, - 0.016318, - 0.041885, - 0.081241, - -0.07462, - -0.031796, - 0.055456, - -0.0090659, - 0.0065694, - -0.045348, - -0.050235, - 0.011021, - -0.11572, - -0.0071876, - 0.056274, - 0.029993, - 0.024659, - 0.042451, - 0.043604, - -0.029642, - 0.050377, - 0.046279, - -0.033911, - -0.046664, - 0.061721, - -0.10186, - 0.01026, - -0.030322, - -0.012608, - -0.0078658, - 0.0044629, - 0.022485, - 0.059017, - 0.06217, - 0.014923, - 0.026928, - 0.01375, - -0.054917, - -0.0059386, - -0.0028041, - -0.0049078, - 0.036027, - -0.0020799, - 0.015284, - -0.0015818, - 0.00017581, - -0.0044114, - -0.11011, - -0.013884, - 0.11093, - 0.034652, - 0.081446, - -0.03259, - -0.017871, - -0.016686, - 0.027815, - -0.04587, - 0.022187, - -0.014076, - 0.046756, - 0.011926, - 0.0045521, - 0.018468, - 0.029544, - 0.025636, - 0.057569, - -0.011789, - 0.051718, - 0.0030832, - 0.0014834, - 0.037399, - -0.013609, - -0.036592, - -0.10401, - 0.033317, - -0.0070387, - -0.043432, - 0.077663, - 0.018815, - -0.032702, - 0.025766, - 0.015952, - 0.021015, - 0.021901, - 0.0069946, - 0.013411, - 0.055193, - -0.027386, - 0.013164, - 0.0072897, - 0.015445, - -0.026287, - -0.066494, - 0.015361, - 0.033962, - 0.035295, - -0.014069, - -0.029116, - -0.035284, - 0.038766, - -0.0045958, - 0.01665, - 0.0052623, - -0.0023654, - 0.0035739, - -0.10949, - -0.0017316, - 0.090953, - 0.041957, - -0.029401, - 0.049689, - 0.087498, - -0.11389, - 0.0074471, - -0.054583, - 0.049273, - 0.055504, - 0.021271, - 0.009593, - -0.024435, - -0.13332, - 0.097878, - -0.012518, - -0.00059966, - -0.029792, - -0.0038014, - -0.10028, - 0.0093246, - 0.014088, - 0.0081736, - 0.076285, - -0.0075426, - 0.025982, - -0.0043653, - -0.11438, - 0.0096044, - 0.024701, - -0.025585, - 0.10601, - -0.026048, - -0.025191, - -0.0044729, - -0.0090851, - 0.10257, - -0.021229, - -0.0089082, - -0.0014687, - 0.13879, - -0.049822, - -0.01669, - -0.018319, - -0.0020817, - 0.0091305, - -0.0059295, - 0.058447, - 0.030846, - 0.0076614, - 0.039381, - 0.030754, - 0.018671, - 0.092176, - -0.049166, - 0.024655, - -0.10227, - -0.098555, - 0.041242, - 0.011152, - -0.03027, - -0.038732, - 0.0069106, - 0.039463, - -0.016989, - 0.014368, - -0.031353, - 0.016175, - -0.044464, - -0.031451, - 0.050892, - -0.030496, - 0.00083984, - -0.012394, - -0.045078, - -0.0043261, - 0.11061, - 0.039918, - -0.016142, - 0.053984, - 0.017688, - 0.038464, - -0.04085, - -0.064413, - 0.073589, - -0.10745, - -0.02312, - 0.017572, - -0.045031, - 0.050934, - -0.03631, - -0.038032, - -0.002632, - 0.021957, - -0.030001, - -0.0037437, - 0.0096545, - 0.051107, - -0.027379, - -0.046238, - -0.11392, - -0.035501, - 0.0070029, - 0.00091276, - 0.052783, - -0.021333, - 0.063825, - -0.00090745, - -0.017596, - -0.022515, - 0.0082135, - -0.031942, - -0.031063 - ], - "dog": [ - -0.043178, - -0.084789, - 0.058019, - -0.03788, - -0.076618, - 0.050677, - 0.05558, - -0.13454, - 0.062891, - 0.09802, - -0.025517, - -0.0086414, - 0.081984, - -0.034965, - -0.0929, - -0.034319, - 0.16722, - -0.041833, - 0.074671, - -0.014646, - 0.025472, - -0.17745, - 0.077071, - 0.060977, - 0.091853, - 0.18247, - 0.025118, - 0.079053, - 0.010064, - -0.0081478, - -0.099572, - 0.0037879, - 0.11412, - 0.070008, - -0.044246, - -0.057472, - 0.048013, - -0.13912, - 0.035133, - -0.047829, - -0.027025, - -0.15547, - 0.15932, - -0.012155, - 0.14067, - 0.021343, - -0.016292, - -0.0044396, - -0.011544, - -0.042089, - 0.073808, - 0.12655, - 0.11209, - -0.16792, - -0.034868, - -0.079432, - 0.014045, - -0.0018382, - -0.14304, - -0.044908, - 0.033804, - -0.20694, - 0.16002, - 0.039426, - 0.0052372, - 0.054566, - 0.00031908, - 0.0066935, - -0.02365, - -0.12719, - -0.026534, - -0.052362, - 0.090154, - -0.099041, - -0.014211, - 0.10692, - -0.16799, - -0.059282, - -0.052821, - -0.076072, - -0.031209, - -0.069246, - 0.04451, - 0.10668, - 0.034379, - -0.082856, - -0.044903, - 0.027228, - 0.091346, - -0.016929, - 0.064812, - 0.062736, - -0.16097, - -0.027013, - 0.16666, - 0.19144, - 0.0072695, - 0.19195, - 0.13789, - 0.10614, - 0.010027, - -0.0020981, - 0.013046, - -0.046251, - -0.038328, - -0.28786, - -0.085086, - 0.044896, - 0.032464, - -0.052031, - -0.069661, - 0.088798, - 0.093475, - 0.036611, - 0.045588, - -0.03759, - -0.0038898, - -0.020125, - -0.01937, - 0.086439, - -0.016051, - 0.088548, - 0.049044, - -0.11412, - 0.159, - 0.068822, - 0.009471, - -0.19465, - -0.044063, - 0.084828, - 0.087875, - 0.0019128, - -0.098547, - 0.11251, - 0.0042209, - -0.093525, - -0.051969, - 0.059091, - 0.12367, - -0.034971, - -0.14578, - -0.057804, - -0.090732, - -0.086522, - -0.091, - -0.052357, - 0.075118, - -0.039286, - 0.023747, - -0.20103, - 0.01043, - 0.13338, - 0.0082797, - -0.076471, - -0.10857, - -0.065342, - -0.077105, - -0.027272, - -0.063983, - -0.048678, - 0.0036452, - -0.064341, - -0.066968, - -0.052908, - 0.073308, - -0.11553, - -0.03346, - 0.074383, - -0.1095, - 0.039191, - -0.039704, - 0.051547, - -0.054669, - 0.01516, - -0.00059898, - 0.081863, - -0.046949, - 0.067547, - 0.020182, - -0.1345, - 0.026668, - -0.18324, - -0.02063, - -0.096376, - -0.0076183, - -0.19548, - 0.13447, - 0.19197, - -0.0073556, - -0.038166, - -0.014587, - 0.045419, - -0.043554, - -0.13644, - 0.015559, - 0.13572, - 0.025808, - 0.11781, - 0.01261, - 0.091973, - -0.18597, - 0.2106, - 0.011077, - -0.081646, - 0.053654, - -0.18418, - -0.0062894, - -0.034096, - -0.14446, - -0.090928, - 0.22493, - -0.024321, - 0.031834, - -0.14216, - -0.0010866, - -0.12788, - 0.017149, - -0.085253, - 0.034127, - -0.036485, - -0.003099, - -0.042137, - 0.075626, - 0.14016, - 0.046241, - 0.031403, - -0.097595, - 0.10468, - -0.062248, - -0.015242, - -0.081345, - -0.10279, - -0.10627, - -0.056089, - -0.029243, - -0.0011459, - 0.032299, - -0.025648, - -0.056951, - -0.034161, - 0.061625, - 0.088833, - 0.10128, - -0.066608, - 0.052916, - 0.13916, - 0.072689, - 0.043623, - 0.023413, - -0.019521, - -0.022148, - 0.017707, - -0.067892, - 0.11728, - 0.081164, - -0.071771, - 0.092572, - -0.054507, - 0.047842, - 0.059584, - -0.011691, - -0.095193, - 0.046491, - -0.069835, - 0.036367, - -0.067606, - 0.017396, - 0.048166, - 0.035445, - 0.056733, - -0.098895, - 0.19074, - -0.16844, - -0.071263, - 0.085769, - -0.093331, - -0.0064025, - 0.033683, - 0.0641, - -0.10504, - 0.15891, - 0.036372, - 0.070902, - 0.04912, - -0.047379, - 0.057341, - -0.042428, - -0.058885, - 0.007248, - 0.040361, - 0.08347, - -0.097929, - -0.23862, - -0.15623, - -0.034273, - -0.0018704, - 0.040427, - 0.15539, - -0.061189, - 0.15135 - ], - "antidepressant": [ - -0.011446, - -0.03147, - -0.023911, - 0.050711, - 0.0050533, - -0.0029507, - -0.034256, - -0.057869, - -0.014887, - -0.0039704, - -0.037608, - 0.011014, - -0.0016598, - -0.016943, - 0.0016506, - -0.020723, - 0.035439, - -0.046416, - 0.025001, - -0.011957, - -0.019277, - 0.015624, - 0.0066869, - 0.015522, - -0.012916, - -0.0055873, - 0.0068251, - 0.048648, - 0.013696, - 0.024158, - 0.0073455, - -0.0071105, - -0.0044246, - -0.028657, - 0.021628, - 0.008475, - 0.0051989, - -0.044921, - 0.0054852, - -0.0087019, - -0.014691, - -0.050597, - -0.0053803, - -0.0056542, - 0.0084604, - -0.00010714, - -0.018933, - 0.099766, - -0.018747, - 0.052625, - -0.024035, - -0.059132, - -0.022308, - 0.027811, - -0.016968, - -0.069389, - 0.022173, - 0.020149, - -0.0026223, - 0.025137, - -0.0066257, - -0.0032363, - 0.091887, - 0.029802, - -0.062667, - -0.011935, - 0.05163, - -0.017207, - -0.021288, - 0.023453, - 0.0079048, - 0.057177, - -0.0017233, - -0.026044, - -0.057798, - -0.02335, - -0.023754, - -0.0053385, - -0.010323, - -0.034973, - -0.0089811, - -0.0011942, - -0.0072372, - 0.0063117, - -0.012405, - 0.03249, - 0.028224, - -0.035795, - -0.0064435, - -0.059765, - 0.030795, - 0.052295, - -0.067294, - -0.020395, - -0.028155, - 0.039605, - 0.02034, - -0.0039097, - 0.05111, - 0.009869, - -0.016151, - 0.01486, - -0.0029729, - -0.013947, - -0.021652, - -0.047073, - -0.013159, - -0.013075, - 0.020342, - 0.050812, - -0.009625, - 0.043727, - 0.0088154, - 0.0060125, - -0.0059133, - 0.032182, - -0.0052262, - 0.0083867, - -0.027219, - 0.00094525, - 0.03351, - 0.026604, - -0.018541, - -0.052931, - 0.035476, - 0.020478, - 0.032254, - -0.023217, - 0.014333, - 0.025289, - 0.0035956, - -0.015876, - -0.015838, - 0.011802, - 0.00047507, - -0.00034321, - 0.020825, - -0.00016278, - 0.023922, - -0.018751, - 0.03701, - 0.023258, - -0.075088, - 0.0040432, - -0.021175, - -0.039292, - 0.0078238, - -0.0042957, - 0.082411, - 0.019952, - 0.021782, - 0.057353, - 0.016223, - -0.024599, - -0.0030006, - 0.025252, - 0.0071942, - 0.020899, - 0.0504, - 0.01822, - 0.019705, - 0.004074, - -0.027419, - -0.013849, - -0.025513, - -0.034109, - 0.0079508, - -0.05231, - -0.019801, - -0.054649, - 0.026336, - -0.077476, - 0.029508, - 0.010507, - -0.032111, - 0.026998, - -0.037819, - -0.022704, - -0.019196, - -0.042664, - 0.031669, - -0.083864, - -0.05143, - -0.038809, - 0.027317, - -0.034771, - 0.016662, - 0.08513, - -0.047574, - 0.023884, - 0.055714, - 0.033805, - 0.050687, - -0.016144, - -0.0071577, - 0.01394, - -0.0015734, - -0.0012319, - 0.01558, - 0.020583, - -0.094266, - 0.043446, - -0.049317, - -0.00815, - 0.066609, - 0.053454, - -0.019477, - -0.010981, - -0.040589, - -0.0068138, - 0.096197, - 0.0031291, - 0.015178, - 0.0077528, - 0.036067, - -0.0040049, - 0.0047593, - -0.019617, - 0.0084015, - -0.005363, - -0.067322, - 0.0082589, - -0.018501, - 0.074652, - -0.0045412, - -0.038603, - 0.010095, - 0.021708, - 0.040949, - -0.0056186, - -0.013293, - -0.041921, - -0.030219, - 0.003978, - 0.042962, - -0.011889, - 0.0077238, - -0.045893, - 0.035118, - -0.0047166, - 0.028464, - 0.057623, - 0.01302, - -0.014371, - -0.028875, - -0.058889, - -0.011719, - 0.0021918, - 0.038543, - -0.0081367, - -0.0152, - 0.035715, - 0.010549, - -0.027377, - 0.0078314, - -0.031002, - 0.015786, - 0.027836, - 0.054822, - -0.087296, - 0.049307, - 0.04519, - 0.045777, - -0.0047031, - -0.038606, - -0.026576, - -0.062379, - -0.0073176, - 0.010791, - 0.067727, - -0.032771, - 0.062349, - -0.060933, - -0.015254, - -0.0046179, - -0.040937, - 0.004745, - -0.0051579, - -0.025215, - 0.010173, - 0.10243, - -0.073176, - -0.059892, - 0.024456, - -0.014549, - 0.054641, - -0.032246, - 0.028897, - -0.033775, - -0.024721, - -0.0060659, - -0.040313, - -0.0091545, - -0.03615, - -0.070167, - 0.018778, - 0.015121, - 0.037782, - 0.050386, - 0.015285 - ], - "psychology": [ - 0.027021, - -0.08521, - -0.013733, - 0.0036399, - 0.0056981, - -0.077321, - -0.0065577, - -0.084368, - 0.033747, - -0.0028016, - -0.013115, - -0.044541, - 0.028746, - -0.0039727, - -0.0172, - -0.042145, - 0.10429, - 0.025447, - 0.036972, - 0.055721, - 0.0049466, - 0.012281, - 0.050679, - 0.04635, - -0.012445, - -0.0047956, - -0.0081461, - 0.040205, - -0.0096618, - 0.018448, - 0.0076478, - -0.011684, - -0.070925, - -0.035953, - 0.010697, - 0.041825, - 0.055903, - -0.028602, - 0.016226, - -0.04015, - -0.035389, - -0.10827, - -0.031518, - -0.037515, - 0.026956, - -0.0079818, - 0.002216, - -0.0039072, - 0.0048667, - -0.0091311, - -0.0058107, - 0.016007, - 0.023881, - 0.0059999, - -0.027806, - 0.044722, - -0.014907, - 0.0091349, - -0.0098042, - 0.035691, - -0.00052288, - -0.079065, - 0.061549, - 0.030576, - 0.026193, - 0.013794, - -0.0076444, - 0.019934, - -0.032425, - 0.016345, - -0.0098088, - -0.00030052, - 0.0034004, - -0.01548, - -0.028104, - -0.029457, - -0.010666, - -0.017597, - 0.030627, - 0.027151, - -0.025698, - 0.035511, - -0.046317, - 0.051581, - -0.057495, - -0.032475, - 0.063094, - -0.013502, - 0.053447, - 0.033397, - 0.050484, - 0.038063, - -0.073936, - 0.017908, - 0.0099703, - 0.073509, - -0.038479, - -0.032785, - 0.020636, - 0.01148, - -0.0066516, - 0.058232, - -0.030406, - -0.040131, - 0.0088885, - -0.050492, - -0.0048341, - 0.05205, - -0.001233, - -0.018336, - -0.061483, - 0.063779, - 0.026098, - -0.039755, - 0.036615, - 0.010527, - -0.049453, - -0.02787, - -0.026019, - 0.018599, - 0.025235, - 0.014393, - -0.013549, - -0.040065, - 0.041495, - 0.053443, - -0.085899, - -0.04358, - 0.03999, - 0.11615, - 0.010134, - -0.00058192, - -0.0094948, - 0.02904, - 0.046005, - 0.055632, - -0.0066247, - 0.010318, - 0.023226, - -0.02764, - -0.0010962, - -0.0016471, - -0.053076, - 0.050018, - 0.00075926, - -0.02771, - -0.027535, - -0.010291, - 0.040518, - 0.0082765, - 0.05158, - 0.045457, - -0.00094737, - -0.039988, - -0.036861, - 0.060257, - 0.024322, - 0.012183, - 0.053326, - -0.010499, - 0.035608, - 0.0042424, - -0.082256, - -0.0008019, - -0.019186, - -0.037381, - 0.01972, - 0.022365, - -0.011059, - -0.039655, - 0.019417, - -0.058405, - -0.0013916, - 0.022066, - 0.089538, - 0.045991, - 0.023761, - 0.035524, - -0.013427, - -0.0084991, - -0.02236, - -0.0087424, - -0.060032, - -0.033836, - 0.024039, - -0.024266, - -0.0035458, - 0.090213, - 0.025922, - 0.072132, - 0.02195, - 0.074404, - -0.024182, - -0.057553, - 0.0015412, - 0.018787, - -0.043563, - -0.00066877, - -0.0069514, - -0.0032449, - -0.10914, - -0.030896, - -0.0061635, - -0.037981, - 0.020441, - -0.0045376, - -0.011048, - -0.047838, - -0.013685, - 0.014264, - 0.093449, - 0.019616, - -0.018795, - -0.0078422, - 0.041269, - 0.077179, - 0.023305, - -0.036064, - -0.031008, - -0.026603, - -0.074247, - -0.021197, - -0.053766, - 0.067898, - -0.005628, - -0.047293, - -0.0026969, - 0.082224, - 0.012984, - -0.019929, - 0.041398, - -0.018132, - -0.04438, - -0.019626, - 0.009618, - 0.031369, - 0.033458, - -0.014352, - 0.0031025, - 0.016895, - 0.016033, - 0.00758, - -0.019915, - 0.027609, - 0.02251, - 0.012945, - 0.0056578, - -0.0029912, - -0.025377, - 0.022002, - 0.053959, - 0.034101, - -0.011666, - -0.062658, - -0.0014688, - 0.0084723, - 0.010313, - 0.053565, - 0.069233, - -0.042599, - 0.027791, - 0.02529, - 0.043428, - 0.02489, - -0.02316, - 0.0012576, - -0.0011362, - 0.018606, - 0.05365, - 0.037417, - 0.02879, - 0.070169, - -0.075847, - -0.001019, - -0.0084309, - -0.015927, - 0.0013092, - 0.04502, - 0.0027139, - 0.0061467, - 0.079773, - -0.0081886, - 0.0021051, - -0.065616, - -0.026596, - 0.0045335, - -0.021254, - -0.0035865, - -0.050517, - -0.025102, - -0.0062714, - -0.0021474, - -0.0143, - -0.020887, - -0.059189, - 0.052273, - 0.023266, - 0.015325, - -0.032679, - 0.099908 - ], - "vernacular": [ - 0.0012557, - -0.036113, - 0.038738, - 0.0052511, - -0.013907, - 0.0059628, - -0.021593, - -0.071313, - 0.0070423, - 0.019863, - 0.04592, - -0.080257, - -0.021263, - -0.0068902, - -0.0015567, - -0.0040176, - 0.088807, - 0.023394, - 0.039321, - 0.039878, - -0.001028, - -0.013088, - 0.1006, - 0.046314, - -0.014076, - -0.013719, - -0.0088253, - 0.058828, - 0.03654, - 0.045136, - 0.0090262, - -0.014011, - 0.018804, - -0.058694, - 0.048969, - 0.02109, - 0.055431, - 0.089851, - 0.012725, - -0.012816, - 0.044494, - -0.11402, - 0.011718, - 0.033875, - -0.0018321, - -0.039382, - -0.03376, - 0.0012049, - 0.010069, - 0.033315, - -0.010481, - -0.0028743, - -0.0054353, - -0.011815, - -0.036129, - 0.0062811, - 0.032057, - 0.0040922, - -0.052928, - 0.014405, - 0.057244, - 0.0095656, - 0.11209, - -0.040617, - 0.013751, - -0.0066948, - -0.0064019, - 0.059943, - 0.0093419, - -0.048988, - -0.039304, - 0.019146, - 0.017626, - -0.021087, - 0.038976, - 0.0090268, - -0.053009, - -0.032378, - 0.023927, - -0.0032264, - 0.012956, - 0.0087378, - 0.00064061, - 0.052167, - -0.047646, - -0.037253, - -0.0087319, - -0.0051844, - 0.0027462, - 0.039005, - -0.066151, - 0.027454, - -0.065363, - 0.020486, - 0.022281, - 0.055301, - 0.01205, - 0.013004, - -0.0076059, - 0.024809, - 0.050125, - 0.0096968, - -0.056974, - 0.021774, - -0.0020777, - -0.090914, - 0.021548, - 0.034047, - 0.0050261, - 0.046199, - -0.021697, - 0.051977, - 0.052785, - 0.060903, - -0.10617, - -0.027716, - -0.022705, - 0.047292, - -0.035082, - -0.013638, - -0.006876, - -0.047231, - -0.035184, - -0.067396, - 0.053115, - 0.015089, - -0.051765, - -0.022212, - -0.045659, - 0.084129, - -0.047329, - 0.025715, - 0.0032646, - -0.007187, - -0.022645, - 0.030035, - -0.0039526, - 0.052256, - 0.019026, - -0.01144, - 0.049282, - -0.010123, - 0.017099, - 0.03163, - -0.0013668, - -0.07582, - 0.052838, - 0.032936, - -0.029833, - -0.038222, - 0.049168, - 0.07542, - -0.010681, - 0.028203, - 0.054868, - 0.0069308, - 0.0099006, - 0.020682, - -0.040031, - 0.036767, - -0.011247, - 0.054439, - -0.043365, - -0.049271, - -0.00033322, - -0.017223, - 0.043561, - -0.034804, - -0.019396, - 0.037543, - -0.0081844, - 0.037532, - 0.0066408, - 0.03213, - -0.026647, - 0.04012, - 0.0046428, - 0.042072, - 0.0038843, - 0.0060405, - 0.019174, - 0.022339, - -0.058138, - -0.014686, - -0.046802, - 0.018447, - 0.025427, - 0.065914, - -0.0031448, - -0.020907, - -0.00015804, - 0.071, - 0.029396, - -0.031022, - -0.060998, - -0.00077731, - -0.0093986, - 0.044416, - -0.0034154, - 0.019536, - -0.12783, - 0.039657, - -0.0041301, - 0.016672, - 0.0071377, - -0.024641, - 0.03472, - 0.021337, - -0.03282, - 0.01694, - 0.086135, - -0.0052299, - -0.0041529, - -0.021489, - 0.016262, - 0.010835, - -0.020719, - 0.033834, - -0.030789, - -0.00050624, - 0.0082071, - -0.061577, - 0.04831, - 0.079905, - -0.012463, - -0.01261, - 0.078419, - 0.050348, - -0.016162, - -0.018814, - -0.026135, - -0.051566, - -0.064073, - 0.031402, - 0.022051, - 0.05014, - 0.020928, - -0.0015812, - 0.062122, - -0.05116, - 0.05093, - -0.035354, - -0.036537, - 0.02564, - -0.093382, - -0.0013753, - -0.068407, - -0.014251, - -0.019266, - 0.0062873, - 0.054434, - -0.013576, - -0.019631, - -0.008005, - 0.006614, - 0.01475, - -0.024581, - -0.0097058, - -0.018187, - -0.023662, - 0.017805, - -0.024577, - -0.017336, - -0.0025016, - 0.017429, - -0.017838, - 0.011826, - -0.0020137, - 0.015699, - -0.0099689, - -0.0063274, - 0.080899, - -0.090504, - -0.031076, - 0.012544, - -0.076374, - -0.026973, - 0.031103, - -0.016946, - 0.032154, - 0.069401, - 0.064146, - -0.011568, - 0.0095562, - -0.015086, - 0.014902, - 0.01897, - -0.027017, - 0.033753, - 0.036539, - 0.041085, - -0.027369, - 0.054611, - -0.029819, - 0.003694, - 0.043375, - 0.039353, - -0.008769, - 0.033843, - -0.0022636 - ], - "tech": [ - -0.05103, - -0.14686, - 0.062534, - 0.052371, - -0.036816, - -0.1017, - 0.029149, - -0.099881, - 0.14445, - -0.0022455, - -0.0676, - 0.00033667, - -0.057252, - 0.013993, - -0.04592, - 0.10303, - 0.17581, - 0.094398, - 0.12773, - -0.021655, - 0.017849, - 0.12681, - -0.013925, - 0.1036, - -0.0072584, - -0.073236, - 0.10466, - 0.028736, - 0.012943, - 0.052042, - 0.0064961, - -0.061597, - 0.031694, - -0.063068, - 0.080131, - 0.033354, - 0.095228, - 0.009302, - 0.046386, - 0.036624, - -0.11378, - -0.21548, - -0.033183, - 0.021136, - -0.017634, - 0.0034445, - 0.031598, - 0.016072, - 0.019413, - -0.011344, - 0.052857, - 0.026421, - 0.049037, - -0.058882, - 0.0043756, - 0.12826, - 0.028392, - -0.053529, - -0.017322, - 0.14936, - 0.016695, - 0.011904, - 0.17397, - 0.048077, - 0.11052, - -0.045421, - 0.0028807, - -0.023196, - -0.0022201, - -0.12159, - -0.014015, - -0.0012716, - 0.047898, - -0.0072757, - -0.053806, - 0.072787, - 0.035276, - -0.0088525, - 0.022723, - -0.14871, - -0.040002, - -0.015536, - -0.061538, - 0.080932, - -0.1045, - 0.0076676, - -0.053818, - -0.010055, - -0.034818, - -0.032972, - 0.025553, - -0.0014976, - -0.14343, - 0.010452, - -0.0011634, - 0.11482, - 0.038232, - -0.15817, - -0.13321, - 0.15021, - 0.10973, - -0.0029423, - 0.081425, - -0.080904, - 0.030397, - -0.21173, - 0.023331, - -0.00095786, - 0.087578, - 0.014575, - -0.018606, - 0.09467, - 0.066577, - 0.051715, - -0.035955, - 0.0072002, - -0.1758, - -0.013651, - -0.029699, - 0.041227, - -0.11641, - 0.024953, - 0.024842, - -0.023388, - 0.1391, - 0.053612, - -0.079945, - -0.052617, - 0.0035323, - 0.094009, - 0.023238, - 0.054378, - -0.027682, - -0.049373, - 0.089554, - -0.073506, - 0.054628, - 0.060468, - -0.13036, - 0.046534, - 0.02067, - -0.024002, - 0.0019115, - 0.078888, - -0.10856, - 0.0051849, - -0.072936, - -0.026636, - -0.014109, - -0.042076, - 0.02201, - 0.19634, - 0.03043, - -0.067653, - 0.0074118, - -0.013099, - 0.050047, - 0.021157, - -0.0033515, - -0.040553, - 0.040286, - 0.060894, - -0.077811, - 0.010296, - -0.0012013, - 0.010483, - -0.068335, - -0.070725, - -0.012681, - 0.0076141, - 0.014046, - 0.093877, - 0.056641, - 0.056994, - 0.023365, - 0.11238, - -0.010302, - 0.062055, - -0.034827, - 0.11295, - -0.020984, - 0.043729, - -0.15199, - -0.054167, - 0.020671, - -0.14028, - -0.041067, - 0.18025, - 0.038725, - 0.12022, - -0.098106, - 0.057399, - 0.074689, - -0.014338, - -0.011196, - 0.035328, - -0.041901, - -0.055001, - 0.02058, - 0.045055, - -0.1947, - -0.0084821, - -0.047576, - 0.079666, - 0.053516, - 0.02125, - -0.097253, - 0.013443, - 0.039891, - -0.039643, - 0.17182, - 0.0053634, - -0.067786, - 0.018998, - -0.043294, - -0.017769, - 0.023609, - 0.020554, - 0.006753, - -0.029806, - 0.071601, - -0.0023086, - -0.08158, - 0.09202, - 0.017769, - -0.092961, - 0.04668, - 0.066609, - -0.034724, - 0.017581, - -0.050551, - -0.04269, - -0.070464, - -0.0086577, - 0.045458, - -0.044167, - 0.063959, - -0.0036821, - -0.047886, - -0.039319, - 0.031761, - -0.022128, - 0.16528, - 0.026753, - -0.054445, - 0.013796, - -0.044458, - 0.015956, - -0.097386, - -0.020957, - 0.10009, - 0.042133, - -0.19376, - -0.0035241, - 0.0075652, - -0.054043, - -0.051188, - 0.059721, - 0.070382, - 0.092606, - 0.028734, - 0.031854, - -0.026329, - -0.039085, - -0.013133, - -0.021005, - 0.082114, - 0.052914, - -0.074565, - 0.0025349, - -0.096418, - 0.12571, - -0.14455, - -0.026167, - 0.049515, - -0.08413, - 0.046382, - 0.056575, - -0.048007, - -0.08977, - 0.1981, - 0.079808, - 0.063706, - 0.020462, - -0.037026, - -0.10589, - 0.0028668, - -0.056902, - -0.021458, - -0.0092419, - -0.04695, - -0.014743, - 0.025959, - 0.019175, - -0.0037478, - -0.11414, - -0.055518, - 0.092256, - 0.072373, - -0.039973 - ], - "artistic": [ - -0.037062, - -0.064949, - 0.074226, - 0.021054, - -0.07166, - -0.01288, - -0.0034038, - -0.059621, - 0.056437, - -0.024995, - 0.0034056, - -0.024761, - 0.026192, - -0.043702, - -0.0037872, - 0.03524, - 0.036656, - 0.01865, - 0.024767, - -0.020936, - -0.028655, - -0.0019885, - 0.02189, - 0.11731, - -0.033775, - 0.064621, - 0.001922, - 0.052279, - 0.055362, - 0.012047, - -0.072279, - -0.04375, - 0.034059, - -0.10499, - 0.016771, - 0.083325, - 0.080934, - 0.0014452, - -0.0040198, - 0.040099, - -0.035498, - -0.11592, - -0.0097266, - 0.0093329, - 0.021713, - -0.011199, - 0.056062, - -0.019864, - -0.058082, - -0.044387, - -0.0042069, - -0.041758, - -0.049326, - 0.078268, - 0.051097, - 0.021196, - 0.019072, - -0.023454, - -0.013696, - -0.0060977, - 0.056217, - -0.051684, - 0.11731, - -0.011241, - 0.14105, - 0.012337, - -0.042086, - -0.063598, - 0.066025, - -0.017311, - 0.05931, - 0.029809, - 0.03361, - 0.02753, - 0.012292, - 0.079862, - -0.011558, - -0.046379, - 0.041159, - -0.012094, - -0.037714, - 0.045815, - -0.045527, - 0.0095026, - -0.02101, - -0.055348, - -0.01696, - 0.0083849, - -0.0012865, - 0.01651, - -0.0014158, - -0.0038042, - -0.088891, - 0.018886, - -0.012215, - 0.064818, - 0.0063953, - 0.049104, - 0.038313, - 0.075426, - 0.071494, - 0.019901, - 0.0027253, - 0.039557, - -0.013326, - -0.093247, - -0.045242, - 0.050665, - -0.046324, - 0.037514, - -0.016885, - 0.10549, - 0.037765, - 0.0076112, - -0.046743, - -0.014062, - -0.0061224, - 0.0061685, - -0.04235, - 0.041808, - -0.054224, - -0.060802, - -0.1093, - 0.015349, - 0.11137, - -0.029206, - 0.058627, - -0.019313, - 0.0074448, - 0.06773, - -0.020057, - -0.010364, - -0.015351, - 0.0093712, - -0.046374, - 0.0041869, - -0.010587, - 0.030956, - -0.00069914, - 0.022302, - -0.0047026, - 0.031508, - 0.0087578, - 0.021999, - 0.0075995, - 0.014056, - -0.051415, - -0.0066691, - 0.0099119, - 0.017743, - 0.014542, - 0.16796, - 0.0079988, - -0.075931, - 0.022845, - -0.0016749, - 0.028464, - 0.038968, - -0.015515, - 0.031752, - 0.015729, - 0.0065017, - -0.09448, - 0.013468, - -0.02913, - 0.088416, - 0.021791, - 0.008264, - -0.045942, - 0.026346, - 0.1057, - 0.06823, - 0.060144, - -0.014676, - 0.008105, - 0.087922, - 0.026077, - 0.059659, - -0.019558, - -0.017502, - -0.0093052, - -0.0057079, - -0.035361, - -0.046507, - -0.028969, - -0.068703, - 0.001773, - 0.12261, - 0.020591, - -0.010862, - 0.032443, - 0.058098, - 0.13939, - -0.049638, - -0.085204, - -0.0047815, - 0.052284, - -0.0022963, - 0.035389, - 0.013334, - -0.11763, - 0.0038946, - 0.026139, - -0.030058, - 0.034795, - 0.0069621, - -0.02839, - 0.031304, - 0.0046381, - 0.001392, - 0.15325, - 0.0058378, - -0.017814, - -0.002309, - 0.0061199, - 0.010454, - 0.042321, - 0.011625, - -0.10791, - 0.0018227, - -0.0095327, - -0.022026, - -0.01484, - 0.064865, - 0.048422, - 0.061696, - 0.075169, - 0.060239, - 0.021324, - -0.025298, - -0.0029421, - -0.031011, - -0.076075, - -0.027345, - -0.0098978, - 0.020098, - 0.015675, - -0.088861, - -0.025336, - 0.0026063, - 0.024383, - -0.022934, - -0.055717, - 0.0024531, - -0.13623, - -0.018935, - -0.090799, - -0.063049, - -0.013904, - -0.002206, - -0.0092463, - -0.057245, - 0.0015593, - -0.017239, - 0.009019, - 0.047429, - -0.031362, - 0.027989, - 0.050415, - -0.0046889, - 0.050205, - 0.013509, - 0.042594, - 0.0068569, - 0.058486, - 0.0071059, - 0.012616, - 0.024303, - 0.036804, - -0.034698, - 0.046102, - 0.077096, - -0.10668, - -0.038033, - 0.057797, - -0.094695, - 0.023282, - 0.043965, - -0.024853, - 0.038363, - 0.1952, - 0.040384, - -0.052072, - -0.053475, - 0.037515, - 0.016432, - 0.0072761, - 0.0097684, - -0.035375, - 0.019031, - -0.057253, - -0.019189, - -0.01565, - 0.026128, - -0.012176, - 0.06436, - -0.0095783, - 0.038092, - -0.020661, - 0.014762 - ], - "enterprise": [ - -0.0092524, - -0.046285, - 0.0018914, - -0.020334, - -0.0747, - -0.021333, - 0.019301, - -0.070082, - 0.025579, - 0.030602, - -0.029138, - -0.041504, - -0.014815, - -0.052775, - 0.019842, - 0.0022997, - 0.064966, - -0.051825, - 0.05911, - 0.018818, - -0.048199, - -0.0040626, - 0.016313, - 0.061653, - -0.032346, - 0.029049, - -0.0036248, - 0.016436, - -0.034232, - 0.024654, - 0.014686, - -0.03343, - -0.025302, - -0.040974, - 0.02011, - 0.031675, - 0.038033, - -0.010434, - 0.063072, - -0.0042293, - -0.013443, - -0.078056, - 0.0047788, - 0.058507, - -0.048859, - -0.024395, - 0.01291, - -0.015448, - -0.019958, - -0.037975, - 0.030261, - 0.0032584, - -0.016594, - 0.01443, - -0.036118, - 0.0021766, - -0.032447, - 0.001966, - -0.024565, - 0.012563, - 0.014283, - 0.042295, - 0.0837, - -0.025126, - 0.06243, - 0.015273, - 0.026378, - -0.017601, - 0.042468, - -0.0090047, - 0.024486, - 0.0012283, - 0.017739, - 0.036704, - 0.023275, - -0.01131, - -0.015249, - 0.01359, - 0.047843, - 0.0050568, - -0.025089, - 0.012697, - -0.043856, - 0.061089, - -0.0027337, - -0.041307, - -0.057769, - -0.0013843, - -0.014107, - -0.0086408, - 0.024135, - 0.080014, - -0.079577, - -0.014186, - -0.0096739, - 0.056487, - -0.024101, - -0.057859, - -0.0047437, - 0.046223, - 0.01381, - -0.023329, - -0.02284, - 0.021414, - 0.017307, - -0.073518, - 0.017915, - 0.043127, - -0.028482, - -0.03094, - -0.012672, - 0.08127, - 0.039464, - 0.019397, - 0.0063103, - -0.020812, - -0.029438, - 0.015762, - -0.060589, - -0.016014, - -0.057915, - -0.050963, - 0.015024, - 0.0047515, - 0.053388, - 0.038444, - 0.00049879, - -0.092254, - 0.038195, - 0.069129, - 0.01722, - 0.015556, - -0.026407, - -0.037449, - -0.021104, - -0.020191, - 0.020221, - 0.0046019, - -0.013077, - 0.020747, - -0.0015641, - -0.033681, - -0.039963, - -0.011776, - -0.026086, - 0.00090026, - 0.012177, - 0.010201, - -0.021417, - -0.034981, - 0.065669, - 0.062863, - 0.038453, - -0.071939, - 0.044644, - 0.013668, - 0.0019766, - 0.020467, - -0.085603, - -0.021335, - 0.045127, - 0.00053389, - -0.054509, - 0.057382, - 0.027357, - -0.0018572, - 0.0080527, - 0.011811, - -0.013305, - 0.043948, - 0.016379, - 0.030406, - -0.04944, - 0.05738, - -0.037793, - 0.037909, - -0.034153, - 0.022994, - -0.020367, - 0.00046128, - -0.029204, - -0.051864, - -0.017537, - 0.0063263, - -0.013095, - -0.034916, - 0.010631, - 0.06161, - 0.0061266, - 0.024317, - -0.014206, - 0.052415, - 0.016495, - -0.02219, - 0.031103, - 0.0025132, - -0.017506, - -0.021139, - 0.011618, - -0.01384, - -0.11608, - 0.078151, - 0.0025262, - -0.010366, - -0.020698, - -0.00069228, - -0.021443, - -0.0040577, - 0.0072615, - 0.0010847, - 0.089617, - -0.018396, - -0.014188, - 0.0098527, - 0.0054464, - 0.026945, - -0.025614, - -0.024292, - 0.012202, - -0.0018157, - 0.0067168, - -0.028839, - 0.0057299, - 0.075513, - -0.044426, - -0.040522, - 0.050645, - 0.046058, - -0.029115, - -0.014358, - -0.042555, - -0.041727, - -0.030859, - 0.0082914, - 0.022261, - 0.010396, - 0.0063082, - -0.044445, - -0.0091527, - -0.038061, - 0.031578, - -0.0070442, - 0.022729, - 0.0073298, - 0.0073307, - -0.021599, - -0.036662, - -0.019022, - 0.019219, - 0.022407, - 0.016638, - -0.028518, - -0.0021938, - -0.019431, - 0.0024885, - 0.02243, - -0.06098, - 0.006549, - 0.023681, - -0.00043115, - -0.02482, - 0.043038, - -0.004596, - -0.024512, - -0.005127, - 0.0025842, - -0.0055346, - 0.0078573, - 0.027147, - 0.050335, - -0.019094, - 0.068018, - -0.084137, - -0.036243, - 0.013903, - -0.043672, - 0.032033, - -0.0081079, - -0.047464, - 0.023559, - 0.064362, - 0.010374, - -0.03525, - -0.01065, - -0.036402, - -0.033813, - -0.01225, - -0.036018, - -0.041251, - 0.011346, - 0.015782, - 0.044147, - -0.0057822, - 0.0024128, - -0.028216, - -0.032383, - -0.0076079, - -0.016675, - -0.039838, - -0.012689 - ], - "professional": [ - 0.0053005, - -0.048209, - 0.016939, - -0.0021666, - -0.010094, - -0.022061, - 0.011272, - -0.060988, - 0.033638, - -0.013724, - -0.02346, - -0.012945, - -0.034894, - -0.012021, - 0.0032839, - 0.057256, - 0.071275, - 0.021881, - 0.03524, - 0.0047965, - -0.00063948, - 0.0044027, - 0.024581, - 0.080118, - -0.028046, - 0.010314, - -0.030864, - 0.036443, - 0.017403, - 0.0068287, - -0.026112, - 0.0004298, - -0.010865, - -0.058017, - 0.040014, - 0.047385, - 0.0079821, - 0.035044, - 0.007004, - 0.019056, - 0.029769, - -0.071522, - 0.0085372, - -0.008844, - 0.017523, - 0.0021273, - -0.01149, - -0.022013, - -0.012074, - -0.013304, - -0.016945, - -0.023806, - 0.015663, - 0.01814, - 0.015587, - 0.0023993, - -0.02595, - 0.029201, - -0.0062898, - -0.024898, - 0.033813, - -0.015105, - 0.082048, - 0.020307, - 0.034917, - 0.0086932, - -0.053699, - -0.042673, - 0.021064, - -0.039136, - 0.033001, - -0.011999, - 0.046332, - 0.010909, - 0.0025004, - -0.00089459, - -0.032996, - -0.033224, - 0.0049034, - -0.0035455, - -0.0059704, - 0.027732, - -0.020309, - 0.024815, - -0.035807, - -0.02173, - -0.00080165, - 0.015245, - -0.014993, - 0.0073575, - 0.022926, - 0.02355, - -0.049111, - -0.0068572, - 0.030465, - 0.062389, - 0.008497, - -0.015548, - 0.060194, - -0.011978, - -0.011191, - 0.024567, - 0.0047934, - -0.024493, - 0.006945, - -0.076195, - 0.036838, - -0.0015645, - -0.019028, - -0.0038167, - -0.046465, - 0.055097, - 0.013282, - -0.0024347, - -0.0081514, - -0.0075022, - -0.0030489, - -0.036347, - -0.052921, - -0.0095697, - -0.0041741, - -0.012497, - -0.0066857, - 0.0057525, - 0.067391, - 0.00052401, - -0.0050421, - -0.022322, - 0.0080463, - 0.035766, - -0.010088, - 0.045237, - -0.012286, - -0.024731, - -0.047894, - -0.0074233, - 0.0030473, - 0.038375, - -0.032156, - -0.014819, - -0.0094938, - 0.013539, - -0.025879, - -0.0056136, - -0.020017, - -0.014894, - -0.0073606, - -0.058877, - 0.0084525, - 0.010638, - 0.062129, - 0.11644, - 0.00055159, - -0.037977, - 0.0059423, - -0.025602, - 0.010403, - 0.031667, - 0.027541, - -0.038069, - 0.0046815, - 0.042888, - -0.030492, - 0.010156, - -0.016571, - 0.0038135, - -0.0054988, - -0.0037158, - -0.0036334, - -0.016368, - 0.035079, - 0.018463, - 0.00055011, - 0.016732, - 0.032967, - 0.038783, - -0.015973, - 0.014331, - -0.01267, - -0.0037317, - -0.019668, - 0.0032519, - 0.0048896, - -0.0032697, - -0.013866, - -0.043526, - 0.021713, - 0.040154, - -0.0046942, - 0.02528, - -0.03339, - 0.05727, - 0.064543, - -0.055152, - -0.014132, - 0.0031194, - 0.034178, - -0.012948, - 0.0043979, - -0.014858, - -0.10959, - 0.031339, - -0.0041583, - 0.0046621, - -0.0038287, - -0.0035119, - -0.023634, - 0.012715, - -0.030924, - -0.0045363, - 0.12271, - 0.0026733, - -0.018194, - 0.0025394, - -0.037067, - -0.0095677, - 0.010803, - -0.031736, - -0.030029, - 0.016848, - -0.029159, - -0.019728, - -0.041651, - 0.060957, - 0.016513, - -0.016384, - 0.017242, - 0.062239, - 0.011016, - -0.032516, - 0.027814, - -0.029167, - -0.026289, - 0.017615, - -0.013576, - 0.01745, - 0.012064, - 0.0021579, - -0.044117, - 0.016995, - 0.050331, - -0.0024355, - 0.022572, - 0.022547, - -0.093028, - 0.0051892, - -0.033102, - -0.02517, - 0.0047888, - -0.052235, - 0.032198, - 0.028376, - 0.025328, - -0.0092971, - 0.0092291, - -0.0043739, - 0.0040809, - 0.027814, - 0.026005, - -0.0034123, - -0.018718, - 0.024891, - -0.019626, - 0.014163, - 0.0043818, - 0.016715, - 0.001403, - 0.016377, - -0.0027544, - -0.003269, - -0.024648, - 0.05161, - -0.067512, - -0.027638, - 0.017712, - -0.068519, - -0.0096262, - 0.011604, - 0.037387, - 0.025949, - 0.090754, - 0.049998, - -0.014827, - -0.024398, - -0.0051286, - 0.0052363, - -0.025051, - -0.046298, - -0.020006, - -0.010276, - 0.010381, - -0.036413, - -0.0103, - 0.015024, - -0.0069332, - -0.0012485, - -0.010831, - 0.025952, - 0.0049234, - -0.0098697 - ], - "Islam": [ - -0.011759, - 0.00063985, - 0.10908, - -0.068933, - -0.00073377, - 0.0084966, - -0.016794, - -0.10489, - 0.054973, - 0.067167, - 0.060658, - -0.065977, - 0.046921, - -0.064142, - 0.011487, - -0.070254, - 0.12453, - -0.073632, - 0.051444, - 0.015421, - 0.049886, - 0.086157, - 0.061821, - 0.055077, - -0.0085046, - 0.026547, - 0.00053302, - -0.076049, - 0.13467, - -0.034704, - 0.0048527, - 0.027433, - 0.02635, - 0.11106, - 0.022588, - 0.034685, - -0.032463, - 0.097279, - -0.0061833, - 0.081105, - -0.056311, - -0.044213, - -0.022563, - 0.062911, - 0.002227, - -0.030711, - -0.00096987, - -0.06517, - -0.011443, - -0.12731, - -0.0034354, - -0.11455, - -0.011842, - -0.029256, - -0.098143, - 0.11687, - -0.026931, - -0.076902, - -0.073389, - -0.020631, - 0.043822, - 0.11553, - 0.055201, - 0.01415, - -0.091389, - -0.03441, - 0.028436, - 0.067846, - 0.067739, - -0.14252, - 0.10206, - -0.033592, - -0.0065948, - -0.075528, - -0.040549, - -0.013528, - 0.1175, - -0.021402, - 0.054472, - 0.060995, - 0.0081786, - 0.10271, - -0.080879, - 0.048607, - -0.017033, - 0.035042, - -0.024385, - -0.025273, - -0.022548, - 0.056038, - -0.0087669, - -0.0097528, - -0.11381, - 0.00095122, - 0.028587, - 0.11136, - 0.049291, - -0.12198, - 0.087702, - -0.16585, - 0.025741, - 0.016104, - 0.09496, - -0.093942, - -0.054093, - -0.14182, - -0.059332, - 0.054344, - -0.093306, - 0.069894, - 0.01779, - 0.086231, - 0.071603, - -0.029921, - -0.065345, - 0.029301, - 0.099278, - -0.047743, - 0.050647, - 0.044197, - 0.055655, - 0.0061327, - -0.030491, - -0.064632, - -0.037117, - 0.10743, - -0.11669, - -0.054561, - -0.021242, - 0.23922, - -0.0016444, - -0.045821, - -0.0057433, - 0.10759, - -0.011053, - 0.029403, - 0.021082, - 0.017021, - 0.031715, - -0.19088, - -0.026114, - -0.030731, - 0.044351, - 0.057714, - 0.054711, - -0.033089, - -0.070782, - 0.016456, - 0.038878, - -0.050359, - 0.069371, - 0.018012, - -0.12016, - -0.067008, - -0.032389, - 0.04296, - 0.0034266, - -0.055217, - 0.026672, - 0.046768, - 0.034555, - -0.074829, - -0.13913, - -0.049745, - -0.080854, - -0.062382, - 0.062409, - -0.017444, - -0.0038839, - 0.028401, - -0.04392, - -0.046131, - -0.018027, - 0.066495, - -0.031532, - 0.052911, - -0.026547, - -0.012003, - 0.0051247, - -0.027183, - 0.016112, - 0.096859, - 0.033034, - 0.057225, - -0.0011099, - 0.019555, - 0.071364, - 0.1249, - -0.047008, - -0.077964, - -0.025491, - 0.089369, - -0.11204, - 0.073168, - -0.014152, - -0.010565, - 0.013774, - 0.052977, - -0.024562, - -0.13729, - -0.13762, - 0.13533, - 0.058811, - -0.093724, - -0.08746, - 0.055661, - 0.229, - 0.014002, - 0.0653, - -0.009115, - 0.12755, - -0.045497, - 0.0037189, - -0.023267, - 0.14435, - 0.1041, - 0.028073, - -0.060262, - 0.011105, - -0.071512, - -0.048904, - 0.039048, - -0.095427, - 0.14026, - -0.05712, - -0.046909, - 0.053483, - 0.11218, - 0.0005283, - -0.050725, - 0.040635, - -0.080727, - -0.10123, - -0.067458, - 0.026254, - -0.0092063, - 0.051998, - 0.087161, - 0.046698, - -0.001352, - 0.037193, - -0.083099, - -0.018383, - 0.023881, - 0.12603, - 0.10861, - 0.010289, - -0.0039393, - 0.032671, - -0.077731, - 0.077558, - 0.03757, - -0.034572, - 0.017382, - 0.0031396, - 0.038935, - 0.023498, - 0.051013, - -0.033857, - 0.014508, - -0.035927, - 0.019407, - 0.13981, - 0.00684, - 0.0094119, - -0.10696, - 0.028087, - 0.0040998, - 0.057109, - 0.042239, - 0.01998, - 0.12302, - -0.10119, - 0.0020564, - -0.010403, - -0.06307, - 0.020756, - 0.031254, - -0.045953, - -0.12167, - 0.027785, - -0.04451, - 0.056746, - 0.0487, - 0.0025086, - 0.0056593, - 0.080671, - 0.028514, - -0.0030981, - 0.018362, - -0.048669, - -0.019881, - -0.021111, - -0.032511, - 0.014167, - 0.0052386, - 0.097847, - 0.096321, - 0.0072158, - 0.017677 - ], - "painting": [ - -0.020975, - -0.0044006, - 0.089908, - -0.048997, - 0.018706, - -0.054555, - -0.028113, - -0.10011, - 0.030933, - -0.055602, - 0.019493, - -0.055287, - -0.023319, - 0.011538, - -0.056533, - -0.028291, - 0.022462, - 0.039702, - -0.0069503, - -0.03562, - -0.071413, - -0.020067, - -0.010723, - -0.0014661, - 0.015792, - 0.0062026, - 0.014249, - -0.016908, - 0.06657, - 0.064417, - -0.052269, - 0.008446, - 0.045798, - -0.049156, - 0.036761, - -0.02714, - 0.023185, - -0.024295, - 0.030542, - -0.011311, - -0.015135, - -0.09544, - 0.00014862, - 0.046052, - 0.010076, - 0.03206, - 0.011755, - -0.00024223, - -0.028204, - 0.020286, - -0.03556, - -0.016546, - -0.061168, - 0.076081, - -0.082263, - -0.08821, - -0.019538, - -0.020936, - -0.046849, - -0.01613, - -0.0057285, - -0.060445, - 0.071506, - 0.0071818, - 0.0072841, - 0.0062272, - -0.058921, - 0.034214, - 0.01865, - 0.079467, - 0.021344, - 0.035103, - 0.018344, - 0.0076611, - 0.037649, - 0.032622, - -0.029439, - -0.022107, - 0.022984, - -0.025034, - -0.013907, - -0.045897, - -0.012941, - 0.031344, - -0.098348, - -0.067635, - 0.051379, - -0.02436, - 0.0092047, - 0.016085, - 0.0056744, - 0.0021171, - -0.073518, - -0.019359, - 0.055455, - 0.028802, - -0.040921, - 0.036987, - 0.10151, - 0.01658, - 0.014238, - -0.023692, - 0.078129, - 0.083356, - -0.011036, - -0.097899, - -0.10766, - 0.076152, - -0.057197, - 0.023494, - 0.029007, - 0.029623, - 0.037499, - -0.023382, - -0.014359, - -0.084912, - -0.01898, - 0.0038916, - -0.011582, - -0.014438, - -0.051184, - 0.01784, - -0.098061, - 0.000099094, - 0.053921, - 0.024402, - 0.034622, - -0.09748, - -0.030697, - 0.098954, - -0.018367, - -0.0008712, - -0.028765, - 0.061773, - 0.021412, - 0.0023163, - 0.013979, - 0.040165, - 0.087512, - 0.013056, - -0.034797, - 0.026878, - -0.04753, - 0.034333, - -0.02798, - -0.051308, - -0.041255, - 0.0051795, - 0.019177, - -0.072671, - 0.027671, - 0.016968, - 0.039991, - -0.092305, - -0.078541, - 0.028578, - -0.00065506, - -0.022738, - 0.01659, - -0.0031408, - 0.025723, - -0.028175, - -0.056094, - -0.0017549, - -0.0079038, - -0.044226, - -0.024855, - 0.0069114, - 0.062185, - 0.03455, - 0.028566, - 0.060757, - 0.025604, - -0.034778, - 0.086612, - 0.019114, - -0.055896, - 0.017959, - -0.014056, - -0.025235, - 0.0086845, - 0.012428, - -0.0011393, - -0.013324, - -0.012477, - -0.015869, - 0.050954, - 0.08031, - 0.020136, - -0.064645, - 0.040354, - 0.036196, - -0.040268, - 0.0080309, - -0.047385, - -0.027427, - 0.067916, - -0.0092484, - 0.012481, - 0.023618, - -0.15188, - 0.083252, - 0.013536, - -0.031048, - 0.055005, - -0.012824, - 0.0068264, - -0.016537, - 0.011658, - -0.02647, - 0.081278, - 0.0059893, - 0.03878, - -0.034985, - 0.023672, - 0.013949, - 0.053672, - 0.029516, - -0.0040892, - -0.047486, - 0.0057262, - -0.067495, - -0.0052587, - 0.096019, - -0.022627, - 0.068639, - 0.060318, - 0.062075, - -0.025988, - 0.0017574, - 0.0036004, - -0.054841, - -0.0353, - -0.058375, - 0.017394, - 0.053956, - 0.036654, - -0.060241, - -0.01404, - -0.021468, - 0.053889, - -0.034921, - -0.075699, - -0.04644, - -0.04952, - 0.064649, - -0.075159, - 0.025154, - 0.017411, - 0.024202, - 0.029685, - 0.014166, - -0.042073, - -0.00020519, - -0.0201, - 0.021944, - -0.06056, - -0.01554, - 0.031205, - 0.036082, - 0.018536, - -0.013112, - 0.016921, - 0.043454, - 0.043475, - 0.011741, - 0.031057, - -0.023069, - 0.0099291, - 0.0004522, - -0.0047451, - 0.060957, - -0.067999, - -0.002964, - -0.042742, - -0.028036, - 0.084288, - 0.057471, - -0.0043092, - 0.059419, - 0.057907, - -0.015376, - 0.012449, - -0.016666, - 0.016258, - 0.036094, - -0.035122, - 0.0082681, - 0.0030375, - 0.030863, - -0.031634, - 0.011245, - -0.00889, - 0.0073242, - -0.04206, - 0.073695, - -0.024329, - 0.0073376, - 0.025239, - -0.011663 - ], - "institutions": [ - 0.025036, - -0.082834, - -0.0069496, - -0.032315, - -0.027667, - -0.054634, - -0.0004107, - -0.052045, - 0.035382, - -0.016189, - -0.0057085, - -0.039611, - 0.03132, - -0.012923, - 0.0063, - 0.031565, - 0.045699, - 0.0032414, - 0.035407, - 0.016279, - -0.027927, - 0.021955, - 0.0039879, - 0.07138, - -0.017287, - 0.038727, - -0.011113, - -0.01226, - 0.027768, - 0.034369, - 0.0010329, - -0.023286, - -0.049896, - -0.029156, - 0.012584, - 0.056863, - 0.027087, - -0.0034591, - -0.015018, - 0.052676, - -0.032427, - -0.089636, - -0.0085539, - 0.044247, - 0.010461, - -0.034791, - 0.019766, - -0.000073815, - 0.0049158, - -0.040021, - -0.030133, - 0.0012245, - 0.022037, - -0.0028622, - -0.055261, - 0.03772, - 0.0099106, - 0.042092, - 0.019872, - -0.0089498, - 0.049012, - 0.044911, - 0.095911, - -0.0014957, - 0.056007, - -0.040165, - -0.029723, - -0.0088079, - 0.012277, - -0.0039944, - -0.01076, - -0.018128, - 0.042835, - -0.0064425, - 0.0084445, - -0.030824, - -0.017197, - -0.019077, - 0.021158, - 0.039047, - -0.018434, - 0.02746, - -0.03265, - 0.033433, - 0.022079, - 0.012044, - 0.0061594, - -0.015147, - 0.012558, - -0.02399, - -0.015744, - 0.022984, - -0.046884, - 0.015735, - -0.019226, - 0.036932, - 0.03928, - -0.028772, - 0.024708, - 0.0004038, - 0.017124, - -0.018016, - 0.0021435, - -0.055237, - 0.046028, - -0.031886, - 0.0028743, - -0.024759, - 0.0057467, - 0.014812, - 0.012299, - 0.05571, - 0.029032, - 0.042747, - 0.01474, - 0.013259, - -0.008648, - 0.020444, - 0.00047357, - 0.032176, - 0.00012663, - -0.047827, - 0.043742, - -0.043422, - 0.057301, - 0.029171, - -0.029082, - -0.011485, - -0.00074134, - 0.086629, - -0.012696, - 0.092657, - 0.030073, - 0.035536, - 0.017648, - 0.036964, - -0.057621, - 0.0088439, - 0.011641, - -0.00091229, - 0.017116, - -0.033655, - -0.010152, - 0.027121, - 0.022863, - 0.0072321, - -0.01647, - 0.043637, - 0.011367, - 0.014834, - 0.031186, - 0.056268, - 0.02405, - -0.027926, - 0.024045, - 0.0033257, - -0.035334, - 0.02313, - -0.003045, - -0.019462, - 0.018199, - -0.013777, - 0.048811, - 0.021986, - 0.01135, - 0.0098509, - 0.020077, - 0.0022779, - -0.017627, - -0.029212, - 0.026703, - 0.0060991, - -0.015266, - -0.0083528, - -0.040893, - 0.046155, - -0.010859, - 0.044553, - -0.027468, - -0.027924, - -0.0089115, - 0.028845, - -0.024889, - 0.046017, - -0.03382, - -0.015311, - -0.023858, - 0.068299, - 0.028171, - 0.0064297, - -0.018877, - 0.065984, - -0.070395, - -0.055965, - -0.0052995, - -0.0093536, - -0.0066661, - -0.015266, - -0.004425, - -0.048287, - -0.10845, - 0.0031049, - 0.0021124, - -0.016602, - -0.019681, - -0.028194, - 0.014204, - -0.033361, - -0.027672, - -0.011003, - 0.0469, - 0.024109, - 0.036958, - 0.0072602, - -0.060438, - -0.0012687, - 0.036256, - -0.0093977, - -0.017309, - -0.013477, - -0.017516, - 0.0098527, - 0.0042075, - 0.065631, - 0.0076237, - -0.00044634, - 0.024642, - 0.027586, - 0.01073, - -0.007688, - -0.028621, - 0.031799, - -0.059119, - 0.0060261, - 0.0091792, - 0.0024149, - 0.0064864, - 0.0076109, - -0.013648, - 0.048689, - -0.0033305, - -0.024963, - 0.003213, - 0.0085047, - 0.035662, - 0.018164, - -0.034867, - -0.018652, - -0.021019, - -0.019086, - 0.00018675, - 0.0060221, - -0.027759, - -0.056739, - -0.034839, - 0.048806, - -0.012107, - 0.039451, - -0.012507, - 0.00061686, - 0.0017621, - -0.040674, - 0.035221, - -0.031308, - 0.011205, - 0.020981, - 0.033087, - 0.0085227, - -0.017154, - 0.034664, - 0.00064337, - 0.051036, - -0.065671, - -0.028336, - 0.016955, - 0.014362, - -0.0015533, - 0.032902, - 0.02587, - 0.0021922, - 0.016245, - -0.02965, - 0.0064021, - -0.02487, - 0.013093, - -0.0056042, - 0.0021432, - -0.044589, - -0.03656, - 0.023945, - -0.026723, - 0.038361, - 0.00056699, - 0.0052288, - -0.014758, - 0.028561, - -0.0039946, - -0.014342, - -0.037709, - -0.029453 - ], - "classicism": [ - -0.0043296, - -0.0052227, - 0.087769, - 0.036051, - -0.017718, - -0.0025678, - -0.0090824, - -0.094484, - 0.014897, - -0.023504, - 0.0012101, - -0.018163, - 0.021738, - 0.0024324, - -0.036491, - -0.0050256, - 0.072586, - 0.063967, - 0.034664, - 0.018829, - -0.035924, - -0.018484, - -0.037735, - 0.040246, - 0.014656, - 0.030246, - 0.00075372, - 0.03831, - 0.041606, - 0.023938, - -0.037423, - -0.030777, - 0.026069, - -0.029842, - -0.011653, - 0.004516, - 0.037964, - 0.013572, - 0.030322, - 0.021497, - -0.035277, - -0.10962, - -0.027176, - 0.002223, - -0.047798, - -0.013644, - 0.034166, - 0.0094337, - -0.030716, - -0.044234, - 0.01137, - -0.074365, - -0.051939, - -0.0017668, - -0.017808, - -0.059312, - 0.063996, - 0.059731, - -0.023912, - 0.05435, - 0.071975, - -0.02345, - 0.0032905, - -0.014884, - 0.028702, - 0.012348, - -0.067992, - -0.045747, - 0.024997, - -0.0005659, - 0.051166, - 0.021267, - -0.012366, - 0.00079667, - 0.052851, - -0.025578, - -0.038838, - 0.002398, - -0.009156, - 0.0019468, - 0.0066925, - 0.0048568, - 0.014255, - 0.014161, - -0.0054686, - -0.02592, - -0.023691, - 0.0044466, - -0.0067957, - 0.051546, - -0.013884, - 0.017664, - -0.070151, - 0.02475, - 0.048804, - 0.0080623, - -0.011825, - -0.024856, - -0.048806, - 0.094242, - 0.056152, - 0.041202, - -0.04098, - 0.039398, - -0.025524, - -0.011689, - 0.025659, - 0.029683, - -0.068694, - 0.03723, - -0.022174, - 0.032585, - 0.0075968, - -0.0070094, - -0.069538, - 0.011482, - 0.030543, - 0.056324, - -0.039408, - 0.016329, - 0.034063, - -0.072685, - -0.061034, - -0.045347, - 0.010262, - 0.0030918, - -0.0058061, - 0.035703, - 0.025932, - 0.13498, - -0.056198, - -0.027781, - -0.018602, - 0.035458, - -0.02417, - -0.025218, - -0.0253, - 0.043555, - 0.041056, - -0.11094, - 0.045531, - -0.03396, - -0.0054357, - 0.046364, - 0.011617, - -0.037122, - 0.088854, - 0.023295, - 0.0033433, - -0.029856, - 0.064629, - 0.016213, - 0.020748, - 0.044203, - 0.0036526, - 0.031134, - 0.044057, - 0.011805, - 0.0036443, - 0.013231, - 0.051328, - -0.022962, - -0.087593, - -0.021973, - 0.040614, - 0.078119, - -0.01534, - 0.018704, - 0.018439, - 0.0010567, - 0.010786, - -0.0038288, - 0.019367, - -0.021485, - 0.048712, - 0.042555, - -0.037217, - 0.0041498, - -0.063708, - -0.035197, - -0.013415, - -0.011672, - -0.030995, - -0.046145, - 0.043058, - -0.026312, - -0.0065439, - 0.11428, - -0.033197, - 0.00028776, - 0.045518, - 0.08231, - -0.051983, - -0.050833, - -0.023713, - 0.0059662, - 0.0099519, - -0.012336, - 0.027011, - -0.015395, - -0.15687, - 0.010268, - 0.0031691, - -0.021757, - -0.01216, - -0.015606, - 0.059029, - -0.019119, - -0.043139, - 0.0046322, - 0.10625, - 0.01962, - -0.0461, - 0.028855, - 0.063152, - 0.079075, - 0.0042151, - 0.041974, - -0.032671, - -0.040996, - -0.022051, - 0.024849, - 0.012505, - 0.078835, - 0.0371, - 0.03901, - 0.054153, - 0.096489, - 0.0029548, - -0.025209, - 0.014945, - -0.022462, - -0.06174, - -0.049757, - 0.012283, - 0.033563, - -0.032043, - -0.03045, - 0.008472, - -0.010426, - 0.01723, - -0.013433, - -0.0097839, - 0.026895, - -0.012309, - -0.005515, - -0.073973, - -0.044561, - 0.011559, - -0.02228, - 0.04764, - -0.071355, - -0.067716, - 0.022221, - 0.036154, - 0.02346, - -0.024125, - 0.013837, - -0.0080504, - -0.035958, - 0.0055645, - -0.026339, - 0.046638, - -0.014689, - -0.0089998, - 0.013946, - 0.020251, - -0.019455, - 0.009606, - -0.0059519, - 0.032598, - 0.083631, - -0.043402, - -0.014147, - 0.01702, - -0.039949, - 0.047029, - -0.0099119, - 0.0013886, - 0.073041, - 0.071146, - -0.025401, - -0.018101, - -0.021793, - -0.03404, - 0.0096405, - 0.042308, - 0.036587, - -0.019634, - 0.049144, - -0.030169, - -0.085824, - 0.0392, - -0.030929, - -0.023805, - 0.026152, - 0.027963, - 0.04711, - 0.0072244, - -0.028921 - ], - "shop": [ - -0.028881, - -0.047197, - -0.0037834, - -0.055274, - -0.049426, - -0.14534, - 0.085065, - -0.11533, - 0.033289, - 0.039731, - -0.049736, - -0.10968, - -0.10643, - -0.062125, - -0.08659, - 0.010464, - 0.2231, - 0.10896, - 0.044526, - 0.00026877, - -0.036608, - 0.1034, - -0.09431, - 0.061917, - -0.0265, - -0.01483, - 0.015887, - -0.042477, - -0.14742, - 0.02016, - -0.032204, - 0.02076, - 0.062318, - 0.0030061, - -0.011714, - 0.023646, - 0.11435, - 0.051998, - -0.045744, - -0.030839, - 0.062202, - -0.18873, - -0.032252, - -0.0012299, - -0.00017611, - 0.0050953, - -0.015812, - 0.021918, - -0.004015, - 0.022501, - 0.042157, - -0.047528, - -0.024818, - 0.040498, - -0.16105, - -0.0026441, - 0.023051, - -0.006621, - -0.088886, - -0.14901, - -0.075016, - 0.046919, - 0.20007, - 0.1584, - 0.026803, - 0.080099, - -0.051341, - -0.063566, - -0.042689, - -0.036152, - 0.043174, - -0.057099, - 0.044366, - -0.091036, - 0.0087852, - -0.010667, - 0.0043092, - -0.017275, - 0.0068822, - 0.001133, - -0.015872, - -0.065605, - -0.085159, - 0.064925, - -0.088068, - -0.091217, - -0.020914, - -0.066128, - -0.0030733, - -0.088594, - 0.033158, - 0.047241, - -0.1384, - -0.0025836, - 0.049628, - 0.087938, - 0.060009, - 0.12022, - 0.077765, - -0.0063801, - 0.04568, - 0.021787, - -0.013871, - 0.055486, - 0.043911, - -0.15481, - 0.0027243, - 0.092276, - -0.053758, - -0.021894, - -0.099539, - 0.14744, - 0.10193, - 0.15686, - -0.037488, - -0.026677, - -0.10336, - 0.01728, - -0.02859, - 0.0043573, - -0.069153, - 0.031485, - -0.089887, - 0.011183, - 0.076301, - -0.0084614, - -0.047349, - -0.14884, - 0.14219, - 0.11681, - 0.0070526, - 0.021309, - 0.079118, - 0.035049, - 0.011689, - -0.036686, - -0.019442, - 0.04293, - 0.01245, - -0.12055, - 0.039892, - 0.032242, - -0.015499, - 0.049471, - -0.086924, - 0.018706, - 0.011191, - -0.050147, - 0.0083288, - 0.0021668, - -0.048476, - 0.10856, - 0.029959, - -0.11286, - 0.047104, - -0.038412, - -0.004939, - 0.037422, - 0.019895, - 0.11068, - 0.03486, - -0.0066758, - -0.024357, - 0.10045, - -0.01666, - 0.013317, - 0.03831, - -0.046458, - 0.033212, - 0.13477, - -0.00077324, - 0.013442, - -0.010425, - 0.039199, - 0.058295, - 0.084977, - -0.10313, - 0.066158, - -0.034419, - -0.017263, - 0.023708, - -0.061214, - -0.036145, - -0.058108, - -0.035365, - -0.010329, - 0.016587, - 0.15196, - 0.012702, - 0.01294, - -0.055833, - 0.062958, - -0.021317, - -0.014832, - 0.013603, - 0.031074, - 0.057335, - -0.0075138, - 0.043185, - 0.093369, - -0.24041, - 0.15001, - -0.035746, - -0.021669, - 0.031399, - -0.034076, - -0.028264, - -0.04213, - 0.033989, - -0.069624, - 0.13138, - -0.016096, - 0.088514, - -0.080081, - -0.096161, - -0.027352, - -0.057294, - 0.009766, - 0.098587, - 0.0091002, - 0.15059, - -0.051197, - -0.0031057, - 0.13502, - -0.052931, - -0.017241, - -0.032461, - 0.038469, - -0.012653, - 0.037514, - -0.044165, - -0.12564, - -0.023038, - -0.054576, - -0.040867, - -0.036531, - 0.070089, - -0.019756, - 0.070909, - 0.0028223, - 0.17105, - -0.036669, - 0.042655, - -0.066015, - 0.029091, - 0.076194, - -0.02569, - 0.07658, - -0.0148, - 0.023436, - -0.094453, - -0.017838, - -0.034327, - 0.12806, - -0.0048483, - -0.097991, - -0.061543, - 0.03478, - -0.030617, - 0.0095959, - 0.060404, - -0.013415, - -0.0096243, - -0.068432, - -0.037507, - 0.018077, - 0.032408, - 0.018034, - -0.057185, - -0.010286, - -0.041996, - 0.12148, - -0.16642, - -0.011469, - -0.023639, - 0.035025, - 0.0074487, - 0.058232, - -0.10486, - -0.13015, - -0.0065445, - 0.081925, - 0.023232, - 0.011234, - -0.042586, - 0.021282, - -0.039711, - -0.1079, - -0.04984, - 0.015556, - -0.03551, - 0.15683, - -0.014738, - 0.059623, - -0.13832, - -0.07003, - 0.084261, - -0.0081699, - -0.063221, - -0.088616 - ], - "feline": [ - 0.00781, - -0.039219, - 0.063224, - -0.039273, - -0.057773, - 0.034247, - 0.039071, - -0.10092, - 0.0082129, - 0.060771, - 0.0063961, - 0.024715, - 0.10085, - -0.0022983, - -0.10851, - -0.0032215, - 0.037806, - -0.037637, - 0.023918, - -0.059721, - 0.026775, - -0.091587, - 0.091176, - 0.075615, - 0.11369, - -0.068362, - -0.0081556, - 0.074737, - -0.013744, - 0.028582, - -0.026851, - -0.05341, - 0.099609, - -0.0011323, - -0.016954, - 0.02749, - 0.07, - -0.095576, - 0.0077773, - -0.054597, - -0.011402, - -0.14442, - 0.022501, - 0.011455, - 0.019129, - 0.023608, - 0.067038, - 0.037931, - 0.042437, - -0.10318, - 0.039427, - 0.082108, - -0.007373, - -0.11244, - 0.0053694, - -0.059737, - 0.0093708, - 0.014252, - -0.044208, - 0.07329, - 0.10414, - -0.138, - 0.13196, - 0.0075614, - 0.039571, - -0.026909, - -0.0038331, - 0.067622, - -0.056011, - -0.089408, - 0.018414, - 0.063989, - 0.04796, - -0.069933, - 0.047096, - 0.082645, - -0.053612, - -0.0086342, - 0.036791, - -0.085228, - 0.034905, - 0.11375, - 0.088789, - 0.029196, - 0.075635, - -0.10575, - -0.089872, - 0.044215, - 0.074281, - 0.016425, - 0.039589, - 0.0012742, - -0.091599, - -0.036948, - 0.068439, - 0.096718, - 0.080919, - 0.047416, - 0.0064806, - 0.050775, - -0.0077425, - 0.075738, - -0.065974, - 0.0081116, - 0.034187, - -0.10821, - -0.099152, - -0.044552, - 0.023359, - -0.056782, - -0.025273, - 0.069659, - -0.0050755, - -0.066196, - -0.086489, - 0.024798, - 0.052817, - 0.024422, - -0.081015, - 0.0022376, - -0.059732, - 0.14344, - -0.014412, - -0.057233, - 0.18889, - 0.063351, - 0.060645, - -0.013866, - -0.019879, - 0.0061301, - 0.014167, - -0.037918, - -0.047351, - 0.03449, - 0.011845, - -0.021913, - -0.0016162, - 0.05798, - 0.1293, - -0.064039, - 0.025562, - -0.009727, - 0.031847, - -0.0071929, - 0.0059287, - -0.041233, - 0.033383, - -0.078071, - -0.031415, - -0.040153, - 0.01131, - 0.060657, - 0.0757, - -0.055154, - -0.015218, - -0.047987, - -0.054256, - 0.0096816, - -0.12115, - -0.014018, - 0.014053, - -0.041096, - -0.070045, - 0.067225, - -0.0037042, - -0.0016404, - -0.026865, - -0.089272, - -0.056003, - -0.0061851, - -0.020718, - 0.049235, - -0.057517, - 0.035678, - -0.0079271, - 0.074497, - 0.063834, - 0.0011094, - -0.029253, - 0.0055734, - 0.042932, - -0.045522, - -0.0026607, - -0.041162, - -0.040101, - -0.083401, - -0.039049, - 0.12841, - 0.0031555, - -0.08968, - 0.020293, - 0.010588, - -0.036186, - -0.036998, - -0.036739, - 0.17372, - -0.059796, - 0.074264, - 0.020161, - 0.0023664, - -0.17039, - 0.1061, - -0.0011138, - 0.05465, - 0.0098637, - -0.044434, - 0.0020614, - -0.032917, - -0.086211, - -0.013281, - 0.11035, - 0.020523, - 0.01993, - 0.024944, - 0.024171, - 0.0074132, - 0.0021316, - -0.050733, - -0.021209, - 0.024319, - -0.026763, - -0.038868, - -0.041804, - 0.051031, - 0.0036139, - 0.042062, - 0.038994, - 0.11871, - 0.10893, - -0.05201, - -0.030983, - -0.0040753, - -0.087951, - -0.070666, - 0.099553, - -0.059676, - 0.047268, - -0.0057621, - -0.057845, - -0.0045835, - 0.037937, - 0.036106, - -0.0028656, - -0.043951, - -0.091875, - 0.15182, - 0.0043032, - 0.00057879, - -0.0552, - -0.11692, - 0.029539, - -0.071584, - 0.020878, - 0.026514, - 0.084884, - 0.0040527, - 0.0050974, - 0.037777, - 0.0069147, - -0.029344, - -0.043948, - -0.064919, - 0.0066085, - -0.00849, - 0.03259, - 0.0016614, - 0.001235, - -0.029711, - 0.043293, - 0.062245, - -0.1018, - 0.093245, - -0.14023, - -0.042488, - 0.016996, - -0.016515, - -0.030957, - -0.062386, - 0.023156, - -0.057934, - 0.14729, - 0.070771, - 0.064264, - -0.026779, - -0.007194, - -0.049933, - -0.066671, - -0.024732, - -0.0028273, - 0.023651, - 0.078013, - -0.028182, - -0.066556, - -0.083978, - 0.023105, - 0.070714, - 0.042172, - 0.13037, - 0.0090967, - 0.067113 - ], - "journeys": [ - -0.082672, - -0.018826, - 0.040315, - 0.0078403, - 0.017242, - -0.032357, - -0.080238, - -0.082171, - 0.023972, - 0.012922, - 0.0024968, - -0.11753, - -0.093405, - -0.065054, - 0.037385, - -0.044914, - 0.093438, - -0.048584, - 0.063409, - 0.00057312, - -0.050844, - 0.053624, - -0.011816, - 0.051556, - 0.051175, - 0.069257, - 0.00027943, - 0.014183, - 0.008311, - 0.0047019, - -0.064264, - 0.041608, - -0.027424, - -0.056146, - 0.020904, - 0.066471, - -0.017835, - 0.024665, - -0.020404, - -0.01574, - 0.05167, - -0.071435, - -0.023599, - 0.0095423, - 0.030644, - -0.0054013, - 0.051012, - -0.054004, - -0.055701, - -0.022811, - -0.035382, - 0.018457, - -0.080248, - -0.03848, - -0.1246, - 0.016877, - -0.053528, - 0.034565, - -0.045974, - -0.022419, - -0.023601, - -0.0043737, - 0.14806, - -0.0070234, - 0.061525, - -0.078794, - -0.028311, - -0.085135, - -0.087051, - -0.0034332, - 0.04139, - -0.015483, - 0.025339, - 0.011469, - -0.00023269, - 0.051485, - 0.011928, - -0.035777, - -0.032074, - 0.0093009, - -0.039196, - -0.025636, - -0.046063, - 0.099983, - -0.0080704, - -0.0072402, - 0.057193, - 0.016905, - 0.02801, - -0.070932, - 0.031555, - 0.069338, - -0.042375, - 0.045054, - -0.027191, - 0.020411, - 0.024218, - 0.066479, - 0.0027902, - -0.0567, - 0.051314, - -0.013222, - 0.039837, - -0.0088134, - 0.074932, - -0.060862, - -0.020877, - -0.028426, - -0.0035829, - 0.0093961, - 0.050433, - -0.051087, - 0.075909, - 0.035275, - -0.077259, - 0.044568, - 0.027711, - 0.00021346, - -0.019649, - 0.027144, - 0.080611, - -0.015543, - -0.020451, - 0.040129, - 0.082838, - -0.060326, - 0.027248, - -0.1039, - 0.049692, - 0.099183, - 0.015713, - 0.097126, - -0.084156, - -0.035389, - 0.055017, - -0.029522, - 0.029499, - 0.030302, - -0.029467, - 0.023789, - -0.018549, - -0.075029, - -0.022427, - 0.030575, - 0.032083, - -0.026187, - -0.047203, - 0.0029862, - -0.094683, - -0.061933, - 0.02342, - 0.091368, - -0.06222, - -0.068295, - 0.058845, - 0.024724, - -0.073686, - 0.04044, - -0.079704, - -0.045882, - 0.055969, - 0.012732, - 0.039915, - 0.058676, - -0.026059, - 0.024998, - 0.067907, - -0.028326, - 0.073217, - -0.029928, - 0.049008, - -0.0078049, - -0.022771, - 0.00041612, - 0.047679, - 0.029591, - -0.018157, - 0.011527, - -0.015323, - 0.016691, - 0.062925, - -0.013963, - -0.029508, - -0.031089, - 0.009235, - -0.066749, - 0.038264, - 0.11939, - -0.020478, - -0.025876, - 0.048089, - -0.013591, - -0.043245, - 0.013254, - -0.032862, - 0.039351, - -0.097942, - -0.0014146, - 0.029978, - 0.033545, - -0.12422, - 0.099406, - 0.062888, - -0.032806, - -0.009844, - 0.040977, - -0.05818, - 0.034401, - 0.11256, - -0.055735, - 0.080032, - -0.014974, - 0.043918, - -0.012991, - 0.051523, - -0.078514, - 0.004337, - -0.059474, - -0.058199, - -0.041005, - 0.0017859, - 0.0073457, - 0.011968, - 0.077511, - 0.0022574, - -0.018487, - 0.019012, - 0.096625, - -0.030533, - 0.0073911, - -0.0086055, - -0.043801, - -0.087192, - 0.035151, - 0.09945, - -0.0054398, - 0.030897, - 0.027165, - -0.020754, - 0.062027, - -0.026821, - 0.061397, - -0.0033355, - -0.090253, - -0.010311, - -0.0042043, - 0.0089571, - -0.11514, - 0.012936, - 0.048168, - 0.041628, - -0.012169, - 0.021152, - -0.02695, - -0.025065, - -0.011833, - -0.022403, - 0.059188, - 0.059007, - 0.03531, - 0.0011849, - -0.0025333, - -0.052835, - -0.042613, - 0.075221, - -0.013627, - 0.034336, - -0.0034887, - 0.079929, - 0.0083731, - 0.0075229, - 0.09459, - -0.12287, - -0.02704, - 0.031693, - -0.064497, - 0.04286, - 0.00011662, - -0.014881, - 0.033287, - 0.033482, - -0.047639, - -0.032549, - -0.10134, - 0.011349, - -0.025774, - -0.088992, - -0.0055452, - 0.01666, - 0.052491, - 0.077013, - 0.040517, - -0.091387, - -0.015054, - -0.0041823, - 0.056306, - 0.054123, - 0.061099, - 0.0069057, - 0.0034763 - ], - "ringtones": [ - -0.0074004, - 0.04587, - -0.0080186, - 0.024177, - -0.0048957, - -0.026173, - 0.033073, - -0.07611, - 0.056545, - 0.048134, - 0.020925, - -0.040916, - -0.040408, - -0.051205, - 0.027437, - 0.015304, - 0.090799, - -0.00046354, - 0.050371, - -0.0064543, - 0.0074056, - -0.064106, - 0.079025, - 0.079197, - 0.10555, - -0.027213, - 0.044487, - -0.021339, - 0.003374, - -0.094324, - -0.084786, - 0.002696, - 0.056953, - 0.046246, - 0.047876, - -0.017491, - -0.0088076, - -0.0107, - -0.00075307, - -0.078457, - -0.0414, - -0.065426, - -0.12098, - -0.0066139, - 0.05643, - -0.034001, - 0.0018462, - -0.032476, - 0.0082176, - 0.0083712, - -0.10497, - -0.059015, - -0.056184, - -0.095562, - -0.074419, - 0.082971, - -0.088567, - 0.057885, - -0.033795, - 0.049581, - -0.08094, - -0.041921, - 0.17722, - 0.060387, - 0.0084954, - 0.01068, - 0.080859, - 0.032732, - 0.027766, - 0.0010957, - 0.04456, - -0.029778, - 0.035438, - 0.020116, - -0.018834, - 0.04652, - 0.0035179, - -0.10573, - -0.039798, - -0.036251, - 0.014762, - -0.077494, - -0.063002, - 0.028816, - -0.09042, - -0.072379, - -0.015928, - 0.00070501, - -0.094094, - -0.00068959, - -0.060443, - -0.050871, - -0.05925, - 0.0066997, - 0.019049, - 0.073073, - -0.0028605, - -0.037126, - 0.04984, - 0.025611, - 0.0045353, - 0.059813, - -0.02603, - 0.023397, - 0.0081974, - -0.031474, - -0.0065426, - -0.047315, - 0.035459, - -0.063472, - 0.040668, - 0.085614, - 0.10666, - 0.017016, - -0.069329, - 0.0062156, - -0.029368, - 0.020655, - -0.066618, - -0.062218, - 0.014901, - 0.08226, - 0.024325, - -0.036386, - 0.0931, - 0.058084, - 0.031594, - 0.064586, - 0.059315, - 0.044845, - -0.036483, - 0.045455, - -0.129, - 0.088894, - 0.054618, - -0.01368, - 0.0058643, - -0.040027, - -0.036185, - 0.0086846, - 0.022252, - 0.037279, - 0.034438, - 0.071755, - 0.036223, - -0.045157, - -0.029528, - -0.045457, - 0.011395, - -0.024601, - 0.022263, - 0.034224, - -0.032282, - 0.028721, - 0.015959, - 0.047429, - -0.088149, - 0.045163, - 0.044515, - 0.038494, - 0.020538, - 0.013094, - -0.019758, - 0.026098, - 0.070313, - -0.014036, - -0.048267, - -0.00076483, - 0.018298, - 0.055539, - -0.052282, - 0.15244, - 0.087677, - -0.014625, - -0.081109, - 0.079799, - 0.010798, - 0.022823, - -0.029472, - -0.058327, - 0.0104, - -0.014485, - -0.034348, - 0.010537, - -0.0268, - 0.0043657, - -0.021941, - 0.13029, - 0.055715, - 0.035778, - -0.026047, - 0.079927, - -0.1033, - 0.076761, - -0.028715, - -0.0005473, - 0.11677, - -0.015909, - 0.024056, - 0.033878, - -0.15082, - 0.027561, - 0.0035675, - 0.036152, - -0.0056517, - 0.020846, - 0.061535, - -0.040157, - -0.024622, - -0.07851, - 0.092304, - 0.062671, - 0.034096, - -0.027868, - 0.057687, - -0.064136, - -0.082782, - 0.02556, - -0.048655, - -0.032971, - 0.027113, - -0.029861, - 0.078669, - 0.10511, - 0.084474, - -0.024623, - 0.055235, - 0.011516, - -0.059638, - 0.0218, - 0.078131, - -0.0294, - -0.092546, - 0.0042904, - 0.10257, - 0.076954, - 0.022059, - -0.015274, - 0.022961, - -0.013553, - 0.065817, - -0.014737, - -0.021321, - -0.071956, - 0.057037, - 0.030492, - 0.070091, - 0.063035, - 0.025232, - 0.060212, - 0.05785, - -0.038433, - -0.039085, - 0.0095263, - 0.025739, - -0.021752, - -0.042934, - 0.0052932, - 0.026679, - -0.030185, - 0.10114, - -0.056731, - 0.072559, - -0.095438, - 0.054687, - 0.011178, - 0.013148, - -0.0018659, - 0.086693, - 0.047562, - 0.063362, - 0.071469, - -0.080249, - -0.032645, - 0.033789, - 0.013859, - -0.042204, - 0.065738, - 0.039193, - 0.024138, - 0.031743, - -0.014684, - 0.01769, - 0.010368, - -0.051809, - -0.10346, - -0.079842, - 0.068308, - -0.032083, - -0.0085879, - 0.037199, - -0.12728, - -0.031941, - 0.011994, - -0.0039496, - -0.074031, - -0.000337, - 0.020797, - 0.086995, - -0.034706 - ], - "encrypted": [ - -0.011533, - 0.027779, - -0.053908, - 0.04255, - 0.028566, - -0.0047853, - 0.0032083, - -0.080306, - -0.032758, - 0.037766, - -0.023114, - -0.04784, - -0.082432, - -0.014872, - -0.10237, - -0.0055282, - 0.041343, - -0.0037783, - 0.057243, - 0.014313, - 0.0086343, - -0.010013, - 0.039065, - 0.047688, - -0.0063463, - 0.069951, - 0.025467, - 0.017948, - 0.11094, - 0.014199, - 0.009032, - -0.020121, - -0.051534, - -0.012084, - 0.066889, - 0.002218, - -0.016536, - 0.054142, - 0.055974, - -0.022795, - -0.039894, - -0.088613, - 0.043464, - -0.0084991, - -0.022269, - -0.034242, - -0.01813, - -0.029496, - 0.041138, - 0.048997, - -0.013985, - -0.11542, - 0.058549, - -0.02532, - -0.099505, - -0.0080014, - -0.028068, - 0.029094, - 0.026607, - -0.0048991, - -0.012346, - -0.094234, - 0.18761, - -0.025777, - -0.032596, - 0.0024252, - 0.046939, - 0.033784, - -0.015078, - 0.002486, - -0.038543, - 0.017101, - 0.043199, - 0.089075, - -0.063987, - -0.032485, - 0.030663, - 0.014962, - 0.053808, - -0.068388, - 0.019314, - -0.066644, - 0.0095828, - 0.02444, - -0.014998, - 0.0025282, - 0.014587, - 0.013124, - 0.049423, - 0.0052579, - 0.025774, - 0.033829, - -0.052508, - -0.003677, - 0.0043978, - 0.033741, - 0.048768, - -0.031145, - -0.01139, - 0.033006, - 0.000809, - 0.013973, - 0.037424, - 0.022903, - -0.004449, - -0.069991, - 0.027223, - 0.035213, - -0.015642, - 0.034878, - 0.037081, - 0.10003, - 0.052315, - 0.029564, - -0.026669, - -0.029168, - 0.075293, - 0.066877, - -0.040696, - 0.059286, - 0.12478, - 0.022296, - -0.064647, - -0.015718, - 0.05691, - -0.068458, - -0.0060413, - 0.013677, - -0.011373, - -0.013572, - -0.061004, - -0.030431, - 0.047717, - 0.012282, - 0.057937, - -0.077023, - 0.02436, - 0.058131, - -0.034028, - 0.012665, - 0.066812, - 0.055793, - -0.027973, - -0.031057, - -0.03468, - -0.036039, - -0.10645, - -0.077806, - -0.012028, - -0.05246, - 0.023198, - 0.018487, - 0.063489, - 0.006093, - 0.065924, - 0.013109, - -0.072708, - -0.011117, - 0.031502, - 0.0035076, - 0.06752, - -0.053837, - -0.036977, - 0.079412, - 0.039114, - -0.11992, - 0.024979, - 0.072554, - 0.017723, - -0.019752, - -0.0038843, - 0.032761, - -0.040285, - 0.017813, - -0.041186, - 0.044935, - 0.034086, - 0.00089959, - -0.051249, - -0.0080779, - 0.037367, - -0.056492, - 0.0075344, - 0.014608, - -0.028614, - 0.049483, - -0.050383, - 0.086548, - 0.050485, - 0.073045, - 0.05406, - 0.048531, - 0.012884, - 0.0081208, - 0.022666, - 0.028186, - -0.040549, - -0.038311, - -0.046872, - 0.021236, - -0.10627, - 0.056176, - -0.036941, - 0.10517, - -0.03677, - -0.031483, - 0.0622, - 0.008246, - -0.021709, - -0.048381, - 0.077938, - 0.030454, - -0.014058, - 0.057677, - 0.056557, - 0.017914, - -0.084102, - 0.0086081, - -0.025927, - 0.013264, - 0.12875, - -0.0057615, - -0.0030374, - 0.081762, - -0.015198, - -0.029677, - 0.028646, - 0.018463, - 0.018041, - -0.036613, - -0.0034047, - -0.026717, - -0.044197, - -0.11769, - 0.0011211, - -0.081352, - -0.0043858, - 0.090051, - 0.00020565, - -0.023152, - 0.11288, - -0.050235, - 0.071632, - -0.016483, - -0.11057, - 0.010703, - 0.012149, - -0.009698, - -0.028356, - 0.021194, - 0.04136, - -0.050542, - -0.015977, - -0.0094546, - -0.015604, - 0.033469, - -0.016585, - -0.063212, - -0.039164, - -0.048862, - -0.0072919, - 0.056448, - -0.019915, - 0.035657, - 0.067667, - -0.065939, - 0.071353, - -0.057524, - 0.05533, - 0.020857, - 0.02051, - 0.052816, - -0.078966, - -0.037331, - -0.061334, - -0.060158, - 0.044314, - -0.043168, - 0.044016, - -0.02245, - 0.034723, - -0.077794, - -0.004412, - 0.0163, - -0.022942, - -0.058805, - -0.060486, - 0.026867, - -0.032491, - 0.0091264, - -0.038042, - -0.036968, - -0.045586, - 0.027431, - 0.014225, - -0.010567, - -0.0075717, - -0.075987, - -0.019898, - 0.042573 - ], - "contemporary": [ - -0.025925, - -0.034892, - 0.040948, - 0.034348, - -0.0079878, - 0.0053794, - -0.0092017, - -0.047606, - 0.013964, - 0.009211, - 0.00096798, - -0.045722, - 0.0089466, - 0.014675, - 0.012838, - -0.010491, - 0.056248, - -0.019336, - 0.034406, - 0.010233, - -0.01161, - 0.0017805, - 0.024903, - 0.044933, - 0.024719, - 0.0046583, - -0.037079, - -0.00012071, - 0.042569, - 0.024781, - -0.0054199, - 0.0071106, - -0.011938, - -0.043155, - 0.031641, - 0.015702, - 0.01401, - 0.020159, - 0.0033756, - 0.011376, - -0.0046523, - -0.072022, - 0.0041793, - 0.011982, - 0.0015838, - -0.0054953, - 0.0087664, - 0.011254, - 0.0013688, - -0.010093, - -0.038536, - -0.013498, - -0.042483, - 0.025645, - 0.02888, - 0.002163, - 0.024488, - 0.023345, - -0.032152, - 0.00011797, - 0.020577, - -0.0057404, - 0.10236, - -0.0058656, - 0.072727, - 0.016752, - -0.024222, - 0.028234, - 0.0096007, - 0.021167, - 0.015149, - 0.00007857, - 0.052639, - -0.0042004, - 0.025325, - 0.010467, - -0.002044, - -0.012498, - 0.018112, - -0.0082502, - 0.016559, - 0.062635, - -0.017434, - 0.038527, - -0.022879, - 0.015025, - -0.023931, - 0.00043639, - -0.01906, - 0.034672, - -0.01919, - -0.0078473, - -0.064886, - -0.014003, - 0.0053898, - 0.034854, - -0.012671, - -0.0024495, - -0.00051412, - -0.0056502, - 0.034753, - -0.014859, - 0.0051764, - -0.031641, - 0.002581, - -0.070301, - 0.020834, - 0.01903, - -0.0081044, - 0.011412, - -0.0063005, - 0.039344, - 0.024069, - 0.0098825, - -0.051654, - -0.011448, - 0.0077772, - 0.0030318, - -0.020452, - 0.018639, - -0.0039689, - -0.015166, - -0.0082478, - -0.0030528, - 0.0097051, - -0.012274, - -0.01784, - -0.015235, - 0.024894, - 0.067151, - -0.017635, - 0.051829, - 0.0095719, - -0.001213, - -0.0071101, - -0.00089331, - 0.011588, - 0.018942, - 0.022412, - -0.036306, - 0.018859, - 0.0034132, - -0.0029265, - 0.031948, - -0.025528, - -0.014529, - 0.031171, - 0.019547, - -0.017609, - -0.0052437, - 0.041687, - 0.076145, - 0.016149, - -0.025419, - -0.034231, - 0.011592, - -0.012701, - -0.00063719, - 0.0010857, - -0.018428, - 0.01007, - 0.040683, - -0.016933, - 0.017361, - -0.019073, - 0.025338, - 0.010128, - -0.024334, - 0.010711, - 0.032578, - -0.0096357, - -0.0073268, - 0.012897, - -0.015678, - 0.021054, - 0.040585, - -0.014944, - -0.016141, - -0.030757, - -0.020946, - 0.029378, - 0.039142, - 0.0079187, - -0.034415, - 0.010699, - -0.045353, - 0.0030514, - 0.069954, - -0.0027937, - -0.010537, - 0.02626, - 0.076078, - -0.0021906, - -0.039019, - -0.042109, - -0.0034694, - 0.019279, - 0.011753, - 0.0057245, - 0.0038095, - -0.077166, - 0.039753, - -0.022506, - -0.0089871, - -0.01128, - -0.015973, - 0.016692, - -0.0061919, - -0.011501, - 0.026587, - 0.10285, - 0.0041098, - -0.025741, - -0.0016099, - 0.010269, - 0.039546, - 0.010062, - -0.025086, - -0.015494, - -0.0021642, - -0.027515, - 0.004566, - 0.027474, - 0.070882, - -0.015367, - -0.0064122, - 0.057512, - 0.065811, - -0.011461, - -0.056646, - 0.010542, - -0.024938, - -0.019, - -0.021783, - 0.012969, - 0.016962, - 0.0079919, - 0.020066, - 0.059958, - -0.017912, - 0.033992, - 0.0016135, - -0.033566, - 0.019117, - -0.11695, - 0.0049116, - -0.054714, - -0.0013243, - -0.013348, - -0.035656, - 0.041822, - 0.0011297, - -0.023923, - 0.016712, - -0.024457, - 0.021825, - -0.011584, - 0.03941, - 0.026179, - 0.0081676, - 0.027467, - -0.039661, - 0.020626, - -0.0025629, - 0.024419, - -0.0017384, - 0.025948, - 0.037799, - -0.001494, - -0.019538, - 0.018395, - 0.05654, - -0.066463, - -0.02738, - 0.022686, - -0.069414, - 0.014924, - 0.03621, - -0.012386, - 0.032496, - 0.075408, - 0.019196, - 0.004787, - -0.03068, - -0.020435, - -0.0033392, - -0.023798, - -0.028273, - 0.0046775, - 0.018019, - -0.0135, - 0.0036515, - 0.0047022, - -0.031434, - -0.00016741, - 0.038316, - 0.0056085, - 0.034651, - -0.0083385, - -0.0084465 - ], - "cannabinoid": [ - -0.080403, - -0.030343, - -0.022012, - 0.060654, - -0.014887, - -0.057844, - -0.0083828, - -0.096149, - 0.0040417, - 0.037875, - -0.021785, - -0.0094673, - 0.024897, - 0.011537, - 0.053895, - 0.0024133, - 0.094241, - -0.016429, - 0.056369, - 0.014684, - 0.00019331, - 0.031368, - 0.076115, - 0.067349, - -0.027034, - -0.058585, - 0.014464, - 0.039156, - 0.043737, - 0.0086563, - -0.0038116, - -0.021493, - 0.03012, - -0.058516, - 0.060421, - 0.00023483, - -0.0031202, - -0.090325, - -0.02495, - 0.014082, - 0.016029, - -0.071982, - -0.031231, - -0.0657, - 0.074091, - -0.071289, - -0.0027649, - 0.076426, - 0.031511, - 0.035704, - -0.032844, - 0.065208, - 0.038931, - -0.04512, - -0.025781, - -0.09574, - 0.020057, - -0.0075042, - 0.0022113, - 0.068704, - 0.00060837, - 0.014505, - 0.095964, - 0.036852, - -0.029565, - -0.012926, - 0.048947, - -0.020445, - -0.022186, - 0.014469, - 0.014965, - 0.029222, - 0.0049327, - 0.01326, - -0.046387, - -0.037467, - -0.046991, - 0.00016462, - 0.033931, - -0.011997, - 0.024744, - 0.019189, - 0.015669, - 0.036089, - -0.032252, - -0.018707, - 0.015468, - -0.0097612, - 0.016642, - -0.018556, - 0.04137, - 0.030467, - -0.038268, - 0.010783, - -0.031561, - 0.10096, - 0.0029813, - 0.0028403, - 0.031853, - -0.01592, - -0.010342, - 0.041636, - -0.051478, - 0.040143, - -0.028694, - -0.038326, - -0.076471, - -0.025585, - 0.035624, - 0.032962, - -0.013339, - 0.053811, - 0.034892, - -0.040386, - -0.0067709, - 0.013326, - 0.015115, - -0.052592, - -0.031994, - 0.011074, - 0.011273, - -0.015232, - 0.030394, - -0.056526, - 0.08458, - 0.06525, - -0.028636, - -0.015589, - 0.0058228, - 0.064913, - 0.055333, - -0.036251, - 0.0079872, - 0.0010028, - 0.015253, - -0.076189, - -0.028781, - 0.018094, - 0.018505, - 0.0019831, - 0.03218, - 0.019982, - -0.037696, - -0.024568, - -0.0214, - -0.039349, - -0.0081667, - 0.029324, - 0.035683, - 0.0004128, - 0.034996, - 0.14147, - 0.036861, - -0.015598, - 0.010728, - 0.02407, - -0.012383, - -0.0038293, - 0.015789, - 0.031241, - 0.0091341, - 0.047064, - -0.058754, - 0.011099, - -0.0042506, - -0.02624, - 0.0010634, - 0.031316, - -0.018937, - -0.020543, - 0.007978, - -0.032062, - 0.037186, - -0.020479, - -0.042469, - 0.030052, - -0.021411, - -0.055704, - -0.063795, - -0.071407, - 0.016833, - -0.0095289, - -0.03273, - -0.0097506, - 0.059752, - -0.020103, - 0.021831, - 0.089244, - 0.010391, - 0.03263, - 0.05816, - 0.038913, - 0.018948, - 0.01901, - -0.087579, - -0.015507, - -0.058045, - 0.044874, - 0.0011664, - 0.022023, - -0.089381, - 0.0068228, - -0.071325, - -0.004965, - 0.0030439, - 0.035167, - 0.04326, - 0.02428, - 0.010589, - -0.0096794, - 0.10153, - -0.012373, - 0.018391, - 0.010477, - -0.0027351, - 0.049224, - -0.022209, - 0.0015911, - 0.024532, - -0.011092, - -0.031157, - 0.016944, - -0.016212, - 0.095969, - -0.050764, - 0.043548, - -0.015451, - 0.048755, - 0.029124, - -0.035192, - -0.054553, - -0.033163, - -0.045994, - 0.011051, - 0.013246, - -0.09997, - 0.020824, - 0.0032847, - 0.0014591, - -0.046162, - 0.018145, - 0.027608, - 0.00021303, - -0.00095316, - -0.058379, - -0.047445, - -0.043855, - 0.02765, - 0.068655, - -0.0017145, - -0.0064327, - -0.0057206, - 0.038984, - -0.084607, - 0.0011532, - 0.0096544, - -0.017445, - -0.00088174, - 0.057408, - -0.048027, - 0.022494, - -0.0055424, - -0.055836, - 0.019861, - 0.007572, - -0.040964, - -0.040941, - 0.0015533, - -0.053194, - 0.050148, - 0.033569, - 0.058997, - -0.061914, - -0.02239, - -0.027063, - -0.042669, - 0.033014, - 0.060185, - -0.026143, - 0.011427, - 0.059588, - -0.016407, - -0.031574, - -0.025477, - -0.045764, - -0.018351, - -0.028865, - 0.0051113, - 0.033224, - -0.011445, - -0.0071673, - -0.024084, - 0.00014394, - -0.036696, - -0.025037, - -0.0089276, - 0.0095275, - -0.0061032, - 0.0057567, - 0.0028081 - ], - "longevity": [ - -0.03347, - -0.016794, - -0.069936, - -0.035608, - -0.079516, - -0.03847, - -0.04796, - -0.073613, - 0.10139, - 0.042802, - -0.016229, - -0.023142, - 0.010511, - 0.029111, - -0.011934, - 0.035191, - 0.054324, - -0.0074524, - 0.025896, - -0.013113, - 0.021697, - 0.017996, - 0.014543, - 0.069646, - 0.07514, - -0.037028, - 0.011714, - -0.0089277, - 0.078067, - 0.015349, - -0.015911, - -0.071136, - 0.010368, - -0.080444, - -0.017029, - 0.033847, - 0.0186, - -0.087013, - 0.0099154, - 0.074606, - 0.031269, - -0.074443, - 0.018167, - -0.042875, - 0.0097905, - -0.014745, - -0.011749, - -0.050984, - -0.019283, - 0.016855, - -0.041517, - 0.012291, - -0.022975, - 0.029661, - -0.046767, - 0.063719, - -0.010228, - 0.018807, - -0.030256, - -0.019803, - 0.047778, - -0.038193, - 0.029911, - -0.053883, - 0.084735, - 0.025316, - 0.0057751, - 0.013154, - 0.049906, - -0.035964, - 0.035451, - 0.073078, - 0.019081, - -0.075162, - 0.050245, - 0.064868, - -0.030732, - -0.012364, - -0.035772, - 0.0057612, - -0.03432, - 0.013169, - 0.013765, - 0.065968, - 0.014486, - -0.025854, - 0.021124, - -0.019726, - -0.069147, - -0.021154, - 0.019491, - -0.0088717, - -0.083584, - 0.0087297, - -0.038613, - 0.02265, - -0.028309, - 0.07403, - 0.050723, - 0.043147, - -0.070293, - -0.057915, - 0.039746, - 0.030572, - -0.016833, - -0.05875, - 0.016797, - -0.066066, - 0.044019, - 0.040304, - 0.0087211, - 0.077923, - 0.042085, - -0.023972, - -0.059124, - 0.028654, - 0.013094, - -0.004601, - -0.049061, - -0.003786, - -0.036126, - 0.0183, - 0.026615, - -0.028167, - 0.04822, - 0.062126, - 0.049902, - -0.15498, - 0.073473, - 0.10783, - 0.047742, - -0.063073, - 0.0010041, - -0.058151, - -0.019786, - -0.039465, - -0.022144, - 0.037349, - 0.02571, - 0.019259, - 0.090256, - -0.017085, - 0.048057, - 0.036009, - 0.0092473, - -0.056209, - 0.014518, - 0.011704, - -0.014161, - 0.0025737, - 0.058836, - 0.060552, - -0.037089, - -0.067427, - -0.0018931, - 0.013683, - -0.0036842, - 0.065723, - 0.0061142, - -0.021658, - 0.035686, - 0.042039, - -0.091661, - 0.00089235, - 0.022878, - 0.012888, - -0.038623, - 0.010987, - -0.023246, - -0.011628, - 0.067247, - 0.044431, - -0.018314, - -0.012071, - 0.01567, - 0.044116, - 0.013194, - 0.0301, - -0.017742, - 0.012649, - -0.0054049, - -0.0095507, - 0.092189, - -0.074345, - -0.039794, - -0.038491, - -0.031349, - 0.093317, - 0.0097471, - 0.056933, - 0.018779, - 0.043608, - -0.0090579, - -0.038581, - -0.026192, - -0.0052201, - 0.018258, - -0.044659, - -0.0022084, - -0.016568, - -0.12856, - -0.00083151, - -0.035963, - -0.074371, - -0.029795, - -0.005454, - 0.05928, - -0.012367, - -0.00080202, - 0.012117, - 0.078296, - -0.015993, - 0.016717, - 0.013419, - 0.079167, - 0.028597, - -0.047711, - -0.016551, - -0.023662, - 0.0019546, - 0.053114, - 0.037027, - 0.017319, - 0.084818, - 0.049484, - -0.011073, - 0.056213, - 0.094846, - -0.025865, - -0.060613, - 0.012457, - -0.074184, - -0.10088, - -0.0072894, - 0.062598, - -0.008943, - -0.056793, - 0.0021292, - 0.047485, - 0.045096, - 0.032366, - 0.03693, - 0.041576, - -0.013853, - -0.066847, - 0.047487, - 0.029722, - -0.097221, - 0.043207, - -0.061906, - 0.042305, - 0.099805, - -0.0059127, - -0.054498, - 0.046299, - -0.022512, - 0.025402, - 0.024124, - 0.075228, - -0.0020611, - 0.035304, - -0.033911, - 0.012374, - -0.022904, - 0.061363, - -0.027965, - 0.044791, - 0.032731, - 0.013119, - 0.022914, - 0.0033899, - 0.065682, - -0.097024, - -0.036438, - 0.031646, - -0.04236, - 0.046381, - 0.015039, - -0.01442, - -0.023061, - 0.075957, - -0.0029377, - 0.021451, - -0.0041794, - 0.080823, - -0.0057044, - -0.046518, - 0.072688, - -0.11198, - 0.026234, - 0.039188, - -0.025119, - -0.0048786, - -0.057441, - 0.06881, - -0.018854, - 0.012344, - -0.039493, - -0.038439, - 0.016678 - ], - "statecraft": [ - -0.026708, - -0.10624, - -0.015517, - -0.0063141, - -0.00010268, - -0.052971, - -0.059933, - -0.0895, - 0.014748, - 0.062083, - 0.019802, - -0.022548, - -0.0045495, - 0.0042929, - 0.014082, - 0.016228, - 0.08299, - -0.040126, - 0.034666, - 0.025518, - -0.042762, - 0.065154, - 0.064618, - 0.010689, - 0.0076468, - -0.012743, - -0.0067777, - -0.027211, - -0.054415, - -0.031759, - 0.022095, - -0.022915, - -0.025717, - -0.018075, - 0.082033, - -0.031902, - 0.014355, - 0.010841, - 0.033187, - 0.014914, - -0.055046, - -0.082897, - -0.016062, - 0.030535, - -0.030903, - -0.096315, - -0.014565, - -0.0060643, - 0.016699, - -0.089515, - -0.032996, - -0.010506, - -0.020428, - -0.048706, - -0.032194, - -0.042407, - 0.0091408, - -0.014142, - -0.036318, - 0.0078391, - 0.035462, - -0.014293, - 0.053211, - -0.023252, - -0.010952, - -0.016246, - -0.012989, - 0.078107, - 0.063656, - 0.0081827, - 0.0080781, - -0.0058999, - -0.046917, - 0.025548, - -0.0025949, - 0.031086, - 0.0028877, - -0.052373, - 0.01027, - 0.016922, - 0.021107, - 0.013328, - -0.023299, - 0.087703, - -0.01955, - -0.036047, - -0.0046801, - 0.0092921, - 0.0096584, - 0.058514, - 0.019337, - 0.021823, - -0.072958, - -0.017914, - -0.010789, - 0.045923, - -0.038668, - -0.030575, - 0.0075763, - -0.017435, - 0.041198, - -0.01202, - 0.010918, - -0.085917, - -0.041444, - -0.031222, - 0.053525, - 0.011954, - -0.025244, - -0.061894, - -0.0026698, - 0.054318, - 0.029695, - -0.038495, - -0.020584, - -0.010258, - 0.051438, - 0.026529, - -0.056255, - 0.036309, - 0.012349, - -0.01589, - -0.048075, - 0.0063546, - 0.067907, - 0.046332, - -0.051962, - -0.058752, - 0.0026225, - 0.11098, - 0.002405, - 0.035247, - 0.029426, - 0.054844, - -0.031604, - -0.064761, - 0.020547, - -0.044825, - -0.0035978, - -0.034691, - 0.044847, - -0.061368, - -0.041928, - 0.035974, - -0.016664, - -0.029486, - 0.059066, - 0.038819, - 0.0163, - -0.0088737, - 0.07038, - 0.067591, - -0.011277, - -0.025516, - -0.040553, - 0.085603, - 0.032296, - -0.0079863, - -0.016513, - -0.04181, - 0.062839, - 0.060062, - -0.081036, - 0.00095259, - -0.056874, - 0.061878, - 0.040143, - -0.032412, - 0.018585, - 0.0039514, - 0.0012205, - 0.04529, - -0.060465, - 0.01284, - -0.012818, - 0.038952, - 0.0078151, - 0.028817, - -0.045249, - 0.027247, - -0.012748, - -0.0048687, - 0.057799, - -0.069377, - 0.047399, - -0.029334, - 0.0029192, - 0.11464, - 0.060421, - 0.032348, - -0.01023, - 0.079637, - -0.031821, - -0.086377, - 0.006458, - 0.053818, - -0.0065071, - 0.070109, - -0.078753, - 0.035653, - -0.081201, - -0.0030797, - 0.010096, - 0.035484, - -0.070379, - -0.0092411, - -0.0028206, - 0.011861, - 0.0461, - 0.015534, - 0.085788, - -0.0052253, - 0.01355, - 0.055676, - -0.021311, - 0.043489, - 0.027499, - -0.041405, - -0.039177, - 0.015051, - -0.012718, - -0.023066, - -0.022318, - 0.084846, - -0.038372, - -0.01644, - 0.071244, - 0.08996, - -0.052993, - -0.0010194, - -0.019215, - -0.037453, - -0.11758, - -0.032518, - 0.0042424, - 0.0014166, - -0.0073413, - -0.090518, - -0.045885, - -0.043722, - 0.046633, - 0.05101, - -0.04059, - 0.0054887, - -0.031265, - 0.036595, - -0.056694, - 0.019699, - 0.016531, - 0.050407, - 0.041492, - -0.016224, - -0.036839, - 0.018201, - 0.02496, - 0.034491, - -0.018213, - 0.034889, - -0.0065824, - 0.0061734, - -0.037072, - -0.030061, - 0.040009, - 0.018098, - -0.016465, - 0.013846, - 0.040334, - 0.0083347, - -0.047476, - -0.015856, - 0.021206, - 0.058988, - -0.075087, - -0.02556, - -0.032097, - -0.0045376, - 0.021243, - 0.03916, - -0.043679, - -0.018668, - -0.015226, - -0.016811, - -0.039268, - -0.037077, - -0.0034075, - 0.0063977, - 0.033052, - 0.0049941, - 0.023226, - 0.012495, - -0.039819, - 0.012847, - 0.03998, - 0.001428, - -0.0025537, - 0.056274, - 0.022591, - 0.0057424, - -0.031138, - -0.01734 - ], - "booze": [ - -0.041351, - 0.02192, - 0.051936, - -0.027742, - 0.0075048, - -0.032318, - 0.096965, - -0.065664, - 0.030468, - 0.1847, - -0.0045939, - -0.018995, - 0.051612, - -0.046892, - 0.023919, - -0.0013302, - 0.085438, - -0.079423, - 0.026679, - 0.059859, - 0.087682, - 0.070232, - -0.044488, - -0.015072, - 0.059221, - -0.086315, - 0.12689, - 0.02081, - 0.087852, - -0.0027001, - -0.028441, - -0.003121, - 0.012475, - -0.017083, - 0.086375, - -0.02911, - -0.02493, - 0.054954, - -0.029212, - 0.12606, - -0.018468, - -0.13298, - -0.037472, - 0.099485, - 0.041512, - -0.028778, - 0.070513, - -0.037936, - 0.0019558, - 0.032677, - -0.071159, - -0.052666, - 0.15329, - -0.12905, - -0.11549, - 0.042021, - -0.058827, - -0.074981, - -0.058496, - -0.044759, - 0.0030792, - -0.041178, - 0.12929, - 0.034122, - -0.10638, - 0.087165, - -0.0032804, - -0.084731, - 0.05692, - 0.039443, - 0.10826, - 0.070984, - 0.090604, - 0.052538, - -0.010265, - -0.015107, - 0.015711, - 0.014434, - -0.073243, - 0.029472, - -0.045253, - -0.10953, - -0.083796, - 0.14341, - -0.049215, - -0.014212, - 0.085443, - -0.084265, - 0.020366, - -0.023561, - 0.014708, - -0.042899, - -0.10606, - -0.018587, - 0.006427, - 0.059606, - -0.034296, - 0.075281, - -0.033958, - 0.11373, - -0.015725, - 0.041486, - -0.017811, - 0.014177, - 0.043973, - -0.084097, - -0.0026174, - -0.021456, - -0.0016436, - 0.06873, - 0.077303, - 0.071515, - 0.022779, - -0.024058, - 0.070053, - -0.078966, - 0.020754, - -0.075257, - -0.054831, - 0.03034, - 0.07343, - 0.026175, - -0.039882, - -0.13886, - 0.089174, - -0.032769, - -0.047755, - -0.10466, - 0.0027804, - 0.072913, - 0.037861, - -0.02513, - -0.038907, - -0.070486, - 0.059663, - -0.089067, - -0.10575, - 0.067111, - -0.015853, - -0.026724, - 0.14687, - -0.002402, - -0.0024823, - 0.016045, - 0.082969, - -0.021299, - 0.092526, - 0.073796, - -0.038954, - -0.058233, - -0.020354, - 0.089754, - 0.013899, - -0.019233, - -0.012684, - -0.0057274, - -0.034381, - -0.00060655, - 0.04731, - -0.064746, - 0.13913, - 0.084443, - -0.093859, - 0.0058234, - -0.058613, - 0.059362, - -0.030443, - -0.0049659, - -0.0091918, - 0.085404, - 0.0401, - -0.033748, - 0.036212, - 0.027335, - 0.040423, - 0.069792, - -0.066843, - 0.11604, - 0.073583, - -0.071911, - -0.054357, - -0.059187, - -0.097589, - -0.14882, - 0.12574, - -0.061315, - -0.00057334, - 0.18632, - 0.063933, - -0.0093564, - 0.052761, - 0.030641, - -0.030242, - 0.10597, - 0.10682, - -0.011285, - 0.026136, - 0.024362, - -0.02326, - 0.017799, - -0.17504, - 0.057827, - -0.021071, - -0.0088271, - 0.061892, - 0.088211, - -0.029503, - 0.046411, - 0.075812, - -0.032307, - 0.13149, - -0.0027896, - 0.085353, - 0.0045115, - 0.086268, - -0.0092799, - -0.13422, - 0.00014437, - 0.010715, - -0.095808, - 0.042459, - -0.10382, - -0.029938, - 0.073535, - 0.045218, - -0.043451, - 0.024664, - 0.019992, - -0.10386, - -0.046058, - 0.008322, - -0.028245, - -0.10177, - -0.044427, - 0.042897, - -0.081132, - 0.0021142, - 0.0091735, - 0.088996, - -0.12648, - 0.072988, - -0.081988, - 0.011991, - -0.085398, - -0.055959, - -0.0093277, - -0.047812, - -0.0094242, - 0.0015344, - 0.061299, - -0.051729, - 0.025968, - -0.014294, - 0.028586, - 0.03571, - -0.057632, - -0.012093, - 0.0043933, - 0.15185, - 0.090734, - 0.061453, - -0.020753, - 0.0097949, - -0.049632, - -0.03324, - 0.011336, - -0.0012641, - -0.011755, - 0.063744, - 0.13469, - 0.00024478, - 0.097676, - -0.14485, - -0.0097775, - -0.058938, - -0.062937, - -0.016014, - 0.056305, - -0.10643, - 0.072141, - 0.10781, - 0.086791, - -0.047029, - -0.026714, - -0.057863, - 0.06992, - 0.045585, - 0.08846, - 0.076356, - -0.12494, - 0.13577, - 0.0025509, - -0.087693, - 0.0023673, - -0.062298, - -0.0064899, - 0.081651, - -0.030402, - -0.045227, - -0.019145 - ], - "abilities": [ - -0.025594, - -0.018254, - -0.0018764, - -0.031336, - -0.0527, - -0.026566, - -0.011772, - -0.042425, - 0.024743, - 0.0059553, - 0.038856, - 0.033359, - -0.023595, - 0.018624, - -0.014026, - 0.0032707, - -0.011634, - 0.047555, - 0.041145, - -0.0072515, - -0.020904, - -0.0047994, - 0.031249, - 0.071122, - -0.069744, - -0.07034, - -0.015818, - -0.025472, - 0.084761, - -0.029153, - -0.050754, - -0.057719, - 0.0014257, - -0.030866, - 0.0075974, - -0.022258, - -0.0086839, - -0.064496, - -0.068099, - -0.042071, - 0.017112, - -0.072715, - 0.034595, - -0.022828, - 0.038357, - -0.06363, - -0.030807, - 0.01458, - -0.024485, - -0.05944, - -0.052643, - 0.016465, - 0.044893, - 0.023472, - -0.11245, - 0.063725, - 0.041267, - -0.012888, - 0.013167, - 0.0020675, - -0.016904, - -0.047164, - 0.12535, - 0.019985, - 0.0059849, - -0.043165, - -0.023102, - 0.019205, - -0.020577, - -0.0233, - 0.064106, - -0.016298, - 0.063587, - 0.032169, - -0.019655, - 0.027971, - -0.0114, - -0.0114, - 0.024947, - 0.016199, - -0.0093566, - -0.0084213, - 0.036237, - 0.060258, - 0.089349, - -0.042699, - 0.018002, - 0.010631, - -0.018241, - -0.0050021, - 0.053907, - -0.033031, - -0.056561, - 0.025407, - -0.019879, - 0.067749, - -0.014565, - -0.0081512, - 0.017649, - 0.015737, - 0.03887, - 0.043586, - 0.066212, - 0.026421, - -0.0014372, - -0.040593, - 0.025383, - -0.042142, - 0.028127, - -0.0031343, - -0.070576, - 0.032074, - 0.055991, - -0.017134, - 0.04535, - 0.013761, - -0.030761, - -0.031398, - -0.043368, - -0.012647, - -0.01035, - -0.023203, - 0.0081303, - -0.049108, - 0.10911, - -0.016424, - 0.045268, - -0.046158, - -0.0063869, - 0.10439, - 0.027581, - -0.016082, - -0.015378, - 0.00011263, - -0.022584, - -0.059977, - 0.046409, - 0.06768, - -0.013499, - 0.076634, - -0.046895, - -0.027383, - -0.0043408, - 0.048404, - 0.043103, - -0.049208, - -0.0021208, - -0.053636, - 0.027128, - 0.080023, - 0.04893, - 0.11328, - -0.0024448, - -0.050119, - 0.0074796, - 0.011386, - 0.025464, - 0.016679, - 0.018822, - 0.019822, - 0.051547, - 0.037216, - -0.0071118, - -0.024162, - 0.022514, - -0.032781, - -0.01944, - -0.070522, - -0.028701, - -0.0057663, - 0.073756, - -0.00088613, - -0.015884, - 0.023735, - -0.011848, - 0.06104, - 0.0029992, - 0.072205, - -0.035957, - 0.0056455, - 0.065075, - -0.037974, - -0.042798, - 0.0017059, - 0.010047, - -0.10749, - -0.0051926, - 0.10642, - -0.013068, - 0.041448, - 0.039589, - 0.084638, - -0.029696, - -0.076885, - -0.0025685, - 0.058728, - 0.040256, - 0.0031005, - 0.0067752, - 0.040407, - -0.077357, - -0.023145, - -0.025731, - 0.0055213, - -0.071531, - 0.0058885, - 0.040351, - 0.0029767, - 0.034851, - -0.017452, - 0.051521, - 0.026683, - 0.056707, - 0.012758, - 0.0096956, - 0.048855, - -0.018581, - 0.048851, - -0.13266, - 0.088105, - 0.0043175, - -0.00079463, - -0.012197, - 0.085134, - 0.12586, - -0.024497, - 0.0043138, - 0.060444, - -0.012562, - -0.032898, - -0.016412, - -0.017435, - -0.15157, - -0.054312, - 0.031285, - -0.0012233, - 0.033797, - -0.01766, - -0.012619, - 0.09007, - -0.031657, - 0.054756, - 0.0063643, - -0.014423, - 0.0015327, - 0.020084, - -0.0043138, - -0.12462, - 0.0088832, - -0.018403, - 0.041059, - 0.044055, - -0.01157, - -0.013532, - 0.023929, - 0.022128, - -0.020553, - 0.030186, - 0.0091213, - 0.086125, - -0.044854, - -0.01421, - -0.054577, - -0.040702, - -0.045181, - 0.015456, - 0.016212, - 0.063895, - 0.024967, - 0.022085, - 0.0040851, - 0.069839, - -0.082514, - -0.05266, - 0.11144, - 0.016456, - 0.0049145, - -0.00074392, - -0.006805, - -0.0014927, - 0.013254, - 0.010834, - 0.012554, - -0.018577, - 0.064986, - -0.011716, - -0.044231, - 0.024281, - -0.034458, - -0.0093423, - 0.018288, - 0.0079315, - -0.072449, - -0.021447, - -0.0063469, - 0.063329, - -0.0056798, - -0.054112, - -0.0021051, - -0.036474 - ], - "businesses": [ - -0.011022, - -0.05074, - -0.0031627, - -0.026151, - -0.078479, - 0.00019292, - 0.022467, - -0.066902, - 0.03512, - 0.038483, - 0.024929, - -0.054556, - -0.07561, - -0.0096169, - -0.015181, - 0.036346, - 0.054219, - -0.0039392, - 0.053169, - -0.0056939, - 0.0049024, - -0.0071504, - -0.0038801, - 0.060261, - -0.0085719, - 0.0074048, - -0.0036403, - 0.016761, - 0.053122, - 0.04002, - -0.051615, - -0.041188, - -0.015798, - 0.013165, - 0.040825, - 0.052329, - 0.024893, - 0.0072596, - -0.0057903, - 0.0031962, - -0.020828, - -0.046843, - -0.02118, - 0.026805, - 0.012427, - -0.052931, - -0.0069247, - 0.016071, - 0.001869, - -0.012267, - -0.025083, - -0.03891, - -0.018272, - 0.019166, - -0.059159, - 0.0061271, - -0.0024454, - 0.031173, - -0.027536, - -0.065156, - 0.0039333, - 0.013255, - 0.093655, - -0.0016193, - 0.068786, - -0.012833, - -0.0081909, - -0.033564, - 0.025463, - -0.038182, - -0.024135, - -0.013901, - 0.076019, - 0.049484, - 0.0029198, - -0.030537, - 0.037736, - -0.037433, - -0.011367, - 0.0032353, - -0.0089785, - 0.012259, - -0.043412, - 0.055526, - -0.0010723, - -0.022145, - -0.01803, - -0.019747, - 0.033423, - 0.001812, - -0.028265, - 0.002877, - -0.084122, - 0.041647, - -0.016245, - 0.047844, - -0.014541, - -0.0030715, - 0.04248, - 0.0037563, - -0.013892, - -0.010564, - -0.01317, - -0.038148, - 0.083348, - -0.056134, - 0.015364, - 0.019183, - 0.03748, - -0.027065, - -0.021874, - 0.063713, - 0.047845, - 0.028144, - -0.0071264, - -0.045785, - -0.053793, - -0.019865, - -0.049809, - -0.010792, - -0.073439, - -0.049831, - 0.023443, - -0.065186, - 0.094391, - 0.010276, - -0.030733, - -0.040783, - 0.021467, - 0.054611, - 0.0032436, - 0.11913, - 0.013876, - -0.014055, - 0.033644, - 0.055362, - 0.056129, - 0.05599, - -0.035168, - 0.037603, - 0.040654, - -0.021487, - -0.0075615, - 0.019778, - 0.0034936, - -0.010945, - 0.048247, - -0.043966, - -0.016665, - -0.015074, - 0.074636, - 0.097731, - 0.03847, - -0.0014976, - 0.066992, - 0.0019077, - -0.0070733, - 0.0077507, - -0.00012671, - -0.033275, - 0.045772, - -0.0069308, - 0.057028, - 0.052453, - 0.047125, - 0.027705, - 0.02862, - -0.0017902, - 0.0037215, - 0.036069, - 0.020993, - 0.019339, - 0.022538, - 0.051463, - -0.014783, - 0.045223, - -0.026167, - 0.030258, - -0.049069, - 0.020258, - 0.016027, - -0.028899, - 0.024777, - 0.0037628, - -0.023457, - -0.055387, - -0.0071429, - 0.071717, - 0.019354, - -0.010611, - -0.07386, - 0.068043, - -0.072389, - 0.0090209, - 0.029121, - 0.010061, - 0.0035377, - -0.050187, - 0.017708, - -0.036597, - -0.11352, - 0.0625, - 0.00021545, - -0.011875, - 0.040909, - -0.0076679, - 0.0095274, - 0.0013466, - -0.0079933, - -0.016354, - 0.026333, - -0.0071885, - 0.074959, - -0.037783, - -0.051365, - 0.021527, - 0.0077757, - -0.036935, - -0.015752, - 0.016527, - 0.061964, - -0.068319, - 0.0096872, - 0.079371, - 0.0049085, - -0.000051268, - -0.026161, - 0.020414, - 0.0094801, - -0.0060071, - -0.020606, - 0.015663, - -0.086881, - -0.0011632, - 0.043844, - 0.0069253, - 0.031003, - -0.0065864, - 0.000029782, - -0.0010131, - -0.018479, - -0.0027858, - 0.056446, - 0.00089956, - -0.00532, - 0.0012628, - 0.014042, - -0.033775, - 0.050597, - -0.041298, - -0.0014378, - -0.028037, - 0.0035761, - -0.0075613, - -0.04852, - 0.01779, - -0.053176, - 0.020722, - -0.029378, - -0.0060968, - 0.0076744, - 0.0029983, - -0.012142, - -0.014201, - -0.0051978, - 0.030033, - 0.017856, - 0.01476, - -0.011023, - 0.024903, - -0.044261, - 0.05297, - -0.092853, - -0.022781, - 0.012794, - -0.02671, - 0.036927, - 0.011655, - -0.060165, - -0.012224, - -0.02227, - 0.010587, - -0.013948, - 0.02075, - 0.010824, - 0.0042604, - -0.0012359, - -0.080792, - -0.024352, - -0.0095246, - 0.01004, - 0.060556, - -0.01854, - 0.036199, - -0.041383, - -0.013273, - -0.033857, - -0.027279, - -0.013824, - -0.018676 - ], - "polemics": [ - 0.057535, - -0.025167, - 0.082276, - 0.010392, - 0.019449, - -0.038182, - -0.0071805, - -0.11418, - 0.0040966, - 0.0081626, - 0.02626, - -0.078656, - 0.033615, - -0.026468, - -0.012339, - -0.064466, - 0.0694, - 0.016497, - 0.025259, - 0.0057623, - -0.036723, - 0.056845, - 0.055096, - 0.056647, - -0.019239, - -0.0032539, - 0.0060648, - 0.01135, - 0.072351, - -0.02137, - 0.01058, - 0.023411, - -0.027922, - -0.055618, - 0.059408, - 0.019429, - 0.04, - -0.0018858, - -0.0059687, - 0.013346, - -0.016546, - -0.089823, - 0.02294, - 0.087306, - 0.013538, - 0.014749, - -0.065491, - -0.0093299, - -0.017316, - -0.075394, - -0.033859, - -0.036778, - -0.0093654, - 0.013704, - -0.052013, - -0.017156, - -0.02398, - 0.060008, - -0.033979, - 0.0022254, - 0.082916, - 0.00021959, - 0.081953, - -0.020835, - 0.019563, - -0.021869, - 0.029907, - 0.043066, - 0.031462, - 0.0092853, - 0.03669, - -0.030965, - 0.023938, - 0.036942, - 0.024727, - -0.027753, - -0.037709, - -0.0612, - 0.07593, - -0.0073224, - -0.062968, - -0.048985, - -0.10012, - 0.03226, - 0.028342, - -0.088723, - -0.009052, - 0.05528, - 0.0012759, - 0.02284, - -0.0039871, - 0.009571, - -0.059019, - 0.029468, - 0.091833, - 0.037314, - -0.0020376, - -0.091584, - -0.0081399, - -0.026731, - -0.041058, - -0.016895, - -0.020801, - 0.045854, - 0.039463, - -0.0058645, - 0.06049, - 0.0089547, - -0.01113, - 0.059924, - -0.065414, - 0.040831, - 0.02553, - -0.03995, - -0.04015, - 0.017277, - 0.073138, - 0.033902, - -0.064127, - -0.016927, - 0.022697, - -0.04388, - 0.007168, - -0.084475, - 0.095749, - -0.070042, - -0.025937, - 0.03089, - 0.04378, - 0.13492, - -0.002955, - 0.048842, - -0.014488, - 0.007168, - 0.020883, - 0.016551, - 0.0042875, - 0.02925, - -0.042097, - -0.043426, - 0.061609, - -0.027927, - 0.013687, - 0.016965, - -0.022823, - -0.041943, - 0.018562, - 0.029912, - -0.0086636, - -0.016788, - 0.013261, - 0.061368, - -0.024483, - 0.0033529, - 0.089445, - 0.041372, - -0.0013119, - 0.050033, - -0.0020057, - 0.019282, - 0.0073777, - 0.05829, - -0.060649, - -0.017685, - -0.092834, - -0.02036, - 0.081834, - 0.0038907, - -0.037737, - -0.056718, - -0.024832, - -0.0098327, - 0.059865, - -0.015721, - 0.01842, - 0.030571, - -0.029768, - -0.02163, - -0.013425, - -0.01252, - 0.0090089, - 0.081289, - -0.020007, - -0.01587, - 0.04652, - -0.015281, - 0.07685, - 0.091603, - -0.012714, - -0.045031, - 0.038478, - 0.069789, - -0.10176, - -0.014301, - 0.0047382, - 0.0075852, - -0.0025203, - -0.024808, - -0.064034, - 0.065651, - -0.15575, - 0.041875, - 0.027741, - -0.056445, - -0.031401, - -0.028846, - -0.032071, - 0.032518, - -0.051511, - -0.043899, - 0.073478, - 0.03295, - 0.014563, - 0.0037062, - 0.070854, - 0.053921, - 0.0030313, - -0.061091, - -0.034966, - -0.12393, - -0.080322, - 0.038119, - 0.014316, - 0.063421, - 0.034462, - -0.015261, - 0.042647, - 0.11319, - 0.013968, - -0.021591, - 0.041044, - -0.045066, - 0.0077936, - -0.013231, - 0.03299, - -0.02632, - -0.003741, - -0.059078, - 0.0010369, - -0.10986, - 0.02495, - -0.081392, - -0.027841, - 0.030589, - 0.0061443, - 0.036037, - -0.078292, - -0.037077, - -0.037912, - 0.046458, - 0.040846, - -0.023861, - -0.019611, - 0.056183, - -0.00061757, - -0.03162, - 0.031191, - -0.034435, - 0.029656, - -0.027759, - 0.052432, - 0.025582, - 0.042537, - 0.012472, - -0.010759, - 0.0097769, - -0.004661, - 0.04611, - -0.033353, - -0.020711, - 0.076819, - 0.095525, - -0.086367, - -0.029579, - 0.052673, - -0.07109, - -0.022624, - 0.0068869, - -0.068103, - -0.0099273, - 0.063031, - -0.026529, - 0.013455, - -0.023684, - -0.058719, - 0.037776, - 0.058129, - 0.023783, - -0.022658, - 0.048883, - -0.021836, - -0.062651, - -0.054642, - 0.051015, - 0.011698, - 0.023124, - 0.019818, - 0.063531, - -0.044006, - 0.0072267 - ], - "bedroom": [ - 0.039908, - 0.00054316, - -0.056179, - 0.059702, - 0.03326, - 0.0055397, - 0.10745, - -0.087068, - -0.0030155, - 0.060858, - -0.010754, - -0.098138, - -0.013281, - -0.06525, - -0.024349, - -0.010857, - 0.10557, - -0.018263, - 0.059069, - 0.0021468, - 0.040604, - -0.079766, - -0.010289, - 0.05075, - -0.032804, - -0.081392, - 0.01825, - 0.00029909, - -0.058271, - -0.0016553, - -0.020211, - -0.050041, - -0.013922, - -0.045533, - -0.02149, - 0.035838, - 0.0030805, - 0.038212, - -0.011777, - 0.043843, - -0.027698, - -0.12608, - -0.032043, - 0.0052066, - -0.062487, - -0.0045987, - 0.034698, - 0.015889, - -0.08248, - 0.064245, - 0.061896, - -0.018982, - -0.049328, - 0.052574, - -0.096281, - -0.002845, - -0.029286, - -0.043585, - -0.068418, - -0.028822, - -0.031624, - -0.017521, - 0.12822, - 0.010587, - 0.032682, - 0.025861, - -0.0085782, - -0.001828, - -0.088872, - -0.021509, - 0.096868, - 0.048908, - -0.0067485, - -0.0090163, - -0.038861, - -0.0081596, - 0.084455, - -0.024238, - 0.031425, - 0.042918, - -0.021456, - -0.018611, - 0.029434, - 0.090722, - -0.05977, - -0.0058276, - -0.022478, - -0.039551, - 0.015435, - 0.049768, - -0.029735, - 0.0026348, - -0.087959, - 0.04576, - 0.04973, - 0.1409, - -0.014905, - 0.088106, - 0.026722, - -0.013122, - 0.08115, - 0.052765, - 0.0065261, - -0.0060181, - 0.062717, - -0.089213, - 0.0025488, - -0.0003818, - -0.046705, - -0.0098257, - -0.021138, - 0.072578, - 0.069625, - 0.020087, - 0.037283, - -0.07586, - 0.018884, - -0.072337, - -0.058434, - 0.026729, - -0.0035929, - 0.084069, - 0.073025, - -0.045647, - 0.016546, - -0.023848, - 0.041222, - -0.08311, - -0.0072565, - 0.03752, - 0.0018096, - 0.03551, - 0.041481, - -0.040577, - 0.0028171, - -0.11419, - 0.031131, - -0.0067017, - 0.012027, - -0.055842, - 0.074041, - 0.029419, - 0.060246, - -0.029754, - -0.0515, - -0.066663, - 0.012467, - -0.01981, - 0.077895, - -0.053286, - 0.019832, - 0.027256, - 0.04223, - -0.0020721, - 0.022527, - 0.011148, - 0.02485, - 0.010925, - 0.079968, - -0.0037827, - 0.061073, - 0.027465, - -0.010812, - -0.0023516, - -0.0049797, - -0.023859, - -0.019316, - -0.098522, - -0.015662, - 0.0090484, - -0.020883, - 0.0048249, - -0.07562, - 0.025625, - 0.015279, - 0.027584, - 0.036103, - -0.013237, - -0.0069876, - 0.0086627, - 0.068153, - -0.018854, - -0.047728, - -0.088649, - -0.048911, - 0.016176, - -0.024189, - 0.07806, - 0.046273, - -0.052134, - 0.04695, - 0.049236, - 0.0027758, - 0.01529, - -0.0024951, - -0.041057, - 0.004842, - 0.053509, - 0.011932, - 0.026125, - -0.13988, - 0.076081, - -0.089439, - -0.00082831, - 0.034664, - 0.021128, - 0.048983, - -0.052879, - -0.052992, - -0.033226, - 0.12258, - -0.038128, - -0.027609, - -0.025581, - -0.03847, - -0.023632, - -0.034645, - 0.006466, - 0.0069649, - -0.059064, - 0.058793, - -0.026254, - 0.0075101, - 0.090636, - -0.028616, - -0.041349, - -0.028462, - 0.039385, - 0.0084561, - -0.018997, - -0.052718, - -0.051249, - -0.030329, - -0.0076285, - -0.014347, - 0.0049893, - 0.080335, - -0.02709, - -0.041868, - -0.0017096, - 0.10822, - -0.04955, - -0.0078464, - 0.00013952, - -0.013893, - 0.041504, - -0.03104, - 0.0056204, - 0.032774, - 0.06576, - 0.004817, - 0.017348, - -0.092172, - -0.047814, - 0.060679, - -0.058041, - -0.050395, - 0.050463, - -0.037206, - 0.02158, - 0.052778, - -0.043557, - 0.019013, - -0.040709, - 0.057866, - -0.034856, - 0.029557, - -0.0041426, - -0.006973, - -0.0034188, - -0.091136, - 0.080776, - -0.10186, - -0.016739, - 0.046717, - -0.051366, - 0.078355, - 0.04628, - 0.064469, - 0.041056, - 0.057832, - 0.029507, - 0.094004, - -0.029994, - -0.030887, - 0.11209, - -0.07736, - -0.046897, - -0.017743, - 0.018174, - -0.035888, - 0.020806, - -0.005735, - 0.00013181, - -0.060671, - 0.11398, - 0.084765, - 0.14014, - 0.091189, - 0.056273 - ], - "irreligious": [ - -0.014315, - 0.031464, - 0.058908, - -0.067798, - -0.015341, - -0.024129, - -0.021416, - -0.062149, - -0.019444, - 0.024027, - -0.0069077, - -0.022425, - 0.010204, - -0.045647, - 0.0044805, - -0.0076816, - 0.023998, - -0.0033962, - 0.0089214, - -0.00573, - -0.010273, - -0.021501, - -0.02803, - 0.060172, - -0.017399, - 0.022266, - 0.053154, - 0.0087899, - 0.067006, - 0.015529, - -0.0048874, - 0.022067, - -0.0071862, - -0.024554, - 0.051647, - 0.043154, - 0.0072991, - 0.0022867, - -0.0019253, - 0.036317, - -0.010101, - -0.080786, - -0.010993, - -0.0035795, - -0.011777, - 0.015575, - -0.063663, - -0.011094, - 0.014042, - -0.037535, - -0.017432, - -0.029708, - 0.016518, - 0.018908, - 0.042345, - 0.023655, - -0.020588, - -0.032612, - -0.01548, - -0.0064643, - 0.033598, - 0.0062153, - 0.035389, - 0.020347, - -0.0064829, - 0.0010372, - 0.00067062, - 0.027039, - 0.037834, - -0.031593, - 0.014993, - 0.024789, - 0.050602, - -0.035332, - -0.046549, - 0.022335, - 0.005871, - -0.0054068, - 0.028393, - 0.077372, - -0.0033959, - 0.021449, - -0.047497, - 0.043863, - 0.00078779, - 0.0086383, - 0.015028, - 0.05561, - -0.057594, - 0.035161, - -0.044819, - 0.0054124, - -0.07261, - 0.0040512, - -0.0028394, - 0.023879, - -0.024489, - -0.062451, - 0.038938, - 0.033599, - 0.027355, - -0.0011771, - 0.020674, - -0.028817, - -0.027203, - -0.066894, - 0.031077, - 0.032407, - -0.0074099, - 0.001188, - -0.042289, - 0.0823, - 0.02253, - -0.028966, - -0.0097949, - 0.0022936, - 0.056958, - 0.013361, - -0.034661, - 0.00038731, - -0.0056948, - 0.012726, - -0.052311, - -0.065466, - 0.11967, - -0.011403, - -0.025817, - 0.023431, - -0.015395, - 0.017705, - 0.010294, - 0.084323, - 0.018047, - -0.0072059, - -0.026402, - 0.035939, - 0.010436, - 0.095308, - -0.019458, - -0.029904, - -0.017745, - -0.051959, - -0.038764, - 0.023203, - 0.038144, - 0.004731, - -0.033893, - 0.026276, - -0.016006, - -0.016163, - 0.048226, - 0.11655, - -0.078866, - 0.011016, - 0.0089782, - 0.042326, - -0.057026, - -0.0053282, - -0.0043092, - -0.0082324, - 0.023061, - 0.02448, - -0.056417, - -0.0082122, - 0.023381, - -0.017114, - 0.034726, - 0.067848, - -0.00060916, - -0.012982, - -0.051238, - -0.025017, - 0.01087, - 0.036497, - -0.0063304, - 0.030677, - 0.077591, - 0.017333, - 0.011202, - -0.056779, - -0.020825, - 0.0046636, - 0.013711, - 0.026307, - 0.048247, - -0.048889, - 0.051683, - 0.050116, - -0.013874, - -0.06163, - 0.063883, - 0.052358, - 0.032453, - 0.024559, - 0.027868, - 0.036301, - -0.0061853, - 0.034265, - -0.028152, - -0.054992, - -0.11275, - 0.0034569, - -0.0075434, - -0.0043056, - 0.02822, - 0.046012, - 0.030693, - -0.014306, - 0.02305, - -0.030606, - 0.031979, - -0.037501, - 0.047611, - 0.019584, - 0.060643, - -0.016743, - -0.02025, - -0.033, - -0.028402, - -0.017277, - -0.036609, - 0.034471, - -0.022719, - 0.05878, - -0.035105, - -0.028153, - 0.035871, - 0.053191, - 0.0022843, - -0.0060714, - 0.016043, - -0.0063645, - -0.051799, - -0.047075, - 0.028806, - 0.02721, - 0.029155, - -0.012577, - 0.0069801, - -0.047541, - 0.033661, - -0.09335, - -0.00080666, - 0.012391, - -0.10655, - 0.0022187, - 0.035875, - -0.049186, - -0.055373, - -0.064534, - 0.0096848, - -0.053431, - -0.06163, - -0.0031879, - 0.002436, - 0.027109, - -0.014638, - 0.018896, - -0.021986, - -0.012056, - 0.035223, - -0.056984, - -0.0011077, - 0.033043, - -0.020015, - -0.00011953, - -0.022088, - 0.012271, - 0.033748, - 0.092311, - 0.026609, - 0.044523, - -0.054619, - -0.027714, - 0.087882, - -0.1412, - 0.023724, - -0.03126, - -0.031735, - -0.054419, - 0.055897, - -0.018075, - -0.013884, - -0.016253, - 0.0091565, - 0.041219, - -0.011497, - -0.057883, - -0.0029279, - 0.043889, - 0.029507, - 0.0141, - 0.019846, - 0.075346, - -0.027594, - 0.025885, - 0.028022, - 0.061528, - -0.017777, - 0.022934 - ], - "forecast": [ - -0.010688, - -0.016754, - -0.089463, - -0.057298, - 0.038028, - -0.081415, - -0.021044, - -0.1092, - -0.00023562, - 0.014378, - -0.001413, - -0.014196, - -0.082658, - -0.018259, - -0.0041534, - -0.011501, - 0.052201, - 0.0098285, - 0.075639, - -0.019841, - 0.054265, - -0.014492, - -0.035915, - 0.061487, - 0.024562, - -0.046567, - -0.038604, - 0.019287, - -0.012008, - 0.030112, - -0.0036424, - 0.056919, - 0.019748, - -0.064874, - -0.011126, - 0.003226, - -0.010924, - 0.049583, - 0.0077464, - 0.017412, - -0.050307, - -0.092406, - 0.016208, - -0.021375, - -0.026741, - 0.028385, - -0.006164, - -0.023665, - -0.014171, - -0.034867, - -0.022105, - -0.027653, - -0.018363, - 0.023625, - -0.061161, - -0.031441, - 0.057973, - -0.0073114, - -0.050653, - -0.054275, - -0.024602, - 0.023672, - 0.12541, - 0.015775, - 0.027252, - 0.011734, - 0.026503, - 0.03, - 0.00056707, - 0.018535, - 0.04779, - -0.013407, - -0.014908, - -0.0023768, - 0.013688, - -0.039048, - 0.045709, - -0.041186, - -0.059687, - -0.031808, - 0.0029748, - 0.013115, - -0.019705, - 0.042341, - 0.024465, - 0.0095789, - -0.0040033, - -0.017413, - -0.016149, - -0.075675, - -0.027312, - -0.02401, - -0.079135, - 0.012925, - -0.050574, - -0.029938, - -0.0055234, - -0.011302, - 0.031829, - 0.047929, - 0.0055679, - -0.095953, - -0.0054393, - -0.011652, - -0.038179, - -0.064559, - 0.026903, - -0.012206, - 0.0011022, - 0.012066, - -0.077026, - 0.022805, - 0.069568, - 0.01055, - -0.020165, - -0.12344, - -0.0089582, - 0.0083911, - -0.046949, - 0.047189, - -0.0030097, - 0.0069497, - 0.060934, - 0.0090458, - 0.067575, - 0.051198, - -0.014665, - -0.081668, - -0.058934, - 0.1094, - 0.033581, - -0.012829, - 0.014009, - 0.047832, - -0.024365, - -0.0030933, - 0.11746, - 0.039413, - -0.017828, - 0.06808, - 0.055104, - -0.038554, - -0.024688, - -0.045307, - -0.073721, - -0.03427, - -0.050572, - -0.019964, - -0.011601, - 0.030184, - -0.023507, - 0.091545, - 0.013269, - -0.0647, - 0.052693, - 0.0021773, - -0.010493, - -0.036934, - -0.12008, - 0.02518, - 0.090164, - -0.026655, - -0.021782, - 0.029806, - -0.01187, - -0.038299, - -0.072239, - -0.011315, - 0.038227, - 0.07913, - -0.093252, - -0.029993, - -0.027446, - -0.087124, - 0.015562, - 0.017794, - 0.0021694, - -0.03443, - -0.051385, - 0.043965, - 0.0017795, - 0.00041571, - -0.027736, - -0.048267, - 0.037102, - -0.017528, - -0.042941, - 0.058857, - -0.0053947, - -0.035249, - 0.0025276, - 0.055417, - -0.037883, - -0.088515, - 0.0036671, - -0.064197, - -0.082112, - 0.058853, - -0.0045053, - 0.029675, - -0.12456, - 0.042581, - -0.025156, - 0.02481, - -0.0015442, - 0.089928, - 0.016202, - -0.016538, - -0.029486, - -0.04709, - 0.071306, - -0.015411, - -0.021722, - 0.027074, - -0.006785, - -0.0015211, - -0.0016987, - -0.040988, - -0.034643, - -0.043886, - -0.067474, - -0.0090809, - 0.049998, - 0.10043, - 0.03701, - 0.011462, - -0.10065, - 0.0459, - 0.037643, - 0.026012, - 0.071099, - -0.10883, - -0.055739, - 0.053948, - 0.068285, - 0.024797, - 0.020713, - -0.044582, - 0.093556, - 0.012201, - 0.11802, - 0.079503, - 0.011176, - -0.050176, - -0.069709, - 0.0027369, - -0.064544, - -0.014461, - 0.059258, - -0.026537, - 0.052826, - -0.025089, - 0.061779, - 0.094487, - -0.0057269, - 0.013551, - 0.012945, - 0.053301, - 0.061762, - 0.049591, - 0.093652, - 0.018864, - -0.030107, - -0.0083731, - -0.013402, - -0.034566, - 0.028366, - 0.028157, - 0.08068, - 0.0041848, - 0.023803, - 0.098682, - -0.11915, - -0.0082282, - -0.012671, - 0.0012419, - -0.028702, - -0.010626, - -0.056902, - -0.034851, - 0.038046, - -0.0032453, - -0.041994, - 0.023879, - 0.027122, - -0.034262, - -0.0050134, - -0.0078298, - -0.03712, - 0.01222, - -0.0025049, - -0.0059959, - 0.042246, - 0.077253, - 0.045098, - -0.019845, - -0.069093, - -0.038408, - 0.073427, - -0.030075 - ], - "supercomputing": [ - -0.067788, - -0.032154, - -0.056585, - -0.025083, - -0.021998, - -0.018293, - 0.0076049, - -0.075288, - 0.00017822, - 0.0021973, - -0.015434, - -0.0071941, - 0.0208, - 0.049893, - -0.016428, - -0.0018215, - 0.049741, - 0.032527, - -0.001701, - -0.013327, - -0.015555, - 0.049165, - 0.0097459, - 0.032194, - 0.032371, - -0.031389, - 0.0096821, - -0.027818, - -0.0344, - 0.047928, - -0.025698, - -0.011291, - -0.00074663, - -0.026756, - 0.050468, - 0.011164, - 0.03439, - -0.056994, - 0.063811, - 0.011462, - -0.084268, - -0.031377, - 0.025136, - 0.0015141, - -0.0033202, - -0.050393, - 0.015383, - -0.042427, - 0.015605, - -0.029484, - -0.04077, - 0.030477, - -0.031118, - 0.062248, - 0.01523, - 0.0058599, - 0.0261, - 0.013447, - 0.025116, - 0.0057957, - -0.020583, - 0.056633, - 0.041346, - -0.0078253, - 0.019274, - -0.034912, - 0.011517, - -0.015902, - -0.0047782, - -0.019012, - 0.027115, - 0.0062032, - 0.024974, - -0.045601, - 0.0029209, - 0.033353, - 0.0015045, - -0.0049113, - 0.049507, - 0.025394, - -0.048096, - 0.025806, - -0.026283, - -0.013934, - -0.01212, - 0.037934, - -0.022903, - 0.0053597, - 0.023915, - 0.0068392, - -0.011501, - 0.010948, - -0.061505, - 0.025887, - 0.034673, - 0.052235, - 0.0079329, - -0.071702, - 0.013011, - 0.062918, - -0.034136, - -0.030421, - -0.02768, - -0.011087, - -0.0067911, - -0.032084, - -0.01237, - 0.0022264, - -0.0068943, - -0.072935, - -0.0070457, - 0.045635, - 0.01355, - 0.029478, - 0.055623, - -0.0063905, - -0.016685, - 0.024181, - -0.045537, - -0.0038425, - -0.038803, - -0.0038037, - -0.013607, - -0.017663, - 0.045018, - 0.0080208, - -0.044742, - -0.077319, - -0.058512, - 0.088864, - -0.015364, - 0.013088, - -0.015808, - 0.010536, - 0.052837, - -0.037361, - 0.014621, - 0.020117, - -0.050599, - 0.04205, - 0.056787, - 0.036491, - 0.059153, - -0.0040543, - -0.019557, - 0.023118, - 0.015598, - -0.0064484, - -0.026973, - 0.020607, - 0.027395, - 0.037536, - 0.0027672, - -0.035543, - 0.036663, - -0.016854, - 0.016136, - 0.029226, - -0.030035, - 0.012554, - 0.013903, - 0.0025156, - -0.093621, - -0.012324, - -0.049405, - 0.029114, - -0.049866, - -0.011902, - -0.0087612, - -0.023632, - 0.03786, - -0.066325, - 0.0084315, - 0.031248, - 0.052754, - 0.048025, - -0.065394, - 0.0036242, - -0.044317, - -0.0095164, - 0.0020889, - -0.017876, - -0.063754, - 0.0033807, - 0.010469, - -0.019616, - -0.099686, - 0.068195, - 0.010016, - 0.047833, - 0.036299, - 0.043595, - -0.035401, - -0.0050152, - 0.020902, - -0.0085805, - -0.080952, - 0.0062464, - -0.016038, - -0.026141, - -0.087918, - 0.0024557, - -0.0015776, - 0.012594, - -0.0050217, - -0.018843, - -0.00814, - -0.03509, - 0.0026716, - 0.041365, - 0.064989, - -0.01235, - -0.0092387, - -0.032379, - -0.026483, - 0.041385, - 0.062127, - 0.0010628, - 0.0093814, - -0.017234, - 0.0006719, - 0.0074285, - 0.020466, - 0.058855, - -0.014781, - 0.0067534, - 0.018793, - 0.038936, - -0.024956, - -0.0083104, - -0.067943, - -0.0021278, - -0.066396, - 0.046606, - -0.0035497, - -0.017309, - 0.017923, - 0.0062807, - -0.0093587, - 0.0061499, - 0.035015, - -0.050372, - 0.054815, - -0.03631, - -0.06012, - 0.03092, - -0.012662, - 0.033735, - 0.020663, - -0.016882, - -0.0087186, - 0.023891, - 0.004469, - -0.036021, - 0.00169, - 0.058056, - -0.019355, - 0.012757, - -0.0065151, - 0.0098009, - -0.01875, - 0.030006, - -0.045405, - 0.036367, - -0.020434, - -0.038895, - 0.0093558, - 0.011631, - 0.06369, - -0.035644, - 0.0048492, - 0.044294, - -0.063547, - 0.0038061, - -0.040206, - -0.010584, - 0.029381, - 0.0068527, - -0.048586, - 0.011952, - 0.035914, - 0.012259, - -0.046463, - 0.033638, - -0.011384, - -0.06319, - -0.022107, - 0.0091944, - -0.038154, - 0.010606, - -0.067445, - 0.034951, - 0.0092612, - -0.0098825, - 0.09263, - 0.032841, - -0.0010731, - 0.031957, - 0.014528, - -0.00105 - ], - "occupation": [ - 0.050281, - -0.016979, - 0.053712, - 0.033126, - 0.006543, - -0.039218, - 0.055211, - -0.078452, - 0.075078, - 0.022542, - -0.022245, - 0.008961, - -0.057761, - 0.038413, - -0.011868, - 0.056091, - 0.050149, - 0.0024935, - 0.019021, - 0.019398, - 0.024141, - -0.027268, - 0.022673, - 0.058736, - -0.071199, - 0.035574, - -0.021399, - 0.0027018, - -0.0087541, - -0.0036383, - 0.0061922, - 0.019518, - 0.0064284, - -0.052243, - -0.01471, - 0.033549, - 0.01598, - -0.010527, - 0.019231, - -0.010458, - 0.0036036, - -0.058681, - 0.0050293, - -0.026275, - 0.01085, - 0.053255, - -0.034462, - -0.054237, - -0.03254, - 0.0027676, - -0.040166, - -0.043117, - -0.018026, - -0.037159, - -0.036893, - -0.012255, - -0.020585, - 0.066017, - -0.013573, - -0.051066, - -0.041648, - 0.027449, - 0.083777, - -0.013496, - 0.014823, - -0.0040459, - 0.029656, - -0.004782, - 0.02923, - -0.070232, - -0.013068, - -0.024733, - -0.018523, - 0.030809, - 0.067102, - -0.0031724, - -0.000022859, - 0.013882, - -0.0003286, - -0.02453, - 0.016811, - 0.026243, - -0.037574, - 0.039242, - -0.040166, - -0.033293, - -0.017837, - -0.016621, - -0.068619, - 0.046516, - 0.016743, - 0.039117, - -0.061981, - -0.0021413, - -0.010759, - 0.04829, - -0.048779, - 0.043415, - 0.056627, - 0.010547, - 0.032597, - 0.019092, - 0.077746, - 0.00046023, - -0.012036, - -0.037097, - 0.027672, - 0.031385, - -0.0036807, - -0.023786, - -0.0095592, - 0.023276, - 0.038095, - -0.000036801, - -0.025251, - -0.029719, - -0.028466, - -0.0099283, - -0.02209, - 0.021327, - -0.02722, - 0.0071293, - 0.011015, - 0.025603, - 0.055314, - 0.065045, - 0.002425, - -0.093157, - 0.014653, - 0.10041, - -0.0088673, - -0.0052785, - 0.027713, - 0.0064014, - -0.019262, - 0.013447, - -0.047052, - 0.021291, - 0.017181, - 0.016186, - -0.024642, - -0.026263, - 0.038852, - 0.011004, - -0.0049811, - -0.025724, - -0.049723, - -0.039978, - 0.034695, - -0.0069748, - 0.060747, - 0.031643, - -0.062654, - -0.037553, - 0.0044887, - 0.037689, - 0.031169, - 0.0065422, - -0.0067232, - -0.02153, - 0.02053, - -0.0041302, - -0.076402, - 0.061424, - -0.0055599, - -0.032283, - -0.050319, - -0.040988, - 0.041324, - 0.0050089, - 0.034684, - 0.011895, - 0.027465, - 0.053575, - -0.0085901, - 0.059791, - -0.032371, - 0.017766, - -0.0047515, - 0.050319, - -0.023443, - -0.01167, - -0.0031241, - 0.00082207, - 0.0012339, - -0.030805, - 0.083791, - 0.062052, - -0.024408, - 0.032997, - 0.037788, - 0.05872, - -0.015608, - 0.011351, - 0.03033, - 0.092392, - -0.031515, - 0.033803, - -0.011018, - 0.048522, - -0.12827, - 0.033446, - -0.018916, - -0.058245, - 0.01397, - 0.031013, - 0.044766, - 0.035303, - 0.034047, - 0.013616, - 0.14195, - 0.05053, - 0.012273, - 0.046084, - 0.01725, - 0.050165, - 0.030566, - -0.0073979, - 0.015482, - -0.072025, - 0.0016548, - -0.0049814, - -0.021167, - 0.10396, - -0.038269, - -0.012063, - 0.060992, - 0.041383, - -0.03232, - -0.034376, - 0.033159, - -0.035725, - -0.042582, - -0.083942, - 0.025074, - 0.024972, - 0.025411, - 0.0052779, - 0.00065585, - -0.004575, - 0.03955, - 0.010762, - -0.0091007, - 0.013896, - -0.00078516, - -0.051016, - -0.012385, - -0.08918, - 0.015515, - 0.01433, - -0.0051672, - -0.021486, - 0.025813, - -0.031268, - 0.053151, - -0.022271, - 0.012617, - 0.05078, - 0.076538, - 0.0010528, - 0.0057181, - -0.031893, - 0.010527, - -0.0040819, - -0.011592, - -0.032325, - -0.024138, - -0.022959, - -0.0088694, - -0.059626, - -0.02372, - 0.06669, - -0.064092, - -0.02329, - 0.032855, - -0.026815, - 0.045067, - -0.0062013, - 0.07714, - 0.025786, - 0.070124, - 0.053769, - 0.0010024, - 0.036647, - 0.019589, - 0.10523, - -0.053719, - -0.031499, - -0.003749, - 0.029636, - 0.04117, - 0.024336, - -0.018899, - 0.063733, - -0.032176, - 0.040091, - -0.0057258, - 0.031513, - -0.076599, - -0.031726 - ], - "sportive": [ - 0.029843, - -0.079316, - 0.094987, - 0.030273, - -0.044561, - -0.031759, - 0.00044937, - -0.11605, - 0.018095, - -0.00081796, - 0.024636, - -0.060763, - -0.028542, - -0.03456, - 0.091441, - 0.041789, - 0.10622, - 0.047488, - 0.027571, - 0.019821, - -0.029036, - -0.064437, - 0.003014, - 0.082026, - 0.077781, - 0.034324, - 0.054178, - -0.019474, - 0.045465, - -0.024638, - 0.042578, - 0.013389, - -0.0072081, - -0.057905, - 0.061353, - 0.031438, - 0.06678, - 0.013911, - 0.037409, - -0.0012651, - 0.055359, - -0.15084, - 0.018265, - -0.012635, - 0.04171, - -0.057147, - 0.019379, - -0.040794, - 0.0078462, - -0.045437, - -0.0077508, - -0.044978, - 0.017045, - 0.020063, - 0.012751, - -0.076841, - -0.003748, - -0.03664, - -0.084762, - 0.056326, - 0.0077082, - 0.0032566, - 0.0984, - -0.036176, - 0.080418, - -0.058512, - 0.000094151, - -0.039733, - 0.010173, - -0.06483, - 0.035096, - -0.11406, - 0.015463, - 0.047809, - 0.032689, - 0.0607, - -0.078277, - -0.02018, - -0.065643, - -0.005123, - -0.030264, - 0.049639, - -0.019677, - 0.032524, - 0.0016934, - -0.058751, - -0.051226, - -0.015574, - -0.023602, - -0.025256, - 0.019019, - 0.041427, - -0.13222, - 0.040435, - 0.055813, - 0.10701, - -0.034709, - -0.010551, - 0.057694, - 0.061443, - -0.037477, - 0.093187, - -0.052775, - 0.012589, - -0.011101, - -0.078219, - -0.1172, - -0.0055257, - 0.0040863, - 0.035372, - -0.039063, - 0.083892, - 0.010512, - 0.058136, - 0.016415, - -0.014992, - 0.0084001, - 0.064788, - -0.003369, - -0.012916, - 0.068693, - 0.10811, - -0.076297, - -0.0021209, - 0.11769, - -0.035533, - 0.031556, - -0.012942, - 0.028819, - -0.0061794, - -0.020605, - 0.038181, - 0.053127, - 0.0029674, - -0.053603, - -0.060163, - 0.069229, - 0.07722, - 0.076158, - -0.041667, - -0.0012074, - -0.07529, - 0.0011402, - -0.030088, - 0.019416, - 0.08174, - -0.0019466, - -0.039594, - 0.0092944, - 0.021719, - 0.014265, - 0.13603, - -0.047959, - -0.023778, - 0.03448, - -0.016392, - 0.046214, - 0.07644, - 0.021521, - 0.034248, - 0.042374, - 0.012182, - -0.066244, - 0.064406, - -0.0016699, - 0.044333, - 0.041637, - 0.02005, - -0.07227, - -0.052303, - 0.066779, - -0.0027406, - 0.012492, - 0.022831, - 0.05969, - 0.019656, - -0.01435, - -0.0024057, - -0.002475, - -0.031141, - -0.04311, - -0.019872, - -0.017422, - -0.0060988, - -0.054549, - -0.054647, - 0.010938, - 0.074539, - 0.0020104, - 0.012836, - -0.017314, - 0.055992, - 0.081128, - -0.069437, - 0.030301, - -0.017522, - 0.02302, - -0.0093692, - 0.031051, - 0.025421, - -0.138, - 0.047345, - 0.030009, - -0.031715, - 0.036149, - 0.036718, - -0.044882, - 0.010358, - -0.013226, - 0.0092075, - 0.12646, - -0.0059989, - 0.017278, - 0.011521, - 0.069942, - -0.0021681, - -0.066984, - -0.031619, - -0.020562, - 0.0050984, - -0.042822, - 0.0018818, - -0.085258, - 0.1334, - -0.099403, - 0.037974, - 0.011685, - 0.094423, - -0.000045021, - -0.019713, - 0.013057, - -0.049702, - -0.01018, - -0.0059455, - 0.011949, - 0.060688, - -0.048114, - -0.037908, - -0.04041, - -0.0015124, - 0.10964, - 0.049619, - 0.013801, - 0.062782, - -0.07541, - 0.067599, - -0.01161, - -0.0092143, - -0.018644, - -0.03058, - 0.023924, - 0.030731, - -0.010655, - -0.079249, - -0.0043695, - -0.002133, - -0.010695, - -0.04645, - 0.064267, - 0.017906, - 0.030653, - -0.00088867, - 0.026279, - 0.026296, - 0.014422, - 0.039427, - -0.0021922, - 0.02066, - 0.060921, - -0.0094589, - 0.0017719, - 0.092448, - -0.076636, - -0.032945, - 0.039953, - -0.15823, - 0.011488, - 0.0035803, - -0.014761, - -0.027683, - 0.12033, - -0.01084, - -0.024047, - -0.091156, - -0.04944, - 0.022888, - 0.020354, - -0.015714, - 0.0050599, - 0.051958, - 0.10538, - -0.019763, - -0.014472, - -0.050518, - -0.0075681, - -0.00030378, - 0.015441, - 0.065893, - -0.0026415, - -0.02623 - ], - "Zoroastrianism": [ - -0.025905, - -0.029822, - 0.063598, - -0.0194, - -0.02739, - -0.010891, - -0.041527, - -0.04532, - 0.020419, - -0.023064, - 0.055538, - -0.0298, - 0.052627, - -0.025667, - -0.000023526, - -0.031585, - 0.074493, - -0.040178, - 0.036067, - -0.019941, - -0.078577, - 0.043884, - -0.0037541, - 0.011174, - 0.05067, - -0.018823, - -0.0012239, - 0.011786, - 0.059806, - 0.0037949, - -0.01475, - 0.034178, - -0.019003, - 0.034592, - 0.01883, - 0.013431, - -0.0042336, - -0.045866, - 0.048823, - 0.039704, - -0.013105, - -0.016478, - -0.0018476, - -0.028811, - -0.058352, - 0.014747, - -0.028191, - -0.048564, - 0.038284, - -0.012918, - -0.023267, - -0.014843, - 0.019854, - 0.0056208, - -0.040368, - 0.031852, - -0.017939, - -0.025699, - -0.0022368, - -0.0011537, - 0.069305, - -0.01301, - -0.0013293, - -0.0037449, - -0.015832, - 0.018223, - -0.052973, - 0.017441, - 0.039495, - -0.070148, - 0.027237, - 0.014872, - -0.0079415, - -0.0024073, - -0.064597, - 0.035368, - 0.015068, - -0.011999, - 0.028371, - 0.023294, - 0.0031006, - 0.037493, - -0.048797, - 0.026375, - -0.062628, - 0.0028566, - -0.043293, - -0.039418, - 0.025276, - 0.049431, - 0.0025022, - 0.025388, - -0.032559, - 0.0018987, - -0.033801, - 0.04132, - 0.0068163, - -0.044068, - 0.020727, - -0.048769, - -0.026987, - -0.025912, - -0.0048176, - 0.018218, - -0.043962, - -0.044462, - -0.025196, - 0.014934, - -0.01889, - 0.033886, - 0.0053273, - 0.02627, - 0.037585, - -0.040242, - 0.0078826, - -0.0071854, - 0.08554, - 0.011606, - -0.0031687, - 0.030842, - -0.042659, - -0.050181, - -0.0090604, - -0.039497, - -0.0080913, - 0.015994, - -0.075803, - 0.01001, - 0.025868, - 0.091458, - -0.013482, - -0.0023101, - -0.055009, - 0.027889, - -0.028683, - 0.025903, - -0.059863, - 0.0061873, - 0.02424, - -0.054312, - 0.0021923, - -0.060331, - 0.02646, - 0.018837, - 0.018333, - -0.039597, - 0.011087, - 0.034058, - -0.0013494, - -0.031447, - 0.020992, - 0.0097098, - -0.043268, - -0.037323, - -0.048199, - 0.027252, - 0.039449, - -0.049876, - -0.00012696, - 0.036605, - 0.0078338, - 0.021343, - -0.06098, - 0.0048723, - 0.020789, - -0.022464, - -0.006294, - -0.017649, - 0.014608, - -0.019052, - 0.01553, - -0.054402, - 0.014115, - 0.036562, - -0.0030676, - 0.025052, - 0.050865, - 0.018038, - -0.027194, - -0.040719, - 0.016372, - 0.061258, - -0.016143, - 0.018322, - 0.036662, - -0.0086319, - 0.0020343, - 0.065601, - -0.015281, - -0.01501, - 0.019897, - 0.066227, - -0.083109, - 0.028894, - 0.079678, - 0.027252, - 0.010318, - -0.0063779, - -0.016084, - -0.014915, - -0.094502, - 0.043852, - -0.069719, - -0.037636, - -0.023932, - 0.02667, - 0.073573, - 0.0040934, - 0.054983, - -0.030433, - 0.073751, - -0.00638, - 0.010676, - -0.025893, - 0.094893, - 0.053971, - -0.026819, - 0.014827, - 0.02082, - -0.014519, - -0.084253, - 0.07438, - -0.053793, - 0.062529, - 0.014335, - 0.025195, - 0.010228, - 0.055763, - 0.0085199, - -0.038658, - -0.019502, - -0.018048, - -0.032889, - -0.026791, - 0.026331, - 0.012101, - -0.0058265, - 0.038014, - 0.033364, - 0.040979, - 0.0028041, - 0.0011544, - -0.022424, - -0.017373, - 0.069969, - -0.017515, - 0.020564, - -0.0080487, - -0.012462, - -0.02198, - 0.050176, - -0.068717, - -0.094647, - 0.020175, - 0.018498, - -0.0058274, - 0.051376, - 0.013866, - -0.026859, - -0.023071, - 0.039068, - 0.019853, - -0.029786, - 0.022568, - 0.011779, - -0.039704, - 0.025543, - 0.011678, - 0.029181, - 0.038677, - 0.0072685, - 0.056742, - -0.049795, - 0.0069657, - -0.010831, - -0.026175, - 0.01477, - -0.023457, - -0.070381, - -0.056961, - 0.016109, - -0.094527, - 0.041639, - 0.01009, - -0.038016, - 0.010697, - 0.010969, - 0.013467, - -0.015006, - 0.015186, - 0.041601, - -0.046363, - -0.015606, - -0.036973, - 0.0683, - -0.005637, - 0.075798, - 0.02627, - -0.0048837, - 0.019681 - ], - "snack": [ - -0.026807, - -0.048645, - -0.0825, - -0.027956, - -0.035793, - -0.051739, - -0.049333, - -0.11909, - 0.009961, - 0.024995, - -0.021378, - 0.0060867, - -0.013877, - 0.071743, - -0.03181, - 0.042138, - 0.088045, - -0.018227, - 0.066092, - -0.0069759, - 0.038116, - 0.020298, - -0.075135, - 0.050586, - -0.079937, - 0.081191, - -0.03331, - 0.04221, - -0.076597, - -0.082216, - 0.074929, - -0.061188, - 0.013336, - -0.05599, - 0.06043, - -0.028958, - 0.14519, - -0.012324, - 0.12463, - -0.012713, - 0.01558, - -0.19106, - -0.075877, - 0.0094914, - 0.12494, - -0.0031116, - 0.0906, - 0.001099, - -0.071776, - 0.078651, - 0.039582, - 0.089441, - 0.031205, - -0.13664, - -0.091974, - -0.028942, - 0.056741, - -0.075613, - -0.041728, - -0.069709, - -0.070678, - -0.069077, - 0.16338, - 0.15604, - -0.034881, - 0.074278, - 0.065026, - 0.074923, - -0.10802, - 0.047171, - 0.057127, - -0.10483, - 0.062635, - 0.018782, - -0.043821, - -0.035015, - -0.025359, - -0.036219, - 0.049331, - 0.027825, - -0.029929, - -0.047722, - 0.093695, - 0.042859, - 0.007179, - 0.011954, - -0.057892, - -0.023161, - 0.0016033, - -0.060422, - -0.0016798, - 0.0096474, - -0.11877, - -0.028918, - 0.052928, - 0.11301, - 0.0091339, - 0.11748, - 0.014966, - -0.09073, - 0.035987, - 0.13172, - 0.016268, - -0.099074, - -0.030788, - -0.14751, - -0.15973, - 0.060006, - 0.013927, - 0.02817, - -0.066963, - 0.056271, - 0.059739, - 0.17068, - 0.062849, - 0.046217, - -0.1477, - 0.025727, - -0.09831, - -0.002558, - 0.0045702, - 0.063318, - -0.050139, - -0.080981, - 0.15759, - 0.021524, - 0.017439, - -0.12297, - 0.019394, - 0.045576, - 0.034143, - -0.016698, - 0.047249, - -0.024844, - -0.045566, - -0.055407, - 0.0077671, - 0.06307, - 0.032793, - 0.045944, - 0.11016, - 0.058937, - -0.035005, - -0.027699, - 0.015486, - -0.021255, - 0.072768, - -0.039496, - -0.051162, - -0.01385, - 0.0086246, - 0.11103, - -0.057484, - -0.019724, - 0.086738, - -0.033043, - -0.10275, - 0.038658, - -0.011402, - 0.02853, - 0.028276, - 0.015765, - -0.076433, - 0.048514, - 0.039295, - 0.043517, - -0.071166, - -0.082778, - 0.060248, - -0.049531, - -0.037676, - 0.044502, - 0.025553, - 0.042187, - 0.015666, - 0.057675, - -0.05657, - 0.044337, - -0.066028, - -0.051292, - -0.054711, - -0.10259, - 0.0050308, - -0.15639, - 0.03985, - -0.052815, - 0.0034578, - 0.092555, - 0.093712, - -0.068759, - 0.005185, - 0.055241, - 0.035628, - 0.07397, - 0.065513, - 0.0018756, - -0.047606, - -0.12088, - 0.058286, - -0.011893, - -0.19381, - 0.14926, - 0.016904, - -0.023331, - -0.019254, - -0.022175, - 0.060779, - 0.0071917, - -0.0068985, - -0.057432, - 0.17341, - -0.027051, - 0.074124, - 0.0071834, - 0.072451, - 0.017218, - -0.049681, - -0.027181, - 0.020226, - -0.048154, - 0.013347, - 0.029037, - -0.018754, - 0.11717, - 0.049253, - -0.040098, - 0.078871, - 0.051388, - -0.021732, - 0.041559, - -0.051062, - -0.12619, - -0.00072014, - 0.0085946, - 0.027542, - 0.083731, - -0.014273, - -0.04264, - -0.054344, - -0.053894, - 0.094529, - -0.040614, - -0.03167, - -0.06573, - -0.043739, - 0.098172, - 0.0434, - 0.073313, - -0.054755, - -0.051667, - -0.032904, - -0.071311, - -0.069605, - 0.04286, - -0.021968, - 0.0012697, - -0.0018888, - 0.031178, - 0.03168, - 0.052133, - 0.075367, - 0.015078, - 0.070363, - -0.086115, - 0.030616, - 0.036727, - -0.044986, - -0.028807, - 0.021119, - 0.11826, - 0.0096223, - 0.12793, - -0.15109, - -0.06635, - -0.044333, - -0.032293, - -0.079461, - 0.0095565, - -0.035989, - 0.018853, - 0.13473, - -0.0021965, - -0.0019441, - 0.045356, - -0.086394, - 0.014944, - -0.096433, - -0.0090546, - 0.068082, - -0.10292, - 0.048767, - 0.026127, - -0.014081, - -0.036875, - 0.028633, - -0.048583, - 0.074712, - 0.019698, - -0.093373, - 0.077406 - ], - "layout": [ - 0.012833, - -0.017972, - 0.0057313, - -0.021601, - -0.035435, - -0.00067148, - -0.042315, - -0.10492, - -0.079783, - -0.029186, - 0.041793, - -0.084788, - -0.0077351, - 0.068418, - -0.00018545, - 0.035681, - 0.10035, - 0.10181, - 0.075186, - -0.061594, - 0.033308, - -0.026728, - 0.030898, - 0.085973, - -0.02085, - -0.011371, - -0.051006, - 0.028999, - -0.0019684, - 0.079209, - -0.047803, - 0.038577, - 0.053741, - -0.10525, - 0.01395, - -0.0021085, - 0.010272, - 0.0076464, - -0.0024366, - -0.04851, - 0.091885, - -0.15565, - 0.055389, - 0.014019, - -0.18086, - -0.0078167, - 0.012025, - -0.053884, - -0.019689, - 0.061033, - -0.026276, - -0.082862, - 0.0099199, - 0.042961, - -0.054173, - 0.038445, - 0.051763, - -0.044244, - -0.032987, - -0.031364, - -0.088031, - 0.03753, - 0.13696, - 0.064133, - 0.12152, - 0.10286, - -0.0046181, - 0.040781, - 0.016816, - 0.042369, - 0.017341, - 0.0057882, - -0.036908, - -0.068272, - 0.0096684, - 0.0013518, - -0.051692, - -0.042762, - -0.090813, - -0.025778, - -0.001514, - -0.014897, - -0.032837, - 0.043739, - 0.021699, - -0.033804, - 0.073714, - -0.040846, - 0.088479, - 0.039974, - 0.050979, - -0.0057879, - -0.074303, - 0.024674, - -0.0142, - 0.065766, - -0.053008, - -0.0086175, - 0.094032, - 0.0099233, - 0.11348, - 0.14562, - 0.032195, - 0.044776, - -0.040034, - -0.095844, - -0.034833, - 0.052708, - 0.018188, - 0.033538, - 0.061334, - 0.055166, - 0.084226, - 0.079617, - 0.016957, - -0.1221, - -0.024268, - -0.042505, - -0.059246, - 0.0074666, - 0.059726, - -0.019011, - 0.024214, - 0.037125, - 0.096405, - 0.046025, - -0.039853, - -0.1094, - 0.020213, - 0.14452, - 0.011093, - -0.082681, - 0.023906, - -0.035689, - -0.0065581, - -0.024786, - -0.0090344, - 0.052301, - -0.043404, - -0.046449, - -0.067562, - 0.058376, - 0.019251, - 0.089672, - 0.0076297, - -0.022044, - 0.044418, - 0.00078699, - 0.0043063, - -0.063331, - 0.016261, - 0.057874, - 0.066376, - -0.11069, - 0.030672, - 0.073481, - 0.069442, - 0.07781, - 0.04187, - 0.0184, - -0.0071032, - -0.053676, - -0.093471, - -0.0066015, - -0.010374, - 0.011406, - 0.083474, - -0.039792, - -0.017764, - 0.032977, - -0.041881, - -0.02804, - 0.049156, - -0.10294, - 0.06171, - 0.083081, - -0.070923, - 0.037698, - -0.040882, - 0.034715, - 0.038301, - -0.024603, - 0.0013951, - 0.015529, - 0.0063144, - -0.057089, - -0.00017006, - 0.090126, - -0.00045875, - -0.021799, - -0.042613, - 0.067142, - -0.031881, - -0.0013813, - -0.024779, - 0.0063526, - -0.050108, - -0.054965, - -0.037496, - 0.07129, - -0.18906, - 0.031084, - 0.0092127, - -0.051904, - -0.091036, - 0.031973, - -0.096712, - 0.071965, - -0.043476, - -0.0013084, - 0.12358, - 0.0065283, - 0.02621, - 0.039952, - 0.048163, - -0.049957, - 0.024894, - 0.077958, - -0.045655, - 0.030145, - -0.016792, - -0.051738, - 0.0087322, - 0.12669, - -0.0010249, - -0.028794, - 0.019974, - 0.067683, - 0.072398, - 0.025929, - -0.087138, - -0.10325, - -0.069887, - -0.0086756, - 0.024284, - 0.0048329, - 0.01645, - -0.0014294, - 0.032199, - 0.042786, - 0.0301, - -0.0066109, - -0.032917, - -0.0063919, - -0.071146, - 0.061112, - 0.031989, - -0.038949, - -0.016607, - 0.0075396, - 0.0064822, - -0.030323, - -0.0021981, - 0.041296, - 0.021198, - -0.01976, - -0.027966, - 0.038883, - -0.017688, - 0.057565, - 0.090275, - 0.051143, - 0.064178, - -0.027922, - 0.063992, - -0.055674, - -0.01044, - 0.013235, - -0.076736, - -0.0020593, - -0.049689, - 0.11153, - -0.11964, - -0.06804, - 0.0061, - -0.019911, - 0.0078454, - 0.067422, - 0.023648, - -0.0078162, - 0.088903, - -0.041681, - 0.071524, - 0.018316, - 0.013735, - -0.0045222, - -0.057016, - 0.035466, - -0.011723, - 0.015445, - -0.06025, - -0.018594, - 0.0044707, - -0.073632, - 0.10631, - -0.025749, - 0.056569, - 0.021818, - -0.00268, - 0.031182 - ], - "owners": [ - 0.061195, - -0.047162, - 0.01239, - -0.014565, - -0.11836, - 0.032226, - 0.0055935, - -0.0852, - 0.069812, - 0.034235, - -0.03211, - -0.0019076, - -0.039889, - -0.099216, - -0.029745, - 0.0088325, - 0.04253, - 0.018943, - 0.068774, - -0.023375, - -0.018935, - -0.10095, - -0.0049195, - 0.097864, - 0.028603, - -0.018874, - -0.015842, - -0.019128, - 0.12098, - -0.0145, - -0.072663, - -0.060202, - 0.010755, - 0.022208, - -0.024598, - 0.093397, - -0.058007, - -0.056816, - -0.055947, - -0.0085229, - 0.013395, - -0.069551, - -0.044886, - 0.084788, - 0.029902, - 0.045609, - 0.056033, - 0.067368, - -0.019082, - -0.043324, - 0.02471, - -0.015266, - -0.0086037, - 0.013389, - -0.03282, - -0.030782, - -0.018008, - -0.013885, - -0.063958, - -0.042099, - 0.12021, - -0.005163, - 0.14209, - 0.029112, - 0.068067, - 0.037128, - 0.005319, - -0.0057101, - 0.077368, - -0.036847, - -0.0064267, - -0.024618, - 0.15414, - 0.038113, - 0.048621, - 0.027159, - -0.10886, - -0.029854, - -0.10275, - -0.032962, - -0.056778, - 0.039038, - 0.073568, - 0.072836, - -0.079823, - -0.034745, - 0.0022596, - -0.04059, - 0.034688, - -0.018303, - 0.072183, - 0.016949, - -0.093167, - -0.051259, - 0.050397, - 0.08025, - -0.023862, - 0.012037, - -0.0055579, - -0.018087, - -0.000026542, - -0.047912, - -0.018094, - -0.04611, - 0.076881, - -0.10087, - -0.067561, - 0.057027, - -0.0069795, - -0.0055797, - -0.0090868, - 0.15206, - 0.075983, - 0.049641, - -0.015265, - -0.073022, - -0.023602, - -0.0029499, - -0.013724, - 0.045406, - -0.058973, - 0.032695, - 0.045739, - 0.0032939, - 0.13908, - 0.056666, - 0.010834, - -0.091915, - 0.046917, - 0.11855, - 0.079234, - 0.17596, - 0.028363, - 0.0019172, - 0.042668, - 0.0048973, - 0.0055804, - 0.068525, - -0.071598, - -0.0083869, - -0.090167, - 0.0064597, - -0.01467, - -0.030847, - 0.035462, - -0.10685, - 0.028658, - -0.04721, - -0.047432, - -0.066728, - 0.057546, - 0.073711, - 0.048053, - -0.051094, - 0.067497, - -0.068982, - 0.080872, - 0.011671, - -0.017744, - 0.0064422, - 0.053041, - -0.025833, - 0.08202, - 0.079758, - 0.081774, - 0.018037, - 0.083061, - 0.062086, - -0.00014493, - 0.035481, - -0.011463, - 0.030105, - 0.016189, - -0.0070045, - -0.036918, - 0.053591, - -0.072097, - 0.021489, - -0.049945, - 0.052678, - 0.056905, - -0.078037, - 0.025985, - 0.045631, - -0.044831, - -0.096735, - -0.050306, - 0.096713, - -0.00090366, - -0.044275, - -0.052501, - 0.10657, - -0.13252, - 0.046191, - -0.015301, - 0.071004, - 0.055075, - 0.020957, - 0.024836, - 0.035271, - -0.15554, - 0.14931, - -0.053898, - -0.1105, - 0.068029, - -0.12345, - -0.000045435, - 0.007722, - -0.064506, - -0.054305, - 0.076798, - 0.01983, - 0.042232, - 0.017051, - -0.12481, - -0.026966, - -0.015999, - 0.0030514, - 0.01466, - 0.031793, - 0.057011, - -0.10151, - 0.055219, - 0.13021, - 0.11551, - -0.04997, - 0.0012598, - 0.040397, - -0.041817, - -0.043481, - -0.028353, - 0.015307, - -0.040665, - -0.053072, - 0.013212, - -0.033891, - 0.0022458, - 0.048868, - 0.07325, - 0.043828, - -0.017408, - -0.0032226, - 0.062084, - 0.003238, - 0.045999, - 0.0082837, - -0.019556, - -0.1023, - -0.0099754, - -0.027728, - -0.013755, - -0.040086, - 0.064743, - 0.060263, - 0.024332, - -0.050863, - -0.10102, - 0.044303, - -0.0071553, - -0.0055644, - -0.0044745, - -0.020334, - 0.012463, - 0.042791, - 0.044288, - 0.020819, - -0.034747, - 0.041305, - -0.059681, - 0.03216, - -0.083604, - 0.060907, - -0.1508, - -0.043271, - 0.076494, - 0.020651, - -0.024686, - 0.01959, - 0.02117, - -0.021176, - -0.016775, - 0.017465, - 0.0061568, - 0.038893, - 0.03568, - 0.0056248, - -0.098047, - -0.12721, - 0.0073109, - 0.076854, - -0.017009, - 0.038694, - -0.074392, - 0.042455, - -0.0024653, - -0.053778, - -0.034786, - 0.013681, - -0.080164, - 0.02415 - ], - "stormy": [ - 0.016127, - -0.10487, - 0.07125, - -0.02162, - -0.0033243, - -0.039153, - 0.024005, - -0.13125, - 0.029241, - 0.12318, - -0.016284, - -0.15239, - 0.019651, - 0.030549, - -0.047888, - 0.004751, - 0.10016, - -0.026217, - 0.051212, - 0.024341, - -0.035434, - -0.031051, - -0.096734, - 0.064532, - 0.072732, - 0.043833, - 0.034934, - -0.028452, - 0.049994, - -0.067114, - -0.043027, - 0.083914, - -0.014847, - -0.11745, - 0.029503, - 0.050317, - -0.001536, - -0.019477, - 0.0032636, - 0.019207, - -0.021125, - -0.051031, - 0.054633, - 0.068188, - -0.084637, - 0.078256, - 0.013293, - -0.060311, - -0.071713, - -0.039152, - 0.022821, - -0.014841, - 0.024235, - 0.05594, - -0.037008, - 0.0073513, - 0.061245, - -0.080142, - -0.060051, - 0.047725, - -0.036553, - 0.012998, - 0.1521, - -0.10742, - -0.03904, - 0.0097927, - -0.016888, - -0.093954, - 0.022957, - 0.028563, - 0.049042, - 0.041516, - -0.10341, - 0.044134, - -0.0099184, - -0.055781, - -0.10512, - 0.022122, - -0.028173, - 0.0061442, - 0.021561, - -0.038746, - 0.038068, - 0.027488, - 0.035673, - -0.0084272, - 0.1149, - 0.021742, - -0.0092081, - -0.051143, - 0.070093, - 0.042873, - -0.11488, - -0.006456, - 0.042909, - 0.020563, - 0.01227, - 0.026188, - 0.053492, - 0.051728, - -0.042093, - -0.014057, - 0.099977, - 0.023277, - 0.077829, - -0.092068, - -0.0083231, - -0.041977, - 0.073227, - 0.044572, - -0.0067451, - -0.0091827, - -0.020061, - 0.029949, - -0.075185, - 0.0076431, - 0.077264, - 0.083939, - -0.0057149, - 0.042297, - 0.03654, - -0.029925, - 0.059018, - 0.034048, - 0.012216, - -0.0094537, - 0.028996, - -0.068404, - -0.067865, - -0.00255, - 0.056784, - 0.061158, - -0.12299, - 0.066757, - -0.019946, - 0.0042219, - 0.083925, - 0.035543, - -0.0031774, - 0.12213, - 0.017234, - -0.027708, - -0.096645, - -0.0068094, - 0.074064, - 0.01449, - 0.034065, - -0.018013, - -0.048008, - 0.025132, - -0.024285, - 0.062745, - 0.068918, - 0.068797, - 0.038224, - 0.010232, - 0.058949, - -0.022086, - -0.099751, - 0.027589, - 0.066486, - 0.025869, - -0.001653, - 0.065714, - -0.04426, - -0.01866, - 0.03648, - 0.059598, - -0.0092187, - 0.10231, - -0.14464, - -0.027661, - -0.025296, - -0.0106, - 0.059044, - 0.071128, - 0.048519, - 0.076614, - -0.03927, - -0.046858, - -0.075276, - 0.023926, - -0.0032574, - -0.054364, - 0.026126, - -0.011057, - -0.025248, - 0.19255, - 0.013487, - -0.035514, - 0.043042, - -0.063977, - 0.0069045, - -0.024049, - -0.094832, - 0.031452, - 0.0016045, - 0.10176, - -0.0040748, - 0.0070682, - -0.15496, - 0.035066, - -0.018003, - -0.044349, - 0.051405, - 0.021042, - -0.12623, - -0.02264, - 0.01273, - -0.065831, - 0.12642, - -0.021697, - 0.10057, - 0.13903, - 0.16202, - -0.038895, - -0.073567, - -0.070833, - -0.068059, - -0.19255, - -0.010055, - 0.023083, - -0.0021861, - 0.064718, - -0.11423, - 0.033239, - -0.035438, - 0.10141, - -0.058824, - 0.010615, - 0.085019, - -0.12084, - -0.042135, - 0.060093, - 0.11652, - 0.012889, - 0.0023337, - -0.0056485, - 0.059424, - -0.060574, - 0.094023, - -0.020741, - -0.02386, - -0.024082, - -0.14808, - 0.0047938, - -0.05694, - -0.10775, - 0.032645, - -0.012986, - 0.088278, - -0.040809, - -0.020436, - 0.033054, - -0.065477, - 0.022362, - -0.049379, - 0.044966, - 0.070224, - -0.014808, - 0.062114, - 0.05477, - 0.084864, - -0.050679, - -0.052686, - -0.03786, - 0.025934, - 0.01714, - 0.0009454, - -0.09596, - 0.067403, - 0.094973, - -0.11441, - -0.017967, - 0.13398, - -0.14663, - -0.039274, - -0.014573, - 0.023895, - 0.074593, - 0.10447, - -0.083957, - 0.034439, - -0.087939, - -0.092843, - 0.023052, - -0.010233, - -0.080262, - -0.039298, - 0.021322, - 0.050377, - 0.043774, - -0.047847, - 0.0029786, - -0.089454, - -0.011384, - -0.058168, - 0.1465, - 0.0067046, - 0.029397 - ], - "justice": [ - -0.048592, - -0.052414, - 0.057333, - 0.030562, - -0.043974, - -0.062671, - -0.011596, - -0.078122, - 0.12233, - 0.013, - 0.04834, - -0.033038, - -0.017246, - 0.029287, - 0.030465, - -0.056176, - 0.11028, - -0.011366, - 0.020798, - 0.059971, - -0.051001, - 0.009359, - 0.01753, - 0.076444, - 0.011641, - -0.01866, - -0.027086, - 0.018987, - 0.011011, - 0.020442, - 0.019074, - -0.023748, - -0.1335, - -0.062556, - 0.021503, - 0.055283, - 0.0040227, - 0.052736, - -0.0031943, - -0.066957, - -0.074521, - -0.097561, - 0.000074281, - 0.018098, - 0.037936, - -0.051563, - 0.028772, - 0.042964, - -0.00071396, - 0.057518, - -0.0057367, - 0.060603, - -0.01117, - -0.0017471, - -0.10875, - -0.011141, - 0.0018325, - -0.0031172, - -0.051398, - 0.045687, - -0.069033, - -0.035988, - 0.044991, - -0.025268, - -0.0069996, - 0.0027097, - 0.002506, - -0.10716, - 0.025609, - 0.081829, - 0.057442, - -0.053042, - 0.015671, - -0.13483, - 0.0028774, - -0.0078907, - -0.013409, - -0.015268, - 0.01718, - 0.087184, - -0.02167, - 0.044189, - 0.01605, - 0.066935, - 0.049584, - 0.039619, - 0.052971, - -0.007414, - -0.026465, - 0.054335, - 0.029133, - 0.046426, - -0.097971, - -0.041062, - 0.017258, - 0.019327, - 0.014317, - -0.011713, - -0.0056419, - -0.017691, - 0.023425, - -0.039057, - 0.007278, - -0.05352, - 0.0053156, - -0.10368, - 0.028061, - -0.0085685, - -0.0019821, - -0.011355, - 0.010772, - 0.13078, - 0.038696, - -0.029659, - 0.0174, - 0.05307, - -0.00057012, - -0.039336, - 0.0036473, - -0.0055934, - 0.01673, - -0.090962, - 0.042583, - -0.016094, - 0.040637, - 0.082466, - 0.0095162, - -0.10924, - 0.00082775, - 0.17309, - -0.0082375, - -0.022732, - 0.03283, - 0.03207, - -0.013338, - -0.031588, - 0.041882, - -0.0072606, - 0.037647, - -0.10737, - -0.011576, - -0.0090791, - 0.035687, - -0.013459, - -0.048757, - -0.0097823, - -0.014023, - -0.022261, - 0.011027, - -0.0070565, - 0.090714, - 0.078131, - 0.032413, - -0.10568, - 0.047993, - 0.0036153, - -0.00034071, - -0.064826, - 0.0006364, - -0.087105, - 0.064401, - -0.026085, - -0.12678, - 0.055276, - -0.042116, - 0.022796, - 0.052329, - 0.06926, - -0.032597, - -0.028094, - 0.0014259, - -0.030019, - 0.080319, - 0.0055944, - 0.029733, - 0.066854, - 0.0054, - 0.022461, - -0.010744, - -0.034752, - -0.047942, - -0.012223, - 0.032989, - -0.027622, - -0.027444, - 0.018925, - 0.049713, - 0.10949, - 0.049306, - 0.0066159, - -0.002475, - 0.087078, - -0.02528, - 0.0048742, - -0.0025877, - -0.027914, - 0.028827, - 0.0071356, - -0.025947, - 0.027984, - -0.17434, - 0.0052342, - 0.085131, - -0.010511, - -0.099773, - -0.024298, - 0.037132, - -0.029477, - 0.068076, - 0.022348, - 0.06073, - -0.015405, - 0.0065571, - -0.001086, - 0.027508, - 0.0018398, - 0.025, - -0.070671, - -0.059017, - -0.0071036, - 0.015826, - -0.0042279, - -0.038208, - 0.095139, - 0.087204, - -0.010784, - -0.031, - 0.087584, - 0.0038862, - -0.020927, - 0.032296, - -0.049476, - -0.073214, - -0.026394, - 0.0038608, - 0.0076481, - -0.14551, - -0.046711, - 0.010229, - -0.036396, - 0.085197, - -0.0065497, - -0.076916, - 0.044117, - 0.0057614, - -0.0038411, - 0.0079645, - -0.040549, - -0.0058503, - 0.01867, - 0.061274, - 0.0077972, - -0.027597, - -0.0002676, - 0.040184, - 0.013428, - -0.058551, - 0.066051, - -0.029162, - -0.032961, - -0.10811, - -0.014792, - 0.027189, - -0.0038261, - -0.050261, - -0.01082, - 0.086277, - 0.056179, - -0.018391, - 0.00066727, - 0.005752, - 0.062615, - -0.11322, - -0.063292, - -0.040319, - -0.007618, - -0.029839, - 0.034138, - -0.021161, - 0.016485, - 0.066723, - 0.016544, - -0.037911, - -0.049658, - 0.013144, - -0.0068291, - -0.044232, - 0.072266, - 0.0079832, - 0.058463, - 0.0089195, - -0.0088671, - 0.025322, - 0.013458, - -0.0031426, - -0.012619, - -0.030978, - 0.07017, - -0.10683, - 0.046678 - ], - "debts": [ - 0.027265, - -0.063133, - 0.033795, - -0.0067903, - 0.066234, - -0.030228, - -0.010217, - -0.074563, - 0.061377, - -0.010151, - 0.083719, - -0.0082558, - -0.071946, - -0.068216, - -0.064837, - 0.045366, - 0.054334, - -0.041642, - 0.046207, - 0.026481, - 0.01337, - -0.037823, - -0.13943, - 0.080819, - 0.051911, - 0.0045218, - 0.0033107, - -0.025719, - 0.14346, - -0.17594, - 0.049309, - 0.044766, - -0.065587, - -0.063272, - 0.011117, - 0.067134, - -0.13912, - 0.0047184, - -0.096326, - -0.013375, - 0.027502, - -0.11557, - 0.031118, - 0.071432, - 0.013889, - 0.051881, - 0.0035638, - -0.049456, - -0.034968, - -0.028822, - -0.044282, - -0.022894, - 0.02289, - -0.038065, - -0.06395, - 0.025272, - -0.20486, - -0.026277, - -0.018491, - -0.089145, - 0.10708, - -0.041315, - 0.20809, - 0.050688, - -0.060444, - -0.12917, - -0.016547, - -0.08785, - 0.050412, - 0.019063, - 0.039378, - -0.063722, - 0.090749, - 0.0065203, - 0.066437, - 0.058853, - -0.11876, - -0.014414, - 0.13382, - 0.024274, - -0.046427, - -0.029175, - -0.057538, - 0.10077, - 0.091614, - 0.010691, - 0.051975, - -0.038009, - -0.013557, - 0.020586, - 0.060107, - 0.011115, - -0.086835, - 0.055576, - -0.084818, - -0.0078073, - -0.18891, - -0.1345, - 0.031389, - 0.023933, - 0.023918, - -0.027482, - -0.017492, - -0.041565, - 0.17087, - -0.00042161, - -0.1232, - -0.066075, - -0.018166, - -0.12044, - -0.013345, - 0.080517, - 0.13025, - 0.064227, - 0.1003, - -0.032096, - 0.12498, - 0.0044576, - -0.050246, - -0.030356, - -0.033786, - -0.079659, - 0.052306, - -0.063446, - 0.19057, - 0.0735, - -0.031279, - -0.095458, - 0.0054439, - 0.090501, - -0.027322, - -0.0017815, - -0.070882, - -0.03463, - 0.05254, - 0.11929, - 0.0011465, - 0.082129, - -0.10478, - 0.091356, - 0.060375, - -0.041036, - -0.11158, - -0.022815, - 0.013929, - -0.13275, - 0.070589, - -0.021615, - -0.0028751, - -0.15156, - 0.00169, - 0.073111, - 0.030827, - -0.04293, - -0.011858, - -0.0041038, - 0.039564, - -0.006125, - 0.11428, - -0.13431, - 0.11414, - 0.062691, - -0.065896, - 0.023349, - -0.025796, - -0.0057418, - 0.11128, - 0.065808, - 0.057732, - 0.11318, - 0.02364, - -0.13372, - 0.042491, - -0.064645, - -0.022354, - 0.089431, - -0.061001, - -0.013077, - -0.010644, - -0.037037, - 0.10943, - -0.057809, - 0.037407, - 0.032083, - 0.021574, - -0.11711, - -0.094379, - 0.15588, - 0.10345, - 0.0013813, - 0.013227, - 0.018222, - -0.098085, - -0.062724, - -0.014939, - -0.040608, - -0.013001, - -0.043858, - -0.045306, - 0.031164, - -0.20694, - -0.0083716, - 0.040796, - -0.092935, - 0.079482, - 0.047794, - 0.08093, - -0.15895, - -0.066034, - -0.058271, - 0.069023, - 0.018967, - 0.0094004, - -0.075038, - 0.074485, - -0.027868, - -0.035845, - 0.045075, - -0.056857, - -0.097103, - 0.15205, - 0.080648, - 0.066862, - 0.076837, - 0.11293, - 0.10249, - -0.075984, - 0.053717, - -0.019038, - -0.048079, - -0.01847, - -0.015037, - -0.14334, - -0.085861, - 0.13405, - 0.022933, - -0.078959, - -0.023637, - -0.023853, - 0.085228, - -0.041621, - 0.013634, - 0.038442, - -0.054003, - -0.028232, - -0.0090419, - -0.096362, - -0.11948, - -0.039263, - 0.029548, - -0.035974, - -0.030846, - 0.015573, - 0.0065403, - -0.024994, - -0.032413, - -0.032959, - -0.002924, - -0.080585, - 0.029059, - 0.02952, - -0.082574, - -0.045014, - -0.089568, - -0.070901, - -0.018124, - -0.011148, - 0.015534, - 0.055559, - 0.061328, - -0.010053, - 0.094953, - -0.14881, - -0.054253, - 0.084734, - -0.0088325, - 0.040604, - -0.030503, - -0.029014, - 0.054404, - 0.12245, - 0.12553, - -0.017683, - -0.064717, - -0.0056151, - 0.1522, - -0.0066918, - 0.10458, - -0.060371, - 0.12229, - 0.097805, - 0.041837, - -0.073777, - 0.048139, - -0.10712, - -0.037328, - 0.032551, - -0.01208, - -0.0034108, - 0.0074094 - ], - "storms": [ - 0.026303, - 0.00092469, - -0.00049977, - -0.064515, - 0.066157, - -0.078126, - -0.019074, - -0.079071, - 0.059676, - 0.054367, - 0.0079411, - -0.026227, - -0.037869, - -0.017516, - -0.05433, - 0.037025, - 0.084234, - -0.0015066, - 0.064273, - 0.012511, - 0.021142, - -0.052964, - -0.036191, - 0.07225, - 0.10257, - -0.07069, - -0.031195, - 0.0032708, - 0.11902, - 0.005506, - -0.059879, - -0.02827, - 0.019038, - -0.060767, - -0.020287, - 0.028735, - 0.018152, - -0.088752, - -0.072594, - -0.057492, - -0.051656, - -0.079178, - 0.036257, - 0.091615, - -0.057626, - 0.090455, - 0.055544, - 0.037992, - -0.030514, - -0.060315, - 0.050038, - -0.11155, - -0.0053857, - 0.008053, - -0.082058, - 0.036898, - 0.13414, - -0.031169, - -0.041322, - 0.054274, - -0.051619, - -0.030319, - 0.11431, - -0.0084091, - -0.019216, - -0.065732, - -0.030895, - -0.02485, - 0.071204, - 0.025541, - 0.096943, - 0.11854, - 0.037516, - -0.024478, - -0.015125, - -0.089892, - -0.030856, - -0.022955, - -0.0047076, - 0.04837, - -0.013067, - 0.0095951, - -0.057062, - 0.083421, - 0.12204, - 0.00067899, - 0.12411, - -0.0034649, - -0.0032808, - -0.066569, - -0.038439, - -0.062501, - -0.11332, - 0.035825, - -0.0053058, - 0.031048, - 0.036517, - 0.055035, - 0.089473, - -0.007236, - 0.068336, - -0.039205, - 0.10167, - -0.0098729, - 0.099456, - -0.055265, - -0.026574, - -0.0039161, - 0.085392, - 0.072326, - 0.017583, - -0.043663, - 0.086639, - -0.020633, - -0.038107, - -0.064025, - -0.029532, - 0.091558, - -0.043317, - -0.0050511, - -0.029807, - -0.0072257, - 0.12594, - -0.03532, - 0.1381, - 0.035878, - 0.001079, - -0.020523, - -0.14056, - 0.11865, - 0.027835, - 0.078021, - -0.048551, - 0.058902, - 0.078415, - 0.017416, - 0.1077, - 0.056207, - -0.030551, - 0.018363, - 0.022709, - -0.018102, - -0.050367, - -0.04981, - 0.081491, - -0.091991, - 0.040206, - -0.010317, - -0.076512, - 0.031519, - 0.016993, - 0.077597, - -0.022695, - -0.011524, - 0.10768, - -0.020435, - 0.025424, - 0.053877, - -0.064816, - -0.0065131, - 0.01456, - -0.032531, - -0.049967, - 0.039041, - -0.02347, - -0.023836, - -0.043858, - -0.0059094, - -0.0073839, - 0.043123, - 0.0051545, - -0.049101, - 0.081275, - -0.045412, - -0.0029851, - 0.064943, - 0.033782, - 0.0042248, - -0.037556, - -0.032578, - 0.0080104, - 0.017137, - 0.034446, - -0.1185, - -0.069344, - -0.054651, - -0.00029862, - 0.1176, - 0.041537, - -0.12363, - 0.011694, - -0.022056, - -0.12358, - -0.043734, - -0.020879, - -0.02376, - -0.047303, - 0.045813, - -0.015007, - 0.018179, - -0.18477, - 0.054221, - -0.0096382, - 0.029219, - 0.12811, - -0.016104, - 0.009137, - -0.025043, - 0.013305, - -0.076315, - 0.12441, - 0.037201, - 0.064075, - 0.06156, - 0.090342, - -0.02124, - -0.047903, - -0.042764, - -0.039423, - -0.13131, - -0.0078084, - 0.017559, - -0.042328, - 0.10354, - 0.0047722, - 0.025664, - -0.068868, - 0.08688, - -0.038331, - 0.049542, - 0.074218, - -0.056824, - -0.04952, - -0.0035198, - 0.050218, - 0.025711, - 0.031468, - 0.0043068, - 0.078445, - -0.036471, - -0.026312, - 0.014295, - 0.0095633, - -0.041896, - 0.00080237, - -0.0077929, - 0.039686, - -0.0092139, - 0.00062615, - -0.0095877, - 0.0056834, - 0.0023399, - 0.047984, - -0.021193, - -0.081474, - 0.032251, - 0.013298, - 0.011929, - 0.032447, - 0.055885, - 0.064645, - 0.016681, - -0.0015406, - -0.059718, - -0.0074425, - -0.064985, - -0.028559, - 0.026813, - 0.039851, - -0.11681, - -0.049088, - 0.10444, - -0.15184, - -0.015509, - 0.022445, - -0.10899, - -0.037228, - -0.09525, - -0.0052701, - 0.0068245, - 0.054772, - -0.04115, - 0.026162, - -0.046442, - 0.00072094, - 0.0079191, - 0.019739, - 0.033101, - -0.045456, - -0.016513, - 0.043524, - 0.073611, - -0.13543, - -0.030843, - 0.029071, - -0.058552, - -0.099524, - 0.086253, - 0.078552, - -0.03308 - ], - "histories": [ - 0.014428, - -0.09657, - 0.069388, - 0.013435, - 0.0052973, - -0.016698, - -0.010341, - -0.068824, - 0.045277, - 0.042241, - 0.013115, - -0.089066, - 0.01817, - -0.026439, - 0.054671, - -0.024723, - 0.059921, - -0.015133, - 0.042633, - 0.0068159, - -0.025146, - 0.026044, - -0.063275, - 0.10007, - -0.026694, - -0.0081376, - -0.040456, - 0.006235, - 0.072629, - 0.033649, - 0.0087778, - -0.030792, - -0.024303, - -0.067143, - 0.029932, - 0.031468, - -0.035361, - 0.025275, - -0.037135, - -0.0060585, - -0.05308, - -0.12503, - 0.026113, - 0.044749, - 0.020924, - -0.015336, - 0.039717, - 0.006006, - 0.0036387, - -0.020216, - -0.053816, - 0.029936, - 0.0086232, - -0.027854, - -0.053221, - 0.039216, - -0.028116, - 0.0399, - -0.0111, - -0.030696, - 0.043531, - -0.0029318, - 0.13823, - -0.076794, - 0.082612, - -0.057163, - -0.066721, - 0.062327, - 0.025927, - 0.037895, - -0.047745, - -0.014625, - 0.0060207, - -0.015205, - 0.039484, - -0.026147, - 0.065551, - -0.04549, - 0.032751, - -0.056978, - -0.017221, - -0.0086605, - -0.05931, - 0.030878, - -0.083781, - -0.040881, - 0.031584, - -0.015434, - 0.0036737, - 0.00093106, - 0.011567, - 0.038771, - -0.039787, - 0.044052, - -0.0079357, - 0.018665, - -0.027185, - 0.014184, - 0.054289, - -0.025164, - 0.042756, - -0.03194, - -0.023157, - -0.026281, - 0.06711, - -0.049153, - -0.0054736, - 0.002654, - 0.079889, - 0.046073, - 0.032241, - 0.031934, - 0.032244, - -0.01284, - -0.028243, - 0.031608, - -0.017029, - 0.041194, - -0.039462, - -0.0072527, - -0.0067978, - -0.0375, - 0.0491, - -0.011216, - 0.047736, - 0.036684, - -0.044457, - 0.0010752, - 0.048932, - 0.15996, - -0.0081738, - 0.047471, - 0.029082, - -0.0064041, - 0.020315, - -0.011466, - 0.02907, - 0.044993, - -0.024727, - -0.034293, - 0.029596, - 0.041992, - 0.005753, - 0.049136, - 0.074179, - -0.036883, - 0.018793, - -0.0023158, - 0.036629, - -0.018821, - 0.011079, - 0.068916, - 0.01366, - -0.035269, - 0.031412, - -0.026819, - 0.059162, - 0.043592, - 0.016288, - 0.019729, - -0.0038523, - 0.012511, - 0.0024185, - -0.019332, - 0.0105, - 0.037836, - 0.036622, - 0.00048926, - -0.026159, - -0.04231, - -0.0030715, - -0.039387, - -0.024466, - -0.0087371, - -0.00079688, - 0.064434, - 0.000099013, - -0.010614, - -0.016626, - 0.022983, - 0.066772, - 0.01588, - -0.009139, - 0.0083553, - 0.047058, - -0.0097892, - 0.042466, - 0.1062, - 0.009622, - -0.00056346, - 0.041782, - 0.04273, - -0.091239, - -0.020676, - -0.023022, - 0.01547, - -0.013745, - -0.043183, - -0.028884, - -0.0024444, - -0.1104, - 0.0073578, - -0.030647, - -0.054542, - 0.015807, - -0.046772, - 0.043418, - 0.037206, - 0.013394, - -0.011253, - 0.059509, - 0.050927, - 0.033971, - 0.013057, - 0.04037, - 0.013144, - -0.036933, - -0.029858, - -0.082096, - 0.0082835, - 0.032655, - 0.0085334, - -0.00077858, - 0.079726, - 0.079083, - 0.018147, - 0.076343, - 0.079757, - -0.044479, - 0.0017415, - 0.026673, - -0.034371, - -0.063214, - 0.019007, - 0.013285, - 0.0062846, - 0.014676, - 0.057138, - 0.028917, - 0.017132, - -0.040583, - 0.041017, - -0.066308, - 0.0095054, - 0.0026442, - -0.033735, - -0.069913, - -0.053748, - -0.031903, - -0.019925, - 0.060485, - 0.012926, - 0.022626, - -0.0012524, - -0.030333, - 0.025727, - -0.01568, - -0.01209, - 0.070853, - 0.030139, - -0.011728, - -0.016076, - -0.011662, - -0.034762, - 0.011226, - -0.070881, - 0.022738, - 0.033867, - 0.02504, - -0.022201, - 0.020386, - 0.092061, - -0.087212, - -0.045172, - 0.039405, - 0.004815, - -0.029056, - 0.021275, - -0.037002, - 0.0077501, - 0.043172, - -0.058971, - -0.0014189, - -0.011741, - -0.0063386, - 0.032416, - -0.084906, - 0.024881, - -0.027547, - 0.0068289, - -0.00048705, - 0.028695, - -0.069495, - -0.037984, - 0.030515, - 0.02625, - 0.0044551, - -0.0092211, - -0.024671, - 0.002331 - ], - "in-car": [ - -0.078386, - -0.00786, - -0.023473, - 0.12908, - 0.029898, - 0.078036, - -0.0074571, - -0.067677, - 0.047289, - 0.094525, - 0.044133, - -0.081687, - -0.0016413, - 0.085695, - 0.027145, - 0.041903, - 0.012767, - 0.022924, - 0.097739, - 0.076978, - 0.01484, - -0.10403, - 0.085226, - 0.079229, - 0.019064, - 0.047622, - 0.0088093, - -0.011593, - 0.079337, - -0.014647, - -0.055503, - 0.045388, - 0.052169, - -0.095529, - 0.10296, - 0.025202, - -0.018242, - 0.03269, - 0.067237, - -0.059525, - -0.076075, - -0.15641, - -0.0046538, - 0.066412, - 0.033001, - -0.039791, - -0.012151, - -0.068731, - -0.029086, - 0.0018898, - -0.0014501, - 0.010456, - 0.016691, - -0.0026619, - -0.013653, - 0.021859, - -0.067972, - -0.058695, - 0.006316, - 0.0072306, - 0.012607, - -0.017336, - 0.14001, - 0.13353, - 0.018849, - -0.00040958, - 0.0091109, - -0.025904, - 0.0058907, - 0.058476, - 0.091042, - -0.039748, - 0.043356, - 0.036724, - -0.064228, - 0.030931, - 0.027654, - -0.090485, - -0.016013, - -0.06184, - -0.057506, - -0.052427, - -0.028598, - 0.010298, - 0.064316, - -0.040202, - 0.01553, - 0.011253, - -0.077278, - -0.036082, - 0.073024, - 0.030669, - -0.10458, - 0.041493, - 0.051457, - 0.13185, - 0.040094, - -0.0044593, - -0.037033, - -0.064045, - 0.014177, - -0.036081, - 0.0043772, - -0.026179, - -0.0078089, - -0.094749, - 0.032184, - 0.029753, - 0.013797, - -0.01635, - 0.054554, - 0.14849, - 0.1205, - 0.098813, - 0.0073848, - -0.10745, - -0.070715, - -0.037952, - -0.066086, - 0.0050344, - 0.022424, - 0.13104, - 0.010435, - 0.010515, - 0.04633, - 0.039429, - 0.0057596, - -0.012122, - 0.030414, - 0.10287, - 0.035851, - -0.00097371, - 0.055547, - -0.10428, - 0.048363, - -0.061682, - 0.070601, - -0.042708, - -0.027494, - -0.079249, - 0.05383, - 0.011522, - 0.070153, - -0.015359, - -0.04957, - 0.013876, - -0.035669, - 0.032855, - 0.023338, - 0.010145, - 0.092859, - 0.17456, - 0.023133, - -0.022184, - -0.048812, - 0.027619, - -0.038558, - 0.10172, - -0.01033, - 0.0013864, - 0.023178, - -0.018823, - -0.075321, - -0.0084027, - 0.0436, - -0.015183, - 0.045344, - 0.0033879, - 0.012151, - -0.013854, - -0.017076, - 0.02802, - -0.036214, - 0.084069, - 0.040785, - 0.050303, - -0.01467, - -0.0010466, - -0.065813, - -0.093481, - 0.039093, - -0.06613, - -0.095831, - -0.07407, - 0.034972, - -0.054379, - -0.033728, - 0.17984, - 0.019386, - 0.037881, - -0.046281, - -0.0085517, - 0.091965, - -0.00044424, - 0.056898, - 0.086702, - -0.031063, - -0.014096, - -0.012767, - 0.039353, - -0.14392, - 0.075714, - -0.099999, - -0.040118, - -0.025751, - 0.036056, - -0.032949, - 0.058558, - -0.10154, - -0.046594, - 0.17867, - 0.064087, - 0.070046, - 0.018943, - 0.016594, - -0.012805, - -0.095233, - -0.10771, - -0.037169, - -0.010585, - 0.0086932, - -0.018873, - 0.05604, - 0.085743, - 0.039077, - -0.10157, - -0.031379, - 0.041603, - -0.043514, - -0.033547, - 0.0051278, - -0.064832, - -0.013019, - -0.020488, - 0.078358, - 0.026958, - 0.13976, - 0.018418, - 0.0025384, - -0.041237, - 0.030696, - 0.043169, - -0.10276, - -0.048578, - -0.099188, - 0.012443, - 0.12288, - -0.026664, - 0.034577, - -0.04275, - 0.038619, - 0.022728, - -0.11407, - 0.049293, - -0.021619, - -0.11948, - 0.030957, - -0.019406, - 0.014147, - 0.01709, - 0.07105, - 0.081722, - -0.10227, - -0.015483, - 0.00012922, - 0.024007, - 0.085215, - 0.0049618, - 0.0105, - 0.066596, - -0.076068, - 0.090934, - -0.11629, - -0.028482, - -0.14569, - -0.079956, - -0.031858, - 0.16097, - 0.039816, - -0.00016833, - 0.23551, - 0.0056628, - -0.050412, - -0.020275, - -0.024305, - -0.10866, - -0.10927, - 0.055113, - 0.11773, - 0.019145, - 0.081282, - -0.13472, - -0.085094, - -0.022915, - -0.037356, - 0.0029082, - 0.011456, - 0.02134, - 0.139, - 0.02067 - ], - "pre-history": [ - -0.015381, - -0.080854, - -0.010963, - 0.019592, - 0.019996, - 0.0014515, - 0.01402, - -0.072745, - 0.016557, - -0.0033644, - 0.021153, - -0.050718, - -0.01244, - 0.016845, - 0.066316, - -0.022864, - 0.0988, - -0.014435, - 0.026184, - 0.048642, - -0.024663, - 0.02213, - -0.0095982, - 0.067671, - 0.012927, - -0.011347, - -0.011744, - 0.02815, - 0.020202, - 0.019253, - 0.0083937, - -0.0093003, - 0.045295, - -0.062399, - 0.0011297, - 0.0097796, - 0.03232, - 0.0030801, - 0.024484, - -0.013948, - -0.034909, - -0.055323, - 0.041247, - 0.031318, - 0.039845, - 0.0000014044, - 0.011122, - -0.047116, - 0.0027172, - -0.023745, - -0.040423, - 0.018843, - -0.0018511, - -0.040293, - -0.029681, - 0.042147, - 0.019807, - -0.013905, - -0.020298, - 0.016287, - 0.046281, - 0.0069241, - 0.038726, - -0.027913, - 0.050662, - -0.021255, - -0.0060527, - 0.039448, - 0.032082, - 0.041715, - -0.048621, - -0.017951, - 0.0040364, - -0.011294, - -0.055744, - 0.021074, - -0.0083341, - -0.027829, - 0.019618, - 0.0053949, - 0.002413, - 0.012055, - 0.038815, - 0.059526, - -0.039901, - -0.0033053, - -0.027059, - -0.030556, - -0.00016671, - 0.023508, - -0.0159, - 0.030309, - -0.057996, - 0.043693, - 0.011715, - 0.044428, - -0.019148, - 0.013702, - 0.017159, - -0.037914, - -0.0043335, - -0.027041, - 0.012816, - -0.0017451, - -0.010377, - -0.039679, - 0.035736, - 0.028498, - -0.0010311, - 0.021588, - -0.0057226, - 0.040351, - 0.015799, - -0.022538, - -0.00078913, - 0.059745, - -0.04037, - 0.030587, - -0.055417, - 0.069677, - 0.029266, - -0.027614, - 0.015229, - 0.005164, - -0.0096492, - 0.0016173, - -0.023623, - -0.025138, - 0.028989, - 0.092626, - 0.0019828, - 0.013586, - -0.078149, - 0.023315, - -0.022605, - -0.061116, - 0.015826, - 0.025166, - 0.041464, - -0.03463, - -0.023062, - 0.024035, - 0.060531, - 0.051764, - 0.015878, - -0.031219, - 0.043383, - -0.019304, - 0.012503, - -0.036651, - 0.070042, - 0.04434, - -0.0063954, - -0.010141, - -0.0038253, - -0.016456, - 0.06123, - -0.029507, - 0.0093477, - -0.023997, - 0.013698, - -0.011204, - -0.02585, - 0.03583, - 0.024804, - 0.046081, - -0.026364, - 0.027709, - 0.04375, - -0.01759, - -0.001887, - -0.052139, - 0.025119, - -0.001286, - 0.041622, - 0.040211, - 0.053455, - -0.0064794, - -0.0012074, - 0.039556, - -0.012374, - 0.035087, - 0.0070326, - -0.0001898, - 0.063985, - -0.0079393, - 0.032953, - 0.060376, - -0.0052481, - -0.0035814, - 0.094442, - 0.027042, - -0.036648, - -0.0064663, - 0.011993, - 0.012077, - -0.04457, - -0.034908, - -0.011299, - 0.070178, - -0.093937, - -0.016477, - -0.054028, - -0.027841, - 0.022572, - 0.01877, - 0.00061845, - -0.024462, - 0.012504, - 0.013218, - 0.084465, - -0.026449, - 0.004392, - -0.029241, - 0.06756, - 0.031949, - -0.022953, - -0.0026052, - -0.0048306, - -0.035267, - 0.0043363, - -0.0081871, - -0.027632, - 0.071584, - -0.025143, - 0.017277, - 0.062703, - 0.057472, - -0.019279, - -0.043161, - -0.013174, - -0.043402, - -0.02711, - 0.0066839, - 0.018996, - -0.011117, - 0.0020646, - 0.062154, - 0.01373, - -0.0020052, - 0.038166, - 0.062994, - -0.028922, - 0.0073634, - -0.046553, - -0.07455, - -0.092343, - -0.013198, - -0.091387, - -0.022546, - 0.058529, - -0.012771, - 0.025513, - 0.00087607, - -0.0040583, - 0.033445, - -0.018999, - 0.057287, - 0.094823, - 0.0063662, - 0.0507, - 0.0090247, - 0.010179, - -0.021185, - 0.023694, - -0.043228, - -0.022071, - 0.056727, - 0.034737, - -0.047019, - 0.031848, - 0.053426, - -0.036693, - -0.002978, - 0.026432, - -0.074346, - 0.016829, - 0.04039, - -0.054586, - 0.011359, - 0.051372, - -0.039165, - 0.020294, - -0.024343, - -0.027706, - 0.029146, - -0.0064098, - -0.035623, - -0.026987, - 0.0076007, - -0.016239, - 0.060207, - -0.03844, - -0.074724, - 0.028275, - 0.017363, - 0.0032993, - 0.022055, - -0.032199, - -0.013531 - ], - "non-combat": [ - 0.0059782, - -0.03638, - 0.061061, - -0.030959, - -0.023132, - -0.024384, - 0.021705, - -0.064404, - 0.039829, - 0.037306, - -0.010157, - -0.032716, - -0.030469, - 0.028231, - 0.0078255, - 0.11529, - 0.085917, - -0.033516, - 0.048243, - -0.019802, - 0.046486, - -0.052689, - 0.013582, - 0.024565, - -0.030018, - -0.026152, - 0.038084, - -0.016221, - -0.0070725, - -0.053333, - -0.0068813, - -0.0091615, - -0.017506, - -0.093166, - 0.10851, - 0.017238, - -0.010717, - -0.031873, - 0.053773, - 0.047818, - -0.0049282, - -0.058371, - 0.038118, - -0.019966, - -0.04144, - 0.0037535, - -0.0029579, - 0.023482, - -0.034467, - 0.010754, - 0.0003699, - 0.038672, - 0.0199, - -0.042063, - 0.013824, - 0.012062, - -0.035938, - -0.03001, - 0.023026, - 0.038762, - -0.042889, - -0.057292, - 0.10599, - -0.030121, - 0.02229, - -0.071447, - -0.0090678, - -0.040371, - -0.0087418, - 0.032489, - -0.019917, - -0.00030743, - 0.04885, - 0.063881, - 0.034746, - 0.030258, - -0.00050725, - 0.0049706, - -0.01427, - 0.0040113, - 0.028578, - -0.010409, - 0.005637, - 0.029522, - -0.06465, - 0.028851, - -0.024757, - -0.0048854, - 0.02568, - 0.015268, - -0.013481, - 0.020768, - -0.058072, - 0.054389, - -0.028546, - -0.0027414, - -0.031536, - -0.021464, - 0.032262, - 0.0018527, - 0.033941, - 0.0029089, - 0.027191, - -0.025511, - 0.019159, - -0.046298, - -0.01917, - 0.052905, - -0.034835, - -0.036839, - -0.018095, - 0.048261, - 0.046611, - 0.042786, - 0.021523, - -0.017533, - -0.032993, - -0.01519, - -0.046748, - -0.04065, - -0.045233, - 0.028316, - -0.034741, - -0.045653, - 0.13689, - 0.052301, - 0.0054656, - -0.072097, - 0.033998, - 0.025203, - -0.04305, - 0.072557, - 0.0058244, - 0.019973, - 0.015224, - 0.032506, - 0.0064682, - 0.052203, - 0.041406, - -0.011406, - -0.068486, - -0.038888, - -0.017425, - 0.014478, - -0.0022421, - 0.011263, - -0.029477, - -0.009335, - 0.0486, - 0.00067882, - 0.029987, - 0.085666, - -0.063949, - -0.077003, - -0.014188, - 0.048264, - -0.1117, - 0.022541, - -0.0048539, - 0.0088133, - 0.01674, - -0.013684, - -0.091865, - -0.037069, - -0.055385, - -0.026715, - -0.0028707, - 0.020067, - -0.047728, - -0.068747, - 0.096828, - 0.0013016, - -0.027852, - 0.022706, - -0.047643, - 0.042535, - 0.022417, - -0.018708, - -0.038907, - -0.014159, - 0.042044, - 0.03599, - -0.035908, - -0.011914, - 0.061378, - -0.049823, - 0.025473, - 0.12063, - 0.016884, - -0.025727, - 0.0090642, - 0.0002994, - 0.0057816, - -0.087241, - -0.025759, - 0.06426, - -0.034734, - -0.030015, - -0.0094954, - 0.033673, - -0.11684, - 0.014638, - -0.053041, - 0.046717, - -0.0088485, - 0.012859, - -0.038109, - 0.037189, - 0.06099, - -0.030211, - 0.094907, - -0.017449, - 0.015281, - 0.007118, - 0.066145, - 0.095061, - -0.015633, - 0.040543, - -0.019984, - 0.016596, - 0.016667, - -0.018027, - -0.018152, - 0.076364, - -0.035303, - -0.00035928, - -0.0056909, - 0.051428, - -0.048898, - 0.0028674, - -0.022519, - -0.0011244, - -0.0692, - -0.048468, - 0.04859, - 0.017719, - -0.010335, - 0.013968, - 0.016074, - -0.014117, - 0.02333, - 0.029893, - 0.076326, - -0.028402, - -0.13193, - 0.041845, - 0.0077068, - -0.0028642, - 0.022258, - -0.017952, - -0.016653, - 0.12553, - 0.027197, - 0.011529, - -0.025126, - -0.018143, - 0.11544, - 0.038775, - 0.069198, - -0.00084564, - -0.040492, - -0.037186, - -0.046845, - -0.037328, - -0.036457, - 0.038535, - -0.0052601, - -0.021292, - 0.0082312, - -0.003706, - -0.031946, - 0.067663, - -0.069622, - -0.0023814, - -0.011199, - -0.10073, - -0.024361, - 0.013156, - 0.051226, - -0.02686, - 0.11526, - 0.040896, - 0.0066207, - 0.036271, - 0.011879, - -0.046118, - -0.02594, - 0.031072, - 0.0052133, - -0.048729, - 0.012042, - -0.019676, - -0.021802, - 0.01147, - 0.058584, - -0.0047119, - 0.0056984, - 0.075622, - 0.013776, - -0.0061663 - ], - "poodles": [ - 0.011907, - 0.0055894, - -0.0055789, - -0.059274, - -0.041594, - -0.022749, - 0.028204, - -0.075283, - 0.0038697, - -0.024354, - 0.035269, - -0.0031418, - 0.020803, - -0.0084148, - -0.031398, - -0.019457, - 0.017897, - 0.011057, - 0.07768, - -0.071224, - -0.0096324, - -0.059503, - 0.056746, - 0.018228, - -0.0081778, - 0.051765, - 0.074883, - -0.035223, - 0.10786, - -0.036057, - -0.096907, - -0.057175, - 0.050592, - 0.015707, - 0.032668, - 0.064682, - -0.049047, - -0.069379, - 0.056832, - -0.02754, - -0.076679, - -0.12278, - -0.050597, - -0.031683, - 0.083371, - 0.05368, - -0.013798, - -0.034225, - -0.027844, - -0.034254, - 0.048813, - 0.096687, - -0.019491, - -0.025265, - -0.044107, - -0.049059, - 0.00014091, - 0.062687, - -0.050457, - 0.017522, - -0.033704, - -0.097174, - 0.098683, - 0.00019553, - -0.039473, - 0.056836, - -0.054215, - -0.03415, - 0.0080561, - -0.032451, - 0.012566, - -0.0091759, - 0.11336, - -0.042142, - -0.02089, - 0.06277, - -0.0097452, - -0.061005, - -0.0078084, - -0.0072162, - -0.015081, - -0.027352, - 0.041681, - 0.18546, - 0.07748, - -0.032754, - -0.043637, - 0.0023317, - 0.061209, - 0.044805, - 0.02158, - -0.040104, - -0.098679, - -0.013056, - 0.13518, - 0.117, - -0.011133, - 0.07288, - 0.041498, - 0.060703, - 0.060169, - 0.068523, - -0.019102, - -0.042017, - 0.063302, - -0.074412, - 0.012203, - -0.069884, - 0.035121, - -0.046888, - 0.0090236, - 0.034245, - 0.014768, - 0.0016171, - -0.047727, - -0.071232, - 0.0063554, - 0.059458, - -0.041007, - 0.013046, - 0.028301, - 0.058385, - 0.022993, - -0.071453, - 0.14164, - 0.026715, - 0.053522, - -0.016859, - -0.11158, - 0.08293, - 0.017842, - 0.10207, - 0.052732, - 0.077275, - 0.01329, - -0.092789, - -0.058304, - 0.072496, - 0.023615, - -0.025004, - -0.033741, - -0.04461, - -0.052541, - -0.025655, - 0.013387, - -0.010578, - 0.092167, - -0.021086, - 0.017046, - -0.21238, - 0.00077288, - 0.099089, - 0.047881, - 0.014469, - -0.093344, - -0.011899, - -0.0041883, - -0.0085066, - -0.012251, - -0.031849, - 0.047481, - -0.018043, - 0.010671, - -0.053333, - -0.0052933, - 0.032942, - -0.057695, - 0.036679, - -0.069735, - -0.039047, - -0.0038895, - 0.071826, - -0.032895, - -0.030722, - -0.037194, - 0.045641, - -0.039652, - 0.038059, - 0.079547, - -0.0078526, - 0.056194, - -0.03766, - 0.023794, - -0.015745, - 0.031042, - -0.018813, - 0.0077599, - 0.13246, - 0.057061, - -0.025019, - -0.036457, - 0.085893, - -0.09992, - -0.11534, - 0.019534, - 0.079168, - -0.00054448, - 0.039084, - 0.039187, - 0.04137, - -0.098432, - 0.039179, - 0.0072311, - -0.025405, - 0.071057, - -0.05327, - -0.0090358, - -0.049849, - -0.069905, - -0.06903, - 0.077544, - 0.010363, - 0.05412, - 0.016504, - -0.012698, - -0.064999, - -0.067825, - -0.081614, - 0.017826, - -0.013232, - 0.073878, - -0.042542, - -0.0048534, - 0.087702, - 0.061308, - 0.10647, - 0.043797, - 0.051227, - 0.025169, - -0.024277, - -0.033028, - -0.0067697, - -0.059335, - -0.017935, - 0.0082062, - -0.00057887, - 0.067812, - -0.05942, - -0.0073436, - -0.022449, - 0.0088877, - 0.040288, - 0.051017, - 0.00042828, - 0.021931, - 0.063353, - 0.077098, - -0.010361, - 0.038316, - -0.021758, - -0.00025545, - 0.00010652, - -0.05253, - -0.019897, - 0.0093959, - 0.067827, - 0.0091784, - -0.049957, - 0.073968, - 0.074545, - 0.00051224, - -0.011843, - 0.068098, - 0.020524, - -0.028549, - -0.0089042, - 0.021995, - 0.035713, - -0.011542, - -0.046888, - -0.032579, - 0.079632, - -0.075326, - -0.024773, - 0.011524, - -0.024448, - -0.0056564, - 0.038074, - -0.01331, - -0.069291, - 0.051015, - 0.11518, - 0.07066, - 0.046035, - -0.0075009, - 0.061963, - 0.020545, - -0.029447, - 0.017325, - 0.018306, - -0.030316, - -0.046549, - -0.03889, - -0.0027673, - -0.051051, - -0.018427, - 0.047175, - 0.029846, - -0.11154, - 0.11538 - ], - "money": [ - 0.094948, - -0.030474, - -0.0756, - -0.00049256, - 0.034783, - 0.023653, - -0.01019, - -0.082194, - 0.057868, - 0.047434, - -0.016549, - 0.037737, - -0.012204, - -0.061395, - -0.055398, - 0.032953, - 0.10136, - 0.0054308, - 0.035482, - 0.023236, - -0.031622, - 0.07111, - -0.062902, - 0.017348, - 0.044283, - 0.021108, - 0.040962, - 0.015946, - 0.10517, - 0.0032495, - -0.026798, - 0.040898, - -0.094154, - -0.045219, - -0.0029801, - -0.021054, - 0.018933, - -0.034498, - -0.048088, - 0.027915, - 0.0046298, - -0.11714, - 0.025568, - 0.050298, - 0.010681, - -0.078723, - 0.019226, - -0.028149, - 0.025242, - 0.038685, - -0.064105, - 0.011055, - -0.00072039, - -0.0057289, - -0.12247, - 0.040443, - -0.061377, - 0.0033333, - -0.022669, - -0.016741, - 0.022302, - -0.041518, - 0.1506, - 0.081509, - 0.0023045, - -0.00010811, - 0.04141, - -0.077711, - 0.010256, - -0.028613, - 0.021656, - -0.031262, - 0.065211, - -0.023209, - 0.0051359, - 0.080669, - 0.04509, - 0.019373, - -0.041399, - -0.0079765, - -0.11989, - -0.050378, - 0.038529, - 0.098056, - -0.067589, - -0.061147, - 0.00043945, - -0.049648, - -0.0040677, - -0.043863, - -0.061507, - -0.015239, - -0.14723, - 0.010776, - -0.030909, - -0.0023039, - 0.0068666, - -0.050828, - 0.030197, - 0.0116, - -0.03827, - -0.053683, - 0.055652, - -0.036222, - 0.08055, - -0.092912, - -0.020001, - -0.023671, - -0.0040177, - 0.026649, - 0.035748, - 0.082686, - 0.10723, - 0.0037503, - 0.016107, - -0.044503, - -0.051482, - -0.044231, - -0.04408, - 0.00030404, - -0.046332, - -0.087906, - -0.026174, - -0.12219, - 0.041917, - -0.018856, - -0.060661, - -0.15902, - -0.045276, - 0.080944, - -0.028325, - -0.0011263, - 0.030125, - 0.014758, - 0.078902, - -0.012009, - -0.0093188, - 0.046224, - -0.01841, - -0.013681, - 0.074068, - -0.0043947, - -0.0011005, - 0.058367, - -0.036725, - -0.0095528, - 0.032775, - -0.03927, - 0.046612, - -0.12024, - 0.087409, - 0.067372, - -0.062778, - -0.13267, - -0.071199, - -0.056708, - 0.026008, - -0.017099, - 0.043777, - -0.065767, - 0.092545, - 0.0101, - -0.011923, - 0.060839, - -0.024501, - 0.045143, - -0.0010545, - -0.0064413, - 0.030717, - 0.069895, - 0.066294, - -0.073248, - -0.021101, - -0.015068, - -0.072905, - 0.063602, - -0.074646, - 0.037946, - 0.0055831, - -0.030432, - -0.068448, - 0.019655, - -0.037064, - -0.10937, - -0.05664, - -0.15522, - -0.037507, - 0.16634, - 0.027778, - -0.032076, - -0.015594, - 0.054511, - 0.0062166, - 0.022811, - -0.0096523, - -0.043822, - -0.0056882, - 0.019694, - 0.025223, - 0.01767, - -0.12, - 0.053758, - 0.088235, - 0.0076369, - 0.050421, - -0.025373, - -0.029804, - -0.095461, - 0.023422, - -0.070441, - 0.066044, - 0.00034155, - -0.063733, - -0.057957, - 0.07141, - -0.039182, - -0.067951, - 0.036124, - -0.014059, - -0.061878, - 0.050643, - -0.035044, - -0.017957, - 0.10756, - 0.16906, - 0.0086171, - 0.043662, - 0.048521, - 0.018191, - -0.047112, - -0.04976, - -0.059167, - -0.14384, - -0.11401, - 0.01742, - -0.00020049, - -0.034056, - 0.033973, - -0.076271, - -0.081985, - 0.075189, - -0.060145, - 0.017033, - -0.025927, - -0.018889, - 0.018179, - 0.00056004, - -0.047062, - 0.018599, - 0.048015, - 0.0070312, - 0.027772, - 0.0035892, - 0.010342, - 0.046869, - 0.0073371, - -0.048629, - 0.035057, - -0.033678, - 0.068595, - -0.03777, - 0.010495, - -0.030506, - -0.021535, - 0.038666, - 0.036188, - -0.088272, - -0.013844, - 0.0094981, - 0.090711, - 0.032178, - 0.062205, - -0.12269, - -0.068111, - -0.018617, - -0.066628, - 0.0056315, - 0.056212, - 0.0089344, - -0.081606, - 0.077178, - 0.013306, - -0.012962, - -0.053158, - -0.032058, - 0.076893, - 0.040557, - 0.11591, - -0.064746, - 0.038032, - 0.067342, - -0.011463, - -0.069633, - 0.051479, - -0.03512, - -0.013338, - -0.038287, - -0.10996, - -0.10022, - -0.0085279 - ], - "marriage": [ - 0.028495, - -0.00020306, - 0.035642, - 0.0036802, - -0.011522, - 0.024678, - -0.021028, - -0.079632, - 0.073946, - 0.073408, - 0.06487, - 0.010015, - 0.039125, - 0.0097004, - -0.087611, - 0.026322, - 0.099746, - -0.10137, - 0.026379, - 0.068605, - -0.0067001, - -0.029774, - -0.0026059, - 0.041752, - -0.027253, - -0.019282, - 0.016355, - 0.027023, - 0.015437, - -0.056468, - -0.024668, - 0.0095627, - -0.034505, - -0.06672, - -0.010952, - 0.047399, - -0.059922, - 0.0075412, - -0.030246, - 0.084497, - 0.049714, - -0.13098, - 0.012744, - -0.024896, - -0.077388, - 0.028188, - -0.020616, - -0.004642, - -0.039737, - 0.00051917, - -0.017915, - -0.054675, - 0.018076, - 0.025044, - -0.052434, - -0.00041466, - 0.0062564, - -0.046053, - -0.089519, - -0.045874, - 0.038962, - 0.045722, - 0.084829, - -0.0235, - 0.043575, - 0.046881, - -0.031582, - -0.040767, - -0.0073648, - -0.10278, - -0.0042735, - 0.0083421, - -0.041738, - -0.045809, - 0.026445, - 0.015393, - -0.012578, - -0.011125, - 0.045459, - 0.061002, - 0.022591, - -0.017188, - -0.040654, - 0.046578, - -0.10312, - -0.017464, - 0.046231, - 0.0054304, - -0.084602, - 0.0079369, - -0.012193, - 0.043001, - -0.094962, - -0.009643, - -0.018742, - 0.069385, - 0.011037, - 0.095621, - 0.07947, - 0.043717, - -0.015439, - 0.0046068, - -0.018815, - -0.10518, - -0.028158, - -0.043559, - 0.022115, - 0.054757, - 0.013139, - -0.1081, - 0.031509, - 0.018368, - 0.066801, - 0.034318, - -0.024454, - 0.0051848, - 0.043667, - 0.0092755, - -0.028454, - 0.028487, - 0.047192, - -0.0090301, - 0.055904, - 0.066573, - 0.036718, - 0.057303, - 0.021085, - -0.11415, - -0.013914, - 0.092987, - 0.013139, - -0.033754, - -0.0097928, - -0.029085, - -0.063705, - 0.065331, - -0.017616, - 0.021362, - -0.0033617, - -0.020591, - 0.036097, - -0.051058, - -0.026506, - 0.060112, - 0.042248, - 0.052908, - -0.005646, - 0.0030038, - -0.028428, - -0.048677, - 0.012005, - 0.031198, - 0.020299, - -0.094276, - -0.015566, - 0.0064657, - 0.0053204, - -0.0033107, - 0.062838, - -0.055251, - 0.035784, - 0.096065, - -0.077983, - -0.030615, - -0.032476, - 0.033795, - 0.051524, - 0.10452, - 0.0069008, - 0.017966, - 0.01261, - -0.010849, - -0.02951, - -0.035754, - 0.012024, - 0.010505, - 0.019503, - 0.0086777, - -0.027857, - -0.099551, - 0.038958, - -0.055427, - -0.01043, - 0.031665, - 0.0064431, - -0.062164, - 0.030446, - 0.069878, - 0.089306, - 0.051247, - -0.036373, - 0.089686, - -0.049163, - -0.01668, - -0.022521, - -0.007158, - -0.031296, - 0.0087784, - -0.026817, - -0.03971, - -0.14883, - 0.089419, - -0.0036693, - -0.041606, - -0.016908, - 0.023873, - 0.00023227, - -0.052422, - 0.043885, - -0.0071617, - 0.12521, - 0.0059934, - 0.020859, - 0.010393, - 0.035788, - 0.071872, - -0.037817, - -0.029481, - -0.0040835, - -0.11009, - 0.074209, - -0.10371, - -0.0037188, - 0.091371, - -0.0021569, - -0.053492, - 0.024819, - 0.040784, - -0.019293, - -0.015741, - 0.051977, - -0.070974, - -0.05801, - -0.051721, - 0.062682, - 0.033792, - 0.037668, - -0.029759, - -0.034157, - -0.0074781, - 0.018604, - -0.015596, - -0.012411, - -0.022748, - -0.013197, - 0.048379, - -0.02714, - -0.062298, - 0.053406, - 0.049074, - 0.032154, - -0.0060987, - -0.039125, - -0.041786, - 0.029614, - 0.024214, - -0.0078714, - 0.0047338, - 0.073022, - 0.012153, - 0.05059, - 0.045157, - 0.042045, - -0.012113, - 0.028903, - -0.030053, - 0.008787, - 0.00045423, - -0.0021687, - -0.02813, - 0.049302, - 0.073259, - -0.1015, - -0.032989, - -0.03542, - -0.012887, - -0.043658, - 0.011316, - -0.028009, - -0.036627, - 0.10148, - -0.039471, - 0.040701, - -0.04627, - -0.0019234, - 0.10418, - -0.0055547, - 0.02476, - -0.016178, - 0.018161, - 0.0062653, - -0.0076058, - -0.027363, - 0.0093225, - -0.060902, - 0.038438, - 0.030134, - 0.0051451, - 0.0028053, - 0.0021702 - ], - "scientism": [ - -0.026372, - -0.014091, - -0.01605, - -0.042214, - -0.033783, - -0.06075, - 0.024597, - -0.089767, - -0.016052, - 0.023702, - -0.024368, - -0.060471, - 0.03208, - -0.017917, - 0.0039776, - -0.068117, - 0.10585, - 0.05176, - 0.0082793, - -0.0095503, - -0.022415, - 0.060019, - -0.0067349, - 0.02798, - -0.019652, - -0.035022, - 0.0064606, - 0.10541, - 0.060032, - 0.02459, - 0.0353, - -0.003768, - 0.056319, - -0.043137, - -0.045135, - 0.080074, - 0.011103, - -0.057863, - 0.051328, - 0.02476, - -0.03969, - -0.089981, - -0.059167, - 0.068303, - 0.078359, - -0.03972, - -0.057588, - 0.025115, - -0.00096035, - -0.064849, - 0.0011, - 0.035592, - 0.0033657, - -0.016134, - -0.016291, - 0.059294, - 0.055147, - 0.068604, - -0.0092547, - 0.04581, - 0.07826, - 0.048623, - -0.014747, - -0.039667, - -0.020697, - 0.034062, - 0.0022172, - 0.0095687, - 0.043365, - -0.000279, - 0.081927, - -0.016001, - -0.032059, - 0.0017509, - -0.0064281, - 0.035015, - 0.0026557, - -0.063206, - 0.039753, - 0.035637, - -0.018675, - -0.0077897, - -0.047749, - 0.057064, - -0.020526, - -0.0046928, - -0.022075, - 0.012745, - -0.017818, - 0.0036423, - -0.010175, - 0.067297, - -0.082637, - 0.012673, - 0.039966, - 0.047486, - 0.033247, - -0.10297, - -0.059454, - 0.028728, - -0.067583, - 0.0077702, - -0.024217, - -0.0036828, - -0.069718, - -0.049224, - 0.085059, - 0.059562, - 0.023733, - -0.049098, - -0.027009, - 0.08765, - 0.028978, - -0.0064752, - -0.0017598, - 0.068539, - 0.01753, - 0.0061063, - -0.016946, - 0.037005, - -0.043769, - -0.065937, - -0.041795, - -0.045256, - 0.06445, - -0.023899, - -0.065854, - -0.0047907, - 0.033826, - 0.12751, - -0.017859, - -0.0071762, - -0.012621, - 0.0027389, - 0.020219, - -0.0032932, - -0.0050677, - 0.019759, - 0.021354, - -0.053069, - 0.025709, - -0.073047, - -0.01951, - 0.036825, - -0.042547, - -0.040684, - 0.042115, - 0.018803, - 0.0068355, - -0.02596, - 0.032113, - 0.020914, - -0.025336, - -0.033608, - 0.011095, - 0.034668, - 0.014085, - -0.026887, - -0.0074829, - 0.014283, - 0.050462, - -0.017062, - -0.13061, - -0.07336, - 0.02749, - 0.0025911, - -0.054654, - 0.060297, - 0.0070693, - -0.049969, - -0.036224, - 0.0078611, - -0.037413, - -0.018283, - 0.081664, - 0.047319, - -0.019864, - 0.019019, - -0.0044031, - -0.014417, - -0.0063601, - 0.040056, - -0.037928, - 0.025323, - 0.05983, - -0.032721, - 0.010847, - 0.11507, - -0.10631, - -0.053126, - 0.050516, - 0.074101, - -0.087392, - -0.031921, - 0.0016375, - -0.019625, - -0.065927, - 0.011152, - -0.047135, - 0.051199, - -0.1482, - -0.026359, - 0.021497, - 0.00082338, - 0.034253, - -0.006821, - 0.030106, - 0.0083651, - 0.012401, - -0.029086, - 0.048261, - 0.012098, - -0.010813, - 0.020002, - 0.038115, - 0.11888, - -0.031387, - -0.023528, - -0.011232, - -0.036793, - -0.083736, - 0.078717, - -0.090369, - 0.084559, - 0.029799, - -0.00032861, - -0.015182, - 0.058561, - 0.053303, - -0.051629, - -0.033621, - -0.047527, - -0.0013205, - -0.028376, - 0.015914, - 0.03886, - -0.015973, - -0.035084, - 0.05353, - -0.025161, - 0.00091959, - -0.03992, - 0.0062725, - 0.048182, - 0.017057, - 0.047284, - -0.013938, - -0.059726, - -0.039572, - 0.0086637, - 0.0002769, - 0.023958, - -0.02253, - -0.036858, - 0.038731, - 0.014667, - 0.05584, - -0.021327, - 0.020861, - -0.047074, - 0.050955, - 0.032188, - 0.019046, - 0.00022625, - 0.016811, - -0.0030143, - 0.048501, - 0.039821, - 0.061996, - 0.033858, - -0.0047843, - 0.069639, - -0.057562, - -0.02451, - 0.010301, - -0.029807, - 0.027577, - 0.0069858, - -0.010514, - -0.046855, - 0.077089, - -0.024014, - -0.022283, - -0.071008, - -0.05696, - -0.031883, - -0.05169, - 0.0092934, - -0.00079045, - -0.0099185, - -0.032585, - -0.048811, - 0.0088134, - 0.016145, - -0.051661, - 0.018314, - -0.020227, - 0.037202, - -0.0040587, - 0.0042021 - ], - "sportsmen": [ - 0.050876, - -0.093978, - 0.12825, - -0.042516, - -0.088087, - -0.030712, - -0.063546, - -0.079009, - 0.075755, - 0.067871, - -0.0022738, - 0.011915, - -0.0052556, - -0.076218, - 0.1362, - 0.0030822, - 0.063709, - -0.0095165, - 0.01305, - 0.027215, - 0.055411, - -0.12004, - 0.011734, - 0.07761, - 0.0054717, - -0.060015, - 0.035948, - 0.01315, - 0.051809, - -0.012839, - 0.044089, - -0.032589, - 0.025916, - -0.0027871, - 0.037394, - 0.053416, - 0.015235, - -0.039, - -0.024355, - 0.027918, - 0.043519, - -0.070544, - -0.029, - 0.011997, - 0.052684, - 0.018725, - 0.031913, - -0.031412, - -0.020758, - -0.017617, - -0.057215, - 0.021041, - 0.045407, - 0.0051459, - -0.0016604, - -0.009203, - 0.025038, - 0.043937, - -0.048676, - -0.08051, - 0.041708, - -0.044541, - 0.041239, - -0.036331, - 0.032998, - -0.044154, - -0.043906, - -0.003418, - 0.037894, - 0.033722, - 0.048592, - -0.064676, - 0.1448, - 0.049755, - 0.029586, - 0.04953, - -0.016331, - -0.047932, - -0.073419, - 0.0084663, - 0.0094412, - 0.080269, - 0.055701, - 0.10499, - 0.0096753, - -0.082428, - -0.041418, - -0.0041368, - -0.021071, - -0.095355, - -0.026953, - 0.042249, - -0.084727, - -0.017301, - 0.032724, - 0.064198, - -0.11254, - 0.0021566, - 0.099286, - -0.0073077, - -0.050175, - -0.015717, - 0.050555, - 0.027868, - 0.0044617, - -0.048578, - 0.019951, - 0.046291, - -0.0063602, - 0.036887, - -0.0019066, - 0.095356, - 0.058332, - 0.014765, - 0.087328, - 0.0055512, - 0.02254, - 0.012887, - -0.038867, - -0.026799, - 0.10513, - 0.016528, - -0.082778, - -0.074847, - 0.10826, - -0.031931, - -0.030016, - -0.044954, - -0.030988, - 0.063431, - 0.010396, - 0.17126, - 0.0030838, - 0.053076, - -0.028164, - 0.031996, - 0.029107, - 0.07071, - -0.081928, - -0.013332, - -0.016328, - -0.052808, - 0.038531, - 0.0023671, - 0.021966, - 0.0035809, - -0.0082492, - -0.059538, - 0.013698, - -0.033004, - 0.12337, - 0.10118, - -0.017059, - 0.017051, - 0.059647, - -0.023857, - 0.046802, - 0.045676, - 0.061289, - -0.058774, - 0.035865, - 0.039286, - 0.039303, - 0.086112, - -0.024184, - -0.011316, - 0.0056166, - 0.083708, - -0.050169, - -0.043325, - 0.011398, - 0.0016877, - 0.02192, - 0.053755, - 0.0024746, - 0.059735, - -0.076342, - 0.015242, - -0.024943, - 0.012509, - 0.0018499, - -0.060273, - 0.028142, - -0.035491, - -0.045223, - -0.087416, - 0.0069378, - 0.10571, - -0.036253, - 0.052012, - -0.03142, - 0.089604, - -0.092176, - -0.016945, - 0.016417, - -0.10268, - 0.060428, - -0.0033705, - 0.0089159, - -0.0062253, - -0.11137, - 0.051279, - -0.01166, - -0.041344, - 0.023015, - -0.064217, - -0.041785, - 0.061702, - 0.0026333, - -0.050358, - 0.043807, - -0.01407, - 0.086355, - 0.023736, - -0.066746, - 0.011042, - -0.068164, - 0.0035736, - -0.022839, - -0.042026, - -0.061835, - -0.055367, - -0.052236, - 0.094818, - 0.030205, - -0.0023547, - 0.0062731, - 0.07059, - -0.028241, - -0.048974, - -0.035701, - 0.029877, - -0.058014, - 0.0095187, - 0.047543, - 0.0038108, - -0.0085212, - -0.013768, - -0.0090179, - -0.0016959, - -0.0017021, - -0.023299, - 0.018219, - -0.012145, - 0.046662, - 0.049558, - -0.025341, - -0.057711, - -0.046953, - -0.063893, - 0.091126, - 0.038046, - 0.061123, - -0.012534, - 0.012261, - -0.0061667, - -0.054048, - 0.031413, - 0.060172, - 0.056638, - -0.072603, - -0.0023941, - 0.072442, - 0.0010831, - 0.020592, - 0.057566, - -0.044412, - 0.047088, - 0.046517, - -0.059454, - -0.0075844, - 0.10666, - -0.11231, - -0.030946, - 0.0022144, - -0.0059801, - -0.015473, - -0.014862, - 0.037378, - -0.043443, - 0.0030689, - 0.066698, - -0.066553, - 0.0098509, - -0.0053414, - 0.0045227, - 0.032704, - -0.13131, - 0.035337, - -0.0051653, - 0.030007, - 0.002618, - -0.035473, - 0.032171, - -0.055564, - 0.0055443, - 0.0031751, - -0.0022332, - 0.0015442, - -0.03853 - ], - "nonce": [ - 0.034932, - -0.0096054, - -0.05486, - -0.015453, - -0.058626, - 0.0077033, - 0.011737, - -0.15826, - -0.040792, - -0.045688, - -0.076331, - -0.05192, - -0.074875, - 0.092425, - -0.040137, - -0.017561, - 0.066545, - 0.074153, - 0.010941, - -0.03573, - 0.030617, - 0.047259, - 0.0033985, - 0.033983, - 0.025338, - 0.04131, - -0.0022501, - 0.044133, - -0.034214, - -0.0539, - 0.024348, - -0.053252, - -0.045972, - -0.098618, - 0.030896, - -0.081747, - -0.032847, - 0.085275, - -0.03091, - -0.0085107, - 0.024034, - -0.13592, - -0.072008, - -0.031449, - -0.056696, - 0.0098116, - 0.0098572, - 0.093152, - 0.026275, - -0.016018, - -0.07311, - 0.01037, - 0.090693, - -0.045158, - -0.049166, - 0.054377, - -0.020897, - 0.05364, - -0.14427, - -0.0074136, - -0.021767, - -0.15399, - 0.19976, - -0.12152, - -0.064218, - 0.045317, - 0.12373, - 0.037725, - -0.073724, - -0.01122, - -0.019067, - 0.049492, - 0.025263, - -0.034105, - 0.068693, - -0.07433, - 0.012095, - -0.010927, - 0.076492, - -0.0091379, - 0.045573, - 0.011766, - 0.10793, - 0.090582, - -0.070346, - 0.0025988, - -0.088846, - 0.010905, - -0.062056, - 0.014794, - 0.0086346, - 0.013329, - -0.095349, - -0.049178, - 0.073029, - 0.005773, - 0.01422, - 0.002215, - -0.044868, - 0.069749, - -0.016237, - 0.018545, - 0.052522, - 0.0077231, - -0.013942, - -0.11777, - -0.013844, - -0.013972, - 0.0040875, - -0.062538, - -0.013552, - -0.0092807, - 0.02409, - 0.030155, - -0.054942, - 0.0303, - 0.035396, - 0.15474, - -0.11045, - -0.014545, - 0.06677, - 0.054191, - -0.090818, - -0.071416, - 0.13918, - -0.10846, - -0.015109, - 0.0074463, - -0.047772, - 0.10205, - -0.032337, - 0.052133, - -0.037703, - -0.035823, - -0.048719, - -0.001849, - -0.053739, - 0.068024, - 0.11037, - -0.11514, - 0.0033069, - -0.017043, - 0.047232, - -0.021741, - 0.014239, - -0.025905, - -0.016367, - 0.049382, - -0.0052277, - -0.033597, - 0.019773, - 0.077524, - -0.01721, - -0.073576, - 0.023972, - -0.015627, - -0.0060961, - 0.070076, - -0.065544, - 0.022029, - 0.018052, - 0.0045971, - 0.0048518, - -0.062292, - 0.026619, - -0.07287, - 0.0073272, - 0.022302, - -0.012797, - -0.012897, - 0.014447, - 0.098744, - -0.057052, - -0.0040557, - -0.074823, - 0.058723, - 0.030822, - -0.044039, - 0.13319, - -0.017234, - -0.01466, - 0.034775, - 0.0087462, - 0.01249, - 0.077327, - -0.042233, - -0.025738, - 0.076379, - 0.065462, - 0.037943, - 0.043046, - 0.056493, - -0.026694, - -0.029791, - 0.0077264, - -0.017571, - -0.049921, - 0.062161, - -0.057493, - 0.12232, - -0.12037, - 0.056376, - 0.066616, - 0.07917, - 0.042181, - -0.10626, - 0.045745, - 0.0047557, - 0.02884, - -0.074974, - 0.069597, - -0.031576, - 0.0095784, - 0.033926, - 0.018395, - 0.061743, - -0.14886, - -0.010042, - 0.0207, - -0.046828, - 0.059703, - 0.016858, - 0.0030604, - 0.17997, - 0.0048557, - -0.063835, - -0.0057444, - 0.13579, - -0.020835, - 0.055011, - -0.058248, - -0.030268, - -0.022523, - -0.054697, - 0.041789, - -0.049216, - 0.007587, - 0.047382, - 0.049189, - -0.093934, - 0.04637, - -0.039747, - -0.065805, - 0.075262, - -0.16473, - 0.076531, - -0.023519, - 0.031266, - -0.12645, - 0.02639, - 0.015599, - -0.056612, - 0.068291, - -0.044439, - 0.10425, - -0.019809, - -0.035795, - -0.029299, - 0.012479, - -0.00073589, - -0.010526, - -0.02772, - -0.0071754, - -0.042332, - 0.022558, - -0.0046691, - 0.033287, - -0.012011, - 0.029588, - 0.018194, - 0.037034, - 0.10172, - -0.081394, - -0.019979, - 0.09465, - -0.03595, - 0.14648, - -0.0032951, - 0.0545, - -0.0074265, - -0.005313, - -0.0045853, - -0.048249, - -0.095866, - -0.033697, - 0.035056, - -0.024002, - 0.010689, - -0.01956, - 0.044814, - 0.050536, - 0.055733, - -0.03954, - 0.032605, - 0.016538, - -0.035504, - 0.016095, - -0.031367, - -0.15212, - -0.062092 - ], - "preoccupations": [ - 0.023973, - 0.00479, - 0.029503, - -0.01645, - -0.004722, - -0.0053901, - -0.048767, - -0.063806, - 0.011895, - -0.0058077, - -0.019454, - -0.032433, - 0.011086, - 0.0036498, - -0.011227, - -0.010805, - 0.030643, - 0.034071, - 0.038281, - 0.039859, - 0.0050502, - 0.023563, - 0.071078, - 0.044617, - 0.010027, - 0.0051765, - 0.0054819, - 0.0069304, - 0.04095, - -0.018422, - 0.011364, - -0.011558, - 0.021916, - -0.054061, - -0.0072864, - 0.045939, - -0.015562, - 0.03363, - 0.012197, - -0.032952, - -0.02013, - -0.05821, - -0.022114, - 0.056416, - 0.025619, - 0.013721, - 0.0054647, - -0.013447, - -0.037494, - -0.022668, - 0.0085467, - -0.04133, - 0.0082196, - 0.014759, - 0.0037998, - 0.0075152, - -0.004986, - 0.031691, - -0.0039769, - -0.016449, - 0.0043394, - -0.028047, - 0.06747, - -0.0065766, - 0.034171, - -0.0037198, - -0.01357, - 0.0044308, - -0.020148, - 0.012992, - 0.030726, - 0.021784, - 0.022708, - -0.00030635, - 0.015793, - 0.013876, - 0.018582, - -0.017091, - 0.022323, - -0.0021217, - -0.0044445, - 0.0094601, - -0.045399, - 0.038451, - -0.0085294, - -0.010108, - -0.0091885, - 0.011381, - -0.0057936, - 0.0070118, - 0.044898, - 0.010226, - -0.068952, - -0.013351, - 0.0028249, - 0.045325, - -0.022304, - -0.027742, - 0.0045738, - 0.020516, - 0.0031897, - 0.002879, - -0.027374, - -0.026723, - 0.025383, - 0.013385, - 0.024012, - -0.0070576, - -0.015187, - -0.0038117, - 0.026755, - -0.0034772, - 0.042612, - 0.026114, - -0.017197, - 0.0085331, - 0.015561, - -0.0033733, - -0.020154, - 0.0045675, - 0.027076, - -0.015275, - -0.03834, - -0.015729, - 0.099947, - -0.0066511, - 0.0039688, - -0.026225, - 0.017532, - 0.091219, - 0.0057223, - 0.067484, - 0.035137, - 0.027477, - 0.0026314, - -0.0067386, - -0.021208, - 0.034624, - 0.00070206, - 0.0598, - 0.058471, - -0.0025821, - 0.01176, - 0.064506, - -0.0076706, - -0.042124, - -0.0040528, - 0.01545, - 0.020394, - 0.031192, - 0.021557, - 0.07192, - -0.021707, - -0.038471, - 0.0083174, - -0.0059937, - -0.01685, - 0.046998, - 0.013885, - -0.010364, - 0.057063, - 0.018984, - -0.034736, - 0.027034, - -0.03487, - -0.0064914, - -0.011608, - -0.038729, - -0.024485, - 0.0072258, - -0.052211, - -0.0034006, - -0.0066312, - 0.0060594, - -0.0014722, - 0.025371, - -0.031013, - 0.014885, - -0.019228, - -0.016304, - 0.0017594, - 0.0088908, - 0.017736, - -0.056184, - 0.0032866, - -0.061376, - 0.05979, - 0.084725, - -0.0087294, - 0.012298, - 0.029916, - 0.051008, - -0.031139, - -0.018846, - 0.021594, - 0.033021, - -0.0066975, - 0.017936, - -0.022193, - 0.042905, - -0.08627, - -0.0077141, - -0.0021274, - -0.071826, - -0.0025448, - 0.0082367, - 0.01736, - 0.0073044, - 0.032243, - 0.008485, - 0.06585, - 0.052169, - 0.013557, - 0.0024311, - -0.0091837, - 0.019623, - -0.015639, - -0.023795, - -0.056411, - -0.027668, - -0.040404, - 0.013083, - -0.015373, - 0.049177, - 0.047448, - 0.0015053, - 0.048717, - 0.071054, - 0.035889, - -0.0022934, - 0.0099077, - -0.016491, - -0.074674, - -0.018475, - 0.04918, - 0.018709, - 0.027403, - -0.0020967, - 0.026542, - -0.0088009, - 0.0025691, - 0.018856, - -0.064426, - 0.021342, - -0.025269, - 0.0046767, - -0.069411, - -0.094996, - 0.003732, - -0.01443, - 0.0011565, - -0.021208, - -0.0058983, - -0.0096091, - -0.010482, - 0.012927, - -0.021191, - 0.064856, - 0.025131, - 0.0013967, - 0.0045672, - -0.042187, - -0.014676, - -0.016671, - 0.027085, - 0.0029938, - -0.027555, - 0.057929, - -0.0080452, - -0.010591, - 0.028952, - 0.052363, - -0.075643, - -0.03908, - 0.096894, - -0.045525, - 0.050087, - 0.036941, - 0.029187, - 0.016322, - 0.048203, - 0.015402, - 0.056202, - -0.053984, - 0.036814, - 0.023624, - -0.0071906, - -0.021721, - -0.013285, - 0.016378, - 0.0063236, - 0.023678, - -0.03199, - 0.0089054, - -0.0013708, - 0.022163, - 0.012345, - 0.085366, - -0.0567, - 0.0029021 - ], - "religous": [ - -0.038813, - -0.019987, - 0.026732, - -0.077197, - -0.066639, - -0.11556, - -0.010045, - -0.086538, - 0.085298, - 0.0038776, - 0.025457, - 0.0029576, - 0.11265, - -0.033268, - 0.073286, - 0.0035064, - 0.10633, - -0.04304, - 0.03286, - 0.052012, - -0.062039, - 0.063713, - 0.073815, - 0.062345, - 0.0034836, - 0.012026, - 0.083884, - 0.0076432, - 0.04411, - 0.050381, - -0.022231, - -0.023974, - -0.010677, - -0.082778, - 0.063945, - 0.01067, - 0.024858, - -0.027747, - 0.038253, - 0.042547, - -0.045404, - -0.13089, - 0.016293, - -0.048573, - -0.0084566, - -0.030094, - -0.040986, - -0.0081562, - 0.039316, - -0.035324, - -0.0062006, - -0.028679, - -0.020777, - 0.0018417, - 0.068708, - 0.037297, - 0.016523, - -0.045175, - -0.031395, - -0.031718, - -0.020805, - 0.0029125, - 0.10289, - -0.022616, - 0.050096, - -0.0091046, - 0.0042083, - 0.0051461, - 0.056785, - -0.071452, - 0.023088, - -0.01333, - 0.080649, - -0.010217, - -0.035566, - 0.0046108, - 0.0085403, - -0.022513, - 0.039638, - 0.077215, - -0.033306, - 0.035566, - -0.016088, - 0.1058, - -0.038713, - 0.035944, - -0.0464, - 0.056927, - -0.030145, - -0.031075, - -0.036757, - 0.019373, - -0.062728, - 0.0016811, - 0.06993, - 0.017186, - -0.010642, - -0.041411, - 0.0050083, - -0.011043, - 0.019209, - -0.0043975, - 0.085006, - -0.044443, - 0.047703, - -0.056113, - 0.044944, - -0.01067, - 0.0047493, - 0.010229, - -0.054654, - 0.10502, - 0.043989, - -0.037621, - -0.021114, - -0.021202, - 0.0023794, - -0.051374, - -0.037079, - -0.039563, - 0.0094191, - 0.016418, - -0.026284, - -0.087996, - 0.15118, - -0.0070413, - -0.042587, - 0.00023548, - -0.055481, - 0.060904, - 0.020321, - 0.02084, - 0.025072, - 0.037634, - -0.063862, - 0.0074071, - -0.016436, - 0.094754, - -0.0079509, - -0.058735, - -0.075199, - -0.0067037, - 0.0036842, - 0.11781, - -0.02107, - 0.0097277, - -0.017737, - -0.0080474, - -0.029976, - -0.00081755, - 0.033321, - 0.10196, - 0.00043645, - -0.064142, - 0.067248, - 0.015773, - -0.027415, - -0.018797, - 0.038842, - -0.063191, - 0.038775, - 0.039898, - -0.079712, - -0.031351, - 0.0075982, - 0.0018619, - 0.028392, - 0.06478, - -0.0060345, - -0.032942, - -0.034666, - -0.025399, - 0.025669, - -0.00954, - -0.024981, - 0.076108, - 0.034725, - 0.036335, - 0.046322, - -0.095372, - -0.10252, - 0.011188, - -0.034976, - 0.080534, - 0.06728, - -0.042096, - 0.063411, - 0.10737, - -0.019337, - -0.10322, - 0.037935, - 0.045499, - 0.063498, - 0.10051, - -0.00636, - 0.014577, - -0.023524, - -0.043483, - -0.037824, - -0.00068566, - -0.10399, - -0.042458, - 0.033102, - 0.0071247, - 0.029369, - 0.0062948, - 0.0017275, - -0.035522, - 0.082155, - -0.0098447, - 0.15829, - 0.014448, - 0.0080974, - -0.010995, - 0.022754, - 0.019572, - 0.030269, - -0.0029855, - -0.019329, - -0.065747, - -0.0078088, - -0.015162, - -0.029374, - 0.090663, - 0.010284, - 0.0030543, - 0.00086062, - 0.1017, - -0.022103, - -0.055462, - -0.0010928, - -0.019282, - -0.037532, - -0.037957, - 0.0325, - -0.029771, - 0.088862, - 0.053656, - 0.02753, - 0.02243, - 0.049758, - -0.079075, - 0.019766, - 0.014349, - -0.18414, - -0.0013831, - 0.074063, - 0.01202, - -0.048723, - -0.016033, - 0.010108, - -0.0071437, - -0.0021982, - 0.025394, - -0.050597, - -0.030495, - 0.040447, - -0.025135, - 0.0089347, - 0.012058, - 0.052519, - 0.01177, - 0.030798, - -0.014536, - 0.036543, - -0.0048107, - 0.01735, - 0.072281, - 0.036252, - 0.044106, - 0.062117, - 0.058679, - -0.024157, - -0.034132, - 0.12962, - -0.092344, - -0.0046449, - -0.085721, - -0.083087, - -0.0046151, - 0.12054, - -0.041014, - 0.03965, - -0.01341, - 0.028186, - 0.030092, - 0.044906, - -0.04199, - -0.081542, - -0.021996, - 0.027201, - 0.0070678, - 0.025564, - 0.051002, - -0.011011, - 0.042575, - 0.038819, - 0.036232, - -0.02602, - 0.013009 - ], - "profit-making": [ - 0.022672, - -0.026949, - 0.0043181, - -0.012016, - -0.061516, - -0.0043496, - -0.0023051, - -0.061264, - 0.041024, - -0.021272, - 0.0062351, - -0.012596, - -0.033018, - -0.050612, - -0.027096, - 0.015057, - 0.047426, - 0.015928, - 0.020858, - 0.016847, - -0.0089778, - 0.033985, - 0.0080352, - 0.025654, - -0.037164, - 0.012761, - 0.040986, - 0.028772, - 0.013308, - 0.033782, - -0.026719, - -0.056624, - -0.051079, - -0.042513, - 0.035764, - 0.033889, - -0.010999, - -0.017833, - 0.07885, - 0.064068, - -0.0095643, - -0.089385, - 0.0015473, - 0.058703, - 0.036084, - -0.038067, - 0.044136, - -0.019082, - -0.0312, - -0.015402, - -0.01747, - 0.031796, - -0.0058152, - -0.012654, - -0.0036641, - 0.017623, - -0.053459, - 0.0017064, - 0.015134, - -0.010279, - 0.011737, - 0.047717, - 0.055129, - 0.0000050338, - 0.032598, - -0.015185, - 0.05486, - 0.00065555, - 0.061728, - 0.0022494, - 0.02095, - -0.011252, - 0.026642, - 0.03661, - 0.0025922, - -0.005298, - -0.0000059262, - -0.0015754, - -0.025162, - 0.013993, - -0.015896, - 0.0022994, - -0.053475, - 0.060737, - -0.032604, - 0.021704, - -0.032088, - 0.0079955, - 0.0026239, - 0.0067218, - -0.023128, - 0.043034, - -0.054225, - 0.020743, - 0.0092444, - 0.038689, - 0.024603, - -0.049259, - -0.022292, - 0.057029, - -0.056122, - 0.00068795, - -0.024192, - -0.038077, - 0.0078497, - -0.058904, - 0.044419, - 0.0026033, - -0.036291, - 0.00462, - 0.014269, - 0.064176, - 0.049618, - 0.018294, - 0.023976, - 0.028434, - -0.013927, - -0.0013165, - -0.022065, - -0.036399, - -0.06351, - -0.054313, - 0.010167, - 0.004871, - 0.070467, - -0.0067869, - 0.026517, - -0.034962, - 0.044218, - 0.058099, - -0.0099572, - 0.031607, - 0.026858, - -0.013314, - 0.0059058, - -0.0075291, - 0.0049355, - 0.040553, - 0.023198, - 0.031787, - -0.032534, - -0.016752, - -0.016069, - 0.0028837, - 0.027004, - -0.044617, - 0.051743, - -0.0488, - -0.02141, - -0.0080947, - 0.043952, - 0.040495, - -0.0043434, - -0.068172, - 0.041189, - 0.030784, - 0.0087388, - 0.010798, - 0.0032725, - 0.0010867, - 0.029127, - -0.037225, - -0.050059, - 0.087406, - -0.018591, - 0.032898, - 0.052008, - 0.027823, - -0.0091374, - 0.030252, - 0.0029147, - 0.010752, - -0.029646, - 0.010647, - -0.0034505, - 0.039786, - -0.05657, - 0.039129, - -0.029101, - 0.002227, - 0.024888, - -0.035885, - -0.025122, - -0.0032071, - -0.029003, - -0.0719, - 0.026123, - 0.091602, - -0.010071, - 0.0067854, - -0.0038466, - 0.03724, - 0.0075719, - 0.0075033, - -0.0013756, - -0.022522, - -0.017761, - 0.013166, - -0.011098, - -0.0052987, - -0.091525, - 0.060426, - 0.011131, - -0.065855, - 0.047086, - 0.036907, - -0.023771, - -0.021568, - 0.016433, - 0.00796, - 0.082294, - 0.0062673, - 0.005749, - -0.012694, - -0.0045601, - 0.04474, - 0.0050244, - -0.021296, - -0.019608, - -0.0043131, - 0.024004, - -0.043697, - -0.027364, - 0.06223, - -0.025711, - -0.010515, - 0.0056456, - 0.019748, - 0.054621, - -0.035327, - -0.03058, - -0.012262, - -0.0065937, - -0.029159, - 0.027076, - -0.0011974, - 0.00027447, - -0.046045, - 0.0010232, - 0.004153, - 0.012632, - 0.0072963, - 0.030166, - 0.040724, - -0.06209, - 0.014884, - 0.013504, - -0.022474, - -0.0022999, - 0.011377, - -0.051825, - -0.0073208, - 0.0023181, - -0.015893, - -0.035447, - 0.037532, - -0.070705, - -0.017466, - -0.027436, - 0.016328, - 0.034087, - 0.016546, - 0.011177, - 0.013338, - 0.02188, - 0.10581, - -0.009141, - -0.0073869, - -0.0051452, - 0.082116, - 0.017727, - 0.018995, - -0.042707, - -0.034623, - 0.012984, - -0.023007, - 0.00038436, - 0.0056902, - -0.0055825, - 0.017474, - 0.097268, - 0.0056637, - 0.023826, - 0.0051668, - 0.014069, - 0.0033073, - 0.018638, - -0.019464, - -0.0064081, - 0.024685, - -0.025283, - 0.037289, - -0.027806, - 0.03345, - -0.048412, - -0.0041745, - -0.049019, - -0.034701, - -0.045889, - -0.0054429 - ], - "pharmacology": [ - -0.028623, - -0.05246, - 0.0051998, - 0.023858, - 0.063154, - -0.063005, - 0.0024124, - -0.078201, - 0.037968, - -0.0033433, - -0.0002216, - -0.045555, - 0.044703, - -0.021897, - 0.042014, - 0.0024509, - 0.076307, - -0.0015419, - 0.033335, - -0.0087518, - 0.033458, - 0.052077, - 0.061696, - 0.060419, - -0.02482, - -0.078995, - -0.03236, - -0.012846, - 0.00093696, - 0.053671, - 0.030303, - -0.023871, - 0.036451, - -0.04478, - 0.024062, - 0.042476, - 0.0052083, - -0.024427, - 0.018217, - -0.0074705, - -0.0061021, - -0.088985, - 0.039688, - -0.027371, - 0.032338, - -0.021651, - -0.012688, - 0.0085573, - 0.003159, - 0.038696, - -0.027632, - 0.018795, - 0.01573, - -0.021304, - -0.021918, - 0.0057993, - -0.02677, - 0.052635, - 0.007495, - 0.030731, - 0.041745, - 0.0030991, - 0.074242, - 0.092911, - -0.0053675, - 0.027485, - 0.054799, - -0.015411, - 0.02178, - -0.031007, - -0.020068, - 0.053311, - 0.0055681, - -0.005506, - -0.013027, - -0.047942, - -0.034809, - -0.032008, - -0.010795, - -0.039051, - -0.0085497, - 0.01223, - -0.051495, - -0.0041595, - -0.057719, - -0.030675, - 0.052452, - -0.020951, - 0.037582, - 0.00033285, - 0.050679, - 0.013768, - -0.077548, - 0.023304, - 0.014833, - 0.063308, - 0.05645, - 0.0043295, - -0.0030853, - 0.028519, - 0.017254, - 0.040198, - -0.020693, - 0.0084321, - -0.010938, - -0.043044, - -0.02987, - -0.030229, - 0.0050253, - 0.010962, - -0.015507, - 0.07414, - 0.031158, - -0.037661, - 0.01592, - 0.0099051, - 0.0075439, - -0.027033, - -0.018529, - -0.022221, - 0.013127, - 0.021292, - -0.038165, - -0.020103, - 0.027238, - 0.081379, - -0.051924, - -0.031437, - 0.030212, - 0.10482, - 0.0091011, - 0.012722, - -0.050034, - 0.0061853, - 0.024086, - -0.024559, - 0.005504, - 0.011597, - 0.041547, - -0.040866, - 0.01681, - 0.032635, - -0.029906, - 0.037729, - -0.015202, - -0.071628, - -0.010277, - 0.009067, - 0.033001, - -0.027874, - 0.0036105, - 0.04893, - 0.0515, - -0.059728, - 0.0096207, - 0.066838, - -0.018922, - 0.0017191, - 0.07385, - 0.0329, - 0.032601, - 0.01643, - -0.058767, - 0.018058, - -0.029434, - -0.013293, - -0.0016285, - -0.052142, - 0.015863, - -0.077873, - 0.016585, - -0.025568, - 0.01577, - -0.00037733, - 0.028217, - 0.03477, - -0.00093169, - -0.0034403, - -0.024083, - -0.030307, - -0.014576, - -0.0061802, - -0.049648, - -0.023211, - 0.021695, - -0.029711, - 0.057128, - 0.081352, - -0.025995, - 0.035131, - 0.015751, - 0.081098, - -0.029556, - 0.004554, - -0.012392, - 0.022904, - -0.041067, - 0.064087, - -0.011612, - -0.0029618, - -0.098073, - -0.03999, - -0.012342, - -0.034292, - -0.022494, - 0.011861, - -0.015992, - -0.064816, - -0.032138, - 0.014246, - 0.10591, - 0.0074688, - -0.005881, - 0.038683, - 0.034247, - 0.048845, - -0.017458, - 0.018444, - -0.047449, - 0.0079656, - -0.055034, - -0.018225, - -0.050446, - 0.09797, - -0.00203, - 0.037125, - 0.029757, - 0.067299, - 0.038542, - -0.041708, - -0.052133, - -0.023597, - -0.023028, - 0.013386, - 0.01255, - -0.034512, - -0.038687, - 0.022473, - -0.0050536, - 0.01275, - 0.011425, - 0.029124, - 0.024135, - 0.023393, - 0.023511, - -0.016077, - -0.064991, - 0.0029489, - 0.048394, - 0.049461, - 0.0098111, - 0.011805, - 0.018578, - -0.043019, - -0.0001406, - -0.027831, - -0.01039, - 0.049054, - 0.055147, - -0.024501, - 0.0076707, - 0.019598, - 0.033153, - 0.0020039, - 0.0057341, - -0.0427, - -0.015771, - 0.02902, - 0.027197, - 0.053998, - -0.011269, - 0.057395, - -0.071002, - -0.0038217, - -0.028473, - -0.0031786, - -0.02165, - 0.039897, - -0.022491, - -0.022568, - 0.04678, - -0.0071318, - -0.093651, - -0.03118, - -0.02249, - 0.011574, - -0.046461, - -0.0063463, - -0.0046947, - -0.048813, - 0.018642, - -0.010715, - -0.0006421, - -0.043511, - -0.043649, - 0.053055, - 0.042071, - 0.045961, - -0.024496, - 0.0047567 - ], - "photography": [ - -0.019178, - -0.0599, - 0.024437, - -0.015758, - 0.030317, - -0.024475, - 0.046443, - -0.065924, - 0.057622, - -0.03398, - 0.011739, - -0.019909, - 0.007493, - -0.019232, - -0.035144, - -0.026631, - 0.078659, - -0.0027471, - -0.0073398, - -0.0043165, - 0.026104, - 0.016413, - 0.0090038, - 0.01919, - -0.053204, - 0.020494, - -0.015799, - 0.042287, - 0.0056444, - 0.03481, - 0.0070601, - 0.029896, - 0.041639, - -0.053994, - 0.031257, - 0.028576, - 0.018035, - 0.0028597, - -0.031319, - 0.0031839, - -0.018079, - -0.10375, - 0.0027755, - 0.0058652, - 0.046545, - -0.0051946, - -0.011183, - -0.051087, - -0.0043774, - 0.016372, - -0.032721, - -0.0097921, - -0.0067289, - 0.071824, - -0.062371, - 0.0012853, - -0.016863, - -0.029993, - -0.037452, - 0.033132, - 0.063843, - -0.0078716, - 0.077063, - -0.055494, - -0.012103, - 0.026855, - -0.062538, - -0.010273, - 0.00047564, - 0.062884, - 0.036705, - 0.0046854, - 0.00018203, - 0.0086175, - 0.0117, - 0.038366, - 0.021463, - 0.001531, - 0.0089256, - -0.010034, - -0.031563, - -0.016285, - -0.04325, - 0.060956, - -0.048371, - -0.031888, - 0.052163, - 0.0080302, - 0.025187, - 0.051942, - -0.0001295, - 0.0169, - -0.069844, - 0.020723, - 0.021398, - 0.05055, - -0.070233, - 0.024147, - -0.010872, - -0.037119, - 0.054644, - 0.0079177, - 0.016451, - 0.047272, - -0.0026575, - -0.053619, - -0.046391, - 0.056824, - 0.05258, - 0.013066, - 0.013531, - 0.055766, - 0.043943, - 0.048957, - -0.041976, - -0.0042782, - -0.0032507, - -0.0065514, - -0.012049, - 0.016549, - -0.067081, - 0.035517, - -0.049962, - 0.022801, - 0.040478, - 0.018785, - 0.00068361, - -0.056132, - 0.016993, - 0.097809, - -0.011782, - -0.016025, - -0.025581, - -0.0079661, - 0.01599, - 0.0062585, - -0.021536, - -0.0055551, - 0.0054849, - -0.028981, - -0.0016636, - 0.0064601, - 0.031584, - 0.01965, - 0.0068074, - -0.0076574, - -0.089658, - -0.057695, - 0.032402, - -0.072578, - 0.043718, - 0.035567, - 0.035238, - -0.10739, - -0.027152, - 0.053927, - -0.0066606, - 0.082961, - 0.016831, - 0.019565, - 0.027819, - 0.0066885, - -0.062416, - 0.026344, - -0.060482, - 0.017862, - 0.020945, - -0.0045893, - 0.01326, - 0.063088, - 0.051639, - 0.056914, - 0.05312, - 0.0017792, - 0.042361, - 0.043275, - -0.0091423, - 0.058556, - -0.027083, - -0.0052507, - 0.02444, - -0.042132, - -0.0045512, - -0.051224, - -0.056588, - -0.019086, - 0.067676, - 0.074304, - -0.0017987, - -0.023875, - -0.022138, - 0.040451, - -0.02534, - -0.076458, - -0.048314, - -0.049112, - 0.018137, - -0.035019, - 0.0078811, - 0.047846, - -0.11099, - 0.048409, - 0.0024778, - -0.050713, - 0.028185, - 0.054894, - -0.045391, - 0.033249, - -0.0031001, - -0.0075239, - 0.084914, - 0.041224, - 0.00066675, - -0.0051476, - 0.015823, - 0.028613, - 0.031663, - -0.034471, - -0.038958, - -0.02506, - 0.0093522, - -0.015863, - -0.039588, - 0.067311, - 0.010649, - -0.0009999, - 0.038604, - 0.053514, - -0.005513, - 0.0052857, - 0.014207, - -0.038793, - -0.035917, - -0.015031, - 0.023022, - 0.043562, - 0.032738, - -0.033112, - -0.066484, - -0.025209, - 0.019074, - 0.016337, - 0.040222, - -0.023593, - -0.0021288, - 0.019266, - -0.031978, - -0.013182, - -0.035758, - 0.023573, - 0.069597, - -0.049025, - -0.021882, - 0.044336, - 0.010638, - 0.0077002, - -0.023226, - -0.00010865, - 0.063158, - 0.029836, - 0.02222, - 0.032944, - -0.0057754, - 0.0061132, - -0.00026382, - -0.060287, - 0.017118, - 0.0076786, - 0.018252, - -0.0072239, - 0.014868, - 0.066287, - -0.05465, - -0.013571, - -0.049378, - -0.013601, - -0.02773, - 0.023235, - 0.0060175, - -0.038492, - 0.068545, - 0.021427, - -0.010232, - -0.0049563, - -0.011291, - -0.069967, - -0.023231, - 0.017939, - -0.0033709, - -0.0019759, - -0.014133, - -0.011264, - -0.031516, - -0.042961, - -0.043443, - 0.047237, - -0.030103, - 0.0011511, - 0.016393, - -0.000032599 - ], - "foodstuffs": [ - -0.022928, - -0.0089231, - -0.021971, - -0.044405, - 0.039704, - -0.045974, - 0.014962, - -0.048061, - 0.011752, - 0.028058, - -0.027044, - -0.033134, - -0.027294, - -0.024491, - 0.032295, - -0.0043319, - 0.014371, - 0.019977, - 0.011037, - 0.026264, - 0.028102, - -0.0094783, - 0.046992, - 0.028725, - -0.011166, - -0.051967, - -0.025933, - 0.041344, - 0.095046, - -0.041691, - 0.071155, - -0.027689, - 0.057426, - -0.030885, - 0.06245, - 0.0072531, - 0.013, - 0.027785, - 0.017687, - 0.036819, - -0.035448, - -0.082734, - -0.014884, - -0.0028503, - 0.058026, - -0.059023, - -0.04567, - -0.044319, - -0.012939, - -0.019469, - -0.060434, - 0.0032056, - 0.0094351, - -0.023824, - -0.083634, - 0.089438, - 0.018101, - 0.012585, - -0.0046346, - -0.072458, - -0.0056333, - -0.034946, - 0.16206, - 0.042566, - 0.058296, - 0.0069393, - 0.064854, - -0.014296, - -0.021193, - -0.010209, - 0.010372, - 0.0074384, - 0.045963, - -0.018036, - -0.037268, - 0.013492, - -0.017638, - -0.049901, - -0.014837, - -0.016394, - -0.0041743, - -0.03013, - 0.0076321, - 0.05949, - -0.012883, - 0.032385, - -0.0057757, - -0.028828, - 0.0085217, - -0.02453, - -0.006107, - -0.048531, - -0.04678, - 0.077895, - -0.050477, - 0.047039, - -0.024863, - 0.068857, - 0.012012, - -0.016925, - -0.024417, - -0.012956, - -0.048041, - 0.024997, - 0.010417, - -0.026558, - -0.059911, - 0.0068302, - 0.040038, - 0.020958, - 0.023287, - 0.081479, - 0.042651, - 0.06344, - 0.010249, - -0.010679, - 0.031754, - 0.0062246, - -0.035228, - -0.019586, - -0.03366, - 0.028833, - -0.023735, - -0.096016, - 0.067673, - -0.021431, - -0.017611, - 0.00082115, - 0.044392, - 0.069514, - 0.027161, - 0.035483, - -0.0071083, - -0.00045815, - 0.043769, - -0.014037, - -0.089196, - 0.020487, - 0.022568, - 0.027361, - -0.00035517, - 0.034457, - -0.03895, - 0.068175, - 0.026578, - 0.020244, - 0.0098351, - 0.043308, - -0.010994, - -0.0093551, - 0.017595, - 0.043197, - -0.018494, - -0.067378, - 0.087439, - 0.002111, - -0.076223, - 0.0156, - -0.030967, - 0.0044644, - 0.037011, - -0.052341, - -0.00095477, - 0.024724, - -0.024315, - 0.0013782, - -0.013546, - -0.047972, - 0.097315, - -0.015708, - 0.01536, - -0.0019933, - 0.0008714, - 0.032269, - -0.041117, - 0.039155, - 0.01154, - 0.045694, - 0.014097, - 0.060459, - 0.030145, - 0.0033857, - 0.027307, - -0.10726, - 0.011872, - -0.048341, - 0.035849, - 0.11949, - -0.01153, - -0.10934, - 0.050451, - 0.062695, - -0.072447, - -0.039872, - 0.010082, - 0.073315, - 0.0093584, - -0.030071, - -0.013726, - 0.046522, - -0.10797, - 0.0061973, - -0.0063076, - -0.061643, - -0.032017, - -0.0057925, - 0.00086367, - 0.013929, - 0.04036, - -0.013001, - 0.044345, - -0.0055067, - 0.024092, - 0.007963, - 0.032764, - 0.037719, - -0.032843, - 0.023602, - -0.077869, - 0.013738, - 0.026732, - -0.010078, - -0.0043838, - 0.050863, - 0.030746, - 0.040544, - 0.040508, - 0.046686, - -0.033509, - 0.0036889, - -0.071574, - 0.024021, - -0.07385, - -0.067938, - 0.020435, - -0.0285, - -0.059256, - -0.0047408, - 0.0005139, - -0.12697, - -0.030821, - 0.029282, - 0.046066, - -0.019119, - -0.0025826, - 0.030202, - -0.033153, - 0.017035, - -0.0093393, - 0.015849, - -0.011788, - -0.066447, - 0.0034282, - -0.0063935, - -0.05893, - 0.045295, - 0.0040721, - -0.014802, - 0.045045, - 0.011585, - 0.0038359, - -0.016742, - 0.00089104, - -0.020834, - 0.018378, - 0.035527, - -0.0059869, - -0.063311, - -0.016712, - 0.012942, - 0.013789, - 0.051767, - -0.048034, - -0.036851, - -0.065696, - -0.000054717, - 0.0045303, - -0.010508, - -0.052913, - 0.0014896, - 0.033499, - 0.03585, - -0.044292, - -0.0017253, - -0.033391, - 0.081968, - -0.040166, - 0.030548, - 0.039563, - 0.028882, - 0.021941, - 0.070545, - -0.024498, - -0.042061, - -0.030979, - -0.015286, - -0.0055323, - -0.015339, - -0.030168, - -0.0045343 - ], - "sunny": [ - 0.0078584, - 0.019432, - 0.054644, - -0.031827, - -0.051128, - -0.080926, - 0.096958, - -0.11758, - -0.034086, - 0.031603, - -0.16409, - -0.21872, - 0.025318, - 0.031895, - -0.027579, - -0.014534, - 0.088203, - 0.029216, - 0.035169, - 0.010738, - -0.039006, - 0.045875, - -0.10162, - 0.113, - 0.096345, - 0.024523, - 0.038635, - 0.037539, - 0.063256, - 0.018033, - 0.037859, - 0.01393, - -0.046481, - -0.04072, - 0.011849, - 0.10659, - 0.013852, - -0.04659, - 0.051423, - -0.055418, - 0.048464, - -0.13989, - 0.013225, - -0.056994, - 0.040979, - -0.014113, - -0.060096, - -0.090801, - -0.061163, - 0.048908, - -0.052596, - 0.023755, - -0.050698, - 0.035905, - -0.050443, - -0.087771, - 0.053978, - -0.066002, - -0.07537, - -0.056375, - -0.01411, - 0.054641, - 0.18212, - -0.10027, - 0.040143, - -0.025505, - 0.018597, - -0.066047, - 0.013459, - 0.001853, - 0.13084, - 0.063171, - 0.033122, - 0.086554, - -0.12579, - -0.03053, - -0.042161, - 0.01529, - -0.1635, - -0.0064561, - 0.015573, - 0.0085929, - 0.24414, - 0.06784, - 0.0073506, - -0.067653, - 0.089097, - -0.027925, - -0.0069356, - -0.033871, - -0.039983, - -0.064049, - -0.14741, - -0.0026559, - 0.061806, - 0.10352, - -0.046231, - 0.0051098, - -0.049906, - -0.034396, - 0.096051, - 0.043568, - -0.0093889, - -0.0072261, - 0.026485, - -0.19083, - -0.065558, - -0.00327, - 0.017169, - 0.064423, - -0.11587, - 0.15741, - -0.0062506, - 0.031772, - -0.011728, - -0.1221, - -0.033286, - 0.068336, - 0.025238, - 0.033076, - -0.033281, - -0.031187, - 0.00096614, - -0.11306, - -0.017064, - -0.018445, - 0.014398, - -0.051634, - -0.092899, - -0.027791, - 0.044214, - 0.071384, - 0.0083389, - 0.026575, - -0.063748, - -0.076581, - 0.090036, - 0.042491, - -0.052804, - 0.04517, - 0.15976, - -0.08257, - 0.028692, - -0.036585, - 0.042991, - 0.021723, - -0.031352, - -0.024167, - -0.081942, - -0.020267, - -0.052365, - 0.005085, - 0.11199, - -0.012397, - -0.024205, - 0.059713, - -0.014279, - -0.0099972, - 0.025714, - 0.061168, - 0.091393, - -0.043163, - 0.067373, - 0.081468, - -0.034449, - -0.050244, - 0.002221, - -0.049825, - -0.032436, - 0.16352, - -0.17023, - 0.018652, - 0.11341, - 0.0086546, - 0.09224, - 0.07207, - 0.092705, - -0.020701, - 0.0091217, - 0.0017861, - 0.021814, - 0.013216, - -0.097121, - -0.18552, - -0.0092363, - 0.012684, - 0.0010682, - 0.17001, - -0.044296, - 0.030323, - 0.099561, - 0.030994, - 0.064309, - 0.053154, - -0.052391, - -0.072297, - 0.10835, - 0.02461, - 0.011305, - -0.0033715, - -0.11237, - 0.083756, - 0.0015959, - -0.066015, - 0.024615, - 0.098822, - -0.024749, - -0.045878, - 0.022989, - -0.043214, - 0.095139, - -0.12353, - 0.015899, - 0.097776, - 0.14201, - -0.020934, - -0.060156, - -0.055624, - -0.046463, - -0.12785, - 0.0015826, - 0.060215, - 0.00085842, - 0.095871, - -0.11698, - 0.007802, - 0.069769, - 0.10881, - 0.014433, - 0.010567, - 0.059743, - -0.10928, - -0.036047, - 0.044079, - 0.13763, - 0.0095409, - 0.042868, - -0.004063, - 0.0058336, - 0.0084198, - 0.14655, - -0.01945, - -0.003434, - -0.013729, - -0.18432, - 0.035919, - 0.0027656, - -0.074181, - 0.0090311, - -0.025633, - 0.12452, - -0.087445, - -0.047673, - -0.026078, - -0.07269, - 0.01799, - 0.022693, - -0.017224, - 0.10103, - 0.01434, - 0.08879, - 0.065722, - 0.0044975, - -0.014859, - -0.059732, - -0.081473, - 0.025635, - -0.043689, - 0.028044, - -0.039125, - -0.097419, - 0.078892, - -0.14001, - -0.018279, - 0.1052, - -0.13701, - 0.023855, - 0.022631, - -0.034824, - 0.0050224, - 0.10185, - 0.023197, - 0.095972, - 0.0042664, - -0.078543, - 0.00053757, - 0.004534, - -0.11434, - -0.019998, - 0.010656, - 0.051367, - -0.077996, - 0.060656, - 0.13898, - 0.00083101, - -0.018072, - 0.060518, - 0.095025, - 0.027621, - -0.030889 - ], - "financing": [ - 0.091212, - -0.017314, - -0.042571, - -0.018048, - -0.033029, - -0.048048, - -0.015629, - -0.095539, - -0.010595, - 0.032513, - 0.06091, - -0.032583, - 0.033248, - 0.015479, - -0.018993, - 0.0090039, - 0.032786, - -0.021165, - 0.035546, - 0.0098144, - 0.031213, - 0.016085, - -0.0082583, - 0.043231, - 0.013084, - 0.044863, - -0.020403, - 0.012078, - 0.064551, - 0.0029721, - -0.047457, - 0.035494, - -0.068088, - -0.069245, - 0.038282, - 0.031081, - -0.027523, - 0.010148, - -0.0073024, - -0.0015573, - -0.015329, - -0.098779, - 0.026691, - -0.020096, - -0.016582, - -0.010474, - -0.042075, - -0.040972, - -0.017376, - 0.0048885, - -0.029684, - -0.021351, - -0.0084013, - 0.047875, - -0.085521, - -0.0073565, - -0.042809, - -0.019479, - -0.0048459, - 0.018954, - 0.018159, - -0.025991, - 0.075364, - 0.03961, - 0.036282, - -0.080559, - 0.025365, - -0.072814, - -0.035881, - 0.024492, - -0.01074, - -0.013982, - 0.053495, - 0.011999, - 0.034521, - 0.034056, - -0.028867, - -0.019889, - -0.054293, - 0.026828, - 0.010091, - -0.015597, - -0.048036, - 0.062641, - 0.019128, - 0.050408, - -0.003356, - -0.01576, - -0.038658, - -0.014385, - 0.0081331, - 0.013143, - -0.08704, - 0.0061509, - -0.05282, - 0.017798, - -0.0012878, - -0.056346, - -0.050008, - -0.026916, - -0.037, - -0.085009, - -0.021793, - -0.0052609, - 0.010735, - -0.079613, - -0.022837, - -0.035642, - -0.021627, - 0.011464, - -0.0054234, - 0.051609, - 0.053928, - 0.017559, - -0.009045, - -0.036405, - 0.0087827, - -0.037537, - -0.062565, - 0.019317, - -0.022037, - -0.022452, - 0.0083879, - 0.01452, - 0.062869, - -0.00054051, - -0.085572, - -0.11101, - 0.046969, - 0.11614, - 0.010055, - -0.042938, - 0.011022, - -0.028667, - 0.0083209, - 0.03784, - 0.007226, - -0.0061214, - 0.0027578, - 0.030083, - -0.0051747, - 0.0080408, - -0.03164, - 0.095773, - -0.016963, - -0.037463, - -0.019154, - -0.029185, - 0.032345, - -0.017707, - 0.052272, - 0.053742, - 0.041583, - -0.14342, - 0.0072711, - 0.015648, - 0.045522, - -0.023018, - 0.011662, - -0.0096757, - 0.084477, - -0.012015, - -0.072028, - 0.068331, - -0.0044267, - 0.027011, - 0.010841, - -0.052219, - 0.042507, - 0.041418, - 0.04244, - -0.0042355, - -0.024426, - -0.015837, - -0.029522, - 0.050814, - -0.0066593, - -0.036076, - -0.052418, - -0.029793, - -0.017171, - -0.019167, - 0.027893, - 0.038437, - 0.0075256, - -0.04766, - -0.046409, - 0.061529, - 0.032206, - -0.024328, - -0.023605, - 0.02295, - 0.014193, - 0.012348, - -0.034707, - 0.0010932, - 0.022969, - -0.0031772, - 0.0060095, - -0.054155, - -0.16317, - 0.079142, - 0.020829, - 0.015946, - 0.03504, - 0.0050383, - -0.026001, - -0.023028, - -0.051429, - -0.0075155, - 0.097613, - 0.029336, - 0.015606, - 0.0050675, - 0.0092462, - 0.021838, - 0.00081267, - -0.025929, - -0.0096095, - -0.038879, - 0.036015, - 0.0027586, - -0.0071856, - 0.070233, - -0.01255, - 0.020604, - 0.019695, - 0.049077, - 0.019521, - -0.037304, - -0.015701, - -0.049372, - -0.066187, - -0.00086881, - 0.023609, - -0.0027522, - -0.065331, - 0.018927, - -0.039689, - -0.053105, - 0.029951, - -0.023964, - 0.034991, - -0.028277, - -0.083624, - 0.017087, - -0.045915, - -0.021403, - 0.015656, - 0.035592, - 0.0028807, - -0.018986, - -0.021285, - -0.011092, - -0.0027602, - 0.048279, - -0.046836, - 0.027315, - -0.043444, - 0.035959, - 0.048709, - -0.05116, - -0.0078804, - 0.06159, - -0.016133, - 0.045736, - -0.037704, - 0.0095482, - -0.00029803, - 0.053352, - -0.010113, - 0.049324, - -0.098389, - -0.043677, - -0.083636, - -0.023298, - -0.03662, - 0.056036, - -0.0080693, - -0.0053302, - 0.048015, - 0.000062772, - 0.012584, - 0.021814, - 0.011622, - 0.0025723, - 0.029786, - 0.044484, - -0.028841, - 0.036527, - 0.019588, - -0.017034, - -0.030449, - 0.035197, - -0.046871, - -0.017994, - -0.020917, - 0.013088, - -0.080251, - -0.056481 - ], - "milkshakes": [ - -0.047239, - 0.044044, - -0.035418, - -0.035141, - -0.0091478, - -0.032868, - 0.0079463, - -0.10669, - 0.0030298, - 0.051271, - 0.044817, - -0.016493, - 0.014903, - 0.0089865, - -0.011296, - 0.00029154, - 0.012805, - -0.032056, - 0.024421, - -0.032576, - 0.041973, - 0.026307, - 0.020494, - 0.024351, - 0.019647, - -0.015446, - 0.017725, - -0.0019449, - 0.092992, - 0.019436, - -0.044044, - -0.073372, - -0.0046351, - 0.012581, - 0.079543, - 0.028284, - -0.0041734, - -0.029745, - -0.0084142, - 0.0109, - -0.016358, - -0.02978, - -0.083247, - 0.028206, - 0.081769, - -0.036031, - 0.073061, - 0.02083, - -0.0010443, - 0.05842, - 0.016856, - 0.065837, - 0.094451, - -0.039105, - -0.11561, - 0.024792, - 0.0078924, - -0.082636, - -0.071576, - -0.042317, - -0.019837, - 0.010332, - 0.072523, - 0.054637, - -0.02446, - 0.039092, - -0.0057906, - 0.017656, - -0.07818, - -0.026784, - 0.029146, - 0.016357, - 0.068894, - -0.027251, - -0.020809, - 0.025105, - 0.014741, - -0.033911, - -0.068156, - 0.032615, - -0.040756, - -0.066495, - 0.02023, - 0.010201, - -0.011275, - 0.018796, - -0.022718, - -0.0079837, - 0.028771, - -0.010776, - 0.024795, - -0.050622, - -0.064485, - 0.012355, - 0.037901, - 0.12481, - 0.0053675, - 0.050299, - 0.015641, - 0.01181, - -0.011377, - 0.013211, - -0.042739, - -0.041608, - 0.032143, - -0.064228, - -0.055911, - 0.0096804, - -0.024155, - 0.099111, - 0.019432, - 0.028571, - 0.036457, - 0.077584, - 0.032617, - 0.00054569, - -0.054964, - 0.024584, - -0.074879, - 0.026707, - 0.0063557, - -0.0072505, - -0.019143, - -0.1271, - 0.13001, - 0.026253, - 0.0048641, - -0.072707, - 0.01123, - 0.021142, - 0.046044, - 0.0081113, - 0.020948, - -0.077595, - -0.017594, - -0.0084279, - 0.010699, - 0.079571, - 0.012204, - -0.015004, - 0.033653, - -0.037982, - -0.019191, - -0.029416, - 0.029756, - -0.017375, - 0.068378, - -0.031956, - -0.037366, - 0.013629, - -0.029267, - 0.040589, - -0.010573, - 0.06175, - 0.04511, - -0.016783, - -0.049936, - 0.028898, - -0.011627, - 0.0068572, - 0.0041853, - 0.010808, - -0.030919, - -0.0093762, - -0.0042327, - -0.027852, - -0.022581, - 0.036382, - 0.037077, - -0.018778, - -0.0021007, - -0.0048531, - 0.022431, - 0.0021091, - 0.013161, - 0.029746, - -0.0081077, - 0.028707, - -0.046378, - -0.05174, - 0.050074, - -0.060495, - -0.0071284, - -0.095184, - 0.043174, - 0.026038, - 0.017103, - 0.080845, - 0.066205, - -0.0027434, - 0.031914, - 0.01163, - -0.037089, - -0.00398, - 0.10337, - -0.009934, - -0.017537, - -0.049305, - 0.066359, - 0.005546, - -0.11355, - 0.031435, - -0.025828, - -0.0046765, - 0.0060724, - 0.019564, - 0.027817, - -0.00025266, - 0.019525, - -0.05285, - 0.10978, - 0.0089836, - 0.043063, - 0.0051275, - 0.064478, - -0.017186, - 0.0060525, - -0.040759, - -0.03185, - 0.017146, - 0.0049589, - -0.017668, - 0.035943, - 0.10609, - 0.010848, - 0.068382, - 0.011005, - 0.059105, - -0.014625, - 0.007301, - -0.015905, - -0.048601, - -0.07839, - -0.01032, - 0.046483, - 0.022257, - -0.013424, - -0.034719, - 0.023231, - -0.043453, - 0.01866, - -0.022812, - -0.044985, - -0.053252, - -0.038134, - 0.035137, - 0.020527, - -0.027388, - -0.054075, - -0.0035634, - -0.024676, - -0.005227, - 0.015497, - 0.042393, - -0.041349, - 0.014361, - -0.00026416, - -0.030277, - 0.061977, - -0.015164, - -0.023129, - 0.04216, - 0.052712, - -0.046992, - 0.026939, - -0.001862, - -0.037288, - -0.045212, - 0.055228, - 0.051403, - -0.015205, - 0.077843, - -0.071083, - -0.01419, - -0.074221, - -0.020516, - -0.045655, - -0.014518, - -0.0093688, - 0.019479, - -0.026688, - 0.017386, - -0.0076056, - 0.055115, - -0.022554, - -0.014113, - -0.016162, - -0.008648, - -0.014495, - 0.006826, - -0.010971, - -0.0087666, - -0.046658, - -0.007669, - -0.070468, - -0.0061633, - 0.036018, - -0.009035, - -0.03662, - -0.018853 - ], - "vehicles": [ - 0.033876, - -0.037369, - 0.056107, - 0.045023, - -0.0098294, - -0.014775, - -0.039906, - -0.076007, - 0.089431, - 0.036847, - 0.045816, - -0.035749, - 0.015531, - 0.0081611, - -0.034814, - 0.042389, - 0.075668, - 0.050106, - 0.06301, - 0.0017039, - 0.036421, - -0.065607, - 0.028243, - 0.045926, - 0.022259, - 0.035676, - -0.051426, - -0.045394, - 0.087333, - 0.016668, - -0.048951, - 0.031672, - 0.03325, - -0.0047445, - 0.049643, - 0.012125, - -0.0077957, - -0.014164, - 0.073301, - -0.043883, - 0.0022991, - -0.11234, - 0.026397, - -0.0029366, - 0.01254, - -0.068799, - -0.0013898, - -0.030687, - -0.015479, - -0.046705, - -0.0073942, - -0.00513, - -0.019894, - 0.011183, - -0.094643, - 0.015598, - 0.024794, - 0.0065753, - -0.036211, - -0.019766, - 0.061611, - -0.039082, - 0.1529, - 0.05706, - 0.084966, - -0.013329, - -0.0075303, - -0.06192, - -0.029524, - 0.055364, - 0.044237, - -0.015781, - 0.048316, - -0.012618, - 0.0034572, - 0.041112, - -0.037052, - -0.058226, - 0.027467, - 0.0056607, - 0.033644, - -0.048727, - -0.036859, - 0.020947, - 0.034992, - -0.044404, - -0.022774, - -0.014137, - 0.038541, - -0.081763, - -0.021532, - 0.0031407, - -0.073382, - 0.060143, - 0.0021608, - 0.08138, - -0.038565, - 0.029603, - 0.0092895, - -0.048753, - 0.023695, - -0.053158, - 0.012116, - -0.01725, - 0.039352, - -0.0531, - -0.0015591, - 0.0051821, - 0.012508, - 0.014446, - 0.081056, - 0.082767, - 0.087585, - 0.075256, - -0.028473, - -0.060405, - -0.020234, - 0.011441, - -0.045231, - 0.0082113, - -0.031749, - 0.01199, - 0.0011937, - -0.070101, - 0.12642, - -0.003668, - -0.014991, - -0.056506, - 0.073828, - 0.0438, - -0.027128, - 0.067301, - 0.096861, - -0.0011779, - 0.084001, - -0.0069172, - 0.032497, - 0.0048745, - -0.038423, - 0.017461, - -0.10672, - -0.037667, - 0.031867, - 0.020899, - 0.048782, - 0.00045355, - 0.022092, - -0.0028928, - -0.01888, - -0.014311, - 0.042194, - 0.074223, - 0.010965, - -0.061346, - 0.0090271, - 0.027508, - -0.045994, - 0.0043177, - -0.0652, - 0.018321, - 0.017327, - 0.0097441, - 0.028149, - 0.02865, - 0.051401, - -0.042621, - 0.0622, - -0.030844, - 0.037444, - -0.011327, - 0.058369, - -0.074526, - 0.05392, - 0.037145, - -0.023115, - 0.062082, - -0.017484, - 0.029604, - -0.054382, - 0.02678, - 0.078697, - 0.031937, - -0.024282, - -0.01355, - -0.0068302, - -0.07881, - -0.017999, - 0.069112, - 0.033557, - -0.071543, - -0.022607, - 0.05115, - -0.051886, - 0.020918, - 0.057011, - 0.051368, - -0.053328, - -0.048712, - 0.014109, - 0.0098791, - -0.12943, - 0.089132, - -0.054195, - -0.018772, - 0.060695, - 0.020187, - -0.009285, - 0.073047, - 0.033172, - -0.070164, - 0.087001, - -0.026678, - 0.039662, - 0.040636, - -0.0083505, - 0.040002, - -0.098273, - -0.062077, - -0.023478, - -0.0083951, - -0.042954, - 0.0039432, - 0.032346, - 0.088336, - 0.04125, - 0.0031621, - -0.045385, - 0.026555, - -0.0086939, - 0.0082982, - -0.089499, - -0.0092291, - -0.095886, - -0.054355, - 0.023254, - -0.056745, - 0.039142, - -0.019975, - -0.046417, - -0.031308, - -0.023318, - 0.0079874, - -0.0054314, - -0.0078083, - 0.011704, - 0.012763, - 0.04738, - 0.0054578, - 0.033418, - 0.051544, - -0.014089, - 0.046604, - -0.018161, - -0.021168, - -0.050058, - -0.014761, - 0.04434, - -0.0022244, - 0.035526, - -0.0099989, - 0.02602, - 0.025625, - -0.12253, - -0.041877, - 0.017649, - 0.061345, - 0.067467, - -0.013004, - 0.022116, - -0.0083634, - 0.010584, - 0.10252, - -0.08497, - -0.048796, - -0.024186, - -0.035211, - 0.014682, - 0.049814, - 0.0086921, - -0.025578, - 0.028153, - -0.024592, - -0.020436, - -0.017125, - -0.014704, - -0.044896, - -0.043202, - 0.018784, - 0.041775, - 0.024656, - 0.024395, - -0.067784, - -0.047315, - -0.0059063, - -0.020778, - -0.05537, - 0.0043193, - -0.02199, - 0.028697, - -0.048684 - ], - "geek": [ - -0.14032, - -0.069626, - 0.019928, - 0.014336, - -0.21072, - -0.095394, - 0.085337, - -0.10601, - 0.15778, - 0.0018031, - -0.057253, - -0.011625, - -0.11325, - 0.05498, - -0.010594, - 0.0037734, - 0.14932, - 0.053948, - 0.065122, - 0.024519, - 0.043396, - 0.14152, - 0.021698, - 0.082808, - 0.037594, - -0.019241, - 0.13808, - 0.016547, - -0.023826, - 0.0098384, - 0.077776, - -0.074737, - 0.011565, - 0.026154, - 0.02376, - 0.017202, - 0.093357, - 0.044608, - -0.064022, - -0.059688, - -0.11137, - -0.23384, - -0.029802, - 0.058187, - -0.046684, - 0.086424, - -0.019895, - -0.044107, - 0.031505, - 0.038144, - 0.034667, - 0.015091, - 0.032376, - -0.040144, - 0.029911, - 0.053344, - 0.088401, - 0.0043876, - -0.049344, - 0.07711, - 0.0062113, - -0.072599, - 0.1031, - -0.0042503, - 0.0066507, - 0.042246, - -0.019286, - 0.071454, - 0.024467, - -0.072733, - 0.14476, - 0.0193, - 0.15561, - -0.099229, - 0.010713, - 0.033618, - 0.0136, - -0.064802, - 0.083592, - -0.041407, - -0.044458, - 0.034074, - -0.016337, - 0.07153, - -0.065969, - 0.021847, - -0.055278, - -0.0074339, - 0.070795, - 0.026832, - 0.066614, - 0.031641, - -0.10931, - -0.078104, - 0.13218, - 0.14064, - 0.016731, - -0.027651, - -0.052998, - 0.22185, - 0.076635, - 0.15569, - -0.076029, - -0.025854, - -0.011474, - -0.20712, - -0.00039501, - 0.061614, - -0.015287, - -0.065975, - -0.046598, - 0.1302, - 0.023018, - -0.081685, - -0.0078867, - -0.019784, - -0.10316, - -0.024315, - -0.051064, - 0.030324, - -0.020976, - 0.057647, - 0.040556, - -0.065252, - 0.18831, - -0.061788, - -0.027934, - -0.05264, - -0.066453, - 0.10683, - -0.0042175, - 0.05109, - -0.053386, - -0.050569, - -0.0065494, - -0.16783, - 0.090037, - 0.11208, - -0.007298, - -0.044824, - 0.11322, - -0.031267, - 0.045864, - 0.052127, - -0.0435, - -0.056166, - -0.12284, - -0.085843, - -0.063054, - -0.074072, - 0.062729, - 0.13274, - -0.16369, - -0.014488, - -0.047441, - -0.048837, - 0.064286, - 0.13496, - 0.063442, - -0.084347, - 0.05248, - 0.0076888, - -0.11078, - -0.043567, - -0.043792, - -0.058227, - -0.089915, - -0.16782, - -0.088534, - 0.06321, - -0.099894, - -0.051793, - 0.026657, - -0.019725, - 0.054092, - 0.10389, - 0.12346, - 0.10324, - 0.038726, - -0.022772, - -0.12074, - -0.059725, - -0.18223, - -0.078421, - 0.056926, - -0.079263, - -0.16461, - 0.17067, - -0.0030157, - 0.032078, - -0.081961, - 0.013419, - 0.025984, - 0.03757, - 0.00041316, - 0.023156, - -0.11788, - 0.023618, - -0.014889, - 0.059917, - -0.18749, - 0.016381, - -0.05016, - 0.0063806, - -0.051961, - 0.11297, - -0.082634, - 0.09769, - -0.0071692, - -0.051647, - 0.11467, - -0.018659, - -0.080662, - -0.0077908, - -0.0038958, - 0.011514, - -0.12946, - 0.010356, - 0.03346, - -0.0070142, - 0.048238, - -0.10607, - -0.050847, - 0.05746, - 0.014793, - -0.081206, - 0.17614, - 0.12331, - 0.02909, - -0.011328, - -0.056975, - -0.039273, - -0.070122, - 0.091257, - -0.017346, - -0.030978, - 0.099859, - -0.05368, - -0.049499, - -0.053843, - 0.085256, - -0.091602, - 0.039112, - 0.050619, - 0.012383, - 0.018664, - -0.022451, - 0.068105, - -0.10817, - -0.081611, - 0.087618, - 0.015593, - -0.1612, - 0.017238, - 0.05507, - 0.0035209, - -0.00045874, - 0.042085, - 0.08669, - -0.022265, - 0.011714, - 0.026494, - -0.072758, - 0.02197, - 0.030821, - -0.059638, - -0.025027, - 0.036176, - 0.088356, - -0.014445, - 0.024511, - 0.092751, - -0.11539, - 0.0068693, - 0.14117, - -0.085418, - 0.03719, - -0.00087342, - 0.012175, - -0.081251, - 0.13547, - 0.10969, - 0.10597, - 0.025586, - -0.081724, - -0.169, - -0.022203, - -0.12979, - -0.012699, - -0.0085405, - -0.050083, - -0.040965, - -0.087253, - 0.071542, - 0.018725, - -0.11164, - 0.0084554, - 0.075207, - -0.018536, - -0.11374 - ], - "autos": [ - 0.05776, - -0.018406, - 0.076095, - 0.02102, - -0.0066869, - 0.013198, - -0.12656, - -0.11672, - 0.14517, - -0.0057232, - 0.014201, - -0.019473, - 0.076908, - -0.0098716, - -0.046359, - 0.056177, - 0.043735, - 0.03268, - 0.087416, - -0.019732, - 0.012313, - 0.0203, - 0.026393, - 0.0125, - 0.071847, - -0.040259, - 0.038482, - -0.008993, - 0.11242, - 0.051951, - 0.050626, - 0.061014, - 0.077009, - 0.042217, - 0.08895, - -0.0037465, - -0.013199, - 0.19027, - 0.024893, - 0.063468, - -0.06817, - -0.13685, - -0.041802, - 0.027627, - 0.066614, - -0.069452, - -0.11562, - -0.048685, - -0.0085533, - -0.082233, - 0.090002, - -0.040096, - -0.013475, - 0.029997, - -0.10871, - -0.11188, - -0.0013485, - 0.054862, - -0.0028277, - 0.012667, - -0.024607, - -0.040664, - 0.15395, - 0.028217, - 0.14785, - -0.012385, - -0.046219, - -0.076745, - 0.068024, - 0.016004, - 0.033686, - -0.05274, - 0.13962, - -0.099739, - -0.039417, - 0.0024997, - -0.1714, - -0.026788, - 0.056996, - -0.066061, - 0.036817, - -0.087499, - -0.059455, - 0.0052509, - 0.038716, - -0.046379, - 0.014031, - -0.025, - 0.059333, - -0.054436, - 0.083705, - 0.0036772, - -0.12864, - -0.013092, - -0.035344, - 0.11617, - -0.080324, - -0.040794, - -0.17873, - -0.038131, - 0.062909, - -0.011934, - 0.028135, - -0.077422, - 0.10472, - -0.13551, - 0.04127, - -0.069473, - 0.060738, - -0.0051251, - 0.091728, - 0.12767, - 0.0039372, - 0.078189, - -0.0050229, - -0.043555, - -0.04758, - 0.029994, - -0.078521, - 0.043644, - -0.053072, - 0.11103, - -0.057989, - -0.089205, - 0.083031, - 0.0033498, - 0.051474, - 0.022205, - 0.068578, - 0.070014, - -0.0020369, - 0.051635, - 0.045338, - 0.068256, - 0.12043, - -0.027829, - 0.020763, - 0.0091021, - -0.022872, - 0.029707, - 0.0022054, - 0.088877, - 0.050554, - 0.15377, - -0.016868, - -0.042073, - -0.012438, - 0.033548, - 0.049837, - -0.11032, - 0.019177, - 0.059871, - 0.10188, - -0.050769, - 0.06573, - 0.0015096, - -0.026516, - 0.019591, - -0.038962, - 0.02208, - 0.042813, - 0.0073935, - 0.0047706, - -0.03532, - 0.13008, - -0.049126, - 0.085874, - -0.11194, - 0.14264, - 0.024784, - 0.057089, - -0.077334, - 0.11923, - 0.075705, - -0.053446, - 0.0387, - 0.0001411, - 0.11102, - -0.038395, - 0.063881, - 0.1581, - -0.075484, - -0.10507, - -0.072838, - 0.026525, - 0.0048634, - 0.0047411, - 0.11041, - -0.035113, - -0.0012978, - -0.087042, - 0.095369, - -0.053091, - 0.055788, - 0.099712, - 0.098939, - -0.11484, - -0.01955, - -0.059753, - 0.0033255, - -0.15089, - 0.1185, - -0.038757, - -0.10164, - 0.13483, - 0.084862, - -0.060169, - 0.038006, - 0.050946, - -0.076649, - 0.13912, - 0.015006, - -0.010307, - -0.030848, - 0.018758, - 0.03189, - -0.090305, - 0.026625, - -0.056605, - 0.025, - -0.012139, - -0.16655, - -0.0076399, - 0.1019, - 0.066001, - 0.023915, - -0.02309, - 0.083425, - -0.056959, - 0.025243, - -0.026345, - 0.019969, - -0.102, - -0.011093, - 0.061186, - -0.1448, - -0.045172, - -0.0092573, - 0.091596, - -0.10451, - 0.0018556, - 0.058391, - 0.055137, - -0.074503, - 0.018485, - -0.04423, - 0.10005, - -0.027988, - 0.039097, - 0.024175, - 0.033128, - -0.011518, - -0.11268, - 0.093796, - -0.10605, - -0.042369, - -0.018829, - -0.057927, - 0.074158, - -0.062369, - 0.022128, - 0.033814, - -0.096838, - -0.00073081, - 0.021233, - 0.13646, - 0.13511, - -0.024607, - 0.083665, - -0.063709, - -0.042085, - 0.1133, - -0.14195, - 0.031014, - -0.065356, - -0.02028, - -0.058511, - 0.074496, - 0.042431, - 0.022233, - 0.042249, - 0.076048, - -0.045485, - -0.016821, - -0.10069, - -0.017261, - -0.00048689, - 0.039791, - 0.0068169, - 0.12317, - 0.088703, - -0.079521, - 0.00045773, - 0.054717, - 0.070036, - 0.016171, - 0.056927, - -0.0089282, - 0.077144, - -0.058515 - ], - "caregiving": [ - 0.02194, - -0.045361, - -0.0079649, - 0.0076061, - 0.0067682, - 0.07928, - 0.0016596, - -0.063925, - 0.013726, - -0.0075804, - -0.022864, - -0.051984, - -0.052427, - -0.0065698, - -0.083538, - 0.017912, - 0.015634, - 0.036813, - 0.023254, - -0.071406, - -0.066756, - 0.055653, - -0.015979, - 0.065955, - 0.0096098, - 0.02928, - -0.018969, - 0.077524, - 0.013972, - -0.012149, - -0.00029323, - -0.014876, - -0.066585, - -0.06032, - 0.067034, - 0.032773, - -0.027167, - -0.073498, - 0.045344, - 0.016843, - -0.036088, - -0.063634, - 0.037126, - -0.03671, - 0.029555, - -0.016402, - -0.035268, - 0.035102, - -0.067461, - -0.092395, - -0.034212, - -0.000364, - 0.024824, - 0.11092, - -0.054539, - -0.071267, - -0.028029, - 0.011553, - 0.018703, - -0.022451, - -0.049938, - -0.10855, - 0.040392, - 0.027091, - -0.015639, - -0.035332, - -0.036041, - -0.0012262, - -0.053084, - -0.045673, - 0.025162, - 0.046919, - 0.044671, - -0.053246, - 0.042884, - 0.0046721, - -0.084985, - 0.0028498, - -0.009525, - -0.018318, - -0.039782, - -0.00085651, - 0.030535, - 0.021927, - 0.050934, - -0.011696, - 0.028304, - 0.011563, - -0.036852, - -0.036637, - 0.015705, - 0.088872, - -0.088193, - 0.009515, - -0.025769, - 0.024669, - 0.024586, - 0.072153, - 0.03518, - -0.056726, - 0.000066204, - -0.023478, - -0.023353, - -0.056104, - 0.02764, - -0.072473, - -0.015113, - 0.00025146, - -0.016424, - -0.10099, - -0.00044801, - 0.032789, - -0.0081613, - -0.0045989, - -0.0013794, - 0.034819, - 0.0015074, - -0.00075918, - -0.061033, - -0.045627, - -0.060469, - 0.02382, - 0.11249, - 0.023538, - 0.069941, - 0.021119, - -0.0062896, - -0.046228, - 0.12689, - 0.096432, - 0.015164, - -0.0070545, - -0.020937, - -0.031422, - -0.020862, - 0.015598, - -0.034114, - 0.031878, - 0.023668, - 0.060203, - 0.025407, - -0.0334, - 0.0054709, - 0.060262, - -0.024566, - 0.010796, - -0.0066631, - 0.03133, - 0.024955, - 0.025194, - 0.021705, - 0.035566, - -0.027151, - -0.091354, - 0.011537, - 0.066069, - 0.012646, - 0.022394, - 0.12203, - -0.061039, - 0.068153, - 0.05086, - -0.056555, - -0.030662, - -0.047305, - 0.012961, - 0.010888, - -0.032524, - -0.01282, - -0.082377, - 0.003488, - 0.029566, - -0.039691, - 0.044599, - 0.016212, - 0.065703, - 0.013811, - 0.018564, - -0.032781, - -0.03616, - -0.017934, - -0.014463, - -0.015238, - 0.040898, - -0.086332, - -0.095726, - 0.061356, - 0.095088, - 0.002805, - 0.0048615, - 0.0086646, - 0.0079733, - -0.01403, - -0.035707, - 0.0079918, - 0.033613, - 0.01476, - 0.032376, - -0.032668, - -0.036199, - -0.14707, - 0.020093, - -0.019792, - -0.041777, - 0.040011, - 0.00080176, - -0.027236, - -0.004303, - 0.012765, - 0.020825, - 0.040002, - -0.018494, - -0.023931, - 0.020198, - -0.04212, - 0.067522, - -0.017331, - 0.0086844, - -0.058623, - -0.0058483, - 0.027013, - -0.044131, - 0.017903, - 0.089985, - -0.053297, - -0.051061, - 0.014151, - 0.081879, - 0.003007, - -0.014814, - -0.003021, - -0.045387, - -0.050837, - -0.0034479, - 0.0025234, - 0.080204, - -0.014002, - 0.035139, - 0.021538, - -0.012029, - 0.033115, - 0.081424, - 0.017686, - -0.044348, - -0.07052, - -0.035055, - 0.0062545, - -0.054311, - 0.059107, - -0.0038977, - 0.00030172, - 0.088063, - 0.00035971, - -0.040651, - 0.0024736, - -0.0033433, - 0.032693, - 0.020767, - -0.0015082, - -0.053064, - -0.0025803, - -0.041954, - -0.0092776, - 0.068525, - 0.049333, - 0.038044, - 0.0077767, - -0.011065, - 0.011766, - 0.058425, - -0.0051729, - 0.03136, - -0.10075, - -0.024073, - -0.0070433, - -0.0064293, - -0.044832, - -0.00024955, - 0.061173, - 0.11473, - 0.045157, - 0.00053549, - 0.023775, - -0.029214, - 0.0013548, - 0.050259, - -0.029573, - 0.040701, - -0.06929, - -0.019338, - 0.065932, - 0.028626, - -0.011075, - -0.024333, - 0.071875, - 0.04429, - 0.050019, - 0.080567, - 0.037148, - 0.052385 - ], - "clubs": [ - 0.14061, - -0.096468, - 0.058491, - -0.090045, - -0.078037, - -0.063658, - -0.0043712, - -0.065908, - 0.082623, - 0.03568, - 0.045639, - -0.14957, - 0.0024052, - -0.09664, - 0.036942, - 0.13878, - 0.14074, - -0.019056, - 0.073572, - -0.0058012, - 0.06999, - -0.050821, - -0.098671, - 0.17191, - -0.043128, - -0.025085, - 0.054502, - -0.09924, - 0.072685, - -0.036878, - -0.0055039, - -0.098303, - 0.045704, - -0.026228, - 0.037321, - 0.07539, - 0.041864, - -0.0066446, - -0.052608, - 0.0062682, - 0.073711, - -0.14745, - 0.00046905, - 0.075418, - 0.041203, - -0.014351, - 0.024958, - -0.0025109, - 0.0079703, - -0.042144, - -0.025266, - 0.10197, - 0.094075, - -0.035604, - -0.11457, - 0.054735, - 0.050654, - 0.048184, - -0.082908, - 0.049109, - 0.06829, - -0.09176, - 0.13828, - 0.015862, - 0.10113, - -0.056459, - -0.040332, - -0.030292, - 0.064758, - -0.026506, - -0.019443, - -0.049993, - 0.1209, - 0.000072179, - 0.099264, - 0.00094168, - -0.024894, - -0.056286, - -0.14163, - 0.0092144, - -0.052088, - -0.009, - -0.13081, - 0.13937, - -0.060606, - -0.10152, - -0.027738, - -0.072576, - 0.041305, - -0.020698, - -0.027419, - 0.061783, - -0.16147, - 0.028709, - 0.12448, - 0.093292, - -0.064659, - 0.060976, - -0.049746, - 0.019743, - 0.024797, - 0.1174, - 0.004258, - -0.0052228, - 0.11983, - -0.086257, - -0.055867, - -0.0084944, - 0.026301, - 0.052769, - -0.044143, - 0.14595, - 0.13369, - 0.076596, - 0.082698, - -0.012771, - 0.12145, - -0.046954, - -0.0555, - 0.059153, - -0.017409, - -0.0052611, - -0.041725, - -0.069717, - 0.10508, - -0.11238, - -0.091695, - -0.097925, - -0.019584, - 0.10535, - 0.022337, - 0.22038, - -0.011598, - -0.015035, - -0.086158, - -0.0018086, - 0.0023882, - 0.044195, - -0.080482, - -0.065923, - -0.0023561, - 0.10484, - 0.012479, - -0.0041566, - 0.048393, - 0.026749, - 0.057487, - -0.095201, - -0.033178, - 0.017999, - 0.054859, - 0.12342, - -0.048718, - -0.040636, - -0.012417, - -0.032271, - -0.020096, - 0.10199, - 0.075889, - 0.061615, - -0.020323, - -0.027541, - 0.052104, - 0.072841, - 0.036505, - 0.1144, - 0.1108, - 0.10735, - 0.0096547, - -0.018023, - 0.17796, - -0.010933, - 0.06873, - 0.072458, - -0.0079648, - 0.07955, - -0.1232, - 0.056685, - -0.0065208, - -0.096725, - 0.044289, - 0.072486, - 0.055439, - -0.016129, - -0.0058862, - -0.032929, - -0.083196, - 0.098838, - 0.070991, - 0.026487, - -0.06165, - 0.096441, - -0.16051, - -0.063409, - 0.14553, - 0.039979, - 0.018727, - -0.037304, - 0.070909, - -0.000075506, - -0.20789, - 0.056819, - 0.039886, - 0.074828, - 0.030157, - -0.10298, - -0.073637, - -0.029723, - -0.04639, - -0.052122, - 0.13874, - -0.043142, - 0.069472, - 0.036417, - -0.080292, - -0.075398, - -0.033255, - 0.001464, - -0.0093453, - -0.0084325, - 0.096892, - -0.063092, - -0.020517, - 0.13052, - 0.011114, - -0.020333, - -0.049089, - 0.097518, - 0.048829, - -0.050953, - 0.0082535, - 0.047312, - -0.10697, - -0.005335, - -0.016413, - 0.01465, - -0.028424, - 0.070235, - -0.048735, - 0.058784, - -0.050106, - -0.028954, - 0.022884, - -0.011187, - 0.06152, - 0.032847, - -0.10243, - 0.0094586, - -0.029689, - -0.072412, - -0.027168, - 0.017245, - -0.033265, - -0.053473, - -0.084809, - 0.020807, - -0.050548, - 0.0037186, - 0.057213, - 0.091741, - 0.056032, - 0.081628, - 0.036286, - -0.062051, - 0.0069749, - 0.066848, - -0.030244, - 0.011958, - 0.05061, - 0.06624, - 0.033537, - 0.12877, - -0.16167, - -0.04007, - 0.037141, - -0.010716, - -0.03634, - -0.032128, - -0.065703, - 0.016092, - 0.033466, - 0.058982, - 0.0073552, - -0.10811, - 0.0019572, - 0.01307, - -0.015043, - -0.071217, - -0.070577, - -0.033855, - 0.18769, - 0.053981, - -0.070871, - -0.046373, - -0.087185, - 0.039114, - -0.034816, - 0.065175, - 0.064586, - -0.017227 - ], - "familial": [ - -0.016453, - 0.017609, - 0.052682, - -0.020594, - -0.07044, - 0.0074913, - -0.035205, - -0.065203, - 0.0533, - 0.032791, - -0.0094282, - -0.086308, - 0.011909, - -0.042316, - -0.063268, - 0.036261, - 0.05118, - -0.0065378, - 0.036909, - 0.017402, - -0.0021924, - 0.031929, - 0.017116, - 0.11476, - 0.047187, - -0.00029949, - -0.027472, - 0.057421, - 0.057641, - 0.014572, - 0.016964, - 0.00018448, - -0.044103, - -0.082964, - 0.04823, - 0.048866, - -0.060314, - 0.0072673, - 0.059138, - 0.024408, - -0.0075182, - -0.090148, - 0.037035, - -0.0050883, - 0.015332, - -0.057402, - 0.0034877, - 0.0011565, - -0.018229, - -0.10469, - 0.060681, - -0.0083521, - -0.029928, - 0.0023489, - 0.023883, - -0.076526, - 0.012118, - -0.047741, - 0.0014411, - 0.010149, - 0.00095527, - -0.016871, - 0.079183, - -0.0038829, - 0.076785, - -0.068975, - -0.03652, - 0.013702, - -0.020003, - -0.050263, - 0.058473, - 0.00088693, - 0.026941, - -0.048902, - -0.020894, - 0.026156, - 0.018529, - -0.026535, - 0.059831, - -0.032801, - -0.051105, - 0.017228, - -0.034014, - 0.044944, - -0.040057, - -0.04691, - 0.02648, - 0.012821, - -0.047066, - 0.057906, - -0.00010771, - 0.077428, - -0.068108, - -0.0052011, - 0.0080104, - 0.04903, - -0.022474, - 0.021523, - 0.074216, - -0.011292, - 0.054979, - -0.062068, - -0.052876, - -0.1271, - 0.099446, - -0.039284, - -0.057058, - -0.038527, - -0.032559, - 0.0023303, - 0.029965, - 0.045586, - 0.039831, - 0.016975, - -0.035352, - 0.028798, - -0.0023968, - -0.01416, - -0.022002, - -0.022615, - 0.0058084, - -0.027929, - 0.097736, - 0.013111, - 0.095303, - 0.0128, - 0.096155, - -0.018428, - 0.034648, - 0.069931, - 0.059345, - -0.046149, - 0.033656, - -0.014413, - -0.075813, - 0.064357, - 0.0083057, - 0.05382, - 0.041275, - -0.0418, - 0.055347, - -0.011414, - -0.053639, - 0.049494, - -0.038883, - 0.0080159, - -0.0045925, - 0.012621, - -0.031702, - 0.016991, - 0.04051, - 0.1809, - 0.069454, - 0.0042535, - 0.074186, - 0.057667, - 0.046284, - 0.041593, - 0.048425, - 0.013154, - 0.032772, - -0.057495, - -0.12354, - -0.019962, - -0.057716, - 0.10761, - 0.04186, - 0.042816, - -0.047986, - -0.06269, - -0.010701, - -0.04645, - -0.012536, - 0.0055645, - -0.038217, - 0.081649, - 0.076312, - 0.044388, - -0.026406, - -0.069698, - 0.013968, - -0.053296, - 0.01731, - 0.048314, - 0.024812, - -0.047021, - -0.034916, - 0.13956, - 0.060522, - -0.013392, - -0.013832, - -0.01933, - 0.071518, - 0.030443, - -0.10002, - 0.040719, - 0.022777, - 0.093445, - 0.037409, - 0.05494, - -0.14586, - -0.0073424, - -0.035992, - -0.054396, - -0.036661, - 0.030342, - -0.018319, - 0.0013435, - -0.032771, - 0.020804, - 0.14061, - -0.0082406, - -0.018294, - -0.002962, - 0.069939, - 0.073181, - -0.081402, - 0.042611, - -0.056243, - -0.039526, - 0.039532, - -0.055124, - -0.032137, - 0.073425, - 0.03076, - 0.027595, - 0.051523, - 0.065395, - -0.011056, - -0.066594, - -0.010607, - -0.019114, - -0.11563, - 0.0010221, - -0.0374, - 0.087305, - -0.0065314, - 0.03688, - -0.0092515, - -0.0088579, - 0.045418, - -0.023625, - -0.063387, - 0.031217, - -0.17724, - -0.0038811, - -0.046791, - -0.022027, - -0.041192, - -0.043519, - -0.038886, - 0.0046799, - -0.00018961, - 0.019178, - -0.01748, - 0.03159, - 0.0020832, - -0.010295, - 0.046665, - -0.061459, - 0.0010594, - -0.046391, - 0.015423, - -0.0020358, - 0.10111, - -0.019285, - 0.016839, - 0.091437, - 0.0070137, - -0.010467, - -0.027562, - 0.078528, - -0.076882, - -0.027202, - 0.084393, - -0.11517, - -0.013446, - 0.0053969, - -0.030281, - 0.099877, - 0.16014, - 0.0040262, - 0.019466, - -0.027894, - -0.0036246, - 0.053531, - -0.037125, - 0.025408, - -0.049288, - -0.034794, - 0.10882, - 0.058086, - -0.006229, - -0.010578, - 0.02075, - 0.044222, - 0.059735, - 0.029528, - -0.018403, - -0.00016966 - ], - "Sports": [ - 0.095132, - -0.055577, - 0.081425, - -0.035195, - 0.017797, - -0.11603, - -0.042468, - -0.054172, - 0.066957, - -0.0015475, - -0.033865, - -0.091906, - -0.0022635, - 0.020908, - 0.098089, - 0.0025021, - 0.065183, - 0.023399, - 0.098519, - -0.0014825, - 0.0090614, - -0.053806, - 0.072568, - 0.035063, - 0.032455, - -0.070905, - 0.02895, - -0.047258, - 0.11228, - 0.017865, - 0.034938, - -0.030022, - 0.06582, - 0.038153, - 0.15248, - 0.031351, - 0.031198, - 0.012722, - 0.04008, - 0.033259, - 0.077201, - 0.11469, - -0.029413, - 0.063546, - 0.06082, - -0.0095292, - 0.071862, - 0.0092413, - -0.030815, - -0.02248, - -0.023694, - -0.043553, - 0.031315, - 0.0037297, - -0.043791, - 0.023382, - -0.00079328, - -0.054268, - -0.14337, - 0.05356, - 0.026527, - 0.016003, - -0.099513, - 0.030591, - 0.097245, - -0.034405, - -0.0071774, - 0.0012068, - 0.057975, - 0.028096, - 0.0028139, - -0.064102, - -0.0094155, - 0.092527, - 0.022389, - 0.057607, - -0.016549, - -0.13567, - -0.11107, - -0.079264, - -0.029952, - 0.014763, - 0.019264, - 0.012457, - 0.060071, - -0.054033, - -0.080027, - -0.11592, - 0.025456, - -0.035853, - 0.07391, - -0.068684, - -0.066458, - 0.048774, - -0.018253, - 0.2217, - -0.002554, - -0.0017198, - 0.0098743, - -0.012387, - 0.032972, - 0.071686, - -0.028929, - -0.046441, - -0.015376, - -0.17185, - -0.068087, - 0.068284, - 0.029459, - -0.0077109, - -0.031821, - 0.092505, - 0.069705, - 0.060371, - 0.10141, - -0.048139, - -0.026822, - 0.061337, - 0.1393, - 0.028629, - 0.1035, - 0.099852, - -0.026355, - -0.040277, - 0.11049, - -0.015563, - -0.091307, - -0.081964, - 0.060557, - 0.29131, - 0.024337, - 0.089339, - 0.065549, - -0.055552, - -0.041034, - 0.047291, - 0.024691, - -0.056456, - -0.064672, - -0.069557, - 0.029072, - -0.023142, - 0.051938, - -0.057537, - -0.041197, - 0.034755, - -0.035594, - -0.10513, - 0.0065034, - 0.0036787, - 0.058598, - 0.11269, - -0.0085173, - -0.038185, - -0.052783, - 0.06133, - 0.030021, - 0.057875, - 0.095598, - 0.020741, - 0.00096655, - -0.02216, - -0.091938, - 0.06489, - 0.0073865, - 0.0099642, - 0.026104, - -0.0045352, - -0.078598, - -0.10167, - 0.082697, - -0.021544, - 0.10406, - 0.045644, - 0.067578, - 0.0028443, - -0.047651, - -0.025, - -0.026162, - -0.021035, - -0.079216, - -0.08222, - 0.021919, - 0.031978, - 0.014683, - 0.24472, - -0.013966, - 0.18669, - 0.053557, - -0.008404, - -0.018681, - 0.14984, - -0.08408, - -0.031813, - 0.029545, - -0.03511, - -0.0070266, - -0.024476, - 0.097365, - 0.020494, - 0.024223, - 0.17041, - 0.011287, - -0.097802, - -0.008697, - 0.0078412, - 0.011027, - 0.0090882, - -0.023854, - 0.034991, - 0.20019, - 0.015956, - 0.0055452, - -0.013752, - 0.0071469, - 0.022844, - -0.11986, - 0.003992, - -0.017079, - 0.093867, - -0.029213, - -0.0052485, - -0.067227, - 0.13295, - 0.007947, - -0.017154, - -0.013607, - 0.023788, - -0.054248, - 0.012314, - -0.004819, - -0.035859, - 0.015039, - 0.017682, - -0.0055464, - 0.07639, - -0.086555, - 0.0058829, - -0.0087335, - -0.07161, - -0.0073132, - -0.030983, - 0.033057, - 0.0057888, - 0.18729, - 0.037141, - -0.030648, - -0.021195, - -0.016988, - -0.061237, - 0.0021924, - 0.024201, - 0.040483, - 0.029649, - -0.087305, - -0.009751, - -0.096174, - 0.0013875, - 0.12868, - 0.086012, - -0.0056769, - -0.025812, - 0.058959, - -0.013907, - 0.028726, - 0.047675, - 0.032741, - -0.035598, - 0.13672, - -0.032405, - 0.0070511, - 0.13333, - -0.067065, - 0.034473, - -0.077747, - -0.096179, - -0.080395, - 0.010987, - -0.05826, - -0.01927, - -0.025781, - 0.0090027, - 0.020239, - 0.022745, - 0.086217, - 0.058357, - -0.039326, - -0.015909, - -0.047976, - 0.0086564, - 0.11766, - -0.045523, - 0.00084676, - 0.013996, - 0.016611, - -0.020826, - -0.047813, - 0.032792, - 0.08035, - -0.07146 - ], - "gerbils": [ - 0.054197, - -0.028365, - -0.02269, - -0.01498, - -0.004204, - 0.033864, - 0.0048137, - -0.021706, - -0.0017805, - -0.0044241, - -0.0409, - 0.0097568, - 0.056723, - -0.048535, - -0.032837, - -0.030722, - 0.053058, - 0.021575, - 0.01977, - -0.0092697, - 0.052991, - -0.0022494, - 0.036693, - 0.01351, - 0.091729, - -0.044317, - -0.017931, - -0.034286, - 0.088113, - -0.023938, - 0.064286, - -0.059368, - 0.041599, - 0.09369, - 0.02072, - -0.000608, - 0.031306, - -0.12898, - 0.035016, - 0.027487, - -0.019773, - -0.05344, - -0.13462, - -0.014969, - -0.0071197, - -0.046512, - 0.0080078, - -0.017671, - 0.0085812, - 0.016394, - 0.022616, - 0.028774, - -0.01509, - -0.091344, - -0.038793, - 0.022603, - -0.029303, - -0.0064695, - -0.068362, - 0.017379, - -0.093535, - 0.019802, - 0.076633, - 0.038795, - 0.045125, - 0.049521, - 0.0090192, - -0.041007, - -0.057177, - -0.012038, - -0.0058361, - 0.033843, - 0.1071, - -0.0040908, - 0.0066876, - 0.12292, - 0.013165, - -0.066913, - -0.08101, - -0.0075956, - 0.044357, - -0.028417, - -0.0096477, - 0.046092, - 0.052226, - -0.045148, - 0.014705, - -0.01089, - 0.050589, - 0.029607, - -0.030414, - -0.02518, - -0.051508, - 0.02776, - 0.072859, - 0.084227, - 0.041913, - 0.089223, - 0.01283, - 0.015016, - 0.029331, - 0.0083387, - -0.074522, - 0.0092641, - 0.024649, - -0.11689, - -0.058067, - -0.12329, - 0.018547, - 0.04187, - -0.072661, - 0.079005, - 0.011517, - 0.073653, - 0.014468, - -0.052472, - 0.053122, - -0.026273, - -0.072068, - -0.050663, - 0.072914, - 0.11612, - 0.027839, - -0.069231, - 0.069333, - 0.056374, - 0.032934, - -0.013702, - -0.021107, - 0.061916, - 0.021409, - 0.092948, - -0.048534, - 0.0059405, - 0.099089, - 0.03629, - -0.059462, - 0.053929, - 0.018318, - -0.015245, - 0.03284, - -0.021978, - 0.0042646, - 0.031838, - 0.054041, - -0.095197, - -0.025862, - -0.053682, - -0.039946, - -0.11201, - 0.041578, - 0.07796, - 0.015323, - 0.098726, - -0.04059, - -0.068679, - -0.01155, - -0.067871, - 0.064291, - -0.07083, - 0.04007, - 0.0050347, - 0.018351, - 0.0012381, - 0.03307, - -0.034426, - -0.055797, - 0.025537, - -0.0053035, - -0.063095, - -0.0039074, - 0.016073, - -0.019936, - 0.098468, - -0.065837, - 0.070704, - 0.043817, - 0.028615, - 0.020966, - 0.033593, - 0.060223, - 0.10156, - -0.071757, - -0.022704, - 0.021344, - 0.023543, - 0.054389, - 0.11826, - -0.0050466, - 0.049335, - -0.0035058, - 0.051441, - -0.13961, - 0.0059907, - -0.041058, - 0.090228, - 0.050793, - 0.066828, - 0.044656, - 0.0401, - -0.07522, - 0.021105, - -0.021604, - -0.034043, - -0.020251, - -0.0067644, - -0.030938, - -0.0024209, - -0.029482, - -0.052862, - 0.079535, - 0.0098578, - 0.055895, - 0.0004265, - 0.026641, - -0.012581, - -0.04077, - -0.034155, - 0.016691, - 0.038512, - 0.019163, - 0.070848, - 0.029371, - 0.043331, - -0.011561, - 0.040126, - 0.041162, - 0.090622, - -0.090903, - -0.0055323, - -0.060614, - 0.01357, - -0.099628, - -0.0037609, - 0.086834, - 0.031285, - 0.096352, - -0.0023548, - -0.078349, - 0.017768, - 0.029025, - -0.0173, - 0.01978, - -0.063028, - 0.00547, - 0.099918, - 0.078935, - 0.032648, - -0.0014241, - 0.0013978, - -0.024883, - 0.063505, - -0.05592, - -0.049911, - -0.037433, - -0.00342, - 0.046316, - -0.067926, - -0.027047, - -0.061555, - -0.029589, - -0.072776, - 0.039914, - -0.03896, - -0.016202, - 0.01604, - -0.00048707, - -0.0098676, - 0.044154, - 0.10735, - -0.057148, - 0.064856, - -0.086464, - 0.012194, - 0.019294, - -0.021572, - -0.0081485, - -0.050432, - -0.082919, - -0.12264, - -0.036928, - -0.0095511, - 0.086946, - -0.0043845, - -0.10818, - 0.055205, - 0.017145, - -0.050218, - -0.041735, - 0.031229, - -0.050081, - -0.014108, - -0.060105, - -0.095583, - 0.02244, - -0.034322, - 0.020223, - 0.047785, - -0.075609, - 0.086977 - ], - "drugmaker": [ - -0.066433, - -0.020611, - -0.0065961, - -0.0072223, - -0.000991, - 0.0026909, - -0.022715, - -0.096442, - 0.024945, - -0.027444, - -0.041653, - 0.0072764, - 0.069313, - 0.017328, - -0.055508, - 0.036578, - 0.090169, - -0.024072, - 0.079589, - -0.021136, - 0.058798, - -0.016301, - 0.048792, - 0.031043, - -0.0013763, - -0.068448, - 0.06609, - 0.05572, - -0.0014355, - 0.033292, - 0.018071, - -0.0071822, - -0.093673, - 0.015373, - -0.043082, - 0.033973, - -0.024996, - -0.065139, - 0.099749, - 0.05926, - -0.065229, - -0.083746, - -0.029064, - -0.015237, - 0.10449, - 0.028693, - 0.0029891, - 0.063703, - 0.033228, - 0.0074796, - -0.039647, - 0.011297, - -0.056871, - -0.01982, - -0.019596, - -0.040669, - 0.021772, - 0.058915, - 0.044519, - 0.038513, - -0.051494, - 0.01382, - 0.029666, - 0.060712, - -0.013451, - -0.026685, - 0.03525, - -0.022433, - 0.040113, - 0.022199, - -0.061886, - 0.065679, - 0.067224, - 0.016073, - -0.073696, - 0.036526, - 0.022832, - -0.0083522, - -0.045649, - -0.10249, - 0.0040451, - 0.073382, - -0.10304, - 0.0065232, - -0.090497, - 0.049825, - 0.052569, - -0.021128, - 0.038422, - -0.048187, - 0.013398, - 0.050232, - -0.11329, - -0.063696, - -0.043311, - 0.070806, - 0.063277, - -0.016616, - 0.021383, - 0.053588, - -0.058095, - 0.029478, - 0.0033033, - -0.011998, - -0.045751, - -0.10123, - -0.027661, - -0.022889, - 0.033966, - 0.098732, - -0.014851, - 0.095133, - 0.021166, - 0.033842, - -0.0028444, - 0.0085373, - 0.034012, - -0.065452, - -0.021372, - 0.0059263, - 0.028387, - -0.024685, - -0.013848, - -0.029328, - 0.069053, - 0.0090807, - -0.0099618, - -0.085282, - 0.026274, - 0.091199, - -0.016526, - 0.059891, - -0.11167, - -0.023652, - 0.081207, - -0.043563, - 0.073977, - 0.04985, - -0.038928, - 0.019828, - 0.036798, - 0.036036, - -0.037277, - 0.030144, - -0.074291, - -0.084774, - 0.013403, - 0.031996, - 0.05862, - -0.081262, - 0.07238, - 0.066497, - 0.10489, - -0.034043, - 0.048252, - 0.016364, - 0.025932, - -0.047252, - 0.15628, - 0.027015, - 0.049289, - 0.03702, - -0.018347, - -0.051629, - 0.034722, - 0.068757, - -0.088325, - -0.059775, - -0.050917, - -0.057366, - -0.039325, - -0.061181, - -0.027213, - -0.013231, - 0.0022692, - 0.013812, - -0.060194, - -0.10861, - -0.082328, - -0.0089428, - 0.0016907, - -0.054127, - -0.06893, - 0.026128, - -0.0013446, - -0.10261, - 0.057463, - 0.10848, - -0.0065893, - 0.011264, - -0.048035, - 0.07137, - -0.0122, - -0.023415, - -0.018249, - -0.0053423, - -0.093608, - 0.087578, - 0.013888, - -0.036206, - -0.12112, - 0.030279, - 0.010448, - -0.0331, - 0.036239, - -0.011574, - -0.029649, - -0.018904, - 0.024768, - -0.020535, - 0.064109, - 0.037143, - -0.0039044, - 0.02594, - -0.058157, - -0.031362, - 0.0079105, - 0.024981, - 0.028269, - 0.040411, - -0.0080483, - 0.016799, - -0.00849, - 0.10966, - 0.0059672, - 0.02908, - -0.02515, - 0.012301, - 0.061006, - -0.024299, - -0.020126, - -0.041373, - -0.010722, - -0.02683, - 0.040446, - 0.0009113, - -0.10242, - -0.077893, - 0.050956, - -0.0017046, - 0.079019, - 0.016321, - -0.018763, - 0.043032, - 0.033324, - 0.020042, - -0.039537, - 0.024463, - 0.0080989, - -0.027232, - -0.066679, - -0.042583, - 0.031866, - -0.018352, - 0.0037937, - 0.018869, - -0.04602, - -0.01097, - 0.017752, - 0.010653, - 0.01732, - 0.079549, - 0.01453, - 0.0078827, - -0.039783, - 0.013791, - -0.037394, - 0.03635, - -0.035766, - 0.025527, - -0.00058892, - 0.059009, - -0.1703, - 0.0093243, - -0.007183, - -0.017753, - 0.020234, - -0.049335, - -0.078801, - 0.0074213, - 0.073862, - -0.059175, - -0.11772, - 0.023687, - -0.050689, - 0.04992, - 0.0099555, - -0.058182, - 0.013639, - -0.061348, - 0.026605, - -0.0079707, - 0.05318, - 0.038544, - -0.058721, - -0.051729, - -0.032959, - 0.033143, - -0.016937, - -0.043136 - ], - "dogs": [ - -0.050104, - -0.049336, - 0.065879, - -0.12203, - -0.045255, - 0.054721, - 0.025455, - -0.11573, - 0.055719, - 0.082787, - -0.031608, - -0.04109, - 0.11729, - -0.088729, - -0.0048487, - -0.058816, - 0.11846, - 0.014966, - 0.065502, - -0.03605, - 0.071657, - -0.14048, - 0.068875, - 0.061518, - 0.10561, - 0.10565, - 0.051893, - 0.01725, - 0.16566, - -0.00090256, - -0.088987, - -0.0062101, - 0.058253, - 0.061316, - 0.034871, - -0.0052487, - 0.051121, - -0.18713, - 0.020857, - -0.073636, - -0.089034, - -0.085452, - 0.072875, - 0.012709, - 0.10618, - -0.01117, - 0.011298, - 0.036607, - 0.0097043, - -0.072606, - 0.04568, - 0.13821, - 0.064417, - -0.13975, - -0.1275, - -0.017779, - 0.039404, - -0.0060559, - -0.085311, - -0.067305, - 0.072138, - -0.17025, - 0.14325, - 0.01634, - 0.014099, - 0.043948, - -0.021406, - -0.037204, - -0.0061838, - -0.073954, - -0.017439, - -0.062487, - 0.16124, - -0.085871, - -0.023707, - 0.13733, - -0.074505, - -0.063981, - -0.073711, - -0.015859, - -0.017009, - -0.041163, - 0.026616, - 0.082009, - 0.074905, - -0.072375, - 0.01817, - -0.04277, - 0.062014, - -0.0036015, - -0.0048967, - -0.0020731, - -0.13141, - 0.020091, - 0.14856, - 0.079727, - -0.07095, - 0.18775, - 0.084744, - 0.098145, - 0.030563, - 0.0027952, - 0.017226, - -0.030223, - 0.066031, - -0.13294, - -0.068611, - 0.023043, - 0.0086423, - -0.051604, - -0.034661, - 0.13704, - 0.079396, - 0.068782, - 0.0052776, - 0.014404, - 0.0014072, - 0.0051806, - -0.0817, - 0.095918, - -0.012637, - 0.098818, - 0.056892, - -0.16591, - 0.13277, - 0.04423, - -0.031325, - -0.15379, - -0.041812, - 0.083986, - 0.10566, - 0.16363, - -0.037061, - 0.067739, - 0.074005, - -0.078459, - -0.05964, - 0.0649, - 0.035949, - -0.036875, - -0.11702, - -0.080634, - -0.078984, - -0.051694, - 0.015332, - -0.077147, - 0.0077983, - -0.036211, - 0.037065, - -0.1827, - 0.071098, - 0.11808, - 0.022431, - 0.011843, - -0.018726, - -0.01964, - -0.087767, - -0.0089683, - -0.04329, - -0.042912, - 0.050633, - -0.072872, - 0.05631, - -0.014031, - 0.053685, - -0.039942, - 0.0097471, - 0.069685, - -0.032984, - -0.022163, - 0.0061802, - -0.024162, - 0.072507, - -0.0418, - 0.0024512, - 0.073936, - -0.020424, - 0.10542, - 0.0037201, - -0.08953, - 0.1115, - -0.12336, - -0.039771, - -0.054962, - -0.030939, - -0.10348, - 0.12776, - 0.1615, - -0.011739, - -0.008689, - -0.021096, - 0.069316, - -0.18412, - -0.11757, - -0.0079813, - 0.13918, - 0.021476, - 0.12708, - 0.037207, - 0.063802, - -0.16383, - 0.16707, - -0.050448, - -0.065853, - 0.060686, - -0.16917, - 0.025965, - -0.023053, - -0.10346, - -0.099514, - 0.11704, - -0.018286, - 0.12807, - -0.045327, - 0.015057, - -0.042821, - 0.009707, - -0.11981, - -0.052584, - -0.072481, - -0.020209, - -0.075366, - 0.05991, - 0.14978, - 0.072297, - 0.046579, - -0.078473, - 0.055449, - -0.071467, - -0.051417, - -0.088037, - -0.019339, - -0.11515, - -0.12648, - 0.046623, - -0.0064303, - 0.055013, - 0.002519, - -0.028568, - -0.031964, - -0.050347, - 0.044809, - 0.13689, - -0.075907, - 0.057679, - 0.14142, - 0.05245, - -0.010152, - 0.011631, - -0.0071859, - 0.0071918, - 0.035367, - -0.052105, - 0.018388, - -0.0081137, - -0.016512, - 0.077123, - -0.044811, - 0.10807, - -0.015175, - -0.040225, - -0.005985, - 0.071711, - -0.06812, - 0.055904, - -0.040301, - 0.014201, - 0.010807, - -0.011868, - 0.027585, - -0.06608, - 0.13842, - -0.15436, - -0.070965, - 0.016545, - -0.051425, - -0.033029, - 0.030898, - 0.041543, - -0.070945, - 0.026629, - 0.063806, - 0.023207, - 0.05943, - -0.023734, - 0.052484, - 0.016314, - -0.026767, - 0.016329, - 0.025813, - 0.070684, - -0.063185, - -0.20759, - -0.10621, - -0.024315, - -0.016202, - 0.0092119, - 0.12222, - -0.025968, - 0.16124 - ], - "estate": [ - 0.071536, - -0.081235, - 0.019791, - 0.057148, - 0.0065514, - 0.085104, - -0.030224, - -0.069133, - 0.037608, - -0.025759, - -0.04386, - -0.065498, - 0.035996, - -0.0216, - -0.030998, - 0.016135, - 0.063368, - -0.016183, - 0.048526, - 0.045513, - -0.068676, - -0.066918, - 0.0068263, - 0.026704, - 0.059297, - -0.048727, - -0.051755, - 0.07418, - -0.061673, - -0.0013869, - 0.014249, - -0.027739, - -0.050011, - 0.0013111, - 0.0014786, - 0.045545, - -0.11763, - -0.0645, - -0.021581, - 0.10664, - 0.027825, - -0.073627, - 0.044761, - 0.00059405, - -0.074384, - -0.027406, - -0.020131, - 0.036048, - -0.044097, - 0.0098813, - -0.029538, - -0.0015529, - -0.052712, - 0.024136, - -0.044077, - -0.064565, - -0.17579, - -0.01203, - -0.03446, - -0.14005, - 0.067043, - 0.025534, - 0.15192, - 0.090083, - 0.021279, - -0.0041865, - -0.023606, - -0.093668, - -0.038565, - -0.043427, - 0.045093, - -0.081248, - 0.022054, - 0.044058, - -0.050284, - 0.0052525, - -0.097526, - 0.0000072479, - 0.045064, - -0.073306, - 0.0055589, - 0.026424, - -0.00056708, - 0.037222, - -0.069779, - -0.0026893, - -0.0064259, - -0.038107, - 0.04033, - 0.027963, - -0.024492, - 0.051286, - -0.093412, - -0.031535, - 0.0057076, - 0.095532, - -0.079881, - 0.037554, - 0.056054, - 0.032031, - -0.0096052, - 0.029904, - 0.0029488, - 0.0033294, - 0.067601, - -0.1345, - 0.026365, - 0.0048345, - -0.011726, - 0.0092692, - -0.14151, - 0.12312, - 0.091004, - 0.064688, - 0.068918, - -0.012823, - -0.0021157, - -0.090288, - -0.0090235, - -0.039147, - 0.00024548, - -0.029553, - 0.04754, - 0.023769, - 0.070774, - 0.038923, - 0.015266, - -0.10825, - -0.017936, - 0.10744, - 0.084947, - -0.042325, - 0.012953, - 0.019813, - -0.005328, - 0.021151, - 0.0013934, - 0.043431, - -0.047969, - -0.038541, - -0.051716, - -0.067663, - -0.0018921, - 0.09066, - -0.0086011, - -0.023483, - 0.045076, - 0.044415, - -0.086628, - -0.0070395, - -0.0034052, - 0.036631, - 0.089115, - -0.070979, - 0.018796, - -0.0017752, - 0.033428, - 0.075298, - -0.0012576, - -0.0078013, - 0.011382, - -0.016503, - -0.071759, - 0.041798, - -0.004444, - 0.012532, - -0.012399, - -0.02579, - 0.019359, - 0.044384, - 0.02423, - -0.071488, - -0.01646, - -0.017213, - -0.10462, - 0.042327, - -0.01191, - -0.02348, - -0.070656, - 0.060622, - 0.095091, - -0.070117, - 0.019016, - -0.019806, - -0.06141, - -0.043379, - -0.034462, - 0.12386, - 0.087568, - -0.02976, - -0.037318, - 0.093185, - 0.025943, - 0.068394, - -0.0067871, - -0.062726, - 0.029048, - 0.10606, - -0.0052135, - 0.053491, - -0.13623, - 0.11468, - -0.0056198, - -0.046154, - 0.014191, - 0.013331, - 0.036656, - -0.053098, - -0.0041175, - -0.017222, - 0.1206, - -0.05953, - -0.061835, - -0.05634, - -0.015627, - 0.01382, - -0.034555, - 0.03706, - 0.061656, - -0.035175, - 0.030079, - -0.096685, - 0.017243, - 0.10291, - 0.001978, - -0.057889, - 0.016585, - 0.074191, - -0.075384, - -0.057732, - -0.034544, - -0.042698, - -0.13183, - -0.025727, - -0.0069295, - -0.0052454, - -0.054829, - -0.041726, - 0.0020023, - -0.03137, - 0.067985, - 0.026551, - 0.0086794, - 0.0088674, - 0.0041939, - 0.046011, - -0.0007576, - 0.035338, - 0.004643, - 0.046563, - -0.015079, - -0.055771, - -0.069993, - 0.054696, - -0.027857, - -0.022984, - -0.044911, - 0.025248, - 0.036895, - 0.043257, - 0.060917, - -0.041707, - -0.057689, - -0.040607, - 0.011736, - -0.053307, - 0.0048177, - 0.0019062, - 0.067556, - -0.025708, - -0.093783, - 0.070989, - -0.11779, - -0.025779, - 0.051774, - -0.037924, - 0.048078, - 0.026013, - 0.026603, - -0.021207, - 0.083491, - 0.076723, - -0.051679, - -0.028601, - 0.014852, - 0.0017489, - -0.028801, - -0.016299, - -0.075426, - 0.077866, - -0.046037, - 0.0014269, - 0.016315, - 0.042257, - -0.064679, - -0.0065695, - -0.031701, - -0.011833, - -0.034349, - -0.049819 - ], - "genealogy": [ - -0.039634, - -0.083552, - 0.051826, - -0.053879, - -0.055348, - 0.046757, - -0.058211, - -0.088725, - 0.0090633, - 0.022057, - 0.023622, - -0.058501, - 0.018893, - -0.044407, - 0.011968, - 0.012028, - 0.094979, - -0.13497, - 0.013323, - -0.0033422, - -0.018758, - 0.069558, - 0.028581, - 0.060055, - 0.082252, - -0.019078, - -0.029381, - 0.099376, - 0.020723, - 0.06839, - 0.023517, - -0.064724, - 0.021105, - -0.074145, - 0.039712, - 0.007428, - -0.021921, - -0.014473, - 0.014437, - 0.024643, - -0.09269, - -0.097718, - 0.035972, - -0.031695, - -0.037473, - -0.030242, - -0.068976, - -0.053381, - -0.010691, - -0.037408, - -0.014191, - 0.02813, - -0.008562, - 0.015367, - -0.035947, - 0.014475, - -0.049101, - 0.073157, - -0.02596, - 0.00011563, - 0.0086689, - -0.02621, - 0.064142, - 0.023114, - 0.036726, - -0.029456, - -0.084626, - 0.064998, - -0.021184, - -0.019974, - 0.02501, - -0.076321, - -0.0207, - -0.073641, - 0.031471, - 0.012987, - 0.051291, - -0.03301, - 0.053784, - -0.005433, - -0.050834, - 0.010828, - -0.049916, - 0.022042, - -0.093526, - -0.11122, - 0.043628, - 0.0075941, - -0.017593, - 0.09548, - -0.002354, - 0.045587, - -0.051919, - 0.022588, - 0.016882, - 0.053729, - -0.013786, - 0.041655, - 0.07235, - -0.053277, - 0.0067425, - -0.03927, - -0.067803, - -0.060939, - -0.038351, - -0.059681, - 0.029337, - 0.014517, - 0.03224, - -0.0094249, - -0.0042993, - 0.040994, - 0.05138, - -0.041765, - -0.045903, - 0.072249, - -0.0036073, - -0.032961, - -0.051269, - -0.019218, - -0.045011, - -0.0099997, - 0.097816, - 0.033431, - 0.048207, - -0.019457, - -0.013961, - -0.058805, - 0.025732, - 0.13211, - -0.02009, - -0.0011017, - 0.00076367, - 0.0022032, - 0.029189, - 0.0057897, - 0.034207, - 0.02112, - 0.028001, - -0.046124, - 0.02631, - -0.016352, - -0.068845, - 0.04249, - 0.00081785, - -0.018752, - -0.023307, - 0.0039589, - -0.080911, - -0.083812, - 0.038259, - 0.081785, - -0.0028659, - -0.078518, - 0.029893, - 0.044168, - 0.034764, - -0.0068832, - 0.034672, - 0.0089157, - 0.019987, - 0.018403, - -0.088138, - -0.036007, - -0.011707, - 0.068682, - -0.012591, - 0.047661, - -0.035325, - -0.0012954, - -0.020532, - -0.028782, - 0.053878, - -0.030124, - 0.03257, - 0.040161, - 0.061319, - 0.0016626, - -0.030525, - 0.025352, - -0.011143, - -0.049685, - -0.0018683, - -0.040655, - 0.029477, - 0.0078476, - -0.089025, - 0.06074, - 0.031963, - 0.00085701, - 0.0011424, - 0.055315, - -0.02616, - -0.017107, - -0.023242, - 0.019541, - -0.049934, - 0.012483, - -0.054138, - -0.040337, - -0.12982, - 0.032916, - 0.023864, - -0.060926, - -0.031665, - 0.07603, - 0.016499, - -0.0093859, - -0.082759, - -0.0067009, - 0.10798, - 0.021138, - 0.014476, - -0.00016298, - 0.022626, - 0.02939, - -0.070734, - -0.0010833, - -0.030666, - 0.015606, - 0.094204, - -0.033753, - 0.034663, - 0.088853, - 0.005517, - -0.020285, - 0.06453, - 0.08024, - -0.05057, - -0.018787, - 0.0052589, - -0.029728, - -0.01233, - 0.027238, - 0.016484, - 0.040438, - -0.00098203, - 0.055168, - -0.071079, - -0.048995, - 0.023508, - -0.012583, - 0.033783, - -0.059821, - -0.0079043, - -0.054692, - -0.020994, - -0.004668, - -0.068061, - 0.020365, - 0.065712, - 0.026818, - -0.031131, - 0.046249, - 0.0051636, - 0.026456, - -0.095553, - 0.0044603, - 0.079617, - 0.04268, - 0.046633, - 0.0054389, - 0.0036507, - 0.013286, - 0.070576, - -0.096691, - -0.00043564, - 0.034709, - -0.0512, - -0.051001, - 0.045959, - 0.084912, - -0.075594, - -0.006012, - -0.0067485, - -0.01547, - 0.0092534, - 0.0081654, - -0.048113, - 0.023357, - 0.087943, - -0.082479, - 0.064351, - -0.00055787, - -0.014134, - 0.03216, - -0.049603, - 0.0080603, - -0.04353, - 0.011567, - 0.019606, - 0.0099971, - -0.0068882, - -0.060757, - 0.0092913, - 0.083114, - 0.010196, - -0.025993, - -0.023328, - -0.0013253 - ], - "artist": [ - -0.020672, - -0.030091, - 0.064903, - -0.013707, - -0.034284, - -0.022257, - 0.0117, - -0.11745, - 0.095898, - -0.024737, - 0.04445, - 0.044484, - -0.040334, - -0.014973, - -0.026244, - 0.063704, - 0.07715, - 0.050674, - 0.0089908, - -0.018433, - 0.00067455, - -0.037155, - 0.023502, - 0.10368, - 0.011199, - 0.057508, - 0.0025354, - 0.049274, - 0.0052152, - 0.022609, - -0.055703, - 0.03014, - 0.015327, - -0.021467, - -0.035437, - 0.041648, - -0.00061153, - -0.018989, - -0.0114, - 0.029015, - -0.022757, - -0.13558, - -0.031874, - -0.031038, - 0.0012612, - 0.097337, - 0.096208, - 0.040672, - -0.032824, - -0.0087274, - -0.074559, - -0.03733, - -0.029234, - 0.021773, - 0.03183, - 0.025734, - -0.0096944, - 0.027759, - -0.024233, - -0.046324, - -0.041686, - -0.086707, - 0.14582, - -0.047417, - 0.042588, - -0.0041506, - -0.071473, - -0.036097, - 0.012297, - -0.0059695, - 0.012847, - 0.06875, - 0.079112, - -0.012404, - 0.0011961, - 0.080656, - -0.020041, - 0.0061195, - 0.061479, - -0.015853, - 0.015436, - 0.089029, - -0.041313, - 0.056678, - -0.085615, - -0.075243, - -0.01742, - 0.062692, - -0.00062051, - -0.0088927, - 0.0094366, - 0.056276, - -0.096146, - -0.079078, - 0.01575, - 0.11037, - 0.047218, - 0.066203, - 0.10262, - 0.033098, - 0.074739, - -0.0042483, - 0.073409, - 0.10074, - -0.055641, - -0.092986, - -0.052322, - 0.09945, - -0.053732, - 0.074616, - -0.0090925, - 0.13705, - 0.061401, - -0.054108, - -0.0018588, - -0.035173, - -0.0042622, - -0.0075712, - 0.019664, - 0.033875, - -0.068151, - -0.021734, - -0.071171, - 0.034115, - 0.071109, - 0.0056903, - 0.041807, - -0.064453, - 0.032178, - 0.10802, - -0.038756, - 0.018835, - -0.023778, - 0.0005402, - -0.0049752, - 0.056489, - 0.031695, - 0.089406, - 0.012476, - 0.014433, - 0.0054101, - 0.037382, - 0.018696, - -0.028488, - -0.080301, - -0.029889, - -0.12943, - 0.012336, - 0.0071556, - -0.045656, - 0.045336, - 0.076998, - -0.066311, - -0.11105, - -0.048985, - -0.0046326, - 0.030423, - 0.055208, - -0.023685, - -0.019815, - -0.010936, - 0.026169, - -0.05135, - 0.037683, - -0.013241, - 0.02169, - 0.0010736, - -0.028758, - -0.019385, - 0.11487, - -0.0089787, - 0.082423, - 0.041068, - -0.063087, - 0.022034, - 0.060023, - -0.026665, - -0.021313, - -0.0035526, - 0.003333, - -0.0032226, - 0.0065665, - 0.011262, - -0.031604, - -0.048154, - -0.10157, - 0.032513, - 0.12136, - -0.0032704, - 0.029835, - 0.02306, - 0.14608, - -0.020719, - 0.032281, - -0.11066, - -0.020345, - 0.073007, - -0.037155, - 0.01754, - 0.030578, - -0.1728, - 0.045613, - -0.010667, - -0.047341, - 0.0058651, - 0.024052, - -0.059616, - -0.017455, - -0.00092571, - -0.055082, - 0.14089, - 0.01732, - 0.0077257, - -0.059382, - -0.11283, - -0.0037439, - 0.090125, - 0.02833, - 0.050965, - 0.044408, - 0.0077452, - -0.03002, - 0.026123, - 0.11758, - 0.034096, - 0.11868, - 0.11428, - 0.076773, - -0.018541, - 0.029868, - -0.009607, - -0.063111, - -0.050496, - -0.079918, - -0.012376, - 0.027553, - 0.027756, - -0.076411, - -0.024985, - -0.016055, - 0.031476, - 0.00092608, - -0.085377, - -0.035198, - 0.031981, - -0.031442, - -0.11375, - -0.011524, - -0.025668, - 0.0059841, - 0.016428, - -0.05497, - 0.027571, - -0.0049415, - 0.051795, - -0.013229, - -0.028462, - 0.060641, - 0.052232, - 0.020684, - 0.098073, - -0.0035486, - 0.069399, - 0.022452, - 0.024933, - -0.052374, - 0.060024, - 0.021324, - 0.074925, - -0.058104, - 0.018351, - 0.10724, - -0.099495, - -0.015137, - 0.046873, - -0.034046, - 0.040448, - 0.053687, - 0.0013076, - 0.12116, - 0.084677, - 0.080847, - 0.0059261, - -0.10722, - -0.0081329, - 0.0057846, - -0.022349, - -0.095724, - -0.049359, - 0.044108, - -0.093155, - -0.058911, - -0.025859, - 0.03467, - -0.051921, - 0.054158, - 0.02468, - 0.028478, - -0.0048063, - 0.0020206 - ], - "Romanesque": [ - 0.039566, - -0.0097697, - 0.020754, - -0.061368, - 0.029781, - -0.040931, - -0.081104, - -0.066575, - 0.01483, - 0.021026, - 0.017596, - -0.02531, - 0.045449, - 0.0031228, - -0.015655, - -0.024099, - 0.057029, - 0.069912, - 0.030533, - -0.0052825, - -0.061574, - -0.013885, - -0.024034, - 0.048687, - 0.04635, - 0.055175, - -0.013622, - 0.0015605, - 0.052752, - 0.064151, - -0.027156, - -0.029939, - -0.076872, - -0.012151, - 0.042476, - -0.018137, - 0.06257, - 0.058045, - 0.05964, - 0.052326, - 0.034659, - -0.062363, - 0.056572, - 0.024556, - -0.034964, - -0.021838, - -0.043264, - 0.0025238, - -0.0032373, - 0.014803, - -0.025755, - -0.068388, - -0.027732, - -0.0017194, - 0.038343, - 0.0069114, - 0.060093, - 0.021324, - -0.042876, - 0.062843, - 0.01239, - 0.032488, - 0.061456, - -0.0039129, - 0.098137, - -0.033687, - -0.026497, - 0.056028, - -0.026227, - 0.0017404, - -0.027692, - 0.036237, - 0.022145, - 0.0093182, - 0.0065419, - 0.014237, - -0.046649, - -0.036339, - -0.039125, - 0.086812, - -0.031277, - -0.011473, - 0.00075945, - -0.018529, - -0.0049212, - -0.057755, - -0.016008, - -0.026427, - -0.00080706, - 0.04831, - -0.046486, - -0.018919, - -0.071412, - -0.040459, - -0.00071597, - 0.096603, - -0.0073858, - -0.0020041, - 0.0030112, - 0.068917, - -0.0025603, - 0.017658, - -0.047787, - 0.041345, - -0.035428, - -0.10293, - 0.022421, - -0.020659, - -0.055594, - 0.044539, - 0.031763, - 0.015567, - 0.033759, - 0.050561, - -0.027379, - -0.015089, - -0.019998, - 0.072277, - 0.058484, - 0.0010831, - -0.015036, - -0.060823, - -0.051545, - -0.029766, - 0.047382, - -0.020501, - 0.0049172, - -0.013839, - -0.041556, - 0.072686, - -0.053447, - 0.021974, - -0.10335, - 0.023681, - -0.035085, - 0.073326, - -0.039376, - 0.053918, - 0.041967, - -0.11901, - 0.070342, - 0.029337, - 0.035935, - 0.087517, - 0.047339, - 0.0097516, - 0.071137, - -0.0060338, - 0.022191, - -0.039842, - 0.094653, - 0.085172, - 0.045011, - 0.071335, - -0.020389, - 0.0036813, - 0.041499, - -0.02333, - -0.050469, - -0.015104, - -0.020667, - -0.029641, - -0.066701, - -0.065551, - 0.060069, - 0.065209, - 0.02158, - -0.031519, - -0.014448, - 0.021575, - 0.074528, - -0.030119, - 0.027454, - -0.025633, - 0.027234, - 0.038502, - 0.067926, - -0.047762, - -0.029541, - 0.0015789, - -0.0088943, - -0.076558, - 0.0047755, - 0.012194, - 0.00082537, - 0.061657, - 0.076628, - 0.14306, - 0.0031851, - -0.0088926, - 0.082521, - 0.037663, - 0.067903, - 0.056121, - -0.0070881, - 0.028945, - -0.010806, - -0.038371, - 0.032268, - -0.013715, - -0.075753, - 0.014536, - -0.043452, - 0.022218, - 0.006384, - 0.0097486, - 0.056453, - -0.041243, - -0.037891, - 0.017572, - 0.13822, - -0.01158, - -0.035111, - 0.029668, - 0.095423, - -0.011657, - 0.044149, - 0.10436, - -0.02707, - 0.012293, - -0.034958, - -0.04781, - 0.020804, - 0.050003, - -0.048436, - 0.011068, - 0.040368, - 0.047966, - 0.02239, - -0.033038, - 0.013138, - -0.043409, - -0.052476, - -0.027441, - 0.0025827, - 0.026437, - 0.0068914, - 0.0032679, - -0.022178, - 0.0027772, - 0.045569, - 0.011409, - -0.041092, - -0.033204, - -0.083302, - -0.05978, - -0.031421, - -0.0022171, - 0.052964, - 0.018524, - -0.0099354, - 0.002183, - -0.068157, - -0.039082, - -0.02943, - 0.017031, - -0.074758, - 0.017519, - -0.017235, - 0.046364, - 0.019312, - -0.023833, - 0.027246, - -0.0090946, - -0.0061995, - -0.062083, - 0.038624, - -0.0090667, - 0.0076317, - -0.0093507, - 0.0058319, - 0.065544, - -0.04754, - -0.011985, - 0.006783, - -0.11315, - 0.012448, - 0.020857, - -0.0015391, - -0.058985, - 0.11208, - 0.01542, - -0.021656, - 0.043502, - 0.0051127, - -0.026271, - 0.051948, - -0.020873, - -0.029344, - 0.033752, - -0.035887, - 0.02194, - 0.01168, - -0.045414, - 0.021414, - -0.026454, - 0.02238, - 0.066494, - 0.008843, - -0.033929 - ], - "wellness": [ - -0.034578, - -0.12314, - -0.041121, - 0.06682, - -0.096215, - -0.012843, - 0.0015786, - -0.076705, - 0.07482, - 0.004911, - -0.047935, - -0.041291, - 0.078487, - -0.01792, - 0.0014959, - -0.080436, - 0.14997, - 0.037237, - 0.029626, - 0.034197, - -0.07798, - 0.036804, - 0.071759, - 0.083709, - 0.0045674, - -0.064798, - -0.031771, - 0.087678, - 0.037828, - 0.023192, - 0.027542, - -0.065303, - 0.015825, - -0.1146, - 0.022003, - 0.065979, - 0.04219, - -0.024475, - 0.083406, - 0.047886, - 0.061313, - -0.1283, - -0.062998, - 0.0084877, - 0.057923, - -0.055674, - 0.043882, - -0.017096, - -0.068807, - -0.0017789, - 0.029671, - -0.05205, - -0.034488, - -0.032725, - -0.026517, - 0.054042, - -0.032929, - 0.028237, - -0.0012815, - -0.010004, - 0.004799, - -0.066044, - 0.032443, - 0.039546, - 0.029289, - 0.015384, - 0.0095353, - -0.0075182, - -0.020166, - -0.01963, - 0.010896, - -0.044952, - 0.01001, - 0.017061, - 0.059502, - 0.048526, - 0.027191, - -0.022396, - -0.038481, - -0.033495, - 0.021532, - -0.012815, - -0.02163, - 0.016166, - -0.028002, - -0.0092015, - -0.035888, - -0.0002499, - -0.050758, - -0.010165, - 0.016354, - 0.059985, - -0.078085, - -0.004119, - -0.039073, - 0.076642, - -0.0064805, - 0.11202, - -0.034717, - -0.0067622, - 0.0067115, - 0.1155, - 0.038301, - -0.036732, - -0.00516, - -0.064118, - 0.018361, - 0.031806, - -0.042858, - -0.045699, - 0.029858, - 0.066593, - 0.025494, - -0.038321, - 0.013568, - -0.016501, - -0.061709, - -0.022213, - -0.021429, - 0.00094188, - -0.072074, - 0.048532, - 0.029901, - -0.028474, - 0.073678, - 0.032392, - -0.013048, - -0.094549, - 0.13156, - 0.086513, - 0.068206, - -0.05485, - 0.041761, - -0.074729, - -0.046505, - 0.013681, - 0.032616, - -0.035833, - -0.031462, - -0.023602, - 0.1241, - -0.080003, - -0.022456, - 0.052174, - -0.008832, - 0.018527, - 0.00097238, - -0.020492, - 0.065364, - 0.08485, - 0.061045, - 0.097845, - 0.036179, - -0.096577, - -0.0033541, - 0.007073, - -0.026414, - 0.053076, - 0.0035374, - -0.074611, - 0.068797, - 0.056675, - -0.10913, - 0.037375, - 0.018002, - 0.012926, - -0.060497, - -0.036012, - -0.056646, - -0.0033994, - 0.047474, - -0.0044309, - 0.020221, - -0.030468, - 0.011475, - 0.065793, - -0.0012156, - -0.021774, - -0.030723, - 0.032215, - 0.022158, - -0.00013726, - 0.044858, - -0.027925, - 0.043591, - 0.011207, - 0.010325, - 0.1385, - -0.043771, - 0.089655, - -0.017276, - 0.023881, - 0.041304, - 0.021771, - 0.1159, - -0.099172, - 0.01277, - -0.093069, - 0.048348, - -0.053561, - -0.15531, - 0.020764, - 0.043207, - -0.021357, - 0.068343, - -0.047554, - 0.0095128, - -0.035162, - 0.02704, - 0.00041835, - 0.1356, - -0.027647, - -0.014852, - 0.00080559, - 0.0060421, - 0.034399, - -0.0011676, - 0.045251, - -0.003453, - -0.00085479, - -0.076546, - 0.0074758, - -0.056988, - 0.091307, - -0.0046642, - 0.0047738, - -0.023286, - 0.079791, - 0.048263, - -0.016417, - 0.017605, - -0.035876, - -0.042207, - 0.027572, - -0.0069406, - 0.10123, - -0.074736, - 0.024773, - -0.034223, - 0.039887, - 0.037924, - 0.083348, - 0.085614, - -0.035808, - -0.036155, - 0.089072, - 0.085524, - -0.038417, - 0.029039, - 0.018421, - 0.070844, - -0.027677, - -0.046418, - -0.081328, - 0.027477, - -0.029897, - -0.03943, - 0.023889, - 0.011568, - -0.020739, - 0.030175, - -0.020498, - -0.003757, - -0.029809, - 0.038392, - -0.0046711, - 0.045743, - 0.026, - 0.056396, - 0.0384, - -0.056026, - 0.05454, - -0.099013, - -0.041815, - 0.001099, - -0.013458, - -0.058396, - 0.041295, - -0.040474, - 0.05233, - 0.13646, - -0.058123, - -0.018, - -0.020087, - 0.0099919, - -0.0047828, - -0.0037121, - 0.047534, - -0.023277, - -0.014, - 0.10949, - -0.0025844, - -0.016255, - -0.02003, - -0.047049, - 0.03513, - 0.066032, - 0.049553, - -0.057055, - 0.027196 - ], - "humanism": [ - -0.011935, - -0.066113, - 0.11549, - -0.052033, - -0.030797, - -0.0219, - -0.021403, - -0.088671, - 0.036667, - -0.0088173, - -0.039032, - -0.043696, - 0.045999, - -0.021722, - -0.027561, - -0.011571, - 0.10027, - 0.081407, - 0.0058186, - -0.00018743, - -0.012706, - -0.032445, - 0.02851, - 0.048952, - -0.016966, - -0.033353, - 0.011793, - 0.054491, - 0.059211, - 0.064144, - 0.030535, - -0.0028766, - 0.04802, - -0.030319, - 0.016241, - 0.042691, - 0.050112, - -0.0015688, - 0.094658, - 0.040917, - -0.033606, - -0.10952, - -0.022823, - 0.086856, - 0.073182, - -0.046316, - -0.005012, - 0.015101, - 0.045442, - -0.098128, - -0.015018, - -0.019397, - -0.03733, - 0.021774, - -0.017983, - 0.043105, - 0.045008, - -0.0025744, - -0.03247, - 0.022258, - 0.046025, - -0.08945, - 0.025206, - -0.030754, - 0.022803, - -0.012201, - 0.032653, - -0.030405, - 0.027628, - 0.0014767, - 0.045378, - 0.032994, - -0.044305, - 0.028873, - -0.071219, - -0.0055636, - -0.029952, - -0.0085907, - 0.071838, - 0.11636, - -0.014758, - 0.023336, - 0.010644, - 0.11323, - -0.017953, - -0.017149, - -0.04311, - 0.0025688, - -0.0026009, - 0.060002, - -0.038446, - 0.088335, - -0.090237, - 0.020198, - 0.047645, - 0.018543, - 0.069793, - -0.07842, - -0.11353, - 0.067502, - -0.010108, - -0.012601, - 0.039114, - -0.055691, - -0.065991, - -0.066005, - 0.038297, - 0.0040824, - -0.055042, - 0.0048396, - -0.0095583, - 0.078408, - 0.028242, - -0.054018, - -0.060729, - 0.11651, - 0.042464, - 0.0018801, - -0.025584, - 0.0078541, - -0.019743, - -0.10741, - -0.046581, - -0.093209, - 0.02871, - 0.030799, - -0.041749, - -0.035547, - 0.066454, - 0.12434, - 0.024534, - -0.042256, - -0.0070384, - -0.0057791, - -0.010079, - 0.072704, - 0.00010927, - 0.036605, - 0.0066438, - -0.044133, - 0.035996, - -0.03372, - -0.027174, - 0.036445, - -0.012458, - -0.043082, - 0.013074, - -0.024704, - -0.016979, - -0.002074, - 0.064253, - 0.067624, - -0.030691, - -0.011358, - 0.0053373, - 0.069432, - -0.010962, - -0.041196, - 0.051015, - -0.038194, - 0.034751, - -0.06949, - -0.11331, - -0.048622, - -0.020893, - 0.026945, - -0.059929, - 0.11305, - -0.04823, - -0.00073953, - -0.027623, - -0.02598, - 0.02982, - 0.056258, - -0.0097644, - 0.053499, - 0.017041, - 0.038334, - 0.012502, - 0.017373, - -0.0069699, - 0.033607, - -0.027795, - 0.00098021, - 0.0034648, - -0.059695, - 0.051748, - 0.11923, - -0.063643, - -0.055115, - 0.032412, - 0.054349, - -0.039676, - -0.064486, - 0.0056952, - 0.012601, - -0.01533, - 0.018705, - -0.0030139, - 0.0051855, - -0.16858, - 0.028002, - 0.055355, - -0.042722, - -0.07287, - 0.007427, - 0.011861, - -0.067429, - 0.0061814, - 0.010993, - 0.082965, - 0.009441, - -0.0029107, - 0.049028, - 0.089511, - 0.07158, - -0.0042739, - -0.054699, - -0.015256, - -0.020578, - -0.049499, - 0.090094, - -0.013686, - 0.088131, - -0.013067, - -0.014974, - 0.067817, - 0.058192, - 0.075327, - -0.071928, - 0.034833, - -0.032529, - -0.099912, - -0.064851, - 0.021899, - 0.018205, - -0.00014597, - -0.06864, - -0.014755, - 0.0024337, - 0.02383, - 0.0090289, - -0.036301, - -0.014151, - 0.01574, - -0.035432, - -0.011182, - -0.011181, - -0.038843, - -0.031205, - 0.12129, - 0.00072412, - -0.074655, - -0.06951, - 0.038738, - -0.035699, - 0.021281, - 0.02216, - -0.023759, - -0.0085446, - -0.0038119, - -0.018166, - 0.016709, - 0.0080291, - 0.036338, - -0.036438, - 0.046024, - 0.012225, - 0.067565, - 0.043253, - 0.033896, - 0.066867, - -0.069296, - -0.028511, - -0.017931, - -0.052127, - 0.015728, - 0.038598, - -0.0072529, - 0.011425, - 0.075803, - -0.0234, - -0.03116, - -0.08292, - -0.034239, - 0.011821, - -0.017988, - 0.043185, - -0.013705, - 0.05253, - -0.02835, - 0.0038028, - 0.052884, - -0.021617, - -0.012976, - 0.036591, - 0.046498, - 0.1139, - -0.017746, - -0.020584 - ], - "populace": [ - 0.0058461, - -0.017592, - 0.0079471, - 0.011853, - -0.05421, - 0.0024842, - -0.015832, - -0.10536, - 0.036722, - 0.066084, - 0.0401, - -0.055765, - 0.018587, - 0.001538, - -0.055674, - 0.025634, - 0.058252, - 0.022843, - 0.057781, - 0.047907, - 0.0018098, - -0.062585, - 0.030262, - 0.0517, - 0.0028515, - -0.018287, - 0.049739, - 0.0017668, - 0.021978, - 0.008454, - -0.012521, - -0.043101, - -0.014848, - 0.035718, - -0.031211, - 0.070303, - -0.0016428, - 0.0092716, - -0.00045332, - -0.030638, - 0.018804, - -0.10046, - 0.020668, - 0.028926, - 0.033417, - -0.042793, - -0.016969, - 0.039117, - -0.044297, - 0.040684, - 0.031478, - -0.014609, - -0.03723, - -0.010068, - -0.010907, - 0.090468, - -0.029082, - 0.020383, - -0.043657, - 0.0015562, - 0.025503, - -0.0295, - 0.091918, - 0.038021, - -0.0049022, - 0.024524, - -0.032009, - 0.016717, - 0.05955, - -0.054111, - -0.015944, - 0.028078, - 0.074182, - -0.013498, - -0.02215, - -0.0014168, - -0.0089097, - 0.023046, - -0.010724, - 0.013441, - -0.02307, - 0.05677, - 0.0021114, - 0.1134, - 0.025273, - 0.029083, - -0.018572, - -0.04699, - -0.043816, - -0.00050464, - -0.045816, - 0.040348, - -0.07563, - -0.00080594, - -0.053315, - 0.082209, - -0.02554, - -0.05927, - 0.010951, - 0.07695, - 0.033196, - -0.0071306, - -0.0056874, - -0.02264, - 0.0038102, - -0.074001, - 0.0092383, - -0.00093201, - -0.017659, - 0.029838, - -0.085928, - 0.11138, - 0.094244, - 0.010422, - -0.005963, - -0.034385, - -0.0023741, - -0.0090847, - -0.039964, - 0.0011675, - -0.018337, - 0.020441, - -0.062356, - -0.011526, - 0.064859, - 0.032674, - -0.024742, - -0.10284, - -0.067967, - 0.043129, - -0.0014929, - 0.077278, - 0.11001, - 0.049364, - 0.090584, - -0.010704, - -0.050963, - 0.10729, - 0.022188, - -0.014116, - -0.0236, - -0.094109, - -0.0040858, - 0.0046838, - -0.0077858, - 0.0044792, - -0.036392, - 0.020126, - -0.034333, - -0.054141, - 0.076383, - 0.052443, - -0.030296, - -0.0070528, - 0.046944, - -0.013583, - -0.02796, - 0.069086, - -0.094664, - -0.05344, - 0.014163, - -0.0067584, - -0.0029045, - 0.037661, - -0.041032, - 0.035608, - 0.025777, - -0.062444, - 0.0022677, - -0.012084, - -0.075184, - 0.018127, - -0.0056685, - 0.01809, - -0.026941, - 0.035634, - 0.058929, - 0.0049899, - 0.052162, - 0.0022769, - -0.06978, - 0.044289, - -0.000059296, - 0.024916, - 0.021799, - -0.090712, - 0.0099125, - 0.11553, - -0.0059383, - -0.043032, - 0.069069, - 0.015526, - -0.031818, - -0.0067052, - 0.074553, - 0.035927, - -0.01751, - 0.0084088, - -0.032875, - 0.026058, - -0.12472, - -0.017023, - 0.040095, - 0.025995, - -0.03665, - 0.010801, - -0.013301, - 0.05538, - -0.037905, - -0.021834, - 0.031984, - -0.10195, - 0.036158, - 0.048804, - -0.051184, - -0.02094, - -0.039789, - -0.004897, - 0.037892, - 0.042223, - 0.013069, - -0.031657, - -0.038022, - 0.10009, - 0.009227, - 0.0092533, - 0.062294, - 0.023266, - -0.018218, - -0.10587, - -0.053606, - 0.0043573, - -0.11349, - 0.014748, - 0.071795, - 0.04676, - -0.023629, - 0.054094, - 0.03709, - -0.087612, - 0.017441, - 0.012268, - -0.016807, - 0.065005, - 0.04478, - 0.038808, - -0.029111, - -0.074765, - -0.049252, - -0.10666, - 0.12085, - -0.032935, - -0.025806, - -0.017255, - 0.035327, - 0.021365, - -0.017722, - 0.039908, - 0.014615, - -0.00077654, - 0.0012983, - 0.020939, - 0.015807, - -0.044725, - 0.023944, - 0.026188, - 0.016185, - 0.047607, - -0.026108, - 0.050748, - -0.029845, - 0.057806, - -0.075099, - -0.049331, - 0.058969, - -0.012726, - -0.0099794, - -0.007545, - -0.085744, - -0.010028, - 0.032504, - 0.02369, - -0.056319, - 0.014855, - -0.027507, - 0.074598, - 0.013619, - -0.08241, - -0.00059246, - 0.068923, - 0.018828, - 0.065112, - -0.0053269, - 0.064885, - -0.01024, - 0.0082184, - 0.028586, - -0.0022164, - -0.022709, - 0.025686 - ], - "taxes": [ - 0.034741, - -0.013398, - 0.013896, - 0.00050516, - 0.15175, - 0.034479, - 0.056016, - -0.11862, - 0.12398, - 0.04695, - 0.093325, - -0.0098149, - -0.023319, - -0.023034, - -0.0021382, - 0.093929, - 0.060021, - -0.095423, - 0.096794, - 0.10304, - -0.028061, - -0.079945, - -0.066973, - 0.062441, - 0.097013, - -0.0018772, - 0.04588, - 0.017132, - 0.16231, - -0.035335, - 0.0050882, - -0.040137, - -0.10119, - -0.067172, - 0.025336, - 0.075004, - -0.065482, - 0.012283, - -0.09332, - 0.029597, - -0.038386, - -0.13124, - -0.0032867, - 0.1037, - -0.0052657, - 0.0063469, - -0.20878, - -0.037788, - -0.031852, - 0.01934, - -0.095098, - -0.056795, - 0.077366, - -0.055149, - -0.14188, - -0.029385, - -0.077583, - 0.0077792, - -0.013547, - -0.090051, - 0.082534, - -0.099643, - 0.15858, - 0.15529, - -0.0741, - 0.0041696, - -0.0215, - -0.083027, - 0.092622, - -0.029985, - 0.057195, - -0.0125, - 0.095951, - 0.048918, - -0.0091515, - -0.010639, - 0.063095, - -0.021725, - -0.006531, - -0.081899, - -0.092444, - -0.075201, - -0.088569, - 0.11707, - -0.012247, - -0.028089, - 0.037364, - -0.060122, - 0.037916, - 0.067357, - -0.010562, - -0.071148, - -0.11666, - 0.0095725, - -0.13592, - 0.002186, - -0.045542, - 0.016524, - -0.087415, - 0.051508, - 0.052475, - -0.094319, - -0.069495, - -0.088568, - 0.13212, - -0.019271, - 0.028325, - 0.0050026, - -0.065616, - -0.049747, - 0.0041356, - 0.089834, - 0.1042, - 0.02587, - -0.0044452, - 0.043319, - -0.030889, - -0.10391, - -0.06879, - 0.010714, - -0.034307, - 0.022477, - 0.029093, - -0.056952, - 0.1565, - 0.028651, - -0.0019803, - -0.11004, - 0.014497, - 0.13776, - -0.03947, - -0.0099353, - 0.0080451, - 0.079977, - 0.0088316, - 0.010737, - 0.062475, - 0.03051, - -0.16267, - -0.010317, - 0.024135, - -0.069999, - 0.042008, - 0.033296, - -0.087328, - -0.09206, - 0.025944, - -0.0019831, - 0.032029, - -0.057003, - -0.016431, - 0.063274, - -0.036084, - -0.082236, - 0.06039, - 0.043286, - 0.00027886, - 0.018624, - -0.021932, - -0.071797, - 0.10256, - -0.002295, - -0.082474, - -0.0726, - 0.0045654, - -0.06659, - 0.053717, - -0.049078, - 0.11886, - 0.028584, - -0.0053859, - -0.076538, - -0.029531, - 0.047298, - -0.063227, - 0.09079, - -0.10723, - -0.018508, - -0.010529, - -0.03275, - 0.066503, - -0.097424, - 0.02091, - -0.034768, - 0.058747, - -0.054205, - -0.042456, - 0.15225, - 0.063168, - -0.085973, - 0.10072, - 0.030035, - -0.094742, - 0.11008, - 0.017464, - -0.020849, - -0.025156, - -0.020236, - -0.0089147, - -0.010151, - -0.22615, - -0.045118, - 0.12387, - 0.0021957, - 0.076159, - 0.095553, - 0.045671, - -0.014356, - -0.026859, - -0.066789, - 0.11321, - 0.033511, - 0.023278, - 0.057001, - 0.063538, - 0.036867, - 0.012609, - 0.03692, - -0.1089, - -0.09683, - 0.013575, - -0.021325, - 0.060215, - 0.088124, - 0.14375, - 0.039402, - 0.060981, - 0.0043812, - -0.035936, - -0.03707, - -0.021256, - -0.019108, - -0.14347, - -0.049239, - 0.11132, - -0.032251, - -0.027502, - 0.043427, - -0.011777, - -0.048394, - -0.0077696, - 0.038689, - 0.029378, - -0.052604, - -0.020304, - -0.027277, - 0.077121, - -0.146, - 0.089192, - -0.030327, - -0.065034, - -0.058221, - -0.053026, - 0.013792, - -0.002384, - -0.088174, - -0.046303, - 0.011945, - -0.010401, - 0.036645, - 0.011631, - -0.0070863, - -0.017644, - -0.064341, - 0.0076794, - -0.0029949, - 0.0077876, - -0.028109, - -0.038416, - 0.038017, - -0.072796, - 0.085681, - -0.14418, - -0.044434, - -0.046265, - -0.015482, - 0.02043, - 0.036718, - -0.022861, - -0.056815, - 0.085608, - 0.089329, - -0.013076, - 0.0034345, - 0.022314, - 0.12565, - 0.031464, - 0.14085, - -0.083404, - 0.063688, - 0.0050695, - 0.086023, - 0.0061324, - 0.053542, - -0.080682, - -0.11403, - -0.07991, - 0.0039344, - -0.061187, - -0.020366 - ], - "teams": [ - 0.056757, - -0.06993, - -0.010521, - -0.029863, - -0.06255, - -0.089716, - 0.015746, - -0.11082, - 0.0080949, - 0.012529, - 0.06235, - -0.047725, - -0.0028849, - 0.013129, - 0.10251, - 0.12897, - 0.15145, - 0.0902, - 0.10435, - 0.022693, - 0.011595, - -0.047227, - -0.06007, - 0.1127, - 0.036072, - -0.017254, - -0.003768, - -0.10101, - 0.091551, - 0.078884, - -0.058971, - 0.039101, - 0.014307, - 0.014112, - 0.026303, - 0.055858, - 0.021576, - -0.015897, - 0.043646, - -0.091077, - -0.068655, - -0.10135, - 0.015924, - -0.0049165, - 0.064338, - 0.002008, - 0.042485, - 0.038458, - -0.015794, - -0.037597, - 0.021436, - 0.034756, - 0.069731, - 0.04093, - -0.072362, - 0.080811, - 0.030045, - 0.0037125, - -0.058518, - 0.039263, - 0.0059323, - -0.070453, - 0.16529, - -0.066265, - 0.089421, - -0.014795, - 0.0072823, - -0.033713, - 0.081394, - -0.070478, - 0.019022, - -0.077928, - 0.12257, - 0.012947, - 0.078064, - 0.046771, - 0.015223, - -0.038717, - -0.0016931, - -0.028924, - -0.033001, - 0.026379, - -0.0094598, - 0.13971, - 0.009886, - -0.12329, - 0.035399, - -0.069084, - 0.014821, - -0.045771, - -0.011948, - 0.034451, - -0.11758, - 0.027651, - 0.088818, - 0.091703, - -0.010696, - -0.0081292, - 0.02846, - -0.026004, - 0.05435, - -0.034344, - 0.0076004, - 0.043768, - 0.088541, - -0.072028, - -0.12059, - 0.098042, - 0.0011685, - -0.0013155, - 0.010958, - 0.096884, - 0.16461, - 0.073563, - 0.071836, - -0.017432, - -0.028107, - 0.0054693, - -0.048792, - -0.012287, - 0.03898, - -0.012343, - 0.096341, - -0.027015, - 0.12126, - -0.043303, - -0.076587, - -0.077966, - -0.014469, - 0.11732, - 0.010756, - 0.20126, - 0.014076, - -0.051319, - -0.0020137, - -0.0030313, - 0.060995, - 0.056038, - -0.088057, - 0.021905, - -0.023075, - 0.018378, - -0.0035911, - -0.052829, - -0.0038969, - -0.009015, - 0.01285, - 0.0034457, - -0.016668, - -0.017965, - 0.095821, - 0.13204, - 0.052151, - -0.068611, - 0.071057, - -0.025803, - -0.012229, - 0.02414, - -0.045062, - 0.037161, - -0.012869, - -0.05468, - 0.066325, - 0.083095, - 0.035143, - 0.015887, - -0.0036636, - 0.0075282, - 0.03224, - -0.15061, - 0.11369, - -0.021444, - -0.064507, - -0.01412, - 0.018326, - 0.086957, - -0.074605, - 0.028982, - -0.043044, - 0.028016, - 0.020352, - -0.034377, - -0.035836, - 0.08725, - -0.0056752, - -0.073611, - -0.031796, - 0.1019, - 0.029762, - 0.009467, - -0.024649, - 0.081162, - -0.16136, - -0.098303, - 0.0070658, - -0.02584, - 0.022489, - 0.0021972, - 0.044914, - 0.012608, - -0.18204, - 0.07308, - -0.05661, - 0.026269, - -0.021726, - -0.12306, - -0.090605, - 0.0094909, - 0.068724, - -0.090658, - 0.1131, - -0.018463, - 0.091507, - 0.032688, - -0.11382, - -0.11574, - 0.020819, - 0.019974, - -0.013826, - -0.03439, - -0.030056, - 0.0015474, - -0.062194, - 0.13586, - 0.071869, - -0.077046, - -0.017182, - 0.067011, - 0.033752, - -0.01153, - -0.047665, - 0.0075942, - -0.044282, - 0.024754, - 0.0098849, - -0.0039499, - 0.019154, - 0.037954, - -0.05594, - 0.052838, - -0.019836, - 0.054545, - 0.080968, - -0.021261, - 0.055709, - 0.079445, - -0.043663, - -0.038512, - -0.053382, - -0.039464, - 0.023436, - 0.1269, - 0.054134, - -0.0030467, - -0.026844, - 0.055168, - -0.0012704, - 0.075255, - 0.0086094, - 0.010636, - 0.036657, - 0.1024, - -0.041741, - -0.030903, - 0.023042, - 0.047482, - -0.029746, - 0.040698, - -0.036125, - 0.025827, - -0.028447, - 0.11013, - -0.15332, - -0.017028, - 0.02204, - 0.035852, - -0.046948, - -0.076222, - -0.0068148, - 0.073362, - -0.00096455, - 0.0031628, - -0.0078197, - -0.0081232, - 0.049565, - -0.045782, - 0.043989, - -0.090048, - -0.075907, - -0.0086967, - 0.11304, - -0.076501, - -0.063091, - -0.02082, - 0.056019, - -0.079265, - 0.011721, - 0.048021, - 0.060756, - -0.044839 - ], - "craftsmanship": [ - -0.021109, - -0.031787, - 0.023637, - -0.035652, - -0.042918, - -0.034378, - -0.043081, - -0.057763, - 0.061046, - 0.011291, - 0.026176, - -0.017877, - -0.021746, - 0.011766, - -0.016059, - 0.062674, - 0.040401, - 0.063917, - -0.0063989, - 0.0039474, - 0.007023, - 0.024865, - 0.02196, - 0.032681, - -0.01351, - -0.018878, - 0.0062398, - 0.013418, - 0.00065653, - 0.017867, - -0.01171, - -0.027713, - 0.086323, - -0.036066, - 0.0050223, - 0.019647, - 0.052339, - 0.048942, - -0.015708, - 0.039479, - -0.010029, - -0.091518, - 0.0127, - -0.012239, - -0.036901, - -0.042644, - -0.022629, - 0.013649, - -0.0082088, - -0.023317, - 0.0034811, - -0.023237, - -0.036582, - 0.044266, - -0.024046, - -0.0092103, - 0.009486, - 0.0072993, - -0.020966, - 0.0001608, - -0.0049165, - -0.049943, - 0.0093048, - 0.02251, - 0.037069, - 0.022996, - -0.088102, - -0.035277, - 0.040969, - -0.0050523, - 0.054776, - -0.036928, - 0.010807, - -0.035921, - 0.013702, - 0.017788, - -0.017903, - -0.014235, - -0.015202, - -0.034805, - -0.0557, - -0.019912, - 0.024311, - 0.012803, - 0.013404, - -0.065118, - 0.012647, - -0.011499, - 0.001526, - -0.019724, - -0.049218, - -0.0027591, - -0.065776, - -0.014652, - -0.019978, - 0.05431, - 0.013278, - 0.014218, - 0.046575, - 0.021445, - 0.04476, - -0.03545, - 0.0020323, - 0.047579, - -0.033643, - -0.0017211, - 0.066578, - 0.065374, - -0.039231, - -0.013443, - 0.050443, - 0.064455, - 0.05195, - 0.052726, - -0.087608, - -0.011185, - -0.0071283, - -0.018683, - -0.043147, - 0.01792, - -0.03406, - -0.027751, - -0.056499, - -0.026711, - 0.047768, - 0.018769, - -0.0036465, - -0.040854, - -0.00024649, - 0.091385, - 0.023671, - -0.023713, - 0.014425, - -0.044114, - 0.013649, - -0.047898, - -0.010925, - -0.010261, - -0.024629, - -0.071163, - 0.013231, - -0.0047964, - 0.0070478, - -0.013484, - -0.011317, - -0.04005, - 0.000050549, - -0.022003, - 0.00074433, - -0.03922, - 0.032965, - 0.0061044, - 0.010917, - -0.051539, - -0.024215, - 0.054839, - 0.066487, - -0.004785, - 0.021476, - -0.019442, - 0.041084, - 0.012716, - -0.090431, - 0.032169, - 0.021993, - 0.072246, - 0.0064816, - 0.0087833, - 0.040039, - 0.041385, - 0.14123, - 0.044502, - -0.024583, - 0.017552, - 0.050853, - 0.0536, - 0.032215, - 0.035134, - -0.050213, - 0.022173, - -0.036058, - -0.06495, - -0.0017477, - -0.046485, - -0.012953, - -0.089762, - 0.011066, - 0.11204, - -0.0059473, - -0.028692, - -0.0021528, - 0.061665, - -0.021916, - -0.07895, - -0.059332, - 0.03301, - 0.046516, - 0.016662, - 0.017875, - -0.0059609, - -0.11523, - -0.022794, - -0.0091918, - -0.061961, - 0.02872, - 0.0053776, - 0.0037341, - -0.0092854, - 0.036859, - -0.003517, - 0.037618, - -0.0060942, - 0.0030219, - -0.026823, - 0.019138, - 0.012643, - 0.0011217, - 0.068085, - -0.074563, - 0.031908, - -0.0051588, - -0.019989, - 0.051164, - 0.050734, - 0.032924, - -0.0041452, - 0.015781, - 0.050532, - -0.0059978, - -0.035782, - -0.00047623, - -0.014983, - -0.059964, - -0.034788, - 0.023739, - 0.012534, - -0.037001, - -0.026274, - 0.030002, - 0.0027913, - 0.0098791, - 0.022718, - -0.033031, - -0.030203, - 0.019084, - -0.012841, - -0.053177, - -0.07098, - 0.015998, - 0.0068268, - 0.032181, - -0.057031, - -0.056726, - -0.0037092, - 0.046166, - -0.0075686, - -0.047978, - 0.028087, - -0.010108, - 0.011827, - -0.020076, - 0.0057827, - 0.01618, - 0.029023, - 0.030475, - -0.0016935, - 0.04449, - 0.014222, - -0.045632, - -0.070887, - 0.035578, - 0.040845, - -0.066966, - -0.043773, - -0.0021077, - -0.0086421, - 0.0035004, - 0.046412, - -0.021165, - -0.022545, - 0.077714, - 0.024536, - -0.036144, - 0.029918, - 0.0086049, - 0.014744, - -0.005262, - 0.050946, - -0.029286, - 0.012818, - -0.046928, - -0.0023093, - 0.0067676, - -0.03109, - 0.0082948, - 0.010792, - 0.040821, - 0.01419, - -0.019315, - -0.068219 - ], - "banking": [ - -0.001507, - -0.091554, - -0.04703, - -0.07251, - -0.045393, - -0.091088, - 0.0029641, - -0.091164, - 0.10752, - 0.026958, - 0.012871, - -0.051855, - -0.062433, - 0.01561, - -0.024634, - -0.014548, - 0.091024, - -0.0024609, - 0.026995, - 0.001186, - 0.02285, - 0.038574, - 0.028843, - 0.050368, - -0.024299, - 0.026917, - 0.010621, - 0.056008, - -0.0051322, - 0.018081, - 0.0027517, - -0.033381, - -0.076357, - -0.060389, - 0.092597, - 0.04349, - 0.0036097, - -0.0013607, - -0.016057, - 0.021856, - -0.010476, - -0.12025, - 0.1275, - -0.037604, - -0.03795, - -0.031033, - -0.030366, - -0.025813, - -0.02142, - -0.009261, - 0.0044155, - -0.052149, - 0.063557, - -0.048602, - -0.045034, - -0.044616, - -0.012555, - 0.020596, - -0.024838, - -0.028108, - 0.0036212, - 0.11406, - 0.076395, - 0.061372, - 0.043098, - 0.00078692, - -0.035341, - -0.033292, - 0.0060797, - -0.017247, - 0.0049285, - -0.036527, - 0.03993, - 0.055483, - 0.019901, - 0.0081453, - 0.0064604, - -0.0037154, - 0.042274, - 0.015193, - 0.0021555, - -0.0069947, - -0.10457, - 0.087967, - -0.032506, - -0.061748, - 0.025837, - -0.0026229, - 0.056961, - -0.0048493, - 0.014791, - 0.058099, - -0.11183, - 0.0007468, - -0.034815, - 0.10017, - -0.027324, - -0.1001, - 0.003689, - -0.041388, - -0.017493, - -0.056374, - -0.055234, - -0.046792, - 0.041468, - -0.12021, - -0.060195, - -0.079061, - -0.00031354, - 0.000060465, - 0.042875, - 0.10346, - 0.06144, - 0.061432, - 0.0052195, - 0.056557, - -0.0064768, - 0.064164, - -0.045545, - -0.048891, - 0.0051702, - -0.022453, - 0.10736, - -0.012354, - 0.070246, - -0.0076943, - -0.049438, - -0.087549, - -0.019248, - 0.14606, - 0.024146, - 0.016349, - 0.011994, - 0.013242, - 0.031472, - 0.018269, - 0.01031, - -0.013151, - -0.0037133, - -0.014598, - 0.046454, - 0.038653, - -0.058566, - 0.12713, - 0.021507, - 0.033525, - 0.044236, - -0.0029725, - 0.055386, - -0.069579, - 0.055099, - 0.082093, - 0.033311, - -0.10382, - -0.017001, - 0.011701, - 0.0039567, - -0.0085728, - 0.012535, - 0.023589, - 0.043586, - 0.0058143, - -0.09769, - 0.08536, - 0.052675, - -0.026792, - 0.0013187, - -0.056606, - 0.010946, - 0.10926, - 0.0097468, - 0.046237, - -0.019901, - 0.053718, - -0.030395, - 0.054642, - -0.055248, - 0.031529, - -0.018257, - -0.0095008, - -0.04048, - 0.014684, - -0.038863, - 0.016762, - -0.0074032, - -0.018074, - -0.035546, - 0.10269, - 0.056722, - 0.031906, - -0.098559, - 0.048863, - 0.0044851, - -0.0086288, - 0.011757, - -0.059145, - -0.047509, - -0.082805, - -0.02341, - -0.061447, - -0.17419, - 0.014222, - -0.0032509, - -0.017579, - -0.037767, - 0.062074, - 0.00060459, - -0.13441, - -0.038646, - 0.0026503, - 0.13327, - 0.014759, - -0.023521, - 0.017344, - -0.034983, - 0.052437, - -0.023224, - -0.023243, - 0.0089322, - -0.04137, - 0.014752, - -0.065199, - -0.058664, - 0.096277, - -0.047981, - 0.062577, - 0.050116, - 0.05517, - 0.0028343, - -0.0027973, - 0.026801, - -0.007721, - -0.05256, - -0.029559, - 0.0090576, - 0.0015581, - -0.020776, - 0.14197, - -0.01304, - -0.052388, - 0.041858, - -0.0061175, - 0.02901, - -0.015, - -0.037047, - 0.046171, - 0.011554, - -0.013735, - -0.029699, - 0.045867, - 0.10746, - -0.034305, - -0.057727, - 0.085435, - -0.016268, - 0.084816, - -0.064521, - 0.033224, - -0.024575, - 0.021491, - 0.073098, - 0.042147, - 0.079034, - 0.03961, - -0.011146, - 0.014486, - -0.0049626, - 0.016058, - 0.019005, - -0.0032542, - -0.050806, - 0.059522, - -0.094028, - -0.013419, - -0.027214, - 0.0044854, - 0.055195, - 0.059765, - 0.050158, - -0.081868, - 0.10541, - 0.0231, - -0.013665, - 0.0010526, - 0.0081862, - -0.022888, - -0.017817, - -0.045963, - -0.054285, - -0.013002, - 0.020676, - 0.014298, - -0.054374, - 0.016486, - -0.047918, - 0.083742, - 0.005867, - -0.020895, - -0.067172, - -0.03929 - ], - "scientist": [ - -0.051788, - -0.067447, - 0.0056287, - -0.0057114, - -0.018465, - -0.085027, - 0.024596, - -0.09591, - 0.090579, - 0.052966, - -0.031417, - 0.038695, - -0.0088851, - -0.046153, - -0.021543, - 0.020075, - 0.05344, - 0.041148, - 0.0030801, - 0.081744, - -0.000020089, - 0.077842, - 0.022928, - 0.060163, - -0.027746, - -0.018687, - 0.014908, - 0.062447, - -0.02903, - 0.014373, - -0.012164, - -0.016299, - 0.082329, - -0.022723, - -0.020645, - 0.015696, - -0.013319, - -0.10331, - 0.045403, - 0.031359, - -0.05138, - -0.11309, - -0.032864, - -0.013856, - 0.059889, - 0.067067, - -0.017681, - -0.032919, - 0.002761, - -0.011579, - 0.0073683, - 0.040989, - -0.010921, - -0.01285, - 0.056797, - 0.025643, - 0.020616, - 0.058168, - 0.0029233, - 0.010758, - 0.029569, - 0.026303, - 0.064081, - -0.064702, - 0.039516, - 0.032819, - 0.027431, - -0.024206, - 0.0075, - -0.016635, - 0.091806, - -0.033556, - 0.10353, - -0.025943, - 0.0052788, - 0.054431, - -0.0024447, - -0.025311, - 0.032996, - 0.020754, - 0.014667, - 0.076083, - -0.042416, - -0.019598, - -0.040798, - -0.00030999, - 0.0017513, - 0.045738, - 0.027285, - -0.020985, - 0.019582, - 0.044856, - -0.078358, - -0.061201, - 0.0040221, - 0.083833, - 0.088791, - -0.021734, - 0.06592, - 0.022278, - -0.0071149, - -0.027312, - 0.060389, - 0.01556, - -0.055843, - -0.098121, - 0.054036, - 0.070848, - 0.022299, - 0.011021, - -0.05048, - 0.095236, - 0.02482, - -0.010182, - 0.020065, - 0.032281, - 0.0036348, - -0.020227, - -0.0026156, - 0.0047575, - 0.022536, - -0.041921, - -0.050686, - 0.033456, - 0.059653, - -0.021007, - 0.010233, - -0.03477, - -0.027087, - 0.076337, - -0.010187, - 0.068918, - -0.034648, - -0.0045474, - 0.0067319, - 0.016669, - 0.039029, - 0.088442, - -0.016685, - 0.044761, - 0.010347, - -0.031458, - 0.012395, - -0.0002259, - -0.05547, - -0.019048, - -0.042338, - 0.029683, - -0.018869, - -0.067827, - 0.074213, - 0.076163, - -0.019881, - -0.083971, - 0.02942, - -0.00068646, - 0.015999, - 0.0029915, - 0.0040903, - -0.044773, - 0.0195, - 0.066152, - -0.021395, - -0.025835, - 0.0080816, - -0.030024, - -0.092994, - 0.0018816, - 0.011716, - -0.029593, - 0.0010786, - -0.0060017, - -0.033927, - -0.019382, - 0.04852, - 0.041123, - -0.024886, - 0.043554, - -0.021805, - -0.0050058, - -0.047184, - 0.018805, - 0.010749, - -0.015769, - -0.017616, - -0.070189, - 0.014833, - 0.087197, - 0.014988, - 0.0067229, - 0.042269, - 0.12045, - -0.0067087, - -0.028677, - -0.031051, - 0.00074438, - -0.070645, - 0.016192, - -0.042532, - 0.021819, - -0.11261, - 0.024606, - -0.041809, - -0.016424, - -0.028955, - 0.03824, - -0.032535, - -0.0065579, - -0.044872, - -0.037562, - 0.066374, - 0.022535, - -0.035841, - 0.012166, - -0.11607, - 0.014916, - 0.033246, - -0.019072, - 0.025195, - 0.062604, - -0.054081, - 0.086424, - -0.097495, - 0.085892, - 0.048199, - 0.023057, - 0.039041, - 0.083589, - 0.0063002, - -0.0029109, - -0.035564, - -0.05381, - 0.029483, - -0.035674, - -0.034238, - 0.020164, - 0.02871, - -0.0076722, - -0.020472, - 0.0030957, - 0.061697, - -0.015938, - 0.029212, - 0.0076302, - 0.031367, - 0.027114, - -0.011697, - 0.0025043, - -0.03448, - -0.017903, - 0.027012, - 0.0065842, - 0.040671, - -0.08249, - 0.047876, - -0.0095485, - 0.042431, - 0.050732, - 0.028582, - -0.024548, - 0.030335, - 0.033977, - -0.0035699, - 0.029979, - -0.046305, - -0.050953, - -0.020747, - 0.054059, - 0.062177, - -0.039604, - -0.019249, - 0.073751, - -0.082544, - 0.002655, - 0.035981, - -0.031717, - 0.020663, - -0.03608, - 0.03614, - -0.026191, - 0.043953, - 0.0033635, - 0.021671, - -0.02184, - -0.011823, - -0.0020138, - -0.055338, - -0.12901, - -0.0048758, - 0.018072, - -0.06834, - 0.015784, - -0.031548, - 0.044432, - -0.028306, - -0.021122, - -0.017163, - 0.035083, - 0.0040407, - -0.0069176 - ], - "architecture": [ - 0.0071488, - -0.035481, - 0.0058507, - -0.040115, - 0.020215, - -0.046385, - -0.013453, - -0.062667, - 0.042783, - -0.012121, - 0.026908, - -0.041552, - 0.0090091, - 0.078355, - 0.0042286, - 0.031214, - 0.070032, - 0.021114, - 0.032174, - -0.02041, - -0.037722, - 0.010117, - 0.036932, - 0.034374, - 0.014415, - 0.029152, - -0.021266, - 0.022117, - 0.004793, - 0.043564, - -0.02889, - -0.035535, - 0.0076529, - -0.038288, - 0.018355, - 0.036335, - 0.067879, - 0.037999, - 0.046079, - -0.023519, - -0.037392, - -0.10884, - 0.017134, - -0.0058599, - -0.08321, - -0.0086735, - -0.013011, - -0.019332, - -0.0028787, - 0.00049841, - -0.015616, - -0.045819, - -0.010979, - 0.011236, - -0.034308, - -0.015257, - 0.0098112, - 0.0082911, - -0.030924, - 0.036593, - 0.043249, - 0.017425, - 0.064949, - -0.020475, - 0.053202, - 0.041406, - -0.029703, - 0.038564, - -0.003678, - 0.021911, - 0.011484, - 0.015771, - -0.012045, - -0.025497, - 0.0050328, - -0.032276, - -0.014622, - -0.011165, - -0.0095478, - 0.037309, - -0.0039822, - 0.010075, - 0.011654, - 0.039194, - -0.0020399, - -0.05012, - -0.012364, - -0.028961, - -0.012019, - 0.037694, - 0.019903, - 0.040005, - -0.065461, - 0.013433, - -0.0056847, - 0.06812, - 0.00067186, - -0.0045207, - 0.032546, - 0.064438, - 0.059699, - 0.004427, - 0.014174, - 0.013287, - -0.014826, - -0.046835, - -0.015091, - 0.068799, - -0.017845, - 0.022778, - -0.015417, - 0.088145, - 0.031085, - 0.044367, - 0.00078075, - -0.027204, - -0.045877, - 0.04303, - -0.019914, - 0.043572, - -0.0012633, - -0.061747, - -0.041088, - -0.0043932, - 0.052598, - 0.049442, - -0.039352, - -0.042657, - 0.027474, - 0.089848, - -0.029055, - -0.014921, - -0.0045487, - 0.012317, - -0.011876, - 0.055429, - -0.025936, - -0.004745, - 0.0044358, - -0.058679, - 0.052567, - 0.018279, - -0.0049432, - 0.02517, - 0.020325, - -0.033967, - 0.006973, - 0.012128, - 0.038008, - -0.045835, - 0.049921, - 0.028432, - 0.038933, - -0.046863, - -0.012543, - 0.057242, - 0.025955, - 0.038725, - -0.020397, - -0.0035218, - 0.0086755, - -0.021918, - -0.078602, - -0.023832, - 0.014924, - 0.021126, - 0.029105, - -0.0089286, - 0.011787, - 0.023658, - 0.050714, - 0.0058566, - 0.013516, - 0.000338, - 0.005295, - 0.033103, - -0.023601, - 0.030384, - -0.0263, - -0.0057809, - -0.018357, - -0.025461, - 0.0019793, - -0.00069182, - -0.017403, - -0.020178, - 0.021175, - 0.056103, - 0.0061519, - -0.016685, - -0.016605, - 0.073034, - -0.0074508, - 0.0060892, - -0.0025656, - -0.0018053, - -0.00059817, - 0.01092, - 0.039859, - -0.017244, - -0.10566, - -0.0061438, - -0.030819, - -0.05914, - 0.010015, - -0.0063566, - 0.0016887, - -0.032089, - -0.025963, - 0.00031455, - 0.10452, - 0.022249, - -0.0013787, - 0.0041364, - -0.0003587, - 0.056185, - 0.01092, - 0.014889, - -0.011636, - -0.028112, - -0.028115, - -0.0033135, - 0.019018, - 0.067641, - -0.021725, - 0.0039078, - 0.036305, - 0.030389, - -0.030111, - -0.0011734, - -0.03855, - -0.024403, - -0.040438, - 0.0012821, - 0.010765, - -0.025163, - -0.0023239, - 0.018792, - 0.0044529, - -0.016692, - 0.010061, - -0.018947, - 0.019905, - -0.015355, - 0.02689, - 0.0063469, - -0.066179, - -0.025232, - 0.024159, - 0.026152, - 0.044097, - -0.056655, - -0.046815, - -0.044547, - 0.0048319, - 0.036471, - -0.058199, - 0.01971, - 0.014973, - 0.016897, - -0.020078, - 0.06598, - -0.025237, - 0.0029894, - 0.050817, - -0.070515, - 0.033502, - -0.0057, - 0.017733, - 0.009379, - -0.016611, - 0.068022, - -0.081136, - -0.020051, - -0.0063448, - -0.0060995, - 0.069496, - -0.011416, - 0.0079385, - 0.0064339, - 0.066017, - 0.035948, - -0.034194, - 0.05162, - -0.020905, - -0.025218, - -0.027366, - 0.0083111, - -0.0076491, - 0.013154, - -0.047266, - -0.0027785, - -0.0022152, - -0.0624, - 0.040898, - 0.00010056, - 0.022253, - 0.05252, - -0.0059296, - -0.012695 - ], - "on-road": [ - -0.020263, - -0.0024183, - 0.0059879, - 0.12234, - -0.037005, - -0.0037728, - -0.012751, - -0.1048, - 0.038911, - -0.0094573, - -0.020121, - -0.066537, - -0.073278, - -0.00085072, - 0.058754, - 0.0015689, - 0.063457, - 0.035118, - 0.10216, - 0.025027, - 0.023086, - -0.057403, - 0.076397, - 0.076572, - 0.083527, - 0.0785, - -0.077749, - -0.031593, - 0.054566, - 0.0022364, - -0.045194, - 0.087069, - 0.023645, - -0.086829, - 0.080035, - 0.038272, - -0.0099698, - 0.0015246, - -0.0060883, - -0.033263, - 0.033987, - -0.11208, - 0.013462, - 0.059699, - -0.022572, - -0.075055, - -0.072105, - 0.0088393, - -0.034049, - 0.011413, - 0.050177, - 0.01317, - 0.034102, - 0.021442, - -0.012186, - -0.089394, - 0.0062947, - -0.01844, - -0.043361, - -0.027152, - 0.076555, - -0.017184, - 0.081935, - 0.084878, - 0.002531, - -0.10057, - -0.015328, - -0.025434, - 0.012268, - -0.062508, - 0.07559, - -0.091243, - 0.028307, - -0.055855, - 0.032723, - 0.028733, - -0.059396, - -0.10174, - -0.0066291, - 0.0046114, - -0.037174, - -0.038163, - 0.0071637, - 0.062789, - 0.078991, - 0.0035916, - 0.0084256, - -0.0085761, - 0.019132, - -0.054963, - 0.031793, - 0.037281, - -0.089287, - 0.030432, - 0.013209, - 0.030765, - -0.0066867, - 0.029971, - 0.011018, - -0.033325, - 0.00029768, - -0.025924, - -0.0083686, - -0.0031816, - 0.037094, - -0.052045, - 0.054175, - -0.038731, - -0.0021305, - 0.09952, - 0.080253, - 0.12948, - 0.07459, - 0.025173, - -0.054092, - -0.03943, - -0.018423, - 0.056055, - -0.02784, - -0.01931, - 0.032601, - 0.08524, - -0.027482, - -0.00245, - 0.053017, - -0.0031955, - -0.031247, - -0.069361, - 0.07298, - 0.042056, - 0.024366, - 0.040589, - 0.0011507, - -0.0019225, - -0.0084631, - -0.072046, - 0.13202, - 0.014272, - 0.0056535, - -0.077397, - -0.12298, - -0.012864, - 0.066974, - -0.026666, - 0.012923, - 0.035168, - 0.0099723, - -0.0014571, - -0.019823, - -0.016014, - 0.067654, - 0.13377, - 0.073369, - -0.0027176, - -0.025833, - 0.092433, - -0.032406, - 0.060202, - -0.023142, - 0.043047, - -0.0051746, - 0.041458, - -0.063973, - -0.013099, - 0.062452, - 0.0051788, - 0.079018, - 0.0038795, - 0.029607, - -0.028287, - 0.041642, - -0.044869, - 0.059326, - 0.035608, - 0.047259, - 0.049055, - -0.0013042, - -0.016809, - -0.079391, - -0.013049, - 0.060908, - -0.0042821, - 0.0035994, - 0.0012347, - 0.026374, - -0.041133, - -0.051321, - 0.14906, - -0.030429, - -0.016271, - 0.04487, - 0.022808, - 0.081188, - -0.014934, - 0.075309, - 0.061628, - -0.036212, - 0.032389, - 0.02093, - 0.0042718, - -0.15586, - 0.051271, - -0.047304, - -0.020949, - -0.016395, - 0.045892, - -0.031342, - 0.12796, - 0.02267, - -0.012218, - 0.14496, - -0.0061822, - 0.024532, - 0.012526, - 0.029011, - 0.0076052, - -0.09266, - -0.092794, - -0.0089585, - 0.0047862, - -0.076441, - -0.038541, - -0.025943, - 0.077774, - -0.043115, - 0.0049164, - -0.018515, - 0.072783, - -0.0062947, - -0.051985, - -0.011272, - -0.067211, - -0.042507, - -0.0032132, - 0.064966, - 0.026515, - 0.063359, - 0.026086, - -0.058989, - 0.010543, - 0.013053, - 0.10452, - -0.045352, - -0.051028, - -0.15486, - 0.034851, - 0.067006, - -0.092075, - 0.058082, - -0.013479, - 0.018214, - 0.075183, - -0.019547, - -0.021645, - -0.019664, - -0.026172, - 0.010408, - -0.042332, - 0.0013632, - 0.062768, - 0.021444, - 0.050636, - -0.14684, - -0.029869, - -0.038596, - 0.0049791, - 0.015676, - -0.011484, - 0.072277, - 0.012469, - -0.047685, - 0.09197, - -0.088905, - -0.053623, - -0.00060508, - -0.12984, - 0.024469, - 0.11486, - 0.023047, - 0.026034, - 0.1608, - 0.033803, - -0.06102, - 0.072767, - 0.0090225, - -0.10503, - -0.037534, - -0.0047968, - 0.099844, - -0.048911, - 0.060307, - -0.078147, - -0.028568, - 0.057827, - -0.033761, - -0.048034, - 0.013347, - -0.021874, - -0.030784, - -0.066017 - ], - "baroque": [ - 0.026317, - -0.028525, - -0.0066419, - -0.011969, - 0.0085813, - -0.05862, - -0.086954, - -0.10275, - 0.017582, - -0.038537, - 0.0092145, - -0.075421, - 0.018309, - 0.023168, - 0.0035638, - 0.058997, - 0.12636, - 0.14853, - 0.07839, - 0.047904, - -0.12295, - -0.061365, - -0.017721, - 0.054364, - 0.099383, - 0.005376, - -0.015515, - 0.086418, - 0.046219, - -0.012984, - -0.044175, - -0.06104, - -0.015551, - -0.057213, - 0.071962, - 0.036914, - 0.045939, - 0.034102, - 0.085196, - 0.021401, - -0.019729, - -0.10157, - -0.038763, - 0.02095, - -0.04256, - 0.0099917, - -0.014684, - 0.016886, - -0.018532, - -0.016737, - -0.059576, - -0.08759, - -0.059132, - 0.0038833, - -0.000028831, - -0.022238, - 0.055859, - 0.032008, - -0.017937, - 0.01598, - 0.048392, - -0.063136, - 0.12247, - -0.0014942, - 0.089105, - 0.058061, - 0.0034375, - -0.032929, - 0.05148, - -0.0058637, - 0.050657, - -0.0029483, - 0.020919, - 0.0095232, - 0.0014305, - 0.039089, - -0.01506, - -0.039536, - -0.024569, - 0.055472, - -0.050208, - -0.015692, - -0.057928, - 0.01769, - 0.013578, - -0.099401, - 0.01716, - 0.021396, - -0.017596, - 0.026214, - -0.016036, - -0.027072, - -0.13329, - 0.023538, - 0.048667, - 0.097004, - -0.040528, - -0.024996, - -0.032631, - 0.082466, - 0.05541, - 0.054605, - -0.02267, - 0.0063676, - -0.016054, - -0.1164, - 0.083744, - -0.051522, - -0.051813, - 0.0091839, - 0.013899, - 0.069108, - 0.063498, - 0.0075604, - -0.086356, - 0.024796, - 0.022966, - 0.085393, - -0.0026678, - 0.020979, - 0.016047, - -0.031067, - -0.038262, - -0.021059, - 0.10024, - -0.0051326, - 0.064347, - 0.0026807, - -0.026482, - 0.08273, - -0.078926, - 0.050746, - -0.059321, - 0.016993, - -0.014373, - -0.032487, - -0.022219, - 0.065579, - 0.022438, - -0.12066, - 0.020734, - 0.021216, - -0.046577, - 0.11873, - -0.014415, - -0.057331, - 0.070957, - 0.017608, - 0.042778, - -0.046041, - 0.096848, - 0.15289, - 0.036994, - 0.075847, - -0.016402, - 0.047399, - 0.019608, - 0.015089, - -0.022893, - -0.01449, - -0.006711, - 0.056344, - -0.091125, - -0.071782, - 0.031114, - 0.10077, - -0.043491, - -0.0057196, - 0.032334, - 0.017716, - 0.0047211, - 0.011957, - 0.030741, - -0.1044, - 0.044793, - 0.040861, - 0.00043671, - -0.083283, - -0.082738, - -0.035389, - -0.038481, - 0.036941, - -0.030934, - -0.050976, - 0.042313, - -0.018391, - 0.065739, - 0.12923, - 0.058821, - -0.054089, - 0.075988, - 0.05717, - 0.015165, - -0.022396, - -0.068089, - -0.012559, - -0.017557, - 0.054993, - 0.029693, - 0.033499, - -0.18991, - -0.035701, - -0.063069, - -0.027998, - 0.030257, - -0.021594, - 0.022207, - 0.025663, - -0.11363, - -0.017506, - 0.15587, - -0.026999, - 0.045302, - 0.067896, - 0.081488, - -0.0089109, - 0.022153, - 0.09783, - -0.079317, - -0.024941, - 0.047876, - 0.002356, - 0.03162, - 0.1142, - -0.071452, - -0.029504, - 0.050454, - 0.083512, - -0.020035, - -0.053358, - -0.013676, - -0.015671, - -0.045291, - -0.0083395, - 0.033145, - -0.034969, - -0.012682, - -0.075694, - 0.03269, - -0.060982, - 0.087013, - -0.056453, - -0.046907, - -0.10002, - -0.10504, - -0.088697, - -0.093185, - -0.0057495, - 0.0050572, - 0.018438, - 0.00037207, - -0.07304, - -0.14544, - -0.11668, - 0.0089971, - 0.06677, - -0.057897, - -0.018817, - 0.014353, - 0.050495, - 0.090627, - -0.012981, - 0.10225, - 0.0016115, - 0.0098531, - -0.035395, - -0.069173, - -0.0030759, - 0.057828, - -0.039654, - 0.038054, - 0.11221, - -0.071035, - -0.045678, - 0.0095652, - -0.12565, - 0.017112, - -0.027465, - 0.01319, - 0.026479, - 0.16862, - 0.069265, - -0.01797, - -0.0077037, - -0.060479, - 0.0027389, - 0.0079385, - -0.055556, - 0.0098581, - 0.063383, - -0.076354, - 0.033684, - 0.070096, - -0.054342, - 0.011817, - 0.010945, - 0.025798, - 0.11571, - 0.024453, - -0.07111 - ], - "snowstorm": [ - 0.062721, - 0.017033, - -0.019598, - -0.0068138, - -0.017741, - -0.074839, - -0.049309, - -0.051168, - 0.070852, - 0.0059465, - 0.0010707, - -0.052723, - -0.058451, - 0.039939, - -0.042337, - -0.010562, - 0.044914, - 0.0081462, - 0.013366, - 0.011436, - 0.045575, - -0.071213, - -0.08028, - 0.036156, - 0.13593, - -0.0195, - 0.0037816, - 0.096552, - 0.015279, - 0.059622, - -0.017428, - -0.041429, - 0.045346, - -0.089956, - -0.00016595, - 0.036211, - -0.023564, - 0.015668, - 0.00029198, - -0.052164, - -0.063656, - -0.074098, - 0.036481, - 0.029208, - 0.029174, - 0.095888, - 0.057322, - -0.012006, - -0.039501, - 0.02977, - 0.10918, - -0.022184, - -0.029321, - 0.037681, - -0.05478, - 0.04999, - 0.12442, - -0.067794, - -0.038456, - 0.040587, - 0.0065735, - -0.010255, - 0.0047338, - 0.02006, - -0.058453, - 0.019315, - -0.0020406, - 0.010191, - 0.0082116, - 0.051451, - 0.023118, - 0.078317, - -0.041435, - -0.0094815, - 0.0074857, - -0.0058639, - -0.021461, - 0.012874, - -0.03358, - 0.077121, - -0.016169, - 0.035491, - -0.046977, - 0.019879, - 0.05608, - 0.01668, - 0.035296, - -0.030255, - 0.066708, - -0.066876, - -0.0057912, - 0.017422, - -0.098062, - -0.025048, - -0.0075771, - 0.043362, - -0.0084032, - 0.098677, - 0.074218, - 0.043217, - 0.019327, - 0.000117, - 0.014068, - 0.054165, - 0.018956, - -0.038394, - -0.057439, - 0.035147, - 0.00023085, - -0.034384, - 0.0080483, - 0.044593, - 0.031707, - 0.097487, - -0.0055403, - -0.027769, - 0.037953, - 0.11342, - -0.018505, - -0.03406, - -0.0132, - -0.028164, - 0.047149, - -0.0085129, - 0.037034, - 0.0010965, - 0.022163, - -0.066573, - -0.040905, - 0.01763, - 0.0429, - -0.035268, - -0.046682, - 0.090002, - 0.01902, - 0.014001, - 0.054571, - 0.0521, - -0.093082, - 0.014529, - 0.03474, - -0.095213, - -0.032028, - -0.058015, - -0.058038, - -0.014633, - -0.02286, - -0.0099005, - 0.023471, - -0.023686, - 0.04843, - 0.054317, - -0.023591, - 0.0034573, - 0.06715, - -0.026367, - 0.037552, - -0.015531, - -0.058427, - -0.023162, - 0.048435, - 0.0081578, - -0.11463, - -0.019297, - -0.036528, - 0.0010447, - 0.0049, - 0.055118, - 0.022484, - 0.074401, - -0.021336, - -0.01361, - -0.0035807, - 0.012053, - 0.063787, - 0.040266, - 0.062246, - 0.025252, - 0.010133, - -0.019731, - 0.037383, - -0.037428, - -0.0024303, - -0.12133, - -0.040782, - -0.079071, - -0.076175, - 0.12537, - 0.030577, - -0.041354, - 0.056331, - -0.02419, - 0.0066924, - -0.060198, - 0.025375, - 0.0014801, - -0.041032, - -0.016409, - -0.01049, - -0.024316, - -0.13781, - 0.02723, - -0.063348, - 0.023477, - 0.054329, - 0.091105, - -0.032841, - 0.063455, - -0.052427, - -0.051023, - 0.078558, - -0.052623, - -0.0069488, - 0.075819, - 0.13578, - 0.00054748, - 0.046868, - -0.14033, - 0.036583, - -0.094508, - 0.027832, - -0.037995, - -0.042602, - 0.063545, - -0.092384, - 0.085902, - -0.091171, - 0.044342, - -0.10366, - 0.0046594, - 0.019248, - -0.11924, - -0.032368, - -0.0052631, - -0.020052, - -0.056175, - 0.1562, - 0.013293, - 0.036929, - -0.029156, - 0.076922, - 0.047002, - -0.022137, - -0.071202, - -0.017492, - 0.047229, - 0.078575, - 0.043023, - -0.076221, - -0.042045, - 0.0023556, - 0.044434, - -0.049429, - 0.095718, - -0.022646, - 0.049527, - 0.019708, - -0.0069721, - 0.030901, - 0.090788, - 0.048531, - -0.0036815, - -0.092762, - -0.020415, - 0.0017422, - 0.0048603, - -0.016837, - 0.0026768, - 0.019078, - -0.054152, - -0.048073, - 0.089996, - -0.11359, - 0.015282, - 0.0038684, - -0.072623, - -0.10027, - -0.063335, - 0.0055123, - -0.014303, - 0.068904, - -0.016983, - 0.031896, - -0.059045, - -0.024734, - -0.0011021, - 0.011501, - -0.029225, - -0.065653, - 0.010499, - -0.025414, - -0.020655, - -0.021566, - -0.013579, - 0.018922, - -0.086082, - 0.010981, - 0.047103, - 0.071227, - -0.051949 - ], - "architecturally": [ - 0.0045782, - 0.022305, - 0.022469, - 0.0097218, - 0.018427, - -0.015199, - -0.0071391, - -0.055996, - -0.035061, - -0.0096649, - 0.0091657, - -0.0083019, - 0.011883, - 0.077665, - -0.0038068, - 0.024324, - 0.019221, - 0.026731, - 0.0074269, - -0.027225, - -0.031166, - -0.0032051, - 0.027315, - 0.051958, - 0.0081032, - 0.010271, - -0.015716, - 0.022205, - 0.071452, - 0.0533, - -0.012544, - -0.044194, - -0.019859, - -0.027002, - 0.034668, - 0.067572, - 0.029129, - 0.049484, - 0.017272, - -0.018408, - 0.02031, - -0.086124, - 0.02353, - 0.01667, - -0.072773, - -0.05607, - 0.0052705, - 0.0064544, - -0.0039245, - 0.021137, - -0.025434, - -0.027917, - -0.042541, - 0.031273, - -0.063709, - 0.015636, - 0.014938, - 0.013482, - -0.0038018, - 0.0070405, - 0.020764, - 0.030542, - 0.052843, - -0.038333, - 0.058646, - 0.034964, - -0.010524, - 0.042709, - -0.013946, - -0.01565, - 0.027468, - -0.0041717, - -0.050655, - -0.0029428, - -0.0060939, - -0.010033, - -0.039294, - -0.030364, - 0.016899, - 0.056664, - 0.030938, - 0.026185, - 0.016508, - 0.0029512, - -0.00076444, - -0.011385, - -0.0090023, - 0.021782, - -0.03508, - 0.0073941, - 0.0066283, - 0.0034664, - -0.056655, - -0.0019184, - -0.009459, - -0.016581, - 0.007432, - -0.01439, - 0.10527, - 0.067145, - 0.067733, - 0.014273, - -0.028578, - 0.043557, - -0.038475, - -0.069115, - 0.015884, - 0.041851, - -0.018449, - 0.040865, - -0.01893, - 0.070343, - 0.00082609, - 0.047752, - -0.046549, - -0.041656, - -0.054015, - 0.034254, - -0.031627, - 0.049226, - 0.011764, - -0.05796, - -0.03225, - 0.020903, - 0.071524, - 0.018332, - -0.0042736, - 0.031978, - 0.0084702, - -0.03522, - -0.029872, - 0.039628, - -0.017449, - 0.0109, - -0.025253, - 0.044673, - -0.024564, - 0.0017901, - -0.035688, - -0.038958, - -0.0097779, - 0.042558, - 0.021862, - 0.013811, - 0.046755, - -0.015005, - 0.034465, - 0.039749, - 0.026709, - 0.019749, - 0.03767, - 0.035067, - 0.022991, - 0.00061008, - -0.0091329, - -0.011577, - 0.032231, - 0.010288, - -0.027682, - 0.00082923, - 0.016074, - 0.0020461, - -0.030485, - -0.027253, - 0.027164, - 0.055881, - 0.031416, - -0.0020336, - 0.024771, - 0.040025, - 0.079041, - -0.0026175, - 0.012416, - -0.0001769, - 0.011661, - 0.01949, - -0.026499, - -0.0084848, - -0.025032, - -0.019819, - -0.0087753, - -0.047907, - 0.017496, - 0.015283, - -0.020817, - 0.044219, - -0.015527, - 0.087448, - -0.0058775, - -0.032603, - 0.020135, - 0.050067, - -0.029658, - 0.017809, - -0.017943, - -0.013633, - 0.0010636, - 0.030309, - 0.029645, - -0.032715, - -0.10011, - 0.035883, - -0.059816, - -0.016581, - 0.0075021, - -0.05838, - -0.0060019, - -0.018446, - -0.027771, - -0.074641, - -0.014368, - -0.014161, - -0.00031253, - -0.01101, - 0.0078526, - 0.025214, - -0.0055062, - 0.025599, - -0.11375, - -0.015329, - -0.016369, - 0.022346, - 0.019161, - 0.036863, - -0.019364, - 0.0024735, - 0.020364, - 0.036643, - -0.030953, - -0.003717, - -0.044021, - 0.0099078, - -0.024306, - 0.0094367, - 0.031414, - -0.0045862, - -0.0022295, - 0.01096, - -0.00065112, - 0.018919, - 0.066483, - -0.014947, - 0.005418, - -0.004155, - -0.045808, - 0.014021, - -0.030423, - -0.011738, - 0.030681, - -0.073233, - -0.042108, - -0.031434, - -0.031909, - -0.031431, - -0.0060814, - 0.047401, - -0.059311, - -0.0052967, - 0.01731, - 0.01085, - -0.0073895, - 0.0043883, - -0.017946, - 0.057522, - 0.058915, - -0.039214, - 0.027546, - -0.074687, - 0.014429, - 0.022932, - -0.0064735, - 0.057039, - -0.061932, - 0.00012297, - 0.032828, - -0.075714, - 0.047276, - -0.016412, - 0.011254, - -0.01009, - 0.032205, - 0.031186, - -0.0036859, - 0.042382, - -0.025726, - -0.024311, - 0.020909, - 0.00747, - -0.0037165, - 0.022679, - -0.042548, - 0.016899, - 0.046275, - -0.026582, - 0.031722, - -0.0088945, - 0.028235, - 0.061637, - -0.0061373, - 0.019782 - ], - "traverse": [ - -0.064439, - -0.0060169, - 0.022835, - 0.018718, - -0.013135, - -0.023993, - -0.056015, - -0.10118, - 0.013422, - -0.028205, - -0.01616, - -0.10873, - -0.063788, - 0.026548, - -0.021193, - -0.027505, - 0.068874, - -0.029353, - 0.05888, - -0.012192, - -0.0066306, - -0.0011399, - 0.008609, - 0.056533, - 0.0015272, - 0.069457, - 0.00076676, - 0.043614, - -0.011708, - 0.016198, - -0.039144, - 0.09303, - 0.0543, - 0.038101, - -0.0090258, - 0.0082405, - 0.077165, - -0.021668, - -0.037178, - -0.047584, - 0.025709, - -0.086004, - 0.038813, - -0.046819, - -0.064976, - 0.0041472, - 0.013737, - 0.021559, - -0.016859, - 0.0080494, - -0.0054826, - 0.065037, - -0.026781, - -0.0028888, - -0.10497, - 0.0089895, - -0.0083935, - -0.0038803, - -0.055077, - -0.023795, - 0.0067777, - -0.021831, - 0.11509, - -0.021541, - 0.03536, - -0.030886, - 0.040832, - -0.0427, - -0.03191, - 0.084045, - 0.040453, - 0.0096639, - 0.0049199, - 0.0080522, - 0.017457, - -0.0020471, - -0.030742, - 0.021426, - -0.070285, - -0.0054312, - -0.034303, - -0.037711, - -0.081902, - 0.071957, - 0.030228, - -0.015128, - 0.038815, - 0.0043891, - -0.0089675, - 0.038537, - 0.052552, - 0.012446, - -0.073274, - 0.015766, - -0.020609, - 0.0009706, - -0.038806, - 0.027221, - 0.02395, - -0.049091, - 0.058959, - 0.00024593, - 0.037334, - -0.045893, - 0.016606, - -0.053523, - 0.071817, - 0.021411, - 0.053508, - 0.0035814, - 0.044836, - 0.022779, - 0.093987, - -0.043109, - 0.014169, - 0.023908, - 0.016964, - 0.030458, - -0.028133, - -0.013291, - 0.10728, - 0.0014804, - 0.0067276, - 0.019126, - 0.014454, - -0.037901, - -0.032512, - -0.097003, - 0.079762, - 0.057791, - 0.018946, - -0.0022186, - -0.043896, - 0.00014141, - 0.028339, - 0.014954, - 0.025263, - 0.019621, - -0.051045, - 0.0025947, - -0.039644, - -0.071527, - -0.044254, - -0.022415, - 0.0052173, - 0.02617, - -0.021601, - 0.020369, - 0.0086431, - -0.019188, - 0.00017848, - 0.11646, - -0.0090688, - -0.013071, - 0.11901, - -0.044181, - -0.096288, - 0.0082917, - -0.034446, - 0.028422, - 0.005234, - 0.005247, - -0.033904, - -0.013556, - 0.00035771, - 0.045005, - 0.05491, - -0.014866, - 0.0063036, - -0.010468, - -0.010257, - 0.028095, - -0.031907, - 0.011221, - 0.0036963, - 0.031641, - 0.057596, - 0.011982, - -0.043618, - 0.0076365, - 0.050142, - 0.0055696, - -0.02566, - -0.0093198, - 0.0075081, - -0.039235, - -0.033624, - 0.062707, - -0.023347, - -0.025682, - 0.055652, - -0.011407, - -0.054012, - 0.02663, - -0.0051359, - 0.056292, - -0.00054087, - 0.0029354, - 0.024704, - 0.014716, - -0.12762, - 0.032348, - 0.032608, - 0.032132, - 0.026551, - -0.0077963, - -0.0072732, - 0.038298, - 0.046043, - -0.019349, - 0.075947, - -0.070503, - 0.097489, - -0.014103, - 0.062339, - -0.059963, - 0.00079647, - 0.0049462, - 0.0068573, - -0.035349, - 0.0079353, - 0.054153, - -0.010531, - 0.098094, - -0.044875, - 0.020934, - 0.079999, - 0.03744, - 0.012314, - 0.0038352, - -0.072451, - -0.084838, - -0.05254, - 0.0004613, - 0.03124, - -0.044883, - 0.01772, - 0.02638, - -0.042358, - 0.01321, - 0.17773, - 0.041624, - -0.03347, - 0.022103, - -0.064568, - 0.024587, - -0.0041895, - -0.029274, - -0.0035228, - 0.052671, - -0.00013105, - -0.01527, - 0.044615, - 0.038277, - -0.008197, - 0.074177, - -0.054964, - 0.039445, - 0.081084, - 0.081699, - -0.0056459, - 0.0088721, - -0.040718, - -0.10813, - -0.038567, - -0.014833, - 0.053646, - 0.0019645, - 0.0097673, - -0.0037401, - -0.028742, - 0.093165, - -0.081893, - -0.039753, - 0.028721, - -0.0016708, - 0.037814, - -0.063512, - 0.038928, - 0.012643, - 0.041513, - 0.028776, - -0.057944, - -0.066907, - -0.019092, - -0.061869, - -0.030685, - -0.045255, - 0.017676, - -0.0026372, - 0.033422, - -0.026895, - -0.041925, - -0.060659, - 0.024135, - -0.014016, - -0.00017456, - 0.011425, - 0.022563, - 0.012818 - ], - "militaries": [ - -0.0032929, - -0.067145, - 0.027928, - -0.0353, - -0.074347, - 0.027484, - 0.016201, - -0.067711, - 0.033307, - 0.091825, - 0.022834, - -0.035962, - -0.01166, - 0.005234, - 0.034819, - 0.099277, - 0.091064, - 0.010349, - 0.043232, - -0.025135, - 0.00069445, - -0.051791, - -0.011166, - 0.059385, - -0.032711, - -0.0021285, - 0.044945, - -0.050088, - 0.042576, - 0.014242, - 0.031841, - -0.010169, - -0.011152, - -0.0036855, - 0.049716, - 0.040131, - -0.041466, - 0.04455, - 0.02124, - 0.020696, - -0.03852, - -0.063728, - 0.011193, - 0.012228, - 0.0079188, - -0.0039163, - 0.041694, - -0.036181, - 0.0065108, - -0.0027805, - -0.026907, - 0.018591, - 0.02205, - -0.025732, - -0.036487, - 0.038656, - 0.036872, - -0.0064294, - 0.0048594, - 0.0060419, - 0.0071545, - -0.050454, - 0.064946, - -0.022477, - -0.019506, - -0.073003, - -0.0004071, - 0.00022105, - 0.047384, - 0.024251, - -0.0043918, - -0.019794, - 0.055099, - -0.0044556, - 0.0063629, - -0.022232, - 0.070263, - -0.00042418, - 0.0028392, - 0.045182, - -0.021885, - 0.04225, - -0.082214, - 0.057755, - -0.010785, - 0.00061017, - -0.0087518, - -0.023875, - -0.037568, - 0.042022, - -0.055726, - 0.016224, - -0.054181, - 0.029403, - 0.029861, - 0.02758, - -0.0366, - -0.067013, - 0.035071, - -0.017574, - 0.022573, - -0.0090515, - 0.034201, - -0.11378, - 0.058627, - -0.062816, - 0.037665, - -0.0064317, - -0.005286, - 0.000047691, - -0.00015169, - 0.062535, - 0.020558, - 0.050979, - 0.024424, - -0.026682, - 0.010446, - 0.043004, - -0.048457, - 0.017642, - -0.011334, - -0.041325, - -0.036295, - -0.040907, - 0.050955, - 0.079858, - -0.031319, - -0.074728, - -0.014196, - 0.085466, - -0.072907, - 0.12023, - 0.057916, - -0.010466, - 0.049342, - 0.0077895, - -0.017538, - 0.052251, - 0.001703, - 0.058135, - -0.022549, - -0.08726, - -0.024942, - 0.041876, - 0.055214, - 0.039666, - 0.019761, - 0.0012129, - 0.056585, - -0.056169, - 0.10473, - 0.094535, - 0.01721, - -0.0041435, - -0.024462, - -0.0049643, - -0.068156, - 0.0069273, - 0.043331, - -0.023473, - 0.047634, - -0.023201, - 0.019799, - -0.011578, - -0.082339, - 0.037466, - 0.01277, - 0.044585, - 0.033687, - -0.071316, - 0.01729, - -0.030468, - -0.035964, - -0.032078, - -0.070356, - 0.038431, - -0.036446, - 0.043133, - -0.047267, - 0.011688, - 0.038625, - 0.032506, - 0.0027257, - 0.022234, - 0.018278, - -0.02338, - 0.03361, - 0.080738, - 0.033342, - 0.020982, - 0.018424, - 0.098227, - -0.042555, - -0.095961, - 0.012822, - 0.032242, - -0.050792, - -0.015351, - -0.029116, - 0.032816, - -0.11717, - -0.018112, - -0.049696, - 0.074786, - 0.055296, - -0.060586, - -0.00015836, - 0.064519, - 0.035354, - -0.006662, - 0.046937, - 0.0072214, - 0.035134, - 0.0088394, - -0.016564, - 0.021487, - -0.016453, - -0.019102, - -0.031339, - 0.038049, - -0.012293, - -0.02526, - -0.0077309, - 0.078048, - 0.0037432, - 0.031406, - -0.0060174, - 0.040995, - 0.011374, - -0.043736, - -0.0010193, - 0.0033352, - -0.079436, - -0.051343, - 0.038639, - 0.00097955, - -0.052349, - 0.049972, - -0.020157, - -0.012443, - -0.0014267, - 0.020877, - 0.0060186, - 0.010867, - 0.013373, - 0.031185, - -0.056541, - -0.056245, - 0.026734, - -0.056138, - 0.0057656, - 0.055322, - -0.010237, - -0.026459, - -0.025092, - 0.056247, - 0.064586, - 0.028714, - -0.0070169, - 0.019206, - -0.033041, - -0.041944, - 0.011143, - -0.0093222, - -0.040676, - -0.013636, - 0.048845, - -0.006197, - -0.010334, - 0.030217, - -0.026349, - 0.084636, - -0.084246, - -0.036907, - 0.013649, - -0.004242, - -0.060459, - -0.025624, - -0.0047412, - -0.024136, - 0.025872, - 0.033524, - -0.013314, - 0.027106, - 0.015602, - -0.0065365, - -0.013272, - -0.10411, - -0.0024262, - -0.013059, - -0.058342, - -0.0080811, - -0.017303, - 0.0044825, - 0.038791, - -0.02035, - 0.025596, - 0.014965, - -0.062935, - -0.062449 - ], - "art": [ - -0.052789, - -0.12393, - 0.10247, - -0.043017, - 0.080073, - -0.077233, - -0.033596, - -0.1629, - 0.13154, - -0.082232, - -0.0015712, - -0.11515, - -0.00017729, - -0.01812, - -0.048384, - -0.014125, - 0.16272, - 0.094124, - 0.030981, - -0.074174, - -0.08946, - 0.00041179, - 0.064054, - 0.06858, - 0.0046885, - 0.059534, - -0.0056558, - 0.012252, - -0.0013439, - 0.092446, - 0.0028748, - 0.039637, - 0.073404, - -0.12607, - 0.080194, - 0.0096281, - 0.11925, - -0.00022886, - -0.017831, - 0.01124, - -0.08463, - -0.20404, - -0.026027, - 0.041018, - -0.015474, - -0.05071, - 0.14414, - 0.026679, - -0.018918, - -0.00092227, - -0.088329, - -0.050511, - -0.041674, - -0.01212, - -0.080929, - 0.023189, - 0.026125, - -0.01274, - -0.095024, - -0.00053336, - 0.011592, - -0.11487, - 0.17537, - 0.027172, - 0.078373, - -0.039678, - -0.12439, - 0.064768, - 0.080978, - 0.033574, - 0.084013, - 0.064138, - 0.014693, - 0.057646, - 0.040033, - 0.048069, - -0.025022, - -0.024874, - 0.1048, - 0.0079412, - -0.0075286, - -0.0073852, - -0.065008, - 0.052987, - -0.09461, - -0.11901, - -0.036594, - 0.014252, - -0.049043, - 0.10359, - -0.039774, - 0.10803, - -0.18162, - 0.013053, - 0.01908, - 0.10698, - 0.014094, - 0.1099, - 0.026867, - 0.10842, - 0.097993, - 0.033496, - 0.094291, - 0.049026, - 0.0067796, - -0.14042, - -0.10702, - 0.13584, - -0.011867, - 0.01506, - -0.071596, - 0.21551, - 0.076742, - -0.012023, - -0.023101, - -0.0063799, - -0.063362, - -0.048425, - -0.060121, - 0.061328, - -0.10082, - 0.017472, - -0.11723, - -0.041428, - 0.066369, - -0.039103, - -0.097218, - -0.13295, - 0.055346, - 0.15707, - -0.026707, - -0.019733, - -0.0036733, - 0.087532, - 0.031201, - -0.050095, - 0.0081434, - -0.0097561, - 0.065882, - -0.053202, - 0.048197, - -0.03605, - -0.011903, - 0.059027, - 0.0087131, - -0.078613, - -0.16969, - 0.0061936, - 0.0071079, - -0.082641, - 0.12416, - 0.073691, - -0.013093, - -0.15114, - -0.12807, - 0.041893, - 0.046347, - 0.087798, - -0.03336, - -0.049317, - 0.021142, - 0.019702, - -0.17714, - 0.049979, - -0.019478, - 0.04135, - 0.021266, - -0.010324, - 0.068645, - 0.042971, - 0.175, - 0.064748, - 0.065113, - -0.052382, - 0.047117, - 0.11433, - 0.031704, - 0.083352, - -0.079923, - 0.034591, - -0.016696, - -0.0097097, - -0.061763, - -0.10847, - -0.046192, - -0.022751, - 0.082776, - 0.17738, - 0.052098, - -0.023056, - 0.0052719, - 0.11841, - -0.018401, - -0.039144, - -0.1437, - 0.039107, - 0.053111, - -0.001128, - 0.020994, - 0.06372, - -0.24495, - 0.087714, - 0.032587, - -0.042768, - 0.10331, - -0.031568, - 0.043426, - -0.050718, - 0.000081274, - -0.006491, - 0.21788, - 0.024361, - -0.010549, - 0.049664, - 0.01394, - 0.067625, - 0.076172, - -0.04498, - -0.026188, - 0.022443, - 0.02305, - -0.11895, - 0.016416, - 0.15859, - -0.076947, - 0.12804, - 0.10949, - 0.16798, - -0.018355, - 0.0075518, - -0.036758, - -0.052881, - -0.11201, - -0.067821, - 0.019931, - 0.035181, - -0.051585, - -0.065216, - -0.027958, - -0.04106, - 0.072942, - -0.050272, - -0.11445, - 0.014096, - -0.062181, - 0.069076, - -0.14827, - -0.016515, - 0.011205, - 0.036585, - 0.1108, - -0.053108, - 0.012351, - -0.012684, - -0.0071553, - 0.041153, - -0.093184, - 0.061711, - 0.026839, - 0.057969, - 0.040081, - 0.029201, - 0.074269, - 0.018399, - 0.038671, - -0.026445, - 0.074914, - 0.029227, - 0.014999, - -0.0058163, - 0.076596, - 0.13579, - -0.15499, - -0.061513, - -0.022134, - -0.06822, - 0.063056, - 0.13192, - -0.061445, - 0.041624, - 0.15798, - 0.062794, - -0.0039769, - -0.09673, - -0.029332, - -0.04437, - 0.0041553, - -0.015682, - -0.0031182, - 0.045375, - -0.091716, - -0.026144, - 0.0029256, - -0.074529, - -0.031485, - 0.009874, - -0.038238, - 0.0080434, - -0.0066833, - -0.054868 - ], - "Pets": [ - -0.023907, - -0.038449, - 0.020112, - -0.052129, - -0.10844, - 0.10887, - 0.06951, - 0.016, - 0.12371, - 0.06581, - -0.010346, - -0.037639, - 0.031347, - -0.11004, - -0.040691, - -0.072165, - 0.030595, - 0.076879, - 0.094054, - -0.11875, - 0.10128, - -0.07995, - 0.042722, - -0.010842, - 0.078359, - 0.016103, - 0.027698, - 0.048124, - 0.14497, - -0.017024, - -0.080898, - -0.1906, - -0.032474, - 0.11586, - 0.038133, - -0.0057688, - 0.0013559, - -0.24133, - -0.01274, - -0.064846, - -0.016819, - 0.21265, - -0.011678, - 0.02884, - 0.093126, - 0.0086457, - -0.0079922, - -0.068864, - -0.071914, - -0.14113, - 0.023866, - 0.09647, - -0.01988, - -0.1518, - -0.044606, - 0.017907, - -0.043658, - 0.046651, - -0.19375, - -0.11253, - -0.061436, - -0.17634, - -0.028851, - 0.016701, - 0.10126, - 0.022233, - 0.034902, - -0.050209, - -0.090561, - -0.067878, - 0.011705, - -0.026211, - -0.029469, - -0.033523, - -0.046008, - 0.13801, - -0.055863, - -0.18894, - -0.052156, - -0.074141, - 0.078476, - -0.07161, - 0.078276, - -0.04274, - 0.053674, - -0.030117, - 0.00047322, - -0.11696, - 0.032539, - -0.036138, - 0.071396, - -0.068606, - -0.042138, - -0.013689, - -0.084551, - 0.191, - 0.039441, - 0.28253, - 0.049548, - -0.063579, - -0.044793, - 0.14226, - -0.0056184, - -0.064722, - -0.016695, - -0.17877, - -0.027339, - -0.032302, - 0.059305, - -0.10899, - -0.0062208, - 0.04188, - 0.044957, - 0.12535, - 0.051491, - -0.055054, - 0.010966, - -0.057956, - 0.14373, - 0.033216, - -0.11576, - 0.28542, - 0.061912, - -0.082569, - 0.074856, - 0.048958, - -0.0099025, - 0.011605, - -0.012337, - 0.34126, - -0.021914, - 0.092423, - -0.013021, - -0.031973, - 0.057236, - -0.051391, - 0.01553, - 0.019629, - 0.0035026, - -0.015602, - 0.044581, - 0.037863, - -0.010359, - -0.070087, - 0.039886, - -0.004717, - 0.087846, - -0.098247, - 0.10252, - -0.04209, - 0.038498, - 0.05969, - -0.035561, - 0.0034657, - -0.10422, - 0.024495, - -0.042926, - 0.022269, - 0.083966, - -0.12226, - 0.010652, - -0.13951, - -0.053215, - 0.12679, - 0.14501, - -0.061511, - 0.023367, - -0.050099, - 0.044657, - 0.031005, - -0.038817, - 0.03811, - 0.072667, - -0.033749, - -0.11596, - 0.013362, - -0.083542, - 0.073996, - -0.049414, - 0.098343, - 0.046805, - -0.068201, - 0.031478, - -0.019692, - 0.066072, - 0.11722, - 0.15453, - 0.26878, - -0.052938, - -0.1472, - 0.038254, - 0.13251, - -0.12441, - -0.028533, - -0.087431, - 0.084754, - -0.037931, - -0.034538, - 0.081121, - -0.047867, - 0.0181, - 0.34641, - 0.017701, - 0.0060832, - 0.051867, - -0.16236, - -0.054264, - -0.083145, - 0.038786, - -0.036837, - 0.17108, - -0.031984, - 0.021671, - 0.030251, - 0.11525, - -0.010236, - -0.012557, - 0.0025359, - -0.10604, - 0.042845, - 0.050402, - -0.09571, - 0.033093, - 0.10902, - 0.048048, - 0.0062154, - -0.036104, - 0.02991, - -0.11588, - 0.041263, - -0.033869, - -0.072738, - -0.081546, - -0.098321, - 0.057284, - -0.050675, - 0.12255, - 0.017045, - -0.068931, - -0.0021646, - 0.01234, - 0.040679, - 0.14607, - 0.00038413, - 0.23153, - 0.11269, - 0.01761, - -0.019379, - -0.066911, - -0.040566, - -0.01543, - 0.041758, - 0.10717, - 0.12732, - -0.057558, - -0.018842, - 0.044964, - -0.016317, - 0.09864, - -0.11111, - -0.037426, - -0.030978, - -0.040803, - -0.041218, - 0.043616, - 0.087388, - 0.050516, - -0.022361, - 0.11182, - 0.044376, - -0.037769, - 0.14766, - -0.047203, - 0.095343, - 0.029615, - -0.12582, - -0.04018, - 0.035454, - -0.064321, - -0.044908, - -0.070658, - -0.050273, - 0.16449, - -0.027867, - 0.093992, - -0.061551, - -0.029639, - 0.0061352, - -0.039539, - -0.088701, - 0.031364, - 0.017823, - -0.07074, - -0.010583, - -0.0049069, - 0.042008, - 0.0067098, - 0.19374, - -0.040633, - 0.15341 - ], - "siblings": [ - -0.030493, - 0.029584, - 0.038012, - 0.0042034, - -0.0060942, - 0.015885, - -0.0074017, - -0.053729, - 0.027509, - -0.032001, - 0.027334, - -0.000067565, - -0.0084574, - 0.0015847, - -0.043688, - 0.00078993, - 0.0074133, - -0.012757, - 0.016803, - -0.01673, - 0.0014551, - -0.030057, - 0.0079779, - 0.050131, - 0.0066861, - -0.0073379, - -0.024832, - 0.00449, - 0.12947, - 0.035143, - -0.020244, - -0.042234, - 0.013333, - 0.017366, - -0.011024, - 0.051326, - -0.060404, - -0.059906, - 0.01806, - -0.050004, - -0.078205, - -0.032903, - -0.0041866, - -0.018834, - -0.020633, - 0.0098954, - -0.068524, - 0.040454, - -0.049557, - -0.022125, - 0.017391, - 0.017514, - -0.019876, - 0.040001, - 0.0023704, - -0.04124, - -0.031113, - -0.028885, - -0.032643, - -0.084083, - 0.0008467, - -0.050607, - 0.12591, - 0.004045, - 0.028272, - -0.061684, - 0.030623, - -0.036541, - -0.058666, - -0.017017, - 0.033269, - -0.044664, - 0.07598, - -0.017945, - -0.0025012, - 0.048726, - 0.03127, - -0.036294, - 0.044672, - -0.016992, - -0.0077096, - 0.048953, - -0.01523, - 0.0090581, - -0.00099581, - -0.050702, - 0.032148, - 0.025423, - -0.012773, - -0.0052286, - -0.025232, - -0.022529, - -0.088998, - 0.015733, - 0.00093876, - 0.09623, - 0.0037731, - 0.031107, - 0.0084257, - -0.0077514, - 0.085324, - -0.028754, - 0.0032999, - -0.032488, - 0.022883, - -0.053506, - -0.050347, - -0.050612, - 0.048901, - 0.075164, - -0.036646, - 0.051125, - 0.042719, - -0.032549, - 0.024073, - -0.023116, - -0.032408, - 0.01284, - 0.01054, - 0.00366, - 0.0036053, - -0.016315, - 0.076145, - -0.059067, - 0.11837, - -0.032553, - 0.028093, - -0.045285, - 0.016226, - 0.029452, - 0.021736, - 0.097835, - -0.0076588, - -0.066867, - -0.0088664, - 0.053943, - -0.0018257, - 0.050109, - 0.061092, - 0.03503, - 0.00070033, - 0.015885, - -0.011742, - -0.0014852, - 0.028998, - 0.00521, - 0.034735, - 0.034453, - -0.055573, - -0.052415, - 0.016087, - 0.080936, - -0.027973, - -0.014408, - 0.074615, - -0.0080567, - 0.064974, - 0.039437, - 0.078874, - -0.022483, - 0.015866, - -0.004084, - 0.041531, - -0.0039385, - 0.014238, - 0.079374, - 0.0032397, - 0.058878, - -0.044147, - -0.03387, - -0.0093628, - -0.032015, - -0.053358, - 0.0088723, - -0.035531, - 0.053407, - 0.080192, - 0.037994, - -0.055931, - -0.084807, - 0.11142, - -0.11089, - -0.030333, - 0.018008, - 0.036152, - -0.084895, - -0.035727, - 0.055704, - 0.039184, - -0.0023321, - -0.026566, - 0.11598, - -0.10324, - -0.033612, - -0.020939, - 0.021371, - 0.028455, - 0.050687, - 0.021022, - 0.0082599, - -0.060424, - 0.080814, - -0.07952, - -0.046855, - -0.0004867, - 0.039665, - -0.031086, - -0.05874, - 0.034805, - -0.064591, - 0.075645, - 0.0084297, - 0.091021, - 0.049674, - -0.04781, - 0.0074514, - -0.052967, - -0.031279, - -0.028587, - -0.044567, - 0.060748, - 0.027077, - -0.045366, - 0.087452, - 0.099325, - 0.0077326, - 0.058651, - 0.041757, - -0.035021, - -0.06536, - 0.027576, - 0.006276, - -0.073551, - -0.009117, - 0.04881, - 0.028392, - 0.030677, - -0.0072187, - -0.0070406, - 0.024853, - -0.0031306, - -0.066139, - 0.0037238, - -0.0020482, - 0.042752, - 0.010465, - 0.0040288, - -0.058313, - 0.011421, - 0.029653, - 0.028428, - 0.026272, - 0.0070124, - 0.020971, - 0.0026799, - -0.057668, - -0.032879, - -0.024923, - 0.0079875, - -0.040091, - -0.01633, - -0.026293, - -0.0028468, - -0.035648, - 0.056333, - 0.044032, - -0.030825, - 0.060817, - 0.021486, - 0.023417, - -0.031481, - 0.066699, - -0.10201, - -0.036312, - 0.039748, - -0.0095547, - -0.020456, - 0.0031315, - 0.012372, - 0.05661, - 0.027763, - -0.039506, - 0.085027, - -0.0033222, - 0.0056499, - 0.027164, - -0.039128, - -0.055948, - 0.012075, - -0.021574, - 0.0011637, - -0.0050035, - -0.095093, - -0.040848, - 0.023793, - 0.044098, - 0.10511, - 0.052669, - 0.024508, - -0.0079256 - ], - "crafts": [ - 0.010144, - -0.062888, - 0.041731, - -0.09321, - -0.0090347, - -0.067809, - 0.0030072, - -0.089191, - 0.085668, - 0.014136, - -0.0069235, - -0.083406, - -0.088252, - -0.0028004, - -0.025865, - 0.044201, - 0.11526, - 0.036056, - 0.058725, - -0.024351, - -0.014701, - 0.0032804, - 0.037119, - 0.032706, - -0.0148, - -0.055771, - 0.00053603, - -0.0007264, - 0.090846, - -0.024386, - 0.047684, - -0.073755, - 0.080719, - -0.018434, - 0.10202, - 0.036148, - 0.10157, - 0.019605, - -0.022555, - -0.023752, - -0.067516, - -0.1424, - 0.028, - -0.015819, - 0.027658, - -0.051009, - 0.0018777, - 0.04263, - -0.012281, - -0.054272, - -0.10551, - 0.069351, - -0.035876, - 0.013519, - -0.080102, - 0.0090545, - 0.040519, - -0.03036, - -0.004655, - -0.017193, - -0.08013, - -0.055932, - 0.1577, - 0.032923, - 0.089642, - -0.022907, - -0.10333, - 0.038994, - 0.0071662, - -0.0072462, - 0.071753, - -0.078873, - 0.080105, - 0.046282, - 0.047521, - 0.01491, - 0.033051, - -0.04265, - 0.0093415, - -0.0041836, - 0.0034332, - -0.032108, - -0.080858, - -0.0088646, - -0.085694, - -0.049496, - -0.0084362, - -0.0015012, - 0.0077014, - -0.073765, - -0.0035195, - 0.02202, - -0.097284, - 0.058545, - -0.0198, - 0.073704, - -0.022457, - 0.11128, - 0.00025972, - -0.0024558, - 0.062564, - -0.010048, - 0.066127, - 0.025111, - 0.050667, - -0.097613, - 0.010336, - 0.094687, - -0.03538, - -0.041507, - -0.032262, - 0.056418, - 0.07296, - 0.14366, - -0.012911, - 0.0044967, - -0.049583, - -0.020061, - -0.025198, - -0.00011475, - -0.078676, - 0.043956, - -0.12994, - -0.069292, - 0.1687, - -0.013145, - 0.019737, - -0.017585, - 0.044125, - 0.12606, - 0.033384, - 0.076262, - 0.039321, - 0.02834, - 0.017294, - -0.076534, - -0.027404, - -0.034361, - -0.037045, - 0.0013309, - -0.0011702, - 0.0072408, - -0.001155, - -0.0095962, - 0.078414, - -0.020645, - -0.073805, - 0.015268, - -0.06626, - -0.019015, - 0.035738, - 0.083833, - -0.046427, - -0.062965, - -0.012452, - 0.04818, - 0.0093323, - -0.011869, - 0.0032268, - 0.028146, - 0.052196, - 0.036885, - -0.022066, - 0.07696, - -0.0039788, - 0.097043, - 0.043673, - -0.06486, - 0.0089785, - 0.072315, - 0.16171, - -0.0034558, - 0.050637, - -0.054966, - -0.0076544, - 0.075635, - 0.046359, - 0.10623, - -0.077538, - 0.08292, - 0.014223, - 0.0086183, - -0.020331, - -0.083699, - 0.0073619, - -0.053968, - 0.075071, - 0.15649, - -0.024504, - -0.098583, - -0.05187, - 0.068993, - -0.043766, - -0.037265, - -0.0068235, - 0.042872, - -0.0038767, - 0.035289, - 0.012435, - -0.012848, - -0.16207, - 0.028557, - 0.044375, - -0.054083, - 0.10876, - 0.10468, - -0.058449, - 0.040393, - 0.11322, - -0.069092, - 0.092548, - 0.030314, - 0.075017, - 0.023112, - 0.024842, - 0.1213, - -0.017762, - 0.072325, - -0.062771, - 0.08239, - 0.059099, - -0.05522, - -0.023156, - 0.090199, - 0.025285, - 0.016503, - 0.090215, - 0.078927, - -0.023101, - 0.039416, - 0.013297, - 0.010493, - -0.11826, - -0.035198, - 0.033515, - -0.035894, - -0.044638, - -0.016674, - 0.0067298, - 0.032344, - -0.0072028, - 0.04666, - -0.020533, - -0.089817, - -0.0042602, - 0.040429, - -0.11036, - -0.012633, - 0.060184, - 0.084866, - 0.093892, - -0.034695, - -0.055817, - 0.059542, - -0.059475, - 0.024889, - -0.055937, - 0.01608, - -0.032693, - -0.018696, - 0.05662, - 0.083778, - 0.069901, - -0.018843, - 0.0015782, - -0.025093, - 0.052965, - -0.014567, - 0.0034905, - -0.068589, - 0.031891, - 0.085413, - -0.11024, - -0.065136, - -0.044805, - -0.019332, - 0.025063, - 0.023862, - -0.050407, - -0.0090033, - 0.060169, - 0.028441, - 0.0067007, - 0.024216, - -0.078834, - 0.10047, - 0.0072218, - 0.0046344, - -0.022345, - 0.0044598, - -0.048912, - 0.018567, - -0.038128, - -0.069422, - -0.0064175, - 0.02946, - 0.027225, - 0.0016411, - -0.015684, - -0.081991 - ], - "diplomatic": [ - -0.0085693, - -0.045384, - 0.016523, - 0.015518, - -0.033923, - -0.020532, - -0.045236, - -0.07215, - 0.063923, - 0.059998, - -0.012025, - -0.04316, - -0.0086864, - 0.025675, - -0.0079252, - 0.059754, - 0.079454, - -0.023181, - 0.043278, - -0.004573, - -0.0055032, - 0.0083555, - 0.025742, - 0.077718, - -0.029003, - 0.058778, - 0.0074943, - 0.023144, - -0.0066626, - -0.03717, - -0.026681, - -0.013197, - -0.022961, - -0.10391, - 0.07207, - 0.034121, - -0.0048202, - 0.039609, - 0.043732, - 0.0071675, - -0.023738, - -0.11638, - 0.037739, - -0.010488, - -0.00031876, - -0.0044968, - -0.05195, - -0.0063942, - -0.028839, - -0.0018135, - -0.025135, - -0.068494, - -0.034578, - -0.056063, - 0.0084586, - -0.012263, - 0.02081, - 0.0016066, - -0.02314, - 0.0035869, - 0.025211, - 0.0045578, - 0.12275, - -0.056604, - 0.020255, - -0.048301, - 0.018659, - -0.010742, - 0.021269, - 0.0099932, - -0.030933, - -0.040486, - 0.043181, - 0.0074249, - 0.022518, - -0.011726, - -0.01322, - -0.039248, - 0.090087, - -0.041103, - -0.059647, - -0.0061834, - -0.0087303, - 0.01277, - -0.013166, - -0.063107, - 0.0048197, - 0.015495, - 0.03168, - 0.0026833, - -0.036145, - 0.00029198, - -0.071881, - -0.017472, - 0.044602, - 0.070303, - -0.037595, - -0.0069082, - 0.011827, - -0.051023, - 0.019766, - 0.070233, - -0.013832, - -0.0552, - 0.01362, - -0.093328, - 0.015421, - -0.040291, - -0.026648, - -0.047767, - -0.019013, - 0.038421, - 0.024422, - 0.053116, - -0.025049, - -0.055216, - 0.081329, - 0.054168, - -0.057488, - -0.026998, - 0.047053, - -0.072673, - -0.039831, - 0.043535, - 0.082705, - 0.040627, - 0.018762, - -0.012066, - -0.018974, - 0.051598, - -0.025429, - 0.015342, - -0.020058, - 0.0077124, - -0.009588, - -0.0055776, - -0.050921, - 0.019283, - -0.012143, - 0.03708, - 0.042306, - -0.063693, - 0.012177, - -0.019098, - -0.061756, - 0.06083, - 0.0049994, - 0.0088488, - 0.014274, - -0.0061582, - 0.012043, - 0.15334, - 0.01024, - -0.0395, - -0.0025929, - 0.01498, - -0.01581, - -0.044658, - -0.015667, - 0.029002, - 0.028607, - 0.046233, - -0.078024, - -0.019061, - -0.076854, - 0.058948, - 0.051564, - -0.0052478, - 0.014873, - -0.018852, - 0.075563, - 0.047713, - -0.025727, - -0.0035392, - -0.012647, - 0.048798, - 0.00085878, - 0.048294, - -0.03908, - 0.020076, - -0.038019, - 0.016301, - 0.035748, - -0.057499, - 0.045618, - -0.018885, - -0.043036, - 0.079095, - 0.11403, - 0.0024382, - -0.018831, - 0.035883, - 0.13286, - -0.033687, - -0.020511, - 0.087887, - 0.010238, - 0.024973, - -0.028386, - 0.054547, - -0.11443, - -0.00085595, - -0.01156, - 0.026853, - -0.089605, - -0.025634, - -0.04535, - -0.040736, - 0.033375, - -0.0073847, - 0.12753, - 0.027363, - -0.019025, - 0.043812, - -0.0040313, - 0.051533, - -0.030517, - -0.059779, - -0.087942, - -0.019167, - -0.047995, - 0.047975, - -0.021669, - 0.063488, - 0.052632, - 0.043021, - 0.0050928, - 0.080332, - -0.01602, - -0.016061, - 0.016986, - -0.059376, - -0.0095692, - -0.063117, - -0.028721, - -0.05987, - 0.0029796, - -0.030905, - -0.016085, - -0.01528, - 0.064194, - 0.021309, - 0.029784, - 0.014585, - -0.11722, - 0.043239, - 0.014541, - -0.030722, - 0.0021156, - -0.01153, - 0.0079959, - 0.0010249, - -0.0010587, - -0.027168, - -0.027924, - 0.015844, - 0.00092101, - 0.0058997, - 0.019699, - 0.0086283, - -0.040054, - -0.0057594, - 0.0060161, - 0.0084366, - 0.011925, - 0.022709, - 0.019871, - 0.042281, - -0.00067656, - -0.038822, - 0.0092084, - 0.044394, - -0.091655, - 0.0080955, - 0.021054, - -0.089423, - -0.010793, - -0.047218, - 0.015073, - -0.0064964, - 0.14696, - -0.0022903, - -0.015608, - 0.00043072, - -0.011968, - 0.0044701, - -0.028687, - -0.021751, - 0.0054616, - 0.021499, - -0.040562, - 0.026143, - -0.034413, - 0.040987, - -0.017421, - 0.0097553, - 0.0052727, - 0.019091, - -0.030676, - -0.046775 - ], - "liquor": [ - -0.076211, - 0.0040058, - 0.042211, - -0.025028, - 0.00042201, - -0.04131, - 0.053064, - -0.032112, - 0.092594, - 0.12754, - -0.039422, - 0.025554, - 0.063782, - 0.0057149, - -0.038651, - -0.050631, - 0.083243, - -0.080079, - -0.029776, - 0.10886, - 0.12772, - -0.020492, - -0.03569, - 0.010762, - -0.02174, - -0.075506, - -0.0024747, - 0.035724, - 0.056421, - 0.0042759, - -0.034013, - -0.036615, - -0.050964, - -0.017984, - 0.087885, - -0.034363, - -0.03738, - 0.096511, - -0.096358, - 0.020412, - 0.051609, - -0.13606, - -0.00093417, - -0.01299, - -0.025777, - -0.067899, - 0.055909, - 0.032464, - -0.014649, - 0.035144, - -0.053837, - 0.019867, - 0.1046, - -0.054745, - -0.082534, - 0.02123, - -0.0030122, - -0.048378, - -0.0050382, - 0.0032445, - 0.040268, - 0.012285, - 0.13994, - 0.030923, - -0.082159, - 0.08799, - -0.023245, - -0.067696, - 0.065232, - -0.0015555, - 0.067718, - -0.083262, - 0.061932, - 0.0092217, - -0.026873, - -0.078939, - -0.079738, - 0.019301, - -0.023937, - 0.072362, - -0.066916, - -0.083657, - -0.10202, - -0.0092194, - -0.089207, - -0.07035, - 0.061673, - -0.039884, - 0.0067616, - -0.064302, - 0.021523, - 0.0081098, - -0.1067, - -0.019287, - -0.039773, - 0.09598, - -0.036895, - 0.088933, - 0.028838, - 0.07466, - -0.043305, - -0.014827, - -0.088163, - -0.050217, - 0.014015, - -0.095955, - -0.034852, - 0.061719, - -0.02199, - 0.10178, - 0.066342, - 0.082239, - 0.046266, - -0.013556, - 0.0079012, - -0.073006, - 0.036485, - -0.12286, - -0.058879, - 0.045321, - -0.032622, - 0.040074, - -0.0051287, - -0.10993, - 0.088127, - 0.050905, - -0.07326, - -0.094192, - 0.039185, - 0.075918, - 0.078065, - -0.023972, - -0.015649, - -0.028293, - -0.0048754, - -0.064802, - -0.0082267, - 0.050646, - -0.02753, - 0.0061193, - 0.12483, - 0.032393, - -0.023684, - -0.048219, - 0.040637, - -0.055797, - 0.037329, - 0.066691, - -0.024373, - -0.053929, - 0.012659, - 0.06299, - 0.061838, - -0.01748, - 0.039601, - -0.083099, - -0.1611, - -0.0565, - -0.020039, - 0.090829, - 0.033511, - 0.057911, - -0.077818, - 0.05894, - 0.013407, - 0.01622, - -0.0073647, - 0.0013686, - 0.01701, - 0.049073, - 0.021436, - -0.033988, - -0.0048138, - 0.07782, - 0.051854, - 0.076768, - -0.067373, - 0.072538, - -0.067474, - -0.09217, - -0.047697, - -0.055843, - 0.010305, - -0.10386, - -0.028467, - -0.051131, - 0.019174, - 0.15893, - 0.091674, - -0.076565, - 0.038918, - 0.044318, - 0.02427, - 0.077734, - 0.12219, - -0.016509, - 0.094779, - -0.010712, - -0.048351, - -0.0097002, - -0.15831, - 0.010462, - -0.046636, - -0.033274, - 0.04893, - 0.06572, - 0.029904, - 0.11591, - 0.06994, - -0.019455, - 0.13448, - 0.033215, - 0.061869, - 0.010251, - 0.056052, - 0.016732, - -0.02819, - 0.0080364, - 0.026137, - -0.034849, - 0.069416, - -0.12295, - 0.01211, - 0.054851, - 0.054136, - 0.070632, - 0.022625, - -0.00078459, - -0.094639, - -0.030344, - 0.016968, - -0.004067, - -0.086687, - -0.081226, - -0.014093, - -0.009324, - 0.0023906, - 0.0013417, - 0.12567, - -0.12572, - 0.022558, - -0.060662, - -0.015785, - -0.0099928, - -0.022032, - 0.0017036, - -0.040645, - -0.0066168, - -0.040456, - 0.058704, - -0.076259, - -0.053494, - -0.04471, - 0.028199, - 0.00044412, - -0.037067, - -0.035916, - -0.0043617, - 0.087358, - -0.0062228, - 0.021555, - -0.016888, - -0.0085805, - -0.031288, - -0.059893, - 0.041837, - 0.016116, - -0.028381, - -0.031348, - 0.080277, - 0.013752, - 0.059358, - -0.084463, - -0.019437, - -0.083634, - -0.02273, - -0.028324, - 0.021412, - -0.12418, - 0.061824, - 0.13833, - 0.068092, - -0.089061, - -0.04945, - -0.055218, - 0.081528, - 0.027589, - 0.073134, - 0.030025, - -0.0062452, - 0.031858, - 0.020355, - -0.020646, - -0.0014317, - -0.0717, - -0.026377, - -0.015195, - -0.13596, - -0.055002, - 0.063974 - ], - "artworks": [ - -0.0075967, - -0.022106, - 0.030885, - 0.0016157, - 0.040812, - -0.024047, - -0.0058638, - -0.073942, - 0.050086, - -0.01503, - 0.04875, - -0.059962, - -0.031733, - -0.028891, - -0.023455, - -0.0085652, - 0.028425, - 0.05312, - 0.0097308, - -0.09963, - -0.048062, - -0.0097455, - 0.014516, - 0.063926, - 0.027186, - 0.053004, - -0.0092805, - -0.013606, - 0.18294, - 0.047558, - -0.051778, - 0.0013573, - 0.0072229, - -0.040345, - 0.035555, - 0.0090544, - -0.00077778, - -0.0044576, - -0.023591, - 0.021286, - -0.019074, - -0.082151, - -0.041232, - 0.076844, - 0.050016, - -0.012448, - 0.076289, - 0.052382, - 0.012519, - -0.001338, - -0.074194, - -0.068215, - -0.054824, - 0.022631, - -0.09379, - -0.014893, - 0.0071409, - -0.034396, - -0.04352, - -0.024272, - 0.037538, - -0.091172, - 0.18992, - 0.0016831, - 0.13289, - -0.021499, - -0.035249, - 0.004509, - 0.018337, - 0.054679, - 0.05116, - 0.043037, - 0.0094372, - 0.030293, - -0.044902, - 0.068292, - 0.011159, - -0.041456, - 0.099917, - 0.023566, - 0.029357, - -0.017608, - 0.0095252, - 0.032503, - -0.017677, - -0.054183, - 0.032581, - 0.0057323, - 0.011919, - 0.048987, - -0.07523, - -0.031064, - -0.056408, - 0.047593, - -0.023217, - 0.06312, - 0.015563, - 0.081657, - 0.070571, - 0.013288, - 0.04, - 0.014111, - 0.041822, - 0.030132, - 0.017159, - -0.016392, - -0.074767, - 0.070443, - -0.016645, - 0.031646, - 0.025419, - 0.067093, - 0.08967, - 0.022387, - 0.014931, - 0.0020409, - -0.038671, - -0.016461, - -0.025813, - 0.0075481, - -0.049082, - 0.0069208, - -0.025215, - -0.080497, - 0.11743, - -0.021726, - 0.0092268, - 0.025114, - 0.029738, - 0.067092, - -0.030542, - 0.034823, - 0.007251, - 0.044639, - 0.078983, - 0.022062, - -0.029911, - 0.061775, - 0.015907, - 0.00017364, - 0.016134, - 0.022599, - -0.0042829, - 0.036987, - 0.026955, - -0.070725, - -0.094741, - 0.025878, - 0.021647, - -0.046966, - -0.0045206, - 0.072715, - 0.0095672, - -0.053282, - -0.06373, - 0.0017449, - -0.025837, - 0.026497, - -0.026443, - -0.0016628, - 0.0066441, - -0.016198, - 0.019578, - 0.045885, - -0.0038253, - -0.001613, - 0.072836, - -0.025849, - 0.038493, - 0.044932, - 0.056766, - 0.029948, - 0.02952, - -0.10546, - -0.045439, - 0.065596, - -0.005937, - 0.025907, - -0.087256, - 0.017565, - 0.092571, - 0.0249, - -0.01616, - -0.043631, - -0.030487, - 0.012353, - 0.017602, - 0.11317, - 0.066098, - -0.037247, - 0.022657, - 0.075363, - -0.09228, - -0.014495, - -0.083751, - 0.017924, - 0.040139, - -0.059116, - 0.024792, - 0.014699, - -0.15211, - 0.073136, - 0.0042319, - -0.062431, - 0.034532, - -0.049216, - 0.024168, - 0.006069, - -0.0060522, - -0.054713, - 0.098957, - 0.022256, - 0.056689, - -0.053029, - -0.0039226, - -0.021913, - 0.046827, - 0.053705, - -0.05973, - -0.02295, - 0.032631, - -0.040978, - 0.027476, - 0.087298, - 0.03077, - 0.085426, - 0.033027, - 0.057796, - 0.0028494, - 0.040268, - -0.064603, - -0.0082913, - -0.078664, - -0.041269, - 0.045307, - 0.051191, - 0.0065163, - -0.0063516, - 0.0011613, - -0.023066, - -0.039743, - -0.011606, - -0.025603, - -0.021893, - -0.0014248, - 0.016986, - -0.092656, - -0.021956, - -0.023559, - 0.0038871, - 0.027006, - -0.072764, - 0.025382, - -0.020229, - -0.046479, - 0.01929, - -0.022966, - -0.031016, - 0.032326, - -0.002014, - 0.046142, - -0.035345, - 0.019491, - -0.071194, - 0.069772, - -0.068948, - 0.053398, - -0.061605, - 0.014333, - -0.078797, - 0.057635, - 0.093419, - -0.10535, - -0.012126, - -0.048542, - 0.0044246, - 0.057856, - 0.067492, - -0.019371, - 0.037676, - 0.027947, - 0.019885, - -0.0049904, - -0.062715, - -0.012508, - -0.049757, - -0.063859, - 0.048504, - -0.037498, - 0.049537, - -0.084034, - 0.022703, - -0.030566, - 0.0068268, - 0.0099723, - 0.0036797, - -0.030003, - 0.010869, - 0.019202, - 0.020242 - ], - "humans": [ - -0.041616, - 0.0060858, - -0.010722, - -0.038072, - -0.023518, - 0.022395, - -0.041258, - -0.10023, - 0.059681, - 0.061908, - 0.050775, - -0.034189, - -0.012687, - -0.01572, - -0.0084762, - -0.041246, - 0.069396, - 0.023605, - 0.030718, - 0.020411, - 0.029481, - -0.031734, - 0.079944, - 0.038922, - -0.0011206, - -0.086143, - 0.012357, - 0.020219, - 0.1275, - 0.009523, - -0.060969, - 0.025957, - 0.065364, - 0.042208, - 0.040083, - 0.041267, - 0.041179, - -0.1634, - 0.043748, - -0.005018, - -0.10639, - -0.047784, - -0.068038, - 0.018566, - 0.013454, - -0.04218, - 0.019008, - 0.03813, - -0.010722, - -0.068345, - 0.027164, - 0.069264, - 0.032602, - -0.038091, - -0.086218, - 0.038621, - 0.063522, - -0.014269, - -0.015356, - -0.026551, - 0.0036262, - -0.041807, - 0.062636, - -0.034873, - -0.015835, - -0.0061283, - 0.045201, - 0.026458, - 0.026073, - 0.0030402, - 0.016837, - 0.013302, - 0.12528, - -0.0020798, - -0.10257, - 0.041617, - 0.030416, - -0.032113, - -0.025561, - -0.0013444, - -0.0070567, - 0.053963, - 0.044531, - 0.063079, - 0.065366, - -0.018139, - 0.0026875, - -0.02359, - 0.046428, - 0.036865, - -0.0023344, - 0.0069825, - -0.088207, - 0.00090234, - -0.0032843, - 0.021888, - 0.086879, - 0.0087575, - 0.11215, - 0.0040038, - -0.031111, - 0.029972, - 0.063641, - -0.031375, - 0.022345, - -0.053356, - -0.037367, - -0.016714, - 0.045377, - -0.060043, - 0.00032889, - 0.11945, - 0.07124, - -0.026977, - -0.028296, - 0.081403, - -0.053914, - 0.010632, - -0.06827, - 0.013818, - -0.03576, - 0.027201, - -0.043539, - -0.021622, - -0.0041257, - 0.020878, - 0.0082239, - -0.095621, - -0.002466, - 0.069952, - -0.0015643, - 0.14689, - 0.023083, - 0.0098036, - 0.01946, - -0.031218, - -0.0019043, - 0.030584, - 0.02844, - 0.023033, - -0.069267, - -0.0023049, - 0.026855, - 0.011094, - 0.023953, - -0.070078, - -0.0016642, - -0.056391, - -0.021841, - -0.032992, - 0.090581, - 0.093984, - -0.021594, - -0.019924, - -0.0039096, - -0.0019537, - -0.01467, - -0.053671, - 0.057331, - -0.045745, - 0.065612, - -0.0057113, - 0.021802, - -0.008873, - 0.060038, - 0.027083, - -0.03774, - 0.09992, - 0.064113, - -0.00089886, - -0.0062204, - -0.079998, - 0.060507, - -0.011333, - -0.015515, - 0.052416, - 0.041347, - 0.094048, - -0.014282, - 0.044513, - 0.093033, - 0.029546, - -0.022597, - 0.016178, - -0.049809, - -0.1004, - 0.080908, - 0.094178, - -0.07279, - -0.0093147, - 0.047163, - 0.074415, - -0.14, - -0.037844, - -0.0076383, - 0.0559, - -0.08187, - 0.049821, - 0.0081908, - 0.06667, - -0.17353, - 0.10006, - -0.038112, - -0.095333, - -0.041586, - 0.022602, - -0.026449, - -0.037158, - 0.031851, - -0.065265, - 0.024432, - -0.04747, - 0.0955, - -0.0038936, - 0.0097652, - 0.023783, - -0.0056574, - -0.0028955, - -0.038133, - -0.025106, - -0.051661, - 0.0039349, - -0.054659, - 0.12881, - 0.023867, - 0.0063458, - 0.016281, - 0.053178, - 0.012873, - -0.070631, - -0.052746, - -0.035665, - -0.11598, - -0.053855, - 0.059291, - -0.088386, - 0.03565, - 0.03996, - 0.022192, - -0.04108, - 0.0080308, - 0.074262, - -0.0098432, - 0.048341, - 0.025231, - 0.066817, - 0.018882, - -0.044697, - -0.023777, - -0.05058, - -0.025612, - 0.073463, - -0.0576, - -0.094195, - -0.038536, - 0.045269, - 0.03205, - 0.0050045, - 0.078272, - -0.07368, - -0.017218, - -0.03011, - -0.048607, - -0.03741, - 0.053057, - 0.0020022, - 0.049012, - 0.047665, - 0.041026, - 0.03826, - -0.036403, - 0.092034, - -0.09695, - -0.014162, - 0.0086101, - -0.064344, - -0.044774, - -0.040061, - -0.010731, - -0.064669, - -0.031595, - 0.01993, - -0.096196, - -0.015116, - 0.0091562, - -0.0007823, - 0.0076901, - -0.070598, - 0.04914, - 0.016647, - -0.0019338, - 0.079583, - -0.10643, - -0.13298, - 0.0087064, - 0.015299, - 0.034478, - 0.056247, - -0.026957, - 0.042989 - ], - "canine": [ - -0.054731, - -0.068043, - 0.1525, - -0.011787, - -0.10012, - 0.044026, - 0.01573, - -0.12772, - -0.011643, - 0.081417, - 0.020136, - 0.013, - 0.099075, - -0.023252, - -0.040963, - -0.042011, - 0.099828, - 0.031802, - 0.049134, - 0.030401, - 0.08059, - -0.071523, - 0.084796, - 0.11128, - 0.066632, - 0.022636, - 0.020478, - 0.071248, - -0.006381, - -0.022865, - -0.081606, - -0.037525, - 0.083474, - -0.0014272, - 0.018958, - 0.028458, - 0.017205, - -0.028632, - 0.053707, - -0.077864, - -0.047182, - -0.15011, - 0.12268, - -0.013974, - 0.148, - -0.029563, - 0.023769, - 0.036563, - 0.031521, - -0.05883, - 0.05419, - 0.076006, - 0.057968, - -0.075254, - -0.058493, - -0.059883, - -0.013328, - -0.02418, - -0.01128, - 0.059903, - 0.080928, - -0.10739, - 0.15116, - 0.019087, - -0.026858, - 0.033523, - -0.028961, - 0.055877, - -0.060976, - -0.075927, - -0.014488, - -0.041693, - 0.049127, - -0.083794, - 0.015239, - 0.08903, - -0.098057, - -0.030586, - 0.035337, - -0.034094, - -0.010053, - 0.060277, - 0.018597, - 0.05719, - 0.026629, - -0.095804, - -0.038693, - 0.021526, - 0.049732, - 0.0097476, - -0.0023243, - 0.0025592, - -0.094297, - 0.00067946, - 0.061049, - 0.13782, - -0.0059486, - 0.087076, - 0.030085, - 0.068845, - 0.0051555, - 0.050408, - -0.013471, - -0.069735, - 0.034805, - -0.1631, - -0.010035, - -0.027598, - 0.041328, - -0.063306, - -0.0039521, - 0.047854, - 0.01488, - -0.064245, - 0.048791, - -0.022595, - 0.0028782, - 0.0069908, - -0.094991, - 0.063443, - 0.025102, - 0.03268, - 0.019298, - -0.046458, - 0.14457, - 0.020241, - 0.043776, - -0.045346, - 0.015865, - 0.012392, - 0.1182, - -0.082224, - -0.033125, - -0.039106, - 0.076833, - -0.11208, - -0.059726, - 0.016836, - 0.10266, - -0.071349, - -0.036148, - -0.025489, - -0.033083, - -0.026999, - -0.063014, - -0.025128, - 0.031751, - -0.0025267, - -0.0036937, - -0.075936, - 0.032128, - 0.16126, - 0.073268, - 0.017394, - -0.026718, - -0.026902, - -0.13495, - 0.043239, - -0.048201, - -0.0055187, - 0.0047512, - -0.088756, - -0.0668, - -0.020406, - 0.04743, - -0.012744, - -0.060076, - 0.013439, - -0.078714, - 0.046011, - 0.042227, - -0.018068, - -0.022891, - -0.027101, - -0.047861, - 0.08236, - 0.065762, - -0.018963, - -0.01298, - -0.017252, - 0.011015, - -0.10334, - -0.03964, - -0.020832, - 0.011192, - -0.08264, - 0.11702, - 0.12021, - 0.054078, - -0.0097514, - -0.0019239, - 0.04334, - 0.018259, - -0.088488, - -0.032671, - 0.12348, - -0.013996, - 0.076462, - 0.030901, - 0.03744, - -0.18306, - 0.080239, - 0.048438, - 0.04498, - 0.011899, - -0.16553, - 0.019423, - -0.01788, - -0.053799, - -0.028435, - 0.15172, - 0.021556, - 0.024581, - -0.028988, - -0.015614, - -0.0099145, - -0.02923, - -0.048024, - -0.021938, - -0.0092664, - -0.066808, - -0.043168, - -0.017916, - 0.070697, - -0.0018393, - -0.021229, - 0.014528, - 0.10803, - 0.0089363, - -0.07093, - -0.01077, - -0.017501, - -0.07612, - -0.050079, - 0.046769, - -0.061767, - 0.056666, - -0.057368, - -0.089705, - 0.0057544, - -0.0089325, - 0.097089, - 0.038028, - -0.024544, - -0.097239, - 0.11427, - 0.053609, - -0.016541, - -0.029314, - -0.075133, - 0.0040864, - 0.021945, - -0.025135, - 0.04118, - 0.089307, - 0.029434, - 0.10437, - 0.030501, - 0.085062, - -0.047803, - -0.029119, - -0.10878, - -0.033911, - 0.0062433, - 0.01617, - -0.026946, - 0.0047742, - 0.0086402, - 0.0043031, - 0.037845, - 0.015602, - 0.079973, - -0.13442, - -0.07489, - 0.016285, - -0.036822, - -0.023429, - 0.023988, - 0.039141, - -0.053688, - 0.12155, - 0.055142, - 0.067587, - 0.064998, - -0.006891, - -0.021815, - -0.067143, - 0.053327, - -0.022941, - 0.027808, - 0.048627, - -0.045278, - -0.089923, - -0.15256, - -0.020285, - -0.0087892, - 0.0039285, - 0.11011, - -0.036547, - 0.050234 - ], - "Christianity": [ - 0.0095356, - -0.0048143, - 0.076941, - -0.037589, - -0.0013376, - 0.019412, - -0.020297, - -0.050228, - 0.031252, - 0.027039, - -0.02436, - -0.042826, - 0.04448, - -0.034048, - -0.025634, - -0.042938, - 0.069384, - -0.050824, - 0.0080431, - -0.00015053, - -0.033391, - 0.014194, - 0.011261, - 0.021713, - -0.0013005, - 0.017648, - 0.009028, - 0.016019, - 0.050684, - 0.01077, - 0.0010106, - 0.037403, - -0.0086578, - 0.038981, - 0.015251, - 0.024952, - -0.0020104, - -0.001335, - -0.012805, - 0.037597, - -0.011477, - -0.020742, - -0.011419, - 0.025559, - -0.015595, - -0.019887, - -0.05473, - -0.015933, - -0.0076787, - -0.041339, - -0.011693, - -0.013953, - 0.003255, - 0.015715, - -0.04069, - 0.06589, - 0.027125, - -0.035584, - -0.042826, - -0.0026273, - 0.022049, - 0.012346, - 0.010123, - -0.0054476, - -0.011389, - -0.032754, - 0.010686, - 0.034644, - 0.025045, - -0.023043, - -0.0075781, - 0.0078325, - -0.0074291, - 0.01568, - -0.0096987, - -0.031631, - 0.0038958, - -0.0088212, - 0.073452, - 0.046319, - 0.012372, - 0.038812, - -0.044085, - 0.025309, - 0.0070671, - 0.0075437, - 0.0057487, - -0.034731, - -0.0096379, - 0.0097404, - -0.024428, - 0.0095592, - -0.059226, - -0.0040461, - -0.018694, - 0.034892, - 0.016693, - -0.034276, - 0.0043365, - -0.037447, - 0.009771, - 0.0096701, - 0.02312, - -0.028444, - -0.037668, - -0.050877, - 0.043724, - 0.026893, - -0.056734, - 0.020919, - 0.013434, - 0.051313, - 0.02291, - 0.0074887, - -0.025406, - 0.016382, - 0.040657, - 0.029745, - 0.0011088, - -0.0032796, - -0.0074064, - -0.028295, - -0.01927, - -0.036197, - -0.025737, - -0.0085641, - -0.076773, - -0.024214, - -0.013308, - 0.11597, - -0.0033884, - -0.0016934, - -0.034627, - 0.013061, - -0.012328, - 0.026141, - 0.026171, - -0.0018307, - 0.027371, - -0.09413, - -0.0061128, - -0.0075965, - -0.016286, - 0.023451, - 0.013164, - 0.0043646, - 0.018357, - -0.034813, - -0.015855, - -0.018859, - 0.049133, - 0.0043083, - -0.071561, - -0.033397, - -0.036637, - 0.04192, - 0.0187, - -0.046942, - 0.011295, - 0.0040988, - 0.023495, - 0.0052894, - -0.064099, - -0.020526, - 0.030236, - -0.0043066, - 0.019389, - 0.0010949, - 0.0047793, - -0.0128, - -0.017865, - -0.044428, - -0.00058021, - 0.023353, - 0.0047592, - 0.03654, - 0.029475, - -0.0011832, - 0.0045956, - -0.022111, - 0.0028197, - 0.006402, - 0.01211, - 0.014943, - 0.012951, - -0.011211, - 0.035246, - 0.088042, - -0.055577, - -0.082941, - 0.011791, - 0.042135, - -0.054747, - 0.027155, - 0.047485, - -0.02347, - -0.031358, - -0.044415, - 0.0036006, - 0.0039583, - -0.07366, - 0.051152, - 0.0033059, - -0.045296, - -0.012229, - 0.071149, - 0.088487, - -0.021843, - 0.022805, - -0.011774, - 0.053502, - -0.0077257, - -0.0066529, - 0.01115, - 0.0669, - 0.050617, - -0.0050767, - -0.025838, - -0.0071606, - -0.032187, - -0.023641, - 0.0068171, - -0.026385, - 0.067667, - -0.0056921, - -0.02148, - 0.027282, - 0.038692, - 0.012037, - -0.041989, - 0.013756, - -0.041568, - -0.04865, - -0.030962, - 0.018759, - 0.034398, - -0.0072168, - 0.0056531, - 0.016937, - -0.012106, - 0.011988, - -0.01713, - 0.0025675, - 0.016694, - 0.059386, - 0.0097249, - -0.023957, - -0.028543, - -0.00014295, - -0.043577, - 0.029624, - -0.01474, - -0.05615, - -0.01598, - 0.01518, - 0.016425, - 0.013593, - 0.02203, - 0.01824, - -0.010378, - 0.006197, - -0.0096746, - 0.08357, - 0.005606, - 0.028012, - -0.044023, - 0.012955, - -0.0071594, - 0.022252, - 0.0031651, - -0.011643, - 0.060247, - -0.063301, - -0.0016017, - -0.01531, - -0.014206, - 0.015623, - -0.021599, - -0.086898, - -0.0070067, - 0.031625, - 0.0049344, - 0.01163, - -0.030498, - 0.0079961, - -0.023356, - 0.046085, - 0.015554, - -0.022785, - 0.064865, - 0.00032245, - 0.017374, - -0.0026635, - 0.0063276, - 0.050425, - 0.01232, - 0.023572, - 0.03102, - 0.00012165, - -0.0023223 - ], - "culture": [ - 0.0063226, - -0.090201, - 0.1099, - -0.0052247, - -0.018516, - 0.023707, - -0.0072707, - -0.073123, - 0.081533, - 0.0094431, - -0.025237, - -0.084456, - 0.019505, - 0.0055998, - -0.0092874, - -0.031766, - 0.14874, - 0.01353, - 0.024954, - 0.10133, - -0.040783, - -0.018801, - 0.027492, - 0.074917, - -0.011583, - 0.056755, - -0.022293, - 0.048851, - -0.0022216, - 0.057424, - 0.015387, - -0.015699, - 0.0079401, - -0.056102, - 0.011114, - 0.042128, - 0.06119, - 0.032986, - 0.024699, - 0.016764, - -0.0098705, - -0.1386, - -0.040132, - 0.0096153, - 0.10136, - -0.035979, - 0.042078, - -0.033537, - -0.012378, - -0.011453, - -0.017132, - -0.0094293, - 0.020398, - -0.015561, - -0.027393, - 0.080391, - 0.07263, - -0.0020505, - -0.036583, - 0.050538, - 0.050369, - -0.021903, - 0.094712, - -0.021836, - 0.064022, - 0.014363, - -0.015247, - 0.071173, - 0.069355, - -0.056215, - 0.011747, - 0.018453, - -0.0090337, - 0.037968, - 0.020178, - 0.009317, - 0.06527, - -0.0082347, - 0.0069941, - -0.0087805, - -0.0077154, - 0.0075765, - -0.054242, - 0.081569, - -0.017134, - -0.049759, - -0.050295, - -0.027854, - -0.0087603, - 0.029148, - 0.0085587, - 0.048975, - -0.08778, - 0.031542, - -0.011734, - 0.080529, - 0.034062, - -0.0032225, - 0.027438, - 0.0093388, - 0.067319, - -0.006503, - 0.031986, - -0.040919, - -0.000161, - -0.10203, - -0.029718, - 0.035326, - 0.017221, - 0.0063838, - 0.003541, - 0.080619, - 0.05415, - -0.019099, - -0.029023, - -0.037555, - -0.010133, - -0.0021578, - -0.050915, - 0.0583, - -0.028856, - -0.046409, - -0.0063802, - -0.0722, - 0.082239, - -0.0062992, - -0.05581, - -0.081087, - 0.080202, - 0.14664, - 0.037027, - -0.05393, - 0.023099, - -0.016882, - -0.02409, - -0.0077013, - -0.043653, - 0.013927, - 0.0082102, - -0.008667, - 0.032715, - -0.058797, - 0.030488, - 0.027566, - -0.0027326, - -0.023646, - -0.038954, - 0.039686, - -0.0092358, - -0.041737, - 0.060555, - 0.055217, - 0.015643, - -0.018144, - -0.018556, - 0.039081, - 0.0052117, - 0.070471, - 0.041582, - -0.026029, - 0.02822, - 0.0069195, - -0.1291, - -0.016994, - 0.023484, - 0.043511, - 0.01335, - -0.023953, - -0.0040761, - 0.001846, - -0.0065059, - 0.0018017, - -0.013369, - -0.013504, - -0.016097, - 0.069182, - 0.0099449, - 0.12932, - -0.018609, - -0.011896, - -0.067009, - 0.057137, - -0.00026135, - -0.022279, - 0.0071428, - -0.073497, - 0.043602, - 0.10669, - 0.018616, - 0.00097415, - -0.015296, - 0.072619, - -0.0084081, - -0.015465, - -0.046308, - 0.035976, - -0.043562, - -0.019212, - -0.0063719, - -0.01033, - -0.15775, - -0.023033, - 0.015352, - -0.094393, - -0.0093192, - 0.047098, - 0.026676, - 0.0040854, - 0.038949, - 0.011435, - 0.10376, - -0.024079, - 0.010861, - 0.0090012, - 0.02655, - 0.0027912, - -0.02928, - -0.018007, - 0.028229, - -0.023878, - -0.030657, - -0.02526, - 0.048344, - 0.084284, - -0.037962, - 0.022298, - 0.045489, - 0.067417, - -0.037076, - -0.0075283, - -0.021048, - -0.025013, - -0.090719, - -0.013296, - 0.018919, - 0.061225, - 0.0079925, - 0.044073, - 0.030968, - -0.028121, - 0.039038, - 0.012681, - -0.0051294, - 0.067826, - 0.0041517, - 0.0043392, - -0.034352, - -0.034815, - -0.043257, - -0.013203, - 0.082289, - -0.012506, - -0.061402, - -0.018916, - 0.013235, - 0.044837, - -0.065759, - 0.059885, - 0.068396, - -0.013888, - -0.01567, - 0.0056098, - 0.05931, - -0.0048701, - 0.035944, - -0.022939, - 0.015247, - 0.037363, - 0.00060168, - 0.034905, - 0.027658, - 0.07255, - -0.11356, - -0.057627, - 0.053568, - -0.023577, - 0.051003, - 0.037403, - -0.086507, - -0.015732, - 0.093849, - 0.022455, - -0.042927, - -0.015856, - -0.027093, - 0.030519, - 0.031617, - -0.0090561, - -0.02311, - -0.026947, - -0.0092025, - 0.045062, - 0.0025594, - -0.057917, - -0.0014653, - 0.038072, - 0.058191, - 0.03641, - -0.033978, - -0.06119 - ], - "businessperson": [ - -0.013376, - -0.0297, - 0.016385, - -0.021074, - -0.04277, - 0.021857, - -0.012596, - -0.066575, - 0.05257, - 0.039471, - 0.012349, - 0.024538, - -0.05987, - -0.0092163, - -0.057073, - 0.054091, - 0.041074, - -0.010788, - 0.019072, - -0.0021553, - 0.020993, - -0.012527, - 0.0045167, - 0.061766, - -0.015805, - 0.030896, - 0.0079594, - 0.061923, - -0.032628, - 0.014531, - 0.00162, - 0.0075752, - -0.032366, - 0.0039883, - -0.0045926, - 0.0088629, - -0.036101, - 0.0057348, - 0.029327, - 0.0054248, - -0.00047898, - -0.099223, - -0.0091343, - -0.00057288, - 0.016963, - -0.0022661, - -0.013764, - 0.015124, - 0.015459, - -0.014847, - 0.0011281, - -0.040929, - -0.0263, - -0.015287, - 0.028495, - -0.00021478, - -0.0068953, - 0.036595, - -0.033666, - -0.035954, - -0.057171, - -0.0048864, - 0.013769, - 0.020282, - 0.033951, - 0.018306, - 0.020824, - -0.022641, - 0.0015154, - -0.036196, - 0.026597, - -0.021445, - 0.07532, - 0.027847, - -0.003783, - 0.011716, - -0.014331, - -0.02129, - -0.043498, - 0.018221, - -0.012454, - 0.031491, - -0.036983, - 0.035544, - -0.0013962, - -0.072491, - -0.055779, - 0.038176, - 0.027691, - -0.02588, - 0.0069451, - 0.030199, - -0.067929, - -0.020796, - -0.037133, - 0.1095, - 0.0038435, - -0.012182, - 0.041816, - -0.017069, - 0.00099869, - 0.011357, - 0.014155, - -0.020389, - -0.038434, - -0.047389, - 0.023237, - 0.047711, - -0.010532, - 0.026004, - -0.021692, - 0.056231, - 0.015957, - -0.008679, - -0.016901, - -0.023097, - -0.014347, - -0.044005, - 0.013755, - 0.013651, - -0.018339, - -0.039974, - 0.043463, - 0.0044136, - 0.05125, - 0.020592, - -0.018303, - -0.043517, - 0.020784, - 0.023658, - 0.028266, - 0.048126, - -0.0048884, - -0.042192, - -0.030536, - 0.043742, - 0.08346, - 0.042794, - -0.0042988, - 0.010371, - 0.032348, - 0.007677, - 0.0088468, - 0.0020549, - -0.0073448, - -0.014654, - -0.010601, - -0.037664, - 0.011623, - -0.037494, - 0.04738, - 0.062471, - -0.028927, - -0.043056, - -0.0026425, - -0.018476, - 0.027781, - -0.0084893, - -0.0038322, - -0.0652, - -0.0034125, - 0.05771, - -0.0245, - 0.047994, - 0.022919, - -0.0015216, - 0.014985, - -0.046505, - -0.0071302, - 0.047116, - -0.015223, - -0.0025019, - 0.012462, - 0.029127, - 0.022196, - 0.021652, - -0.039308, - 0.059354, - 0.0069034, - 0.023742, - -0.020163, - -0.038445, - 0.05295, - -0.062219, - -0.010148, - -0.094744, - -0.002423, - 0.080158, - -0.019244, - 0.023549, - -0.064741, - 0.063331, - -0.021471, - 0.032602, - -0.014348, - -0.032495, - 0.0023465, - -0.01352, - 0.0063854, - 0.0025124, - -0.096746, - 0.013792, - 0.023165, - -0.019327, - -0.0084211, - -0.0036917, - -0.051633, - 0.0063352, - 0.014774, - -0.033236, - 0.063709, - -0.0014402, - -0.0046999, - -0.023852, - -0.040049, - 0.057738, - -0.015746, - -0.057338, - 0.0068373, - 0.027002, - 0.0022788, - -0.01775, - -0.039478, - 0.067894, - -0.023892, - 0.024915, - 0.051007, - 0.053007, - -0.04148, - -0.0072131, - -0.0065314, - -0.01321, - -0.044964, - 0.0064722, - -0.022941, - 0.010689, - -0.0021609, - 0.0070799, - -0.011479, - -0.039117, - 0.053165, - 0.0024262, - 0.020243, - 0.026791, - 0.062423, - -0.042062, - 0.022744, - -0.0050914, - 0.025519, - -0.029305, - 0.0078443, - -0.021073, - -0.048523, - -0.0014726, - 0.045992, - -0.0034766, - -0.051268, - 0.033912, - 0.027894, - 0.015371, - -0.013141, - 0.0026331, - 0.012513, - 0.013824, - -0.027149, - -0.0018282, - -0.03413, - -0.0059412, - 0.029383, - 0.011144, - -0.075119, - 0.048827, - -0.029247, - 0.0093395, - 0.042208, - -0.049853, - 0.030406, - -0.0096744, - -0.0075401, - -0.012397, - 0.024621, - 0.041561, - -0.044622, - -0.0056598, - -0.031755, - 0.0012618, - -0.0092812, - -0.11394, - -0.043916, - -0.004266, - -0.0066308, - 0.0048807, - 0.0080552, - 0.041274, - -0.044818, - 0.01165, - -0.0228, - 0.0057296, - -0.04228, - -0.034664 - ], - "college": [ - -0.059697, - -0.054087, - 0.031071, - -0.01592, - 0.040289, - -0.079024, - -0.013521, - -0.096562, - 0.073778, - 0.017901, - -0.040408, - -0.087055, - -0.0011081, - 0.068797, - -0.046983, - 0.025199, - 0.13278, - 0.015095, - 0.040459, - 0.036309, - 0.02368, - 0.070276, - -0.029419, - 0.081394, - -0.0083074, - -0.008939, - -0.0078469, - -0.001026, - -0.030783, - 0.028303, - 0.016763, - 0.0041328, - 0.0036798, - -0.035448, - -0.0014805, - 0.069491, - 0.021956, - 0.068571, - -0.051505, - 0.033898, - 0.016861, - -0.13356, - 0.032278, - 0.037164, - 0.025163, - -0.0017462, - -0.012986, - -0.04176, - -0.023552, - 0.057678, - 0.03604, - 0.0081104, - 0.03729, - 0.035499, - -0.056144, - 0.013361, - -0.077494, - 0.05281, - 0.0014967, - 0.0057099, - 0.052812, - 0.039222, - 0.11557, - 0.084542, - 0.044936, - -0.10437, - -0.0080395, - -0.032085, - 0.02327, - 0.00019243, - 0.0059292, - -0.024878, - 0.031595, - 0.0088379, - 0.016569, - -0.0048065, - -0.023999, - 0.011123, - 0.024014, - 0.0010242, - -0.0064921, - 0.025209, - -0.019792, - -0.017343, - -0.10314, - 0.038517, - -0.073091, - -0.052769, - -0.05762, - -0.030425, - 0.0091066, - 0.037969, - -0.094001, - 0.0041896, - 0.036167, - 0.090491, - -0.0095196, - 0.033343, - 0.044862, - 0.048935, - 0.12992, - 0.041059, - 0.021644, - -0.0083708, - 0.044839, - -0.074784, - -0.041276, - 0.015502, - -0.0011683, - 0.058624, - -0.022298, - 0.068664, - 0.037767, - 0.036028, - 0.033562, - 0.029586, - -0.0059727, - 0.029767, - -0.0038247, - 0.0012937, - -0.003667, - -0.029111, - 0.02218, - 0.034625, - -0.016403, - 0.020143, - -0.092768, - -0.09287, - -0.038841, - 0.065292, - -0.001809, - 0.058423, - 0.0041136, - 0.02117, - -0.013881, - 0.012535, - 0.028494, - 0.006479, - 0.009718, - -0.072976, - 0.011868, - -0.0060846, - 0.0092683, - 0.005485, - -0.013647, - 0.0075477, - -0.0033914, - 0.027549, - -0.027, - 0.027915, - 0.033159, - 0.069837, - 0.000025107, - -0.030827, - 0.051719, - -0.01589, - 0.014251, - 0.056244, - 0.063875, - -0.048691, - 0.011464, - 0.028579, - 0.01562, - 0.010419, - 0.024074, - -0.080868, - 0.033507, - -0.023895, - -0.0025965, - -0.013139, - 0.049527, - -0.016224, - -0.014124, - -0.034718, - 0.027078, - 0.045679, - 0.040443, - 0.070739, - -0.032467, - -0.065169, - 0.0046468, - 0.012146, - -0.031562, - 0.019031, - -0.013853, - -0.033377, - -0.052865, - 0.10082, - 0.032283, - -0.038888, - -0.0096666, - 0.076816, - -0.023776, - 0.027179, - 0.0066132, - -0.040831, - 0.056241, - 0.0044155, - 0.050959, - 0.0036419, - -0.14568, - 0.017417, - 0.019425, - -0.0023154, - -0.020365, - 0.04462, - -0.030137, - -0.048787, - -0.0088914, - -0.026068, - 0.12613, - -0.026674, - 0.0066418, - 0.0207, - -0.077189, - -0.021876, - 0.028756, - -0.019794, - 0.0718, - -0.062969, - -0.039055, - -0.0047743, - -0.030061, - 0.096207, - -0.032891, - -0.065241, - 0.02107, - 0.07177, - -0.0076418, - -0.03281, - 0.018454, - -0.049007, - -0.047663, - 0.048915, - -0.0085785, - -0.015777, - 0.027536, - -0.038262, - -0.057712, - 0.0058976, - 0.082705, - -0.035494, - 0.05588, - 0.042534, - 0.0024675, - 0.048653, - -0.045119, - -0.003571, - -0.013148, - 0.020487, - 0.0046195, - 0.068322, - -0.04981, - -0.070979, - 0.029152, - -0.036286, - -0.069172, - 0.066396, - 0.028557, - 0.063157, - 0.0055523, - -0.026941, - 0.0049415, - -0.027835, - 0.030058, - 0.048853, - -0.044746, - 0.044113, - 0.026014, - 0.07469, - -0.0015253, - 0.078139, - -0.11628, - -0.014407, - -0.00044595, - -0.0085578, - -0.05458, - 0.027542, - 0.019075, - 0.065796, - 0.06206, - 0.009454, - 0.032338, - -0.022413, - 0.0042997, - -0.016157, - -0.020021, - -0.074143, - -0.069383, - 0.029901, - 0.013095, - 0.021597, - -0.013543, - 0.045198, - -0.0338, - 0.046069, - 0.017755, - -0.0038295, - 0.05678, - -0.028382 - ], - "IPsec": [ - 0.011586, - -0.037378, - -0.030989, - -0.053677, - -0.03311, - -0.031349, - 0.054208, - -0.10075, - -0.08643, - -0.078473, - -0.080517, - -0.00068519, - -0.12835, - 0.033735, - -0.043441, - -9.0762e-7, - 0.084261, - 0.011427, - 0.094992, - -0.058813, - -0.075922, - 0.015191, - 0.042619, - 0.065018, - -0.015977, - 0.12818, - -0.062995, - -0.11071, - 0.07284, - 0.013753, - 0.065936, - -0.13541, - -0.12277, - -0.042763, - 0.10814, - -0.011279, - 0.035634, - 0.030292, - -0.044118, - -0.078915, - 0.027383, - -0.075275, - -0.023084, - 0.069161, - -0.25567, - -0.030879, - -0.11604, - 0.029441, - -0.032757, - -0.016112, - -0.0029688, - -0.096299, - 0.032855, - -0.054312, - -0.044135, - -0.015372, - -0.021987, - -0.00021663, - 0.025645, - 0.057468, - 0.030208, - -0.13695, - 0.071396, - -0.093675, - -0.10325, - 0.0027358, - 0.024479, - -0.12718, - -0.12234, - -0.063679, - -0.040319, - 0.14957, - -0.039396, - -0.024304, - -0.064022, - -0.084376, - 0.033948, - -0.033477, - 0.027882, - -0.082389, - -0.02321, - 0.045419, - 0.066051, - 0.002549, - 0.06723, - -0.0023258, - -0.14766, - -0.06794, - -0.032368, - -0.026089, - 0.06811, - -0.045829, - -0.060749, - 0.0094933, - -0.027562, - 0.13699, - -0.013306, - -0.011265, - -0.051223, - -0.025664, - -0.1212, - 0.064478, - 0.076819, - -0.039933, - -0.047985, - -0.095368, - 0.065227, - -0.011219, - 0.014907, - 0.085518, - -0.063074, - 0.15499, - -0.020888, - -0.02842, - 0.0044919, - -0.032666, - 0.072664, - 0.13462, - 0.0061628, - 0.11768, - 0.15753, - -0.025159, - -0.011403, - -0.010992, - -0.064416, - -0.047502, - -0.053993, - -0.067231, - -0.048427, - 0.086108, - 0.0022048, - 0.03729, - -0.038934, - -0.0083316, - -0.10598, - -0.048664, - -0.013339, - -0.077799, - -0.070178, - -0.022739, - 0.0045076, - 0.072798, - -0.039908, - 0.001503, - -0.11381, - 0.0047102, - -0.10863, - -0.020546, - -0.023746, - -0.040132, - 0.043964, - 0.06566, - 0.0901, - -0.088587, - 0.082602, - 0.097691, - 0.0068786, - -0.002157, - 0.0058017, - -0.0049186, - 0.013626, - -0.15175, - -0.076313, - -0.070401, - 0.061853, - -0.10215, - 0.076652, - 0.038053, - 0.020747, - -0.18086, - -0.043033, - 0.070185, - -0.045848, - 0.1263, - -0.026009, - 0.029139, - -0.05769, - 0.094474, - -0.002674, - -0.14666, - 0.083866, - 0.044897, - 0.076099, - 0.050577, - -0.005123, - 0.0031563, - -0.049749, - 0.17673, - 0.10451, - 0.14522, - 0.14281, - 0.067709, - -0.037433, - 0.018401, - 0.08857, - 0.013814, - 0.0012908, - -0.035477, - 0.023019, - 0.0046169, - -0.0604, - 0.021127, - 0.010655, - 0.083182, - 0.039206, - -0.044176, - -0.086292, - 0.080941, - -0.0058838, - -0.020233, - 0.14221, - -0.017304, - 0.036321, - -0.058998, - -0.011328, - 0.21924, - -0.12298, - -0.017059, - -0.029659, - -0.054324, - 0.036637, - -0.046508, - -0.0087523, - 0.077335, - 0.090699, - -0.06391, - -0.024518, - -0.052174, - 0.05192, - 0.052833, - -0.10981, - -0.086257, - -0.035817, - -0.053306, - 0.060337, - -0.11216, - 0.04302, - 0.10186, - 0.083451, - 0.010145, - -0.0070061, - 0.00053608, - 0.12134, - 0.0043678, - 0.02153, - 0.11812, - -0.002043, - -0.001784, - 0.039467, - -0.0080585, - -0.12786, - 0.013848, - -0.024902, - -0.034549, - 0.0012071, - 0.044072, - 0.038502, - 0.00024982, - 0.07924, - -0.050496, - 0.042143, - 0.13352, - -0.044095, - -0.076935, - 0.042993, - -0.10574, - -0.0034076, - 0.0076388, - 0.046996, - -0.15191, - -0.029801, - 0.067815, - -0.033586, - 0.0039983, - -0.099658, - -0.011107, - -0.038575, - -0.065968, - 0.070474, - -0.020876, - 0.14193, - -0.05184, - -0.15625, - -0.015208, - 0.0046668, - -0.076213, - 0.038576, - 0.045816, - 0.061692, - -0.10116, - 0.020231, - -0.051255, - 0.028817, - -0.023386, - -0.0065145, - -0.02248, - 0.049468, - -0.019132, - -0.11893, - -0.073693 - ], - "agricultural": [ - -0.0018938, - -0.034518, - 0.010017, - 0.0018089, - -0.02164, - -0.033543, - -0.017239, - -0.065204, - 0.052108, - 0.013934, - -0.016819, - -0.035977, - -0.016184, - -0.0093027, - 0.053116, - -0.020761, - 0.06266, - 0.0068175, - 0.021478, - 0.027914, - 0.042616, - 0.0023079, - -0.0011751, - 0.067721, - 0.0021749, - -0.088512, - -0.025435, - 0.031936, - 0.032086, - -0.02574, - 0.039517, - -0.0013255, - 0.04027, - -0.033778, - 0.066861, - 0.062111, - 0.017084, - -0.0057557, - -0.0066894, - 0.032756, - 0.011707, - -0.096336, - 0.038583, - -0.0040529, - 0.010861, - -0.016753, - -0.0061484, - -0.0088954, - -0.044072, - -0.014821, - -0.0081738, - -0.0013186, - 0.015523, - 0.018662, - 0.011221, - 0.0010165, - -0.018577, - 0.040949, - 0.0068845, - -0.0462, - 0.0025755, - 0.02989, - 0.087649, - 0.015862, - 0.039049, - -0.031532, - 0.023267, - -0.015646, - 0.017096, - -0.017159, - 0.027097, - -0.013732, - 0.051068, - -0.013071, - -0.025356, - 0.0097643, - -0.059448, - -0.0067396, - 0.030108, - 0.0013564, - -0.029897, - 0.026472, - -0.039741, - -0.0004129, - -0.0395, - 0.015461, - -0.036746, - 0.0015376, - 0.013663, - 0.00032074, - 0.00010594, - 0.04998, - -0.073994, - 0.0056715, - -0.032475, - 0.036687, - -0.0038333, - -0.0046425, - 0.011178, - -0.016229, - 0.026682, - -0.039991, - -0.038268, - -0.05219, - 0.025399, - -0.078218, - 0.0058385, - 0.015863, - -0.013469, - -0.0040119, - 0.013103, - 0.088215, - 0.039135, - 0.086836, - 0.015094, - -0.0029728, - 0.010625, - 0.0073272, - -0.030998, - -0.024061, - -0.049715, - -0.010881, - -0.035226, - -0.0048135, - 0.062358, - 0.0068425, - -0.03843, - -0.046123, - -0.060173, - 0.061025, - 0.036954, - 0.018687, - -0.032808, - 0.016693, - 0.00054039, - -0.0059258, - -0.029794, - 0.020392, - 0.0062949, - 0.018949, - -0.0041804, - -0.00070628, - -0.0020716, - 0.026051, - -0.024894, - -0.026652, - 0.0087067, - 0.027583, - -0.026272, - -0.027009, - 0.048682, - 0.12136, - 0.015034, - -0.02997, - 0.079902, - 0.011521, - 0.020752, - -0.001786, - -0.040301, - 0.012979, - 0.023361, - -0.040541, - -0.065826, - 0.030003, - 0.0055382, - 0.0063635, - 0.017567, - 0.0017947, - 0.060736, - 0.01568, - 0.048983, - -0.039393, - 0.0085039, - 0.023901, - -0.036956, - 0.05226, - 0.024443, - 0.024621, - -0.050076, - 0.043047, - -0.0079795, - 0.03916, - 0.038654, - 0.0046045, - -0.034647, - -0.036274, - 0.019807, - 0.08236, - -0.04045, - -0.051597, - 0.0043944, - 0.046974, - 0.07151, - -0.0057451, - 0.025454, - -0.045944, - -0.0012744, - 0.0081179, - 0.0048755, - -0.022694, - -0.11316, - 0.0045317, - -0.024367, - -0.052803, - -0.028542, - 0.040122, - -0.043181, - 0.027454, - 0.0076354, - 0.017876, - 0.10979, - -0.0037274, - -0.039395, - 0.0029459, - 0.010991, - 0.068382, - 0.00049449, - 0.012638, - -0.017513, - -0.0077987, - -0.016714, - -0.024171, - -0.021357, - 0.051618, - -0.041566, - -0.022817, - 0.051125, - 0.051763, - 0.025459, - -0.038273, - 0.020608, - -0.0081017, - -0.036168, - -0.028019, - 0.0201, - 0.017265, - 0.01068, - 0.021479, - 0.0046574, - -0.032839, - -0.0042321, - 0.080782, - 0.033234, - 0.026239, - -0.077974, - 0.031568, - -0.009669, - -0.031593, - 0.032532, - 0.030366, - 0.002488, - -0.04986, - 0.01037, - -0.019005, - -0.024524, - 0.027322, - -0.0091159, - 0.022042, - 0.014403, - 0.011933, - 0.020265, - 0.030741, - 0.017419, - 0.019002, - 0.033978, - -0.015225, - 0.00065864, - -0.0053123, - -0.0015105, - -0.015689, - -0.01964, - 0.054182, - -0.070491, - 0.000070813, - -0.00040126, - -0.072885, - -0.016263, - 0.014739, - -0.0052758, - -0.030845, - 0.11887, - 0.025132, - -0.0067358, - 0.011012, - 0.0071309, - 0.061613, - -0.0039351, - -0.02841, - 0.00066938, - 0.0091868, - -0.029766, - 0.02665, - -0.010243, - 0.032316, - -0.033548, - 0.032553, - -0.026203, - 0.011404, - 0.013489, - -0.024351 - ], - "Cryptography": [ - -0.0052129, - -0.030504, - -0.06044, - -0.015095, - -0.011877, - 0.0055797, - 0.036235, - -0.036426, - -0.018974, - 0.0099193, - -0.01241, - -0.031461, - -0.047111, - 0.027985, - -0.030419, - 0.031987, - 0.014739, - 0.027102, - 0.028779, - -0.027151, - -0.014105, - 0.065323, - 0.0098154, - -0.0066078, - 0.027997, - 0.025429, - 0.0030286, - -0.029728, - 0.01427, - -0.030791, - 0.037955, - -0.025906, - -0.020059, - -0.0098538, - 0.074468, - -0.028621, - 0.00058277, - -0.0064771, - -0.021841, - -0.016609, - -0.045467, - 0.046979, - -0.028279, - -0.05454, - -0.034116, - -0.040465, - -0.053966, - -0.0050253, - 0.019272, - -0.0010352, - 0.0068977, - -0.031831, - 0.0095095, - -0.024648, - -0.020096, - -0.0076265, - 0.0036314, - 0.025927, - -0.014117, - -0.000811, - -0.021329, - -0.056596, - -0.051735, - 0.012392, - -0.053415, - 0.0081316, - -0.0099924, - 0.00185, - 0.0070051, - 0.04213, - -0.0074279, - 0.070463, - -0.035438, - 0.029997, - -0.0086367, - -0.036133, - 0.0025655, - -0.075814, - 0.050448, - -0.018581, - -0.012679, - 0.030745, - 0.0014923, - -0.009854, - -0.019562, - -0.0063242, - 0.033377, - -0.072562, - 0.044787, - 0.065045, - 0.057402, - 0.021932, - -0.042111, - -0.0080002, - -0.025807, - 0.094891, - 0.019547, - -0.090847, - 0.012872, - 0.050702, - -0.0078727, - 0.042761, - -0.026927, - 0.0071848, - -0.024962, - -0.07409, - 0.049934, - 0.0685, - 0.053863, - -0.030897, - -0.038282, - 0.04626, - 0.020905, - -0.0064932, - -0.03801, - 0.025654, - 0.012119, - 0.10025, - 0.020507, - -0.0069347, - 0.062511, - 0.053094, - -0.046216, - -0.01658, - 0.014382, - 0.0035604, - -0.077387, - -0.047161, - -0.088422, - 0.16792, - 0.01394, - 0.016492, - -0.03847, - 0.021745, - 0.037188, - -0.028678, - 0.02005, - -0.026348, - 0.023792, - 0.036641, - 0.080805, - 0.07918, - -0.02725, - -0.012041, - 0.020061, - -0.020594, - -0.063043, - -0.073631, - 0.04165, - -0.065934, - 0.021517, - 0.025635, - 0.0041084, - -0.040436, - 0.039288, - 0.063905, - 0.039418, - 0.045123, - 0.08531, - -0.014062, - 0.0040798, - -0.0082082, - -0.069731, - 0.023841, - -0.011238, - -0.1002, - 0.00036217, - -0.0086976, - 0.041458, - -0.029308, - -0.0014073, - 0.035617, - 0.038729, - 0.058483, - -0.034767, - 0.028076, - -0.0086536, - -0.0019965, - -0.030205, - -0.015193, - -0.015107, - 0.021658, - 0.023257, - 0.014008, - 0.039607, - 0.12151, - -0.046108, - 0.096937, - 0.0076967, - 0.011527, - -0.020641, - 0.052583, - -0.04252, - -0.040147, - 0.030961, - 0.036083, - -0.016281, - -0.062612, - -0.016783, - 0.040147, - -0.019799, - 0.018255, - 0.036382, - 0.045455, - -0.011773, - -0.060768, - 0.048629, - 0.0062466, - 0.0072369, - 0.018762, - 0.12313, - 0.0078833, - 0.0099827, - 0.038286, - 0.061458, - 0.078738, - -0.017148, - -0.020031, - -0.023703, - -0.0032818, - 0.024523, - -0.02476, - -0.045812, - 0.070875, - 0.005377, - -0.027168, - 0.0014622, - 0.023488, - 0.057496, - -0.013027, - -0.038503, - -0.041549, - 0.0057565, - -0.034964, - 0.024976, - -0.09673, - -0.060763, - 0.023983, - -0.010973, - 0.004277, - -0.010926, - -0.066792, - 0.064535, - -0.041344, - 0.12888, - 0.026104, - -0.066699, - -0.0059556, - 0.015887, - -0.041015, - -0.016161, - -0.00054634, - -0.073113, - -0.012495, - 0.00060598, - 0.013231, - 0.0043978, - 0.018208, - -0.019658, - -0.0082771, - 0.018491, - 0.008778, - -0.0075629, - -0.013054, - 0.0038083, - -0.097387, - 0.027541, - -0.033217, - 0.036861, - -0.043747, - 0.0041753, - 0.085033, - -0.029705, - 0.036888, - -0.027174, - -0.029875, - 0.081753, - -0.0010292, - 0.051063, - -0.029795, - 0.013171, - -0.028605, - -0.012041, - -0.0088586, - 0.0078254, - -0.074755, - 0.019148, - -0.010192, - -0.091524, - 0.0014343, - -0.088284, - -0.0069154, - 0.00046188, - -0.0091451, - 0.018123, - -0.015727, - -0.0076688, - -0.017405, - -0.062076, - -0.001302 - ], - "ready-to-wear": [ - -0.0155, - -0.0075584, - 0.024406, - -0.011249, - 0.032847, - -0.029934, - 0.0043796, - -0.040714, - 0.0076455, - -0.040666, - -0.041376, - 0.00052785, - -0.094512, - -0.030241, - -0.047044, - -0.039177, - 0.048265, - 0.03098, - 0.032003, - 0.048681, - 0.021229, - 0.004753, - -0.033762, - 0.018409, - 0.020643, - 0.052837, - 0.0015687, - 0.055526, - 0.026599, - 0.0093268, - -0.011703, - -0.041677, - 0.058569, - -0.028131, - 0.034486, - -0.035338, - 0.032272, - 0.047947, - -0.0083227, - 0.031049, - -0.020037, - -0.055741, - -0.0057601, - -0.019557, - -0.062985, - 0.00026262, - 0.032723, - 0.0035584, - 0.014756, - -0.055463, - -0.00063213, - -0.034061, - -0.052161, - 0.070276, - -0.029308, - 0.0067834, - 0.0018373, - -0.00049107, - -0.0032295, - -0.0038282, - -0.037094, - -0.022973, - 0.069681, - 0.018999, - 0.06193, - 0.02398, - -0.034952, - -0.032063, - 0.010168, - -0.060601, - -0.030693, - -0.022878, - 0.055474, - -0.044591, - -0.018346, - 0.0013227, - -0.0033406, - 0.024904, - 0.0275, - 0.078112, - 0.023396, - -0.032466, - 0.013442, - 0.065206, - 0.025012, - -0.0063276, - -0.055376, - -0.023481, - -0.023235, - -0.0054845, - 0.044243, - 0.029718, - -0.058826, - 0.0043281, - 0.015016, - 0.046002, - -0.042339, - -0.0057414, - -0.00080439, - -0.0065222, - 0.0058675, - 0.008297, - -0.014537, - 0.068433, - 0.019168, - -0.044179, - -0.011521, - 0.004472, - -0.0026556, - -0.019407, - 0.027586, - 0.035831, - 0.00003644, - 0.043544, - -0.024098, - -0.017164, - 0.029496, - -0.004902, - -0.040167, - 0.030313, - -0.0057439, - 0.023869, - 0.0074443, - 0.022446, - 0.033563, - 0.015447, - -0.014452, - -0.015247, - 0.03024, - 0.014037, - -0.012468, - -0.00056446, - 0.043127, - -0.023619, - -0.035058, - 0.0082246, - 0.023763, - 0.057713, - -0.0087795, - -0.067263, - 0.017246, - -0.0017594, - 0.043113, - 0.034373, - -0.0064383, - 0.0088666, - -0.014164, - 0.0045613, - 0.024424, - -0.0076989, - -0.0053636, - 0.063253, - -0.0035931, - 0.010506, - 0.019511, - -0.0082633, - 0.002635, - 0.020939, - 0.038908, - 0.055189, - 0.010657, - -0.0035108, - -0.020308, - 0.051781, - -0.022633, - 0.049463, - -0.032976, - -0.018774, - 0.012541, - -0.028297, - 0.0092983, - -0.054812, - 0.0021249, - -0.039688, - -0.033047, - 0.028399, - -0.037161, - 0.023134, - -0.022209, - 0.007463, - 0.040855, - -0.043661, - 0.014643, - -0.060011, - 0.035137, - -0.038557, - -0.033092, - 0.063129, - -0.048826, - -0.0044503, - -0.04651, - 0.035649, - 0.018645, - -0.086547, - 0.014928, - 0.011053, - 0.0070792, - 0.038144, - 0.020432, - -0.021499, - -0.097063, - 0.076286, - 0.0045171, - -0.007738, - 0.0065359, - 0.03667, - 0.0035087, - -0.034291, - 0.0088716, - -0.0094659, - 0.10662, - -0.025894, - -0.015847, - -0.048345, - -0.021656, - 0.0062811, - -0.0096433, - -0.032404, - 0.011565, - 0.018649, - -0.050109, - -0.023301, - 0.057226, - 0.047373, - -0.0021267, - 0.0043084, - 0.0088362, - 0.018021, - 0.048377, - 0.0012968, - 0.016368, - -0.047809, - -0.03117, - -0.058852, - 0.023324, - 0.015757, - -0.050259, - -0.061298, - 0.032437, - -0.034867, - 0.027882, - 0.012911, - 0.00095372, - -0.013689, - -0.10466, - -0.023639, - -0.032797, - -0.040981, - -0.016957, - -0.040509, - 0.0022259, - 0.0093382, - 0.030054, - 0.019012, - -0.011606, - 0.060645, - -0.037538, - -0.034247, - 0.043518, - 0.03844, - 0.031339, - 0.030766, - -0.049308, - -0.02477, - -0.039836, - 0.02639, - 0.0049493, - 0.023166, - -0.01212, - -0.055976, - 0.04197, - 0.051769, - -0.07373, - -0.0058817, - -0.013071, - -0.050613, - -0.065831, - 0.0096919, - -0.060418, - -0.0022291, - 0.033641, - 0.0020479, - -0.013129, - 0.0015354, - -0.029818, - -0.01599, - -0.0047763, - -0.015211, - 0.02332, - 0.0201, - -0.032981, - 0.028951, - 0.028611, - 0.010724, - -0.046862, - -0.069696, - 0.017563, - -0.00042383, - 0.025668, - -0.023999 - ], - "sport": [ - 0.038675, - -0.11453, - 0.098363, - 0.0044566, - -0.031885, - -0.081237, - -0.072154, - -0.12008, - 0.077871, - -0.0058908, - -0.058193, - -0.053436, - -0.0073713, - -0.038676, - 0.12451, - 0.015395, - 0.17429, - -0.032564, - 0.032934, - 0.072891, - -0.0042423, - -0.088798, - 0.086927, - 0.046986, - 0.042058, - -0.043474, - 0.013956, - -0.02737, - -0.041556, - 0.050838, - 0.046668, - -0.029476, - 0.045252, - -0.066818, - 0.080387, - 0.02026, - 0.090607, - -0.012895, - 0.033953, - 0.015435, - 0.05103, - -0.1223, - -0.0098858, - -0.012046, - 0.049229, - -0.056388, - 0.035991, - -0.077132, - -0.024992, - 0.032712, - -0.033783, - -0.005479, - 0.087241, - -0.006387, - -0.065956, - -0.007553, - 0.069517, - -0.0081816, - -0.10827, - 0.053278, - 0.030147, - -0.0084743, - 0.12791, - 0.0053523, - 0.0076005, - -0.0596, - -0.046113, - 0.0029856, - 0.10424, - 0.018163, - 0.048484, - -0.090664, - 0.038848, - 0.082082, - 0.090511, - 0.057679, - -0.035816, - 0.0090884, - -0.10399, - -0.016696, - -0.0032477, - 0.034277, - -0.063772, - 0.088025, - -0.031135, - -0.078318, - -0.028495, - -0.0097229, - -0.041686, - -0.023364, - 0.04908, - 0.044907, - -0.14649, - -0.00856, - 0.05594, - 0.080286, - -0.070354, - -0.028375, - 0.079677, - -0.0067535, - -0.074193, - 0.043953, - 0.045466, - -0.047359, - -0.012891, - -0.11641, - -0.10143, - 0.053835, - 0.016877, - 0.010536, - -0.015527, - 0.095554, - 0.071486, - 0.043536, - 0.061468, - -0.024378, - -0.063821, - 0.03181, - -0.062516, - 0.0091772, - 0.10294, - 0.09431, - -0.080816, - -0.033541, - 0.03856, - -0.050983, - -0.073689, - -0.13988, - 0.0047769, - 0.10415, - -0.01175, - 0.0069934, - 0.079613, - 0.016648, - -0.02546, - -0.04326, - 0.037066, - 0.048927, - 0.036692, - -0.093335, - -0.019678, - -0.0065154, - 0.10929, - -0.0039526, - 0.013782, - 0.066347, - -0.024004, - -0.076505, - 0.010029, - -0.0048751, - 0.082673, - 0.098008, - -0.048456, - -0.11966, - -0.041172, - 0.017019, - 0.018526, - 0.1209, - 0.024881, - -0.012291, - 0.011274, - -0.023857, - -0.1175, - 0.09923, - -0.025933, - 0.013327, - 0.053569, - 0.010816, - -0.070071, - -0.12773, - 0.061363, - -0.0061106, - -0.002832, - 0.042306, - 0.065638, - 0.091012, - -0.040942, - 0.09296, - -0.024991, - -0.014377, - -0.039583, - -0.089442, - -0.0033116, - -0.07383, - -0.0090612, - -0.050907, - -0.068645, - 0.10825, - 0.022337, - 0.0086327, - -0.089322, - 0.10152, - -0.013348, - -0.086324, - 0.026447, - -0.070392, - -0.046322, - -0.041236, - 0.032973, - 0.029491, - -0.20827, - 0.12033, - -0.026685, - -0.1242, - -0.023374, - 0.037619, - 0.025271, - 0.046463, - -0.012754, - -0.006345, - 0.14745, - -0.025879, - 0.008901, - 0.013496, - 0.023066, - 0.02516, - -0.11139, - -0.038441, - 0.0030609, - -0.0031933, - -0.073225, - -0.081266, - -0.087137, - 0.15373, - -0.082989, - 0.015708, - 0.0051151, - 0.12166, - -0.080067, - -0.044283, - 0.0018005, - -0.061271, - -0.080985, - 0.0064669, - 0.0080981, - 0.097678, - -0.053454, - -0.029691, - -0.04955, - -0.097665, - 0.10663, - -0.018944, - 0.013969, - -0.015042, - -0.028875, - 0.061687, - -0.051152, - -0.0034172, - 0.01965, - -0.019578, - 0.043868, - 0.053757, - -0.0083711, - -0.0027071, - -0.012181, - 0.033612, - -0.063012, - 0.021539, - 0.083317, - 0.098517, - -0.045654, - 0.02897, - 0.12413, - -0.018762, - 0.022303, - 0.06441, - -0.041384, - 0.035309, - 0.1312, - -0.01694, - 0.037836, - 0.13316, - -0.15196, - -0.033584, - -0.0126, - -0.093865, - -0.029572, - 0.0060079, - -0.0015038, - 0.0094144, - 0.10902, - 0.042433, - -0.024964, - 0.043, - -0.012729, - 0.01377, - 0.072953, - -0.036635, - -0.017081, - -0.018235, - 0.15294, - -0.065095, - -0.02788, - -0.056499, - -0.013168, - -0.011766, - -0.0075574, - 0.058241, - 0.042385, - -0.089656 - ], - "cold": [ - -0.078404, - 0.033202, - 0.061262, - -0.071175, - 0.036843, - -0.12364, - -0.025827, - -0.12239, - 0.0033963, - 0.060151, - -0.10296, - -0.067958, - 0.026392, - 0.011069, - -0.040035, - -0.093605, - 0.18641, - 0.046936, - 0.05563, - 0.046624, - -0.075756, - -0.069835, - -0.042863, - 0.080228, - 0.13164, - 0.04319, - 0.020192, - -0.024279, - 0.10158, - 0.02419, - -0.010194, - 0.057755, - 0.032327, - -0.074035, - -0.013147, - 0.0060963, - 0.061316, - -0.0039823, - 0.056762, - 0.080631, - -0.019794, - -0.13263, - -0.035797, - -0.018172, - 0.032184, - 0.0068574, - 0.056604, - -0.015243, - 0.00689, - 0.0020228, - -0.01051, - 0.091344, - -0.051226, - 0.0041733, - -0.10382, - 0.14577, - 0.099992, - -0.044658, - -0.055799, - 0.024074, - 0.055752, - 0.029766, - 0.1212, - -0.17686, - -0.19859, - -0.034547, - 0.010658, - -0.051431, - -0.069806, - 0.040669, - 0.040389, - 0.059436, - 0.011406, - 0.039966, - -0.023691, - -0.0344, - -0.045179, - 0.02826, - -0.088228, - 0.013497, - -0.037319, - -0.099999, - 0.091059, - 0.11708, - 0.032163, - 0.037636, - 0.024795, - 0.032579, - -0.025767, - -0.0441, - -0.028663, - -0.051029, - -0.16076, - -0.027566, - 0.094823, - 0.062068, - 0.022678, - 0.098917, - -0.0086273, - 0.0016569, - -0.019422, - -0.010292, - -0.035476, - 0.10665, - 0.068564, - -0.17222, - -0.083418, - -0.039996, - 0.090212, - -0.012508, - -0.044649, - 0.068515, - 0.067697, - 0.015386, - 0.053481, - -0.12904, - -0.063616, - 0.084959, - -0.055072, - -0.029161, - -0.017559, - -0.058692, - 0.00077461, - -0.084227, - 0.044872, - -0.050792, - -0.043235, - -0.0831, - 0.032461, - 0.031494, - 0.021929, - 0.040833, - 0.010086, - 0.011262, - -0.026624, - -0.029726, - 0.12623, - 0.05894, - -0.052265, - 0.026632, - 0.19756, - -0.11118, - -0.042739, - -0.14429, - 0.043848, - -0.055024, - 0.072623, - 0.055761, - 0.0093313, - 0.026763, - 0.065263, - 0.053496, - 0.048572, - -0.0067385, - 0.049326, - 0.020529, - -0.074864, - -0.034769, - -0.031514, - -0.033925, - 0.057242, - -0.059873, - -0.066181, - 0.036812, - -0.023664, - -0.012327, - -0.059115, - 0.032855, - -0.024379, - 0.008267, - -0.13356, - -0.0020077, - -0.083728, - 0.056355, - 0.030839, - 0.1056, - 0.055435, - -0.037722, - -0.0071783, - -0.058125, - -0.11371, - -0.046914, - -0.0078764, - -0.14442, - 0.016224, - 0.0079638, - 0.0074663, - 0.15523, - -0.027908, - 0.047608, - 0.083748, - -0.022249, - 0.013771, - -0.023678, - -0.030113, - -0.015969, - 0.0067436, - -0.027482, - -0.015675, - 0.084079, - -0.19639, - 0.045244, - -0.10957, - -0.025477, - 0.002345, - 0.045196, - -0.012764, - -0.033436, - -0.045359, - -0.038693, - 0.12737, - -0.021424, - 0.056403, - 0.020486, - 0.1575, - 0.091505, - 0.081223, - -0.1281, - -0.080069, - -0.26899, - 0.020604, - -0.038418, - 0.0075253, - 0.12399, - -0.085048, - 0.071386, - 0.0024282, - 0.1289, - -0.041293, - -0.020069, - 0.070383, - -0.05997, - -0.026755, - -0.084422, - 0.060691, - -0.016532, - 0.010534, - -0.050216, - 0.072326, - -0.11604, - 0.19546, - -0.0085961, - 0.060835, - 0.00063866, - -0.21743, - -0.048329, - -0.02007, - -0.064039, - -0.021518, - 0.013889, - 0.021671, - 0.012911, - -0.052963, - 0.080908, - -0.012151, - 0.015653, - 0.12241, - -0.081901, - 0.023365, - 0.013969, - -0.042909, - -0.021675, - -0.0042695, - 0.033424, - -0.077683, - -0.060526, - -0.0091333, - -0.0069995, - -0.01531, - -0.06493, - -0.10795, - 0.14026, - -0.15636, - -0.064091, - 0.1124, - -0.20387, - -0.04266, - -0.082295, - 0.0041939, - -0.0131, - 0.1108, - 0.046578, - 0.010339, - -0.026378, - -0.077599, - 0.05508, - 0.0095839, - -0.064405, - -0.033596, - 0.048149, - -0.074703, - 0.055921, - -0.070343, - 0.033857, - -0.033369, - -0.0090562, - 0.03902, - 0.09128, - -0.033696, - 0.0024149 - ], - "sportswear": [ - -0.045378, - -0.060935, - 0.027148, - -0.0068405, - 0.010279, - -0.052564, - -0.018559, - -0.090969, - 0.012374, - -0.0070555, - -0.068458, - -0.0071898, - -0.116, - -0.031807, - -0.0013547, - -0.01379, - 0.084021, - 0.041115, - 0.026414, - 0.010562, - 0.039211, - -0.064507, - -0.038423, - 0.060618, - 0.0037575, - 0.014315, - 0.0036095, - 0.0082807, - -0.01582, - -0.0078622, - 0.021514, - -0.041478, - 0.078162, - -0.0061716, - 0.070392, - -0.0040736, - 0.055266, - 0.042704, - -0.0010699, - 0.096877, - 0.05254, - -0.099724, - -0.0099727, - -0.02788, - 0.021418, - -0.038194, - 0.042733, - -0.020401, - 0.000456, - -0.044135, - -0.010878, - -0.050631, - -0.013993, - 0.063048, - -0.045232, - 0.022256, - 0.0025429, - -0.007291, - -0.034518, - 0.0051462, - -0.034759, - -0.041429, - 0.082445, - -0.0020281, - 0.075695, - -0.0040675, - 0.031541, - -0.053803, - 0.047765, - -0.0039002, - 0.023228, - -0.062071, - 0.051095, - 0.012991, - 0.0181, - -0.015937, - 0.02796, - -0.029509, - -0.05901, - -0.052018, - -0.0069114, - -0.017507, - -0.025246, - 0.082676, - -0.013985, - -0.0015021, - -0.094518, - 0.0021806, - -0.035081, - -0.0223, - 0.03886, - 0.056181, - -0.072499, - -0.024177, - 0.058952, - 0.085452, - -0.089153, - -0.042607, - 0.038408, - 0.0020504, - -0.011261, - 0.06167, - -0.0044783, - 0.025848, - 0.0081718, - -0.067923, - -0.077759, - 0.036705, - -0.023206, - 0.0021608, - -0.014896, - 0.042888, - -0.0022691, - 0.047645, - 0.015525, - -0.0007463, - -0.018359, - 0.03767, - -0.043151, - -0.0010147, - 0.051942, - 0.023343, - -0.0016743, - -0.00498, - 0.071872, - -0.030804, - -0.030632, - -0.028581, - 0.030367, - 0.063819, - -0.0065547, - 0.032544, - 0.04727, - -0.021614, - -0.0076685, - 0.047677, - 0.066784, - 0.072199, - -0.018922, - -0.10453, - 0.07466, - 0.040351, - 0.030359, - 0.04645, - -0.052718, - 0.019418, - -0.010508, - -0.051394, - -0.0023174, - -0.037018, - 0.014103, - 0.024936, - 0.010415, - -0.028623, - -0.031099, - 0.0054444, - 0.02351, - 0.013845, - 0.067709, - 0.047682, - 0.0065483, - -0.089662, - -0.037626, - 0.10945, - -0.032434, - 0.05162, - -0.0028778, - -0.058449, - 0.0080691, - -0.065849, - 0.018275, - -0.035209, - 0.027188, - -0.02671, - -0.0034874, - 0.030639, - -0.041905, - 0.086384, - -0.040216, - 0.018063, - 0.029877, - -0.068941, - 0.011619, - -0.052931, - 0.0007403, - -0.047638, - -0.09917, - 0.084403, - -0.037547, - 0.049441, - -0.052973, - 0.058476, - 0.010228, - -0.069276, - 0.04156, - -0.041276, - 0.0045357, - -0.014533, - 0.071109, - -0.027919, - -0.14492, - 0.10452, - -0.0087214, - -0.027957, - -0.0012307, - 0.042945, - -0.016904, - 0.0017426, - 0.019749, - -0.015225, - 0.08857, - 0.014398, - -0.024783, - -0.036454, - -0.052485, - 0.006066, - -0.082725, - -0.0054819, - 0.000072988, - 0.023897, - -0.055923, - -0.014606, - 0.047515, - 0.096698, - -0.013703, - 0.062733, - -0.00092705, - 0.036334, - -0.0031039, - -0.016934, - 0.0056276, - -0.014674, - -0.062982, - -0.035652, - 0.0060825, - 0.056742, - -0.055614, - -0.07223, - 0.033275, - -0.084087, - 0.022835, - -0.0064388, - 0.016511, - -0.020447, - -0.034428, - 0.0055411, - -0.057863, - 0.023274, - -0.031658, - -0.08303, - -0.0038929, - -0.067745, - 0.025187, - 0.034117, - -0.023467, - 0.063101, - -0.054577, - -0.010689, - 0.10343, - -0.0099643, - 0.005635, - -0.0093299, - 0.0072124, - 0.010088, - 0.0016114, - 0.0027039, - -0.039173, - -0.035552, - 0.013935, - -0.01666, - -0.0060869, - 0.075441, - -0.10334, - -0.014106, - -0.01531, - -0.047518, - -0.022269, - -0.0092315, - -0.082675, - 0.049814, - 0.070129, - 0.025869, - -0.010295, - 0.02251, - -0.066072, - -0.026907, - -0.019968, - -0.016223, - 0.035919, - 0.022052, - 0.040642, - 0.031692, - 0.038965, - -0.013164, - -0.095179, - -0.11173, - 0.014642, - 0.013973, - 0.025405, - -0.052128 - ], - "caregiver": [ - -0.0094041, - -0.038241, - -0.065486, - 0.015443, - -0.018512, - 0.06605, - -0.0011165, - -0.077602, - 0.05463, - -0.01338, - 0.011873, - 0.033507, - 0.010592, - 0.020365, - -0.086383, - 0.042903, - 0.090117, - 0.074319, - 0.044964, - -0.034447, - -0.052651, - 0.011006, - 0.0046939, - 0.041114, - -0.035977, - 0.042849, - -0.04422, - 0.068644, - -0.050835, - 0.0012686, - 0.02742, - -0.0012035, - -0.032541, - -0.016794, - -0.022007, - 0.0553, - -0.023221, - -0.044138, - 0.088618, - 0.013105, - -0.0066071, - -0.12222, - 0.038162, - -0.047576, - 0.037031, - 0.01822, - 0.00027333, - 0.042665, - -0.065883, - -0.0096244, - -0.036261, - 0.019403, - 0.049867, - 0.050814, - 0.0032166, - -0.070119, - 0.0028781, - -0.02211, - -0.022997, - -0.037345, - -0.031521, - -0.12065, - 0.10537, - 0.01311, - -0.018684, - -0.023796, - -0.046495, - -0.039318, - -0.095704, - -0.087254, - 0.019131, - 0.040901, - 0.045149, - -0.045982, - -0.026187, - -0.022199, - -0.049783, - -0.017006, - 0.0084401, - -0.054875, - -0.015881, - 0.04639, - -0.030566, - 0.001428, - -0.003074, - -0.079202, - 0.042918, - 0.018443, - -0.023184, - -0.062858, - 0.046129, - 0.048336, - -0.089574, - -0.052052, - -0.029765, - 0.070598, - 0.050724, - 0.066226, - 0.015253, - -0.047514, - 0.049153, - -0.02767, - -0.028201, - -0.037674, - -0.023115, - -0.096794, - -0.029286, - -0.0062183, - -0.043137, - -0.055859, - 0.021225, - 0.075405, - 0.036573, - -0.0056649, - -0.0024333, - -0.0048836, - 0.00038356, - -0.029507, - -0.044762, - -0.027629, - -0.073636, - 0.041051, - 0.096176, - 0.029786, - 0.069783, - -0.0016179, - 0.001595, - -0.063219, - 0.088341, - 0.061971, - 0.018659, - 0.0080468, - -0.059151, - -0.064416, - -0.046782, - 0.0075166, - 0.0044024, - 0.036968, - 0.059128, - -0.0025614, - 0.021762, - -0.0096212, - 0.013366, - -0.034486, - -0.034268, - 0.00016974, - -0.01678, - 0.026857, - 0.032455, - 0.027173, - 0.011365, - 0.068351, - -0.03193, - -0.10901, - 0.00249, - 0.011001, - -0.0066686, - -0.00002867, - 0.092261, - -0.01813, - 0.05595, - 0.049761, - -0.040707, - -0.02087, - -0.012568, - -0.038446, - 0.019912, - -0.090873, - -0.03184, - -0.095528, - -0.053696, - 0.033784, - -0.075795, - 0.019849, - 0.013009, - 0.032747, - 0.0070151, - -0.01578, - -0.066269, - -0.048585, - 0.013502, - -0.031425, - 0.029451, - 0.0016704, - -0.061044, - -0.13028, - 0.064897, - 0.070812, - -0.0039033, - -0.053139, - 0.02099, - 0.063339, - -0.012721, - -0.018021, - 0.0058227, - 0.04432, - 0.038365, - 0.064468, - -0.018572, - 0.0048767, - -0.14085, - 0.093639, - -0.009634, - -0.092932, - 0.039186, - 0.0047872, - -0.052446, - -0.030572, - -0.026471, - -0.033662, - 0.061274, - -0.00043633, - -0.018142, - 0.055555, - -0.07682, - 0.0445, - -0.0024885, - -0.0064654, - 0.033955, - 0.0020918, - 0.068469, - -0.049976, - 0.014393, - 0.10464, - 0.069234, - -0.03305, - 0.0026861, - 0.045772, - -0.020974, - -0.031686, - 0.0044648, - -0.036476, - -0.03956, - -0.070507, - -0.0031395, - 0.068911, - 0.0086818, - 0.019553, - -0.020182, - -0.043409, - 0.051928, - 0.09901, - 0.011316, - -0.012349, - 0.012324, - -0.022773, - 0.040926, - -0.014015, - 0.0034818, - -0.034957, - 0.026341, - 0.082451, - -0.0025428, - -0.055515, - 0.074986, - -0.063666, - 0.061802, - 0.048047, - -0.081211, - -0.063336, - 0.0016396, - -0.023158, - -0.031958, - 0.029728, - 0.035417, - -0.021178, - 0.033727, - 0.010759, - 0.032045, - 0.032365, - -0.054531, - 0.083268, - -0.10861, - -0.039199, - 0.041893, - 0.0019533, - -0.012382, - 0.016581, - 0.043521, - 0.090755, - 0.060162, - -0.038336, - -0.0095002, - -0.032463, - 0.016392, - 0.093008, - -0.057139, - -0.067812, - -0.011972, - -0.02481, - 0.066413, - 0.017642, - -0.031157, - -0.018749, - 0.043352, - 0.051679, - 0.048958, - 0.043774, - 0.013714, - 0.048565 - ], - "raccoons": [ - 0.063581, - -0.082865, - -0.044684, - 0.022693, - -0.019499, - 0.02973, - 0.021193, - -0.067955, - 0.020536, - 0.0060206, - -0.046999, - -0.027816, - 0.02364, - -0.0020739, - -0.065197, - -0.12786, - 0.027967, - -0.0071587, - 0.029799, - 0.0069306, - 0.051243, - -0.10789, - -0.038571, - 0.056983, - 0.063603, - -0.049509, - -0.041508, - 0.056152, - 0.13555, - 0.11259, - -0.015565, - 0.0016444, - 0.0082217, - 0.061835, - 0.00666, - 0.07547, - -0.026355, - -0.025696, - 0.011498, - -0.098605, - 0.042942, - -0.039953, - 0.012436, - -0.034325, - 0.065908, - 0.021154, - 0.0061547, - 0.012129, - -0.0088277, - -0.03917, - 0.014315, - 0.077196, - -0.0023219, - -0.091722, - -0.042975, - -0.029732, - 0.037142, - 0.05635, - -0.02374, - 0.035199, - -0.024074, - -0.095547, - 0.034315, - -0.022382, - 0.015264, - 0.005665, - -0.0088586, - 0.0057553, - -0.083172, - 0.052203, - -0.0046044, - 0.021005, - 0.086274, - 0.037538, - 0.014326, - 0.041293, - -0.043903, - -0.045424, - 0.044995, - -0.026843, - 0.0051732, - 0.023989, - 0.052907, - -0.031673, - 0.086549, - 0.055948, - 0.049498, - -0.0052468, - 0.037275, - 0.051673, - 0.0052605, - 0.014098, - -0.076214, - 0.0063367, - 0.0683, - 0.058024, - -0.048098, - 0.06836, - 0.065701, - -0.034804, - -0.018391, - 0.040799, - -0.035959, - 0.013138, - 0.033485, - -0.03485, - -0.033338, - 0.034704, - 0.01369, - -0.013175, - -0.070698, - 0.049836, - 0.014423, - 0.0018235, - 0.028324, - -0.045931, - 0.0053833, - -0.020798, - -0.026271, - 0.021051, - -0.086488, - 0.093689, - 0.0084313, - -0.067705, - 0.08337, - 0.011259, - 0.01612, - -0.014916, - -0.0067682, - 0.068967, - 0.076005, - 0.10851, - 0.068268, - 0.011987, - 0.076341, - 0.035657, - 0.034145, - 0.052, - 0.0051154, - -0.0088902, - 0.040396, - -0.012184, - 0.04019, - -0.013731, - 0.055213, - -0.08268, - 0.012182, - 0.018749, - 0.038277, - -0.15436, - 0.031218, - 0.090044, - -0.11, - 0.02258, - 0.064105, - -0.01178, - 0.0069296, - -0.039318, - 0.020455, - -0.016729, - 0.020077, - -0.0083971, - -0.0045968, - -0.056378, - 0.072238, - -0.073453, - -0.0045638, - -0.051064, - 0.026977, - -0.00099011, - -0.0056063, - -0.032963, - 0.04897, - -0.0010436, - -0.013747, - 0.057067, - 0.065366, - 0.030929, - 0.035744, - 0.033765, - 0.067038, - -0.023887, - 0.035173, - -0.081155, - -0.050654, - -0.079973, - -0.0029784, - 0.13117, - 0.071962, - -0.075673, - 0.0092644, - 0.071988, - -0.15056, - -0.0039212, - 0.012028, - 0.022252, - 0.0061472, - 0.050807, - 0.065448, - -0.0082873, - -0.14648, - 0.023127, - -0.047904, - -0.024656, - -0.024246, - -0.012698, - -0.011889, - -0.030158, - -0.018799, - -0.067253, - 0.068908, - -0.0045197, - 0.083558, - -0.060266, - 0.054714, - -0.0097717, - -0.019498, - -0.070836, - -0.022033, - -0.028923, - 0.0049253, - 0.063344, - 0.01613, - 0.060703, - 0.036133, - -0.021672, - 0.036923, - 0.062499, - -0.027148, - -0.018189, - -0.089, - 0.014993, - -0.08652, - -0.025521, - 0.030719, - 0.0042166, - 0.08336, - 0.0024498, - -0.020038, - -0.047135, - -0.020695, - -0.025132, - -0.049833, - -0.063469, - 0.036195, - 0.12748, - -0.033839, - -0.017963, - -0.0050039, - -0.0048861, - -0.041635, - 0.027843, - -0.026187, - -0.034227, - -0.0081618, - 0.035947, - 0.019895, - -0.036588, - 0.026424, - -0.089577, - 0.048838, - -0.0062846, - 0.011976, - -0.035239, - 0.051607, - 0.08367, - 0.074697, - 0.049816, - 0.010918, - -0.033999, - -0.10052, - 0.052178, - -0.079139, - -0.016785, - 0.021066, - -0.024144, - -0.096207, - -0.012101, - 0.0081281, - -0.0097093, - 0.0095325, - 0.003066, - 0.0053525, - -0.025077, - -0.053023, - 0.06381, - 0.047351, - -0.047145, - 0.0075272, - 0.0048782, - -0.0077268, - 0.0056963, - -0.090105, - -0.076084, - 0.030373, - -0.033872, - -0.045881, - 0.048198, - -0.027708, - 0.027362 - ], - "mortgage": [ - 0.038643, - -0.02926, - -0.050821, - 0.067044, - 0.0033953, - -0.040255, - -0.025326, - -0.079782, - 0.0438, - 0.012672, - 0.058523, - 0.0014028, - -0.050472, - 0.0027926, - -0.0031946, - 0.017938, - 0.096747, - -0.024219, - 0.053611, - -0.031584, - 0.032713, - 0.056965, - -0.017171, - 0.049541, - 0.0084854, - 0.042579, - 0.013922, - 0.067839, - -0.0055501, - -0.055943, - -0.022448, - -0.042681, - -0.016622, - -0.042166, - 0.031322, - 0.03349, - -0.013139, - 0.030031, - -0.025719, - 0.048517, - 0.011477, - -0.11571, - 0.056557, - -0.086554, - -0.040436, - -0.0024523, - -0.097848, - -0.052876, - -0.052596, - -0.010646, - 0.016791, - -0.025392, - -0.010371, - -0.015209, - -0.060472, - -0.012028, - -0.087673, - 0.0029274, - -0.032602, - -0.078868, - 0.036305, - 0.052629, - 0.13349, - 0.0080983, - -0.017885, - -0.06365, - -0.082304, - -0.035078, - -0.019492, - -0.064119, - -0.01776, - 0.042559, - 0.041084, - -0.045979, - -0.015986, - 0.012231, - -0.079106, - 0.0015485, - -0.024288, - 0.054229, - -0.015725, - -0.041898, - -0.0766, - 0.073815, - -0.064824, - 0.04492, - 0.018414, - -0.047322, - 0.097308, - -0.0063893, - 0.044374, - 0.065878, - -0.0955, - 0.00676, - -0.076858, - 0.050221, - -0.07268, - -0.029318, - 0.017212, - -0.089593, - 0.023025, - -0.044538, - 0.0032618, - -0.047373, - 0.020194, - -0.073931, - -0.07429, - 0.036801, - 0.047277, - -0.095588, - -0.033954, - 0.052981, - 0.056483, - 0.052167, - 0.010594, - 0.0045271, - 0.015704, - -0.030423, - -0.058539, - -0.052112, - -0.055758, - -0.0051208, - 0.088663, - -0.0084424, - 0.057938, - -0.0030964, - 0.025775, - -0.077655, - -0.033707, - 0.073424, - 0.010515, - -0.035541, - 0.018565, - -0.018779, - -0.0039309, - 0.053857, - -0.036493, - 0.01421, - -0.056907, - -0.039308, - -0.015764, - 0.056073, - -0.037084, - 0.018098, - -0.062459, - -0.055817, - 0.0051997, - -0.015853, - 0.042259, - -0.061053, - 0.005385, - 0.097586, - 0.02746, - -0.062777, - -0.035774, - -0.017568, - 0.11063, - -0.019302, - 0.016198, - -0.01869, - 0.059258, - 0.062784, - -0.073149, - -0.023328, - 0.040757, - -0.07296, - 0.010161, - -0.030391, - 0.0020144, - 0.058988, - 0.0081718, - -0.05788, - 0.050453, - 0.00029315, - -0.038703, - 0.041555, - -0.010802, - 0.0029476, - -0.004715, - -0.063314, - 0.017254, - -0.10853, - -0.021866, - 0.03438, - -0.02748, - -0.072417, - -0.065991, - 0.077599, - 0.0052401, - -0.040291, - -0.0065441, - 0.013811, - 0.030607, - 0.013529, - 0.018088, - -0.015249, - 0.020983, - 0.013254, - 0.016076, - 0.026104, - -0.14429, - 0.046526, - 0.013779, - -0.065102, - 0.087585, - -0.022599, - 0.04597, - -0.1293, - -0.094903, - -0.007754, - 0.12431, - -0.0055734, - 0.014484, - 0.017824, - 0.010346, - 0.07589, - 0.0038868, - 0.048126, - 0.010656, - -0.061947, - 0.11419, - 0.024422, - 0.011103, - 0.093789, - 0.031458, - -0.10005, - -0.058472, - 0.034596, - -0.011531, - -0.030095, - 0.052626, - -0.034292, - -0.047494, - 0.011463, - 0.026637, - 0.0053211, - -0.045132, - 0.01239, - -0.0082339, - 0.0034355, - 0.031892, - -0.022284, - 0.0024147, - -0.024883, - -0.056532, - 0.050194, - -0.047252, - -0.0028686, - -0.0012622, - 0.033751, - 0.031484, - -0.079248, - -0.064587, - -0.05074, - 0.0045666, - -0.024784, - 0.011362, - -0.0071184, - 0.035262, - -0.032299, - 0.08264, - 0.0013506, - -0.026003, - -0.030077, - 0.010258, - -0.016618, - 0.00069131, - 0.023316, - 0.050739, - 0.037876, - -0.061974, - 0.064413, - -0.095683, - -0.029319, - -0.061436, - 0.00053251, - 0.067459, - 0.10546, - 0.092006, - -0.019611, - 0.11996, - 0.014703, - -0.0071563, - 0.037046, - -0.020966, - 0.041151, - -0.0061889, - 0.035183, - -0.096566, - 0.059895, - 0.022097, - -0.025063, - -0.013944, - 0.03228, - -0.05033, - -0.00050654, - 0.0078638, - -0.019996, - -0.10038, - -0.010284 - ], - "ambitions": [ - 0.02086, - -0.022212, - -0.0035266, - -0.054632, - -0.023398, - -0.02997, - -0.063097, - -0.070166, - 0.042065, - 0.047754, - -0.033588, - -0.0045128, - 0.016192, - 0.031517, - -0.011, - -0.0058772, - 0.013915, - 0.0079749, - 0.04678, - -0.00317, - -0.004525, - 0.02945, - 0.037929, - 0.060011, - 0.0024225, - -0.015269, - 0.018699, - -0.046714, - 0.072926, - -0.057885, - -0.020873, - -0.10603, - -0.020096, - -0.064822, - -0.012264, - 0.074129, - -0.018477, - 0.039199, - 0.0088126, - -0.0084861, - -0.064099, - -0.080328, - -0.0088649, - 0.015734, - -0.0021583, - 0.0059112, - -0.0065743, - -0.023985, - -0.013475, - -0.05946, - 0.045854, - -0.039493, - -0.05963, - 0.0031332, - -0.0522, - 0.0034613, - -0.031448, - 0.029673, - -0.02757, - 0.039014, - 0.018541, - 0.043618, - 0.11292, - -0.034457, - 0.057958, - -0.058248, - -0.032454, - -0.023911, - -0.006556, - -0.020152, - 0.064287, - 0.029801, - 0.01593, - 0.01766, - 0.010659, - 0.023959, - -0.025365, - -0.049064, - 0.0009244, - 0.054522, - 0.0050447, - 0.048214, - -0.13516, - 0.08114, - 0.0096294, - -0.016204, - 0.0059565, - 0.0048615, - -0.063001, - 0.00044372, - 0.079875, - 0.0030434, - -0.070478, - 0.027079, - 0.0298, - 0.032628, - 0.0091535, - -0.032768, - -0.020689, - 0.030884, - 0.0056918, - 0.031831, - 0.027201, - -0.014699, - 0.054314, - -0.0011, - -0.018447, - -0.059431, - -0.039556, - 0.025779, - -0.017816, - 0.012329, - 0.049051, - 0.0034515, - 0.049197, - -0.0030698, - 0.035234, - -0.017138, - -0.0287, - 0.041441, - -0.024801, - -0.076429, - -0.033401, - -0.038085, - 0.1253, - -0.015376, - 0.037212, - -0.039865, - 0.010428, - 0.13346, - -0.047824, - 0.011564, - 0.01366, - -0.0089189, - -0.04624, - -0.054693, - 0.02793, - 0.067137, - -0.045319, - 0.032351, - 0.0058974, - -0.04814, - 0.0052949, - 0.028067, - 0.0003947, - -0.013538, - 0.014704, - 0.0013757, - -0.021115, - -0.012487, - 0.043063, - 0.091878, - -0.012298, - -0.012631, - -0.019651, - 0.03925, - 0.063015, - 0.028979, - 0.055595, - -0.032083, - 0.068189, - -0.0074406, - -0.012245, - -0.0013646, - -0.048386, - -0.036937, - 0.021857, - -0.020465, - -0.041362, - 0.0096094, - 0.0017654, - -0.019679, - -0.029174, - 0.012108, - -0.039974, - 0.031945, - -0.051738, - 0.029462, - -0.0029717, - 0.049038, - 0.010967, - -0.036405, - 0.0056901, - -0.066011, - -0.0029304, - -0.074459, - -0.0056321, - 0.10383, - 0.0064476, - 0.041319, - 0.014243, - 0.088244, - -0.03873, - -0.0089267, - 0.032782, - 0.073244, - -0.032604, - 0.021773, - 0.023468, - 0.063921, - -0.11223, - 0.029052, - -0.0072978, - -0.054997, - -0.05881, - 0.026494, - 0.044456, - -0.014153, - 0.041699, - -0.045559, - 0.067961, - 0.034793, - 0.036505, - -0.024187, - -0.0017721, - -0.030202, - -0.025347, - -0.04748, - -0.083317, - -0.012163, - -0.0098273, - 0.010614, - -0.0091192, - 0.086287, - 0.13499, - -0.0017593, - 0.017976, - 0.09087, - -0.0010416, - -0.023584, - -0.0097185, - -0.035125, - -0.12904, - 0.02257, - 0.074542, - 0.023517, - 0.060163, - -0.089108, - -0.034337, - 0.07093, - -0.019701, - 0.012203, - -0.0050689, - 0.0479, - -0.0062746, - 0.0016039, - -0.059185, - -0.13463, - -0.00053842, - 0.0092511, - -0.0018576, - -0.042412, - -0.025145, - -0.041366, - 0.0090093, - 0.035602, - -0.10812, - 0.015508, - 0.033182, - 0.084814, - -0.008135, - 0.00074635, - 0.0016528, - -0.022307, - 0.045083, - 0.03122, - -0.044977, - 0.06795, - 0.019272, - 0.0011366, - 0.018905, - 0.078225, - -0.10026, - -0.031203, - 0.076564, - 0.014357, - 0.024038, - 0.022087, - 0.021104, - 0.064497, - 0.049813, - -0.0016546, - 0.028796, - -0.023393, - 0.045793, - -0.0027385, - -0.020567, - 0.021067, - -0.0035546, - -0.019119, - 0.022087, - 0.024696, - -0.03395, - 0.029211, - -0.0036401, - 0.027114, - -0.024115, - 0.040277, - -0.060513, - 0.027706 - ], - "aspirations": [ - 0.024104, - 0.0015632, - 0.023722, - -0.023174, - -0.0074595, - -0.024876, - -0.039517, - -0.064188, - 0.021401, - -0.0094285, - 0.0082114, - 0.010548, - -0.025684, - 0.010099, - 0.0063914, - -0.019098, - -0.0066304, - 0.033504, - 0.031727, - 0.031543, - -0.023581, - 0.0084088, - 0.03487, - 0.074, - -0.0058625, - -0.013504, - -0.0019723, - -0.049802, - 0.091372, - -0.055459, - -0.011856, - -0.073677, - 0.036875, - -0.029964, - -0.0048041, - 0.065435, - -0.021673, - 0.040709, - -0.008102, - -0.01532, - -0.0022502, - -0.065053, - 0.0020956, - -0.0084469, - 0.009593, - 0.0064585, - -0.0021495, - -0.02388, - -0.026023, - -0.043624, - 0.021574, - -0.0056965, - -0.051324, - 0.011597, - -0.024763, - -0.00041301, - -0.024838, - -0.0074786, - -0.017913, - 0.018053, - 0.02898, - 0.063167, - 0.10326, - -0.051044, - 0.073338, - -0.059618, - -0.024049, - -0.0062149, - -0.010912, - -0.04675, - 0.018778, - 0.027059, - 0.021896, - -0.016771, - -0.017365, - 0.00049614, - -0.014949, - -0.044172, - 0.01017, - 0.024469, - 0.022596, - 0.04117, - -0.062389, - 0.061239, - -0.015998, - -0.021752, - -0.031303, - -0.016386, - -0.05021, - -0.031208, - 0.034006, - 0.013889, - -0.063275, - 0.025219, - -0.0096031, - 0.037002, - 0.029391, - -0.030544, - 0.016027, - 0.0082347, - 0.022957, - 0.0010127, - 0.016639, - -0.014605, - 0.057909, - 0.0022371, - 0.002729, - -0.023553, - -0.052925, - 0.02697, - -0.0091458, - 0.026114, - 0.046388, - -0.0088269, - 0.037246, - 0.0011359, - 0.0026308, - -0.013681, - -0.043546, - 0.033145, - -0.00061844, - -0.055844, - -0.02529, - -0.045933, - 0.097446, - 0.0031746, - 0.036943, - -0.059828, - -0.0030551, - 0.095303, - 0.0089846, - 0.030189, - 0.064645, - -0.019522, - -0.043365, - -0.0077456, - 0.021919, - 0.070319, - -0.060431, - 0.032315, - 0.021677, - -0.04333, - 0.013858, - 0.028263, - -0.026088, - -0.018567, - -0.0025561, - 0.0020926, - -0.02186, - 0.036857, - 0.043781, - 0.080553, - -0.0098802, - 0.021318, - -0.02575, - 0.018648, - 0.020695, - 0.0067223, - 0.051354, - -0.056975, - 0.051511, - -0.0035213, - -0.0092244, - 0.030322, - -0.032831, - -0.045232, - 0.005606, - -0.03166, - -0.045802, - -0.0019725, - -0.023851, - -0.0097089, - -0.021802, - 0.030533, - -0.013308, - 0.042759, - -0.017262, - 0.034694, - 0.020138, - 0.0030421, - -0.0087843, - 0.0019408, - -0.013797, - -0.068402, - 0.002291, - -0.072877, - 0.013567, - 0.080897, - 0.027326, - 0.021206, - 0.021015, - 0.064609, - -0.051604, - 0.0016909, - 0.018584, - 0.038945, - -0.0026363, - 0.01399, - 0.022411, - 0.034498, - -0.091566, - -0.0068271, - 0.04275, - -0.057716, - -0.059459, - 0.020277, - 0.072121, - 0.006707, - 0.032596, - -0.015247, - 0.079243, - 0.014456, - 0.026938, - 0.00057072, - -0.011081, - 0.0090411, - 0.023954, - -0.06064, - -0.069786, - 0.0025561, - -0.040172, - -0.0027188, - 0.0046321, - 0.075744, - 0.098424, - 0.016692, - 0.01588, - 0.067348, - 0.010746, - -0.02659, - 0.014528, - -0.015498, - -0.11756, - 0.023468, - 0.058313, - 0.022063, - 0.01987, - -0.041502, - -0.0097256, - 0.053881, - -0.030807, - 0.039119, - 0.011871, - 0.040192, - 0.0053916, - -0.019737, - -0.082199, - -0.10871, - -0.0039821, - -0.0017751, - 0.026103, - -0.022351, - -0.010042, - -0.036783, - 0.029375, - 0.0084403, - -0.11661, - 0.040886, - 0.05063, - 0.036629, - -0.020439, - -0.008644, - 0.017502, - -0.025076, - 0.06613, - 0.029371, - -0.0023549, - 0.054632, - 0.0021836, - 0.037597, - 0.028098, - 0.06152, - -0.069234, - -0.045372, - 0.049777, - 0.022823, - -0.0063385, - 0.030844, - 0.048985, - 0.049238, - 0.033568, - 0.0058886, - 0.010657, - -0.0062602, - 0.045049, - 0.0087933, - -0.040372, - 0.019543, - 0.0051373, - -0.025279, - 0.046321, - 0.0072604, - -0.048707, - 0.01866, - -0.035974, - 0.037751, - -0.0017957, - 0.034753, - -0.053658, - 0.037462 - ], - "away": [ - 0.032561, - 0.036103, - -0.045725, - -0.016705, - 0.050081, - -0.056541, - -0.0041217, - -0.11338, - -0.0068258, - -0.0058697, - -0.074113, - -0.074326, - 0.049872, - -0.0014979, - -0.02549, - -0.0023162, - 0.19427, - 0.012784, - 0.10003, - 0.018009, - 0.042609, - -0.023749, - 0.032661, - -0.0026207, - -0.016497, - -0.031259, - 0.023422, - 0.0076931, - -0.083386, - 0.021401, - -0.011633, - -0.018708, - 0.0066865, - 0.024931, - -0.028054, - -0.092537, - -0.0012597, - -0.058046, - -0.039, - 0.00428, - 0.03601, - -0.12197, - -0.025914, - 0.051453, - 0.017912, - -0.023649, - 0.025886, - -0.0057219, - 0.034315, - -0.015026, - 0.077935, - -0.01314, - -0.016605, - -0.03458, - -0.27314, - 0.022201, - -0.029826, - -0.060036, - -0.091968, - -0.034221, - 0.04402, - 0.00062718, - 0.1968, - 0.0121, - -0.056587, - 0.030201, - -0.036342, - 0.010102, - 0.015344, - -0.027977, - -0.024063, - 0.0096138, - 0.15814, - -0.041709, - 0.025955, - -0.027356, - 0.026763, - -0.021994, - 0.016795, - 0.0082086, - -0.020442, - -0.16154, - -0.019878, - 0.17933, - -0.01103, - -0.011101, - 0.043818, - -0.042125, - -0.036149, - -0.032064, - 0.071784, - 0.076267, - -0.13949, - 0.090747, - 0.090192, - -0.017493, - -0.02342, - -0.017407, - 0.008043, - 0.0045122, - 0.064866, - 0.0066647, - 0.010096, - 0.023226, - 0.012283, - -0.10913, - -0.012831, - -0.044822, - 0.017845, - -0.038362, - -0.011508, - 0.27952, - 0.12018, - 0.03653, - 0.019415, - 0.051347, - -0.014399, - 0.027151, - 0.025938, - -0.073532, - -0.021924, - -0.022531, - 0.017856, - 0.039302, - -0.050515, - -0.028205, - -0.06826, - -0.098544, - 0.044319, - 0.015406, - -0.02657, - 0.071853, - 0.021227, - 0.014487, - 0.058867, - -0.050767, - 0.00011779, - 0.22177, - 0.0017046, - -0.034227, - 0.032526, - -0.034836, - 0.022422, - -0.025433, - 0.061338, - 0.11737, - 0.045566, - 0.038051, - -0.034553, - -0.060696, - 0.075301, - 0.014919, - -0.067023, - 0.018742, - 0.059647, - -0.12703, - 0.018863, - -0.054438, - 0.0049336, - -0.050899, - 0.058615, - 0.011958, - 0.04228, - -0.0026317, - -0.00010936, - 0.088807, - 0.080605, - 0.0069965, - -0.071033, - -0.007409, - 0.0364, - 0.0083407, - -0.061349, - -0.010814, - 0.081447, - 0.058342, - 0.0070564, - -0.074392, - 0.037802, - 0.0087076, - -0.098426, - 0.0036664, - -0.051084, - -0.05025, - -0.065677, - 0.034116, - -0.011169, - 0.20311, - 0.0062355, - 0.023923, - 0.043313, - -0.035678, - -0.064141, - -0.017092, - 0.0018942, - 0.036969, - 0.036424, - 0.042662, - 0.0016265, - 0.050966, - -0.22766, - 0.11783, - 0.11247, - -0.073506, - 0.022933, - -0.00070274, - 0.002067, - -0.025936, - -0.0017759, - -0.052532, - 0.015957, - -0.093748, - 0.041909, - -0.0086076, - -0.011605, - -0.032624, - -0.045031, - -0.026021, - 0.094615, - -0.21293, - 0.035569, - -0.014299, - -0.067601, - 0.14275, - 0.16409, - -0.030919, - -0.048062, - 0.17323, - 0.025937, - -0.15878, - 0.031025, - -0.047048, - -0.06839, - -0.10924, - -0.053714, - -0.040648, - -0.016236, - 0.039137, - 0.047121, - 0.11324, - 0.13143, - -0.0046743, - 0.050715, - 0.02679, - -0.090944, - 0.013768, - 0.0060903, - -0.054158, - 0.0062955, - 0.033949, - 0.051992, - -0.025513, - -0.077531, - -0.0076461, - 0.10451, - -0.011642, - 0.0068062, - 0.020048, - -0.03086, - 0.0040365, - 0.069305, - 0.034807, - -0.11152, - 0.04585, - 0.065242, - 0.021463, - -0.066163, - 0.0092853, - 0.034116, - -0.016694, - -0.082346, - 0.15678, - -0.18196, - -0.089024, - 0.12169, - -0.15421, - 0.042048, - 0.0094514, - 0.032403, - 0.039625, - -0.062262, - -0.066331, - 0.011181, - -0.063716, - 0.12463, - -0.0072615, - 0.051068, - 0.036547, - -0.010755, - -0.020641, - 0.026978, - 0.074499, - -0.13296, - 0.0075365, - 0.0035763, - 0.02119, - -0.041179, - 0.029434, - 0.0085752, - -0.010296 - ], - "nature": [ - 0.004046, - -0.027806, - 0.038657, - 0.0028655, - -0.024043, - -0.023465, - 0.0062456, - -0.10028, - 0.035106, - 0.011193, - 0.009021, - -0.055493, - 0.02619, - 0.0052861, - 0.010826, - -0.027285, - 0.10268, - 0.045111, - 0.066381, - 0.023876, - 0.0069977, - -0.0097002, - 0.064459, - 0.082835, - -0.016369, - -0.058337, - -0.021509, - 0.024623, - 0.027147, - -0.0246, - 0.026916, - 0.023588, - -0.008758, - -0.066144, - -0.0035583, - 0.015851, - 0.010341, - -0.042268, - -0.0099187, - 0.016712, - 0.001545, - -0.19216, - -0.01922, - -0.019142, - -0.024179, - -0.051366, - -0.0019551, - -0.031179, - -0.011017, - -0.08033, - -0.0059336, - 0.014341, - 0.026252, - 0.014275, - -0.046447, - -0.028426, - 0.013, - 0.0055099, - -0.05806, - 0.026988, - 0.0022251, - -0.021141, - 0.1576, - -0.053743, - 0.018749, - -0.024065, - -0.020355, - 0.052704, - -0.026308, - 0.024231, - 0.065929, - -0.047808, - -0.0011834, - -0.0051256, - -0.021764, - -0.040927, - 0.0036272, - 0.0085938, - -0.016715, - -0.03039, - -0.080371, - 0.0055325, - 0.027862, - 0.10098, - 0.054044, - -0.036521, - 0.024354, - 0.047161, - 0.0076445, - 0.0075382, - 0.020747, - -0.00023041, - -0.099326, - -0.0072576, - 0.0044717, - 0.046631, - 0.0024391, - -0.0033862, - 0.027858, - 0.034299, - -0.026664, - 0.02788, - 0.037649, - 0.01159, - -0.037609, - -0.038256, - -0.0031516, - 0.010623, - 0.016366, - -0.038996, - -0.023225, - 0.04959, - 0.063207, - 0.011724, - -0.044045, - 0.044709, - 0.017488, - 0.03181, - -0.081282, - 0.030714, - -0.029413, - 0.028859, - -0.0097059, - -0.015571, - 0.061616, - 0.0075702, - -0.0044637, - -0.10888, - 0.034506, - 0.13494, - -0.029829, - -0.064376, - -0.0064191, - 0.079535, - -0.018488, - -0.056595, - 0.052936, - 0.033986, - 0.048363, - -0.02123, - 0.022309, - -0.059127, - 0.019987, - 0.023749, - 0.035342, - 0.018096, - -0.022448, - -0.018567, - 0.013238, - -0.0099902, - -0.022877, - 0.07145, - -0.04186, - -0.06565, - 0.028176, - 0.064064, - -0.034335, - 0.032554, - 0.0058617, - 0.016997, - 0.038365, - -0.010084, - -0.11868, - 0.028389, - 0.065038, - 0.031196, - 0.020759, - 0.041731, - 0.00018771, - 0.053033, - -0.0042577, - 0.022717, - 0.011158, - -0.038029, - 0.010004, - 0.084555, - 0.011992, - 0.092463, - -0.032733, - 0.0084898, - 0.0036381, - 0.02759, - -0.003005, - 0.023627, - -0.016984, - -0.093719, - 0.10985, - 0.1091, - 0.010399, - -0.015689, - 0.05935, - 0.061595, - -0.035514, - -0.053995, - -0.069438, - 0.0002728, - 0.019468, - -0.012893, - -0.027522, - 0.0093339, - -0.16403, - -0.00050321, - -0.0053724, - -0.079965, - 0.036508, - 0.029542, - -0.0021249, - 0.0035654, - -0.009032, - -0.0013843, - 0.11195, - 0.030432, - 0.018964, - -0.043142, - 0.076971, - -0.0054301, - -0.0084481, - -0.040419, - -0.10593, - 0.021634, - 0.0068539, - -0.020225, - -0.048746, - 0.12531, - -0.042859, - 0.0000494, - -0.021797, - 0.088491, - -0.016445, - -0.022108, - -0.047821, - -0.069278, - -0.13274, - -0.002957, - 0.037042, - 0.021124, - -0.032487, - -0.019452, - -0.02897, - -0.024044, - 0.036237, - 0.045985, - 0.00075074, - 0.024616, - -0.068198, - 0.019012, - -0.057331, - -0.039615, - -0.025636, - -0.056095, - 0.001973, - -0.04547, - 0.0068493, - -0.0798, - -0.043419, - 0.055772, - -0.0088794, - 0.067461, - 0.013553, - -0.00015272, - -0.023424, - -0.012588, - -0.031707, - -0.028682, - 0.027998, - -0.050938, - 0.0038597, - 0.021319, - 0.038985, - 0.027039, - -0.0014596, - 0.084369, - -0.11376, - -0.047419, - 0.13623, - -0.086917, - -0.012025, - 0.014171, - -0.017197, - 0.025308, - 0.10275, - -0.023297, - 0.026037, - -0.058003, - -0.001104, - 0.0081839, - -0.030158, - -0.011294, - -0.031807, - 0.067584, - -0.011417, - 0.039323, - 0.006999, - -0.02195, - -0.035261, - -0.0027616, - -0.00652, - 0.040456, - -0.060571, - -0.016795 - ], - "swimwear": [ - -0.056415, - -0.03497, - 0.012484, - 0.010872, - 0.03495, - -0.026194, - 0.055875, - -0.046356, - 0.024864, - -0.0275, - 0.016312, - -0.046985, - -0.14636, - -0.050031, - -0.047874, - 0.0052034, - 0.057456, - -0.019574, - 0.01369, - -0.018521, - 0.026702, - -0.042541, - -0.04177, - 0.075464, - -0.0014408, - 0.038409, - 0.025441, - -0.021991, - -0.021392, - 0.043129, - -0.032093, - -0.05332, - 0.077011, - -0.026499, - 0.047116, - -0.032537, - 0.11219, - -0.047226, - 0.013821, - 0.095842, - 0.099227, - -0.13714, - -0.06582, - 0.0065588, - 0.032718, - -0.03116, - -0.0021461, - -0.065447, - 0.0092266, - -0.043637, - 0.013409, - -0.096537, - -0.044993, - 0.13208, - -0.07547, - -0.0024037, - 0.014481, - -0.05474, - -0.060621, - -0.063914, - -0.037241, - 0.017557, - 0.14237, - -0.011381, - 0.04933, - 0.026355, - 0.008824, - -0.0027733, - -0.00041846, - -0.052541, - 0.049873, - -0.010739, - 0.0070939, - 0.031442, - -0.0045449, - -0.029215, - 0.059323, - -0.017503, - -0.021114, - 0.027396, - -0.025997, - -0.016358, - -0.024115, - 0.04645, - -0.032733, - 0.037231, - -0.067468, - -0.026153, - -0.084334, - -0.011391, - 0.0082475, - 0.047576, - -0.060146, - 0.023021, - 0.070869, - 0.10007, - -0.071584, - 0.015763, - 0.038289, - -0.10636, - 0.017895, - 0.071182, - 0.02698, - 0.038203, - 0.019734, - -0.073997, - 0.041859, - 0.024239, - 0.031984, - 0.07916, - -0.018227, - 0.022315, - 0.05109, - 0.062013, - 0.045674, - -0.083309, - 0.041302, - 0.024309, - -0.032619, - 0.014994, - 0.0016774, - 0.070263, - -0.025003, - -0.0041185, - 0.091205, - -0.023033, - -0.0060442, - -0.017434, - -0.025696, - 0.078043, - 0.013097, - 0.0050074, - 0.074874, - -0.080529, - -0.050453, - -0.065881, - 0.066928, - 0.05271, - -0.017351, - -0.062665, - 0.054627, - 0.054787, - 0.083909, - 0.04655, - -0.0046572, - 0.025182, - -0.056082, - -0.093235, - 0.027926, - -0.034203, - 0.012456, - 0.052641, - 0.064399, - -0.058886, - -0.021838, - 0.062584, - 0.013696, - -0.0019569, - 0.0099165, - 0.022188, - 0.039539, - -0.064592, - -0.071404, - 0.10602, - 0.068964, - 0.058731, - -0.012494, - -0.09729, - -0.066035, - -0.018799, - -0.041267, - -0.017115, - -0.025926, - -0.13644, - -0.059399, - 0.035265, - -0.078416, - 0.090958, - -0.020974, - -0.050463, - 0.071634, - -0.034167, - 0.072895, - -0.07888, - 0.032587, - -0.041944, - -0.068591, - 0.10338, - -0.070635, - 0.098882, - -0.075143, - 0.057381, - -0.013076, - -0.094763, - 0.054864, - -0.07264, - 0.10856, - -0.069075, - 0.01753, - 0.024112, - -0.17892, - 0.11891, - 0.017892, - 0.012519, - 0.093547, - 0.0020734, - -0.014116, - -0.049227, - 0.089156, - -0.034819, - 0.12412, - 0.014055, - -0.0013755, - 0.0035367, - 0.019875, - -0.025156, - -0.01381, - -0.0046144, - -0.0055957, - -0.0043654, - -0.17383, - -0.079927, - -0.0041326, - 0.073757, - -0.028687, - 0.021303, - -0.039586, - 0.022855, - 0.00029429, - 0.033278, - 0.075488, - -0.024865, - -0.055219, - -0.04434, - 0.0026539, - -0.011991, - -0.083253, - -0.051038, - 0.0194, - -0.10418, - 0.0507, - -0.094307, - -0.0026878, - -0.047924, - -0.022211, - 0.089495, - -0.075328, - -0.024384, - -0.088394, - -0.070397, - 0.037455, - -0.073014, - 0.044223, - -0.0087947, - 0.019195, - 0.063807, - 0.023759, - -0.015479, - 0.13839, - 0.023336, - 0.082397, - 0.040404, - -0.024507, - -0.023505, - -0.034117, - -0.050763, - -0.071177, - -0.0041141, - 0.070914, - -0.044811, - 0.068241, - 0.088459, - -0.10366, - -0.027163, - -0.049904, - -0.016804, - -0.072954, - -0.0047008, - -0.062755, - -0.0095539, - 0.06662, - 0.0031363, - 0.01652, - 0.13417, - -0.055936, - -0.035198, - -0.071655, - -0.0028702, - 0.050955, - 0.013178, - -0.021847, - 0.011416, - -0.017607, - -0.032522, - -0.040426, - -0.08674, - -0.00097768, - 0.052144, - 0.016809, - 0.00094344 - ], - "worship": [ - 0.05711, - -0.033058, - 0.070604, - -0.072649, - -0.030322, - -0.045024, - -0.043893, - -0.095177, - 0.026002, - -0.005983, - 0.026642, - -0.01827, - 0.0037472, - 0.016673, - 0.0030221, - 0.017575, - 0.13117, - -0.026553, - 0.029135, - 0.0071213, - -0.029075, - -0.0027018, - 0.044191, - 0.0098633, - 0.001647, - 0.013915, - -0.0053222, - 0.035172, - -0.0054442, - -0.034118, - -0.054476, - -0.017471, - -0.012888, - -0.041545, - -0.0063466, - 0.0099668, - 0.046431, - -0.045804, - 0.0089914, - 0.004355, - -0.010827, - -0.12254, - -0.0022783, - 0.054865, - -0.033249, - 0.013214, - -0.056274, - -0.05879, - 0.010143, - 0.025186, - 0.003667, - 0.0089038, - -0.022356, - -0.048247, - -0.099995, - 0.040527, - -0.0083134, - -0.040264, - -0.066314, - -0.021116, - 0.0055868, - 0.028699, - 0.078241, - -0.0083507, - -0.024464, - -0.010265, - -0.029272, - -0.032959, - 0.093078, - -0.084764, - 0.031992, - 0.040923, - 0.051913, - -0.051491, - -0.069773, - 0.00067847, - 0.040636, - -0.0076314, - 0.075889, - 0.055947, - -0.033517, - -0.029024, - 0.035025, - 0.067476, - 0.018689, - -0.038034, - -0.027347, - 0.010959, - 0.0021854, - -0.00034305, - -0.070314, - 0.057562, - -0.091254, - -0.017462, - 0.040884, - -0.02161, - 0.03345, - 0.018937, - 0.027226, - -0.0099498, - 0.099442, - 0.027442, - 0.032704, - -0.044606, - 0.03709, - -0.073648, - 0.052727, - 0.061364, - 0.0018748, - -0.054325, - 0.0030346, - 0.06818, - 0.056729, - 0.037669, - 0.0012655, - -0.036688, - -0.0028654, - 0.026294, - -0.055052, - -0.0072342, - -0.034532, - 0.043785, - -0.024983, - -0.095795, - 0.041369, - -0.023443, - -0.017868, - -0.068686, - 0.026726, - 0.12508, - 0.013009, - -0.010338, - 0.045686, - 0.060879, - 0.031896, - -0.017676, - -0.012246, - 0.034005, - -0.049896, - -0.06334, - 0.0086338, - -0.0016815, - -0.045096, - 0.042201, - 0.029439, - 0.02426, - 0.060321, - 0.0028025, - 0.081, - 0.047294, - 0.054415, - 0.10102, - -0.05032, - -0.11164, - 0.0094527, - -0.015681, - -0.052012, - 0.070363, - -0.032764, - -0.041068, - 0.022622, - 0.059291, - -0.075614, - 0.037995, - 0.03516, - -0.0083389, - 0.012488, - 0.040131, - 0.0083474, - 0.070075, - 0.021043, - -0.069292, - 0.01143, - -0.0048735, - 0.043232, - 0.072794, - 0.016989, - 0.062887, - -0.013519, - -0.084312, - 0.013423, - 0.0086355, - -0.056625, - 0.072175, - -0.020438, - -0.040514, - 0.037981, - 0.080712, - -0.044791, - -0.083416, - 0.014826, - 0.074431, - -0.056195, - 0.037949, - -0.040875, - -0.012375, - -0.005838, - 0.038422, - -0.0090447, - -0.0025915, - -0.19637, - 0.16834, - 0.0011616, - 0.0060381, - 0.032904, - 0.0014197, - 0.012249, - -0.036637, - 0.054617, - -0.017015, - 0.12005, - -0.0044267, - 0.0071358, - 0.051635, - 0.044069, - -0.028373, - 0.019751, - 0.027941, - 0.0018987, - -0.0007882, - -0.090414, - -0.061679, - -0.02296, - 0.11159, - 0.012512, - -0.021864, - 0.036084, - 0.0725, - -0.026235, - -0.040682, - -0.060011, - -0.067188, - -0.048022, - -0.032137, - 0.025123, - 0.080141, - -0.05548, - 0.02558, - 0.023533, - -0.029767, - 0.089252, - -0.081032, - 0.00093616, - -0.040462, - -0.058438, - -0.025395, - -0.03041, - -0.051602, - -0.055547, - -0.010208, - -0.01379, - -0.093375, - -0.083786, - 0.017752, - 0.00087288, - -0.008936, - -0.058176, - 0.0085959, - -0.028148, - -0.076588, - 0.03669, - -0.048801, - 0.020039, - -0.012599, - 0.0042547, - -0.012731, - 0.070684, - -0.0073779, - -0.050388, - 0.017469, - 0.078918, - 0.075255, - -0.085488, - -0.066764, - -0.043202, - -0.023274, - 0.029909, - -0.027793, - -0.1242, - 0.027582, - 0.047995, - -0.0030543, - 0.055284, - 0.054276, - -0.014341, - -0.0080629, - 0.004765, - 0.017576, - 0.012189, - 0.032788, - 0.083665, - 0.034103, - 0.049162, - -0.024884, - 0.02225, - 0.10201, - 0.063343, - 0.053562, - 0.032266, - 0.010228 - ], - "grandmother": [ - 0.0040716, - 0.00086907, - 0.0041608, - 0.01021, - 0.031525, - 0.00060791, - 0.0042482, - -0.0601, - 0.0049135, - -0.017016, - -0.015012, - 0.026569, - -0.0079368, - -0.013902, - -0.033675, - 0.0097382, - 0.045838, - -0.026253, - -0.0015659, - -0.0036632, - -0.006444, - 0.015321, - -0.01795, - 0.040443, - 0.030706, - 0.015518, - 0.0080552, - 0.017991, - -0.0057556, - 0.0018212, - 0.014971, - -0.064576, - 0.022827, - 0.010407, - -0.057195, - 0.025175, - -0.0086003, - -0.030786, - 0.035535, - 0.0016651, - -0.015284, - -0.047805, - 0.034946, - -0.047435, - 0.038152, - 0.057997, - -0.022165, - -0.012169, - -0.012556, - 0.015664, - 0.011403, - 0.013621, - -0.0072369, - 0.034404, - 0.026144, - -0.056603, - 0.023112, - -0.033362, - -0.052795, - -0.041677, - -0.043615, - -0.022514, - 0.04992, - 0.017639, - 0.0084103, - -0.015999, - 0.0059603, - -0.028901, - -0.041942, - -0.04113, - -0.0046977, - -0.011809, - 0.073995, - -0.033721, - -0.010678, - 0.054676, - 0.019141, - -0.02015, - -0.0017214, - 0.015392, - 0.017413, - 0.0048554, - 0.016124, - 0.014573, - -0.015565, - -0.004146, - 0.023102, - 0.022468, - 0.033408, - -0.0014381, - -0.022777, - -0.000097494, - -0.092782, - -0.050978, - 0.011428, - 0.10894, - 0.014444, - 0.037494, - 0.0074666, - -0.021872, - 0.031788, - -0.018344, - -0.036264, - -0.011252, - -0.03232, - -0.094762, - 0.01369, - 0.0013495, - -0.010527, - 0.035529, - -0.026977, - 0.061067, - 0.029834, - -0.040722, - -0.037884, - 0.011202, - -0.019172, - -0.031906, - 0.01978, - -0.036653, - -0.056532, - 0.0071286, - -0.0052751, - -0.055229, - 0.059817, - -0.012689, - 0.020714, - -0.039502, - 0.033552, - 0.049228, - -0.01916, - 0.01105, - -0.038949, - -0.020233, - -0.028885, - 0.012745, - -0.0042738, - 0.055278, - 0.011027, - -0.012553, - 0.073801, - 0.00077323, - -0.0025814, - 0.023525, - 0.016111, - -0.021873, - 0.00018276, - 0.1095, - -0.019559, - -0.027167, - -0.017502, - 0.011541, - 0.0032017, - -0.036293, - -0.012393, - -0.024115, - 0.041386, - -0.010966, - 0.016398, - -0.030881, - 0.024632, - 0.027565, - -0.020986, - -0.0039034, - -0.013832, - 0.023102, - 0.0053643, - -0.0068104, - -0.0018044, - 0.013713, - -0.018485, - 0.0071834, - -0.063931, - -0.014833, - 0.031403, - 0.022396, - 0.061067, - 0.018724, - -0.0063731, - -0.026799, - 0.05904, - -0.04744, - -0.0047432, - -0.0065874, - -0.001144, - -0.053449, - -0.043373, - 0.076893, - 0.047503, - -0.054639, - -0.009438, - 0.077672, - -0.042139, - -0.0033884, - -0.0090861, - 0.038951, - 0.057873, - 0.052826, - 0.02785, - 0.010686, - -0.07411, - 0.029118, - 0.0084987, - -0.047118, - 0.0085669, - 0.029319, - 0.0010194, - -0.030492, - 0.016889, - -0.047834, - 0.072787, - 0.00050968, - 0.01362, - 0.0050043, - -0.060054, - 0.0061936, - -0.010949, - -0.018815, - 0.013515, - -0.0061543, - 0.059898, - -0.0061265, - 0.038483, - 0.064145, - 0.045536, - -0.016334, - -0.0027373, - 0.045532, - -0.038813, - -0.034596, - 0.013608, - -0.023852, - -0.014015, - -0.0078333, - 0.015566, - 0.053146, - -0.019524, - 0.04654, - 0.039032, - -0.0051924, - 0.051311, - -0.033821, - 0.044193, - -0.0062962, - 0.020843, - 0.02124, - -0.00394, - -0.039847, - 0.0088203, - 0.016357, - 0.043748, - -0.028923, - -0.013738, - 0.030914, - 0.073087, - -0.028376, - -0.021316, - 0.000055641, - -0.0058242, - -0.018895, - 0.0052932, - -0.028198, - 0.0081676, - 0.022238, - 0.059703, - -0.026338, - -0.019453, - 0.013947, - 0.055973, - -0.024902, - -0.041428, - 0.043442, - -0.084267, - -0.016913, - 0.042299, - -0.0097587, - -0.011985, - -0.029527, - -0.010998, - 0.01745, - 0.049106, - -0.0044854, - 0.0010656, - -0.0058787, - 0.0066151, - 0.041163, - -0.015057, - -0.064469, - 0.0084185, - -0.00082185, - 0.0048533, - 0.035698, - -0.045146, - -0.011535, - 0.017271, - 0.0178, - 0.055978, - -0.016645, - 0.0065008, - 0.0067647 - ], - "multifamily": [ - 0.05811, - -0.059558, - 0.00040558, - 0.066398, - -0.013256, - 0.058404, - 0.030358, - -0.068697, - 0.010846, - 0.013943, - 0.017906, - -0.071656, - 0.032425, - -0.019775, - 0.0040673, - 0.0037919, - 0.070114, - 0.060295, - 0.0299, - -0.0422, - 0.097164, - -0.031591, - -0.02336, - 0.095515, - 0.019595, - -0.019251, - -0.047674, - 0.043541, - 0.018097, - 0.024878, - -0.046741, - -0.044579, - -0.024286, - -0.013787, - 0.035605, - 0.042992, - 0.0068189, - 0.051161, - -0.0023231, - -0.0067535, - 0.0066617, - -0.11349, - 0.060645, - -0.018891, - -0.071997, - -0.030098, - -0.031807, - 0.045372, - -0.021234, - -0.028597, - 0.032838, - 0.013878, - -0.018245, - 0.035295, - 0.0028415, - -0.02271, - -0.023995, - -0.0022013, - -0.014497, - -0.016667, - 0.044834, - 0.0058433, - 0.06344, - -0.065561, - 0.044307, - -0.029585, - -0.0096143, - -0.021229, - 0.029359, - -0.0448, - 0.0095065, - -0.0034114, - 0.03348, - -0.056644, - 0.00082312, - -0.028076, - -0.072434, - -0.012189, - 0.004227, - 0.053873, - 0.029408, - -0.054859, - -0.033837, - -0.0024595, - -0.058861, - 0.012335, - 0.025456, - 0.0074154, - 0.022343, - 0.027931, - -0.001654, - 0.042337, - -0.074404, - 0.027961, - -0.045188, - 0.070416, - -0.019011, - -0.053826, - 0.00079625, - -0.045902, - 0.013474, - -0.0021418, - -0.039022, - -0.014974, - 0.013472, - -0.06769, - -0.00011623, - 0.02929, - 0.011931, - 0.0015222, - -0.046844, - 0.075719, - -0.01152, - 0.050878, - -0.011523, - -0.035345, - -0.015305, - -0.048534, - -0.019658, - 0.0025685, - -0.057232, - 0.048524, - 0.089702, - 0.0086914, - 0.054552, - -0.035492, - 0.052132, - -0.079884, - 0.047248, - -0.00031242, - 0.056641, - 0.035525, - 0.065658, - -0.02246, - -0.030356, - 0.056288, - 0.0045609, - -0.012176, - -0.032831, - -0.017024, - 0.020752, - -0.0083691, - -0.039947, - 0.082559, - 0.036235, - -0.035561, - 0.0069148, - 0.020803, - 0.018142, - 0.010869, - 0.077734, - 0.13886, - 0.039154, - -0.040447, - -0.0061241, - 0.020848, - 0.056034, - 0.034344, - -0.012538, - 0.057949, - 0.034245, - -0.003272, - -0.00067402, - -0.0057724, - 0.068112, - -0.053409, - -0.081172, - -0.036168, - -0.0057842, - 0.047892, - 0.057225, - 0.01527, - 0.071124, - 0.024603, - -0.078365, - 0.019575, - -0.0034149, - 0.002933, - -0.0768, - -0.0036543, - 0.013734, - -0.027977, - -0.0019609, - 0.027891, - -0.016831, - -0.050082, - -0.0055567, - 0.11141, - -0.016285, - -0.022932, - -0.07089, - 0.0035303, - 0.037278, - 0.031681, - 0.016109, - 0.0076668, - 0.0050676, - 0.04607, - 0.041766, - -0.068422, - -0.12898, - 0.030903, - -0.010774, - -0.052159, - -0.01413, - -0.064649, - -0.0099814, - -0.035893, - -0.064847, - -0.01169, - 0.1001, - -0.049422, - -0.024114, - 0.016234, - -0.045102, - 0.022612, - 0.018126, - 0.036079, - 0.016654, - 0.0014578, - 0.036283, - -0.022045, - 0.016335, - 0.05036, - -0.063822, - -0.03336, - 0.0063004, - 0.046069, - 0.018196, - -0.03074, - -0.0056175, - 0.0019036, - -0.029269, - 0.027991, - 0.0090377, - 0.011889, - 0.0073035, - -0.033374, - -0.039626, - -0.058414, - -0.00056554, - -0.013782, - 0.036159, - 0.00036573, - -0.060332, - 0.057531, - -0.01321, - 0.0017166, - 0.027737, - -0.0028215, - -0.021585, - -0.060332, - -0.0080693, - -0.035461, - -0.023035, - 0.026942, - 0.0086951, - 0.016052, - 0.028159, - -0.044179, - 0.052562, - -0.018112, - -0.033452, - -0.023522, - 0.001657, - -0.004715, - 0.014322, - 0.074032, - -0.014344, - 0.026386, - -0.061635, - 0.035682, - -0.087665, - -0.021233, - -0.035201, - -0.052705, - 0.028966, - 0.024068, - 0.0068656, - 0.028414, - 0.082655, - -0.0088429, - -0.021684, - 0.059088, - -0.02089, - -0.0038851, - -0.0026463, - -0.024373, - -0.034413, - -0.060493, - -0.015936, - -0.018357, - 0.036305, - -0.026592, - 0.0097124, - -0.00077424, - 0.041036, - 0.017593, - -0.02353, - 0.011945 - ], - "outside": [ - 0.025433, - 0.01958, - 0.0053579, - -0.0082212, - -0.0098946, - -0.063463, - 0.034621, - -0.11349, - 0.0088255, - -0.022772, - -0.063714, - -0.15271, - 0.042003, - 0.015724, - -0.017295, - -0.011604, - 0.094234, - 0.025422, - 0.03007, - -0.013285, - 0.020133, - -0.036444, - 0.098839, - 0.085594, - 0.013449, - 0.032563, - -0.0053203, - 0.00065337, - -0.0091806, - -0.012888, - -0.029381, - 0.036399, - -0.035505, - -0.0045319, - -0.01976, - 0.01457, - 0.02419, - 0.013879, - 0.0024752, - 0.0081801, - 0.0020654, - -0.11166, - 0.0080317, - -0.020562, - -0.0074299, - -0.0625, - 0.065385, - -0.022858, - -0.0088226, - 0.066223, - 0.033419, - 0.018146, - -0.041496, - 0.013532, - -0.14242, - 0.04834, - 0.011298, - 0.01099, - -0.052371, - -0.01407, - -0.0039946, - -0.017207, - 0.16754, - 0.0098441, - 0.0092362, - 0.018795, - 0.014819, - -0.068044, - -0.03273, - -0.0032528, - 0.097452, - 0.025908, - 0.0738, - 0.022419, - -0.0076823, - -0.029574, - -0.0079139, - 0.029004, - 0.044938, - -0.005121, - -0.051433, - 0.020068, - -0.017689, - 0.095757, - 0.022802, - -0.0095384, - 0.011225, - -0.07526, - 0.041893, - 0.019515, - -0.0099146, - 0.011734, - -0.10769, - 0.020593, - 0.049434, - 0.03463, - 0.023972, - -0.0020865, - 0.020445, - -0.066623, - -0.0099234, - -0.019353, - 0.025653, - 0.02041, - 0.096127, - -0.12334, - -0.0089271, - 0.033503, - -0.013356, - -0.016622, - -0.064927, - 0.16962, - 0.06337, - -0.0035724, - -0.0072386, - -0.057461, - -0.026012, - -0.028707, - -0.031481, - 0.0046044, - 0.01994, - -0.023461, - -0.014873, - 0.013379, - -0.10397, - -0.047455, - -0.0027285, - -0.077063, - 0.0019562, - 0.049746, - 0.012619, - 0.035801, - 0.0051685, - 0.0056398, - -0.058414, - -0.046959, - -0.023442, - 0.022804, - 0.028091, - 0.015035, - 0.0015566, - -0.032121, - -0.0022759, - 0.018686, - 0.028741, - 0.054544, - -0.019087, - 0.019402, - 0.010469, - -0.029588, - 0.045885, - -0.015097, - -0.037445, - -0.044676, - 0.061371, - -0.0035343, - 0.024019, - -0.000074, - -0.0090365, - -0.0031644, - 0.02364, - -0.0093499, - 0.052061, - -0.018962, - 0.025581, - 0.094187, - 0.00817, - -0.06075, - 0.027834, - -0.008801, - 0.0099709, - 0.041894, - -0.015881, - 0.012485, - -0.0095214, - 0.044141, - -0.003169, - -0.014105, - 0.0031534, - -0.031062, - -0.02696, - 0.022158, - 0.020614, - -0.033092, - -0.022221, - 0.017939, - 0.005728, - 0.11702, - 0.085673, - 0.010194, - -0.0084244, - 0.11489, - -0.05623, - -0.010288, - -0.01974, - -0.011511, - -0.01176, - -0.0063823, - 0.017734, - -0.0050786, - -0.18931, - 0.043002, - -0.073834, - -0.013808, - -0.0075018, - 0.00088566, - 0.0051968, - -0.00472, - 0.025418, - 0.021629, - 0.14804, - -0.04841, - -0.0078632, - 0.020336, - 0.0026712, - 0.018464, - -0.031042, - 0.016411, - 0.042059, - -0.055352, - 0.0070916, - -0.074351, - -0.0090175, - 0.090197, - -0.02042, - 0.017417, - 0.0072237, - 0.080868, - 0.019777, - -0.096846, - -0.015883, - -0.014642, - -0.02391, - -0.0026378, - -0.0634, - 0.0042691, - 0.06126, - -0.012211, - 0.023428, - 0.0093878, - 0.075244, - -0.010167, - 0.030819, - 0.018311, - -0.093686, - -0.0037758, - -0.015671, - 0.052552, - 0.011346, - -0.015149, - -0.05438, - 0.027857, - -0.015488, - 0.058153, - -0.087898, - -0.014447, - -0.0093318, - 0.049152, - -0.024644, - -0.025555, - 0.0088739, - -0.018766, - -0.021987, - 0.021928, - 0.034619, - 0.035736, - 0.027764, - 0.05473, - 0.00047268, - 0.024833, - -0.042272, - 0.092215, - -0.11722, - -0.078531, - 0.085355, - -0.060694, - -0.0032666, - -0.035067, - -0.031113, - 0.028486, - 0.017128, - -0.0086019, - 0.030338, - 0.011447, - -0.013087, - -0.0208, - 0.015491, - -0.037705, - -0.01804, - 0.019291, - 0.037809, - 0.014685, - -0.029366, - 0.030475, - -0.0024682, - 0.0063131, - -0.040276, - -0.0030877, - -0.0014136, - 0.0082342 - ], - "landline": [ - 0.062143, - 0.055388, - 0.0049691, - -0.029313, - 0.017658, - 0.035766, - 0.060429, - -0.082159, - 0.061367, - -0.087717, - 0.014215, - -0.086186, - -0.14443, - -0.0071564, - 0.019709, - -0.051061, - 0.099303, - -0.054244, - 0.030016, - 0.046118, - 0.028731, - -0.05588, - 0.045739, - 0.016862, - 0.091718, - -0.0020442, - -0.01031, - 0.044229, - -0.028415, - 0.022799, - -0.014065, - 0.13306, - -0.073147, - -0.049199, - 0.033366, - -0.022822, - 0.0017592, - -0.0013215, - 0.0058225, - 0.00068443, - -0.029179, - -0.082036, - 0.0016808, - 0.02033, - -0.014101, - -0.057407, - -0.044252, - -0.063902, - -0.081445, - 0.02198, - 0.05594, - -0.030223, - 0.087487, - 0.014023, - -0.039975, - 0.027495, - -0.026704, - 0.047771, - -0.064946, - -0.028219, - -0.095978, - 0.059782, - 0.18078, - -0.021952, - 0.023954, - -0.021649, - -0.021983, - -0.011029, - -0.10724, - -0.057773, - -0.0028546, - 0.013961, - 0.015075, - -0.0039607, - -0.018022, - 0.0030652, - 0.050456, - 0.01714, - 0.027252, - 0.0098603, - 0.03501, - -0.059388, - -0.0036326, - 0.086178, - -0.021552, - -0.022066, - 0.00064486, - -0.04421, - -0.092179, - 0.018186, - -0.063532, - -0.0075104, - -0.07463, - -0.016991, - 0.033998, - 0.055032, - -0.014599, - -0.020241, - -0.021803, - -0.026529, - 0.057515, - 0.0081152, - -0.074171, - -0.016075, - 0.00017727, - -0.081671, - -0.019883, - 0.018468, - 0.13664, - -0.083357, - 0.012956, - 0.019582, - 0.10574, - 0.03233, - -0.13747, - 0.0073791, - -0.017913, - -0.0014262, - -0.029542, - -0.064044, - 0.020074, - 0.11548, - 0.00045937, - 0.028442, - 0.073453, - 0.016109, - -0.0012705, - -0.046617, - 0.053058, - 0.082285, - 0.0052228, - -0.039612, - -0.07467, - -0.013121, - 0.0067824, - -0.057899, - 0.070042, - -0.023734, - -0.039042, - 0.058621, - 0.039998, - -0.028236, - 0.0097047, - 0.024908, - -0.0081958, - -0.024532, - -0.024312, - 0.10683, - -0.0022483, - -0.059864, - -0.0078892, - 0.046047, - -0.041529, - -0.026758, - -0.02754, - 0.025852, - -0.040291, - -0.025023, - -0.023883, - 0.01207, - 0.066034, - 0.018862, - -0.065022, - 0.001537, - 0.00669, - -0.042276, - -0.0161, - 0.048241, - 0.00024179, - 0.018517, - -0.022774, - 0.099092, - -0.018729, - 0.081233, - -0.028993, - 0.069256, - 0.041891, - 0.014725, - -0.021988, - 0.035963, - 0.059205, - -0.023692, - 0.03291, - 0.033892, - 0.013026, - -0.10853, - -0.046623, - 0.15217, - 0.022045, - -0.041897, - 0.013533, - 0.0052947, - -0.016272, - 0.060986, - 0.017559, - -0.026249, - 0.0032973, - 0.054164, - 0.01825, - 0.060876, - -0.16906, - 0.020622, - -0.047644, - 0.068879, - 0.01064, - 0.017845, - 0.049479, - -0.044706, - -0.070031, - 0.0010162, - 0.10512, - -0.0088903, - 0.0072206, - 0.025438, - -0.055121, - -0.033934, - -0.01105, - -0.022385, - 0.00099702, - -0.0070547, - 0.069889, - -0.030204, - 0.037328, - 0.090232, - -0.022037, - -0.035158, - 0.03905, - 0.01108, - -0.012049, - -0.01331, - 0.073299, - -0.0044887, - -0.063507, - 0.01202, - 0.054298, - 0.054637, - 0.043348, - 0.10368, - 0.027236, - -0.015043, - 0.011768, - 0.020833, - 0.032418, - 0.0094613, - -0.10327, - -0.036754, - 0.019234, - 0.045327, - 0.01468, - -0.020993, - -0.016516, - 0.036346, - -0.014415, - 0.092023, - 0.055434, - 0.018882, - -0.0019309, - 0.025651, - -0.10127, - 0.0047127, - 0.0012173, - -0.057876, - 0.017356, - -0.0075397, - 0.025125, - 0.024489, - -0.04902, - 0.04083, - 0.019517, - 0.093531, - -0.097591, - 0.06621, - -0.092362, - -0.0064653, - -0.043584, - 0.011832, - 0.063924, - 0.056736, - 0.058256, - -0.011189, - 0.11226, - -0.10462, - -0.058129, - 0.046062, - -0.08341, - -0.0074806, - -0.10962, - 0.021576, - -0.017493, - -0.073999, - 0.07655, - 0.053055, - -0.061998, - 0.029157, - -0.014138, - -0.039455, - -0.092616, - 0.02174, - 0.036807, - -0.06457 - ], - "Folklore": [ - 0.02673, - -0.029598, - -0.019911, - -0.047508, - 0.015429, - -0.018129, - -0.019149, - -0.060517, - -0.02712, - -0.045031, - 0.014979, - -0.060246, - -0.0095011, - -0.024248, - 0.073101, - -0.0082527, - 0.10814, - -0.079387, - 0.03944, - 0.093899, - -0.059515, - 0.0055773, - -0.0037729, - 0.07639, - 0.11456, - -0.017792, - -0.050217, - 0.1104, - 0.0075352, - -0.027411, - 0.03484, - -0.062367, - 0.082525, - 0.0083016, - 0.12382, - -0.0049775, - 0.01042, - 0.048519, - -0.019891, - 0.029737, - 0.073928, - 0.052422, - 0.029864, - 0.018368, - 0.074151, - 0.018114, - -0.01284, - -0.022628, - -0.042033, - -0.093828, - 0.010377, - 0.045119, - -0.063833, - -0.0096579, - -0.0028676, - 0.1455, - -0.018245, - 0.015377, - -0.047265, - 0.011435, - 0.0035252, - -0.07048, - -0.04437, - 0.023293, - 0.077659, - 0.079558, - -0.054889, - 0.020224, - -0.0068382, - 0.072006, - -0.049823, - -0.00032648, - 0.0081833, - 0.0037342, - -0.0030073, - 0.01894, - -0.027966, - -0.077595, - 0.09225, - -0.036487, - -0.031436, - 0.065603, - -0.0088848, - -0.03513, - 0.0034333, - -0.03241, - 0.0048121, - -0.085946, - -0.0086986, - 0.0069282, - -0.050421, - 0.017678, - -0.016554, - -0.020763, - 0.023308, - 0.11146, - 0.040063, - 0.073651, - 0.064063, - 0.022531, - 0.039345, - -0.0071061, - -0.043759, - -0.037856, - -0.041196, - -0.085541, - -0.0025553, - 0.00062778, - 0.01193, - -0.022134, - -0.035793, - 0.031835, - 0.019729, - -0.033459, - -0.034922, - 0.051955, - -0.053919, - -0.012728, - 0.049468, - 0.046777, - -0.026371, - 0.030408, - -0.092521, - -0.069932, - 0.022275, - 0.069558, - -0.01892, - 0.013467, - -0.010124, - 0.25955, - -0.019426, - 0.028235, - -0.041143, - -0.045231, - 0.040688, - -0.027521, - -0.034306, - 0.032021, - -0.0026051, - 0.012333, - 0.01863, - -0.011917, - 0.069083, - -0.051236, - -0.0062482, - -0.081916, - -0.0011989, - 0.035834, - -0.043351, - -0.043168, - 0.050198, - 0.036529, - -0.029172, - 0.0077773, - 0.023259, - 0.063516, - 0.037454, - -0.020098, - 0.055034, - 0.023697, - -0.001218, - 0.071179, - -0.13356, - 0.027004, - 0.053149, - -0.078052, - 0.088618, - 0.011878, - 0.009835, - 0.014388, - 0.0069389, - -0.052894, - 0.0029893, - 0.0070534, - 0.0020564, - 0.024975, - 0.090875, - -0.025308, - -0.037559, - -0.062869, - -0.086648, - 0.070701, - -0.00054369, - 0.012563, - -0.068001, - 0.1957, - -0.041667, - 0.13895, - 0.030859, - -0.023561, - 0.04626, - 0.0828, - -0.052502, - -0.010372, - -0.045193, - 0.13421, - 0.080606, - -0.0031802, - 0.0083502, - -0.07575, - -0.011563, - -0.019253, - -0.016877, - -0.040356, - 0.10042, - 0.074961, - -0.033472, - -0.013606, - 0.0016642, - 0.026639, - 0.16191, - -0.017673, - -0.04746, - -0.058212, - 0.068529, - 0.046858, - 0.0052544, - -0.045801, - -0.020459, - 0.087427, - 0.02302, - -0.048562, - 0.0032305, - 0.10871, - 0.0000015754, - -0.015759, - 0.037663, - 0.053562, - -0.075222, - -0.023042, - 0.035977, - -0.075211, - 0.037656, - -0.014616, - -0.00088657, - 0.012065, - -0.012668, - 0.020922, - 0.059911, - 0.014928, - 0.058151, - 0.017938, - -0.025921, - 0.016648, - 0.13671, - -0.026278, - -0.12287, - -0.0089901, - -0.019794, - -0.090624, - 0.025829, - -0.050079, - -0.006119, - 0.03832, - -0.015185, - 0.022404, - -0.028206, - 0.025372, - 0.082258, - -0.0025747, - 0.08371, - -0.066134, - 0.034852, - -0.013153, - -0.081912, - -0.04651, - 0.050475, - -0.075454, - 0.024124, - 0.0055794, - 0.038461, - 0.098473, - -0.034571, - 0.022103, - 0.0091435, - -0.060735, - 0.052959, - -0.083954, - -0.099589, - -0.034104, - -0.01154, - -0.0302, - 0.026714, - -0.033107, - 0.049504, - 0.079708, - 0.074005, - 0.015839, - -0.058379, - -0.044603, - 0.035009, - 0.010481, - 0.037919, - -0.054787, - 0.011955, - 0.019103, - 0.018216, - -0.012785, - 0.0089338, - -0.0079872 - ], - "pre-professional": [ - -0.0019408, - -0.045708, - -0.004767, - -0.0004102, - 0.015011, - -0.0008551, - 0.0054917, - -0.041709, - 0.0013787, - -0.032797, - 0.01313, - -0.032701, - -0.0031126, - 0.034776, - 0.015843, - 0.040111, - 0.06421, - 0.023329, - 0.045533, - -0.0056546, - 0.013345, - -0.023016, - -0.01259, - 0.048406, - -0.022355, - 0.0085623, - -0.032852, - 0.028465, - 0.020024, - 0.0042323, - -0.040244, - -0.010974, - -0.027658, - -0.059067, - 0.043182, - 0.031394, - 0.021604, - 0.015202, - 0.005431, - 0.017314, - -0.0039104, - -0.05575, - -0.0010176, - -0.0051302, - 0.012205, - -0.01168, - 0.0046605, - -0.004891, - -0.0079143, - -0.0066981, - -0.021671, - -0.0036781, - -0.0031836, - 0.0053338, - 0.035703, - 0.0045811, - -0.028389, - 0.045933, - -0.0054282, - 0.0010405, - 0.023638, - 0.014047, - 0.060239, - -0.0011276, - 0.011807, - -0.017914, - -0.033369, - -0.0054014, - 0.0041266, - -0.00020846, - -0.0020922, - 0.012337, - 0.037353, - 0.0092106, - -0.010942, - -0.0075395, - -0.0045477, - -0.026869, - 0.0011755, - 0.017022, - -0.005307, - -0.0068802, - 0.017112, - 0.020355, - -0.072721, - -0.011285, - -0.023241, - -0.0029834, - -0.019721, - 0.016076, - 0.038461, - 0.019266, - -0.03889, - 0.014691, - 0.012647, - 0.046172, - 0.0044442, - 0.0070273, - 0.0044888, - 0.0017946, - 0.026704, - 0.029029, - 0.018316, - -0.009962, - 0.0043596, - -0.039052, - 0.007105, - 0.020956, - -0.012994, - 0.016904, - -0.024131, - 0.042411, - 0.014812, - -0.0090574, - 0.027168, - -0.0015063, - -0.0015657, - -0.020666, - -0.023986, - 0.0042305, - 0.0074468, - -0.027048, - -0.019093, - -0.0047824, - 0.02623, - -0.0078179, - -0.0089505, - -0.012833, - -0.0020217, - 0.0095952, - -0.0081192, - 0.059417, - -0.00101, - -0.0037699, - -0.041182, - -0.0036211, - 0.0027944, - 0.019197, - 0.0038775, - -0.032127, - -0.016028, - 0.019652, - -0.026207, - 0.00029222, - 0.0097874, - 0.0090017, - -0.016921, - -0.051094, - -0.010358, - 0.039083, - 0.085768, - 0.11337, - 0.00011279, - 0.012423, - 0.0050316, - 0.0059307, - 0.001474, - 0.011945, - 0.025693, - -0.022434, - 0.0051658, - 0.043076, - -0.026474, - 0.018066, - 0.010242, - 0.015607, - -0.03192, - 0.011258, - -0.017151, - -0.017348, - 0.040258, - -0.0085883, - 0.02764, - 0.02908, - 0.026302, - 0.0090278, - 0.00099464, - 0.016358, - -0.021545, - -0.017947, - -0.010058, - 0.0026285, - 0.006809, - -0.0026513, - -0.0000073664, - -0.032393, - 0.011598, - 0.055383, - -0.019134, - 0.018398, - -0.026418, - 0.045159, - 0.061626, - -0.043926, - 0.032195, - -0.0015637, - 0.024312, - -0.016953, - 0.0064564, - -0.02314, - -0.056294, - -0.020902, - -0.020867, - 0.013144, - 0.017427, - -0.0047345, - -0.010726, - -0.014358, - -0.022787, - 0.023216, - 0.11541, - -0.0074282, - 0.0091724, - 0.0040941, - -0.030726, - -0.00019263, - 0.032435, - -0.011348, - -0.020992, - 0.0015853, - -0.029567, - 0.0096872, - -0.026154, - 0.048542, - 0.0067378, - -0.003939, - 0.0042195, - 0.040083, - 0.019633, - -0.015586, - 0.01498, - -0.054408, - -0.029369, - 0.014777, - -0.016576, - 0.0081566, - -0.010056, - -0.026924, - -0.036221, - 0.017242, - 0.04677, - 0.015902, - 0.012186, - 0.031329, - -0.095504, - -0.00036468, - -0.036678, - -0.026952, - -0.004779, - 0.019789, - 0.021446, - 0.011935, - -0.0071954, - -0.025876, - -0.042061, - 0.014832, - -0.014873, - 0.01376, - 0.046337, - 0.0085254, - -0.0048317, - 0.015388, - -0.0072364, - -0.015297, - 0.018092, - 0.041309, - -0.0061648, - 0.024102, - 0.03679, - -0.0046508, - 0.016385, - 0.030475, - -0.041952, - -0.026524, - 0.034214, - -0.080452, - -0.026938, - 0.013759, - 0.019707, - 0.036108, - 0.066754, - 0.035013, - 0.038396, - -0.034262, - 0.0049554, - -0.0050879, - -0.0039971, - -0.047111, - 0.0021982, - -0.035317, - 0.013397, - -0.019872, - -0.0042654, - -0.0075642, - -0.025141, - 0.0081162, - -0.0080321, - 0.022369, - 0.022104, - 0.0033652 - ], - "occupational": [ - 0.017373, - -0.011438, - 0.029272, - 0.021664, - 0.012127, - -0.046842, - 0.055567, - -0.071094, - 0.095954, - -0.0028808, - -0.048907, - -0.019324, - -0.060903, - 0.005047, - 0.0055069, - 0.01107, - 0.05077, - 0.038182, - 0.020823, - 0.024262, - -0.0094994, - -0.015654, - 0.080188, - 0.097695, - -0.040435, - -0.0016406, - -0.027993, - 0.032826, - 0.031918, - 0.014531, - -0.0011541, - -0.056805, - -0.010812, - -0.075942, - 0.049135, - 0.060665, - 0.0064301, - -0.01761, - 0.031334, - 0.0047723, - 0.022347, - -0.081368, - 0.040745, - 0.0138, - 0.020054, - 0.027494, - -0.0011592, - -0.03135, - -0.021181, - 0.0045095, - -0.028243, - 0.019919, - -0.016651, - -0.049468, - 0.026118, - -0.0098214, - -0.010624, - 0.038968, - -0.0065102, - -0.077815, - -0.023351, - -0.010569, - 0.096967, - 0.0075024, - 0.036111, - 0.022837, - -0.035948, - 0.0038799, - 0.045851, - -0.030456, - 0.03247, - -0.023612, - 0.0085521, - 0.012709, - 0.036428, - -0.025935, - -0.018691, - -0.031241, - 0.036075, - -0.03935, - -0.012907, - 0.027202, - -0.032707, - 0.016835, - -0.062503, - -0.027825, - -0.034388, - 0.028746, - -0.044965, - 0.013654, - 0.039337, - 0.042592, - -0.072166, - -0.0071496, - -0.010522, - 0.021128, - -0.027969, - 0.0396, - 0.052493, - 0.024315, - 0.030275, - 0.0087529, - 0.04628, - -0.032211, - 0.052869, - -0.068346, - 0.046254, - -0.0081712, - -0.01263, - -0.03047, - 0.01722, - 0.0088142, - 0.040906, - 0.030687, - -0.022295, - -0.01678, - -0.011365, - -0.010025, - -0.0086421, - 0.0069981, - -0.01981, - 0.033083, - -0.0098065, - 0.0079259, - 0.088814, - 0.012711, - 0.0017986, - -0.040882, - 0.012932, - 0.077429, - 0.025052, - -0.02943, - -0.0011787, - -0.018752, - -0.052011, - 0.049276, - -0.015345, - 0.038892, - 0.00043819, - 0.0052572, - 0.00074174, - -0.013719, - -0.0073652, - 0.044454, - -0.035502, - -0.050835, - -0.068166, - -0.045009, - 0.039312, - 0.041547, - 0.052847, - 0.12582, - -0.012594, - 0.0095907, - 0.035231, - 0.016269, - 0.014793, - -0.00082563, - 0.012185, - -0.016618, - 0.028593, - -0.018376, - -0.085944, - 0.041009, - 0.02834, - -0.042763, - -0.029793, - -0.0070561, - -0.012985, - -0.027393, - 0.0085985, - 0.0024799, - 0.02876, - 0.046468, - -0.01871, - 0.055439, - -0.016019, - -0.013984, - -0.0075477, - 0.035976, - 0.010296, - -0.010454, - -0.02472, - -0.022446, - -0.017453, - -0.018959, - -0.014569, - 0.11393, - -0.020142, - 0.059339, - 0.0018618, - 0.031892, - 0.066187, - 0.0017054, - 0.02308, - 0.073228, - -0.041289, - 0.034957, - -0.002215, - -0.0029408, - -0.12458, - -0.043813, - 0.030141, - -0.011103, - -0.012427, - 0.010287, - 0.031446, - 0.022269, - 0.039093, - 0.041909, - 0.16834, - 0.027528, - -0.00369, - 0.0060722, - 0.034016, - 0.067017, - 0.010418, - -0.0034333, - -0.039387, - -0.016304, - -0.022699, - -0.042215, - -0.03715, - 0.069173, - -0.012024, - -0.010021, - -0.0025326, - 0.05586, - 0.0030611, - -0.032969, - 0.050012, - -0.019721, - -0.026195, - -0.027253, - -0.01309, - 0.046109, - 0.032596, - 0.0058857, - -0.02402, - 0.021961, - 0.017729, - 0.051995, - -0.0084722, - -0.0028943, - -0.10732, - -0.046362, - -0.038658, - -0.040978, - 0.0071324, - -0.018286, - 0.0053154, - 0.028452, - 0.022832, - -0.029374, - 0.0092829, - 0.00016441, - 0.030647, - 0.021825, - 0.074517, - -0.051617, - 0.031085, - -0.048196, - -0.0019734, - 0.013613, - -0.011491, - 0.00030138, - -0.014696, - -0.007793, - -0.019544, - -0.016241, - -0.046415, - 0.057068, - -0.051439, - -0.029975, - 0.009482, - -0.051573, - 0.050773, - 0.0066967, - 0.066477, - 0.030275, - 0.14087, - 0.034206, - 0.033665, - 0.025013, - 0.033981, - 0.079822, - -0.04485, - -0.00070792, - 0.01589, - -0.021481, - 0.063272, - -0.0059903, - -0.03835, - 0.016803, - -0.0019872, - 0.028155, - -0.016261, - 0.0099236, - -0.014103, - -0.044025 - ], - "developer": [ - 0.065373, - -0.023051, - 0.03036, - 0.0051829, - -0.029008, - 0.028375, - 0.0086914, - -0.085632, - 0.042505, - 0.014764, - -0.04158, - 0.014197, - -0.045431, - 0.0059322, - 0.0088943, - 0.049534, - 0.071132, - 0.029004, - 0.039314, - 0.00054635, - 0.019094, - 0.0063188, - 0.010728, - 0.047761, - -0.035302, - 0.0011791, - 0.013714, - 0.053481, - -0.026289, - -0.00061195, - -0.07284, - -0.018723, - 0.032747, - -0.012835, - -0.040336, - 0.030224, - -0.039199, - -0.065429, - -0.064305, - -0.037462, - -0.0002274, - -0.066758, - -0.080973, - -0.0076605, - -0.077237, - 0.056996, - -0.0093662, - 0.037743, - 0.00086526, - 0.015538, - 0.0021613, - 0.0080261, - -0.0044887, - -0.022796, - 0.030091, - 0.026972, - 0.028227, - -0.046747, - -0.03811, - 0.042761, - 0.044968, - -0.038143, - 0.060944, - 0.014459, - 0.025612, - 0.0070809, - 0.021161, - -0.0081352, - 0.023565, - -0.10373, - 0.040763, - -0.032602, - 0.090975, - 0.022262, - -0.037395, - -0.015879, - -0.049254, - 0.0052283, - -0.0082688, - -0.017263, - -0.030797, - 0.031784, - -0.053872, - -0.014603, - -0.062707, - -0.0029823, - -0.016016, - 0.0041539, - -0.022715, - -0.01169, - 0.071338, - 0.018291, - -0.063565, - -0.090256, - -0.037364, - 0.083738, - 0.052403, - -0.070219, - 0.0056328, - 0.023503, - -0.0022493, - 0.066458, - -0.0047252, - 0.080688, - -0.030892, - -0.097238, - 0.0073472, - 0.030829, - -0.019347, - 0.016198, - -0.11332, - 0.10272, - 0.040566, - -0.0088716, - 0.032128, - -0.014841, - -0.068955, - -0.014871, - -0.0068826, - -0.023591, - -0.030807, - -0.014439, - 0.022768, - 0.047817, - 0.048347, - 0.023653, - 0.000015208, - -0.077076, - 0.016468, - 0.062014, - 0.04217, - 0.037762, - -0.0041182, - -0.049687, - 0.019316, - 0.052544, - 0.051686, - 0.072668, - -0.0362, - -0.016337, - 0.025329, - 0.046192, - 0.051355, - -0.0053767, - -0.034659, - -0.03926, - -0.024053, - -0.0085247, - 0.036738, - -0.022613, - 0.040078, - 0.04182, - 0.0072919, - -0.087565, - 0.0096518, - -0.022905, - 0.032439, - 0.032607, - 0.0096063, - -0.0023101, - 0.029266, - 0.018047, - 0.020426, - -0.019191, - 0.015776, - -0.011671, - 0.048882, - -0.024429, - -0.0059782, - 0.027731, - 0.00010364, - -0.011632, - 0.01604, - 0.033105, - -0.034465, - 0.028043, - -0.02725, - -0.02755, - -0.062937, - 0.05247, - -0.04275, - -0.027285, - -0.016994, - -0.014345, - -0.023664, - -0.071833, - -0.0085733, - 0.043526, - 0.0026173, - -0.046007, - -0.080919, - 0.11354, - -0.0042699, - 0.040795, - -0.027331, - -0.029632, - 0.014809, - 0.0035176, - 0.035377, - -0.0084029, - -0.11559, - 0.059345, - 0.0079329, - -0.032318, - -0.017606, - -0.0045684, - -0.012166, - -0.0071455, - -0.05484, - -0.030626, - 0.078149, - 0.034624, - -0.017653, - -0.019108, - -0.078797, - 0.012882, - 0.0079247, - 0.0058627, - 0.051178, - 0.053185, - 0.048087, - -0.014071, - -0.018514, - 0.072402, - 0.049496, - -0.014964, - 0.0017319, - 0.039897, - -0.057486, - -0.047296, - -0.063717, - -0.047462, - -0.0013054, - -0.0022, - -0.042166, - 0.029801, - -0.030275, - -0.029278, - -0.013799, - -0.018466, - 0.070211, - 0.055297, - 0.043217, - -0.0049069, - -0.0071062, - 0.022213, - -0.048984, - 0.0032453, - -0.010119, - -0.03211, - -0.036404, - -0.070035, - 0.010985, - -0.020116, - 0.042257, - 0.018982, - -0.011837, - 0.045525, - -0.0061566, - 0.020672, - 0.028842, - 0.075302, - -0.089031, - 0.033324, - -0.035028, - -0.072883, - -0.047315, - 0.034595, - -0.01641, - -0.027418, - -0.025925, - 0.057033, - -0.082029, - -0.017984, - 0.017011, - -0.019991, - 0.021859, - 0.0092719, - 0.041531, - 0.017649, - -0.011387, - 0.021689, - 0.0014328, - 0.047403, - 0.0078308, - -0.028332, - -0.036939, - -0.095024, - -0.019599, - -0.028906, - -0.034273, - -0.050104, - 0.0040211, - 0.030245, - 0.068105, - -0.048313, - -0.046269, - 0.024672, - -0.067551, - -0.0066784 - ], - "approach": [ - 0.013627, - -0.026453, - -0.012181, - 0.0021006, - -0.038075, - -0.027196, - -0.0065088, - -0.10701, - -0.090278, - 0.0086257, - -0.010323, - -0.040934, - 0.026523, - 0.0028709, - 0.005708, - 0.0098458, - 0.063873, - 0.023194, - 0.081109, - 0.049832, - -0.0031066, - 0.00044647, - 0.018173, - 0.0071384, - -0.0046299, - 0.0019136, - -0.0073292, - 0.043164, - -0.068159, - 0.044575, - -0.036659, - -0.00067794, - 0.0023205, - -0.057884, - -0.025724, - -0.049073, - 0.015309, - -0.021347, - -0.023605, - -0.025491, - 0.0019774, - -0.105, - -0.0065303, - 0.01826, - -0.02473, - 0.0019295, - 0.040434, - -0.0075204, - 0.038576, - -0.02914, - 0.0027262, - -0.0081424, - -0.050356, - 0.013121, - -0.059607, - -0.027639, - 0.047087, - -0.00027183, - -0.028129, - 0.012113, - 0.0258, - -0.027112, - 0.12924, - -0.047694, - -0.0037293, - -0.000057918, - 0.025329, - -0.012587, - -0.041145, - 0.015192, - 0.015895, - 0.001968, - -0.025858, - -0.029674, - 0.011991, - -0.032821, - 0.017862, - 0.0067923, - 0.045006, - -0.020504, - -0.032656, - 0.0037371, - 0.038895, - 0.08835, - 0.008945, - -0.021111, - 0.067105, - 0.0081868, - -0.025135, - 0.031073, - 0.037336, - -0.0036311, - -0.093612, - -0.016353, - 0.025427, - 0.029003, - -0.013359, - -0.00075093, - -0.042603, - 0.0034705, - -0.0039085, - -0.073899, - -0.024076, - -0.019278, - -0.080204, - -0.065596, - 0.025184, - 0.0088708, - -0.05405, - -0.010977, - -0.037588, - 0.031073, - 0.056883, - -0.014561, - -0.0099376, - -0.039713, - 0.00063898, - 0.062815, - -0.030306, - -0.037846, - 0.0069487, - -0.0046181, - 0.0009278, - 0.020962, - 0.098583, - -0.015246, - -0.033622, - -0.051769, - 0.057766, - 0.099799, - -0.037919, - -0.036458, - -0.0062021, - 0.0032838, - -0.032625, - -0.035793, - 0.011766, - 0.007249, - 0.012294, - 0.026232, - -0.012129, - -0.037427, - 0.028764, - 0.040341, - -0.061911, - -0.028037, - 0.035314, - 0.011003, - 0.03247, - -0.025788, - 0.058295, - 0.03817, - 0.012253, - -0.12258, - -0.0018723, - 0.030066, - -0.0023642, - -0.000072227, - -0.01712, - -0.0010262, - 0.049041, - 0.0095986, - -0.040335, - -0.0016723, - 0.02532, - 0.036293, - 0.072503, - -0.0055151, - -0.0094051, - 0.01282, - -0.0034382, - 0.005223, - 0.037179, - -0.040307, - 0.027441, - 0.021045, - -0.064474, - 0.018097, - -0.041947, - -0.018936, - 0.00083638, - -0.024305, - 0.00064336, - 0.021108, - 0.05836, - -0.069093, - -0.0021983, - 0.083995, - -0.030264, - -0.0030511, - -0.027027, - 0.094203, - -0.030199, - -0.024999, - 0.0013783, - -0.029898, - 0.0062537, - 0.0248, - -0.020006, - 0.0095917, - -0.13061, - 0.060597, - 0.09801, - -0.00060737, - -0.025949, - -0.018653, - 0.0082057, - 0.00055282, - -0.023601, - -0.037125, - 0.077769, - 0.006062, - 0.012874, - -0.01108, - -0.01905, - 0.046372, - 0.050362, - -0.024658, - -0.055057, - -0.045628, - -0.055629, - -0.016915, - -0.020698, - 0.10258, - 0.0071452, - -0.01874, - 0.042315, - 0.081507, - 0.030704, - 0.043054, - 0.025817, - -0.10107, - -0.05458, - -0.043501, - 0.08269, - 0.018588, - 0.0034843, - -0.012052, - -0.0050625, - 0.041505, - 0.10032, - 0.027484, - 0.033519, - 0.027038, - -0.043783, - 0.025439, - -0.029747, - -0.051767, - 0.014081, - 0.018516, - 0.039856, - 0.0059921, - -0.00038925, - 0.0069839, - 0.015259, - 0.010975, - -0.0004513, - 0.056729, - 0.036486, - -0.0005561, - 0.016449, - 0.020078, - -0.0019262, - -0.023125, - -0.007856, - -0.021965, - 0.0079066, - -0.0031508, - -0.037148, - 0.055799, - -0.053807, - 0.079047, - -0.11471, - -0.050589, - 0.056586, - -0.034917, - 0.030798, - 0.016831, - 0.012277, - 0.00046426, - 0.044927, - -0.030777, - -0.028925, - -0.0093004, - -0.014815, - -0.038602, - -0.023056, - 0.0024875, - 0.0074467, - -0.023376, - 0.03137, - -0.0020701, - 0.064474, - -0.057152, - 0.028374, - -0.037371, - 0.011473, - -0.021338, - 0.0080742, - -0.020926 - ], - "real-estate": [ - 0.052955, - -0.060826, - 0.035826, - 0.039767, - -0.018854, - -0.0059134, - -0.010264, - -0.042644, - 0.047067, - 0.032531, - -0.012017, - -0.01596, - -0.016672, - 0.00665, - -0.032134, - -0.00096459, - 0.076467, - 0.022957, - 0.023978, - -0.03283, - 0.047121, - -0.0090265, - -0.031493, - 0.025003, - 0.031029, - -0.042287, - 0.036183, - 0.079152, - 0.0047659, - 0.026367, - -0.05648, - -0.049656, - -0.026169, - -0.03469, - 0.066711, - 0.037647, - -0.041403, - 0.0045134, - -0.049833, - 0.021409, - -0.01335, - -0.11365, - -0.0087798, - 0.0064687, - -0.03533, - 0.0078009, - -0.026077, - 0.029125, - -0.032473, - -0.032551, - -0.043561, - -0.024254, - -0.022148, - -0.002327, - 0.0028296, - -0.039539, - -0.051859, - -0.0044978, - -0.014373, - -0.047504, - 0.017786, - 0.045576, - 0.065069, - 0.0065282, - 0.019003, - -0.025472, - 0.0035642, - -0.0047626, - 0.002851, - -0.080296, - -0.014181, - -0.0080777, - 0.039295, - 0.0103, - 0.0084628, - -0.014434, - -0.045729, - 0.0079367, - 0.0053744, - -0.025455, - -0.062391, - -0.041092, - -0.095254, - 0.017839, - -0.032145, - -0.033404, - 0.02138, - 0.011005, - 0.0070002, - 0.021821, - -0.0061727, - 0.052377, - -0.06443, - -0.010995, - -0.018267, - 0.051557, - -0.049744, - -0.056491, - 0.00032785, - 0.0074888, - -0.018669, - 0.02656, - -0.043048, - -0.0056597, - 0.036708, - -0.063339, - 0.010177, - 0.033353, - 0.047679, - 0.005661, - -0.064837, - 0.067881, - 0.022633, - 0.027752, - 0.045979, - -0.0036448, - -0.035335, - -0.079785, - -0.019762, - -0.0038431, - -0.021845, - -0.046639, - 0.048967, - 0.002532, - 0.088007, - -0.024631, - -0.0076998, - -0.02446, - -0.021981, - 0.085931, - 0.07206, - -0.0085139, - 0.0056785, - -0.027429, - 0.012751, - 0.055, - 0.015578, - 0.034403, - -0.026616, - 0.013421, - -0.0093711, - 0.0042857, - -0.0031833, - 0.077362, - -0.025055, - -0.037367, - -0.0071456, - -0.012536, - 0.0079771, - -0.031566, - 0.060862, - 0.093606, - 0.018384, - -0.054982, - -0.023466, - -0.043109, - 0.027837, - 0.015169, - -0.008601, - 0.0066681, - 0.036157, - 0.017748, - -0.089859, - 0.018349, - -0.034375, - -0.013487, - 0.006258, - -0.048361, - -0.015453, - 0.069584, - -0.031853, - -0.054758, - -0.01703, - 0.016803, - -0.037867, - 0.034366, - -0.075585, - -0.0066227, - -0.022971, - 0.045411, - 0.022104, - -0.060723, - 0.013241, - -0.040403, - -0.0035852, - -0.050842, - 0.0050818, - 0.11452, - 0.019552, - -0.033682, - -0.054278, - 0.042961, - 0.051973, - 0.064328, - 0.017884, - -0.010606, - 0.051049, - 0.078478, - 0.0034846, - 0.0059086, - -0.11817, - 0.033491, - -0.0092897, - -0.057576, - 0.041164, - -0.0030698, - 0.0087813, - -0.048039, - -0.020816, - 0.0031296, - 0.099498, - 0.010797, - -0.021293, - -0.0096649, - -0.023476, - 0.039029, - 0.0059904, - -0.0061435, - 0.042918, - 0.015818, - 0.028185, - -0.043114, - 0.00057569, - 0.063605, - -0.00065516, - -0.023449, - 0.011347, - 0.044993, - -0.060309, - -0.0371, - -0.045975, - -0.02095, - -0.023129, - -0.0022916, - 0.026378, - -0.024032, - -0.020168, - 0.020947, - -0.038529, - -0.053984, - 0.0010861, - -0.008511, - -0.0033458, - -0.0030609, - -0.087419, - 0.029369, - -0.0020214, - 0.02916, - 0.0040045, - -0.0059413, - 0.026975, - -0.074013, - -0.034388, - -0.0067247, - -0.020403, - 0.043174, - -0.024125, - 0.0039329, - 0.042552, - 0.021658, - 0.052775, - 0.022732, - -0.032211, - -0.0014708, - -0.012566, - 0.048552, - -0.0019709, - 0.040741, - 0.012317, - -0.001538, - -0.088238, - 0.048568, - -0.055211, - -0.0078657, - 0.053688, - -0.051557, - 0.0009521, - 0.021725, - 0.052913, - -0.068235, - 0.11163, - 0.018855, - -0.013667, - 0.013139, - -0.012861, - -0.017627, - -0.037777, - -0.0032969, - -0.08528, - -0.012082, - -0.043067, - -0.019184, - 0.010317, - 0.045565, - 0.0083098, - 0.00042926, - -0.019348, - 0.020233, - -0.032526, - 0.00647 - ], - "hash": [ - -0.01492, - -0.04255, - -0.065508, - 0.11994, - -0.0082646, - 0.0064216, - 0.043079, - -0.13988, - -0.082493, - -0.098015, - -0.039498, - -0.046529, - -0.076859, - 0.1906, - -0.080672, - 0.094881, - 0.10193, - -0.027132, - 0.048288, - -0.010149, - 0.10683, - 0.12014, - -0.071152, - 0.031261, - 0.028737, - 0.032851, - 0.0050837, - -0.019098, - -0.0043841, - 0.0021156, - 0.0019513, - -0.096382, - -0.002156, - 0.045474, - 0.0057219, - -0.0090804, - 0.011592, - 0.12274, - -0.17581, - 0.032456, - -0.021295, - -0.12348, - -0.080544, - -0.052721, - 0.011265, - -0.00051935, - 0.011173, - 0.069264, - 0.031631, - 0.087433, - 0.0047001, - -0.013298, - 0.12299, - -0.069452, - -0.12625, - -0.05996, - -0.025052, - -0.016408, - -0.050614, - -0.1972, - -0.012691, - -0.17692, - 0.19005, - -0.036897, - -0.019594, - 0.077671, - 0.17476, - 0.039675, - -0.080806, - -0.019237, - -0.066161, - 0.026545, - 0.0026895, - -0.077333, - 0.093234, - -0.11007, - -0.032438, - -0.05993, - 0.14885, - 0.0008258, - -0.0032618, - -0.10837, - -0.020767, - 0.036168, - 0.018124, - -0.023702, - 0.029269, - -0.07664, - 0.037474, - 0.025966, - 0.040884, - -0.087869, - -0.094724, - -0.046349, - -0.0073764, - 0.026439, - -0.014346, - 0.022988, - 0.15745, - 0.066126, - -0.077532, - 0.037188, - 0.083926, - 0.036591, - 0.017364, - -0.17473, - -0.15109, - 0.035321, - -0.023826, - 0.040004, - 0.07368, - 0.011367, - 0.053885, - -0.083227, - -0.052351, - -0.083934, - 0.01053, - 0.027799, - -0.10261, - 0.05991, - 0.15166, - 0.012379, - -0.010689, - -0.036601, - 0.11484, - -0.10707, - -0.082221, - -0.062472, - 0.043079, - 0.13911, - 0.053737, - -0.068329, - -0.043607, - -0.049264, - -0.073805, - -0.16166, - -0.067263, - 0.084667, - 0.00043222, - 0.03917, - 0.096679, - 0.0033568, - -0.0034819, - 0.013668, - -0.028068, - -0.022015, - 0.021887, - -0.081245, - -0.06264, - -0.087301, - -0.088134, - 0.17043, - 0.044423, - -0.039692, - 0.103, - -0.094922, - -0.07101, - -0.050427, - -0.030522, - -0.053067, - 0.078324, - -0.059533, - -0.10181, - 0.090893, - -0.062683, - -0.10851, - 0.056446, - 0.24051, - -0.013124, - 0.067321, - -0.048347, - 0.013157, - 0.096032, - 0.010285, - -0.063507, - 0.09377, - 0.057623, - 0.095518, - -0.049392, - -0.044549, - 0.038748, - 0.049158, - -0.021003, - -0.068207, - 0.17384, - -0.00030516, - -0.032909, - 0.13125, - 0.014019, - 0.042681, - 0.071316, - -0.10579, - -0.030099, - 0.079793, - 0.034326, - -0.037294, - -0.027033, - 0.02221, - -0.02232, - -0.041658, - -0.21325, - 0.090105, - -0.021737, - 0.10561, - -0.027418, - -0.18607, - 0.06572, - 0.045294, - 0.026311, - -0.10733, - 0.13829, - 0.010688, - 0.025909, - 0.0029853, - 0.060301, - 0.063552, - -0.13706, - -0.040215, - -0.028165, - -0.01693, - 0.049152, - 0.00041654, - -0.050199, - 0.12263, - 0.051696, - -0.0047791, - 0.039578, - 0.084136, - -0.010545, - 0.019669, - -0.03617, - -0.11701, - -0.038853, - 0.046098, - -0.046068, - -0.22535, - -0.056383, - -0.011812, - 0.0738, - 0.006063, - 0.15557, - -0.036747, - -0.074731, - -0.057451, - -0.12598, - 0.11961, - 0.055482, - 0.11693, - 0.043616, - 0.048865, - -0.00074418, - 0.015333, - -0.030499, - -0.049685, - 0.042606, - -0.025465, - -0.099422, - -0.00051977, - 0.067598, - 0.037027, - 0.033137, - 0.056857, - -0.010781, - -0.067623, - -0.049676, - -0.070713, - 0.047655, - 0.06672, - -0.01697, - -0.025027, - -0.043703, - 0.10812, - -0.10462, - -0.075963, - -0.012823, - -0.014989, - 0.066389, - -0.044023, - 0.092333, - -0.038012, - 0.099224, - -0.032853, - -0.099303, - -0.051041, - -0.014807, - -0.010366, - 0.055181, - 0.052624, - -0.036071, - 0.025071, - -0.018968, - -0.063832, - -0.041386, - 0.026885, - 0.10416, - 0.046971, - 0.09318, - -0.048764, - -0.12468, - -0.073901 - ], - "legalities": [ - 0.0053038, - -0.035284, - -0.015891, - 0.062596, - -0.032294, - 0.0046872, - 0.043022, - -0.084209, - 0.040967, - 0.02125, - -0.022152, - -0.052246, - -0.024797, - 0.01845, - -0.0067985, - 0.053297, - 0.036187, - -0.027204, - 0.054913, - 0.038334, - -0.014809, - 0.00025425, - 0.098371, - 0.046537, - -0.011542, - 0.026019, - 0.02774, - 0.014883, - 0.12878, - 0.001887, - -0.017346, - -0.02105, - -0.086903, - -0.04959, - -0.024941, - 0.048634, - -0.021496, - -0.030317, - 0.014862, - -0.012246, - -0.011885, - -0.14471, - -0.0099664, - -0.010447, - 0.015415, - -0.021499, - 0.007088, - -0.003452, - -0.023783, - -0.016945, - -0.037981, - -0.040826, - 0.025305, - -0.0053726, - -0.040315, - 0.06058, - -0.025095, - -0.044827, - -0.017758, - -0.022756, - 0.052528, - -0.021668, - 0.10408, - 0.043234, - -0.0050069, - -0.032919, - 0.02531, - -0.04413, - 0.0092159, - 0.022631, - 0.040535, - -0.024527, - 0.0060527, - 0.0083022, - 0.018914, - -0.030338, - -0.013185, - -0.039318, - -0.029813, - -0.017269, - -0.020435, - -0.00068262, - -0.026484, - 0.090621, - -0.033609, - -0.035173, - 0.023711, - -0.027038, - 0.0021845, - 0.0054849, - 0.038311, - -0.054935, - -0.059332, - 0.045686, - 0.011208, - -0.028006, - -0.0049957, - -0.023523, - -0.01059, - -0.0095704, - 0.009976, - 0.023985, - -0.045548, - -0.012558, - 0.016837, - 0.010653, - 0.021983, - 0.0093625, - -0.022987, - -0.033967, - 0.011657, - 0.060571, - 0.080413, - -0.035077, - 0.023756, - 0.004455, - 0.041169, - -0.026732, - -0.082475, - 0.025422, - 0.018404, - 0.00059697, - 0.045769, - 0.031751, - 0.10259, - 0.055431, - -0.0052422, - -0.042776, - -0.0098075, - 0.16029, - -0.03262, - 0.019991, - 0.02295, - 0.0016469, - -0.031742, - -0.033658, - 0.0069845, - 0.041205, - -0.019376, - -0.016219, - 0.0064602, - -0.0040952, - -0.019689, - 0.052043, - -0.0057899, - 0.015526, - -0.034733, - -0.025484, - -0.053179, - -0.080011, - 0.0171, - 0.04394, - 0.042368, - -0.069946, - 0.034718, - 0.05181, - 0.0059615, - -0.04834, - 0.084384, - -0.021569, - 0.044302, - 0.064526, - -0.076249, - 0.036508, - -0.034394, - 0.030304, - 0.091796, - 0.017377, - -0.035436, - 0.00096175, - -0.02109, - 0.038396, - 0.032949, - -0.058422, - -0.036971, - 0.041243, - 0.0039357, - 0.054977, - 0.009755, - -0.015895, - -0.0046239, - -0.019049, - 0.0034021, - 0.0041998, - 0.01764, - -0.048329, - 0.049517, - 0.038539, - 0.094144, - -0.043435, - 0.028003, - 0.084263, - -0.12808, - -0.024024, - 0.021288, - 0.017456, - -0.016174, - 0.004542, - -0.027792, - 0.021387, - -0.14382, - -0.024447, - 0.047525, - -0.037986, - -0.026608, - -0.022128, - -0.0087067, - -0.015306, - 0.012656, - -0.0043094, - 0.064093, - 0.05302, - 0.055997, - -0.01538, - 0.036846, - -0.0091664, - 0.040879, - 0.0056716, - -0.093975, - -0.06532, - 0.048692, - -0.055719, - -0.037563, - 0.087714, - 0.068665, - -0.017432, - 0.038744, - 0.065288, - -0.023928, - -0.047858, - -0.024765, - -0.040549, - -0.059389, - -0.012959, - -0.0033447, - -0.02625, - 0.021922, - 0.047438, - 0.037586, - 0.010824, - -0.039021, - 0.0042219, - 0.025708, - -0.008196, - -0.027962, - -0.029279, - -0.057524, - -0.080727, - -0.040462, - 0.018696, - -0.035225, - -0.020728, - -0.023992, - -0.02363, - -0.038308, - 0.01446, - 0.017055, - 0.012095, - 0.032708, - 0.027992, - 0.0032792, - 0.012263, - -0.0015117, - -0.029501, - -0.0033041, - -0.0099464, - 0.035592, - 0.045579, - -0.030018, - -0.058044, - 0.014115, - 0.075135, - -0.086582, - -0.0024366, - 0.084785, - -0.05485, - -0.064562, - 0.035511, - -0.018147, - -0.04819, - 0.073582, - 0.04464, - -0.039711, - -0.020315, - 0.063534, - 0.046986, - 0.010484, - 0.036348, - -0.018672, - -0.019335, - 0.025935, - -0.024863, - 0.0050409, - 0.0041661, - -0.054797, - -0.028861, - -0.057551, - 0.057697, - -0.055282, - -0.0067659 - ], - "infrastructure": [ - 0.019678, - -0.024086, - -0.029053, - -0.0043754, - -0.0091051, - -0.0099472, - 0.03197, - -0.047689, - 0.0090536, - 0.015855, - -0.00082126, - -0.031965, - -0.022888, - 0.02225, - -0.014455, - 0.014541, - 0.064555, - 0.0028143, - 0.051842, - 0.0045554, - -0.02734, - -0.022193, - 0.032159, - 0.045715, - 0.0066708, - 0.026128, - 0.0034828, - -0.0070354, - 0.014729, - 0.018897, - -0.00058343, - 0.0065918, - -0.022045, - -0.046475, - 0.029387, - 0.038253, - 0.015267, - 0.012689, - -0.0042092, - -0.034515, - -0.029754, - -0.08465, - 0.018832, - 0.040359, - -0.039227, - -0.036686, - -0.04287, - 0.0021275, - -0.018919, - 0.0086069, - -0.024956, - -0.028919, - 0.018648, - 0.011167, - -0.040086, - 0.030111, - -0.017945, - 0.0069931, - -0.010775, - 0.028832, - 0.0073647, - 0.0025595, - 0.084527, - 0.011195, - 0.049656, - -0.010552, - 0.022544, - -0.043264, - -0.0070915, - -0.015581, - 0.023149, - 0.0011358, - -0.019951, - -0.024752, - -0.044268, - -0.031704, - -0.010316, - -0.027714, - -0.017572, - 0.014674, - -0.008566, - 0.00059336, - -0.054618, - 0.055642, - 0.024624, - 0.00080344, - -0.032227, - -0.031225, - -0.018325, - -0.017668, - 0.017635, - 0.026933, - -0.066815, - 0.018073, - -0.017458, - 0.046858, - 0.022941, - -0.030676, - 0.0089654, - 0.01029, - 0.032403, - -0.012452, - -0.014459, - -0.018424, - 0.00021887, - -0.032531, - 0.0094139, - 0.0054322, - 0.0010697, - -0.0071913, - -0.0032244, - 0.086067, - 0.060212, - 0.01345, - 0.0023117, - -0.039525, - -0.032808, - 0.000033629, - -0.033258, - 0.040673, - -0.017611, - -0.030103, - 0.018262, - -0.0037778, - 0.059649, - 0.028713, - -0.039895, - -0.035898, - -0.012806, - 0.062782, - 0.018966, - -0.037474, - -0.0071079, - -0.0029949, - 0.020865, - 0.023056, - 0.014164, - 0.0032195, - -0.015051, - 0.050581, - -0.018295, - -0.027276, - 0.018121, - 0.0039892, - 0.0014273, - -0.022781, - 0.0018992, - 0.031387, - 0.010173, - -0.0095925, - 0.043766, - 0.036041, - 0.048715, - -0.068095, - -0.00071196, - 0.036674, - 0.0046325, - 0.010463, - -0.030795, - -0.040199, - 0.05047, - -0.029161, - -0.048532, - 0.026829, - -0.013499, - -0.0076203, - 0.01466, - 0.021099, - 0.029384, - -0.016209, - 0.0554, - 0.029915, - 0.0083095, - 0.023036, - -0.00026302, - 0.037434, - -0.030944, - 0.010347, - -0.033175, - 0.027849, - -0.01305, - 0.023386, - -0.011813, - 0.0013474, - -0.02086, - -0.026517, - -0.040164, - 0.062221, - -0.03961, - -0.012352, - -0.017854, - 0.056722, - 0.0093184, - 0.00013237, - 0.012133, - -0.027014, - -0.0057572, - -0.0075127, - 0.020324, - -0.033586, - -0.090002, - 0.0052619, - -0.015268, - 0.015821, - 0.0032417, - 0.010335, - 0.0027638, - 0.018645, - -0.029788, - -0.0057889, - 0.06655, - -0.013065, - -0.0041694, - -0.011969, - 0.01273, - 0.015581, - -0.0060014, - 0.019138, - -0.0068314, - 0.016484, - -0.012102, - 0.0025524, - 0.0087286, - 0.067814, - 0.010238, - 0.012863, - 0.028856, - 0.01614, - -0.003258, - -0.013682, - -0.053364, - -0.022155, - -0.04796, - -0.023377, - 0.015575, - -0.0069534, - -0.019129, - 0.060756, - -0.029206, - -0.024774, - 0.033639, - -0.0025534, - 0.054023, - -0.0010389, - -0.0046554, - 0.017121, - -0.019728, - -0.016615, - -0.0072781, - 0.024271, - -0.0034067, - -0.020676, - -0.0048223, - -0.036339, - -0.011033, - 0.061251, - 0.016711, - 0.022576, - 0.03731, - 0.060412, - -0.031691, - -0.012499, - -0.023974, - -0.0084477, - 0.028603, - 0.0041157, - 0.0062343, - 0.0048226, - 0.023977, - -0.011146, - -0.021136, - 0.056341, - -0.076, - -0.029403, - -0.000080471, - 0.0052188, - 0.018268, - 0.011525, - -0.020267, - -0.0029315, - 0.053688, - -0.0031493, - -0.040358, - 0.030663, - -0.011026, - 0.0051607, - -0.010791, - 0.034753, - -0.013407, - -0.0093108, - 0.0095704, - 0.046538, - -0.020966, - 0.0080014, - 0.039218, - -0.02112, - -0.01163, - 0.014505, - -0.0067323, - -0.04661 - ], - "ciphertext": [ - 0.046981, - -0.0062081, - -0.024777, - 0.074893, - -0.0075573, - 0.029564, - -0.021736, - -0.071212, - -0.044617, - -0.00056875, - 0.081886, - -0.0074332, - -0.10946, - 0.061948, - -0.090432, - 0.018153, - 0.047654, - 0.0017734, - 0.062524, - -0.051877, - 0.011619, - 0.072584, - -0.02266, - 0.019568, - 0.0051715, - 0.064999, - -0.042408, - 0.00069303, - 0.036586, - 0.028948, - -0.0030367, - -0.014446, - -0.013553, - -0.013986, - -0.0043375, - -0.043092, - -0.035904, - 0.066492, - 0.032206, - 0.0086499, - -0.01925, - -0.077854, - 0.013328, - -0.041839, - -0.021609, - -0.04768, - -0.08201, - 0.050898, - -0.01183, - 0.056309, - -0.017065, - -0.07405, - 0.031926, - 0.02612, - -0.037101, - -0.029417, - 0.061155, - 0.04026, - -0.0031899, - -0.038369, - -0.12313, - -0.10141, - 0.06998, - -0.055813, - -0.033367, - 0.03282, - 0.031796, - 0.071605, - -0.052084, - 0.0079294, - -0.052138, - 0.02748, - -0.059235, - 0.045878, - -0.034313, - -0.022891, - 0.011709, - -0.027106, - 0.01758, - -0.043241, - 0.018528, - -0.037835, - 0.036556, - -0.046163, - -0.050771, - -0.015965, - 0.029865, - -0.010895, - 0.097465, - 0.052861, - -0.025728, - -0.085074, - -0.029127, - 0.019619, - -0.030288, - 0.060059, - 0.032305, - 0.01085, - 0.050983, - 0.029142, - -0.011875, - -0.0046125, - 0.044204, - 0.023172, - -0.0052057, - -0.0065687, - 0.0075184, - 0.039628, - 0.0094723, - 0.041366, - 0.054229, - 0.022944, - 0.083162, - 0.043557, - 0.0099172, - -0.026214, - 0.10101, - 0.14734, - 0.018539, - 0.011363, - 0.15938, - 0.00051513, - -0.083974, - -0.070773, - 0.04993, - -0.082274, - -0.0048116, - -0.017842, - -0.0536, - -0.007606, - 0.048464, - -0.043338, - 0.020912, - 0.028022, - 0.01242, - -0.050845, - 0.022198, - 0.032066, - 0.0071714, - -0.0040589, - 0.036299, - 0.041913, - 0.021102, - -0.028075, - -0.017044, - -0.06632, - -0.04506, - -0.09062, - 0.034955, - -0.039818, - 0.0099036, - 0.043165, - 0.032217, - 0.012537, - 0.053532, - -0.01245, - 0.0087363, - -0.0027966, - 0.030302, - 0.018183, - -0.011566, - -0.026245, - -0.036928, - 0.032311, - -0.00010336, - -0.13652, - 0.0030788, - 0.022377, - -0.0041379, - -0.020946, - 0.037966, - -0.0057009, - -0.014789, - 0.0059663, - -0.030927, - 0.013251, - 0.037365, - 0.0034538, - -0.018666, - 0.010815, - 0.027187, - -0.011869, - -0.026953, - -0.021371, - 0.029561, - -0.0047118, - -0.032955, - 0.11656, - 0.0067453, - 0.083801, - 0.069077, - 0.027105, - -0.044205, - -0.014845, - 0.075587, - -0.0087307, - -0.067315, - -0.043897, - -0.037874, - 0.0074313, - -0.1008, - 0.019195, - -0.022081, - 0.050488, - -0.020152, - -0.017797, - 0.11096, - 0.029162, - -0.037911, - -0.068159, - 0.077849, - -0.037075, - 0.0051975, - -0.0047242, - 0.06665, - 0.061029, - -0.040295, - 0.037262, - 0.003945, - -0.024358, - 0.051187, - 0.067971, - -0.019539, - 0.073661, - 0.06796, - -0.086997, - 0.015042, - 0.047528, - 0.07064, - 0.020712, - -0.020819, - -0.069663, - -0.046141, - -0.085601, - 0.029126, - -0.11154, - -0.0039082, - -0.055094, - 0.018555, - -0.014179, - 0.03836, - -0.04375, - 0.024617, - 0.012208, - -0.011838, - 0.049382, - -0.010444, - 0.0011247, - 0.034919, - 0.058292, - -0.011892, - -0.0085172, - 0.022765, - -0.027125, - 0.052017, - 0.038972, - -0.0075157, - 0.0028948, - -0.086643, - -0.031115, - -0.052314, - -0.0323, - 0.013125, - -0.070542, - 0.0050102, - -0.026898, - 0.031651, - -0.027365, - -0.0034892, - 0.022301, - 0.01607, - 0.092436, - -0.0012826, - -0.073591, - 0.015616, - -0.052384, - 0.10454, - -0.034668, - 0.028628, - -0.0094661, - 0.074899, - -0.07606, - -0.055801, - -0.03544, - 0.023176, - 0.013596, - 0.010895, - 0.03364, - -0.05685, - 0.0525, - -0.11358, - 0.0061819, - -0.04171, - -0.018154, - 0.073467, - -0.012268, - 0.023345, - -0.10251, - -0.065091, - 0.03215 - ], - "historical": [ - -0.006868, - -0.04412, - 0.035445, - 0.037002, - -0.01898, - -0.0206, - 0.0092931, - -0.069191, - 0.0070049, - 0.0071126, - 0.0052758, - -0.062698, - 0.0098634, - -0.013048, - 0.044308, - -0.0098266, - 0.022943, - -0.06188, - 0.0191, - -0.0046905, - -0.023328, - 0.021717, - 0.0089191, - 0.087279, - 0.007485, - 0.015486, - -0.034636, - 0.02301, - 0.065813, - 0.033951, - 0.0034928, - 0.0061694, - 0.00095984, - -0.11012, - 0.05294, - 0.019063, - 0.020737, - 0.027444, - -0.035136, - 0.036331, - -0.0024181, - -0.079914, - 0.034071, - 0.038931, - 0.036981, - -0.00029647, - -0.01422, - 0.0036717, - -0.024231, - 0.015333, - -0.03244, - 0.012241, - -0.06434, - 0.018288, - 0.052382, - 0.0064858, - 0.028376, - 0.022739, - -0.029809, - -0.020178, - 0.05064, - -0.001637, - 0.1048, - -0.052869, - 0.086043, - -0.028733, - -0.027939, - 0.042638, - 0.036856, - 0.04657, - 0.019895, - -0.023369, - 0.037683, - -0.024338, - 0.044231, - -0.0025956, - 0.015428, - -0.061426, - 0.04308, - -0.019774, - -0.026981, - 0.023515, - -0.029276, - 0.022665, - -0.047596, - -0.0014373, - -0.016909, - -0.015427, - -0.011252, - 0.0096617, - -0.017395, - -0.00060349, - -0.064587, - 0.0021128, - 0.020768, - 0.030351, - -0.027407, - -0.018246, - 0.056937, - 0.00039003, - 0.026315, - -0.027337, - -0.034837, - -0.017145, - 0.0084939, - -0.088854, - 0.043069, - 0.027212, - -0.027936, - 0.030169, - 0.00638, - 0.063055, - 0.033184, - 0.0080324, - -0.053981, - 0.01126, - -0.0069033, - -0.0028004, - -0.032209, - 0.020627, - -0.017259, - -0.036294, - 0.016263, - 0.0063968, - 0.042628, - 0.028941, - -0.0071834, - -0.034113, - -0.014916, - 0.076381, - 0.0081661, - -0.0068946, - 0.010114, - 0.020851, - -0.02273, - 0.021184, - 0.029972, - 0.069964, - 0.024464, - -0.040006, - -0.0078986, - -0.0082187, - -0.018604, - 0.03101, - -0.018411, - -0.037997, - 0.021955, - 0.0099297, - 0.0060173, - 0.0051537, - 0.0033453, - 0.13314, - 0.025424, - -0.030762, - 0.0022205, - 0.0076279, - 0.021301, - -0.02136, - -0.015867, - 0.034546, - -0.0020845, - 0.024503, - -0.049475, - -0.01384, - 0.0087974, - 0.043827, - -0.00091331, - 0.02226, - 0.0073268, - -0.016444, - 0.0073905, - -0.01389, - 0.030991, - -0.01797, - 0.015644, - 0.049659, - 0.0039739, - -0.019689, - -0.01131, - 0.02682, - 0.0071307, - 0.035921, - 0.0089881, - -0.033748, - 0.022006, - -0.022646, - 0.0010927, - 0.072658, - 0.008411, - -0.052194, - 0.034558, - 0.083503, - 0.080873, - -0.029944, - -0.031203, - 0.0067659, - -0.0073118, - 0.00096628, - -0.011084, - 0.019504, - -0.099211, - 0.028472, - -0.019876, - -0.045356, - 0.0024525, - -0.021823, - -0.0116, - 0.022998, - -0.029411, - 0.013252, - 0.1382, - -0.013121, - -0.026502, - -0.013393, - 0.035147, - 0.039922, - 0.0034006, - -0.018793, - -0.042487, - -0.010878, - 0.020286, - 0.015373, - 0.011866, - 0.072485, - 0.028667, - -0.0069822, - 0.034936, - 0.063604, - -0.038675, - -0.042789, - -0.0073257, - -0.076982, - -0.03422, - 0.017376, - -0.017396, - 0.0013773, - 0.010924, - 0.036523, - 0.02864, - 0.0099313, - 0.041304, - 0.052885, - -0.016131, - 0.014927, - -0.18037, - -0.015178, - -0.05286, - 0.0011664, - -0.024463, - -0.035814, - 0.013354, - -0.01949, - 0.0088664, - 0.032453, - -0.055464, - 0.027151, - -0.0040596, - 0.022866, - 0.058916, - 0.027816, - 0.023638, - -0.0026479, - -0.0060112, - -0.026683, - 0.044758, - -0.017382, - 0.0079615, - 0.021297, - 0.049449, - -0.026379, - 0.024938, - 0.065036, - -0.074155, - -0.027514, - 0.069561, - -0.11366, - 0.0019663, - 0.024928, - -0.024401, - -0.028068, - 0.1243, - -0.031394, - -0.0028993, - -0.014394, - 0.028437, - 0.00026858, - -0.0077484, - 0.0012336, - -0.031672, - 0.019314, - -0.0081854, - 0.050253, - 0.0057322, - 0.015952, - 0.031448, - 0.028959, - -0.0057719, - -0.013889, - -0.013475, - 0.011296 - ], - "parent": [ - 0.0007209, - -0.017303, - 0.046313, - 0.031205, - -0.0073577, - -0.0058563, - 0.014819, - -0.12038, - 0.062281, - -0.033672, - -0.027669, - 0.01965, - 0.023523, - 0.079328, - -0.066567, - 0.026737, - 0.079918, - 0.020165, - 0.05964, - 0.052957, - 0.0095101, - -0.023294, - -0.010394, - 0.063078, - -0.048493, - 0.078324, - 0.0036763, - 0.049132, - -0.015937, - -0.013203, - 0.061864, - -0.033324, - 0.0030236, - -0.015958, - -0.030452, - 0.042558, - -0.12012, - -0.11738, - 0.067801, - -0.028339, - -0.043772, - -0.11338, - -0.02182, - -0.06588, - -0.0036573, - 0.03409, - -0.00015083, - 0.073841, - -0.045707, - 0.0011178, - 0.060717, - 0.03487, - 0.041994, - 0.013933, - 0.026988, - -0.043206, - 0.016268, - -0.090816, - -0.078648, - 0.063769, - -0.012488, - -0.058903, - 0.11864, - 0.023858, - 0.059919, - -0.11653, - 0.026641, - -0.059649, - 0.024854, - -0.10287, - -0.0042806, - -0.0021832, - 0.08989, - 0.049719, - 0.041061, - -0.079454, - -0.012801, - 0.018951, - 0.049348, - -0.04462, - 0.0060346, - 0.043429, - -0.024177, - 0.046128, - -0.05724, - -0.053618, - -0.038037, - -0.044659, - -0.025555, - -0.00877, - 0.030402, - 0.060764, - -0.12818, - -0.072357, - -0.019039, - 0.12513, - -0.0010052, - 0.050623, - 0.022207, - 0.0082761, - 0.045487, - -0.010857, - -0.0062153, - -0.012027, - -0.03525, - -0.12, - -0.022676, - -0.0091605, - 0.042541, - 0.0061238, - -0.010554, - 0.090907, - 0.035783, - -0.014568, - -0.012907, - -0.10804, - -0.035747, - 0.0015201, - -0.0307, - 0.032455, - -0.0046022, - 0.0078332, - 0.10234, - 0.020175, - 0.021931, - -0.013671, - 0.0040753, - -0.094528, - 0.070235, - 0.079157, - -0.050202, - 0.038563, - -0.025539, - -0.0027614, - -0.023799, - 0.023762, - 0.024728, - 0.06372, - 0.022886, - 0.001496, - -0.024608, - 0.015449, - -0.048598, - -0.025376, - -0.014003, - 0.030992, - 0.0010904, - 0.037023, - -0.079633, - -0.0090279, - -0.0076882, - 0.076099, - -0.054554, - -0.12495, - 0.011354, - -0.028248, - 0.018107, - 0.019507, - 0.11599, - -0.033087, - -0.0064502, - -0.022124, - -0.00080434, - 0.0077591, - 0.072013, - 0.060278, - 0.072354, - 0.018767, - -0.025765, - -0.069437, - -0.036171, - -0.022596, - -0.081285, - 0.024513, - -0.035008, - 0.051971, - 0.02954, - 0.021277, - -0.01589, - -0.067477, - 0.010947, - -0.16307, - -0.00035656, - 0.027992, - 0.038995, - -0.083784, - -0.0067069, - 0.089764, - 0.069249, - -0.03083, - -0.050591, - 0.10221, - -0.03062, - -0.003893, - -0.012583, - -0.038908, - 0.063002, - 0.0077718, - 0.012129, - -0.0012826, - -0.171, - 0.076151, - 0.029282, - -0.043881, - 0.046743, - 0.080642, - -0.020581, - -0.057747, - -0.00011273, - -0.029117, - 0.12516, - 0.018431, - -0.025966, - 0.060705, - -0.099985, - 0.0090698, - -0.048126, - -0.018605, - 0.088747, - 0.077602, - 0.08088, - 0.079861, - 0.010143, - 0.10435, - 0.035842, - -0.027316, - -0.018802, - 0.026845, - 0.012605, - -0.074652, - 0.051914, - -0.041782, - -0.051727, - 0.015364, - -6.6459e-7, - 0.087724, - 0.060119, - 0.015241, - -0.015699, - -0.079942, - 0.1032, - -0.044958, - -0.0002342, - 0.039356, - -0.030858, - -0.0021619, - 0.032855, - 0.0088979, - -0.030623, - -0.030809, - -0.0032038, - -0.065348, - 0.05537, - -0.0058329, - 0.049417, - -0.10488, - -0.032892, - 0.033612, - -0.00022654, - 0.022211, - 0.015595, - -0.015484, - -0.015211, - -0.0095418, - -0.0072419, - -0.0088774, - -0.046368, - 0.034912, - 0.03782, - 0.048476, - -0.021071, - 0.085365, - -0.11288, - -0.070322, - 0.054782, - 0.0011972, - -0.00039576, - -0.0053807, - -0.021985, - 0.068043, - 0.094279, - -0.064616, - 0.046533, - -0.058198, - 0.012964, - 0.086595, - -0.067977, - -0.090704, - -0.053624, - -0.0087433, - -0.01213, - 0.008548, - -0.047875, - -0.041708, - 0.010381, - 0.028657, - 0.054978, - 0.064483, - -0.0015565, - -0.011894 - ], - "parental": [ - -0.021781, - 0.021875, - 0.021532, - 0.042799, - -0.058161, - -0.030881, - -0.0060236, - -0.075272, - 0.034559, - 0.026435, - -0.0043975, - -0.018319, - 0.022541, - 0.027073, - -0.065305, - -0.015786, - 0.033467, - 0.0032392, - 0.037537, - 0.097542, - 0.0087467, - 0.010406, - 0.023929, - 0.075138, - -0.050502, - 0.037871, - -0.016629, - 0.028811, - 0.018157, - 0.003457, - 0.0024245, - -0.052984, - -0.028248, - -0.016931, - -0.0061203, - 0.076735, - -0.089476, - -0.094628, - 0.065243, - 0.014953, - -0.018751, - -0.10353, - -0.019179, - -0.0362, - 0.0029622, - -0.0077209, - 0.0037903, - 0.046014, - -0.036115, - -0.031214, - 0.035183, - 0.045807, - 0.053413, - 0.00022777, - 0.061269, - -0.053598, - 0.029547, - -0.073703, - -0.018706, - 0.0058962, - 0.012362, - -0.023419, - 0.073999, - 0.094964, - 0.021521, - -0.079447, - 0.020153, - -0.061741, - -0.019689, - -0.045729, - -0.022711, - 0.013822, - 0.10896, - 0.02495, - 0.0057571, - -0.045551, - -0.0042243, - -0.051686, - 0.015966, - -0.025026, - -0.073699, - -0.0034532, - 0.025281, - 0.045994, - -0.009908, - 0.0065564, - -0.0096261, - -0.020577, - -0.075034, - 0.035778, - 0.0016485, - 0.035566, - -0.12166, - -0.030642, - -0.034587, - 0.050793, - 0.011471, - 0.044151, - -0.015922, - 0.00017908, - 0.045131, - -0.014004, - -0.010258, - -0.063287, - 0.067249, - -0.075519, - 0.0149, - -0.047828, - -0.016482, - 0.030358, - 0.015426, - 0.064615, - 0.018483, - -0.02582, - -0.030357, - -0.019191, - -0.0032504, - 0.026713, - -0.042273, - 0.021955, - -0.015432, - 0.062143, - 0.092284, - -0.033849, - 0.056609, - -0.055768, - 0.035698, - -0.024788, - 0.041785, - 0.075049, - -0.038574, - -0.075634, - 0.0014107, - -0.0045028, - -0.033072, - -0.00771, - -0.0011899, - 0.037255, - 0.026642, - 0.01976, - 0.046259, - 0.025504, - -0.01793, - 0.048105, - -0.020043, - 0.026932, - 0.015915, - 0.026079, - -0.03529, - -0.015239, - 0.0042999, - 0.18549, - -0.019537, - -0.074849, - 0.078833, - 0.017694, - 0.090913, - 0.065106, - 0.073239, - -0.021721, - 0.024885, - -0.029744, - -0.11018, - -0.051127, - 0.020459, - 0.12656, - 0.07235, - 0.040811, - 0.014181, - -0.052429, - 0.024828, - 0.021759, - -0.037071, - 0.010768, - -0.056632, - 0.067534, - 0.062747, - 0.034329, - -0.006022, - -0.076001, - 0.0028688, - -0.11039, - -0.030616, - -0.0091627, - 0.01191, - -0.069652, - -0.02313, - 0.16385, - 0.025578, - 0.0047053, - 0.0061757, - 0.016403, - 0.10474, - -0.035555, - -0.032558, - -0.011129, - 0.070584, - 0.0011516, - 0.014776, - -0.010017, - -0.13895, - -0.032065, - -0.010175, - -0.033288, - 0.0023552, - 0.055712, - 0.028546, - -0.027635, - -0.020233, - 0.03568, - 0.15721, - 0.038499, - -0.026796, - 0.055386, - -0.050951, - -0.028712, - -0.073304, - -0.055196, - -0.021666, - -0.09368, - 0.024461, - 0.036146, - -0.0089585, - 0.064579, - 0.091358, - -0.082946, - 0.040109, - 0.034034, - 0.021248, - -0.1018, - 0.021723, - -0.036571, - -0.083912, - -0.012348, - -0.054276, - 0.080285, - 0.074558, - 0.026557, - -0.02765, - -0.063013, - 0.057086, - -0.045486, - -0.028912, - 0.009337, - -0.12428, - 0.0088633, - 0.0031888, - -0.052149, - -0.030233, - -0.023134, - 0.037244, - -0.040259, - -0.021973, - -0.027839, - 0.056654, - -0.066538, - 0.010247, - -0.023486, - 0.053163, - -0.04563, - -0.020943, - -0.032453, - -0.0092901, - 0.026061, - 0.022015, - 0.02585, - -0.036439, - 0.052181, - 0.048823, - 0.023396, - -0.0047044, - 0.068396, - -0.093757, - -0.028564, - 0.03787, - -0.069256, - -0.0027164, - 0.042802, - 0.010814, - 0.064506, - 0.18847, - -0.049948, - 0.042152, - -0.044778, - 0.058397, - 0.092033, - -0.043578, - 0.020307, - -0.033951, - -0.0048122, - 0.027491, - 0.011379, - 0.012989, - 0.015001, - -0.014862, - 0.051126, - 0.025534, - 0.042393, - 0.0047794, - 0.021716 - ], - "beverages": [ - -0.062856, - -0.027926, - -0.0057622, - -0.024305, - 0.060232, - 0.0077812, - 0.062073, - -0.03693, - 0.015366, - 0.054137, - -0.010733, - -0.04807, - 0.010192, - 0.083926, - 0.052396, - -0.0079547, - 0.026443, - -0.052112, - 0.0076844, - -0.0091961, - 0.0335, - 0.0029246, - 0.0041603, - 0.036019, - -0.044252, - -0.046922, - -0.061347, - 0.014093, - 0.079065, - -0.047099, - 0.021855, - -0.051183, - 0.010526, - 0.009023, - 0.097254, - 0.042092, - -0.0024501, - 0.040681, - -0.016943, - 0.037546, - -0.022388, - -0.096685, - -0.046085, - -0.030332, - 0.035836, - -0.057941, - 0.0061101, - 0.00517, - -0.014943, - -0.006488, - -0.053237, - 0.040846, - 0.070658, - -0.069643, - -0.085053, - 0.051432, - -0.045082, - -0.024663, - 0.028876, - -0.034171, - 0.037379, - -0.02765, - 0.1092, - 0.067754, - 0.0003063, - 0.038729, - -0.0013325, - -0.012464, - 0.035933, - 0.047794, - 0.062764, - -0.0512, - 0.067035, - 0.064162, - -0.030844, - -0.046519, - -0.035695, - -0.0097824, - -0.0097811, - 0.023779, - -0.010927, - -0.037798, - -0.015239, - 0.0061337, - -0.071301, - -0.067325, - -0.019911, - -0.0082103, - -0.045292, - -0.03488, - 0.031414, - 0.0045155, - -0.065074, - 0.041761, - -0.047398, - 0.10931, - -0.020776, - 0.04832, - 0.015201, - -0.0054573, - -0.0018881, - 0.019467, - -0.056289, - -0.067401, - 0.0096802, - -0.061125, - -0.082082, - 0.053667, - 0.015509, - 0.02353, - 0.030458, - 0.075214, - 0.051519, - 0.047458, - 0.035214, - -0.051478, - -0.055072, - -0.048606, - -0.021482, - 0.014808, - 0.007956, - 0.058395, - 0.04283, - -0.086618, - 0.12967, - 0.0049674, - 0.00234, - -0.0057519, - 0.0071817, - 0.052083, - 0.037445, - 0.053803, - 0.011056, - -0.027238, - -0.010429, - 0.0095557, - -0.019136, - 0.030128, - -0.014087, - 0.013603, - 0.10851, - 0.016295, - -0.0000057274, - -0.077608, - 0.060499, - -0.042786, - 0.060591, - -0.011029, - -0.013483, - 0.025177, - 0.023113, - 0.059974, - -0.0015344, - 0.0043493, - 0.071029, - -0.030413, - -0.13025, - 0.033423, - -0.0083868, - 0.066187, - 0.038733, - -0.01059, - -0.0034891, - 0.041867, - 0.064425, - 0.051826, - -0.054777, - -0.098483, - 0.060555, - -0.029274, - 0.0052179, - 0.0035558, - 0.051141, - 0.030742, - 0.0021771, - 0.065554, - -0.030327, - 0.098972, - -0.056246, - -0.0076814, - 0.0087094, - -0.017932, - 0.046879, - -0.099362, - 0.015749, - -0.02902, - 0.022912, - 0.13181, - 0.078188, - -0.037811, - 0.044054, - 0.065694, - -0.035603, - 0.02064, - 0.077823, - -0.0059849, - -0.033146, - -0.098486, - 0.014279, - -0.033581, - -0.095049, - -0.0029686, - 0.00093023, - -0.069044, - 0.028304, - 0.11213, - -0.0056772, - 0.030415, - 0.021844, - -0.023054, - 0.070434, - -0.0027949, - 0.090038, - 0.042997, - 0.065463, - 0.064654, - 0.0030008, - -0.0077503, - -0.063323, - -0.01791, - 0.026289, - -0.014204, - 0.0017702, - 0.023461, - 0.039323, - 0.051932, - 0.0063023, - 0.027488, - -0.044606, - 0.047589, - -0.011088, - 0.015392, - -0.081148, - -0.060096, - 0.010357, - -0.019306, - -0.06903, - -0.057485, - 0.0070142, - -0.10659, - -0.022482, - -0.034289, - 0.016983, - -0.059921, - 0.015981, - 0.049255, - 0.0041097, - -0.029498, - -0.030535, - 0.004858, - -0.021336, - -0.025482, - -0.03973, - 0.017587, - -0.06857, - 0.016787, - 0.020745, - -0.0096751, - 0.033804, - -0.015312, - 0.054109, - -0.023344, - -0.0022973, - -0.04817, - -0.0043823, - -0.035197, - 0.018644, - -0.060822, - 0.027351, - 0.062729, - 0.014872, - 0.051685, - -0.078146, - -0.02576, - -0.054374, - -0.016416, - -0.07583, - 0.021715, - -0.086114, - 0.046637, - 0.034657, - 0.012418, - -0.040582, - 0.034254, - -0.02212, - -0.029904, - -0.028506, - 0.010111, - 0.063065, - -0.034987, - 0.033002, - 0.039244, - -0.045474, - -0.0099694, - -0.0025261, - 0.000087313, - 0.017552, - -0.0093235, - -0.023909, - 0.0081837 - ], - "mortgage-backed": [ - 0.031341, - -0.029346, - -0.082653, - 0.039486, - -0.0014984, - -0.0084483, - -0.016871, - -0.053913, - 0.026168, - -0.0065844, - 0.025698, - -0.003063, - -0.0233, - 0.021514, - -0.0090821, - 0.021283, - 0.062566, - 0.030195, - 0.039268, - -0.00083846, - 0.030575, - 0.01868, - 0.0019938, - 0.027684, - -0.00046062, - 0.040248, - 0.0084822, - -0.0001245, - 0.046339, - -0.0066258, - -0.0167, - -0.077513, - -0.020221, - 0.00052076, - 0.064692, - 0.010321, - -0.0045198, - 0.0013475, - 0.02326, - 0.040288, - -0.017703, - -0.044813, - 0.02483, - -0.014794, - -0.045627, - -0.020577, - -0.020548, - -0.0031566, - 0.005985, - 0.0011967, - -0.021668, - 0.0073339, - -0.00050898, - -0.0080562, - -0.014634, - -0.033786, - -0.042102, - -0.01432, - 0.010519, - -0.035628, - -0.012828, - 0.0039465, - 0.086379, - -0.0091264, - -0.046627, - 0.0035318, - -0.033083, - 0.0065859, - -0.0016737, - 0.01175, - -0.016532, - 0.02529, - 0.026684, - -0.0049835, - -0.018036, - 0.019128, - -0.032936, - 0.017015, - 0.05903, - 0.00039621, - 0.0108, - -0.03704, - -0.022332, - 0.020781, - 0.01009, - 0.03826, - 0.0183, - -0.014805, - 0.048896, - -0.030542, - 0.0098924, - 0.031538, - -0.054602, - -0.0045059, - -0.02427, - 0.039002, - 0.0057522, - -0.051402, - 0.0024886, - -0.036012, - -0.0076684, - -0.014816, - -0.021047, - -0.015917, - 0.02244, - -0.021592, - -0.043876, - 0.034668, - 0.015109, - -0.037557, - 0.0073223, - 0.045652, - -0.0060418, - 0.028846, - -0.02629, - -0.0049689, - 0.054159, - 0.004969, - -0.0031356, - 0.011564, - -0.012351, - -0.028698, - 0.052947, - -0.019107, - 0.067542, - -0.010791, - 0.01438, - -0.024642, - -0.035419, - 0.034493, - 0.026823, - -0.0445, - -0.010881, - 0.020335, - 0.0018876, - -0.0032231, - -0.036017, - 0.012216, - -0.0058387, - -0.020767, - -0.0034833, - 0.039038, - -0.023736, - 0.0015829, - 0.014159, - -0.077077, - -0.010284, - -0.0020089, - 0.018784, - -0.024908, - 0.022159, - 0.071822, - 0.015971, - -0.020476, - -0.043649, - -0.022687, - 0.02609, - -0.035948, - -0.024375, - -0.030099, - 0.024062, - 0.0030981, - -0.057023, - -0.0044584, - 0.034361, - -0.03351, - 0.010304, - -0.024759, - 0.025503, - 0.0065187, - -0.01434, - -0.033077, - 0.037499, - 0.010608, - -0.025353, - 0.054075, - 0.015653, - -0.0053678, - -0.039264, - -0.066208, - 0.009288, - -0.020527, - -0.00037102, - 0.041264, - 0.0082681, - 0.0068868, - 0.0015936, - 0.12969, - 0.014782, - -0.010228, - -0.029892, - 0.0047658, - 0.025638, - -0.01755, - 0.035254, - -0.020093, - 0.034763, - 0.0049031, - 0.02461, - 0.015676, - -0.09847, - -0.00039012, - 0.0028555, - -0.054244, - 0.047287, - -0.012075, - 0.023891, - -0.026851, - -0.062114, - 0.0024006, - 0.10456, - -0.01264, - -0.0048955, - 0.015044, - -0.0058916, - 0.03137, - -0.0056371, - 0.014837, - -0.015176, - 0.029031, - 0.021351, - 0.0050212, - 0.027627, - 0.060869, - -0.048244, - -0.0086903, - -0.042722, - 0.014825, - 0.00307, - -0.042469, - -0.015451, - -0.011439, - -0.017345, - -0.00053079, - 0.014266, - -0.0052462, - -0.034969, - -0.0022015, - -0.011678, - -0.041443, - -0.028372, - 0.0058518, - 0.023692, - -0.024342, - -0.095882, - 0.036932, - -0.020523, - -0.00034221, - -0.014108, - 0.027004, - -0.0029024, - -0.065343, - -0.039985, - -0.053959, - -0.0044043, - 0.027985, - 0.016166, - -0.028655, - 0.04624, - -0.048444, - 0.069205, - 0.014439, - 0.012543, - 0.058907, - -0.012998, - 0.0050055, - -0.0079445, - 0.020762, - 0.047572, - -0.02267, - -0.012458, - 0.040991, - -0.051726, - -0.033774, - -0.078011, - -0.031956, - -0.004448, - 0.014388, - 0.0066876, - -0.032619, - 0.078392, - -0.013334, - -0.020645, - 0.019095, - -0.029474, - -0.034863, - -0.0010334, - -0.016599, - -0.083208, - 0.0054209, - 0.0022356, - -0.030117, - -0.00097727, - 0.031006, - 0.010571, - -0.035892, - 0.040484, - -0.030572, - -0.036811, - -0.030973 - ], - "religious": [ - -0.0065084, - -0.058562, - 0.060922, - -0.054097, - -0.04521, - -0.068044, - -0.014498, - -0.062226, - 0.072437, - 0.020237, - -0.0016838, - -0.018723, - 0.018475, - -0.016939, - 0.010592, - -0.013818, - 0.081054, - -0.018003, - 0.028516, - 0.032052, - -0.0442, - 0.019638, - 0.059615, - 0.092893, - -0.01951, - 0.031479, - -0.0049259, - 0.025546, - 0.049956, - 0.03455, - -0.027319, - 0.002375, - -0.0082733, - -0.065276, - 0.061161, - 0.046236, - 0.023148, - 0.01175, - 0.031423, - 0.043417, - -0.00042682, - -0.1107, - 0.0039466, - 0.042929, - 0.0083352, - -0.016, - -0.052379, - 0.00127, - -0.0073817, - -0.04792, - -0.0089332, - -0.0092956, - 0.0024953, - 0.014053, - 0.047437, - 0.039621, - 0.0081406, - -0.026811, - -0.024859, - -0.031474, - -0.00032199, - 0.011057, - 0.10505, - -0.0095171, - 0.081427, - -0.00076361, - -0.0029928, - 0.0067178, - 0.061112, - -0.038025, - 0.032027, - 0.014785, - 0.075663, - -0.022733, - -0.043872, - 0.022454, - 0.016935, - -0.03664, - 0.031138, - 0.061072, - -0.032955, - 0.029896, - -0.039114, - 0.03651, - -0.058254, - 0.016464, - -0.0010983, - 0.039082, - -0.016171, - -0.0019503, - -0.038892, - 0.020247, - -0.08018, - 0.0013553, - 0.032634, - 0.041407, - -0.017747, - -0.0257, - 0.029906, - 0.00068071, - 0.020313, - 0.012399, - 0.04846, - -0.053496, - 0.035404, - -0.093407, - 0.043019, - 0.015103, - -0.047847, - 0.00049335, - -0.020914, - 0.069908, - 0.036556, - 0.0097982, - -0.029139, - 0.0023264, - 0.049658, - 0.0058998, - -0.034141, - -0.0095346, - 0.010848, - 0.0065619, - -0.032726, - -0.043155, - 0.10726, - -0.0013356, - 0.006925, - -0.015488, - 0.0047666, - 0.074849, - -0.000021905, - 0.021889, - 0.0076437, - 0.043534, - -0.02522, - 0.051035, - -0.01696, - 0.06192, - -0.0048263, - -0.024589, - -0.0059922, - -0.013931, - -0.038603, - 0.067262, - -0.032076, - -0.0035647, - -0.025355, - 0.029285, - -0.03698, - 0.0042666, - 0.0376, - 0.13852, - -0.025757, - -0.031081, - 0.051693, - 0.016388, - -0.03962, - -0.021416, - 0.0033094, - -0.020332, - 0.024133, - 0.018812, - -0.070809, - -0.0024543, - 0.010933, - 0.036208, - 0.041036, - 0.029361, - -0.023029, - -0.026398, - 0.0066372, - -0.038849, - 0.030158, - 0.020711, - 0.0002559, - 0.07117, - 0.012492, - 0.036191, - -0.010069, - -0.058243, - -0.028958, - -0.017041, - 0.01369, - 0.050196, - 0.030966, - -0.061908, - 0.056706, - 0.076293, - 0.0045952, - -0.11685, - 0.027443, - 0.05004, - 0.069469, - 0.043777, - -0.0043959, - 0.036408, - -0.011058, - 0.018114, - 0.0025883, - -0.039869, - -0.13036, - 0.0085239, - 0.017326, - 0.0025978, - 0.012112, - 0.0069809, - 0.031788, - -0.0068615, - 0.064267, - 0.0015118, - 0.13271, - -0.0033044, - -0.01561, - -0.0021285, - -0.001547, - 0.0098516, - 0.0091442, - -0.0015179, - -0.049023, - -0.045221, - -0.029082, - 0.0032292, - -0.044692, - 0.056014, - 0.006996, - -0.042527, - 0.030237, - 0.066755, - -0.012022, - -0.057681, - 0.017534, - -0.022243, - -0.049733, - -0.044206, - -0.0041035, - 0.014714, - 0.025496, - -0.0061905, - 0.0037231, - -0.015811, - 0.038836, - -0.094616, - -0.016845, - 0.017996, - -0.14971, - 0.018467, - 0.011526, - -0.0087996, - -0.047953, - -0.026603, - 0.012982, - -0.033777, - -0.035777, - -0.033285, - -0.035632, - 0.0075218, - 0.0093156, - 0.018439, - -0.016226, - -0.013036, - 0.05003, - -0.023551, - 0.0029871, - 0.020349, - 0.028244, - -0.012035, - -0.016279, - 0.033118, - 0.032897, - 0.053786, - 0.056376, - 0.069557, - -0.077827, - -0.018404, - 0.053405, - -0.091509, - -0.010084, - -0.040094, - -0.074186, - -0.004394, - 0.14129, - -0.05349, - -0.012041, - 0.017139, - 0.023052, - 0.01929, - 0.012207, - -0.029987, - -0.037274, - 0.034418, - 0.027596, - -0.0054882, - -0.013784, - 0.05719, - -0.01353, - 0.053919, - 0.03241, - 0.024438, - 0.0037242, - 0.018588 - ], - "hands-free": [ - -0.077996, - 0.0008769, - -0.026828, - 0.010193, - 0.022694, - 0.0075073, - 0.034652, - -0.093374, - 0.01786, - 0.014302, - -0.0083842, - -0.015955, - -0.049104, - -0.0083958, - 0.009513, - -0.020298, - 0.075995, - 0.035029, - 0.051363, - -0.00047053, - 0.0052681, - -0.03386, - 0.056968, - 0.050695, - 0.020846, - 0.026425, - -0.0078612, - 0.075614, - 0.041058, - -0.037704, - -0.020679, - -0.0015592, - 0.10661, - -0.067349, - 0.040063, - -0.062251, - 0.014536, - -0.048611, - 0.01032, - -0.043219, - 0.064961, - -0.12324, - -0.037883, - 0.051825, - 0.03621, - -0.03832, - -0.029345, - -0.025302, - 0.026313, - 0.036229, - 0.0062801, - 0.01782, - -0.0015149, - -0.040917, - -0.037775, - -0.0017007, - -0.075151, - -0.058127, - -0.047231, - 0.033041, - -0.050907, - -0.0057441, - 0.049639, - 0.092544, - -0.034354, - -0.015063, - 0.035679, - 0.036005, - -0.0075383, - -0.011476, - 0.023787, - 0.018691, - 0.045312, - 0.0027277, - -0.03684, - 0.024727, - 0.036641, - -0.028626, - -0.018777, - 0.02545, - 0.002943, - -0.07515, - -0.0222, - 0.06325, - 0.0266, - -0.061149, - 0.0025513, - 0.0012013, - -0.058099, - -0.066799, - 0.037303, - -0.014558, - -0.082154, - -0.02696, - 0.005288, - 0.047819, - -0.053895, - -0.0031452, - 0.031358, - -0.060262, - -0.017587, - -0.0012952, - -0.043805, - -0.0084256, - -0.051642, - -0.066275, - 0.013743, - 0.041608, - -0.042293, - -0.02776, - 0.00053968, - 0.082483, - 0.06905, - 0.021869, - -0.036781, - 0.049122, - -0.04466, - -0.004256, - -0.038068, - 0.0040231, - 0.00051876, - 0.093222, - -0.02326, - 0.024889, - 0.06324, - -0.015685, - -0.00099568, - -0.054359, - -0.010734, - 0.010043, - -0.045448, - -0.017995, - 0.018155, - -0.059132, - 0.021686, - -0.050761, - 0.04574, - -0.016342, - -0.021144, - -0.025217, - 0.069429, - 0.036603, - 0.034017, - -0.012945, - 0.015386, - 0.006728, - -0.044194, - -0.0083216, - 0.065063, - 0.014897, - 0.075996, - 0.07904, - 0.049809, - -0.01808, - -0.022772, - 0.028083, - -0.041926, - -0.0029087, - 0.013267, - -0.0033127, - 0.068383, - 0.054872, - -0.041798, - 0.0017338, - 0.082129, - -0.028707, - 0.01473, - -0.020865, - 0.026735, - -0.00033096, - -0.034945, - 0.10034, - -0.030964, - 0.042555, - -0.056776, - 0.028557, - 0.014986, - 0.054347, - -0.054911, - -0.030967, - 0.023876, - -0.015538, - 0.0066318, - -0.041333, - -0.016255, - 0.012152, - -0.066471, - 0.1115, - 0.059461, - -0.0076797, - 0.0063595, - 0.025143, - 0.055204, - -0.015785, - 0.031032, - -0.039435, - -0.037252, - -0.002612, - -0.026944, - -0.04207, - -0.14389, - 0.076572, - 0.020492, - 0.011583, - -0.019163, - 0.033535, - -0.02793, - 0.079593, - -0.054385, - -0.024134, - 0.091979, - 0.040412, - 0.043174, - 0.09106, - -0.0067885, - 0.030301, - 0.0094757, - -0.086827, - -0.033936, - -0.0398, - 0.0036124, - -0.042492, - -0.0031389, - 0.067652, - 0.029496, - -0.049553, - -0.029108, - 0.052961, - -0.014152, - -0.03206, - -0.014126, - -0.06186, - -0.022522, - -0.063168, - 0.047835, - 0.0229, - 0.057867, - 0.020539, - 0.0047264, - 0.034229, - 0.10685, - 0.0368, - -0.037177, - -0.024386, - -0.12419, - -0.030444, - 0.07298, - -0.062484, - 0.050363, - -0.018411, - 0.037739, - 0.054627, - -0.077533, - 0.053805, - 0.045196, - -0.0028776, - 0.011408, - -0.010064, - -0.0093615, - 0.04883, - 0.020716, - -0.01054, - -0.053586, - 0.01466, - -0.036863, - 0.0097872, - 0.05489, - 0.015943, - 0.018501, - 0.03921, - -0.086187, - 0.064306, - -0.11877, - -0.060047, - -0.086147, - -0.086709, - -0.075214, - 0.064316, - 0.064219, - -0.055696, - 0.086769, - -0.025294, - -0.027087, - 0.023655, - -0.044727, - -0.069524, - -0.084664, - 0.0035052, - 0.11239, - 0.021876, - 0.047033, - -0.047262, - -0.014823, - -0.051757, - 0.073751, - 0.014547, - 0.0013204, - 0.036003, - 0.051343, - -0.0070855 - ], - "peacetime": [ - 0.023365, - 0.0013552, - 0.041191, - -0.053689, - -0.0048245, - -0.005825, - -0.025328, - -0.088238, - 0.069862, - 0.093557, - -0.03534, - -0.057336, - -0.048525, - 0.036913, - -0.014364, - 0.063023, - 0.076635, - -0.063033, - 0.066443, - 0.0054073, - 0.060042, - -0.037758, - -0.029045, - 0.043718, - 0.015007, - 0.017565, - -0.0040449, - -0.023038, - -0.010069, - -0.037814, - 0.054755, - -0.057327, - -0.029137, - -0.098233, - 0.049925, - 0.049601, - -0.031932, - 0.074373, - 0.11431, - 0.0022397, - -0.030582, - -0.13326, - 0.059945, - -0.0061436, - -0.0056338, - -0.016301, - -0.0079546, - -0.015411, - -0.052243, - 0.038419, - -0.0039451, - 0.033453, - 0.081525, - 0.034071, - -0.06172, - -0.021714, - -0.025673, - 0.00062523, - -0.033682, - 0.0085836, - -0.021273, - -0.0056938, - 0.062411, - -0.064769, - -0.004792, - -0.047175, - 0.0051656, - 0.0025099, - 0.028837, - 0.0065314, - 0.027985, - -0.016631, - -0.039442, - -0.019395, - -0.0416, - 0.0013032, - 0.0022315, - 0.020399, - -0.015335, - 0.048448, - 0.037097, - 0.0091, - -0.041289, - 0.046409, - -0.043295, - 0.076174, - 0.020138, - 0.0023246, - 0.0095935, - -0.0043021, - -0.060961, - 0.061355, - -0.049915, - -0.0044711, - -0.039967, - 0.03454, - -0.093198, - -0.021303, - 0.07882, - 0.015187, - 0.082188, - -0.06127, - -0.034038, - -0.041479, - -0.020936, - -0.030913, - 0.045862, - 0.0098094, - -0.038044, - -0.030101, - -0.019762, - 0.036362, - 0.051251, - 0.048594, - -0.038396, - 0.014166, - 0.037893, - 0.027327, - -0.064366, - -0.028716, - -0.034982, - -0.06646, - -0.057864, - 0.0047909, - 0.035367, - 0.084611, - -0.00033725, - -0.086402, - -0.014751, - 0.071419, - -0.028537, - -0.018936, - 0.038869, - 0.047926, - -0.024228, - -0.011469, - 0.065721, - -0.068635, - -0.050598, - -0.0035333, - 0.0063137, - -0.032548, - -0.066357, - 0.041713, - 0.052627, - 0.053303, - 0.0031658, - 0.033277, - 0.11645, - 0.018165, - 0.070122, - 0.098852, - -0.0048406, - -0.0125, - -0.00237, - 0.0086062, - -0.058225, - 0.058557, - 0.010178, - -0.066459, - 0.042351, - -0.021711, - -0.072487, - 0.053169, - -0.068302, - -0.031392, - -0.028813, - -0.045799, - -0.0066216, - -0.051444, - 0.025816, - -0.016252, - -0.05598, - -0.036219, - -0.0076657, - 0.052414, - -0.051173, - 0.020635, - -0.0090303, - 0.0045842, - 0.028247, - 0.011786, - -0.026555, - -0.048387, - 0.039929, - -0.031845, - 0.040262, - 0.076374, - 0.059831, - -0.034413, - 0.087004, - 0.034347, - 0.040394, - -0.06956, - 0.00364, - 0.028393, - -0.0061173, - 0.019686, - -0.050131, - 0.044868, - -0.12389, - 0.00044096, - -0.022319, - 0.060431, - 0.00059792, - -0.0097099, - -0.045303, - -0.0037574, - 0.025626, - 0.0031538, - 0.10752, - 0.0014009, - -0.04832, - 0.083883, - 0.055625, - 0.048818, - -0.010844, - -0.021687, - -0.018805, - -0.093125, - 0.05627, - -0.040982, - -0.0076945, - 0.10296, - -0.064521, - -0.02947, - 0.021531, - 0.094952, - -0.0056408, - -0.025189, - -0.032155, - -0.11365, - -0.056149, - -0.030882, - 0.016034, - -0.048073, - -0.017462, - -0.012911, - 0.000077758, - 0.029104, - 0.032042, - 0.061484, - 0.00036819, - -0.026793, - -0.052779, - -0.00061859, - -0.002275, - -0.065826, - 0.0071369, - -0.02778, - -0.022607, - 0.034601, - 0.051012, - -0.0085919, - 0.05659, - 0.075609, - 0.078526, - 0.024546, - 0.077795, - 0.0030057, - -0.00058572, - -0.034864, - 0.02127, - -0.0058637, - -0.054742, - 0.034065, - 0.043622, - -0.0016025, - 0.016417, - 0.023586, - 0.032489, - 0.068857, - -0.071173, - -0.020623, - 0.00097729, - -0.037302, - 0.058836, - 0.038077, - 0.0066083, - -0.020875, - 0.11326, - 0.028278, - -0.031746, - 0.043071, - -0.019887, - 0.01062, - -0.052013, - -0.028284, - -0.032657, - -0.0042006, - 0.057204, - 0.10192, - -0.027774, - -0.067664, - 0.01, - 0.014667, - 0.010495, - 0.033423, - -0.05349, - 0.010109 - ], - "job": [ - 0.052353, - -0.025626, - 0.053446, - 0.013024, - 0.038567, - -0.12863, - 0.043995, - -0.16722, - 0.074602, - -0.0019035, - -0.12091, - -0.050086, - -0.12687, - 0.049064, - -0.12554, - 0.025451, - 0.11828, - 0.053403, - 0.087173, - -0.029319, - -0.0077094, - 0.11393, - -0.0080512, - 0.052855, - -0.045896, - 0.021875, - 0.032449, - 0.012908, - -0.13409, - 0.029242, - -0.030422, - 0.0083813, - 0.037272, - -0.20847, - -0.016073, - 0.030171, - -0.025302, - 0.0037821, - 0.0071146, - -0.062476, - -0.016834, - -0.23409, - 0.031974, - 0.0068544, - -0.0041348, - -0.046117, - 0.02787, - -0.090693, - -0.009827, - 0.096122, - -0.071102, - 0.029545, - 0.053734, - -0.049151, - -0.19715, - -0.10348, - -0.13317, - -0.035298, - -0.11248, - -0.046106, - -0.075717, - 0.083271, - 0.25139, - 0.067, - -0.067284, - -0.011216, - -0.083985, - -0.044821, - 0.066307, - -0.071401, - 0.062628, - 0.061379, - -0.020019, - -0.057831, - 0.049821, - 0.0072281, - 0.013501, - -0.050957, - -0.068737, - -0.048322, - -0.058858, - -0.022809, - 0.055183, - 0.098476, - 0.0019785, - -0.019707, - -0.018724, - -0.072981, - -0.023642, - 0.083238, - 0.030213, - 0.019788, - -0.19852, - 0.045141, - -0.032661, - 0.013991, - -0.012702, - 0.017566, - 0.1931, - 0.0028801, - 0.092647, - -0.069512, - 0.039491, - 0.030304, - -0.082156, - -0.083432, - 0.029097, - 0.023312, - 0.10097, - -0.066687, - 0.040046, - 0.058681, - 0.076787, - 0.12227, - 0.022528, - -0.035471, - -0.11147, - -0.092779, - -0.069744, - -0.0071577, - -0.047456, - -0.1225, - -0.018904, - 0.05422, - 0.078961, - 0.040018, - -0.0072236, - -0.26391, - 0.050657, - 0.10506, - 0.041311, - -0.053748, - -0.034939, - -0.045327, - -0.11862, - -0.020181, - -0.054119, - -0.043336, - -0.11691, - 0.021512, - -0.071655, - -0.018206, - 0.0224, - -0.04521, - -0.13545, - 0.078983, - -0.12228, - -0.090895, - 0.10265, - -0.065131, - 0.075004, - 0.071967, - -0.025239, - -0.25059, - 0.011237, - 0.024126, - -0.0033875, - -0.017287, - 0.10503, - -0.080475, - 0.10546, - 0.064217, - -0.074724, - -0.073059, - 0.024127, - -0.073736, - -0.019846, - -0.083808, - -0.021439, - 0.060684, - 0.10729, - -0.07195, - -0.022555, - 0.0097142, - 0.081539, - 0.070276, - -0.057433, - 0.053, - 0.037361, - 0.042993, - -0.011487, - -0.1234, - -0.030626, - -0.084628, - 0.007769, - -0.17374, - 0.065516, - 0.18591, - -0.044441, - 0.093282, - -0.070646, - 0.15217, - 0.074044, - 0.032466, - 0.048708, - 0.10742, - 0.0090156, - -0.067338, - -0.0039873, - 0.029069, - -0.20256, - 0.22965, - 0.068889, - -0.057836, - -0.074664, - -0.0075784, - -0.043818, - -0.023388, - 0.063896, - -0.063996, - 0.083412, - 0.00027683, - 0.035483, - -0.031197, - -0.016183, - 0.026521, - 0.032055, - -0.074714, - -0.067034, - 0.016793, - 0.070484, - -0.034742, - -0.06875, - 0.21836, - 0.066759, - -0.12872, - -0.093736, - 0.15139, - 0.047605, - 0.011622, - 0.029945, - -0.21985, - -0.052988, - -0.058164, - 0.072373, - -0.051784, - 0.052069, - -0.06711, - 0.0061817, - -0.011984, - 0.13026, - 0.047466, - -0.004687, - 0.078826, - -0.089648, - -0.0023788, - -0.045542, - -0.10077, - -0.029248, - 0.055857, - 0.016268, - 0.15088, - 0.079575, - -0.0025134, - 0.039012, - 0.034623, - -0.057125, - 0.063377, - 0.10513, - -0.0042677, - -0.022612, - 0.030233, - 0.10897, - -0.051702, - -0.14577, - 0.032696, - -0.058974, - 0.017213, - -0.01826, - -0.066655, - -0.0739, - 0.10778, - -0.20597, - -0.090091, - 0.058307, - -0.060856, - 0.008192, - 0.011172, - 0.047768, - 0.04568, - 0.15096, - 0.019468, - 0.044544, - 0.05886, - 0.052226, - 0.11263, - 0.020915, - 0.013431, - -0.12794, - -0.025945, - 0.06066, - 0.078086, - -0.041052, - 0.04563, - 0.01061, - 0.09199, - -0.13928, - 0.006299, - -0.056103, - -0.063151 - ], - "steroid": [ - -0.059555, - -0.0010871, - 0.028581, - -0.0052659, - -0.00545, - 0.00064332, - -0.0054369, - -0.078989, - 0.044556, - -0.019244, - -0.02829, - -0.025175, - -0.035062, - 0.023161, - 0.091149, - -0.043482, - 0.067839, - 0.03181, - 0.0031519, - 0.054305, - 0.074411, - 0.018435, - 0.12263, - 0.030178, - 0.061675, - -0.079959, - 0.027869, - -0.039242, - -0.020269, - 0.11037, - 0.03287, - 0.067473, - 0.060959, - -0.01744, - 0.051228, - 0.0014394, - -0.042813, - -0.059352, - -0.011263, - 0.046246, - -0.003541, - -0.13252, - -0.053089, - -0.025325, - 0.17265, - 0.0093243, - 0.046453, - 0.078341, - 0.0072576, - 0.040708, - -0.052065, - -0.056168, - 0.10108, - -0.08605, - -0.054297, - -0.051839, - 0.044587, - -0.026294, - 0.0005461, - 0.023551, - 0.026353, - 0.030355, - 0.10608, - -0.034272, - -0.033922, - -0.083915, - 0.057315, - -0.033262, - 0.088758, - -0.034597, - -0.010106, - 0.049429, - -0.0044499, - -0.05834, - 0.060262, - 0.028986, - -0.059866, - -0.038595, - 0.024209, - -0.071471, - 0.0030548, - -0.041298, - -0.011179, - 0.044203, - -0.070965, - 0.0112, - 0.038054, - -0.018062, - 0.050307, - -0.017004, - 0.05074, - 0.024828, - -0.070681, - -0.042541, - -0.02542, - 0.078514, - 0.01031, - -0.073826, - 0.024798, - 0.045645, - -0.017811, - 0.032471, - -0.020309, - 0.078028, - 0.03508, - -0.076445, - 0.040596, - -0.12689, - 0.040831, - 0.14983, - -0.055195, - 0.024587, - 0.043478, - -0.060514, - -0.010318, - 0.053813, - -0.082374, - 0.038192, - -0.071185, - 0.0088373, - 0.079674, - 0.053561, - 0.027684, - -0.074982, - 0.11443, - 0.01424, - 0.005565, - -0.059186, - 0.024368, - 0.088481, - -0.028906, - -0.0498, - -0.076569, - 0.050213, - 0.062001, - -0.056164, - -0.08639, - -0.021206, - 0.005601, - -0.10383, - 0.099836, - 0.12918, - 0.0030907, - -0.039047, - 0.037662, - -0.057061, - 0.010104, - -0.061855, - 0.1325, - 0.0039973, - -0.0088315, - 0.052075, - 0.001162, - -0.0038399, - 0.014519, - 0.0020594, - 0.054015, - 0.030651, - 0.10995, - 0.012907, - 0.02359, - 0.08556, - -0.12341, - 0.014823, - 0.04929, - -0.017795, - -0.032463, - 0.023988, - 0.015834, - -0.063694, - -0.01156, - -0.05077, - 0.018382, - -0.058461, - 0.03661, - 0.078303, - -0.030102, - -0.071175, - -0.066309, - -0.038221, - 0.017378, - -0.01991, - -0.077571, - 0.004601, - 0.049024, - -0.09666, - 0.011608, - 0.13453, - -0.0039788, - 0.04946, - 0.023403, - -0.0089242, - 0.05923, - -0.042659, - -0.021346, - -0.10354, - -0.057962, - 0.018977, - 0.076064, - 0.029593, - -0.15234, - 0.046792, - -0.040043, - -0.058842, - 0.045525, - -0.024873, - 0.033625, - 0.077563, - -0.099042, - -0.013223, - 0.17112, - 0.069142, - 0.039764, - 0.052539, - 0.096169, - -0.0063093, - -0.10605, - 0.074568, - 0.052065, - -0.047948, - -0.13549, - -0.10109, - 0.01963, - 0.067281, - -0.011224, - 0.10344, - -0.051909, - -0.01816, - -0.021745, - 0.008815, - 0.010522, - -0.0083646, - -0.042882, - -0.036864, - 0.014867, - 0.045543, - -0.083661, - -0.077188, - -0.058578, - -0.17185, - 0.072641, - 0.037317, - 0.012366, - -0.02063, - -0.045104, - 0.044102, - 0.016743, - 0.034992, - 0.058245, - 0.086253, - 0.015059, - 0.0099662, - 0.05001, - -0.0053622, - -0.0041252, - 0.00037481, - 0.044347, - 0.012454, - 0.044496, - 0.027543, - -0.049449, - -0.056748, - 0.034894, - -0.00411, - 0.041152, - 0.024243, - -0.10945, - -0.036677, - 0.028707, - 0.020991, - -0.091996, - 0.069193, - -0.09512, - -0.005749, - -0.012763, - -0.046549, - -0.12723, - -0.089319, - -0.0065666, - 0.01449, - 0.17991, - 0.063323, - -0.042359, - -0.0053023, - -0.047894, - 0.034962, - -0.051568, - 0.067391, - -0.026139, - -0.016015, - 0.070108, - 0.011728, - -0.053086, - -0.05936, - 0.012385, - -0.092264, - -0.01707, - 0.014922, - 0.092625, - -0.062953 - ], - "coffee": [ - -0.032845, - -0.045318, - -0.00013383, - -0.030126, - 0.010395, - 0.019746, - 0.026345, - -0.061714, - -0.0069776, - 0.034951, - -0.094494, - -0.0034932, - -0.022774, - -0.019416, - 0.0086751, - 0.075931, - 0.090063, - -0.035866, - 0.034232, - -0.044498, - -0.048314, - 0.046635, - -0.0093102, - 0.024839, - -0.075548, - -0.13127, - -0.0040083, - 0.020665, - 0.022709, - -0.048655, - 0.033039, - 0.0022998, - -0.0096324, - -0.018339, - 0.049249, - -0.043198, - 0.085214, - 0.038686, - -0.015279, - 0.00129, - -0.043917, - -0.12495, - -0.039617, - 0.056564, - 0.020924, - 0.011388, - 0.059437, - 0.027972, - -0.0077673, - 0.064005, - -0.032844, - 0.027148, - 0.083843, - -0.0086342, - -0.094104, - -0.013022, - 0.0025004, - -0.017416, - -0.043953, - -0.081298, - -0.10494, - -0.051399, - 0.10352, - 0.12285, - -0.074332, - -0.015895, - 0.060582, - 0.0068858, - -0.056572, - 0.0091373, - 0.0616, - 0.057236, - 0.053393, - -0.009077, - -0.020862, - -0.10487, - -0.0035984, - -0.021888, - 0.012399, - 0.055011, - -0.063465, - -0.11238, - 0.012498, - 0.021416, - -0.046296, - -0.098749, - 0.0065331, - -0.057242, - 0.041326, - -0.0036025, - 0.059071, - 0.017616, - -0.11371, - 0.019216, - 0.10052, - 0.1051, - 0.017125, - 0.014047, - 0.0501, - -0.025886, - 0.0024524, - -0.0052143, - -0.083405, - -0.091682, - 0.028912, - -0.11487, - -0.11186, - 0.054478, - -0.033163, - 0.032437, - 0.0067688, - 0.072887, - 0.058239, - 0.14763, - -0.028825, - -0.035996, - -0.041292, - -0.02747, - -0.066789, - 0.033875, - 0.049561, - -0.073687, - -0.0047087, - -0.098401, - 0.05827, - 0.071743, - -0.028396, - -0.10524, - 0.040709, - 0.058403, - 0.070592, - 0.0029159, - -0.086746, - -0.029968, - -0.010831, - -0.049449, - -0.04049, - 0.042652, - 0.025834, - -0.056869, - 0.11491, - -0.032301, - -0.015406, - -0.090363, - 0.026586, - -0.043201, - 0.04845, - -0.0066905, - -0.1062, - 0.017137, - -0.00046339, - 0.07749, - 0.037867, - 0.013774, - 0.037007, - -0.057082, - -0.0028965, - 0.041456, - 0.046723, - 0.050444, - 0.038654, - 0.0083299, - -0.048497, - 0.020173, - -0.057689, - -0.02979, - -0.058003, - 0.0059416, - 0.16522, - 0.15418, - -0.0092862, - 0.029853, - -0.0027779, - -0.0083791, - 0.015025, - 0.075349, - -0.12534, - 0.081856, - -0.031826, - 0.041765, - -0.0027327, - 0.078856, - 0.039583, - -0.14726, - -0.071662, - -0.030477, - 0.063093, - 0.13114, - 0.071958, - -0.034401, - 0.079675, - -0.0031586, - -0.0097787, - 0.0037234, - 0.12986, - -0.017374, - 0.019569, - -0.024745, - 0.026722, - 0.0046197, - -0.13524, - 0.065206, - -0.000069422, - 0.017564, - 0.0069427, - 0.011949, - 0.052447, - -0.024102, - -0.042251, - -0.057085, - 0.1654, - 0.0037832, - 0.066281, - -0.089746, - 0.040141, - 0.027244, - 0.029502, - -0.06657, - 0.012842, - -0.081453, - 0.050297, - 0.024966, - -0.11385, - 0.091667, - 0.038726, - -0.0089719, - 0.042842, - 0.065176, - -0.017313, - 0.00016629, - -0.0075586, - -0.070245, - -0.009505, - 0.023057, - -0.000083119, - 0.038695, - -0.032947, - -0.016256, - 0.068473, - -0.051499, - 0.060307, - 0.021682, - 0.060351, - -0.04899, - -0.0041658, - 0.016042, - -0.012556, - 0.027027, - -0.0099922, - -0.058426, - -0.09049, - -0.062817, - -0.03701, - 0.013149, - 0.015771, - -0.078354, - -0.033789, - -0.042655, - 0.026257, - -0.075041, - 0.014791, - 0.032785, - 0.029195, - -0.029549, - -0.019169, - -0.071318, - -0.056507, - 0.0040487, - -0.015344, - 0.090242, - -0.022757, - 0.081015, - -0.11157, - -0.047983, - -0.081024, - -0.037369, - -0.037256, - 0.014433, - -0.073885, - -0.050041, - 0.098984, - 0.1588, - -0.052273, - 0.053937, - -0.079645, - 0.0088334, - -0.035368, - 0.028335, - 0.059895, - 0.026529, - -0.0068968, - 0.094942, - -0.066779, - 0.025455, - -0.057666, - 0.046804, - 0.015548, - 0.043598, - -0.0057263, - 0.040002 - ], - "ethnography": [ - 0.028382, - -0.062698, - -0.0053697, - 0.038057, - 0.026002, - -0.027553, - 0.017131, - -0.088927, - -0.017258, - -0.01769, - 0.011434, - -0.056866, - -0.051419, - -0.027641, - 0.030299, - -0.020327, - 0.06517, - 0.0045551, - -0.010085, - 0.081395, - -0.067922, - 0.013772, - 0.0046734, - 0.02141, - 0.018912, - 0.015577, - -0.021763, - 0.034439, - 0.02075, - 0.030643, - 0.025314, - 0.024744, - -0.023514, - -0.060643, - 0.021132, - 0.0020948, - 0.045623, - 0.044202, - -0.035403, - -0.0072119, - 0.00011425, - -0.079333, - 0.025734, - 0.0012041, - 0.034756, - 0.0044174, - -0.010827, - -0.043465, - 0.023127, - -0.010233, - -0.036951, - -0.0020089, - -0.0332, - 0.0046937, - -0.02938, - 0.039809, - -0.026926, - 0.013838, - 0.010678, - 0.022316, - 0.014568, - -0.051502, - 0.041292, - -0.019018, - 0.017304, - 0.023806, - -0.027348, - 0.035124, - -0.010519, - 0.04224, - -0.032911, - -0.012372, - 0.00030077, - -0.063648, - 0.067763, - 0.00092013, - 0.050294, - -0.028283, - 0.073835, - -0.023393, - -0.024541, - 0.012457, - -0.04159, - 0.010825, - -0.057899, - -0.06635, - 0.0033459, - -0.020686, - 0.033928, - 0.053696, - -0.036409, - 0.056532, - -0.064129, - -0.004364, - 0.014543, - 0.05935, - -0.0429, - -0.0050742, - 0.024217, - -0.052218, - 0.046211, - -0.022147, - -0.060427, - 0.016087, - -0.0098904, - -0.043502, - 0.013372, - 0.062856, - -0.0055604, - -0.02033, - -0.027888, - 0.06855, - 0.014433, - -0.0012428, - -0.04985, - 0.04116, - -0.028579, - 0.029293, - -0.013757, - 0.049513, - 0.013468, - -0.01232, - -0.011647, - -0.014724, - 0.025582, - -0.0060792, - -0.034042, - -0.016778, - 0.053425, - 0.097786, - 0.00058947, - 0.00055808, - -0.010573, - -0.046692, - 0.044113, - -0.01312, - -0.0089429, - -0.0071433, - 0.018523, - -0.0085345, - 0.01199, - -0.031901, - 0.052052, - -0.0060499, - -0.0024323, - -0.097526, - -0.050342, - 0.087426, - 0.042018, - -0.069922, - 0.06612, - 0.030024, - -0.002694, - -0.041509, - -0.01561, - 0.045237, - 0.028262, - 0.033513, - 0.011156, - 0.019471, - 0.0211, - 0.039302, - -0.054206, - 0.014385, - -0.046546, - 0.021598, - 0.033605, - -0.020387, - 0.0087959, - -0.0035905, - 0.071563, - -0.03939, - -0.014957, - 0.029243, - 0.0010777, - 0.040409, - 0.014646, - 0.020582, - -0.011441, - -0.047588, - -0.019113, - 0.038189, - -0.03971, - -0.05809, - -0.0082194, - -0.0066926, - 0.0070434, - 0.087436, - -0.038668, - -0.014895, - 0.036552, - 0.069691, - -0.012219, - -0.049342, - -0.010702, - 0.063844, - -0.052904, - 0.015156, - -0.0010537, - -0.026729, - -0.096703, - 0.028141, - -0.013444, - -0.044308, - 0.022088, - 0.070765, - -0.027886, - 0.021308, - -0.0068483, - -0.0058321, - 0.081228, - 0.0016831, - -0.022875, - -0.042626, - 0.029977, - 0.078341, - 0.0077031, - -0.061391, - -0.046657, - 0.024505, - -0.0036911, - -0.022951, - -0.080089, - 0.073592, - -0.0038832, - -0.031857, - 0.05428, - 0.049532, - -0.06376, - -0.01406, - 0.015945, - -0.041045, - 0.025478, - -0.0096452, - 0.018439, - 0.069669, - 0.03835, - 0.0083203, - 0.0064726, - -0.018265, - 0.033154, - 0.023687, - 0.0040366, - 0.02265, - 0.0026771, - -0.005622, - -0.080668, - -0.03699, - -0.062474, - 0.020086, - 0.060512, - -0.04784, - -0.03257, - -0.028538, - 0.0153, - 0.0089679, - -0.023163, - 0.02617, - 0.02482, - -0.050903, - 0.033292, - 0.020396, - -0.0061424, - 0.0097131, - 0.024331, - -0.047104, - 0.031118, - -0.016132, - -0.012723, - 0.029775, - 0.023852, - 0.061271, - -0.049242, - -0.0059617, - -0.026664, - -0.01122, - 0.0094872, - -0.0024882, - -0.072749, - -0.037659, - 0.069476, - -0.044352, - -0.096577, - -0.03868, - -0.049081, - 0.029903, - -0.0071859, - 0.00097894, - 0.0067974, - -0.078333, - -0.03363, - 0.015822, - -0.0017405, - -0.021454, - 0.027616, - 0.078854, - -0.014191, - 0.024757, - -0.052871, - 0.0012509 - ], - "comeback": [ - 0.014623, - 0.018367, - -0.035763, - 0.0035064, - -0.053268, - -0.0048394, - -0.006703, - -0.12349, - 0.031294, - -0.042485, - -0.033983, - -0.02357, - 0.00088135, - 0.062921, - -0.033399, - -0.016648, - 0.096981, - -0.020588, - 0.064088, - -0.049954, - 0.018802, - -0.03752, - -0.064685, - 0.065825, - 0.060835, - -0.071919, - 0.042996, - 0.05205, - -0.063634, - -0.018382, - 0.020347, - -0.047412, - -0.023199, - -0.11962, - 0.0016248, - 0.02879, - -0.020443, - 0.013597, - 0.0052265, - 0.046971, - 0.054325, - -0.067177, - -0.014927, - -0.0023538, - 0.061047, - 0.084158, - 0.05088, - -0.01949, - 0.016269, - 0.0052308, - 0.013594, - 0.014363, - 0.0080226, - 0.00001788, - -0.081657, - -0.040692, - -0.004739, - -0.017406, - -0.024839, - 0.0039022, - 0.017355, - 0.0080417, - 0.058101, - -0.024656, - 0.13982, - -0.050638, - -0.010967, - 0.044552, - -0.0040045, - -0.050795, - -0.073833, - 0.026135, - -0.014699, - -0.041282, - 0.038606, - 0.061689, - -0.028752, - -0.039583, - 0.016143, - 0.050597, - 0.051203, - 0.041943, - -0.07045, - 0.057572, - 0.050199, - -0.012063, - -0.02125, - -0.015528, - -0.020395, - -0.051221, - -0.016105, - 0.016152, - -0.10669, - -0.0015315, - 0.080157, - 0.028511, - -0.016803, - -0.019156, - 0.041591, - 0.061455, - -0.059579, - -0.047282, - 0.016271, - 0.031158, - -0.059469, - -0.04731, - -0.028787, - -0.083027, - -0.028219, - 0.050496, - -0.024446, - -0.028436, - 0.064949, - 0.03426, - 0.033657, - 0.045689, - 0.057009, - -0.016663, - -0.030401, - -0.01678, - 0.00060811, - 0.074445, - 0.013109, - 0.053409, - 0.14881, - 0.048231, - -0.0060844, - -0.058396, - 0.0059383, - 0.048574, - 0.0030323, - -0.0045559, - 0.018902, - -0.0019192, - -0.035597, - -0.034023, - -0.00011639, - 0.030143, - 0.0078826, - -0.026498, - 0.054067, - 0.0062319, - 0.031614, - 0.040377, - 0.014788, - -0.024176, - 0.032272, - -0.0017324, - 0.01563, - -0.026823, - -0.0013276, - 0.069322, - -0.035921, - -0.082475, - -0.045371, - -0.057834, - 0.021293, - -0.04264, - 0.03148, - -0.033685, - 0.06603, - 0.016057, - -0.052674, - -0.013802, - -0.074775, - 0.030359, - -0.049801, - -0.070405, - 0.028947, - 0.042908, - 0.089647, - 0.016885, - 0.028178, - 0.00094687, - -0.0083118, - 0.033014, - 0.036542, - -0.0041742, - 0.016634, - 0.063114, - -0.030216, - -0.013211, - -0.065551, - -0.069135, - 0.03175, - -0.064044, - -0.01918, - 0.06903, - -0.045626, - 0.070959, - 0.028505, - 0.039957, - 0.034112, - 0.011107, - -0.06944, - 0.012992, - -0.023714, - -0.068396, - 0.062726, - -0.0060928, - -0.15249, - 0.18183, - -0.012444, - 0.011216, - -0.055533, - 0.029508, - 0.035539, - 0.010915, - 0.040893, - -0.025011, - 0.12606, - -0.0055141, - -0.015181, - 0.057032, - 0.084606, - -0.040697, - -0.036729, - -0.0026819, - -0.010503, - -0.038682, - -0.010636, - -0.010738, - -0.019898, - 0.10253, - 0.025644, - -0.006535, - -0.020551, - 0.089244, - -0.071477, - 0.006333, - 0.026907, - -0.12809, - -0.0065463, - -0.011284, - 0.096832, - -0.031116, - -0.021886, - -0.042442, - 0.016138, - 0.018319, - 0.10218, - -0.01365, - 0.0034981, - 0.036076, - -0.050182, - -0.005575, - -0.014859, - -0.045241, - 0.0079002, - 0.00065448, - 0.059099, - -0.02145, - 0.049475, - -0.0001222, - 0.0039967, - 0.06862, - -0.018421, - 0.0092405, - -0.019351, - -0.0051972, - 0.07459, - 0.072026, - 0.072417, - -0.041156, - 0.03771, - 0.079041, - -0.015182, - -0.023552, - 0.070109, - 0.024673, - -0.0057395, - 0.11375, - -0.14028, - -0.013208, - -0.053697, - -0.055794, - 0.0084983, - 0.046637, - 0.0016864, - 0.032783, - 0.081564, - 0.0071867, - -0.031042, - 0.01658, - -0.042057, - -0.082937, - 0.10493, - -0.038866, - -0.036299, - -0.036724, - 0.0668, - -0.030687, - -0.049199, - 0.031496, - 0.018865, - -0.030037, - -0.010783, - 0.026454, - 0.044346, - 0.0092588 - ], - "condo": [ - 0.15638, - -0.042189, - -0.017264, - 0.12384, - 0.04898, - 0.062492, - 0.0050457, - -0.13584, - 0.019822, - 0.031163, - -0.074161, - -0.088065, - 0.05694, - 0.00046896, - -0.048497, - -0.047993, - 0.16778, - 0.025255, - 0.02125, - -0.035454, - 0.042393, - -0.12935, - -0.11267, - 0.023053, - 0.091781, - -0.11311, - 0.12478, - 0.13279, - -0.07859, - 0.015288, - -0.070457, - -0.021386, - -0.051968, - -0.012539, - 0.031074, - 0.039041, - 0.068335, - 0.033132, - -0.089811, - -0.053964, - 0.018417, - -0.09247, - 0.018915, - 0.0044938, - 0.051153, - -0.0045751, - 0.016548, - 0.045171, - 0.02279, - 0.044003, - 0.054662, - -0.033829, - -0.10311, - 0.11276, - -0.075729, - 0.0068723, - -0.0037204, - -0.056891, - -0.086564, - -0.09574, - 0.051784, - 0.040291, - 0.14556, - -0.010605, - 0.06055, - -0.008196, - -0.009518, - -0.038078, - -0.052637, - -0.12902, - 0.057591, - 0.1195, - 0.041177, - -0.037268, - 0.11141, - -0.10497, - -0.020386, - -0.0074652, - -0.1263, - 0.075469, - 0.0019606, - -0.062663, - 0.05501, - -0.045924, - -0.12443, - -0.068776, - 0.010551, - -0.12897, - -0.024086, - -0.0070267, - -0.01135, - -0.019129, - -0.087401, - -0.092036, - -0.0069314, - 0.10425, - 0.082849, - -0.058787, - -0.079001, - -0.072504, - -0.000026759, - 0.11635, - 0.038061, - -0.051191, - 0.068831, - -0.21699, - -0.067298, - 0.045467, - 0.0071336, - 0.051262, - -0.060521, - 0.07704, - 0.0099897, - 0.018423, - 0.11089, - -0.087845, - -0.09291, - -0.076388, - -0.047124, - 0.078266, - -0.014302, - 0.1089, - 0.13476, - -0.01453, - 0.097735, - -0.032954, - 0.13289, - -0.043957, - 0.012761, - 0.087974, - 0.080786, - 0.02433, - 0.16131, - -0.053064, - -0.044042, - 0.053921, - 0.0062981, - 0.020876, - -0.075775, - -0.049514, - 0.042153, - 0.068855, - 0.040057, - 0.102, - -0.020455, - -0.067197, - 0.0084618, - -0.035754, - 0.03926, - -0.052763, - -0.033512, - -0.016287, - 0.060375, - -0.02319, - 0.0006936, - 0.012971, - 0.019859, - -0.036657, - 0.053559, - 0.02504, - 0.079612, - 0.13985, - -0.027766, - -0.066297, - -0.031714, - -0.11222, - -0.010035, - -0.11679, - -0.040427, - 0.1992, - 0.039871, - -0.01477, - 0.041204, - -0.029218, - -0.1465, - 0.044725, - -0.052297, - -0.061484, - -0.017683, - 0.048749, - 0.051335, - -0.067147, - 0.0083757, - -0.05242, - 0.0049236, - -0.081467, - 0.0066764, - 0.17404, - 0.081134, - -0.059284, - -0.041368, - -0.0031323, - 0.013547, - 0.0925, - 0.030328, - -0.003406, - 0.078603, - 0.063547, - 0.019696, - 0.038656, - -0.25261, - 0.091147, - -0.042273, - -0.086553, - 0.084271, - -0.11062, - -0.025407, - -0.072789, - -0.1102, - 0.012595, - 0.099124, - -0.032957, - -0.094474, - -0.097851, - 0.02975, - -0.016224, - 0.0020612, - 0.032548, - 0.085356, - -0.064617, - 0.0068629, - -0.03474, - 0.0074787, - 0.069538, - -0.0021456, - 0.039538, - 0.015102, - 0.002481, - -0.048803, - 0.030535, - -0.038126, - -0.063934, - -0.089927, - 0.090519, - 0.053612, - -0.080624, - -0.022142, - 0.054547, - 0.039275, - 0.10079, - 0.099753, - -0.055318, - 0.081131, - -0.037066, - -0.036513, - 0.082002, - -0.040123, - 0.08838, - -0.0146, - 0.060958, - -0.010958, - -0.10019, - -0.061514, - -0.020344, - 0.022164, - -0.01633, - -0.014305, - -0.012951, - 0.032431, - -0.019796, - 0.014358, - 0.003156, - -0.15814, - -0.037486, - 0.066398, - 0.033338, - -0.071107, - 0.010967, - -0.10595, - 0.0075958, - -0.20451, - 0.11518, - -0.14824, - -0.034263, - 0.0016175, - -0.10104, - -0.032802, - -0.0059528, - 0.10877, - 0.03854, - 0.094293, - 0.1366, - 0.025188, - 0.041414, - -0.053603, - 0.015317, - -0.078954, - -0.0048742, - -0.13244, - -0.041793, - 0.0080692, - -0.052022, - 0.016272, - -0.057901, - -0.0029094, - -0.0027573, - -0.0061067, - 0.12233, - -0.060618, - 0.0084533 - ], - "outfit": [ - 0.011759, - -0.034355, - 0.0025425, - 0.015661, - 0.004886, - -0.14923, - 0.037306, - -0.099693, - -0.041164, - 0.021329, - -0.03048, - -0.043906, - -0.091916, - -0.022655, - -0.1065, - 0.066738, - 0.1367, - -0.0059987, - 0.058463, - 0.0251, - 0.010021, - -0.037957, - -0.079255, - 0.069992, - 0.053054, - 0.04109, - 0.070335, - 0.010897, - -0.061276, - 0.0024592, - -0.049139, - -0.037285, - -0.01388, - -0.0089208, - 0.036119, - -0.0052997, - -0.0086591, - 0.063009, - 0.053021, - 0.025637, - 0.024913, - -0.1283, - -0.012954, - 0.020862, - 0.020101, - 0.013164, - 0.039031, - -0.010401, - -0.0011295, - -0.053048, - 0.0017987, - 0.055369, - -0.01838, - 0.056968, - -0.072317, - 0.074902, - -0.0077414, - -0.089689, - -0.048699, - 0.074906, - -0.062283, - -0.002955, - 0.19072, - 0.021768, - 0.066113, - 0.044912, - -0.001607, - -0.022139, - -0.02449, - -0.027491, - -0.028558, - -0.0043024, - 0.031685, - -0.089492, - 0.00004165, - 0.082937, - 0.05682, - 0.0049302, - -0.040427, - 0.026165, - -0.0036929, - 0.016811, - 0.0032621, - 0.08938, - -0.052881, - -0.020257, - -0.063138, - -0.050248, - -0.0068316, - -0.050912, - 0.025164, - 0.045562, - -0.090684, - 0.019534, - 0.14486, - 0.087667, - -0.060607, - -0.058111, - 0.074239, - 0.00080913, - 0.013002, - 0.016577, - 0.038512, - 0.035104, - -0.030902, - -0.10921, - -0.030211, - -0.036811, - -0.0016763, - 0.058697, - 0.0069587, - 0.11148, - 0.077338, - -0.011697, - -0.0082423, - 0.0030815, - 0.0016389, - -0.030781, - -0.071663, - -0.0096313, - 0.017297, - 0.055339, - 0.010539, - -0.033595, - 0.13438, - -0.028526, - -0.040007, - -0.043108, - 0.028202, - 0.077894, - -0.045378, - -0.011509, - -0.0084113, - -0.064478, - -0.06521, - -0.017263, - 0.063184, - 0.039095, - -0.020328, - -0.033995, - -0.063041, - 0.022018, - 0.019605, - 0.023134, - -0.074352, - 0.052718, - -0.0014318, - 0.003949, - 0.0071956, - -0.075665, - 0.047998, - 0.060602, - -0.031828, - -0.061784, - -0.052327, - 0.021311, - 0.0031655, - -0.0084484, - -0.013903, - -0.018732, - 0.029943, - -0.031322, - -0.093932, - 0.031437, - -0.025039, - 0.067215, - -0.03746, - -0.058641, - 0.0093312, - 0.084092, - 0.048546, - -0.028476, - -0.024945, - -0.053181, - 0.030571, - 0.047598, - -0.0484, - 0.082864, - 0.010093, - -0.075335, - -0.012626, - -0.046837, - -0.011695, - 0.028416, - -0.050685, - -0.035109, - -0.084634, - 0.10744, - -0.057946, - -0.021688, - 0.013099, - 0.12228, - -0.029007, - -0.043254, - 0.070182, - 0.066002, - 0.036211, - -0.0024909, - 0.043331, - -0.022267, - -0.17074, - 0.077719, - 0.02938, - 0.060291, - 0.00011552, - -0.023822, - -0.064971, - 0.013543, - 0.039441, - -0.020518, - 0.11687, - -0.0027224, - -0.0036949, - 0.00076551, - -0.010936, - -0.012394, - -0.046253, - 0.027507, - -0.0044107, - 0.071649, - -0.024895, - -0.007825, - -0.011544, - 0.097651, - -0.038871, - -0.025795, - 0.034146, - 0.034367, - 0.0067344, - 0.050021, - 0.0040752, - -0.046026, - -0.046538, - -0.052726, - 0.011723, - -0.018202, - 0.051503, - -0.011991, - 0.017875, - -0.0003956, - 0.083177, - -0.030617, - 0.025895, - -0.063598, - 0.02632, - 0.020401, - -0.074905, - -0.0030734, - -0.046073, - -0.010925, - -0.0063552, - -0.018838, - 0.039279, - -0.0017623, - 0.013031, - 0.085297, - 0.050168, - 0.047745, - 0.033466, - 0.05647, - 0.057033, - 0.028969, - -0.066427, - -0.040453, - -0.053493, - 0.033874, - -0.0094711, - -0.038307, - -0.016499, - 0.026559, - -0.0047895, - 0.095113, - -0.098435, - -0.040604, - 0.0093266, - 0.00076199, - 0.017475, - 0.010455, - -0.034002, - -0.022283, - 0.058815, - 0.052604, - 0.086823, - 0.0057539, - -0.054966, - -0.095861, - -0.0055285, - -0.0032435, - 0.0018447, - 0.04194, - -0.017506, - 0.045636, - -0.016358, - 0.020712, - -0.036132, - -0.081716, - -0.0060301, - 0.043613, - -0.0096455, - -0.048738 - ], - "128-bit": [ - -0.096094, - -0.023235, - -0.12035, - 0.066105, - 0.0028461, - -0.002797, - -0.037036, - -0.11284, - -0.054528, - -0.041688, - 0.009038, - -0.014501, - -0.088164, - 0.099525, - -0.071126, - 0.025282, - -0.012885, - 0.072086, - 0.11247, - -0.059317, - 0.035243, - 0.011045, - 0.011439, - 0.078198, - 0.037192, - 0.072165, - 0.0088361, - -0.082638, - 0.044594, - 0.012212, - -0.055921, - -0.1205, - -0.086151, - -0.051954, - 0.052103, - -0.095897, - 0.031023, - -0.0082668, - 0.017905, - -0.038945, - -0.032963, - -0.091174, - 0.053202, - -0.012354, - -0.040648, - 0.0058173, - -0.071902, - 0.044625, - 0.025595, - 0.027049, - -0.068755, - -0.15852, - 0.032981, - 0.0080342, - -0.0069097, - 0.048646, - 0.039041, - 0.034992, - 0.0014413, - -0.016953, - -0.041091, - -0.039971, - 0.080343, - -0.085505, - -0.016694, - 0.023242, - 0.010655, - 0.010503, - 0.0030433, - -0.0020932, - -0.073656, - 0.011516, - 0.052845, - 0.050815, - -0.060603, - 0.045012, - -0.007269, - -0.017845, - 0.073321, - -0.030627, - 0.0026413, - -0.055605, - 0.0043672, - 0.017485, - 0.026684, - -0.0090986, - -0.033439, - -0.040679, - 0.0059224, - -0.023479, - 0.030703, - -0.060816, - -0.030288, - 0.054324, - -0.059919, - 0.081452, - 0.055826, - -0.067286, - -0.042597, - 0.025174, - -0.052734, - -0.013382, - 0.080417, - 0.004522, - -0.037571, - -0.11309, - -0.066198, - -0.041259, - -0.040407, - 0.015924, - -0.013593, - 0.041337, - 0.083854, - 0.0023732, - 0.049172, - 0.024575, - 0.043715, - 0.090001, - -0.046979, - 0.093256, - 0.10034, - 0.030984, - -0.079537, - -0.060379, - -0.031182, - 0.075868, - -0.036787, - -0.046813, - -0.01917, - -0.064161, - -0.031449, - -0.04014, - 0.0025989, - 0.0065543, - 0.0031509, - -0.092268, - -0.012125, - 0.0032444, - -0.074018, - 0.0050988, - 0.061483, - 0.08679, - 0.03324, - 0.093102, - 0.034317, - -0.017342, - -0.022713, - -0.1127, - -0.045386, - -0.022359, - -0.028511, - 0.096788, - 0.055171, - 0.033272, - 0.13707, - 0.079307, - 0.042036, - 0.02222, - -0.047228, - -0.048543, - -0.041525, - -0.03894, - 0.01893, - 0.025168, - -0.032253, - -0.1072, - 0.019754, - 0.038546, - 0.00093936, - 0.0086082, - -0.009687, - -0.011217, - 0.026715, - 0.10509, - -0.007885, - 0.037057, - 0.041664, - -0.008177, - -0.037235, - -0.01295, - 0.03537, - -0.053968, - -0.0094138, - 0.050998, - 0.0028064, - -0.021924, - -0.07065, - 0.14341, - 0.056952, - -0.012705, - 0.047677, - 0.079694, - -0.033852, - -0.01816, - 0.01419, - -0.060993, - -0.036878, - -0.012115, - -0.021717, - -0.015287, - -0.087093, - 0.074395, - -0.077756, - 0.033788, - 0.0059783, - -0.085167, - 0.030661, - -0.047441, - 0.039814, - -0.020948, - 0.17807, - -0.043047, - -0.020244, - -0.0060915, - 0.017117, - 0.080373, - -0.042883, - -0.013596, - 0.019411, - -0.02042, - 0.12069, - 0.075356, - 0.076869, - 0.1229, - 0.030044, - -0.078451, - 0.052444, - 0.031006, - 0.037811, - -0.026354, - -0.06856, - -0.031543, - -0.036176, - -0.018231, - -0.010224, - -0.16332, - -0.037014, - -0.0025339, - 0.13169, - -0.032197, - 0.12489, - -0.088888, - 0.11106, - -0.025634, - -0.1585, - 0.070662, - 0.0032525, - -0.0085431, - 0.017553, - -0.03502, - 0.02517, - -0.0013192, - -0.016724, - -0.013764, - 0.10587, - 0.02905, - -0.019269, - -0.01655, - 0.044254, - 0.019278, - 0.0019885, - 0.0063446, - 0.0056492, - -0.081175, - 0.0055551, - 0.00014345, - 0.10177, - -0.022937, - 0.080678, - 0.021242, - 0.00045521, - 0.13322, - -0.029614, - -0.024535, - -0.045223, - -0.11493, - 0.079378, - 0.0138, - 0.1007, - 0.0077808, - 0.10617, - 0.021909, - -0.024352, - 0.021021, - -0.02948, - -0.027315, - -0.022461, - 0.047788, - 0.0099392, - -0.09397, - -0.19214, - 0.0078656, - -0.0035123, - -0.057868, - 0.089602, - 0.017908, - 0.068188, - -0.073948, - -0.064325, - -0.0093873 - ], - "kitchen": [ - -0.027854, - -0.061574, - -0.023693, - -0.0098398, - 0.033218, - -0.0099843, - 0.012641, - -0.080457, - -0.0037233, - 0.054497, - -0.032013, - -0.04673, - -0.056519, - -0.044048, - -0.018254, - -0.015167, - 0.1214, - 0.034834, - 0.021635, - -0.014305, - 0.037861, - 0.049229, - -0.0052521, - 0.045393, - -0.021078, - -0.060629, - 0.010114, - 0.00050382, - -0.054275, - -0.024234, - 0.036639, - -0.06481, - 0.060482, - -0.036501, - 0.0083373, - 0.016823, - 0.037162, - 0.088195, - 0.038499, - -0.030291, - -0.032613, - -0.13575, - -0.024225, - 0.017176, - 0.010672, - -0.0078403, - 0.011042, - -0.026704, - -0.025749, - -0.00077942, - 0.034187, - 0.062385, - 0.031375, - 0.042262, - -0.087624, - -0.010173, - -0.015644, - -0.056386, - -0.040139, - -0.069605, - -0.031587, - -0.041382, - 0.10366, - -0.0043048, - 0.048827, - 0.059435, - 0.0059464, - -0.035721, - -0.088562, - -0.01517, - 0.080453, - -0.095192, - -0.0068186, - -0.095158, - -0.013318, - -0.018988, - -0.030817, - -0.044729, - -0.007183, - 0.074542, - -0.036842, - -0.025941, - -0.024021, - 0.066621, - -0.038597, - 0.045533, - -0.012307, - -0.066489, - 0.011229, - 0.056836, - -0.015396, - 0.0034925, - -0.097693, - 0.033723, - 0.032082, - 0.10484, - -0.029503, - 0.11205, - 0.021946, - -0.03674, - 0.033232, - 0.047514, - 0.020148, - 0.042653, - 0.043751, - -0.10315, - -0.010658, - 0.061649, - -0.070115, - -0.032427, - -0.022871, - 0.082189, - 0.066613, - 0.063846, - 0.034351, - -0.12508, - -0.016837, - -0.023544, - -0.043899, - -0.07089, - -0.1012, - 0.0078533, - 0.043565, - -0.0076547, - 0.009605, - -0.060436, - 0.004447, - -0.095482, - 0.051791, - 0.063785, - -0.0069497, - -0.007777, - -0.0037077, - -0.10654, - -0.013214, - -0.11522, - -0.0045404, - -0.020804, - 0.040636, - -0.06108, - 0.00048859, - 0.030123, - 0.0054036, - -0.013834, - -0.02593, - -0.071332, - 0.022762, - 0.081946, - -0.0065903, - -0.0058051, - 0.0069195, - 0.061488, - 0.014357, - -0.038605, - 0.0489, - 0.003277, - -0.021768, - -0.0050331, - -0.0040979, - -0.002253, - 0.026836, - 0.052654, - -0.03031, - 0.010432, - 0.0073473, - -0.015124, - -0.072631, - -0.058003, - 0.019716, - 0.020668, - -0.016764, - 0.032767, - -0.06592, - 0.016193, - 0.011087, - 0.04681, - 0.0098784, - 0.057896, - -0.023247, - 0.0082076, - 0.010188, - 0.0021962, - 0.030651, - -0.11359, - -0.031507, - 0.010565, - 0.0020066, - 0.11086, - 0.023326, - -0.037071, - 0.036996, - 0.03558, - -0.015598, - -0.082316, - 0.013351, - 0.037516, - -0.021751, - 0.020177, - 0.0136, - 0.00912, - -0.14692, - 0.084714, - -0.078135, - 0.0095038, - -0.028795, - -0.034669, - 0.019534, - -0.014319, - -0.040221, - -0.029878, - 0.1089, - -0.013203, - 0.031243, - -0.022713, - -0.013555, - -0.018034, - -0.031455, - 0.066286, - 0.011282, - -0.023764, - 0.067273, - -0.033489, - -0.0073694, - 0.074164, - -0.047204, - -0.016504, - 0.022309, - 0.038258, - 0.021907, - -0.0086223, - -0.0067188, - -0.06506, - -0.0086857, - -0.033842, - -0.020259, - 0.021131, - -0.00082846, - 0.0051407, - -0.029662, - -0.014177, - 0.076247, - -0.044405, - 0.015039, - 0.010441, - 0.005395, - 0.066429, - 0.0042058, - 0.035334, - 0.0084603, - 0.065636, - -0.0039543, - 0.019987, - -0.13138, - 0.049194, - -0.019476, - -0.043069, - -0.034414, - 0.045782, - -0.032763, - 0.065195, - 0.046627, - 0.0031903, - 0.043963, - 0.000059155, - -0.0010235, - -0.025991, - 0.03083, - -0.010612, - -0.041702, - -0.0093302, - -0.10007, - 0.065405, - -0.11215, - -0.01726, - 0.020065, - -0.045803, - 0.0075809, - 0.01984, - 0.015308, - 0.045591, - 0.064655, - 0.027967, - 0.019336, - 0.01965, - -0.029475, - 0.082965, - -0.036228, - -0.055622, - 0.01085, - 0.049378, - -0.0066318, - 0.059682, - -0.032408, - 0.031792, - -0.038407, - 0.042564, - 0.024163, - 0.12038, - 0.035983, - 0.0382 - ], - "motivations": [ - 0.031132, - -0.025025, - 0.012452, - 0.0097401, - -0.049512, - -0.017822, - -0.029263, - -0.071407, - -0.01419, - 0.047362, - 0.014621, - -0.011813, - 0.0018494, - -0.014395, - -0.013642, - 0.0079094, - 0.0080542, - 0.011946, - 0.026491, - 0.037534, - -0.042619, - 0.052503, - 0.047133, - 0.044868, - -0.039801, - 0.032959, - 0.0039202, - -0.0013641, - 0.057687, - 0.0027107, - -0.0070169, - -0.062375, - -0.038448, - -0.036585, - -0.0081585, - 0.042361, - -0.035767, - 0.0042758, - -0.00030195, - 0.0010241, - -0.020743, - -0.088266, - 0.010798, - -0.0064226, - 0.0072246, - -0.02647, - -0.0092802, - -0.0488, - -0.00062242, - -0.078553, - -0.0016332, - 0.00018607, - 0.005295, - 0.01727, - -0.026536, - 0.015208, - 0.015994, - 0.0098337, - -0.039388, - 0.022337, - 0.010958, - -0.011124, - 0.09895, - -0.046006, - 0.054838, - -0.041533, - 0.059521, - 0.0018975, - -0.024308, - 0.050825, - 0.020462, - -0.0019745, - 0.011248, - -0.0073025, - 0.042444, - -0.0029631, - -0.032774, - -0.073016, - -0.05839, - -0.0078691, - -0.035638, - 0.026609, - -0.030317, - 0.05183, - 0.028673, - -0.054436, - -0.0050077, - 0.025197, - -0.026549, - -0.00681, - 0.05173, - -0.0037483, - -0.053297, - 0.0080926, - -0.032467, - 0.024692, - -0.000066487, - -0.045148, - -0.026944, - -0.0062529, - -0.040842, - -0.020545, - 0.035803, - 0.047319, - 0.022777, - -0.0064288, - -0.019662, - -0.010608, - -0.020199, - 0.013726, - -0.029379, - 0.035186, - 0.058086, - -0.029454, - -0.009832, - 0.0010973, - -0.051382, - -0.024656, - -0.032019, - -0.01646, - -0.0022554, - -0.036829, - 0.039145, - -0.045703, - 0.12718, - 0.011837, - 0.015564, - -0.086166, - 0.013195, - 0.10831, - 0.014496, - 0.030601, - 0.057099, - 0.03852, - 0.018373, - -0.024503, - 0.024802, - 0.05986, - -0.043235, - 0.004638, - -0.013502, - -0.022291, - -0.016372, - 0.043508, - 0.033224, - -0.025503, - -0.0042726, - -0.03917, - 0.024083, - 0.040439, - -0.0011361, - 0.083615, - -0.035404, - -0.041351, - 0.020687, - 0.026665, - 0.022847, - 0.01312, - 0.020834, - 0.03597, - 0.037631, - 0.0096897, - 0.000048893, - -0.033047, - -0.028326, - -0.0038296, - 0.033003, - 0.016268, - -0.001643, - -0.034402, - 0.0077279, - -0.021835, - -0.030704, - 0.020661, - 0.0080494, - 0.041035, - -0.037387, - 0.027673, - 0.0071424, - -0.0023604, - 0.044933, - 0.0010138, - -0.018877, - -0.030023, - 0.0084702, - -0.098298, - 0.088376, - 0.084654, - 0.042354, - 0.033513, - 0.06578, - 0.07461, - -0.077503, - 0.0092206, - 0.040791, - 0.051495, - -0.011888, - -0.019084, - 0.0079404, - -0.0027453, - -0.097153, - 0.0099903, - 0.003391, - -0.061842, - 0.01751, - 0.026211, - 0.01899, - -0.0018904, - 0.04454, - -0.012514, - 0.050163, - 0.043332, - 0.057682, - -0.042636, - 0.0062339, - 0.037774, - -0.018972, - -0.027699, - -0.097407, - -0.0052393, - -0.056423, - -0.014952, - -0.068749, - 0.085363, - 0.079967, - -0.035364, - 0.017079, - 0.075256, - 0.016118, - -0.011839, - -0.0010415, - -0.026138, - -0.11927, - -0.050497, - 0.046424, - 0.026679, - 0.04209, - -0.014013, - 0.0045135, - 0.061671, - -0.030586, - 0.0048994, - -0.0048712, - 0.026736, - -0.015151, - -0.0082138, - -0.049899, - -0.062719, - -0.0093489, - -0.0039969, - 0.0172, - 0.0048885, - -0.044646, - -0.072885, - 0.018333, - -0.0098105, - -0.046751, - 0.074337, - -0.033116, - 0.018494, - 0.003198, - 0.013601, - -0.025773, - -0.027393, - 0.019472, - -0.0013265, - -0.071128, - 0.053469, - -0.0090787, - -0.036601, - 0.033802, - 0.066132, - -0.065374, - -0.036178, - 0.069518, - -0.014934, - 0.012999, - 0.011744, - 0.00050578, - 0.020101, - 0.0332, - 0.012881, - -0.016674, - 0.015605, - 0.058305, - -0.012163, - -0.031996, - 0.0033807, - -0.031907, - -0.028208, - -0.0065712, - 0.045298, - -0.049239, - 0.059417, - -0.0061598, - 0.029945, - 0.038372, - 0.013448, - -0.059271, - 0.031612 - ], - "water": [ - 0.036197, - -0.042067, - 0.0071288, - 0.045039, - 0.061143, - 0.01857, - -0.053758, - -0.09727, - 0.090975, - 0.012296, - 0.027561, - -0.019006, - -0.01494, - 0.03377, - 0.05713, - -0.062768, - 0.10841, - 0.013193, - 0.039436, - -0.017865, - 0.0059962, - -0.0083671, - 0.045865, - 0.045747, - 0.025911, - -0.15016, - -0.014506, - -0.011994, - 0.031846, - 0.024998, - -0.021186, - 0.068168, - 0.065213, - -0.0062604, - 0.028474, - -0.016199, - 0.054205, - -0.041753, - 0.017489, - -0.0021742, - 0.074298, - -0.16897, - 0.045843, - -0.0026847, - 0.02219, - -0.08125, - -0.020333, - -0.002783, - -0.061725, - 0.031226, - 0.02843, - 0.046564, - 0.10847, - -0.051937, - -0.093976, - 0.049833, - 0.037921, - -0.052386, - -0.02054, - 0.0070826, - 0.030606, - 0.034084, - 0.11704, - -0.072601, - 0.02088, - 0.044667, - -0.0096774, - -0.093949, - -0.029398, - -0.041435, - 0.13058, - 0.0036343, - 0.045076, - 0.0057586, - -0.0015181, - -0.038896, - -0.0017466, - -0.026729, - -0.068264, - 0.036426, - -0.07097, - -0.10657, - -0.0076405, - 0.05691, - 0.015778, - 0.10701, - 0.077813, - -0.080952, - 0.0038281, - -0.047308, - 0.033479, - 0.025209, - -0.10914, - -0.00093943, - -0.047698, - 0.069107, - 0.046932, - 0.021312, - 0.025429, - -0.073526, - -0.0068678, - -0.094962, - 0.066411, - -0.0042115, - 0.046537, - -0.13628, - -0.021894, - 0.051632, - 0.020251, - 0.036654, - 0.045325, - 0.10425, - 0.080451, - -0.035371, - 0.079788, - -0.040056, - -0.0047419, - -0.017984, - -0.093423, - -0.020839, - -0.033, - 0.03803, - 0.046848, - -0.10599, - 0.06688, - -0.043058, - -0.016545, - -0.11362, - -0.07803, - 0.090439, - -0.013254, - -0.041065, - -0.013435, - -0.035902, - 0.047323, - 0.018423, - 0.042719, - 0.035777, - 0.022421, - 0.071667, - -0.0026083, - -0.092797, - 0.039112, - -0.012534, - 0.062225, - -0.048029, - 0.036616, - 0.044517, - -0.017105, - -0.084507, - -0.010025, - 0.056444, - 0.041596, - -0.071364, - -0.019535, - -0.028223, - -0.078477, - -0.075953, - -0.065419, - 0.0087012, - 0.045656, - -0.036992, - -0.084039, - 0.096751, - 0.0467, - 0.036687, - 0.016077, - 0.0028094, - 0.064999, - 0.053611, - 0.0021952, - 0.056137, - -0.033273, - 0.031926, - 0.067862, - 0.075533, - -0.04394, - 0.03335, - -0.068416, - -0.04904, - -0.057662, - 0.04654, - 0.077222, - -0.13536, - -0.043174, - -0.076467, - -0.034492, - 0.1398, - 0.050771, - -0.039277, - 0.01336, - -0.0014983, - -0.0026418, - 0.0066107, - 0.010735, - -0.076097, - 0.055622, - 0.020423, - -0.02153, - -0.020235, - -0.18463, - 0.02957, - 0.018764, - -0.041403, - 0.063964, - -0.025789, - -0.036033, - 0.0098603, - -0.032702, - -0.020287, - 0.1226, - -0.032916, - 0.0070505, - 0.035352, - 0.036944, - 0.028928, - 0.050781, - -0.038902, - 0.023223, - -0.079504, - 0.013655, - -0.040123, - -0.062695, - 0.097798, - 0.032549, - 0.067589, - 0.02358, - 0.040359, - 0.0018339, - -0.031228, - 0.0045861, - -0.026523, - -0.087495, - -0.023343, - -0.016643, - 0.097007, - -0.083071, - 0.023188, - 0.0040547, - -0.13818, - 0.051469, - 0.034901, - 0.045836, - -0.036439, - -0.055281, - 0.09067, - -0.02185, - -0.018076, - -0.062612, - 0.013942, - 0.0078284, - -0.065813, - -0.015013, - 0.018912, - -0.0071197, - 0.021118, - -0.0022921, - 0.0073446, - 0.012266, - 0.052938, - -0.037583, - 0.058361, - -0.039763, - -0.015207, - -0.046015, - -0.076813, - 0.028769, - -0.012946, - 0.012428, - 0.042021, - 0.0070371, - 0.072947, - -0.13419, - -0.038103, - -0.019353, - -0.037807, - -0.053011, - 0.010331, - 0.083067, - -0.038881, - 0.13034, - -0.049477, - 0.0089958, - 0.049151, - -0.0055369, - 0.071103, - -0.0077464, - 0.062114, - 0.040893, - 0.041725, - -0.019174, - 0.062422, - -0.083829, - -0.033811, - -0.025507, - 0.041463, - 0.016056, - 0.0010298, - -0.006675, - 0.0073188 - ], - "prospects": [ - 0.0023329, - -0.017184, - -0.01021, - -0.054861, - -0.046572, - -0.013842, - -0.027099, - -0.080939, - 0.031594, - 0.049373, - -0.024105, - -0.0057763, - 0.0033221, - 0.0089686, - -0.039671, - -0.013976, - 0.032034, - 0.016601, - 0.079306, - -0.008954, - 0.046592, - -0.033461, - -0.015831, - 0.05535, - 0.0049039, - -0.043008, - -0.0034362, - -0.035973, - 0.087927, - -0.021394, - -0.048923, - 0.048747, - -0.041159, - -0.058578, - -0.01803, - 0.037361, - 0.0079141, - 0.02122, - -0.0057275, - -0.0011673, - -0.0047071, - -0.058849, - -0.016915, - -0.015499, - 0.0086105, - -0.045182, - -0.059914, - 0.038815, - 0.0068673, - -0.024686, - -0.042681, - -0.023094, - -0.055743, - -0.01793, - -0.045196, - -0.044215, - -0.12875, - 0.017143, - 0.00050715, - 0.034268, - -0.00018489, - 0.066822, - 0.076861, - -0.0086564, - 0.065206, - -0.016233, - 0.024262, - -0.043001, - 0.023595, - 0.019091, - -0.0034436, - 0.025723, - 0.038729, - -0.012599, - -0.010468, - 0.026531, - 0.037141, - -0.07506, - 0.011305, - -0.036514, - 0.088766, - 0.028982, - -0.014496, - 0.068085, - -0.060764, - -0.055303, - 0.036664, - -0.037522, - -0.056739, - -0.021612, - 0.017984, - -0.06101, - -0.087106, - 0.018444, - -0.053046, - 0.014213, - -0.003548, - -0.02041, - 0.0025596, - -0.0089405, - -0.025832, - 0.0031308, - -0.022759, - 0.0013971, - 0.041911, - -0.0046497, - 0.0042771, - -0.018844, - 0.048007, - 0.033585, - -0.043404, - 0.062081, - 0.055915, - 0.08101, - 0.0086562, - -0.02755, - -0.0044098, - -0.015636, - -0.042242, - 0.011082, - -0.00018625, - -0.065964, - 0.011141, - 0.029642, - 0.099293, - -0.0049687, - -0.044161, - -0.090977, - 0.021419, - 0.095733, - 0.071514, - 0.033813, - -0.042094, - 0.043875, - -0.077762, - -0.011519, - 0.047924, - 0.044598, - -0.05504, - 0.10144, - -0.016498, - -0.0099967, - -0.021478, - -0.029879, - 0.034817, - 0.022013, - -0.0049857, - 0.020309, - -0.0057968, - 0.055214, - 0.046041, - 0.050249, - 0.044748, - -0.063205, - -0.013389, - -0.019934, - 0.0076536, - 0.014738, - 0.019309, - -0.028782, - 0.047733, - 0.029091, - -0.0084479, - 0.057853, - -0.018193, - -0.039647, - -0.011054, - -0.051944, - -0.0047598, - 0.052611, - -0.024165, - -0.041314, - -0.048976, - 0.011295, - 0.0061424, - 0.021404, - -0.0066926, - 0.01749, - -0.034302, - -0.0040364, - 0.024102, - -0.0064541, - 0.037939, - -0.064296, - 0.021241, - -0.079204, - -0.042464, - 0.066487, - 0.028469, - 0.061109, - 0.0098344, - 0.082196, - -0.079723, - -0.035664, - 0.026509, - -0.023924, - 0.029545, - 0.0032403, - -0.0080152, - 0.038075, - -0.13341, - 0.076791, - 0.039662, - -0.023716, - -0.05006, - 0.028085, - 0.031769, - 0.021845, - 0.015977, - -0.013881, - 0.042134, - -0.000090132, - 0.064694, - -0.02425, - -0.002694, - -0.0089186, - 0.020922, - -0.020117, - -0.043788, - -0.073538, - -0.025537, - -0.0087947, - -0.058347, - 0.087698, - 0.071551, - -0.054036, - 0.012209, - 0.065056, - 0.0097877, - -0.011031, - 0.038775, - -0.011612, - -0.11542, - -0.0063899, - 0.093138, - -0.00026922, - 0.037128, - -0.021486, - 0.0069711, - 0.010725, - -0.041865, - 0.058574, - 0.025884, - -0.028371, - -0.062036, - -0.033079, - -0.07857, - -0.03437, - -0.014192, - -0.047664, - 0.076525, - -0.017214, - 0.014788, - -0.000080794, - 0.0051305, - 0.019129, - -0.047853, - 0.032502, - 0.042751, - 0.031528, - -0.0033503, - 0.022265, - 0.050246, - -0.03534, - 0.041088, - 0.018681, - -0.0068543, - 0.027738, - 0.0094708, - 0.029586, - -0.0092592, - 0.090181, - -0.11133, - -0.058017, - 0.030441, - -0.025993, - 0.017896, - 0.029634, - -0.03587, - -0.00057523, - 0.027954, - 0.020179, - -0.0084232, - -0.0085351, - 0.054, - -0.0028058, - -0.020225, - 0.0044327, - -0.073819, - 0.0083389, - 0.0070665, - 0.00083398, - -0.063637, - 0.04049, - -0.00058171, - -0.048078, - -0.047988, - -0.0025744, - -0.024405, - 0.0059484 - ], - "prescription": [ - -0.0092897, - 0.017728, - -0.016799, - -0.0037244, - 0.0065796, - -0.036638, - -0.0065369, - -0.078346, - -0.023355, - 0.0067673, - -0.02689, - -0.009328, - 0.042809, - 0.0087189, - 0.032458, - -0.030241, - 0.021434, - -0.025945, - 0.025459, - -0.0034501, - -0.037241, - 0.023429, - 0.029895, - 0.0096485, - -0.0014146, - -0.04148, - 0.0011596, - 0.037798, - 0.011311, - -0.0093148, - 0.032708, - -0.007804, - -0.0038536, - -0.081761, - 0.0051654, - 0.019333, - -0.027767, - 0.020151, - 0.017168, - -0.021835, - 0.0036738, - -0.084513, - -0.028619, - 0.0039784, - 0.021347, - -0.0029268, - -0.040775, - 0.004917, - 0.001612, - 0.048825, - -0.043607, - -0.040339, - -0.00069689, - -0.014529, - -0.023853, - 0.022184, - -0.021968, - 0.030237, - -0.0175, - -0.014234, - 0.020914, - 0.036453, - 0.088705, - 0.028307, - -0.045565, - -0.0054964, - 0.016362, - 0.010496, - 0.00076515, - -0.010815, - -0.0031953, - 0.011262, - -0.017842, - -0.025957, - -0.009109, - -0.021823, - 0.0063222, - -0.039428, - -0.064744, - -0.026186, - -0.0054747, - -0.031205, - 0.010861, - 0.03184, - -0.058934, - -0.0082193, - 0.066994, - 0.0040687, - -0.019802, - -0.028065, - 0.053165, - -0.031437, - -0.05469, - -0.015302, - -0.012356, - 0.026815, - 0.039874, - -0.023122, - 0.025773, - 0.015295, - 0.0082634, - 0.012655, - -0.0025932, - -0.034915, - 0.0017998, - -0.051638, - 0.033513, - -0.0051057, - -0.011633, - -0.0039599, - 0.021417, - 0.033965, - 0.034475, - -0.036874, - -0.0062777, - 0.019498, - -0.017265, - -0.0023092, - -0.033642, - 0.039798, - 0.011368, - 0.055052, - -0.025308, - -0.037626, - 0.02314, - -0.040256, - -0.0083172, - -0.042478, - 0.05282, - 0.06682, - -0.017261, - -0.016175, - 0.010943, - 0.03534, - 0.01106, - -0.0068358, - -0.01749, - 0.037659, - 0.042049, - -0.067929, - 0.10262, - 0.001799, - -0.037062, - 0.023032, - -0.043812, - -0.031025, - 0.035645, - 0.037568, - 0.070979, - -0.00049873, - 0.0057271, - 0.04056, - 0.032435, - -0.031547, - 0.027503, - 0.030603, - -0.031557, - -0.016784, - 0.028004, - -0.03449, - 0.038663, - 0.044705, - -0.038675, - 0.04655, - -0.0012814, - -0.015554, - 0.003816, - -0.070696, - 0.0079662, - -0.041808, - -0.038463, - -0.0181, - 0.0021215, - -0.011358, - -0.050551, - 0.030951, - -0.060711, - -0.0048034, - -0.010358, - -0.0044059, - 0.0047061, - -0.044533, - -0.035113, - -0.017602, - 0.0099485, - -0.012849, - 0.036649, - 0.073843, - -0.038407, - -0.043091, - 0.015185, - 0.047539, - -0.0073771, - -0.010977, - -0.04967, - -0.046242, - -0.0054544, - 0.0085115, - 0.000042322, - 0.015977, - -0.10629, - 0.057439, - -0.0016221, - 0.02134, - 0.032904, - -0.024655, - 0.073457, - 0.0063135, - -0.0074606, - -0.001788, - 0.099355, - 0.010766, - 0.022313, - 0.070253, - 0.00023394, - -0.032108, - -0.0045269, - -0.01013, - -0.015241, - -0.042038, - -0.0037057, - 0.025555, - -0.016333, - 0.084804, - 0.050121, - -0.023613, - -0.0011777, - 0.014749, - 0.0038382, - -0.010023, - 0.0075344, - -0.038446, - -0.028071, - -0.044362, - 0.023859, - 0.018377, - -0.0043492, - -0.07572, - 0.024344, - -0.00060387, - 0.066139, - 0.039421, - -0.0016867, - 0.0010804, - -0.06035, - -0.030923, - -0.012245, - 0.001946, - -0.018254, - 0.029923, - 0.030458, - 0.012023, - 0.023443, - 0.033334, - 0.022906, - -0.020268, - 0.0203, - 0.01117, - 0.034562, - 0.014359, - -0.0027997, - 0.00078452, - -0.026537, - -0.009894, - 0.0015601, - -0.026727, - -0.0012313, - 0.0017259, - 0.018759, - 0.02103, - -0.050087, - 0.040471, - -0.076204, - -0.033377, - -0.019531, - -0.0064681, - -0.056466, - 0.0013674, - -0.019897, - 0.0037898, - 0.077306, - -0.01257, - -0.073094, - 0.026579, - -0.0032887, - 0.029879, - -0.040205, - 0.040753, - 0.018272, - -0.05116, - -0.00046708, - -0.019039, - 0.028676, - 0.00042183, - -0.044637, - -0.012103, - -0.013049, - -0.048408, - 0.0089025, - -0.033426 - ], - "career": [ - -0.034605, - -0.13699, - 0.027591, - -0.013138, - -0.0024903, - 0.0026545, - -0.041676, - -0.11162, - 0.10137, - 0.0067247, - 0.037299, - -0.030189, - -0.074251, - 0.067188, - -0.038706, - 0.091486, - 0.13405, - 0.026052, - 0.023334, - 0.0078404, - 0.024317, - 0.023831, - -0.042139, - 0.096445, - -0.017714, - -0.0036069, - -0.016592, - -0.013471, - -0.069178, - 0.018635, - -0.053143, - -0.059989, - -0.054885, - -0.12369, - 0.018737, - 0.080625, - -0.0099599, - 0.030976, - 0.087156, - 0.01726, - 0.005524, - -0.12713, - 0.051443, - -0.035413, - 0.0347, - 0.0048034, - 0.031237, - -0.077348, - -0.012063, - -0.016104, - -0.016278, - -0.020577, - -0.020781, - 0.019606, - -0.070025, - -0.037382, - -0.12451, - 0.065231, - -0.11884, - -0.043509, - 0.0015788, - 0.039647, - 0.21244, - 0.0047886, - 0.14667, - -0.05677, - -0.074854, - -0.036413, - 0.021233, - -0.0047587, - -0.022484, - 0.011631, - 0.0066307, - 0.014985, - 0.045648, - 0.038388, - -0.027366, - -0.0081223, - 0.088357, - 0.026728, - 0.072545, - -0.02069, - -0.083417, - 0.055889, - -0.082466, - -0.028679, - 0.018443, - 0.017707, - -0.076956, - 0.031601, - 0.077847, - 0.053991, - -0.14839, - 0.076283, - 0.037914, - 0.074482, - -0.0016728, - 0.03504, - 0.068079, - 0.038399, - -0.04653, - 0.017765, - 0.044052, - 0.0056826, - -0.029912, - -0.088164, - 0.053952, - -0.01138, - 0.034032, - 0.057045, - -0.044537, - -0.045147, - 0.046269, - 0.036452, - 0.040896, - 0.043521, - -0.0014865, - -0.01705, - -0.045977, - 0.0048843, - 0.020066, - -0.094521, - -0.01389, - 0.045142, - 0.10626, - 0.014454, - -0.021798, - -0.11309, - 0.02016, - 0.09157, - 0.0095166, - -0.012602, - 0.0049701, - -0.032048, - -0.15724, - -0.039347, - 0.0067459, - 0.042246, - -0.04713, - -0.0015441, - -0.016902, - -0.033437, - -0.0065866, - 0.095786, - -0.035257, - 0.031418, - -0.012555, - -0.075157, - 0.057452, - -0.017744, - 0.070423, - 0.0464, - -0.036179, - -0.11306, - -0.005619, - 0.013076, - 0.014922, - 0.068564, - 0.066167, - -0.072632, - 0.01547, - 0.090217, - -0.053566, - 0.035527, - -0.01768, - 0.010299, - -0.074052, - -0.03886, - -0.056151, - 0.013236, - 0.091188, - 0.026786, - 0.041427, - 0.03774, - 0.060935, - 0.035338, - -0.0009664, - 0.08441, - -0.010916, - 0.015235, - -0.054999, - -0.021804, - -0.0047686, - -0.048914, - 0.059612, - -0.13616, - 0.023371, - 0.090397, - -0.0063491, - 0.097147, - -0.032518, - 0.045142, - 0.044782, - 0.057507, - -0.02413, - 0.020268, - 0.033728, - -0.024617, - 0.021596, - 0.010462, - -0.16379, - 0.13446, - 0.019713, - -0.026448, - -0.11334, - 0.058552, - 0.037983, - -0.046828, - 0.047751, - -0.033704, - 0.12987, - -0.0061669, - 0.0049187, - -0.020645, - 0.02869, - 0.031887, - 0.0077238, - -0.032251, - -0.035125, - -0.050944, - -0.0633, - 0.0034141, - -0.021107, - 0.099428, - -0.0088676, - -0.037361, - 0.026245, - 0.11872, - -0.013082, - -0.024213, - 0.049598, - -0.11749, - -0.048063, - 0.0021941, - 0.023967, - 0.028934, - 0.016058, - -0.058727, - -0.063991, - 0.013816, - 0.054005, - 0.039635, - 0.075054, - -0.034317, - -0.033875, - -0.055106, - -0.037533, - -0.14875, - 0.049502, - 0.0027544, - 0.078044, - 0.029031, - 0.096256, - -0.036674, - 0.027606, - -0.0076642, - 0.0085504, - 0.049175, - 0.068362, - 0.057918, - 0.049016, - 0.037484, - 0.034708, - -0.04085, - -0.00048373, - 0.0064221, - -0.056708, - 0.002319, - 0.060571, - -0.099524, - -0.0026577, - 0.11102, - -0.12006, - -0.034135, - 0.035802, - -0.064104, - -0.0056216, - 0.015958, - 0.072581, - 0.055085, - 0.094219, - 0.03732, - 0.036425, - -0.10249, - 0.03192, - 0.0088508, - -0.052493, - -0.019248, - -0.036782, - -0.050933, - 0.073001, - 0.0019487, - -0.044426, - 0.021876, - -0.031658, - 0.051168, - -0.064078, - 0.027915, - 0.090901, - -0.014142 - ], - "credit-card": [ - -0.098847, - 0.024176, - -0.075798, - -0.03755, - -0.04181, - -0.034332, - -0.0562, - -0.062727, - 0.035105, - 0.020499, - 0.023167, - -0.018436, - -0.067861, - -0.047139, - -0.1197, - 0.018996, - 0.03773, - 0.032154, - 0.041533, - 0.011623, - 0.060956, - 0.031651, - -0.030135, - 0.054492, - 0.025825, - 0.016156, - 0.061166, - 0.050327, - 0.013217, - -0.052139, - 0.0067301, - -0.018312, - -0.08537, - -0.047778, - 0.044317, - 0.033283, - -0.010719, - 0.10604, - -0.023254, - -0.034061, - -0.044636, - -0.12439, - 0.009936, - -0.026372, - 0.0068494, - 0.0075972, - 0.0029783, - 0.0064622, - -0.0099321, - -0.011629, - -0.014658, - -0.0016351, - 0.025745, - -0.029696, - -0.01683, - 0.013505, - -0.030157, - 0.0053729, - -0.015422, - -0.068534, - 0.00024254, - 0.0178, - 0.085188, - 0.0070411, - -0.0025495, - -0.015823, - -0.018393, - 0.0083718, - -0.021543, - 0.030162, - -0.041465, - 0.0055374, - 0.026674, - 0.0076657, - 0.017541, - 0.022082, - -0.010989, - -0.02488, - 0.024531, - 0.0021992, - -0.043641, - -0.037836, - -0.054626, - 0.019715, - -0.026896, - -0.022238, - -0.013759, - -0.021949, - 0.051691, - -0.019286, - 0.038673, - 0.012732, - -0.082189, - -0.028098, - -0.03533, - 0.040474, - -0.062617, - -0.07877, - 0.0065204, - 0.020167, - -0.012273, - 0.012332, - -0.0064976, - -0.051664, - 0.012487, - -0.062497, - -0.040302, - -0.042757, - 0.04237, - -0.054238, - 0.027833, - 0.069371, - 0.018787, - -0.018121, - 0.011977, - 0.018053, - -0.0051376, - 0.063982, - -0.046823, - 0.011443, - -0.0064288, - 0.028038, - 0.018764, - -0.030246, - 0.12061, - -0.0024278, - -0.0072789, - -0.046896, - 0.0044424, - 0.08916, - -0.036372, - -0.035028, - -0.029111, - 0.020142, - 0.073432, - 0.011884, - -0.020063, - 0.025223, - -0.05573, - -0.031305, - 0.063018, - 0.027437, - -0.017207, - 0.045479, - -0.0091401, - 0.012783, - 0.013731, - 0.017201, - 0.018897, - -0.056035, - -0.016651, - 0.0799, - 0.0037381, - -0.022351, - -0.0041211, - 0.023338, - 0.002982, - 0.0040714, - 0.082492, - -0.0044655, - 0.047724, - 0.0050705, - -0.073826, - 0.0061056, - 0.015218, - -0.059742, - 0.029254, - -0.019816, - 0.037269, - 0.093859, - -0.019319, - -0.0012654, - -0.034297, - 0.00011338, - -0.022184, - 0.041511, - -0.076445, - -0.048346, - -0.038737, - 0.024659, - 0.0080279, - -0.037018, - -0.024147, - 0.039387, - -0.0052072, - -0.030296, - -0.063453, - 0.1201, - 0.044253, - -0.0024282, - -0.022084, - 0.034102, - 0.048158, - -0.015578, - 0.069718, - -0.017592, - -0.056387, - -0.083487, - -0.033642, - -0.010329, - -0.11319, - -0.0027949, - 0.017153, - 0.015164, - 0.066022, - 0.041054, - -0.0010402, - -0.062707, - -0.064017, - -0.0026106, - 0.11862, - 0.021249, - -0.0010035, - -0.0068257, - -0.027161, - 0.011661, - -0.017165, - -0.02552, - 0.016847, - 0.0018635, - 0.056704, - 0.033293, - -0.026836, - 0.060636, - 0.0094384, - -0.018755, - -0.01395, - 0.015959, - -0.00031105, - -0.005236, - 0.022022, - -0.051212, - -0.011238, - -0.030708, - 0.085449, - -0.019753, - 0.028673, - -0.0081926, - 0.063119, - 0.019294, - 0.039301, - -0.089766, - 0.0069677, - -0.046941, - -0.052954, - -0.040346, - 0.0084954, - 0.007413, - -0.034407, - -0.012747, - 0.0068556, - 0.0049119, - -0.092802, - 0.027687, - 0.021263, - 0.034214, - -0.024548, - 0.013598, - 0.0070438, - -0.013949, - 0.012708, - 0.027495, - 0.0054145, - -0.0014192, - -0.027659, - -0.013953, - 0.04117, - 0.038466, - 0.042817, - 0.010024, - -0.045272, - 0.064833, - -0.079392, - -0.020537, - -0.01864, - -0.045169, - -0.038023, - 0.06522, - 0.063404, - -0.0085064, - 0.12993, - 0.037894, - 0.040848, - -0.010942, - -0.0076198, - -0.034803, - -0.084178, - 0.015573, - -0.073915, - -0.017369, - 0.044808, - 0.022612, - -0.014731, - 0.021374, - -0.043613, - 0.0017283, - -0.03082, - -0.029652, - -0.067608, - 0.0080559 - ], - "voicemail": [ - -0.0009863, - -0.028502, - -0.021823, - 0.037247, - 0.07085, - -0.04204, - 0.039218, - -0.07433, - -0.021913, - -0.026073, - -0.0553, - -0.038136, - -0.09198, - 0.031226, - -0.031841, - -0.029108, - 0.084746, - -0.1096, - 0.044489, - -0.0019792, - -0.066255, - -0.024045, - 0.027807, - 0.07691, - -0.072981, - 0.01256, - -0.031027, - 0.13332, - -0.096932, - -0.020643, - -0.085203, - 0.029912, - -0.058122, - -0.0068709, - 0.021088, - -0.029983, - -0.0281, - 0.051771, - 0.032325, - -0.094479, - -0.020121, - -0.13614, - 0.0082135, - -0.0043484, - 0.034658, - 0.031533, - 0.060448, - -0.02886, - -0.012949, - 0.023224, - -0.061377, - 0.021521, - 0.13411, - -0.024839, - -0.092066, - 0.0017179, - -0.014563, - -0.041704, - -0.085008, - 0.0062705, - -0.027961, - 0.0092933, - 0.18569, - 0.048472, - -0.028838, - 0.0046478, - 0.059475, - 0.034617, - -0.06694, - 0.012429, - -0.0026423, - 0.049061, - 0.015985, - 0.0014971, - -0.036273, - 0.014461, - 0.027583, - -0.033139, - -0.052623, - -0.014341, - -0.013353, - -0.067416, - 0.055522, - 0.059433, - -0.0099221, - -0.1089, - -0.055606, - -0.012475, - -0.09719, - 0.011956, - -0.076566, - 0.013455, - -0.072362, - -0.030725, - 0.018959, - 0.042522, - 0.005799, - 0.017251, - -0.029017, - -0.064783, - -0.034205, - 0.06651, - 0.063877, - 0.023721, - 0.023569, - -0.11591, - 0.081171, - -0.0034213, - 0.036239, - -0.11682, - 0.055485, - 0.08507, - 0.071293, - 0.074909, - -0.10424, - 0.010277, - -0.066313, - 0.0095664, - -0.015733, - -0.067764, - -0.055148, - 0.027861, - 0.053447, - 0.0074737, - 0.073137, - -0.01292, - 0.0061282, - 0.0091947, - -0.0077404, - 0.034572, - -0.025558, - -0.048124, - -0.058728, - -0.015706, - 0.036816, - -0.067795, - 0.079176, - 0.01109, - -0.096765, - -0.062144, - 0.065479, - -0.014878, - -0.0018008, - -0.024561, - -0.0040525, - -0.00073235, - -0.061066, - 0.030212, - 0.0085074, - 0.043981, - -0.042806, - -0.044475, - 0.0043211, - -0.048456, - -0.014486, - 0.031202, - -0.020235, - -0.03302, - 0.029456, - 0.045903, - 0.12078, - 0.011165, - -0.051449, - 0.044033, - 0.013862, - -0.070456, - -0.012525, - 0.042788, - -0.050934, - -0.0026114, - -0.027071, - 0.070425, - -0.006929, - 0.082634, - -0.042398, - 0.045443, - 0.092445, - 0.017973, - 0.047991, - 0.000022479, - 0.024974, - -0.019508, - 0.0523, - -0.0037173, - 0.0048201, - -0.045402, - -0.076409, - 0.13679, - 0.075918, - 0.015611, - -0.050652, - 0.026289, - -0.04562, - 0.035271, - 0.021057, - -0.044621, - -0.011125, - -0.11697, - 0.010315, - 0.066192, - -0.12038, - 0.059054, - -0.054894, - 0.037656, - -0.019836, - 0.031576, - -0.00993, - -0.011859, - -0.078997, - -0.080408, - 0.06446, - 0.027118, - 0.014776, - 0.0031671, - -0.068451, - -0.011751, - -0.039893, - -0.0097652, - -0.040563, - -0.045013, - 0.0092874, - 0.041749, - 0.02665, - 0.082846, - 0.075238, - -0.019581, - -0.0053052, - 0.048833, - 0.032471, - -0.040554, - 0.028555, - -0.014143, - 0.046973, - -0.049072, - 0.039054, - 0.0070509, - 0.000095745, - 0.00073747, - 0.048687, - -0.033748, - 0.034352, - -0.013234, - 0.045279, - -0.046327, - -0.031301, - -0.0016106, - 0.057625, - 0.033621, - 0.0074798, - 0.087229, - 0.079362, - -0.018671, - -0.054838, - 0.10218, - 0.019634, - -0.0074553, - -0.070104, - -0.042012, - -0.076387, - -0.013991, - -0.039569, - -0.047244, - 0.092452, - -0.085136, - -0.019714, - -0.057341, - -0.083919, - 0.032472, - 0.02943, - 0.0094475, - -0.074648, - 0.082423, - -0.13123, - -0.075092, - -0.0011816, - 0.001975, - 0.023734, - 0.07956, - 0.045745, - -0.0084998, - 0.063774, - -0.07308, - -0.070441, - -0.023584, - -0.069731, - -0.055329, - -0.06583, - 0.036766, - -0.080681, - -0.020479, - 0.036898, - 0.011692, - -0.095176, - 0.02745, - 0.023311, - 0.045871, - -0.044067, - 0.072835, - 0.04816, - 0.02863 - ], - "drug": [ - -0.07806, - -0.068849, - 0.028329, - 0.092886, - -0.065651, - -0.024658, - -0.0069575, - -0.13278, - 0.08633, - 0.057572, - -0.00033219, - -0.0062148, - 0.072515, - -0.033036, - 0.014919, - -0.031959, - 0.19424, - 0.014151, - 0.089858, - 0.056614, - 0.061427, - 0.020548, - 0.08644, - 0.059337, - 0.036358, - -0.095278, - 0.031851, - 0.025933, - 0.052642, - 0.13269, - -0.052092, - 0.043145, - -0.0094241, - -0.075038, - 0.096484, - 0.027656, - 0.0077027, - -0.063307, - 0.018724, - 0.084031, - -0.058778, - -0.19516, - 0.022706, - -0.0097926, - 0.10552, - 0.0085554, - 0.071301, - 0.1347, - -0.019618, - 0.069477, - -0.05231, - -0.014024, - 0.013851, - -0.11397, - -0.092289, - 0.012023, - 0.023191, - 0.03893, - -0.025, - 0.024665, - -0.01207, - 0.030261, - 0.16519, - 0.065517, - -0.1202, - -0.037167, - 0.13405, - -0.094918, - 0.076137, - 0.02578, - -0.042322, - 0.15855, - -0.028609, - -0.10137, - -0.034286, - -0.025364, - 0.026733, - -0.02916, - 0.0074689, - -0.10314, - -0.026318, - 0.002042, - -0.1005, - 0.024012, - -0.095936, - 0.00388, - 0.046806, - -0.0033406, - 0.071795, - -0.02799, - 0.066626, - 0.098024, - -0.16963, - -0.0022212, - -0.045758, - 0.059863, - 0.02179, - -0.062176, - 0.086934, - 0.070202, - 0.022759, - -0.028486, - -0.0060378, - -0.044015, - -0.0143, - -0.16075, - -0.067407, - -0.028053, - 0.12034, - 0.15418, - -0.028155, - 0.097821, - 0.080451, - -0.043955, - 0.0024834, - 0.00090629, - 0.036273, - -0.11708, - -0.090732, - 0.073123, - 0.027087, - 0.020166, - -0.061867, - -0.081582, - 0.1542, - 0.046567, - -0.042676, - -0.17071, - 0.073968, - 0.13082, - 0.016484, - -0.068798, - 0.005742, - -0.038079, - 0.062531, - -0.062767, - -0.061537, - -0.0021561, - 0.039267, - -0.023499, - 0.11522, - 0.099763, - -0.072582, - -0.0473, - 0.014417, - -0.072064, - 0.044929, - 0.050772, - 0.12981, - -0.040876, - 0.060222, - 0.19266, - 0.11162, - -0.12963, - 0.047046, - -0.025243, - -0.087087, - 0.0013323, - 0.11822, - 0.067817, - 0.054991, - 0.14356, - -0.1774, - 0.02281, - 0.0010221, - -0.046583, - 0.023813, - -0.030481, - -0.028125, - -0.11874, - -0.03215, - -0.074017, - 0.053867, - -0.00083054, - -0.032834, - 0.091782, - -0.11699, - 0.0067762, - -0.036752, - -0.055701, - 0.025533, - -0.11418, - -0.096847, - -0.01056, - 0.021751, - -0.12501, - 0.068817, - 0.13981, - 0.046016, - -0.051154, - 0.067329, - 0.072975, - 0.065966, - -0.00067153, - 0.071104, - -0.034313, - -0.081072, - 0.12767, - 0.021843, - 0.010583, - -0.22965, - 0.11421, - -0.028866, - 0.0041626, - 0.017204, - 0.029401, - 0.059181, - -0.0035816, - -0.038055, - -0.020943, - 0.21407, - 0.063394, - 0.050318, - 0.056042, - 0.055151, - -0.095299, - -0.042947, - 0.086549, - 0.069999, - -0.098442, - -0.019431, - -0.10436, - -0.051315, - 0.15999, - -0.0305, - 0.024457, - 0.05037, - 0.04113, - 0.015676, - 0.0046163, - -0.10691, - -0.094961, - -0.11009, - -0.089127, - 0.069594, - -0.064851, - -0.12229, - -0.067955, - 0.048454, - -0.080501, - 0.017913, - 0.05816, - -0.027635, - -0.026987, - -0.04226, - -0.014046, - -0.016625, - 0.0058981, - 0.087964, - 0.077741, - -0.02553, - 0.035866, - 0.093739, - -0.094734, - 0.012138, - -0.02079, - -0.0056474, - 0.04362, - 0.057716, - -0.05267, - 0.0077446, - 0.050988, - -0.024689, - 0.0020397, - -0.025023, - -0.11177, - -0.10954, - 0.033365, - 0.045335, - 0.14843, - -0.077607, - 0.11477, - -0.16298, - -0.088521, - -0.040583, - -0.10562, - -0.016427, - 0.022086, - -0.14549, - 0.05136, - 0.22565, - -0.030469, - -0.13967, - -0.0054822, - -0.018722, - 0.060998, - -0.010113, - 0.031274, - 0.06317, - -0.14353, - 0.053212, - -0.053583, - -0.042648, - -0.023948, - -0.17038, - 0.0036966, - 0.066761, - -0.0015907, - -0.037739, - -0.092108 - ], - "beliefs": [ - 0.0026523, - -0.011857, - -0.018047, - -0.0091852, - -0.023413, - -0.047612, - -0.00384, - -0.074864, - -0.010093, - 0.0073695, - 0.020014, - -0.080266, - 0.038753, - -0.028658, - -0.029114, - -0.034559, - 0.054089, - -0.03198, - 0.041574, - 0.067138, - -0.11331, - 0.037563, - 0.027051, - 0.096146, - -0.074908, - 0.0082965, - 0.0075162, - -0.0051645, - 0.095286, - -0.026719, - 0.010559, - -0.011508, - 0.04485, - -0.02114, - 0.022627, - 0.055571, - -0.065444, - -0.031324, - -0.0011672, - 0.04012, - 0.0041664, - -0.12488, - 0.011207, - 0.040953, - 0.030704, - -0.022837, - -0.040357, - 0.041869, - -0.02959, - -0.089697, - -0.012541, - 0.005891, - -0.010538, - 0.034016, - -0.039458, - 0.10418, - 0.065337, - 0.012064, - -0.058394, - -0.021792, - -0.0039503, - -0.023127, - 0.19934, - -0.051587, - 0.070651, - -0.0028986, - -0.029401, - 0.048108, - 0.0053394, - 0.0045849, - 0.055554, - 0.033971, - 0.039865, - -0.014609, - -0.036359, - -0.0043871, - 0.090809, - -0.021756, - -0.032543, - 0.060291, - -0.00027479, - 0.0078658, - -0.037282, - 0.090338, - 0.0012614, - -0.01373, - -0.016973, - -0.0024339, - 0.014879, - 0.030788, - 0.050602, - 0.017577, - -0.085751, - 0.022893, - -0.00088879, - 0.033148, - 0.057424, - -0.024833, - 0.06821, - -0.057398, - -0.023138, - -0.00028436, - 0.069863, - -0.027357, - 0.055162, - -0.030982, - 0.013311, - -0.0070463, - -0.009438, - -0.0071263, - -0.054151, - 0.03067, - 0.06138, - -0.0085143, - 0.020343, - -0.030984, - -0.0029227, - -0.032218, - -0.032582, - 0.018127, - 0.0093573, - -0.014903, - -0.034316, - -0.135, - 0.12665, - 0.0075972, - -0.02297, - 0.017544, - -0.0061501, - 0.19821, - 0.064098, - 0.024144, - 0.086538, - -0.0036989, - -0.039566, - 0.010624, - -0.016109, - 0.083174, - -0.055568, - -0.040871, - -0.026693, - -0.069269, - -0.028537, - 0.087056, - 0.01702, - -0.10049, - -0.020107, - -0.024341, - 0.015684, - 0.016607, - -0.011087, - 0.088506, - -0.058984, - -0.0032379, - -0.029927, - 0.072046, - 0.0016066, - -0.060417, - 0.040197, - -0.015625, - 0.0327, - 0.080429, - -0.043774, - -0.040794, - 0.021505, - -0.11443, - 0.028616, - -0.012371, - -0.042819, - -0.044699, - -0.062583, - -0.056399, - -0.024285, - 0.0043272, - 0.016519, - 0.059904, - 0.027569, - 0.066875, - -0.0082547, - -0.12735, - 0.012447, - 0.0014223, - 0.018393, - 0.0212, - 0.053791, - -0.07868, - 0.090013, - 0.1251, - 0.020776, - -0.078914, - 0.11053, - 0.10541, - -0.087405, - 0.00020508, - 0.046641, - -0.027474, - -0.024502, - -0.01173, - -0.028022, - 0.0034058, - -0.15499, - 0.001724, - 0.033851, - -0.033543, - -0.015735, - 0.086698, - 0.10028, - -0.0061471, - 0.12269, - -0.020813, - 0.085973, - 0.044444, - 0.028973, - 0.018597, - -0.0063253, - 0.019894, - 0.013071, - -0.0062694, - -0.11183, - -0.027384, - -0.069181, - -0.015706, - -0.0045224, - 0.10159, - 0.11857, - -0.022503, - 0.010143, - 0.098614, - -0.02595, - -0.054106, - 0.048653, - -0.015264, - -0.16977, - -0.029771, - 0.073423, - 0.082099, - 0.012601, - 0.06331, - 0.080911, - 0.12668, - -0.04561, - -0.02159, - 0.035381, - 0.023861, - -0.0056113, - -0.02753, - -0.042539, - -0.14035, - -0.042983, - 0.026854, - 0.03627, - -0.029404, - 0.022663, - -0.010658, - 0.016396, - -0.053354, - -0.050321, - 0.016159, - -0.010962, - -0.037175, - 0.04597, - 0.025496, - 0.015516, - -0.028174, - 0.055169, - -0.04063, - -0.0035176, - 0.04028, - -0.0055786, - 0.018202, - 0.046628, - 0.075948, - -0.11808, - -0.086054, - 0.12502, - -0.023462, - -0.015292, - -0.065755, - -0.06703, - -0.046775, - 0.066729, - -0.026131, - -0.015898, - 0.031714, - 0.066099, - -0.014446, - -0.016359, - 0.02663, - -0.054338, - 0.018251, - 0.020833, - 0.068373, - 0.017361, - 0.0017174, - 0.0020038, - 0.068107, - 0.027213, - 0.062076, - -0.085973, - 0.058063 - ], - "active-duty": [ - 0.012759, - 0.0060655, - 0.053058, - -0.011155, - 0.035879, - 0.050833, - 0.032643, - -0.058333, - 0.0017252, - 0.007012, - -0.054518, - 0.062232, - -0.051894, - 0.018078, - -0.051009, - 0.047984, - 0.035534, - 0.0088557, - 0.042075, - 0.0052991, - 0.057225, - -0.028614, - -0.047955, - 0.04379, - -0.005223, - -0.01753, - 0.0075614, - 0.035409, - 0.044637, - -0.04026, - 0.0048068, - -0.010149, - -0.055888, - 0.018371, - 0.015331, - 0.024292, - -0.019055, - 0.065003, - 0.090318, - 0.0051159, - 0.0023653, - -0.084104, - 0.055496, - -0.042545, - -0.012676, - 0.047818, - 0.022935, - 0.0027792, - -0.055253, - 0.02011, - -0.0076889, - 0.022247, - 0.061202, - 0.04117, - 0.000602, - 0.013539, - -0.032869, - -0.0172, - 0.0041753, - -0.032511, - -0.0084443, - 0.020857, - 0.10685, - 0.0090302, - -0.050969, - -0.093682, - -0.0385, - -0.034048, - -0.0067591, - 0.0034522, - 0.017667, - 0.023277, - 0.037316, - -0.032552, - 0.032101, - 0.038945, - 0.032925, - 0.0036508, - -0.0019117, - -0.021811, - 0.031733, - -0.00013677, - 0.035178, - -0.01839, - -0.083492, - 0.0036051, - 0.044231, - -0.0025382, - -0.030612, - 0.043917, - 0.012069, - 0.0086223, - -0.09133, - -0.01159, - 0.013775, - 0.048542, - -0.096472, - -0.015641, - 0.01918, - 0.05159, - -0.0024689, - -0.011642, - 0.024453, - -0.028124, - 0.018854, - -0.027553, - 0.00085841, - -0.017462, - -0.051817, - -0.032874, - 0.043556, - 0.048972, - 0.011567, - 0.01517, - -0.0029368, - 0.0047589, - 0.0071126, - 0.018995, - -0.030052, - 0.029862, - -0.0431, - -0.003976, - -0.00062281, - -0.01206, - 0.065803, - 0.063704, - 0.077062, - -0.037575, - 0.01698, - -0.0025334, - -0.065908, - 0.081448, - 0.070753, - -0.0052752, - 0.028056, - 0.027084, - 0.017972, - 0.059579, - -0.007004, - -0.019376, - -0.0099755, - -0.044347, - -0.035816, - 0.022944, - -0.011952, - 0.043544, - -0.00481, - 0.066896, - 0.040965, - 0.03949, - 0.089354, - 0.1129, - -0.056089, - 0.016481, - 0.00011507, - 0.035883, - -0.037596, - 0.019691, - 0.0306, - 0.013477, - 0.018981, - 0.092092, - 0.0076938, - -0.060016, - -0.0050133, - -0.019889, - -0.025377, - 0.0046999, - -0.024323, - -0.044937, - 0.063471, - -0.038072, - 0.0088642, - -0.014682, - -0.082531, - 0.042498, - 0.017079, - -0.017654, - -0.036375, - -0.039177, - 0.019399, - -0.0057659, - 0.0086211, - 0.016835, - 0.04689, - -0.068908, - 0.018447, - 0.15874, - 0.0096303, - 0.042823, - 0.017349, - 0.068026, - -0.003088, - -0.0068529, - -0.0097148, - -0.0079538, - -0.023036, - -0.0243, - 0.019813, - -0.024895, - -0.092102, - -0.010538, - -0.064793, - 0.059543, - 0.0036603, - -0.022401, - 0.022018, - 0.029113, - 0.022637, - -0.026829, - 0.14672, - -0.022517, - -0.016189, - 0.01254, - -0.061861, - 0.037341, - 0.00027174, - 0.027934, - 0.0073414, - 0.007192, - -0.0076763, - 0.0050863, - 0.0052901, - 0.099279, - -0.0044364, - -0.012404, - 0.0010442, - 0.017878, - -0.019647, - -0.068747, - 0.023187, - -0.034178, - -0.0096324, - 0.0023182, - 0.017013, - -0.026666, - -0.047507, - 0.032195, - -0.0035811, - 0.023096, - 0.014315, - -0.0071004, - 0.061196, - -0.049505, - -0.075206, - 0.011333, - -0.01864, - -0.094298, - 0.041578, - -0.022761, - 0.024141, - 0.087555, - 0.028773, - -0.032029, - 0.0053376, - -0.024482, - 0.12111, - 0.0538, - 0.015741, - -0.058805, - -0.06787, - -0.014993, - -0.021687, - -0.022426, - -0.0063693, - 0.031355, - 0.017766, - 0.0034767, - 0.040171, - -0.017324, - -0.023427, - 0.049119, - -0.069518, - -0.012525, - 0.013332, - -0.020478, - -0.021221, - 0.026457, - 0.056233, - -0.0063199, - 0.10439, - 0.016604, - 0.05891, - 0.035293, - 0.052744, - -0.077333, - -0.05763, - -0.048872, - -0.052571, - -0.074151, - 0.020722, - 0.069778, - -0.021923, - 0.040309, - -0.0031757, - 0.012694, - -0.0089869, - -0.011066, - 0.0082531, - 0.023672 - ], - "Religions": [ - 0.02561, - -0.014146, - 0.085274, - -0.12271, - -0.0031663, - -0.0016903, - -0.062059, - -0.035151, - 0.056375, - -0.025708, - 0.0080979, - -0.095022, - 0.02253, - -0.029613, - 0.029708, - -0.0012493, - 0.062755, - -0.013391, - 0.066645, - -0.031853, - -0.10446, - 0.052302, - 0.010701, - 0.074936, - 0.013998, - -0.0082138, - 0.023259, - 0.015382, - 0.074255, - 0.037464, - 0.015376, - 0.034148, - 0.011868, - 0.052553, - 0.048897, - 0.021603, - -0.047674, - -0.040407, - 0.026398, - 0.0029684, - -0.045743, - 0.077053, - 0.000054929, - 0.0085158, - 0.00025161, - 0.01833, - -0.030356, - 0.0074005, - 0.019087, - -0.038405, - -0.039352, - -0.021814, - 0.0046881, - -0.01717, - -0.053878, - 0.091811, - -0.0065449, - -0.027112, - -0.054716, - 0.01523, - 0.045763, - -0.016486, - 0.014258, - -0.016246, - -0.016331, - -0.0063259, - 0.0092168, - 0.016196, - 0.066036, - -0.01926, - 0.010756, - 0.00043365, - -0.036908, - -0.087421, - -0.011062, - -0.026676, - 0.058505, - -0.094432, - 0.10343, - 0.096705, - 0.013585, - 0.062241, - -0.0076356, - 0.023421, - 0.052916, - -0.021936, - 0.029119, - -0.095842, - 0.032603, - 0.068597, - -0.0076632, - 0.010169, - -0.0053302, - 0.0578, - -0.021644, - 0.068848, - 0.070667, - -0.039515, - 0.080815, - -0.058156, - 0.020898, - 0.032096, - 0.028693, - -0.12634, - 0.019913, - -0.086035, - 0.03217, - -0.0023762, - 0.0069781, - 0.00017932, - 0.0042038, - 0.022781, - 0.029453, - 0.020029, - -0.031184, - 0.024434, - 0.019178, - 0.045634, - 0.041098, - 0.039527, - 0.074558, - -0.010716, - -0.07673, - -0.049363, - 0.058672, - 0.052801, - -0.11479, - -0.036491, - 0.0083337, - 0.22182, - -0.022533, - 0.090309, - -0.017066, - -0.023518, - 0.024212, - 0.039321, - -0.042371, - -0.0086945, - -0.05514, - -0.048885, - -0.0098289, - -0.076818, - -0.0099993, - 0.038093, - 0.075297, - -0.056696, - -0.042019, - -0.023524, - 0.02962, - -0.017694, - 0.058978, - 0.094035, - -0.043359, - -0.020395, - -0.0088795, - 0.063995, - -0.0013576, - -0.044057, - -0.0095738, - -0.019929, - 0.01649, - -0.022943, - -0.046054, - 0.034591, - 0.043501, - -0.040012, - 0.06592, - 0.011863, - -0.034715, - -0.023161, - -0.093347, - -0.12999, - 0.045762, - -0.020146, - -0.0079386, - 0.024776, - -0.001056, - 0.013648, - 0.054803, - -0.068054, - 0.0025781, - 0.063914, - 0.039869, - 0.059402, - 0.041548, - 0.098457, - 0.057666, - 0.12396, - -0.0074227, - -0.11012, - 0.044315, - 0.10211, - -0.11822, - -0.013934, - 0.04849, - 0.038547, - -0.062373, - -0.037809, - -0.0052513, - -0.065939, - 0.0093035, - 0.098657, - 0.030571, - -0.0736, - 0.028773, - 0.038992, - 0.019402, - -0.010528, - 0.078767, - 0.0224, - 0.11912, - 0.0020244, - 0.012436, - 0.030346, - 0.089247, - 0.013234, - 0.011995, - -0.064451, - -0.019572, - -0.0040353, - -0.054471, - 0.055852, - -0.061126, - 0.074781, - -0.0087911, - 0.0053924, - 0.063732, - 0.058268, - -0.050284, - -0.043906, - 0.032505, - -0.0072352, - 0.020762, - -0.043574, - -0.013024, - -0.015258, - 0.020779, - -0.011135, - -0.010418, - 0.0095732, - -0.076481, - -0.028079, - -0.0087224, - 0.038452, - 0.16854, - 0.029464, - 0.033504, - -0.012005, - 0.026061, - -0.10493, - -0.045307, - -0.076408, - -0.051664, - -0.042727, - -0.023202, - 0.032925, - -0.03691, - 0.055922, - -0.0089528, - -0.0080497, - 0.029242, - -0.02343, - 0.017735, - -0.015447, - -0.095561, - 0.012071, - 0.031002, - -0.016357, - -0.0017338, - 0.026668, - 0.058625, - 0.088029, - -0.041523, - 0.029994, - 0.030667, - -0.055553, - 0.033446, - 0.007347, - -0.091038, - -0.081284, - -0.004392, - -0.031933, - -0.015093, - -0.025627, - 0.024182, - -0.0033604, - 0.0049739, - 0.011629, - -0.035967, - 0.060646, - 0.00047669, - -0.0066288, - -0.021261, - -0.0098629, - 0.00014357, - 0.0555, - 0.038446, - 0.019858, - -0.003654, - 0.0237 - ], - "games": [ - 0.073827, - -0.068088, - -0.0037545, - 0.0098336, - 0.016721, - -0.063266, - -0.042433, - -0.097194, - 0.0896, - 0.08139, - 0.0079088, - -0.10917, - -0.031257, - 0.033874, - 0.069136, - 0.052405, - 0.124, - 0.02141, - 0.088924, - -0.099687, - -0.026404, - -0.029361, - -0.019264, - 0.072284, - -0.0067666, - -0.033298, - 0.072492, - -0.15819, - 0.11802, - 0.016004, - -0.094132, - -0.065827, - -0.015725, - -0.11323, - 0.12184, - 0.016766, - 0.023219, - -0.018173, - 0.046533, - -0.048214, - -0.031439, - -0.10435, - -0.095341, - -0.022413, - -0.0017381, - -0.013963, - 0.031873, - -0.0070746, - 0.011707, - -0.031137, - -0.042364, - 0.005853, - 0.017201, - -0.068133, - -0.12465, - 0.11319, - 0.060666, - -0.027742, - -0.086141, - -0.010343, - -0.06802, - -0.12781, - 0.18668, - 0.022837, - 0.080713, - -0.032071, - -0.005112, - 0.013365, - 0.06097, - 0.013177, - -0.020786, - -0.064583, - 0.04035, - 0.10661, - -0.0014058, - 0.050662, - 0.00027919, - -0.055112, - -0.010867, - 0.049105, - 0.033341, - -0.034192, - -0.11221, - 0.12204, - -0.0122, - -0.063235, - 0.041283, - -0.0012407, - -0.055713, - -0.024873, - 0.033734, - 0.023706, - -0.1175, - 0.070848, - 0.019927, - 0.046073, - 0.028141, - 0.0082291, - 0.024412, - -0.00025816, - 0.044845, - 0.05233, - -0.11315, - -0.025663, - 0.06422, - -0.035706, - -0.1224, - 0.040627, - -0.06574, - -0.040226, - -0.11971, - 0.052121, - 0.13224, - -0.006157, - 0.097256, - 0.010819, - -0.076073, - -0.012293, - -0.0644, - -0.080309, - 0.013108, - 0.084817, - 0.00049773, - -0.046693, - 0.10702, - 0.0082564, - -0.034143, - -0.073527, - 0.0057376, - 0.13458, - 0.032996, - 0.14329, - -0.028801, - 0.028468, - 0.041869, - -0.062813, - 0.0697, - 0.011939, - -0.065589, - -0.061124, - 0.10726, - 0.072894, - 0.040277, - -0.027573, - 0.086437, - -0.018005, - -0.047434, - -0.041827, - 0.10045, - -0.0081614, - 0.042695, - 0.13057, - -0.084369, - -0.059123, - -0.031143, - 0.0071274, - -0.054689, - 0.074524, - 0.071452, - 0.035513, - 0.021945, - -0.0068061, - 0.055173, - 0.019573, - 0.0066214, - -0.026482, - 0.05446, - 0.0050404, - -0.016028, - -0.11329, - 0.079823, - -0.013233, - 0.044501, - -0.031368, - 0.074847, - 0.073016, - 0.0066738, - 0.020177, - -0.040323, - -0.043831, - 0.056089, - -0.016209, - -0.040467, - -0.038528, - 0.043191, - 0.0081652, - -0.07815, - 0.11239, - -0.046539, - -0.044127, - 0.0089464, - 0.076013, - -0.10236, - -0.0025532, - -0.013799, - -0.0028612, - 0.0068586, - -0.015485, - 0.061767, - 0.037541, - -0.17274, - 0.10912, - -0.017703, - -0.093431, - -0.043615, - 0.081924, - -0.052739, - -0.027005, - 0.030019, - -0.084363, - 0.13692, - -0.051871, - 0.025639, - 0.030455, - 0.045899, - 0.01431, - -0.043925, - 0.083965, - -0.046823, - -0.084458, - 0.031241, - 0.0044147, - -0.0043305, - 0.12039, - -0.0081948, - -0.10993, - -0.033638, - 0.066997, - -0.10822, - 0.0048978, - -0.052377, - -0.059235, - -0.089992, - 0.043165, - 0.010032, - 0.026926, - -0.04396, - -0.028047, - 0.038538, - -0.02458, - -0.030448, - 0.037367, - 0.10026, - -0.05746, - 0.018968, - 0.099716, - -0.040439, - -0.0068689, - -0.115, - 0.012265, - 0.082932, - -0.015164, - 0.04813, - 0.070618, - -0.044331, - 0.088987, - -0.027959, - 0.040665, - -0.060269, - 0.044635, - 0.07273, - 0.067713, - -0.0038819, - -0.12442, - 0.04292, - 0.07467, - 0.038837, - -0.023409, - 0.019064, - -0.012761, - 0.066135, - 0.15556, - -0.14044, - -0.0093567, - -0.068476, - -0.045364, - 0.0035497, - 0.029476, - 0.052304, - 0.013581, - 0.01591, - 0.035305, - 0.045239, - -0.089748, - 0.018512, - 0.0015619, - 0.018073, - 0.029451, - -0.064374, - -0.052216, - 0.029314, - -0.053208, - -0.089252, - -0.027448, - 0.14064, - -0.040659, - -0.050313, - 0.012768, - 0.055286, - 0.034953 - ], - "industry-specific": [ - 0.0050153, - -0.01756, - -0.0078279, - -0.0014938, - -0.019504, - -0.0097666, - 0.0056216, - -0.04658, - 0.015556, - 0.0081269, - 0.0010931, - -0.068695, - -0.037612, - -0.010063, - 0.034949, - 0.056055, - 0.0402, - 0.03718, - 0.035291, - -0.011971, - 0.010284, - 0.037492, - 0.056357, - 0.047786, - -0.0039578, - -0.00092645, - -0.0015249, - 0.032619, - 0.083563, - -0.020041, - -0.0076836, - -0.027731, - -0.0097031, - -0.074603, - 0.066363, - 0.017164, - 0.015173, - 0.044869, - 0.004433, - 0.017209, - 0.006536, - -0.02904, - -0.0029158, - 0.039624, - -0.0013202, - -0.0084091, - -0.019111, - -0.011011, - 0.022801, - -0.0073814, - 0.00082718, - -0.033023, - -0.013254, - 0.013973, - 0.051378, - -0.010275, - 0.022829, - 0.041694, - 0.014855, - -0.0033476, - -0.00055635, - 0.013551, - 0.068605, - 0.016028, - 0.0040014, - 0.0023177, - -0.017852, - 0.0080427, - 0.038148, - -0.0070063, - 0.0085952, - 0.0099588, - 0.018241, - 0.00070256, - 0.0030093, - -0.042751, - 0.00040188, - -0.026039, - 0.024949, - -0.047532, - 0.016767, - -0.024374, - -0.015428, - 0.0029916, - -0.010535, - -0.019411, - -0.0047668, - 0.003111, - -0.016358, - -0.0029667, - 0.0040395, - 0.0096617, - -0.054471, - 0.010375, - -0.0061381, - -0.011244, - 0.006274, - 0.0054974, - -0.02724, - -0.0074638, - -0.0024534, - -0.022701, - -0.043146, - -0.019469, - 0.006598, - -0.013776, - 0.020996, - 0.00039822, - -0.0059529, - -0.0091515, - -0.003305, - 0.057574, - 0.012108, - -0.014608, - -0.00084811, - -0.017611, - -0.0058485, - 0.0094507, - -0.013134, - 0.014197, - -0.027935, - 0.018596, - 0.019586, - -0.01514, - 0.038775, - 0.00043531, - -0.050176, - 0.02751, - 0.029817, - 0.032967, - -0.014865, - 0.030345, - -0.050477, - -0.026151, - -0.014414, - 0.017871, - 0.021265, - 0.044661, - 0.0019902, - 0.036305, - 0.0071942, - 0.015263, - -0.013833, - 0.0020698, - -0.023784, - -0.014347, - -0.01799, - -0.036907, - 0.0092868, - 0.0085776, - 0.028902, - 0.098903, - 0.011323, - 0.0093347, - 0.061585, - 0.0051185, - -0.00054502, - -0.018771, - -0.006126, - 0.030133, - 0.021604, - -0.038259, - -0.00054477, - 0.019675, - 0.05049, - -0.0063489, - -0.037615, - -0.03301, - -0.045485, - -0.01437, - -0.00083802, - 0.026297, - -0.0084863, - 0.030844, - -0.039829, - 0.034691, - -0.057438, - 0.015282, - -0.040883, - -0.0030228, - -0.0019507, - -0.036451, - -0.015003, - 0.024503, - 0.028159, - 0.0085166, - 0.0043643, - 0.094782, - -0.020371, - 0.036471, - -0.047861, - 0.050061, - 0.020558, - -0.025633, - 0.030184, - -0.012063, - -0.016018, - -0.0059547, - 0.0029576, - -0.042333, - -0.059077, - -0.01409, - -0.0031504, - 0.0076662, - 0.019658, - -0.00035002, - -0.026162, - 0.0040849, - -0.0057366, - -0.0060474, - 0.07486, - 0.013757, - 0.036649, - -0.025866, - 0.0071742, - 0.037152, - -0.0046652, - 0.0045624, - -0.018878, - -0.011502, - -0.0040735, - -0.04077, - 0.0088867, - 0.04803, - 0.04027, - -0.019775, - 0.020228, - 0.017688, - 0.012247, - -0.037256, - 0.0077585, - -0.052088, - -0.026341, - 0.044769, - -0.0088637, - -0.0035411, - 0.0091703, - -0.004533, - 0.013884, - -0.022949, - 0.022602, - 0.038295, - 0.0050065, - -0.0089843, - -0.12212, - -0.0031703, - 0.010961, - -0.018713, - 0.048536, - 0.020109, - -0.021015, - -0.019675, - -0.0063968, - -0.0036947, - -0.017947, - 0.019163, - 0.0055045, - -0.015819, - 0.026157, - 0.037817, - 0.011993, - 0.018267, - -0.014987, - -0.020736, - -0.00094951, - 0.000525, - -0.010585, - 0.027469, - 0.0022639, - -0.031284, - -0.06533, - 0.039736, - -0.056646, - -0.037121, - 0.0052899, - -0.076868, - -0.011688, - 0.031032, - -0.030669, - 0.0010505, - 0.082033, - 0.056585, - 0.019423, - 0.048473, - -0.026017, - 0.010837, - -0.0057899, - 0.017208, - -0.019336, - -0.017121, - 0.0072009, - 0.018321, - 0.013241, - -0.0045332, - 0.013837, - -0.018244, - 0.018274, - -0.0115, - 0.010312, - -0.026917 - ], - "pleasures": [ - -0.0030398, - -0.015164, - 0.057326, - -0.0046118, - -0.043197, - 0.0090617, - -0.068175, - -0.086535, - 0.026568, - 0.044349, - -0.062781, - -0.05009, - -0.000081633, - -0.051033, - -0.0062802, - -0.047873, - -0.0059715, - 0.0072511, - 0.023551, - 0.030778, - -0.01142, - 0.0078338, - -0.028307, - 0.052736, - 0.011311, - 0.02126, - 0.010383, - 0.025761, - 0.11766, - -0.074426, - 0.0072316, - -0.059319, - -0.022075, - -0.06388, - 0.00090359, - -0.021283, - -0.043221, - 0.0036583, - -0.036691, - 0.037146, - 0.01092, - -0.066356, - -0.062066, - 0.045338, - -0.017041, - -0.059685, - -0.0029672, - -0.0501, - -0.022354, - 0.0044133, - -0.039765, - 0.013651, - -0.0093471, - -0.068097, - -0.074953, - -0.031411, - -0.049667, - -0.036967, - -0.035292, - -0.030837, - 0.010014, - -0.0053215, - 0.12662, - 0.014476, - -0.047513, - 0.022337, - -0.01637, - -0.0050617, - -0.0013943, - -0.010118, - 0.11783, - 0.030701, - 0.044196, - 0.0009324, - 0.043176, - 0.018343, - -0.013075, - -0.1009, - -0.045494, - -0.028781, - -0.03256, - 0.018407, - 0.0086341, - 0.057229, - -0.014045, - 0.014101, - 0.054599, - 0.017597, - -0.047773, - 0.010576, - 0.014526, - -0.021789, - -0.072594, - 0.018481, - -0.035665, - 0.039587, - -0.0019236, - 0.016836, - -0.042298, - 0.060052, - 0.03562, - 0.073312, - -0.081323, - -0.020486, - 0.08172, - -0.0098974, - -0.037419, - -0.030024, - 0.00040857, - -0.077147, - -0.002504, - 0.071093, - 0.030986, - 0.050873, - -0.0062783, - 0.022935, - 0.0027245, - 0.014958, - -0.014979, - 0.051269, - 0.0056047, - 0.042705, - -0.036836, - -0.016647, - 0.10773, - -0.050907, - -0.02964, - -0.046919, - 0.00048008, - 0.10248, - -0.013864, - 0.01266, - 0.031903, - 0.022135, - 0.0071797, - -0.15031, - 0.036527, - -0.017346, - -0.046949, - -0.035013, - 0.047024, - 0.01082, - 0.0024814, - -0.0187, - 0.08088, - -0.017546, - -0.002367, - -0.027155, - -0.029493, - 0.062432, - 0.059938, - 0.11617, - 0.013668, - -0.03916, - -0.00031486, - -0.0085256, - -0.054589, - 0.10481, - 0.0086935, - -0.074315, - 0.07032, - 0.011918, - 0.0053166, - -0.013508, - -0.009056, - 0.023948, - 0.005193, - -0.04816, - 0.02516, - 0.006225, - 0.041743, - -0.028687, - 0.017428, - -0.012167, - -0.017708, - 0.046739, - 0.019, - -0.054875, - 0.0011704, - -0.045563, - 0.058317, - 0.010613, - 0.00063485, - -0.13901, - -0.033752, - -0.012152, - 0.060525, - 0.11746, - 0.0045313, - 0.0043189, - 0.032085, - 0.039051, - -0.040558, - 0.03077, - -0.023399, - 0.010777, - -0.028259, - 0.061587, - -0.039316, - 0.031671, - -0.10511, - 0.059497, - 0.01497, - -0.082203, - 0.041721, - 0.043422, - 0.0024527, - 0.066797, - 0.069176, - -0.037654, - 0.055156, - 0.053492, - 0.030358, - -0.013666, - 0.053698, - 0.036727, - -0.0060914, - 0.021252, - -0.058146, - -0.053757, - -0.018821, - -0.01611, - -0.017091, - 0.098142, - 0.089378, - -0.03231, - 0.028998, - 0.11059, - -0.0048069, - 0.026907, - 0.025524, - -0.021389, - -0.090933, - -0.011627, - 0.083573, - 0.031701, - -0.044544, - -0.038774, - 0.031612, - -0.034448, - -0.028157, - -0.0076173, - -0.025777, - 0.016577, - -0.042683, - 0.021743, - -0.067965, - -0.039851, - 0.0059858, - -0.034769, - -0.051462, - -0.033547, - -0.0032691, - -0.018277, - -0.039132, - 0.013878, - -0.039294, - 0.070074, - 0.024083, - 0.065101, - -0.054929, - 0.071517, - 0.010027, - 0.0030906, - -0.00063867, - 0.024456, - -0.023829, - -0.024246, - 0.031977, - 0.030594, - 0.041628, - 0.068701, - -0.09696, - -0.059775, - 0.08515, - -0.030152, - 0.028317, - 0.012337, - 0.023742, - 0.0065106, - 0.029906, - 0.062463, - 0.038765, - -0.11101, - 0.043312, - 0.011806, - -0.049649, - 0.0323, - 0.0049794, - 0.046536, - 0.0037741, - 0.024093, - -0.013797, - -0.030909, - -0.020898, - 0.10109, - 0.039545, - 0.065658, - -0.090251, - -0.0030403 - ], - "self-care": [ - -0.015314, - -0.029022, - -0.082775, - -0.031019, - -0.059515, - 0.058222, - 0.037393, - -0.066968, - -0.01573, - -0.013691, - -0.022442, - -0.033337, - -0.018646, - -0.089245, - -0.03026, - -0.03731, - 0.11428, - 0.017297, - 0.044091, - -0.029194, - -0.074938, - -0.015042, - 0.062602, - 0.073018, - -0.02977, - 0.012815, - -0.024095, - 0.019603, - 0.015081, - 0.010435, - 0.011687, - -0.027654, - 0.0027127, - -0.075058, - 0.04178, - 0.032062, - 0.027079, - -0.032164, - 0.11617, - 0.019597, - 0.030482, - -0.13774, - 0.0043488, - 0.010007, - 0.015046, - -0.11522, - -0.010586, - 0.029401, - -0.052101, - -0.041219, - -0.045746, - -0.0026931, - -0.002441, - 0.01256, - -0.025168, - 0.011035, - -0.073249, - 0.017203, - 0.0019979, - -0.0096605, - -0.026409, - -0.073858, - 0.041701, - -0.0012566, - -0.030915, - -0.030371, - 0.030439, - -0.018753, - -0.049766, - -0.031503, - -0.028749, - 0.028382, - -0.0018876, - -0.040873, - -0.029011, - -0.037577, - -0.026895, - -0.051951, - -0.048677, - 0.022096, - -0.013994, - -0.018993, - -0.03918, - 0.025607, - 0.024534, - 0.023939, - 0.018321, - -0.018668, - -0.029578, - -0.067792, - 0.036014, - -0.0018228, - -0.098047, - 0.0067939, - -0.027676, - 0.033103, - -0.0011288, - 0.083549, - -0.01535, - -0.032276, - 0.039735, - 0.075051, - -0.00046259, - -0.023998, - -0.0054728, - -0.022629, - 0.028522, - 0.013471, - -0.05967, - -0.091873, - -0.016825, - 0.065212, - 0.048755, - 0.0069768, - -0.0058661, - 0.019583, - -0.066267, - -0.0033257, - -0.061967, - -0.012858, - -0.064632, - 0.078371, - 0.060017, - -0.045845, - 0.074686, - -0.029507, - -0.0061013, - -0.048782, - 0.098899, - 0.079012, - 0.013652, - -0.011331, - 0.02286, - -0.053765, - -0.054429, - 0.010805, - 0.027386, - -0.0099476, - 0.030937, - -0.0095893, - 0.088524, - -0.045186, - -0.062553, - 0.055832, - -0.011181, - -0.01539, - -0.010484, - 0.042693, - 0.10926, - 0.05487, - 0.036402, - 0.065804, - -0.0014893, - -0.090423, - -0.015406, - 0.065711, - 0.0037052, - 0.054063, - 0.074723, - -0.042612, - 0.062232, - 0.099424, - -0.061548, - 0.053935, - 0.014267, - 0.015167, - -0.010525, - -0.062275, - -0.011508, - -0.038372, - 0.0038954, - 0.059759, - -0.036381, - 0.068537, - 0.0049055, - 0.055355, - -0.021521, - -0.01105, - -0.05822, - -0.018407, - 0.016223, - -0.020653, - -0.025952, - -0.015302, - 0.021927, - -0.052632, - -0.026045, - 0.11901, - -0.068061, - 0.0056017, - 0.012498, - 0.069842, - 0.029589, - -0.041038, - 0.0347, - -0.013577, - 0.062794, - -0.032373, - 0.0068695, - 0.037745, - -0.154, - 0.026939, - 0.046375, - 0.0047392, - 0.02403, - 0.041377, - -0.0039538, - -0.021158, - 0.0014432, - -0.022029, - 0.074882, - 0.009816, - -0.0057634, - 0.056995, - 0.0058054, - 0.063193, - -0.012947, - 0.01336, - -0.071074, - 0.033831, - -0.07716, - -0.035385, - 0.026158, - 0.074971, - 0.041028, - -0.0032491, - -0.0040824, - 0.087243, - -0.0422, - -0.026277, - 0.042437, - -0.034439, - -0.058058, - -0.013232, - 0.062023, - 0.12104, - 0.028901, - -0.015494, - 0.0098563, - 0.020238, - 0.053818, - 0.094804, - 0.032388, - -0.064808, - -0.051781, - 0.017635, - -0.004217, - -0.052248, - -0.012959, - -0.015641, - 0.043887, - 0.11017, - -0.018042, - -0.015672, - 0.069206, - -0.045063, - -0.024003, - 0.0059867, - -0.0034589, - -0.014956, - -0.010352, - 0.0027298, - -0.080512, - 0.0059463, - -0.0081552, - -0.01877, - 0.091783, - 0.06949, - 0.032515, - 0.052321, - 0.0061527, - 0.056796, - -0.094149, - -0.051514, - -0.030055, - -0.086824, - 0.018304, - 0.015126, - 0.021377, - 0.05479, - 0.078223, - -0.020382, - -0.034926, - 0.0033947, - 0.0392, - 0.082455, - -0.021453, - 0.033456, - -0.0054029, - -0.011923, - 0.083562, - -0.00096757, - -0.015242, - -0.024989, - -0.0039923, - 0.076695, - 0.067555, - 0.064914, - -0.011806, - 0.070769 - ], - "journey": [ - -0.092973, - -0.039571, - 0.0093233, - 0.063408, - -0.013291, - -0.033302, - -0.059759, - -0.086305, - -0.007539, - 0.031372, - -0.018158, - -0.11118, - -0.069287, - -0.016402, - 0.021495, - -0.057501, - 0.11322, - -0.061081, - 0.046776, - 0.00983, - -0.042694, - 0.037579, - -0.054332, - 0.054959, - 0.0061391, - 0.086438, - 0.0044952, - 0.044601, - -0.087252, - 0.0082547, - -0.057513, - 0.097883, - -0.0070522, - -0.096828, - -0.040161, - 0.035323, - -0.0035113, - 0.025592, - 0.0051556, - -0.012997, - 0.042369, - -0.065517, - -0.01806, - 0.029747, - 0.021758, - 0.031654, - 0.031381, - -0.054544, - -0.057288, - -0.00082384, - 0.0046236, - 0.0094851, - -0.10437, - -0.055997, - -0.13539, - 0.012697, - -0.037037, - -0.019325, - -0.059351, - -0.038954, - 0.0077551, - -0.0026772, - 0.10817, - 0.0020214, - 0.060912, - -0.038749, - -0.0089813, - -0.064325, - -0.074421, - 0.019236, - 0.016718, - -0.012855, - -0.052958, - 0.012625, - 0.0019726, - 0.067701, - -0.029957, - -0.037689, - -0.05709, - 0.0053878, - -0.056961, - -0.025914, - -0.021859, - 0.0645, - -0.051996, - -0.020602, - 0.048857, - -0.011925, - -0.0029582, - -0.061022, - 0.078789, - 0.085721, - -0.093684, - 0.0057054, - -0.0082593, - 0.011934, - 0.070403, - 0.060575, - 0.024566, - -0.054674, - 0.037219, - -0.01182, - 0.0671, - -0.001367, - -0.009925, - -0.061061, - -0.03384, - -0.029688, - -0.020629, - 0.0079093, - 0.061308, - -0.049423, - 0.076141, - 0.0015468, - -0.037099, - 0.072041, - 0.046407, - 0.0061623, - -0.034691, - 0.016073, - 0.076838, - -0.043545, - 0.029611, - 0.082829, - 0.044352, - -0.038878, - 0.030604, - -0.12302, - 0.058394, - 0.088285, - 0.022222, - 0.0042337, - -0.07723, - -0.045956, - 0.019445, - -0.03801, - 0.019344, - 0.023224, - 0.028065, - 0.017167, - -0.016376, - -0.090121, - -0.037126, - 0.0081139, - -0.025688, - 0.015698, - -0.040112, - 0.011393, - -0.085386, - -0.048411, - 0.02368, - 0.036394, - -0.051207, - -0.10068, - 0.030784, - 0.039069, - -0.056881, - 0.028811, - -0.048356, - -0.10029, - 0.067123, - 0.027903, - -0.027248, - 0.061869, - -0.030672, - 0.029215, - 0.033841, - -0.046949, - 0.03378, - 0.014308, - 0.056076, - 0.026298, - -0.05798, - 0.0019905, - 0.078841, - 0.045026, - 0.025977, - 0.018336, - -0.013903, - 0.024364, - -0.010198, - -0.028333, - -0.020375, - -0.025132, - -0.027657, - -0.075489, - 0.011438, - 0.098541, - -0.041933, - -0.048848, - 0.049961, - 0.0065705, - -0.011285, - 0.010444, - -0.022822, - 0.055621, - -0.085538, - 0.013258, - 0.0074739, - 0.011164, - -0.11595, - 0.1093, - 0.09221, - -0.051712, - 0.0018097, - 0.016731, - -0.022558, - 0.019546, - 0.12224, - -0.040061, - 0.089173, - -0.066525, - 0.024747, - -0.046854, - 0.051792, - -0.046622, - 0.054264, - -0.053848, - -0.01393, - -0.063741, - -0.026748, - -0.0062584, - 0.025338, - 0.089168, - -0.025826, - -0.017756, - 0.015705, - 0.11852, - -0.051028, - 0.017835, - -0.010363, - -0.10261, - -0.051855, - 0.043376, - 0.089643, - -0.054449, - 0.023146, - 0.0061508, - -0.031722, - 0.043503, - 0.061351, - 0.036978, - 0.043609, - -0.064399, - -0.019003, - 0.012004, - 0.019301, - -0.10539, - -0.0028483, - 0.082054, - 0.073081, - -0.036233, - 0.022971, - -0.011203, - 0.0075037, - 0.005862, - -0.040789, - 0.050718, - 0.073016, - 0.015203, - 0.003032, - 0.033332, - -0.0078607, - -0.047685, - 0.053471, - -0.056328, - 0.0040861, - 0.018895, - 0.042319, - -0.013073, - 0.028947, - 0.095042, - -0.11738, - -0.012615, - 0.055618, - -0.079578, - 0.041535, - -0.011606, - -0.00010124, - 0.053605, - 0.05962, - -0.026431, - -0.03058, - -0.10855, - -0.0036975, - -0.042748, - -0.025849, - -0.043833, - 0.016882, - 0.00055913, - 0.073795, - 0.045552, - -0.079079, - -0.015739, - -0.0054334, - 0.023919, - 0.091418, - 0.023651, - 0.0040213, - -0.0052309 - ], - "affairs": [ - 0.015734, - -0.19217, - 0.07907, - 0.010975, - 0.03605, - -0.015797, - 0.0065175, - -0.079439, - 0.04504, - 0.064186, - -0.022704, - -0.070276, - 0.033115, - 0.02844, - 0.017344, - -0.003062, - 0.10978, - -0.071362, - 0.046536, - 0.034474, - -0.030107, - 0.0014571, - 0.01059, - 0.081712, - -0.080252, - 0.0067408, - 0.001925, - 0.0237, - 0.0035336, - -0.081093, - 0.023585, - 0.030893, - -0.027538, - -0.081402, - 0.043187, - 0.036114, - -0.046077, - 0.033698, - 0.03271, - -0.006609, - -0.023755, - -0.10697, - -0.046672, - 0.036776, - -0.068121, - 0.0083185, - 0.020972, - -0.04143, - -0.056441, - -0.02345, - -0.00033079, - -0.024327, - 0.046568, - 0.054965, - -0.068162, - 0.025786, - -0.099566, - 0.03178, - -0.020396, - 0.024608, - 0.022792, - 0.048124, - 0.13895, - 0.02283, - 0.066908, - -0.014954, - -0.053521, - 0.0033444, - 0.0092474, - 0.010749, - -0.019406, - -0.040991, - -0.0058067, - -0.014539, - 0.043059, - -0.0048466, - -0.0034959, - 0.0037717, - 0.022204, - -0.028932, - -0.016878, - 0.040832, - -0.069736, - 0.035834, - 0.029269, - 0.020795, - 0.036968, - -0.047839, - 0.022171, - -0.02834, - 0.019994, - 0.11245, - -0.090102, - 0.092246, - -0.022129, - 0.042767, - -0.036556, - 0.008132, - 0.063536, - 0.01348, - 0.0075621, - 0.086395, - -0.035121, - -0.07878, - 0.10485, - -0.057543, - 0.048051, - -0.029759, - 0.019072, - -0.059592, - -0.06548, - 0.029633, - 0.059659, - 0.062166, - 0.025597, - -0.041006, - 0.051296, - -0.0033937, - -0.060122, - -0.009938, - 0.0061745, - -0.0055006, - 0.021085, - 0.047735, - 0.14389, - 0.03948, - -0.052743, - -0.1232, - 0.0073487, - 0.13897, - -0.0065157, - -0.0000021021, - 0.026776, - 0.017908, - -0.058937, - -0.035059, - -0.019939, - 0.020612, - -0.0014846, - -0.0012747, - 0.059151, - -0.038138, - -0.012079, - 0.030333, - 0.045283, - 0.03942, - -0.012946, - 0.0013304, - -0.01968, - -0.045722, - 0.07332, - 0.071123, - 0.047807, - -0.062093, - -0.02921, - -0.03538, - 0.00086336, - 0.050316, - -0.018371, - -0.0076305, - 0.05361, - 0.061798, - -0.085255, - 0.018878, - -0.04916, - 0.032483, - 0.0067516, - 0.0048376, - 0.028117, - 0.021176, - -0.020852, - -0.04036, - -0.046609, - 0.0096909, - -0.033686, - 0.057067, - 0.011071, - 0.063952, - -0.028643, - -0.007651, - 0.018304, - 0.036418, - 0.052261, - 0.012477, - 0.015742, - -0.036016, - 0.039574, - 0.11052, - 0.12976, - -0.052678, - 0.013246, - 0.022064, - -0.064147, - -0.015461, - 0.0041803, - -0.036588, - 0.051165, - 0.058037, - -0.022828, - 0.044594, - -0.12424, - -0.0046008, - 0.017896, - -0.074684, - -0.010717, - -0.055661, - -0.082193, - -0.031769, - -0.0091628, - 0.013148, - 0.081781, - 0.019334, - 0.013302, - 0.052554, - 0.085475, - -0.014564, - -0.032904, - -0.030877, - -0.037723, - 0.059274, - -0.0032314, - -0.043271, - -0.041202, - 0.075392, - -0.058826, - 0.0087462, - 0.0066811, - 0.11072, - -0.0024469, - 0.021908, - -0.01114, - -0.026465, - -0.055843, - -0.073613, - 0.053129, - -0.0071293, - -0.021794, - -0.014002, - 0.062605, - -0.073809, - -0.024454, - -0.039513, - -0.022756, - 0.021208, - 0.030972, - 0.022941, - -0.0094343, - -0.078773, - 0.032233, - -0.022542, - 0.043213, - 0.019006, - 0.02185, - 0.0091238, - 0.016043, - 0.05408, - -0.045062, - 0.083758, - 0.040806, - 0.019323, - -0.023644, - -0.0038931, - -0.00071108, - 0.015422, - -0.049309, - -0.0056841, - 0.0034338, - 0.022222, - 0.0046082, - 0.020114, - -0.065527, - 0.060776, - -0.094163, - -0.022734, - 0.0091854, - -0.0003406, - -0.0045038, - 0.01229, - -0.052958, - -0.017046, - 0.080781, - -0.032208, - 0.030283, - -0.082793, - 0.001078, - 0.03356, - 0.060509, - -0.027121, - -0.044496, - 0.046684, - 0.037868, - 0.024298, - -0.032009, - 0.010889, - -0.021385, - 0.032421, - -0.072757, - 0.062364, - -0.054742, - 0.043318 - ], - "pastimes": [ - 0.036951, - -0.09469, - 0.11013, - -0.08187, - -0.036469, - -0.078693, - -0.057627, - -0.092323, - 0.019294, - 0.013109, - -0.062027, - -0.030195, - -0.024767, - -0.026711, - 0.048545, - -0.0032397, - 0.051203, - -0.0086846, - 0.02895, - -0.0032151, - -0.035899, - 0.0014368, - -0.01731, - 0.054641, - 0.02293, - -0.001549, - 0.028855, - 0.024503, - -0.068799, - -0.06553, - 0.016924, - -0.096842, - 0.054641, - -0.077014, - 0.094171, - -0.014714, - 0.069294, - 0.011808, - 0.000058534, - 0.038196, - 0.0461, - -0.034555, - -0.0089488, - 0.058297, - 0.041855, - -0.040695, - -0.020992, - -0.025624, - -0.038507, - -0.0087254, - -0.05733, - 0.053788, - 0.0079419, - -0.012371, - 0.023559, - -0.050607, - -0.041337, - -0.027762, - 0.013818, - -0.013858, - 0.0084399, - 0.0046354, - 0.14053, - 0.015689, - -0.01738, - 0.008382, - -0.031917, - 0.10293, - 0.013706, - 0.033585, - 0.023743, - -0.025054, - 0.066719, - 0.0071922, - 0.081852, - 0.016069, - 0.012588, - -0.032638, - -0.061514, - -0.035989, - 0.0067196, - 0.025422, - -0.035407, - 0.10168, - 0.016572, - -0.066467, - 0.015209, - 0.048777, - -0.050396, - 0.023224, - 0.085058, - -0.04171, - -0.061696, - -0.020004, - -0.0019503, - 0.034356, - -0.071612, - -0.0056885, - -0.0069336, - 0.024834, - 0.030915, - 0.011134, - -0.044302, - -0.088991, - -0.0048364, - -0.02195, - -0.065001, - 0.056444, - 0.039723, - -0.091582, - -0.046388, - 0.032961, - 0.046203, - 0.04047, - -0.04193, - -0.021374, - -0.041483, - 0.0033341, - -0.044007, - -0.049253, - 0.0067975, - 0.099976, - -0.095196, - -0.042787, - 0.083165, - -0.019061, - -0.046891, - 0.046578, - -0.028697, - 0.12753, - 0.057305, - 0.12412, - 0.007701, - 0.066208, - 0.010437, - -0.09659, - 0.042837, - 0.027192, - 0.011616, - 0.015051, - 0.022257, - -0.0034496, - 0.0028016, - 0.073174, - 0.1345, - 0.0010132, - 0.051123, - -0.058694, - 0.041968, - 0.0055396, - 0.10371, - 0.05117, - -0.10447, - -0.090046, - -0.0037714, - 0.036929, - -0.072937, - 0.12433, - 0.041528, - -0.01973, - 0.060539, - -0.0080722, - -0.015499, - 0.069518, - 0.023362, - -0.022253, - 0.0036454, - -0.051008, - -0.045904, - -0.058296, - 0.021426, - 0.005183, - 0.060334, - -0.02473, - -0.012424, - 0.044573, - 0.035953, - 0.055197, - 0.0022986, - -0.061129, - 0.089599, - 0.0074509, - -0.020731, - -0.11001, - -0.022571, - -0.03355, - -0.024312, - 0.12589, - 0.0090528, - -0.082297, - 0.045747, - 0.0579, - -0.062118, - 0.020248, - 0.040005, - 0.013072, - -0.035489, - 0.011059, - -0.081923, - 0.025881, - -0.11582, - 0.012691, - -0.035955, - -0.079718, - 0.042042, - 0.10437, - 0.02157, - 0.087724, - 0.06849, - -0.0084709, - 0.04279, - 0.01052, - 0.065426, - 0.015373, - 0.049573, - -0.0022894, - -0.062955, - -0.04536, - -0.074034, - -0.035877, - -0.014993, - -0.022909, - -0.0099032, - 0.079789, - 0.031473, - 0.023718, - 0.022383, - 0.076225, - -0.10691, - 0.0049349, - 0.034935, - 0.015483, - -0.16348, - 0.023115, - 0.050372, - 0.074878, - -0.0023336, - 0.0010875, - -0.025651, - -0.017137, - -0.035145, - -0.02263, - -0.025474, - -0.056276, - -0.061672, - 0.023331, - -0.078426, - -0.054338, - -0.052487, - 0.022804, - 0.037566, - -0.0092314, - -0.034486, - 0.017159, - 0.056233, - 0.041406, - -0.068255, - 0.046693, - 0.035583, - 0.042344, - -0.022086, - 0.0048176, - 0.027375, - -0.032166, - 0.021689, - 0.05704, - -0.056346, - -0.037466, - 0.057717, - -0.012279, - 0.05566, - 0.10178, - -0.097896, - -0.065694, - 0.064098, - -0.053361, - 0.065992, - 0.035087, - -0.0048586, - 0.0068398, - 0.026186, - 0.022629, - 0.061053, - 0.0045079, - 0.09016, - 0.069601, - -0.0258, - -0.0053285, - -0.0046197, - 0.065704, - 0.087656, - 0.027156, - 0.028795, - -0.027334, - 0.017706, - 0.072559, - -0.0080509, - 0.058421, - -0.021485, - 0.0018107 - ], - "recreational": [ - 0.027775, - -0.050023, - 0.013099, - 0.028355, - -0.016475, - 0.013731, - -0.058729, - -0.050613, - 0.028605, - 0.005377, - -0.049336, - -0.028744, - -0.020996, - -0.022237, - 0.024208, - -0.018203, - 0.036393, - 0.0064252, - 0.0027547, - -0.0073268, - -0.0058982, - -0.018594, - 0.02399, - 0.068441, - -0.027294, - -0.026234, - -0.020554, - 0.025404, - 0.022762, - 0.022367, - -0.017572, - -0.010583, - 0.027878, - -0.068989, - 0.070153, - 0.035724, - 0.064618, - 0.009035, - 0.011359, - 0.0030927, - 0.055002, - -0.086423, - -0.0082764, - 0.027121, - 0.019551, - -0.01762, - -0.00061538, - 0.02345, - -0.025475, - 0.054879, - -0.056196, - 0.03109, - 0.014204, - 0.015395, - 0.032892, - -0.048126, - 0.031117, - -0.019612, - -0.0017765, - -0.049962, - 0.030917, - 0.0033638, - 0.089942, - -0.018458, - -0.0049575, - -0.016849, - 0.0063367, - -0.018352, - 0.016313, - 0.0076649, - 0.10982, - -0.020135, - 0.056035, - 0.047665, - 0.029484, - -0.021374, - -0.0072207, - -0.024343, - -0.013368, - -0.025399, - -0.00015073, - -0.0012881, - -0.030589, - 0.0096743, - -0.059238, - 0.01257, - 0.003054, - 0.038503, - -0.020364, - -0.0096167, - 0.026841, - 0.021998, - -0.066015, - -0.017213, - 0.030446, - 0.036887, - -0.035354, - -0.0051727, - 0.0072556, - 0.047984, - 0.0068728, - 0.065062, - 0.0054259, - -0.037095, - 0.041078, - -0.075117, - -0.027782, - 0.020367, - -0.039879, - -0.019585, - -0.019343, - 0.066387, - 0.03811, - 0.015755, - 0.012804, - 0.034016, - 0.0054377, - -0.029619, - -0.017027, - 0.0073335, - -0.016661, - 0.072425, - -0.051711, - -0.025334, - 0.095924, - -0.04324, - 0.019329, - -0.064206, - -0.020291, - 0.048277, - 0.041182, - 0.0168, - 0.050661, - 0.019056, - -0.036418, - -0.014437, - 0.027228, - 0.032636, - -0.036469, - -0.01609, - -0.0059317, - 0.03623, - 0.010288, - -0.010085, - 0.032712, - 0.0097967, - 0.033607, - -0.036371, - 0.019135, - 0.040295, - 0.061463, - 0.13297, - -0.015399, - -0.055041, - 0.061633, - 0.022018, - -0.063301, - 0.050257, - 0.052283, - -0.0084511, - 0.02302, - 0.035716, - -0.069995, - 0.029072, - 0.0328, - 0.012055, - 0.051791, - 0.024618, - -0.014806, - -0.014573, - 0.062075, - 0.013329, - 0.071207, - 0.0043589, - -0.02123, - 0.054642, - -0.011383, - 0.019262, - -0.0034453, - 0.029453, - -0.01281, - -0.006531, - -0.015865, - -0.05587, - -0.0074406, - -0.046554, - -0.017, - 0.10433, - -0.029529, - -0.017499, - -0.015506, - 0.031974, - 0.061878, - 0.0056426, - -0.015169, - -0.048908, - -0.032673, - 0.0049438, - -0.012662, - -0.030219, - -0.12328, - 0.044517, - -0.021526, - 0.0057618, - 0.033765, - -0.0087772, - -0.048633, - 0.057248, - -0.00042426, - 0.014703, - 0.097716, - -0.018873, - -0.017202, - 0.0033964, - 0.01134, - 0.034392, - -0.046981, - -0.023528, - -0.05111, - 0.00078859, - -0.029729, - -0.050613, - -0.064295, - 0.078751, - -0.017145, - 0.011331, - -0.013888, - 0.060834, - -0.0045254, - -0.0060243, - -0.040132, - -0.026587, - -0.022329, - 0.01737, - -0.027287, - 0.033347, - 0.0049049, - 0.029954, - -0.029598, - -0.017443, - 0.026385, - 0.034052, - 0.019312, - -0.036156, - -0.13556, - 0.046632, - -0.051935, - 0.023739, - -0.0019131, - -0.0074491, - -0.0024291, - 0.013309, - 0.032178, - -0.0046704, - -0.014819, - 0.018714, - -0.040652, - 0.024483, - 0.015917, - 0.0057689, - 0.033771, - 0.0063047, - -0.005959, - 0.037906, - 0.036253, - 0.017271, - -0.033836, - -0.02635, - 0.096101, - 0.034335, - -0.0034459, - 0.051797, - -0.074121, - -0.04044, - -0.02417, - -0.059104, - 0.020411, - 0.04074, - -0.013465, - 0.0043315, - 0.12527, - -0.012636, - -0.036689, - 0.024719, - 0.026552, - 0.022069, - -0.028041, - -0.013659, - 0.0043561, - -0.053985, - 0.020851, - -0.0091905, - -0.022543, - 0.017204, - -0.0032789, - 0.031973, - -0.022768, - 0.012822, - 0.012342, - -0.017161 - ], - "consume": [ - -0.040676, - 0.021969, - -0.029729, - 0.036491, - 0.012849, - 0.0082741, - -0.019419, - -0.076214, - 0.084051, - 0.0128, - -0.070202, - -0.010813, - -0.051339, - 0.00058098, - 0.014518, - 0.033876, - 0.030669, - -0.032061, - 0.065107, - 0.039085, - -0.0031877, - 0.048195, - -0.057617, - 0.054119, - -0.041382, - -0.051869, - -0.022251, - 0.041444, - -0.034375, - -0.033746, - -0.020859, - 0.012332, - -0.0033451, - 0.082863, - 0.011431, - -0.041933, - 0.0024077, - 0.053827, - 0.018701, - 0.030233, - -0.010061, - -0.0029424, - -0.0074803, - 0.023579, - -0.036491, - -0.058076, - -0.010383, - 0.011426, - -0.016384, - 0.031588, - -0.036371, - 0.02882, - 0.030658, - -0.035599, - -0.12313, - 0.025479, - -0.055795, - 0.0364, - -0.021732, - -0.065823, - 0.037073, - -0.055351, - 0.12023, - 0.042027, - -0.0066693, - 0.034794, - 0.018435, - 0.050653, - -0.0091501, - -0.035653, - 0.084669, - 0.028022, - 0.13405, - 0.014146, - -0.095416, - -0.049766, - 0.009254, - 0.012403, - -0.023958, - 0.018131, - -0.06417, - -0.083845, - -0.0511, - 0.079897, - 0.029485, - 0.04028, - -0.035088, - -0.028527, - 0.024647, - 0.008946, - -0.017101, - 0.023602, - -0.073688, - -0.013466, - -0.055797, - -0.04614, - 0.041231, - -0.030052, - 0.10034, - 0.03252, - -0.025286, - -0.015815, - 0.031137, - 0.0027143, - 0.039914, - -0.082369, - -0.088549, - -0.0041869, - 0.04587, - -0.028765, - -0.019058, - 0.048421, - 0.072883, - -0.019773, - 0.0031489, - -0.051946, - -0.066888, - 0.0029087, - -0.024958, - -0.0012023, - -0.039884, - 0.049726, - -0.0041817, - -0.13902, - 0.095121, - -0.027766, - -0.03269, - -0.066556, - 0.071141, - 0.035189, - -0.046449, - 0.011707, - 0.10264, - -0.0090457, - 0.075607, - -0.024103, - -0.076438, - 0.054497, - 0.043692, - 0.097317, - 0.07922, - -0.042484, - 0.021602, - 0.019312, - 0.028538, - 0.020938, - 0.065033, - -0.0032204, - 0.0030887, - -0.039747, - 0.038302, - 0.059559, - -0.092485, - 0.011491, - 0.0424, - -0.050702, - -0.072996, - 0.078188, - -0.011253, - -0.07042, - 0.050165, - 0.07744, - -0.038005, - 0.010571, - 0.049124, - 0.017056, - 0.027155, - -0.0039625, - -0.0096375, - -0.038643, - 0.027785, - -0.031771, - -0.0067179, - -0.00438, - -0.062422, - 0.052104, - -0.008008, - 0.02511, - -0.041586, - 0.024656, - 0.032809, - -0.011757, - -0.051381, - 0.050204, - -0.046276, - -0.062948, - 0.028317, - 0.13844, - 0.033774, - -0.022337, - 0.071533, - -0.043716, - -0.11244, - 0.049829, - 0.057401, - -0.036291, - 0.031504, - -0.010655, - -0.0050344, - 0.080106, - -0.16625, - 0.022089, - -0.031046, - -0.06088, - 0.0067477, - 0.043413, - -0.009849, - 0.042702, - -0.011564, - -0.045183, - -0.016081, - -0.054696, - 0.034155, - -0.041857, - 0.019736, - -0.03028, - 0.032758, - -0.023026, - -0.029169, - 0.031962, - -0.046522, - 0.026518, - -0.046223, - 0.080024, - 0.041474, - -0.036726, - 0.017106, - 0.083639, - -0.033276, - -0.0049605, - -0.024658, - -0.071098, - -0.13341, - -0.016041, - -0.0040606, - -0.024207, - -0.049061, - -0.016769, - 0.012098, - -0.16716, - 0.16738, - 0.0044236, - -0.0072678, - -0.03167, - -0.076685, - 0.069571, - -0.033899, - -0.044946, - 0.052358, - -0.045121, - 0.013392, - -0.054294, - -0.062889, - 0.015788, - -0.0092446, - 0.040311, - -0.042449, - -0.026546, - 0.05733, - 0.01406, - -0.0045611, - 0.038828, - -0.026287, - -0.092727, - 0.087512, - -0.01251, - 0.0039844, - -0.085298, - 0.011575, - 0.057103, - 0.02302, - 0.083946, - -0.091201, - -0.05223, - -0.076425, - 0.029394, - 0.012978, - -0.029476, - 0.0099755, - 0.020677, - -0.063982, - 0.10072, - -0.051254, - -0.013452, - -0.022664, - 0.030947, - 0.02378, - -0.024079, - 0.088582, - -0.021542, - 0.0094727, - 0.070308, - -0.024417, - -0.028059, - 0.027549, - -0.02165, - 0.0098005, - -0.028663, - 0.016857, - 0.10001 - ], - "supply": [ - 0.052339, - 0.054617, - -0.036732, - -0.017333, - -0.054757, - -0.013585, - -0.038231, - -0.12005, - 0.0070063, - -0.0092859, - -0.0091816, - -0.01369, - -0.0065862, - 0.017389, - 0.028658, - 0.0052494, - 0.064611, - -0.0082272, - 0.12122, - -0.041254, - 0.047812, - 0.011402, - -0.0048996, - 0.041121, - -0.011895, - -0.023712, - -0.027349, - 0.034218, - -0.040606, - 0.063791, - 0.03139, - 0.11054, - -0.0055495, - -0.0189, - 0.013707, - -0.013245, - -0.0082236, - 0.034397, - 0.058048, - 0.025013, - -0.014066, - -0.12342, - 0.10948, - -0.01904, - 0.0032812, - -0.059488, - -0.028578, - -0.0052211, - -0.016707, - 0.010246, - -0.021879, - 0.028455, - 0.030715, - -0.0020336, - -0.10683, - -0.0074189, - 0.037321, - 0.038004, - -0.0069065, - -0.016282, - -0.032187, - 0.022371, - 0.17632, - 0.041792, - 0.049825, - 0.010079, - -0.0089909, - -0.065248, - 0.0014108, - -0.078282, - 0.046153, - 0.03, - 0.15104, - -0.06631, - -0.019983, - -0.023038, - 0.070639, - -0.025486, - -0.052452, - -0.033759, - -0.030082, - -0.068609, - -0.0065017, - 0.11079, - 0.0070255, - 0.071813, - -0.012289, - -0.091423, - -0.062133, - -0.054942, - 0.05698, - 0.001356, - -0.09182, - -0.042741, - -0.077287, - -0.016841, - 0.015343, - -0.023211, - -0.0026889, - -0.052093, - 0.0056337, - -0.011014, - 0.0089333, - 0.077491, - 0.042745, - -0.1305, - -0.0022914, - 0.011793, - 0.042323, - 0.00095514, - 0.032067, - 0.066002, - 0.09833, - -0.041731, - 0.039568, - -0.031053, - -0.017035, - -0.037043, - -0.075772, - -0.078029, - 0.033644, - 0.01145, - 0.0047878, - -0.02541, - 0.1028, - 0.014663, - -0.054441, - -0.1129, - 0.044328, - 0.088513, - 0.029218, - -0.012323, - -0.018276, - -0.0059794, - 0.13503, - 0.028126, - -0.04794, - 0.039222, - 0.0097163, - 0.056469, - 0.074389, - -0.012556, - -0.036516, - 0.000058996, - 0.030886, - -0.034068, - 0.01008, - 0.0087888, - -0.0053268, - -0.020263, - -0.014894, - 0.085579, - -0.0091729, - -0.10304, - 0.0017085, - 0.014087, - -0.039194, - -0.036676, - -0.017306, - 0.04277, - 0.041156, - -0.026009, - -0.076307, - 0.046823, - -0.0052341, - 0.013743, - 0.020924, - 0.0044442, - 0.091611, - 0.029982, - 0.025057, - 0.0081034, - -0.0041446, - -0.051636, - -0.031914, - 0.052616, - -0.055678, - 0.0081116, - -0.052045, - 0.079855, - -0.077344, - -0.0030993, - -0.021755, - -0.11632, - 0.014845, - -0.092964, - 0.0084204, - 0.10549, - -0.034575, - 0.0045134, - 0.014015, - 0.065379, - -0.021416, - -0.064878, - 0.074425, - -0.037948, - 0.026342, - -0.0073039, - 0.022035, - 0.078151, - -0.1909, - 0.051731, - -0.084302, - 0.043374, - 0.041224, - -0.068355, - -0.028576, - 0.025662, - 0.013273, - -0.033307, - 0.097754, - 0.0091253, - -0.0041266, - 0.045591, - -0.0097627, - 0.043341, - -0.016852, - -0.019491, - 0.000031378, - 0.0096884, - 0.089992, - -0.049182, - -0.00012545, - 0.12043, - 0.080924, - -0.0035022, - -0.0034524, - 0.086379, - 0.050821, - -0.05008, - -0.016875, - -0.056272, - -0.056441, - -0.025865, - 0.013246, - 0.044084, - -0.022179, - 0.015586, - 0.0064448, - -0.1065, - 0.15462, - -0.0043124, - 0.019724, - -0.04761, - -0.1199, - -0.029293, - -0.067905, - -0.021606, - 0.0033433, - -0.021679, - 0.0039831, - -0.040871, - 0.064611, - 0.010407, - 0.0034307, - 0.033663, - 0.041485, - 0.051173, - 0.034346, - 0.091458, - -0.077446, - -0.049985, - -0.016178, - -0.08309, - -0.00033407, - 0.048228, - 0.0010077, - -0.00029199, - -0.026986, - -0.00067413, - 0.042153, - 0.0907, - -0.12743, - -0.076716, - -0.046961, - 0.035195, - -0.035253, - -0.0055801, - -0.035619, - 0.073385, - 0.064038, - 0.035815, - 0.0041138, - 0.0054857, - -0.023499, - 0.031391, - -0.063717, - 0.048635, - 0.064351, - 0.023645, - -0.038921, - 0.096288, - -0.018123, - 0.021859, - -0.040368, - -0.014557, - -0.037083, - -0.039415, - -0.067581, - 0.014525 - ], - "forecaster": [ - -0.0086661, - -0.09419, - -0.051671, - -0.050593, - 0.014749, - -0.082354, - -0.0072521, - -0.08728, - 0.0050936, - -0.017268, - 0.0075997, - 0.053357, - -0.10501, - -0.027622, - 0.0029236, - 0.077294, - 0.053406, - -0.011811, - 0.021661, - 0.029417, - 0.090052, - 0.06346, - 0.050838, - 0.048715, - 0.018143, - -0.0035796, - -0.030695, - 0.033682, - -0.049169, - 0.047259, - -0.045845, - -0.0028091, - 0.061529, - -0.042693, - -0.0046145, - 0.030146, - 0.009726, - 0.04139, - -0.0036146, - 0.020646, - -0.063543, - -0.11177, - 0.0059094, - 0.026585, - -0.050873, - 0.0063163, - 0.022391, - -0.069073, - -0.01235, - -0.017181, - -0.029325, - 0.015, - 0.027697, - 0.064826, - 0.0019458, - -0.045911, - 0.038437, - -0.017676, - -0.081069, - -0.046883, - -0.040802, - 0.0085842, - 0.071653, - 0.02669, - -0.018077, - 0.028825, - -0.03107, - 0.034743, - 0.025215, - 0.021076, - 0.065558, - 0.010459, - 0.020719, - -0.030593, - -0.022946, - -0.039896, - 0.012986, - -0.029177, - -0.03754, - -0.037499, - -0.020019, - 0.095549, - -0.010386, - 0.0084109, - -0.020323, - -0.028214, - 0.01271, - 0.044358, - -0.0093301, - -0.086506, - -0.014043, - 0.0033886, - -0.054848, - -0.069902, - -0.0042305, - 0.060941, - -0.0020465, - 0.020431, - 0.04519, - 0.042526, - 0.033915, - -0.11473, - -0.0048582, - -0.0049609, - -0.020307, - -0.10786, - 0.044342, - -0.012178, - -0.0089106, - -0.0096875, - -0.06841, - 0.061451, - 0.03442, - 0.0070456, - -0.031093, - -0.08923, - -0.037216, - 0.035611, - 0.014465, - 0.038822, - 0.0049516, - -0.020008, - 0.093447, - 0.056813, - 0.052423, - 0.023659, - 0.049424, - 0.012945, - -0.11305, - 0.11603, - 0.024154, - -0.0034063, - 0.0097093, - -0.010684, - -0.021656, - 0.0099021, - 0.057227, - 0.078684, - -0.0067199, - 0.056084, - 0.029079, - -0.053661, - -0.048091, - -0.052259, - -0.097836, - -0.011236, - -0.045561, - -0.024707, - 0.00353, - -0.0058686, - 0.036912, - 0.066391, - -0.023476, - -0.10679, - 0.03554, - -0.024617, - 0.017206, - 0.038056, - -0.087033, - 0.039702, - 0.087613, - -0.048402, - 0.00061463, - 0.018062, - -0.023301, - -0.0638, - -0.088735, - -0.055332, - 0.0022659, - 0.083563, - -0.069078, - -0.028686, - -0.015769, - -0.095737, - 0.034879, - -0.0034479, - 0.033521, - -0.01453, - -0.0231, - 0.035882, - -0.026324, - -0.029787, - -0.053427, - -0.081073, - 0.032096, - -0.049196, - -0.037989, - 0.081229, - -0.012827, - -0.053273, - 0.0039395, - 0.050812, - -0.021506, - -0.027772, - -0.016183, - -0.088421, - 0.0019717, - 0.045142, - -0.018337, - 0.04215, - -0.077412, - 0.01764, - -0.026405, - 0.028268, - -0.0075436, - 0.092993, - -0.014858, - 0.0082475, - -0.01429, - -0.0042997, - 0.047675, - 0.046499, - -0.028255, - -0.0020528, - -0.068524, - 0.012937, - 0.019227, - -0.054779, - 0.012269, - 0.078317, - -0.054264, - -0.018742, - 0.026311, - 0.089264, - 0.066422, - 0.0027612, - -0.081369, - 0.056228, - 0.015949, - -0.0018697, - 0.063827, - -0.038823, - -0.019458, - 0.0018772, - 0.016497, - 0.009756, - 0.042614, - -0.083323, - 0.065848, - -0.0040111, - 0.082986, - 0.073075, - 0.029909, - -0.0019562, - 0.000090975, - 0.0032211, - -0.018526, - 0.013796, - 0.075493, - -0.028036, - 0.085129, - 0.036231, - 0.11698, - 0.095627, - 0.034467, - -0.0073438, - 0.024107, - 0.093561, - 0.032338, - 0.053905, - 0.12538, - 0.0388, - -0.027796, - 0.05492, - -0.051752, - -0.056473, - 0.020129, - 0.030115, - 0.074351, - -0.0025307, - -0.046172, - 0.04923, - -0.084825, - -0.0019891, - -0.010595, - -0.020764, - -0.033005, - -0.029458, - -0.02465, - -0.054639, - 0.025205, - 0.014413, - -0.0033858, - 0.025189, - 0.0067624, - -0.045824, - -0.010943, - -0.032827, - -0.046825, - 0.016507, - -0.037085, - -0.024004, - 0.056931, - 0.067921, - 0.046441, - 0.017256, - -0.098665, - 0.00089469, - 0.085953, - -0.05543 - ], - "Travel": [ - -0.054159, - 0.0027465, - -0.035699, - 0.028466, - -0.025784, - 0.031991, - -0.038548, - -0.027364, - 0.043701, - 0.019755, - 0.012238, - -0.078634, - -0.074815, - -0.13593, - 0.0092775, - -0.031165, - 0.077838, - -0.061337, - 0.078009, - -0.0065644, - -0.015586, - 0.023107, - 0.0045443, - 0.070796, - 0.036059, - 0.049837, - -0.044606, - 0.062604, - -0.013994, - 0.0080342, - -0.020556, - 0.039683, - 0.048262, - 0.043153, - 0.12613, - 0.023291, - 0.0097063, - 0.051178, - 0.060586, - 0.054911, - 0.0094466, - 0.071237, - -0.014523, - -0.0082041, - 0.028124, - 0.014233, - 0.053612, - -0.02554, - -0.0037249, - -0.044524, - 0.030813, - 0.02923, - 0.0032454, - 0.0082594, - -0.075224, - 0.048357, - -0.046571, - -0.0028243, - -0.13878, - 0.026591, - 0.025739, - 0.024237, - -0.090451, - 0.047048, - 0.014292, - -0.038636, - -0.06764, - -0.026906, - -0.024447, - 0.019904, - 0.010582, - -0.031723, - -0.028847, - 0.084367, - 0.035471, - -0.0065386, - 0.025714, - -0.099749, - -0.051005, - -0.078743, - -0.013439, - -0.024122, - -0.0493, - -0.0095281, - 0.021666, - -0.093438, - 0.019737, - -0.074952, - 0.0032801, - -0.019676, - 0.038827, - 0.01255, - -0.059239, - -0.02309, - -0.083402, - 0.13835, - -0.0061783, - 0.032201, - -0.029293, - -0.048212, - 0.046328, - 0.13566, - -0.026789, - -0.084898, - -0.080778, - -0.1903, - 0.024969, - -0.028012, - 0.040919, - 0.014449, - 0.037845, - 0.061195, - 0.093833, - 0.12567, - -0.048261, - -0.000089253, - -0.030363, - -0.074047, - 0.11695, - 0.090282, - 0.076901, - 0.021434, - -0.10112, - -0.040732, - 0.03179, - -0.060533, - -0.069376, - -0.073307, - 0.035524, - 0.30914, - -0.018536, - 0.03635, - -0.015387, - -0.090943, - 0.03297, - 0.024447, - 0.039487, - 0.0063539, - -0.051824, - 0.011887, - 0.031662, - -0.064421, - -0.029613, - -0.0045277, - -0.013253, - 0.023444, - -0.034612, - -0.063895, - -0.024294, - -0.067518, - 0.035925, - 0.028176, - -0.023545, - -0.042809, - 0.046889, - 0.072363, - -0.019246, - 0.052044, - -0.062993, - -0.01977, - 0.00023695, - -0.014673, - -0.10241, - 0.022727, - 0.004279, - 0.09021, - 0.058546, - -0.12923, - 0.077945, - 0.067013, - 0.0038535, - 0.015574, - -0.043554, - -0.068196, - -0.012564, - 0.042145, - -0.12144, - 0.025576, - 0.015609, - 0.075903, - -0.027951, - 0.019411, - 0.070428, - 0.01828, - -0.023715, - 0.18889, - 0.090879, - 0.21298, - -0.0079782, - -0.071915, - 0.055335, - 0.059688, - -0.015951, - 0.024977, - -0.069315, - 0.045329, - -0.031096, - -0.042464, - 0.022617, - -0.021336, - -0.0060165, - 0.1525, - 0.04768, - 0.0020966, - 0.032413, - 0.018945, - -0.077833, - -0.011324, - 0.13159, - 0.033355, - 0.17282, - 0.0098201, - -0.04233, - -0.022496, - 0.046784, - -0.015765, - 0.0079097, - -0.050718, - -0.0018743, - 0.0093523, - -0.00228, - 0.0082166, - -0.0042426, - 0.10142, - 0.025312, - 0.017715, - -0.075005, - 0.032131, - -0.047744, - 0.0043465, - 0.038097, - -0.080078, - 0.051177, - -0.017914, - -0.0091617, - -0.087484, - 0.062833, - 0.0056901, - -0.0026914, - 0.054846, - 0.062865, - 0.044961, - 0.032442, - -0.069675, - 0.17357, - -0.010164, - 0.089483, - -0.028775, - -0.017109, - -0.091225, - 0.054294, - 0.022697, - 0.010438, - 0.074001, - -0.015866, - -0.016601, - -0.050287, - 0.014584, - 0.03187, - 0.0733, - -0.018523, - 0.00084375, - -0.14927, - -0.040378, - -0.00786, - 0.033167, - 0.016054, - -0.01922, - 0.087722, - -0.0010504, - -0.059142, - 0.11998, - -0.084436, - 0.042864, - -0.032209, - -0.0956, - 0.027018, - -0.02262, - -0.048841, - 0.012144, - 0.021755, - -0.034255, - -0.0039192, - -0.029589, - 0.06757, - 0.0097451, - -0.036337, - 0.052851, - -0.076422, - -0.070845, - 0.12851, - -0.038685, - -0.003185, - -0.052131, - 0.017921, - 0.069584, - 0.047175, - 0.089298, - -0.018859, - -0.059707 - ], - "robotics": [ - -0.020071, - -0.095285, - 0.005033, - -0.034149, - -0.06115, - -0.036268, - 0.0252, - -0.080638, - 0.029931, - -0.045561, - 0.087953, - -0.02995, - 0.05481, - 0.093203, - -0.0057904, - -0.01137, - 0.10882, - 0.10072, - 0.051242, - 0.033462, - 0.07717, - 0.030496, - 0.080127, - 0.06924, - 0.023082, - 0.036144, - 0.0093144, - -0.035965, - 0.030764, - 0.00047501, - -0.021536, - -0.052611, - 0.10797, - -0.050968, - 0.036386, - 0.01586, - 0.012736, - -0.075056, - 0.068249, - -0.0012707, - -0.097857, - -0.1205, - 0.029648, - -0.015488, - 0.0095629, - -0.030847, - 0.013472, - -0.012612, - 0.017477, - -0.011785, - -0.0009497, - 0.12573, - -0.0081547, - -0.0011153, - -0.07187, - -0.051338, - 0.02466, - 0.0044904, - 0.017299, - 0.050815, - -0.042754, - 0.06123, - 0.040663, - 0.12687, - 0.069486, - 0.040307, - 0.079836, - -0.0064234, - -0.031258, - -0.0082984, - 0.00081594, - 0.00057474, - 0.035533, - -0.0088172, - 0.038918, - -0.0083714, - 0.014292, - -0.029829, - 0.040345, - -0.025339, - -0.023179, - 0.030203, - -0.082278, - 0.03426, - 0.0080119, - -0.041443, - -0.032356, - -0.013093, - 0.012023, - -0.0097535, - 0.050447, - 0.054976, - -0.092675, - 0.034473, - 0.036271, - 0.097889, - -0.049319, - -0.016151, - -0.07214, - 0.014439, - 0.066493, - 0.019967, - -0.0049072, - -0.047022, - 0.0073275, - -0.071743, - 0.0001955, - 0.13145, - 0.014832, - -0.036828, - -0.09813, - 0.073842, - 0.057374, - 0.027018, - 0.10005, - 0.11039, - -0.11412, - -0.049113, - -0.028925, - 0.043703, - -0.1575, - 0.063271, - -0.030333, - 0.0047086, - 0.081803, - 0.0014236, - -0.027242, - -0.061956, - -0.029855, - 0.10155, - -0.051702, - 0.02818, - 0.016728, - -0.032972, - 0.064211, - -0.061846, - 0.055685, - -0.00071735, - -0.055772, - 0.061449, - -0.0016204, - 0.044629, - 0.078989, - 0.0064515, - -0.03788, - -0.056006, - -0.044544, - -0.036579, - -0.0036658, - -0.049263, - 0.089155, - 0.084481, - 0.02408, - -0.058815, - -0.0076483, - 0.06814, - -0.044848, - 0.06663, - 0.084001, - 0.022719, - 0.035177, - -0.028623, - -0.07324, - -0.019627, - -0.025372, - 0.000075778, - -0.079557, - 0.0019204, - 0.057026, - -0.0014082, - 0.037869, - -0.023481, - -0.055669, - -0.0078967, - 0.047926, - 0.073118, - 0.0026129, - 0.060074, - -0.038112, - 0.053469, - 0.022841, - -0.062192, - -0.0047939, - -0.026795, - 0.0065715, - 0.025491, - -0.028724, - 0.11574, - -0.053376, - -0.0077254, - -0.062265, - 0.10596, - -0.020311, - -0.099319, - 0.046834, - 0.030239, - -0.11183, - -0.014169, - 0.053509, - -0.0030616, - -0.15176, - -0.021858, - 0.06052, - -0.026034, - -0.0014038, - -0.041894, - -0.045341, - -0.013513, - 0.0011825, - -0.010381, - 0.13141, - 0.031516, - 0.014355, - -0.021054, - -0.0016891, - 0.0016471, - -0.044612, - -0.0022421, - -0.031854, - -0.092574, - -0.032231, - -0.031648, - -0.051555, - 0.096427, - -0.0047757, - -0.030965, - 0.0042204, - 0.078589, - -0.060944, - -0.010861, - -0.066, - -0.020929, - -0.058524, - -0.049221, - 0.01528, - -0.031722, - 0.077325, - 0.013884, - -0.037601, - 0.0011742, - 0.0059745, - 0.053176, - 0.021694, - -0.04898, - 0.034897, - -0.013429, - -0.045848, - -0.0051739, - 0.024976, - -0.0035614, - 0.061622, - 0.05813, - -0.035502, - -0.10406, - -0.012891, - 0.039811, - -0.004311, - 0.0014205, - 0.028407, - -0.03047, - -0.0086173, - 0.036393, - -0.057941, - -0.0077424, - 0.0048014, - 0.018592, - 0.040367, - 0.014974, - 0.041287, - -0.012231, - 0.013384, - 0.067568, - -0.10837, - 0.0026416, - -0.051343, - -0.018286, - -0.017752, - 0.030155, - -0.019029, - -0.014624, - 0.077186, - -0.015155, - -0.0068666, - -0.032272, - -0.061423, - -0.065976, - -0.01392, - -0.029114, - 0.028958, - 0.081631, - -0.029452, - -0.04085, - -0.00081504, - -0.071808, - 0.022262, - -0.060366, - -0.038783, - 0.068076, - 0.018087, - -0.0041618 - ], - "private-sector": [ - 0.016977, - -0.023482, - -0.0087049, - 0.012206, - -0.037988, - -0.0074283, - 0.027416, - -0.053871, - 0.02674, - 0.038102, - -0.01166, - -0.023845, - -0.030905, - 0.0091213, - -0.046824, - 0.049873, - 0.056789, - 0.038464, - 0.036809, - -0.0077136, - 0.00033257, - 0.031474, - 0.0090327, - 0.052677, - -0.014221, - -0.0011059, - -0.0050204, - 0.028149, - -0.0056375, - -0.024295, - 0.0054571, - -0.032754, - -0.030682, - -0.025739, - 0.037636, - 0.059782, - -0.026556, - 0.037788, - 0.043073, - 0.028348, - -0.037823, - -0.071781, - -0.00054871, - 0.032368, - -0.0016289, - 0.0074904, - -0.02172, - 0.016685, - -0.024458, - -0.0072652, - -0.012809, - -0.0057015, - -0.002147, - -0.0044772, - 0.019058, - -0.032087, - -0.025448, - 0.027561, - -0.012612, - -0.019333, - 0.010182, - 0.042084, - 0.069295, - -0.021936, - 0.025652, - -0.031482, - -0.016235, - -0.05568, - 0.013779, - -0.025823, - 0.0090234, - 0.0016203, - 0.061932, - 0.030833, - -0.0060158, - 0.019908, - -0.0335, - -0.015839, - 0.039646, - -0.017022, - -0.034608, - 0.0055044, - 0.0074167, - 0.027828, - 0.0020041, - 0.0032319, - -0.013613, - 0.0042023, - -0.0040283, - 0.023521, - -0.021088, - 0.043258, - -0.071861, - -0.0065345, - -0.035897, - 0.073398, - 0.036305, - -0.031335, - 0.027132, - 0.0076573, - -0.0071809, - -0.063168, - -0.005055, - -0.028945, - 0.015326, - -0.044606, - 0.042835, - 0.011265, - 0.014375, - 0.0049287, - -0.020887, - 0.092426, - 0.016584, - 0.038676, - 0.022482, - -0.023671, - 0.0088874, - 0.017736, - -0.026025, - 0.045597, - -0.018649, - -0.012051, - 0.017396, - -0.0036291, - 0.069829, - 0.0011186, - -0.024672, - -0.0080208, - 0.023969, - 0.042331, - -0.018126, - 0.042581, - -0.012845, - 0.007987, - -0.0063571, - -0.046483, - 0.0026056, - 0.011748, - -0.0041605, - 0.018819, - 0.028199, - -0.035383, - 0.0039502, - 0.018916, - -0.013837, - -0.051849, - -0.0020253, - 0.0071261, - 0.03882, - -0.032544, - 0.037138, - 0.12159, - 0.0055137, - -0.028002, - -0.0083656, - 0.010187, - -0.018366, - -0.0061869, - -0.033973, - 0.0057322, - 0.026216, - -0.02262, - -0.0012689, - 0.016296, - -0.023972, - 0.0097519, - 0.0021376, - -0.020769, - 0.030327, - 0.011398, - -0.017638, - 0.016777, - -0.020347, - 0.0031162, - -0.032506, - 0.034008, - -0.038498, - 0.012803, - -0.010292, - 0.011822, - 0.015523, - -0.067512, - -0.015265, - 0.018688, - -0.031994, - -0.060037, - -0.012536, - 0.08564, - -0.012063, - -0.012693, - -0.028812, - 0.027882, - 0.051928, - 0.0036979, - 0.0014463, - -0.029822, - -0.016038, - -0.028843, - -0.0038945, - -0.073176, - -0.11392, - 0.029671, - -0.023626, - -0.0040621, - -0.0084062, - -0.00022657, - -0.01117, - 0.032015, - -0.02317, - -0.0057056, - 0.10472, - 0.0049659, - 0.013788, - -0.0010027, - -0.051819, - 0.050205, - 0.00046522, - -0.027411, - 0.031194, - 0.0086994, - 0.00044038, - -0.056249, - -0.046408, - 0.049607, - -0.00048542, - 0.03051, - 0.008863, - 0.000085031, - 0.048109, - -0.052312, - -0.0010617, - 0.0054738, - -0.011931, - -0.014755, - -0.0021987, - -0.016996, - -0.027719, - -0.013256, - -0.001323, - 0.003393, - -0.00090488, - -0.0014753, - 0.034484, - 0.0036692, - -0.052445, - -0.00076094, - -0.013613, - 0.0094596, - 0.0016716, - -0.013599, - 0.0073476, - -0.016634, - 0.0057136, - -0.057929, - 0.024309, - 0.048981, - 0.0010916, - 0.00094477, - -0.012866, - -0.0037316, - 0.033496, - -0.013423, - 0.021349, - 0.016462, - -0.023777, - 0.051901, - 0.0037721, - 0.034794, - -0.028275, - 0.036638, - -0.02561, - 0.034321, - -0.07119, - -0.017853, - -0.02397, - -0.034411, - 0.0054153, - -0.028618, - 0.041495, - -0.0015965, - 0.11568, - -0.0011729, - 0.015268, - 0.036431, - -0.037985, - -0.0087304, - -0.015154, - -0.026362, - -0.016129, - 0.0040963, - -0.0014256, - -0.010208, - -0.01138, - 0.00064992, - 0.013342, - 0.019613, - -0.052029, - -0.037463, - -0.0042645, - -0.046842 - ], - "community": [ - 0.042361, - -0.069593, - 0.030589, - 0.018256, - -0.072574, - 0.0034518, - -0.0026634, - -0.071147, - 0.04277, - 0.0029175, - -0.0090546, - -0.055678, - 0.0050844, - -0.029033, - -0.01531, - -0.0094016, - 0.097056, - 0.032974, - 0.054107, - 0.033743, - -0.030477, - -0.013355, - 0.018254, - 0.078164, - -0.00026992, - -0.00067325, - -0.026135, - 0.0055827, - -0.025065, - 0.01641, - -0.014412, - -0.023656, - 0.0019079, - -0.032129, - 0.024184, - 0.042553, - 0.02175, - 0.029741, - -0.038296, - -0.044841, - -0.010694, - -0.081656, - -0.011713, - -0.0051739, - 0.017152, - -0.026195, - -0.026608, - 0.038057, - -0.03248, - 0.015199, - 0.014306, - 0.0086069, - 0.028118, - 0.0072936, - -0.022568, - 0.023968, - 0.0061928, - 0.011319, - -0.028212, - -0.015392, - -0.0054302, - 0.0037762, - 0.061745, - -0.027293, - 0.046406, - -0.029287, - 0.0055488, - -0.016234, - 0.0039567, - -0.058035, - 0.049172, - -0.0055194, - 0.034915, - -0.022325, - 0.033749, - -0.030681, - -0.02154, - -0.0094606, - 0.058619, - -0.019467, - -0.022053, - 0.058795, - -0.012882, - 0.08078, - -0.055994, - 0.018676, - -0.03899, - -0.034456, - -0.0057931, - 0.00012941, - 0.0084784, - 0.058024, - -0.064601, - -0.012582, - -0.026738, - 0.080951, - 0.027483, - 0.017554, - 0.02558, - 0.020365, - 0.012858, - -0.0056419, - 0.031708, - 0.0014795, - 0.039365, - -0.099579, - 0.01495, - 0.038699, - -0.01642, - -0.00045391, - -0.056545, - 0.074983, - 0.041906, - 0.00080757, - 0.0057379, - -0.014802, - -0.018447, - -0.043335, - -0.045805, - -0.022379, - -0.036534, - -0.020573, - 0.036226, - 0.00042982, - 0.046997, - -0.014951, - -0.011094, - -0.09236, - 0.017353, - 0.06187, - 0.040202, - 0.021931, - 0.023326, - 0.023407, - 0.02965, - 0.018235, - -0.020966, - 0.026629, - -0.012301, - -0.027701, - 0.0029265, - -0.016882, - 0.031793, - 0.0035998, - -0.018556, - 0.026336, - 0.012029, - -0.0017432, - -0.0054447, - -0.010223, - 0.048457, - 0.06406, - -0.0033329, - -0.031502, - 0.044589, - -0.0055704, - 0.027758, - 0.048921, - -0.0086331, - -0.029051, - 0.031895, - 0.01926, - -0.031627, - 0.013646, - -0.02932, - 0.036329, - 0.048228, - -0.0020271, - -0.052788, - 0.041569, - 0.012862, - 0.010934, - 0.021, - 0.0080435, - -0.011452, - 0.037992, - 0.021665, - 0.057183, - -0.011592, - -0.039614, - -0.047884, - 0.036114, - 0.0041847, - 0.029467, - -0.028867, - -0.025684, - -0.010797, - 0.071993, - 0.033345, - -0.044419, - -0.045631, - 0.053265, - -0.011537, - -0.0015879, - 0.024946, - -0.0034332, - 0.0052966, - 0.0045815, - -0.0056834, - -0.029137, - -0.132, - 0.020786, - -0.01054, - 0.00064357, - -0.036368, - 0.012927, - 0.0061655, - 0.0062861, - -0.014722, - -0.0093334, - 0.069129, - -0.034113, - -0.0086879, - -0.019448, - -0.050634, - -0.00051781, - 0.0055433, - 0.0089876, - 0.038858, - 0.00048378, - 0.0038099, - -0.079013, - -0.024544, - 0.086295, - -0.0020702, - 0.003314, - -0.00578, - 0.075665, - 0.020605, - -0.016161, - -0.012771, - -0.033309, - -0.055422, - 0.047591, - -0.0098048, - 0.05335, - -0.017115, - 0.048418, - -0.014188, - -0.0086674, - 0.057627, - 0.011611, - 0.039648, - 0.041306, - 0.019888, - 0.022365, - -0.0094949, - -0.0082238, - -0.018086, - -0.047323, - 0.056734, - 0.015996, - 0.0060558, - -0.042993, - 0.00029676, - 0.0021465, - -0.025388, - 0.064679, - -0.020885, - -0.006687, - -0.013008, - 0.010934, - -0.0098321, - -0.02278, - 0.0060058, - -0.021449, - 0.035068, - 0.028083, - 0.00636, - 0.025339, - 0.0026788, - 0.043501, - -0.10508, - -0.041648, - 0.045614, - -0.0144, - 0.006513, - 0.0020591, - -0.044283, - 0.029471, - 0.040581, - -0.0087327, - -0.059307, - 0.012658, - -0.0024785, - -0.012324, - -0.0033118, - -0.064914, - -0.017427, - 0.008211, - 0.048339, - 0.036702, - -0.015381, - 0.007472, - 0.024612, - 0.046122, - 0.028856, - 0.014153, - -0.027791, - 0.010788 - ], - "hygiene": [ - -0.034839, - -0.060415, - 0.026998, - -0.056776, - -0.015668, - -0.017549, - 0.015394, - -0.039761, - 0.075002, - -0.014681, - 0.017676, - -0.026661, - 0.041876, - -0.069795, - -0.023546, - -0.04558, - 0.10135, - 0.074205, - 0.0085305, - 0.082677, - 0.015893, - 0.01926, - 0.096817, - 0.045036, - -0.088353, - -0.0055894, - -0.012051, - 0.025819, - 0.015473, - -0.0083972, - 0.041749, - -0.040054, - 0.093748, - -0.087521, - 0.062204, - 0.09333, - 0.018083, - -0.0030339, - 0.048568, - -0.0079339, - 0.038047, - -0.1451, - -0.033396, - 0.016763, - 0.028226, - -0.090723, - 0.0046888, - -0.069252, - -0.027682, - -0.016444, - 0.012293, - -0.024168, - 0.058737, - -0.057727, - -0.039247, - 0.12234, - -0.047588, - -0.032176, - 0.0041281, - -0.031547, - -0.026262, - -0.072051, - 0.050254, - 0.049171, - 0.028004, - 0.069767, - 0.029767, - -0.0046646, - 0.062152, - -0.037507, - 0.0036799, - -0.008558, - 0.020737, - -0.081041, - -0.033042, - -0.019591, - 0.041945, - -0.058775, - -0.04763, - 0.0015395, - -0.047218, - -0.012575, - -0.034459, - 0.055713, - -0.045265, - 0.053959, - -0.039342, - -0.0017407, - -0.0050307, - -0.019944, - -0.018885, - 0.0024924, - -0.074219, - 0.0081526, - -0.027615, - 0.060306, - -0.068321, - 0.091089, - 0.041706, - -0.020558, - -0.061453, - 0.076769, - 0.013554, - -0.049931, - -0.0038337, - -0.06494, - 0.054963, - -0.068188, - 0.012904, - 0.024029, - 0.072124, - 0.08606, - 0.090706, - 0.072733, - 0.030459, - -0.059842, - -0.01919, - 0.017338, - -0.032258, - -0.040535, - -0.048076, - 0.029021, - -0.0049887, - -0.035412, - 0.11164, - -0.014858, - -0.013999, - -0.074674, - 0.0444, - 0.16618, - 0.054494, - -0.081888, - 0.034373, - -0.10256, - -0.04952, - -0.016612, - -0.0088403, - -0.0028616, - 0.042712, - -0.012402, - 0.065453, - 0.053838, - 0.042498, - 0.017875, - -0.033441, - -0.11432, - -0.028559, - 0.010146, - 0.057654, - -0.037155, - 0.049366, - 0.06873, - 0.045787, - -0.067953, - -0.002246, - 0.10848, - -0.023204, - 0.052149, - 0.064886, - -0.0051453, - 0.066116, - -0.099443, - -0.16135, - 0.073233, - 0.03371, - -0.031212, - -0.013122, - -0.072519, - 0.07139, - -0.013885, - -0.02142, - 0.026779, - -0.057349, - 0.076871, - 0.040382, - 0.077127, - -0.013055, - 0.055818, - -0.014099, - 0.046269, - -0.02084, - 0.084382, - 0.0092713, - -0.060513, - -0.019763, - -0.063161, - -0.023178, - 0.15721, - -0.084501, - -0.033386, - -0.024487, - 0.045565, - 0.042182, - -0.11263, - 0.061641, - 0.01615, - 0.058257, - -0.022708, - 0.021769, - -0.060566, - -0.12468, - 0.0045157, - 0.029168, - 0.011725, - -0.013517, - -0.028646, - -0.032483, - -0.059531, - -0.0048568, - 0.045776, - 0.098794, - -0.00089638, - -0.0033545, - 0.0041673, - 0.047396, - 0.087079, - -0.021081, - -0.03399, - -0.12151, - -0.026156, - -0.022075, - -0.04233, - -0.06891, - 0.07504, - 0.061452, - 0.04028, - -0.030014, - 0.099239, - 0.028104, - -0.014625, - 0.024635, - -0.052533, - -0.083352, - -0.026541, - 0.009496, - 0.12217, - -0.0097415, - 0.029976, - -0.017915, - 0.033276, - -0.0014596, - -0.00183, - 0.0066847, - -0.047095, - 0.019593, - 0.11792, - -0.017965, - -0.11014, - -0.16735, - 0.083257, - 0.044263, - 0.033021, - -0.075893, - 0.031493, - 0.041582, - -0.025422, - 0.0786, - 0.044416, - 0.047358, - -0.051116, - -0.019449, - -0.036655, - -0.0052254, - 0.019739, - 0.12457, - -0.021706, - 0.036788, - 0.037086, - -0.0091695, - 0.0065212, - -0.0408, - 0.04826, - -0.098522, - -0.035153, - -0.0047973, - -0.0027813, - -0.0092601, - -0.015882, - -0.00068826, - -0.095492, - 0.13969, - -0.015528, - -0.03864, - -0.035416, - 0.081036, - 0.12409, - -0.0042673, - 0.089079, - 0.12505, - 0.077286, - 0.044577, - 0.067814, - -0.039099, - 0.029737, - 0.020865, - 0.025247, - 0.022336, - 0.14565, - -0.1143, - -0.033206 - ], - "dietary": [ - -0.098016, - -0.013039, - -0.12089, - 0.0092193, - -0.03213, - -0.048951, - -0.032092, - -0.068209, - 0.017688, - 0.012373, - -0.037407, - -0.030867, - -0.026347, - -0.067205, - 0.063795, - -0.05177, - 0.11492, - -0.072075, - 0.049127, - 0.038286, - 0.022159, - 0.04245, - 0.043041, - 0.094813, - -0.056259, - -0.027716, - -0.031227, - 0.030706, - 0.011489, - 0.029853, - 0.019181, - -0.12356, - 0.04541, - -0.091932, - 0.087899, - 0.14069, - -0.026297, - -0.045249, - 0.13706, - 0.056513, - 0.014779, - -0.14738, - -0.050899, - -0.022634, - 0.084288, - -0.0099451, - -0.052368, - -0.049668, - -0.039904, - -0.00023993, - 0.003504, - 0.015222, - 0.12335, - -0.0052514, - 0.09015, - -0.0081357, - 0.021493, - -0.031645, - 0.0031591, - -0.065456, - 0.053988, - -0.013524, - 0.17247, - 0.032576, - -0.012761, - -0.012179, - 0.015373, - 0.068851, - 0.033509, - -0.085101, - -0.00074053, - 0.03724, - 0.01591, - -0.097844, - -0.081635, - 0.049459, - 0.023127, - -0.077998, - 0.022593, - -0.044788, - -0.027806, - 0.0092729, - 0.050789, - 0.032273, - -0.066874, - -0.0040975, - -0.046741, - -0.039038, - 0.012517, - -0.042838, - 0.075848, - -0.022056, - -0.097893, - -0.029097, - -0.062473, - 0.033663, - 0.0049705, - 0.1013, - 0.042714, - -0.022702, - -0.044022, - 0.017433, - 0.0098597, - -0.017411, - 0.021915, - -0.05449, - -0.029128, - -0.020175, - -0.019573, - 0.04588, - 0.044595, - 0.0051815, - 0.050411, - 0.0030119, - -0.017637, - -0.020105, - 0.026049, - 0.041998, - -0.030638, - -0.029105, - 0.0031274, - 0.085178, - -0.0030315, - -0.03509, - 0.12112, - -0.081211, - -0.045965, - 0.012968, - 0.097283, - 0.094178, - 0.039242, - -0.044534, - 0.064452, - -0.050149, - -0.08899, - 0.06072, - -0.017957, - 0.055472, - 0.064493, - -0.069047, - 0.11947, - 0.0023883, - -0.065311, - 0.11025, - -0.067975, - -0.093291, - -0.0063495, - 0.0037057, - 0.015855, - 0.010711, - 0.012643, - 0.19915, - -0.017667, - -0.034162, - 0.065871, - 0.0013094, - -0.077242, - 0.035645, - 0.038264, - 0.0047669, - 0.05299, - 0.053291, - -0.13778, - 0.010937, - 0.024036, - 0.037718, - -0.013008, - -0.10612, - 0.023206, - -0.056862, - 0.039097, - -0.1083, - 0.049576, - 0.073786, - -0.0047476, - 0.089643, - -0.019352, - 0.035478, - -0.03319, - 0.027142, - -0.024136, - -0.0036817, - 0.035593, - 0.0035711, - -0.01275, - -0.060473, - 0.11837, - 0.18969, - -0.058337, - 0.034417, - 0.024727, - 0.015361, - 0.064616, - -0.02828, - 0.019544, - 0.024666, - -0.029632, - -0.023839, - -0.012594, - 0.065743, - -0.16455, - -0.07169, - -0.028787, - -0.021149, - -0.041195, - 0.077915, - 0.021901, - -0.033868, - 0.011148, - 0.035232, - 0.16252, - 0.040412, - 0.013517, - 0.038897, - -0.024564, - 0.079922, - 0.035673, - 0.044393, - -0.080497, - -0.048504, - -0.087346, - 0.010006, - -0.067405, - 0.071735, - 0.046696, - -0.010432, - 0.050782, - 0.054181, - -0.0076611, - -0.0030718, - -0.10228, - -0.034869, - -0.028773, - -0.031543, - -0.030891, - 0.061113, - -0.033846, - 0.018827, - -0.027306, - 0.024365, - 0.02349, - 0.0000070238, - -0.014326, - -0.050735, - -0.1252, - 0.12685, - 0.0030411, - -0.022884, - 0.008457, - 0.0049582, - -0.0085664, - -0.10932, - -0.024833, - -0.092025, - 0.047824, - -0.014659, - 0.058681, - 0.063608, - 0.089719, - 0.028297, - -0.014642, - -0.019665, - 0.027725, - 0.0023058, - 0.062351, - -0.0033753, - 0.003984, - 0.020251, - -0.0098842, - 0.095813, - -0.016068, - 0.051708, - -0.099287, - -0.036676, - 0.010278, - -0.025816, - -0.021885, - -0.074893, - 0.0099771, - 0.021793, - 0.26379, - 0.018314, - 0.02017, - 0.078083, - -0.01709, - 0.029977, - -0.039152, - 0.036332, - 0.027554, - -0.011677, - 0.077201, - 0.081254, - -0.018199, - -0.029736, - 0.0060225, - -0.028054, - -0.017975, - 0.041735, - -0.084067, - 0.096156 - ], - "brokerage": [ - 0.035602, - -0.03613, - -0.018271, - -0.045871, - -0.012602, - -0.045511, - -0.019601, - -0.067123, - 0.033876, - 0.0071584, - -0.060285, - -0.058113, - -0.021324, - 0.046869, - 0.0047667, - -0.016728, - 0.10129, - -0.028365, - 0.02457, - 0.029466, - -0.030478, - 0.039007, - 0.0028892, - 0.068479, - 0.0068905, - -0.021946, - -0.025622, - -0.014641, - 0.016387, - 0.011267, - -0.025661, - -0.015789, - -0.12574, - -0.056894, - 0.029244, - 0.059414, - -0.02849, - 0.013771, - -0.015827, - 0.089034, - -0.054313, - -0.16418, - 0.022236, - 0.031004, - -0.047179, - -0.0044041, - 0.038403, - -0.0053117, - -0.025661, - 0.0042266, - 0.0074919, - -0.031666, - -0.0058289, - -0.044766, - -0.060095, - -0.051849, - -0.04948, - 0.045172, - -0.015564, - -0.079206, - -0.064316, - 0.12778, - 0.14629, - 0.032401, - 0.036048, - -0.024927, - -0.040522, - -0.037073, - -0.0084309, - -0.036131, - 0.01156, - -0.025634, - 0.039179, - -0.025846, - -0.030323, - -0.023136, - -0.067716, - 0.01273, - -0.0061116, - -0.046962, - -0.038316, - -0.019202, - -0.049368, - -0.044603, - -0.058845, - -0.059267, - -0.015111, - -0.046456, - 0.062932, - -0.035883, - 0.0038747, - 0.0078138, - -0.079805, - -0.028384, - -0.048468, - 0.13095, - -0.0089545, - 0.013724, - -0.0045683, - -0.053003, - -0.035098, - -0.033845, - -0.032345, - -0.037931, - 0.05258, - -0.095575, - -0.041358, - -0.0095989, - -0.0029844, - 0.016483, - -0.029608, - 0.069841, - 0.053455, - 0.042949, - -0.033823, - -0.02051, - -0.078839, - -0.0019014, - -0.015496, - 0.0088357, - 0.040846, - -0.011196, - 0.081597, - 0.034825, - 0.10203, - -0.023681, - 0.047309, - -0.057054, - 0.016547, - 0.064018, - -0.023247, - -0.028112, - -0.019182, - -0.021209, - 0.022225, - 0.094532, - -0.015107, - 0.010691, - -0.046035, - -0.0073907, - -0.066102, - 0.056141, - -0.035226, - 0.092098, - 0.0033585, - -0.067853, - -0.024038, - -0.0072972, - 0.089229, - -0.020431, - 0.011577, - 0.067314, - -0.00067667, - -0.10188, - -0.020909, - -0.025984, - -0.024934, - -0.035756, - -0.027516, - 0.038158, - 0.056101, - 0.034371, - -0.046457, - 0.021539, - 0.03748, - 0.0026753, - -0.038288, - -0.029351, - -0.10644, - 0.050016, - 0.029649, - -0.06373, - 0.027426, - 0.056306, - -0.018707, - 0.019425, - -0.062517, - 0.020816, - -0.057666, - -0.034317, - -0.03948, - -0.010407, - 0.037875, - 0.025068, - -0.0058249, - 0.0028054, - -0.029224, - 0.082803, - 0.029006, - 0.007194, - -0.063725, - 0.038291, - 0.026774, - -0.00043176, - 0.010887, - -0.035339, - 0.075735, - 0.037773, - 0.046615, - 0.036558, - -0.10409, - 0.054749, - 0.0058287, - 0.034483, - 0.044999, - 0.10192, - 0.0094659, - -0.025388, - -0.012036, - -0.01787, - 0.13432, - 0.034818, - -0.011705, - 0.01251, - -0.06606, - 0.026994, - -0.019374, - -0.0020968, - 0.025234, - 0.061545, - -0.02807, - -0.034346, - 0.016946, - 0.082844, - 0.00052171, - -0.010542, - -0.015924, - 0.041687, - -0.036845, - 0.0031388, - 0.04384, - -0.050901, - 0.020167, - -0.012863, - -0.015516, - -0.041664, - -0.0078637, - 0.029241, - 0.004482, - -0.0094605, - 0.035615, - -0.0091448, - 0.022315, - -0.037087, - -0.0028527, - 0.0127, - -0.06266, - 0.028275, - -0.014249, - 0.039413, - 0.01033, - -0.035704, - -0.020949, - 0.090037, - -0.022632, - 0.030924, - -0.012301, - 0.0047346, - 0.0063219, - -0.011618, - 0.063029, - 0.062591, - -0.022397, - 0.03968, - -0.0011723, - 0.059024, - 0.036659, - 0.017237, - 0.015929, - 0.018574, - -0.043492, - 0.066036, - -0.09256, - -0.010675, - -0.035356, - 0.017991, - 0.038869, - 0.0077937, - -0.012847, - -0.029342, - 0.049647, - -0.020791, - -0.012691, - -0.0029725, - -0.0020075, - -0.0089827, - -0.062436, - -0.024128, - -0.08981, - -0.051407, - -0.03617, - 0.034113, - 0.016439, - -0.017073, - -0.03514, - -0.016968, - 0.01049, - -0.010076, - -0.058922, - -0.044992 - ], - "learning": [ - -0.019404, - -0.045265, - -0.03608, - -0.0085887, - -0.052511, - 0.013135, - -0.018967, - -0.082367, - 0.03713, - -0.024968, - 0.00013948, - -0.045238, - 0.0090985, - -0.0002114, - 0.023179, - 0.0086426, - 0.030775, - 0.049386, - 0.029294, - 0.00020929, - -0.066871, - 0.034449, - 0.022033, - 0.041002, - -0.06951, - 0.011828, - -0.01083, - 0.034445, - 0.014236, - -0.010894, - 0.010413, - 0.012166, - -0.016814, - -0.053116, - 0.019929, - -0.02721, - 0.026395, - -0.038163, - -0.015029, - -0.00666, - -0.00015598, - -0.13048, - -0.010571, - 0.03302, - 0.027552, - -0.06675, - 0.058164, - -0.0014373, - 0.0057331, - 0.040638, - -0.035169, - 0.047374, - -0.015563, - -0.020111, - -0.056375, - 0.000044641, - 0.012725, - -0.045108, - -0.037371, - -0.059139, - -0.017465, - -0.0057112, - 0.084884, - 0.065095, - 0.0032462, - -0.03185, - 0.0037598, - 0.010324, - -0.01115, - -0.020914, - 0.01581, - -0.020048, - 0.034284, - 0.047102, - 0.049664, - -0.033984, - 0.015257, - -0.026921, - -0.024917, - -0.020606, - -0.025275, - -0.025353, - -0.031601, - 0.040583, - 0.00201, - -0.01434, - 0.0042959, - -0.012682, - 0.0044221, - 0.0024064, - 0.021761, - 0.03648, - -0.067229, - -0.0083569, - 0.0033828, - -0.000059739, - 0.07821, - -0.0050093, - 0.025067, - 0.0010775, - 0.046671, - 0.020976, - 0.010262, - 0.005137, - 0.0090746, - -0.078471, - -0.0069102, - -0.0087563, - -0.029223, - -0.00077129, - -0.059575, - 0.031569, - 0.030555, - 0.069099, - -0.013736, - 0.0055091, - -0.033192, - 0.022062, - -0.043281, - -0.05259, - -0.011515, - -0.052642, - -0.0064685, - 0.0094207, - 0.073559, - 0.019366, - -0.017368, - -0.091951, - 0.002452, - 0.12649, - 0.036696, - -0.010979, - 0.037366, - 0.0035436, - 0.0080422, - -0.017545, - 0.021803, - 0.011781, - 0.040206, - -0.049876, - -0.0008965, - -0.036181, - -0.0086086, - 0.013746, - -0.026572, - -0.028325, - -0.014695, - -0.020168, - -0.0094039, - 0.021407, - 0.034582, - 0.064089, - 0.021168, - -0.10796, - -0.00017664, - -0.0099773, - 0.035469, - 0.047189, - 0.028875, - -0.062505, - 0.06146, - 0.011699, - -0.058969, - -0.032513, - 0.038217, - -0.0021733, - 0.034975, - -0.054224, - 0.0028976, - 0.016673, - 0.032833, - -0.0081143, - -0.040939, - 0.012496, - -0.003687, - 0.05098, - 0.010661, - 0.029111, - -0.019801, - -0.02424, - -0.00069185, - -0.052167, - -0.063002, - 0.037871, - 0.029901, - -0.099435, - 0.013393, - 0.07581, - -0.013566, - 0.05893, - -0.0021588, - 0.046934, - -0.015504, - -0.022204, - -0.0011289, - 0.036129, - -0.012311, - 0.063402, - 0.027297, - -0.0021517, - -0.14113, - 0.068969, - 0.028888, - -0.026481, - -0.039858, - 0.06747, - -0.0078816, - 0.0060287, - -0.0034597, - -0.0064081, - 0.027095, - 0.029825, - 0.014921, - -0.043085, - 0.0011992, - 0.0063698, - 0.0053147, - -0.021064, - 0.0014654, - -0.043263, - -0.058005, - 0.040209, - 0.098335, - 0.093949, - -0.0011377, - -0.023813, - 0.0107, - 0.11824, - -0.046069, - -0.0059839, - 0.015546, - -0.014111, - -0.11858, - 0.0055621, - 0.032128, - 0.045063, - 0.020109, - 0.030843, - -0.06293, - 0.01022, - 0.085271, - -0.0095738, - 0.065975, - -0.022378, - -0.070794, - 0.059692, - -0.049846, - -0.015298, - 0.0061286, - 0.0018899, - 0.053159, - 0.043976, - -0.01947, - -0.072534, - 0.033883, - 0.0037263, - -0.041133, - 0.027887, - -0.014557, - 0.035641, - -0.018662, - -0.011702, - 0.042858, - 0.056025, - 0.0057686, - 0.032184, - 0.05894, - 0.033689, - 0.019095, - -0.0045572, - 0.028167, - 0.051991, - -0.11002, - -0.062689, - 0.010254, - -0.058065, - 0.0063727, - 0.0072923, - -0.00096927, - -0.0019478, - 0.056696, - -0.031342, - -0.0086623, - -0.044102, - 0.03871, - -0.042445, - 0.023128, - -0.023759, - -0.033278, - 0.018757, - -0.033171, - 0.025509, - -0.03682, - -0.088455, - 0.020919, - 0.048631, - 0.048966, - -0.015944, - 0.022047, - -0.018929 - ], - "post-graduate": [ - -0.037891, - -0.051024, - 0.008222, - -0.031036, - 0.049758, - -0.055248, - 0.0029437, - -0.053985, - 0.021539, - -0.028311, - 0.032518, - -0.037576, - -0.026423, - -0.0047705, - -0.013455, - 0.010414, - 0.046693, - 0.033782, - -0.0099298, - 0.010714, - 0.02661, - 0.055356, - -0.0037048, - 0.044672, - 0.0017253, - -0.0048719, - 0.0093126, - 0.031605, - -0.016942, - 0.0035062, - -0.0028725, - -0.0022598, - -0.032978, - -0.065402, - 0.012739, - 0.058365, - 0.033379, - 0.0026734, - -0.02311, - 0.0027151, - -0.013739, - -0.031797, - 0.046548, - -0.010883, - 0.0080456, - 0.00702, - -0.035525, - -0.014191, - 0.029357, - 0.025253, - -0.066376, - 0.016907, - -0.017134, - 0.022315, - -0.0037105, - -0.031263, - -0.072153, - 0.048192, - -0.034639, - 0.0004231, - 0.047866, - 0.036014, - 0.10475, - 0.06763, - 0.039965, - -0.05209, - 0.014952, - -0.0303, - -0.0081164, - -0.016764, - -0.010824, - -0.033443, - 0.087382, - 0.032968, - 0.00036797, - -0.028375, - -0.016543, - -0.013863, - 0.018157, - -0.015172, - 0.0079053, - 0.015116, - 0.045469, - 0.019283, - -0.05096, - 0.0084658, - 0.0040056, - -0.0011895, - -0.0419, - -0.0094244, - 0.044371, - -0.0076424, - -0.07871, - -0.002995, - 0.017996, - 0.054663, - 0.0079643, - -0.014361, - 0.010225, - 0.0060016, - 0.066446, - 0.0085012, - 0.0032931, - -0.00082918, - -0.0045992, - -0.031789, - 0.014485, - 0.018786, - 0.013241, - 0.033935, - -0.040863, - 0.035456, - 0.025804, - 0.027165, - 0.015904, - 0.016441, - 0.0032706, - -0.030903, - -0.044077, - 0.027549, - 0.030899, - -0.010706, - -0.0026703, - 0.019383, - 0.018242, - 0.013694, - -0.024203, - -0.049613, - -0.017619, - 0.0027745, - -0.016041, - 0.044279, - -0.020807, - -0.028285, - -0.010962, - -0.0013172, - 0.0012484, - -0.0094311, - -0.0071316, - -0.024547, - 0.0080094, - -0.027733, - -0.00905, - 0.0045037, - -0.018953, - -0.019845, - -0.046186, - 0.0086197, - -0.0077651, - 0.023731, - 0.070775, - 0.066485, - -0.0078676, - -0.041257, - 0.0066107, - 0.034471, - -0.057528, - 0.03252, - 0.014189, - -0.053691, - -0.0024229, - -0.0062064, - 0.014415, - 0.024501, - -0.043788, - -0.012624, - -0.027103, - -0.018001, - 0.0056386, - -0.0019335, - 0.060743, - 0.039575, - -0.039145, - -0.011325, - -0.0080915, - 0.049985, - 0.014203, - -0.023952, - -0.021785, - -0.0028759, - -0.012597, - 0.0086288, - 0.0024146, - 0.020705, - 0.01644, - -0.011899, - 0.012534, - 0.085246, - -0.00090442, - 0.036973, - -0.02618, - 0.036413, - 0.023746, - -0.029457, - 0.025077, - 0.025961, - 0.050107, - 0.0074232, - -0.012105, - -0.033015, - -0.073191, - 0.031997, - -0.011758, - 0.0059872, - -0.055097, - -0.016144, - -0.0074737, - -0.025187, - -0.033327, - -0.021945, - 0.11616, - -0.0049895, - -0.0062016, - -0.029445, - -0.064226, - -0.0033578, - 0.0045942, - -0.047961, - -0.017757, - -0.024255, - -0.013704, - -0.011833, - -0.030458, - 0.075223, - 0.0085061, - -0.013841, - -0.0052118, - 0.065272, - 0.021878, - -0.060824, - 0.018656, - -0.049036, - 0.016503, - 0.0019016, - -0.0065463, - 0.0065613, - 0.0039564, - 0.000087096, - -0.043396, - 0.023479, - 0.015108, - -0.014303, - 0.016141, - -0.0090879, - -0.075443, - 0.00096114, - -0.060295, - -0.047326, - -0.026288, - 0.025288, - 0.019105, - 0.01431, - -0.0091364, - -0.042805, - 0.01371, - -0.0069343, - -0.04592, - 0.013807, - 0.071539, - -0.019539, - 0.025118, - -0.020324, - 0.0157, - -0.027402, - -0.0017745, - 0.020563, - 0.0027974, - -0.0072927, - -0.0039554, - 0.04155, - -0.015742, - 0.050062, - -0.076182, - -0.03043, - -0.047661, - 0.0057873, - 0.021615, - 0.019263, - 0.005013, - 0.0075315, - 0.034163, - 0.021791, - 0.03544, - -0.0068322, - -0.016876, - 0.0082464, - -0.0038311, - -0.048319, - 0.00058044, - 0.013578, - 0.0093462, - -0.002418, - -0.016953, - 0.0031446, - -0.003609, - 0.043974, - -0.019885, - -0.010385, - 0.013149, - 0.010125 - ], - "townhouse": [ - 0.088801, - -0.017139, - 0.034737, - 0.11678, - 0.048962, - 0.049481, - -0.0030545, - -0.076374, - 0.028699, - 0.063844, - 0.0040924, - -0.071432, - -0.0033768, - -0.047472, - -0.037853, - -0.019926, - 0.10309, - 0.0026903, - 0.034271, - -0.045888, - 0.037658, - -0.019512, - -0.058696, - 0.033257, - 0.031457, - 0.0022708, - -0.018877, - 0.09213, - -0.013558, - 0.028413, - -0.059817, - -0.019947, - -0.0051829, - -0.0367, - 0.018743, - 0.048204, - -0.012489, - 0.047224, - -0.00068924, - 0.023642, - -0.065602, - -0.09338, - 0.041626, - -0.023931, - -0.031982, - 0.020885, - -0.0067416, - 0.057124, - -0.092672, - 0.079985, - 0.02815, - -0.042936, - -0.084805, - 0.039339, - -0.063601, - -0.059864, - 0.062819, - -0.010763, - -0.098553, - -0.037896, - 0.019364, - 0.020146, - 0.041136, - -0.0036082, - 0.094064, - 0.023818, - -0.0028259, - -0.016861, - -0.099333, - -0.063766, - 0.045893, - 0.026643, - -0.012377, - -0.029971, - 0.0065471, - 0.0336, - -0.018851, - -0.030819, - -0.020326, - 0.058278, - 0.0013152, - -0.0066196, - 0.0081392, - 0.005831, - -0.098088, - -0.061272, - -0.014752, - -0.065025, - 0.042382, - 0.053817, - -0.022138, - 0.0064341, - -0.081967, - 0.030208, - 0.0096501, - 0.10432, - -0.02643, - 0.056426, - 0.064248, - -0.037274, - 0.065133, - 0.06276, - -0.037986, - -0.0054494, - 0.011505, - -0.089839, - -0.024127, - 0.06756, - 0.024793, - 0.012825, - -0.087928, - 0.12487, - 0.036178, - 0.031312, - -0.042861, - -0.06937, - 0.041511, - -0.050272, - -0.022774, - 0.062927, - -0.0093705, - -0.0076585, - 0.071762, - -0.048224, - 0.035553, - 0.0054065, - 0.026786, - -0.065207, - -0.010864, - 0.02124, - 0.031256, - 0.027827, - 0.094119, - -0.04326, - -0.026758, - 0.0024976, - -0.042815, - 0.013473, - -0.043005, - -0.077145, - 0.021511, - 0.011463, - -0.0034348, - 0.055417, - -0.033647, - -0.052918, - 0.080434, - 0.064287, - 0.025109, - -0.053989, - -0.02237, - 0.034338, - 0.057691, - 0.023948, - -0.018512, - 0.078418, - 0.054386, - 0.011792, - -0.000047373, - 0.029563, - 0.039664, - 0.072275, - -0.0024689, - -0.022818, - -0.0071268, - 0.0080668, - -0.040718, - -0.038773, - -0.015895, - 0.075623, - 0.043417, - 0.018748, - 0.027798, - -0.021573, - -0.022537, - 0.0026089, - -0.006188, - -0.042887, - -0.022828, - -0.016689, - 0.081812, - 0.0017696, - -0.021886, - -0.028477, - -0.067672, - 0.011997, - -0.013326, - 0.097313, - 0.078565, - -0.013855, - -0.0081628, - 0.02765, - 0.010486, - 0.055501, - 0.033842, - -0.013371, - -0.0019896, - 0.11464, - 0.02672, - 0.0035192, - -0.14435, - 0.085106, - -0.034017, - -0.047361, - -0.042959, - -0.062923, - 0.026295, - -0.076622, - -0.0965, - -0.039207, - 0.10256, - -0.041855, - -0.017569, - -0.0066142, - 0.0086474, - 0.0060531, - -0.028246, - 0.087189, - 0.038602, - -0.020169, - -0.019063, - 0.0036546, - 0.05004, - 0.051519, - -0.049661, - 0.0072106, - -0.029653, - -0.0049072, - -0.042833, - -0.065346, - -0.045664, - -0.047713, - -0.029561, - -0.0097024, - -0.029402, - -0.0061905, - 0.051586, - 0.0048097, - -0.025725, - 0.023653, - 0.055708, - 0.0040092, - 0.038979, - 0.011592, - 0.016696, - 0.084915, - -0.089126, - 0.017292, - 0.00089777, - 0.03709, - -0.039646, - -0.0096569, - -0.09213, - -0.04161, - -0.0068463, - -0.038902, - -0.076086, - -0.017972, - -0.017978, - 0.062917, - 0.041855, - 0.0055577, - -0.072226, - -0.05662, - -0.01541, - -0.018287, - 0.0091593, - -0.052642, - -0.043135, - 0.023513, - -0.097898, - 0.060199, - -0.085069, - -0.0074612, - -0.023625, - -0.060068, - 0.040358, - 0.014985, - 0.053957, - 0.018041, - 0.057971, - 0.042792, - -0.027368, - 0.004429, - -0.032041, - 0.022698, - -0.0050494, - -0.024942, - -0.076287, - 0.023301, - -0.020875, - 0.010256, - 0.01839, - -0.022228, - -0.056978, - 0.02447, - 0.017309, - 0.071424, - -0.013535, - -0.024552 - ], - "supercomputers": [ - -0.076693, - -0.020039, - -0.040687, - -0.030106, - 0.00038229, - -0.04841, - -0.015713, - -0.048935, - 0.0017075, - 0.02709, - 0.011242, - -0.0046869, - -0.010143, - 0.0043835, - -0.018656, - 0.0068958, - 0.053338, - 0.039557, - 0.013019, - -0.010978, - 0.0068834, - 0.033552, - 0.02404, - 0.030217, - 0.063271, - -0.037005, - -0.0086273, - -0.044034, - 0.025042, - 0.027192, - -0.026977, - -0.0020279, - -0.013753, - 0.006853, - 0.050703, - -0.0046418, - 0.02188, - -0.059834, - 0.065029, - -0.0029656, - -0.08582, - -0.028241, - -0.0012186, - 0.0020171, - 0.0051142, - -0.031437, - 0.030433, - -0.052341, - 0.018141, - -0.044702, - -0.038195, - 0.01261, - -0.026476, - 0.063182, - -0.038627, - 0.025458, - 0.028587, - 0.025302, - 0.014839, - -0.027432, - -0.0091162, - 0.050442, - 0.056252, - -0.0046284, - 0.0061179, - -0.057203, - 0.011968, - 0.0017321, - -0.019553, - 0.011881, - 0.024256, - -0.0069106, - 0.03784, - -0.047911, - -0.043997, - 0.019289, - 0.020535, - -0.050533, - 0.01621, - 0.027477, - -0.024344, - -0.022918, - -0.029451, - 0.030523, - 0.037465, - 0.011781, - -0.028214, - -0.019399, - 0.016314, - 0.0045308, - -0.024024, - -0.016334, - -0.042196, - 0.02751, - 0.02436, - 0.086448, - 0.00022825, - -0.07703, - 0.028276, - 0.039883, - -0.022974, - -0.045666, - -0.0018038, - -0.023007, - 0.0010468, - -0.044447, - 0.017581, - -0.011656, - 0.021474, - -0.059213, - -0.0012581, - 0.043087, - 0.025308, - 0.044097, - 0.028373, - 0.004867, - -0.023975, - 0.031503, - -0.041525, - -0.0046609, - -0.01682, - 0.019861, - -0.011204, - -0.0179, - 0.045779, - -0.003734, - -0.034111, - -0.045543, - -0.07241, - 0.043458, - -0.040757, - 0.04343, - 0.034154, - 0.0088087, - 0.054923, - -0.041674, - 0.010189, - 0.025457, - -0.040278, - 0.065478, - 0.065693, - 0.052016, - 0.029253, - 0.0053209, - 0.024017, - -0.0017285, - 0.018496, - -0.0046455, - 0.00091416, - 0.0068537, - 0.036697, - 0.068653, - -0.0054541, - -0.015962, - 0.043241, - -0.037124, - 0.0041603, - 0.038834, - -0.013207, - 0.016133, - 0.032926, - 0.007552, - -0.020273, - -0.0044791, - -0.039143, - 0.026974, - -0.054721, - 0.018926, - 0.013319, - -0.014694, - 0.025896, - -0.087822, - 0.025177, - 0.030449, - 0.011456, - 0.027291, - -0.060072, - 0.037814, - -0.021912, - 0.015876, - 0.06927, - -0.015616, - -0.053863, - -0.016909, - -0.0055853, - -0.015064, - -0.10446, - 0.065617, - 0.024751, - 0.0052732, - 0.035997, - 0.078714, - -0.053475, - 0.0041814, - 0.013253, - 0.018303, - -0.094937, - 0.026185, - -0.02108, - -0.022988, - -0.065967, - 0.025703, - -0.058712, - 0.022447, - -0.0027379, - -0.043676, - 0.011853, - -0.041534, - -0.0012688, - -0.012317, - 0.035177, - 0.017208, - 0.015651, - -0.013991, - -0.0063454, - -0.026027, - 0.031947, - 0.0011794, - -0.001999, - -0.0076938, - 0.0065576, - 0.020067, - 0.022111, - 0.049064, - 0.017161, - 0.0096172, - 0.023305, - 0.029249, - 0.0079796, - -0.016683, - -0.059315, - -0.0022451, - -0.063176, - 0.025636, - -0.0016445, - -0.035568, - -0.0026316, - 0.024491, - 0.01128, - 0.0023832, - 0.0025294, - -0.030597, - 0.047744, - -0.015013, - 0.0088942, - 0.05344, - -0.018632, - 0.018426, - 0.0035237, - 0.0037569, - -0.031412, - -0.00075669, - 0.0081543, - -0.020099, - -0.020197, - 0.070363, - 0.0058942, - -0.019177, - -0.023692, - -0.0018808, - -0.0062506, - 0.027489, - -0.037434, - 0.0090989, - -0.030002, - -0.018287, - 0.0078574, - 0.013841, - 0.060429, - -0.018942, - -0.011923, - 0.042768, - -0.059367, - -0.0083335, - -0.036454, - -0.023391, - 0.0046952, - -0.0065349, - -0.01931, - -0.015407, - -0.00021585, - 0.064963, - -0.018867, - 0.0078523, - -0.019902, - -0.047602, - -0.039109, - -0.020012, - -0.041108, - 0.027437, - -0.089013, - 0.034683, - -0.020362, - -0.025135, - 0.07345, - 0.032666, - -0.0052787, - -0.016381, - 0.0051505, - 0.0022914 - ], - "telecommunications": [ - 0.012522, - -0.030787, - -0.022608, - -0.001826, - -0.0056871, - -0.0089114, - 0.052707, - -0.052313, - 0.046682, - -0.00017352, - 0.027398, - 0.0085414, - -0.054972, - 0.02835, - 0.0077879, - 0.012994, - 0.053871, - 0.006797, - 0.020626, - 0.011852, - -0.021942, - -0.04064, - 0.037157, - 0.037573, - 0.0080526, - -0.024422, - -0.014779, - 0.0086436, - 0.010598, - 0.0034648, - 0.021067, - 0.0098127, - -0.03496, - -0.019614, - 0.032942, - 0.03087, - 0.0039573, - 0.035218, - 0.028829, - -0.0041075, - -0.066143, - -0.084568, - 0.00033445, - 0.011514, - -0.0022138, - -0.017621, - -0.046986, - -0.030206, - -0.017359, - -0.0024567, - -0.0021834, - -0.016799, - 0.028281, - 0.0014944, - -0.031004, - 0.0472, - -0.0085165, - 0.0050808, - 0.01372, - 0.022278, - -0.014269, - 0.053438, - 0.054728, - 0.0023742, - 0.029706, - -0.0044181, - -0.020212, - -0.049351, - -0.013703, - 0.023041, - -0.014524, - -0.016282, - 0.024165, - 0.015345, - -0.022869, - -0.022569, - 0.0052912, - -0.017231, - -0.0064904, - 0.016713, - -0.017563, - -0.0040926, - -0.048205, - -0.019024, - -0.013715, - -0.0099371, - -0.021951, - -0.018081, - 0.0032395, - -0.011739, - 0.034562, - 0.017743, - -0.0471, - 0.0031052, - -0.0044781, - 0.057003, - 0.00052026, - -0.020098, - -0.01886, - 0.012116, - 0.018552, - 0.014631, - -0.025675, - -0.040696, - 0.0041064, - -0.038533, - 0.0090178, - 0.022018, - 0.062478, - -0.022617, - -0.00062566, - 0.037277, - 0.029307, - 0.011851, - -0.0051061, - 0.00034749, - -0.03638, - 0.019978, - -0.017017, - 0.012472, - -0.011396, - 0.039398, - 0.0034729, - -0.0080081, - 0.052743, - -0.010525, - 0.003145, - -0.02987, - -0.0050648, - 0.056061, - 0.024521, - 0.0050231, - -0.023216, - -0.0087517, - 0.034777, - -0.004867, - 0.027437, - 0.00047239, - 0.0019188, - 0.045386, - 0.024011, - 0.0054243, - -0.012027, - 0.018813, - -0.024859, - -0.033198, - -0.026744, - -0.017485, - 0.016501, - -0.023749, - 0.019649, - 0.049888, - 0.010451, - -0.040902, - 0.011955, - 0.004682, - -0.007802, - -0.0061084, - 0.0013481, - 0.0045105, - 0.017531, - 0.0016606, - -0.056106, - -0.0030793, - -0.0070277, - -0.030717, - 0.003567, - -0.031908, - 0.0061183, - -0.02041, - 0.03222, - 0.038834, - 0.01836, - 0.064514, - 0.0016522, - 0.016536, - -0.01716, - 0.061718, - -0.028998, - 0.014678, - 0.0062805, - 0.015292, - -0.013859, - -0.0053166, - -0.028662, - -0.022749, - -0.036574, - 0.048198, - 0.014116, - 0.014933, - -0.031812, - 0.046671, - -0.010312, - 0.0059283, - 0.0023161, - -0.0073181, - -0.0058797, - 0.0031646, - 0.014296, - -0.0099397, - -0.079947, - -0.0016638, - 0.010216, - 0.0088975, - -0.00013146, - 0.02361, - 0.021304, - -0.013899, - -0.034847, - 0.0090486, - 0.068356, - 0.0084079, - -0.0099132, - 0.011914, - 0.0043847, - 0.027582, - 0.018693, - -0.029235, - -0.02766, - -0.0086776, - -0.0045419, - -0.015157, - 0.018966, - 0.052929, - 0.00020686, - 0.0089181, - 0.0034574, - 0.027332, - 0.01128, - -0.0029282, - 0.012909, - 0.0020598, - -0.028806, - -0.0073822, - 0.000099502, - -0.011732, - 0.0097714, - 0.026668, - -0.0040198, - -0.033628, - 0.0041154, - -0.0044102, - 0.058133, - 0.0048604, - -0.0058253, - 0.0043044, - -0.00043315, - -0.0055233, - 0.0055732, - 0.008873, - 0.023037, - -0.012781, - -0.00042696, - 0.0098534, - -0.021863, - 0.046265, - -0.035857, - 0.012254, - -0.033755, - 0.019805, - -0.0031787, - -0.0068893, - 0.012974, - 0.0097635, - 0.015864, - -0.00032079, - 0.0030208, - -0.01326, - 0.022346, - -0.0052024, - -0.018904, - 0.0273, - -0.047513, - -0.0020591, - -0.027424, - 0.008601, - 0.018953, - 0.013502, - -0.022971, - -0.0058213, - 0.040918, - -0.01421, - -0.031492, - -0.00067323, - -0.026155, - -0.024835, - -0.044438, - -0.012108, - -0.009689, - -0.0091537, - -0.0099947, - 0.025603, - -0.036289, - -0.0049666, - 0.029996, - 0.0095424, - -0.029688, - 0.0050498, - 0.041315, - -0.02807 - ], - "forecasted": [ - 0.013023, - -0.013499, - -0.080776, - -0.039402, - 0.083346, - -0.049698, - -0.01065, - -0.10748, - 0.028168, - 0.023777, - 0.00011563, - -0.031155, - -0.10008, - 0.009186, - 0.015806, - -0.021983, - 0.024066, - -0.032424, - 0.047898, - 0.020728, - 0.03849, - 0.0069444, - -0.023845, - 0.061233, - -0.0066903, - -0.015806, - -0.0381, - 0.0059337, - 0.060142, - 0.032103, - -0.0079295, - 0.062437, - 0.0071969, - -0.0075288, - 0.010524, - 0.0040618, - 0.018769, - 0.03416, - 0.012492, - 0.0040617, - -0.04974, - -0.021305, - 0.048536, - -0.045163, - -0.027909, - 0.036925, - 0.012742, - -0.015796, - 0.049065, - -0.0033037, - -0.0072542, - -0.018964, - -0.051176, - 0.03993, - -0.067189, - -0.012234, - 0.060929, - -0.0054075, - -0.022101, - -0.065251, - -0.0082492, - -0.0055139, - 0.17541, - 0.0076661, - 0.029161, - 0.0040567, - 0.029779, - 0.028176, - -0.017499, - 0.00793, - 0.047042, - -0.0020849, - 0.039898, - 0.018233, - 0.0039753, - -0.021827, - 0.005821, - -0.036912, - -0.076128, - -0.038267, - 0.04037, - 0.028294, - -0.0017083, - 0.035736, - 0.048114, - -0.0007212, - -0.0036, - 0.010378, - -0.028252, - -0.08247, - -0.031118, - -0.012334, - -0.043249, - -0.02604, - -0.033823, - -0.0014675, - 0.0046261, - -0.03474, - 0.001503, - 0.031751, - 0.01696, - -0.088311, - -0.02325, - -0.012768, - 0.024118, - -0.069786, - -0.0045171, - -0.0020917, - -0.025898, - 0.012019, - -0.02348, - 0.0039057, - 0.046198, - -0.01614, - -0.020254, - -0.11176, - 0.019247, - -0.0056698, - -0.027263, - 0.026224, - -0.041259, - -0.0001783, - 0.045286, - -0.0015634, - 0.076288, - 0.049515, - -0.032224, - -0.080451, - -0.058192, - 0.055644, - 0.061226, - -0.030851, - 0.036744, - -0.0050581, - -0.058149, - 0.0032986, - 0.094686, - 0.064668, - -0.001926, - 0.044688, - 0.049035, - -0.033034, - -0.027865, - -0.058558, - -0.026719, - -0.040567, - -0.034312, - -0.035102, - -0.0048273, - 0.015945, - -0.056735, - 0.056176, - -0.012639, - -0.083191, - 0.03888, - 0.029529, - 0.011809, - -0.017942, - -0.088544, - -0.016913, - 0.063362, - 0.015398, - -0.044667, - -0.023232, - 0.014258, - -0.021627, - -0.03716, - -0.0082808, - 0.032108, - 0.030847, - -0.058963, - -0.038997, - 0.026088, - -0.085042, - 0.0011594, - 0.029218, - 0.0033025, - -0.036332, - -0.028065, - 0.029178, - -0.019912, - 0.026662, - -0.031428, - -0.012605, - -0.025461, - 0.0069104, - -0.055575, - 0.060817, - 0.019659, - -0.028361, - 0.0064379, - 0.037816, - -0.080589, - -0.044019, - -0.0090434, - -0.069314, - -0.050867, - 0.042974, - -0.01006, - 0.015699, - -0.105, - 0.0035415, - -0.010281, - 0.064406, - 0.012431, - 0.042407, - 0.01681, - -0.0056968, - -0.016309, - -0.041541, - 0.058894, - 0.015572, - -0.023471, - 0.0019692, - -0.0094515, - 0.021326, - 0.010814, - -0.052213, - -0.0043949, - -0.023601, - -0.0076124, - -0.0228, - 0.01972, - 0.082203, - 0.013242, - 0.017208, - -0.057067, - 0.05665, - 0.018253, - -0.015996, - 0.041143, - -0.072107, - -0.07438, - 0.035326, - 0.025298, - 0.013433, - 0.028741, - -0.036143, - 0.048112, - 0.018679, - 0.11351, - 0.049395, - 0.028661, - -0.046551, - -0.087141, - 0.018563, - -0.034429, - -0.031878, - 0.044994, - -0.051851, - 0.048674, - -0.048843, - 0.055149, - 0.064898, - 0.0021105, - 0.040131, - -0.014166, - 0.033487, - 0.081771, - 0.051572, - 0.069776, - 0.025801, - -0.027126, - 0.052083, - -0.020792, - -0.022964, - 0.014227, - -0.010906, - 0.052525, - -0.00012751, - 0.041203, - 0.082345, - -0.080626, - -0.017726, - -0.031437, - -0.023368, - -0.025831, - -0.0064572, - -0.061349, - -0.027655, - -0.038609, - -0.00050035, - 0.0016824, - 0.040553, - 0.056367, - -0.021945, - -0.0084558, - -0.020464, - -0.038593, - 0.013832, - 0.014696, - -0.016675, - -0.0012865, - 0.047622, - 0.046011, - -0.032273, - -0.047357, - 0.0060741, - 0.043518, - -0.039993 - ], - "rugby": [ - 0.092429, - -0.19799, - 0.099564, - -0.033483, - -0.045162, - -0.067148, - 0.037533, - -0.12095, - 0.083388, - -0.075066, - 0.0063447, - -0.05034, - 0.010784, - -0.028963, - 0.035053, - -0.0019719, - 0.18898, - -0.0080326, - 0.03228, - 0.026438, - 0.036378, - 0.072608, - 0.05911, - 0.1125, - 0.094763, - -0.12802, - 0.027127, - -0.049212, - 0.0041534, - -0.04373, - 0.043135, - 0.11251, - 0.05522, - -0.025556, - 0.082084, - -0.029368, - 0.0067833, - -0.0089922, - 0.015224, - 0.015543, - 0.022499, - -0.19926, - 0.07174, - -0.052985, - -0.059651, - 0.010697, - 0.027693, - -0.074408, - -0.043333, - 0.0031603, - 0.010215, - -0.012435, - 0.1333, - -0.0059635, - -0.07199, - 0.041749, - 0.079791, - 0.0052016, - -0.093315, - 0.01167, - 0.0029467, - 0.028927, - 0.10382, - 0.095935, - 0.013166, - -0.026517, - -0.03748, - 0.0078148, - 0.042348, - -0.054738, - -0.063394, - -0.14087, - 0.06294, - 0.03008, - 0.080128, - -0.092601, - -0.047007, - 0.032751, - -0.0046265, - 0.0085543, - -0.020516, - 0.048277, - -0.1378, - 0.06932, - -0.036678, - -0.12486, - -0.0033769, - -0.0033997, - -0.064402, - -0.0076681, - 0.00043805, - 0.083316, - -0.12591, - 0.030234, - 0.10941, - 0.16947, - -0.078991, - 0.085588, - 0.047847, - -0.062277, - 0.034785, - 0.19055, - 0.021154, - -0.03875, - -0.020357, - -0.14386, - -0.12863, - 0.056256, - -0.03398, - 0.019738, - -0.096894, - 0.06414, - 0.079063, - 0.017044, - 0.1064, - 0.10716, - 0.033393, - 0.13528, - -0.038607, - 0.0067285, - 0.15148, - -0.085873, - -0.007342, - -0.020432, - 0.042117, - -0.021238, - -0.035125, - -0.06211, - -0.055543, - 0.13913, - -0.05247, - 0.022226, - 0.045252, - -0.067115, - -0.12286, - -0.080446, - 0.046564, - 0.031603, - -0.070025, - -0.048912, - 0.047207, - 0.095094, - 0.24945, - -0.019268, - -0.01706, - 0.070723, - 0.088726, - -0.059399, - -0.086501, - -0.010601, - 0.09765, - 0.13725, - -0.049372, - -0.025593, - -0.059977, - -0.084821, - -0.0065317, - 0.10606, - -0.00080937, - 0.036973, - 0.020127, - -0.05037, - -0.099506, - -0.049234, - -0.01827, - -0.042857, - 0.17512, - 0.1486, - -0.054066, - -0.1681, - 0.069707, - -0.059538, - -0.078974, - 0.1368, - 0.088024, - 0.055491, - -0.028422, - 0.037646, - -0.01712, - -0.082609, - 0.025256, - -0.084063, - -0.041431, - -0.057573, - -0.008097, - -0.025691, - -0.012322, - 0.12613, - 0.035551, - -0.012009, - -0.053597, - 0.071469, - 0.01301, - -0.15485, - 0.058843, - -0.1166, - -0.0067648, - -0.0072702, - 0.0070209, - -0.08321, - -0.21857, - 0.026469, - -0.086374, - -0.064954, - -0.1461, - 0.20365, - -0.0070939, - 0.072034, - -0.070857, - -0.022739, - 0.24194, - 0.027741, - -0.0070907, - 0.057563, - -0.0017005, - -0.030227, - -0.028961, - 0.050225, - 0.00232, - -0.058272, - 0.090243, - 0.061029, - -0.02148, - 0.095105, - -0.054485, - -0.065425, - -0.14017, - 0.092393, - -0.047484, - -0.032094, - 0.069913, - -0.077655, - -0.10419, - 0.064614, - -0.036925, - -0.0090316, - 0.028247, - 0.047894, - 0.017513, - 0.043156, - 0.046838, - 0.094587, - -0.013057, - -0.0060571, - -0.025324, - 0.086103, - -0.015372, - 0.0064514, - -0.059321, - -0.055214, - 0.10648, - 0.020996, - 0.023017, - -0.030103, - 0.020989, - 0.02453, - -0.021655, - -0.0043517, - 0.038492, - 0.12001, - -0.0668, - -0.009752, - 0.11989, - -0.012167, - 0.11032, - 0.06923, - -0.051116, - 0.0091023, - 0.088429, - 0.0030883, - 0.021042, - 0.10379, - -0.15809, - 0.041043, - -0.076245, - -0.083695, - -0.030445, - -0.014029, - -0.021735, - 0.0051558, - 0.15519, - 0.096308, - -0.014245, - -0.017498, - -0.028614, - -0.20886, - 0.11839, - -0.093102, - 0.013427, - 0.060446, - 0.103, - 0.0066794, - -0.043025, - 0.045081, - -0.13816, - -0.081428, - 0.057671, - 0.064079, - 0.026074, - -0.074615 - ], - "catwalk": [ - -0.058589, - -0.074609, - 0.042163, - 0.053448, - -0.029728, - -0.11844, - 0.018625, - -0.1172, - 0.0011361, - -0.077588, - 0.083242, - -0.081425, - -0.086849, - -0.027774, - -0.036497, - 0.0020906, - 0.078952, - 0.12648, - 0.04539, - 0.022407, - 0.024694, - -0.080702, - 0.090743, - 0.067757, - 0.017225, - 0.0035398, - 0.01376, - 0.11743, - -0.056424, - -0.035558, - -0.00030301, - -0.00053257, - 0.081139, - -0.015417, - 0.043066, - -0.070629, - 0.14032, - -0.0095853, - -0.070732, - 0.021024, - -0.036369, - -0.15174, - 0.014911, - 0.0046734, - -0.056002, - 0.025967, - 0.070639, - -0.00083044, - -0.034527, - -0.070762, - 0.09731, - -0.025028, - -0.047779, - 0.02443, - -0.064752, - -0.118, - 0.050522, - -0.079377, - -0.05634, - -0.034912, - -0.014346, - 0.01423, - 0.11401, - 0.0019961, - 0.061535, - 0.074603, - 0.016839, - -0.065813, - -0.028066, - 0.032625, - 0.049744, - 0.0079731, - 0.022029, - -0.091125, - 0.062765, - 0.048997, - 0.050721, - -0.059464, - -0.015045, - 0.097388, - 0.012375, - -0.057955, - -0.037504, - 0.10659, - 0.073054, - 0.033584, - -0.079598, - -0.018971, - 0.055725, - -0.0047831, - -0.0040401, - 0.091667, - -0.050841, - 0.095905, - 0.12184, - 0.05881, - 0.024172, - 0.035471, - -0.03532, - -0.019114, - 0.03369, - -0.017115, - -0.017289, - 0.13229, - -0.024148, - -0.067312, - 0.06647, - -0.071523, - 0.036515, - 0.098251, - 0.072871, - 0.019658, - 0.066881, - 0.016406, - -0.010959, - -0.040879, - 0.032087, - 0.049655, - -0.044152, - -0.054725, - 0.01491, - 0.029817, - 0.015589, - 0.048442, - 0.024739, - 0.010914, - 0.00092311, - -0.089714, - 0.087993, - 0.031944, - 0.03044, - -0.00067221, - 0.027284, - -0.056808, - -0.025915, - 0.00030363, - -0.084538, - 0.034545, - -0.065105, - -0.10465, - -0.036462, - -0.01096, - 0.089297, - 0.04052, - -0.0070045, - -0.053866, - -0.0071867, - -0.013154, - 0.091493, - -0.059803, - -0.035868, - 0.06045, - -0.025485, - -0.082167, - -0.041975, - 0.039196, - -0.031002, - 0.061744, - -0.0024079, - 0.048656, - 0.08149, - -0.0052071, - -0.021341, - 0.11182, - 0.017035, - 0.10701, - -0.02734, - -0.055815, - -0.047756, - 0.12251, - -0.024894, - 0.014244, - -0.0025627, - -0.10854, - 0.043768, - 0.01232, - -0.011605, - -0.02003, - 0.015275, - -0.034991, - 0.10789, - -0.050708, - 0.056611, - -0.11989, - -0.017103, - -0.016977, - -0.17112, - 0.107, - -0.034506, - 0.11674, - -0.019006, - 0.06068, - 0.00088695, - -0.060879, - 0.0091488, - 0.0057157, - -0.046833, - 0.0095233, - 0.068663, - 0.0019549, - -0.11414, - 0.10339, - -0.017885, - 0.021352, - -0.0091374, - 0.12764, - -0.0086115, - -0.053567, - -0.012554, - -0.040779, - 0.12454, - -0.039929, - -0.016939, - 0.042698, - -0.0028202, - -0.054749, - -0.0076821, - 0.066803, - 0.093808, - -0.079137, - -0.089388, - 0.014789, - -0.025132, - 0.098809, - -0.032425, - 0.044374, - 0.012264, - 0.057107, - 0.027575, - -0.077246, - -0.047714, - -0.06812, - 0.013681, - -0.042175, - 0.0043812, - -0.011693, - -0.039679, - -0.031431, - 0.0093933, - -0.035095, - 0.029226, - -0.021214, - 0.047804, - -0.0012189, - -0.01707, - 0.066326, - -0.079024, - -0.00047367, - -0.021014, - 0.014208, - 0.011997, - 0.068353, - 0.052927, - 0.0071808, - -0.021874, - 0.013104, - -0.032495, - -0.053175, - 0.12316, - 0.033633, - 0.050644, - 0.091785, - 0.010583, - -0.052839, - -0.0086238, - 0.011603, - 0.058755, - 0.018132, - -0.02353, - -0.079506, - -0.017521, - 0.11005, - -0.13047, - -0.00049009, - 0.042308, - -0.018934, - -0.070828, - -0.056954, - -0.030608, - 0.034859, - 0.07957, - 0.032765, - -0.0068872, - 0.055129, - 0.010806, - -0.086478, - -0.0087964, - -0.024685, - 0.056835, - 0.054697, - -0.090583, - 0.0015466, - -0.042655, - 0.065463, - -0.074997, - -0.10053, - -0.00056715, - 0.014902, - 0.11264, - 0.071026 - ], - "land-use": [ - 0.05383, - -0.040283, - -0.00082302, - 0.075345, - -0.0047053, - 0.03035, - -0.022174, - -0.051219, - 0.074849, - 0.095684, - 0.000026767, - -0.041514, - -0.08896, - 0.0070898, - 0.049842, - 0.03157, - 0.12848, - -0.0096943, - 0.062983, - 0.013835, - 0.023076, - -0.069079, - 0.016436, - 0.12857, - 0.0058555, - -0.14823, - -0.037498, - 0.069542, - -0.035481, - 0.025958, - 0.011838, - -0.011983, - -0.008671, - -0.10939, - 0.085941, - 0.083515, - -0.047491, - 0.002251, - 0.0010915, - -0.059854, - 0.054931, - -0.14335, - -0.0047959, - -0.033407, - -0.075021, - -0.016633, - -0.01872, - 0.0090356, - -0.064807, - 0.016083, - -0.045393, - -0.013324, - 0.060909, - 0.069633, - -0.008542, - 0.011439, - 0.0037498, - 0.0093071, - 0.020326, - -0.030206, - 0.083376, - 0.014612, - 0.11983, - -0.045475, - 0.068022, - -0.053378, - 0.07106, - 0.0040558, - 0.055988, - -0.028303, - 0.073883, - -0.0093984, - -0.0030998, - -0.093728, - -0.016685, - -0.066391, - -0.046238, - -0.032509, - -0.018334, - -0.01909, - -0.042972, - 0.044733, - -0.0072918, - -0.026435, - -0.052685, - -0.031505, - 0.018352, - -0.0088245, - 0.086662, - 0.0024789, - 0.038368, - 0.0505, - -0.093062, - 0.011132, - -0.036571, - -0.0038859, - -0.0061867, - 0.025404, - 0.022967, - 0.022878, - 0.00019347, - -0.085971, - 0.010799, - -0.019255, - 0.026488, - -0.024826, - 0.04764, - 0.056773, - 0.026419, - -0.016881, - -0.0053421, - 0.02707, - 0.038131, - -0.022045, - 0.010789, - 0.024281, - -0.056486, - -0.036944, - -0.04086, - 0.042372, - 0.0039921, - 0.040483, - 0.0083272, - 0.056895, - 0.099557, - -0.021528, - -0.0052211, - 0.024774, - -0.029263, - 0.12891, - 0.058092, - -0.026722, - -0.0016325, - 0.08145, - -0.0089582, - 0.061599, - -0.019564, - 0.025888, - -0.027185, - -0.042551, - -0.020688, - -0.070564, - -0.018984, - 0.051381, - -0.038004, - -0.050566, - 0.027312, - 0.024066, - -0.026551, - -0.025104, - 0.035562, - 0.092385, - -0.0062108, - -0.063764, - 0.082387, - 0.054461, - 0.045136, - 0.030699, - -0.074984, - 0.045679, - 0.053405, - -0.014447, - -0.10642, - 0.049414, - -0.061762, - -0.046341, - 0.087644, - -0.032777, - 0.10388, - 0.10908, - 0.017591, - -0.021511, - 0.010703, - -0.052171, - -0.093652, - 0.085907, - -0.03955, - 0.014775, - -0.1341, - 0.033427, - 0.049926, - -0.0051937, - 0.0095836, - 0.067514, - -0.029775, - -0.097107, - -0.0096417, - 0.16375, - -0.046882, - -0.058894, - -0.035345, - 0.0016151, - 0.017366, - 0.11134, - 0.0061651, - -0.00081649, - -0.010613, - 0.049186, - 0.047142, - 0.009501, - -0.16012, - 0.01126, - 0.055677, - -0.089079, - -0.068384, - 0.090132, - -0.037096, - 0.08879, - -0.0049789, - 0.025241, - 0.12846, - 0.034319, - -0.0076233, - 0.00041487, - 0.010649, - 0.026962, - 0.081539, - -0.050662, - -0.11437, - -0.09015, - -0.010346, - -0.031337, - -0.028696, - 0.071805, - 0.011008, - -0.020298, - 0.0427, - 0.06442, - -0.012776, - -0.041624, - 0.023718, - -0.040854, - -0.031555, - -0.0093151, - -0.018823, - 0.041469, - 0.050466, - 0.074638, - 0.067096, - 0.019425, - 0.0026634, - 0.051248, - -0.056325, - 0.043729, - -0.063363, - 0.064851, - -0.0066586, - -0.0018209, - 0.0059827, - 0.019611, - 0.013802, - -0.10537, - -0.044215, - -0.12227, - 0.026801, - 0.026199, - 0.052898, - 0.025578, - 0.0079075, - 0.064932, - 0.038833, - 0.03025, - -0.090397, - -0.015992, - -0.034254, - 0.0077005, - -0.019734, - 0.049807, - -0.015537, - -0.0014018, - -0.066957, - 0.044514, - -0.095003, - -0.053407, - -0.0039947, - -0.0025728, - -0.039886, - 0.024004, - 0.052567, - -0.041106, - 0.16322, - -0.0065709, - -0.051106, - 0.084003, - -0.010648, - -0.0079101, - -0.048846, - 0.034617, - -0.037909, - -0.03102, - -0.076632, - -0.02277, - -0.007133, - -0.013228, - 0.023241, - 0.012915, - -0.11268, - 0.058667, - -0.014726, - -0.027569 - ], - "arts": [ - 0.0075439, - -0.13617, - 0.11656, - -0.028962, - -0.027596, - -0.10194, - -0.046599, - -0.12142, - 0.14707, - -0.065577, - 0.056323, - -0.13314, - 0.048432, - 0.011752, - 0.038719, - 0.04996, - 0.15524, - -0.0013688, - 0.073994, - -0.062515, - -0.092983, - -0.033835, - 0.096022, - 0.090637, - -0.0045548, - 0.020215, - -0.020873, - 0.097589, - 0.11607, - 0.021525, - 0.023314, - -0.028379, - 0.058381, - -0.075317, - 0.092499, - 0.10444, - 0.10523, - 0.02881, - -0.06228, - 0.023476, - -0.06889, - -0.21965, - -0.027049, - 0.081913, - -0.014156, - -0.042813, - 0.10321, - 0.041247, - 0.0071845, - 0.0016075, - -0.11305, - 0.0060936, - 0.025429, - -0.039228, - -0.10712, - 0.052446, - 0.023247, - -0.014087, - -0.030575, - 0.090444, - -0.017323, - -0.10005, - 0.20246, - 0.039294, - 0.064492, - -0.061201, - -0.14037, - 0.02678, - 0.11445, - -0.019962, - 0.073516, - 0.020811, - 0.086829, - 0.061279, - 0.032399, - 0.044195, - 0.098629, - -0.034996, - 0.039386, - 0.030519, - -0.015999, - 0.043218, - -0.12479, - 0.064656, - -0.123, - -0.071093, - -0.080883, - -0.0056552, - -0.046709, - 0.066285, - 0.059309, - 0.0036991, - -0.14077, - 0.11823, - -0.036811, - 0.15307, - 0.00043896, - 0.17733, - -0.12025, - 0.15273, - 0.14913, - 0.0073428, - 0.11636, - -0.036185, - 0.071482, - -0.092335, - -0.099062, - 0.044539, - 0.11083, - -0.0049683, - -0.10461, - 0.21055, - 0.081229, - -0.051814, - 0.014814, - -0.02123, - -0.052963, - -0.051409, - -0.0019604, - 0.048893, - -0.072903, - -0.036553, - -0.15612, - -0.026571, - 0.14393, - 0.002525, - -0.13861, - -0.041316, - 0.0038657, - 0.16122, - 0.073874, - 0.049115, - 0.028162, - 0.10305, - -0.013364, - 0.0086191, - -0.030902, - -0.047992, - 0.018446, - -0.054718, - 0.062312, - -0.0015407, - -0.01809, - 0.043616, - -0.018461, - -0.026479, - -0.1192, - -0.0070962, - -0.041858, - -0.022908, - 0.13796, - 0.15067, - -0.040933, - -0.0655, - -0.083309, - 0.039731, - 0.037891, - 0.10188, - -0.020626, - -0.026709, - 0.028609, - 0.0038431, - -0.10915, - 0.0086958, - -0.008251, - 0.10898, - -0.0049863, - -0.032529, - -0.11435, - 0.050685, - 0.23289, - 0.0079567, - 0.03699, - 0.031376, - 0.052029, - 0.12158, - 0.051608, - 0.10687, - -0.033765, - 0.0376, - 0.015313, - -0.024778, - -0.028352, - -0.027275, - -0.046737, - 0.0060587, - 0.074356, - 0.23376, - 0.01558, - -0.027124, - -0.067486, - 0.12999, - -0.04213, - -0.056289, - -0.085486, - 0.012036, - -0.025693, - -0.00085304, - 0.042316, - -0.07738, - -0.20847, - -0.0047984, - 0.052322, - -0.019887, - 0.058297, - 0.069265, - 0.031902, - 0.026507, - 0.061874, - 0.0099784, - 0.18368, - 0.00037659, - 0.065428, - 0.029602, - -0.0069807, - 0.078491, - 0.013778, - -0.043628, - -0.060254, - 0.048064, - 0.03509, - -0.027339, - -0.00056451, - 0.14157, - -0.064792, - 0.093122, - 0.063489, - 0.14968, - -0.000079445, - 0.068505, - -0.0077473, - 0.042937, - -0.091634, - -0.080503, - 0.042633, - -0.028598, - -0.066401, - -0.099737, - -0.062048, - -0.023771, - -0.086968, - -0.056684, - -0.053538, - 0.045085, - 0.002805, - 0.055751, - -0.098736, - -0.0023606, - 0.047141, - 0.0085921, - 0.20516, - -0.0019023, - -0.036484, - -0.019332, - -0.097804, - 0.059505, - -0.09964, - 0.053122, - 0.058968, - 0.077569, - -0.014985, - 0.039082, - 0.084339, - -0.052342, - -0.058799, - 0.046974, - 0.10337, - -0.045879, - 0.037237, - -0.00088457, - 0.059737, - 0.11299, - -0.14175, - -0.053042, - -0.040258, - -0.010429, - 0.0325, - 0.069959, - -0.049855, - 0.03136, - 0.11036, - 0.048906, - -0.044323, - -0.059728, - -0.06761, - 0.07312, - -0.036571, - -0.018704, - -0.014848, - 0.027602, - -0.09214, - -0.0070807, - -0.081676, - -0.049728, - -0.052256, - 0.032047, - -0.066535, - 0.08322, - -0.021557, - -0.010774 - ], - "infotainment": [ - -0.02055, - -0.048604, - -0.0087525, - 0.078734, - -0.042093, - -0.0024586, - -0.030372, - -0.056484, - 0.010043, - 0.017649, - 0.0046924, - 0.025979, - -0.019223, - 0.035484, - -0.031712, - -0.010636, - 0.046225, - -0.018952, - 0.089405, - 0.011904, - 0.029647, - -0.016357, - 0.060746, - 0.032351, - 0.0010814, - 0.018175, - 0.010013, - 0.019176, - 0.024319, - -0.018692, - 0.023507, - -0.022196, - 0.044498, - -0.025027, - 0.062726, - 0.027816, - 0.0017166, - 0.049404, - 0.057233, - 0.0067935, - -0.078352, - -0.11188, - 0.0098609, - 0.10101, - 0.031772, - -0.077814, - 0.0062482, - -0.020672, - -0.017935, - -0.045401, - -0.014119, - 0.0046534, - -0.018856, - -0.058515, - -0.032998, - 0.015529, - -0.031103, - 0.010665, - -0.000081981, - 0.022645, - -0.013759, - 0.0035451, - 0.030723, - 0.081083, - 0.0201, - 0.040482, - -0.022518, - 0.042345, - 0.049427, - 0.010314, - 0.041705, - -0.034277, - -0.041723, - -0.011782, - 0.0047016, - 0.036506, - 0.0020235, - 0.0022749, - 0.017104, - -0.056633, - -0.01043, - -0.037118, - -0.016575, - 0.043577, - 0.081364, - -0.025193, - -0.058138, - 0.018996, - -0.0189, - -0.055882, - 0.027734, - 0.033089, - -0.053842, - 0.0096179, - 0.033824, - 0.064367, - 0.056786, - -0.031162, - -0.11137, - 0.0058149, - 0.05136, - 0.014637, - -0.021055, - -0.045789, - -0.0040495, - -0.04438, - 0.042846, - -0.01842, - 0.042951, - -0.047312, - 0.0044347, - 0.079202, - 0.040205, - 0.018973, - -0.040129, - -0.082834, - -0.016162, - 0.01356, - -0.02739, - -0.010495, - -0.028279, - 0.001479, - 0.01109, - -0.026888, - 0.081776, - 0.042572, - -0.035134, - 0.0021949, - 0.016237, - 0.080372, - 0.025696, - -0.013839, - 0.067453, - -0.11272, - 0.027606, - -0.0016127, - 0.027042, - 0.003376, - -0.023706, - -0.0050182, - -0.0069209, - -0.066814, - -0.013816, - 0.013933, - -0.062281, - -0.0026789, - -0.043569, - 0.03192, - 0.024154, - 0.0168, - 0.035223, - 0.062163, - 0.012151, - -0.05435, - -0.052398, - 0.0027756, - -0.036948, - 0.057622, - -0.015292, - -0.023824, - 0.022356, - 0.0061435, - -0.05617, - 0.0052992, - -0.0057087, - 0.041114, - 0.0055175, - 0.0060549, - -0.044718, - -0.0043154, - -0.031772, - -0.0031206, - -0.017891, - 0.0514, - 0.0034734, - 0.033219, - -0.015584, - -0.0091866, - -0.065394, - -0.0046363, - -0.031027, - 0.0063356, - 0.0068488, - -0.018864, - 0.041447, - -0.0066516, - 0.053529, - 0.091096, - -0.00038565, - -0.0052674, - -0.034866, - 0.045869, - -0.022649, - 0.02167, - 0.034636, - 0.036014, - 0.0032572, - -0.0017232, - -0.035675, - 0.018284, - -0.091525, - 0.040892, - -0.028428, - -0.10423, - 0.0051274, - 0.043906, - -0.0096486, - 0.027742, - -0.04493, - -0.0039486, - 0.092552, - -0.033079, - 0.008003, - 0.0059414, - 0.028541, - 0.0051011, - -0.073307, - -0.031226, - -0.028365, - 0.001998, - -0.036318, - 0.020468, - -0.0206, - 0.068205, - 0.032764, - -0.054189, - 0.04922, - 0.04919, - -0.00038782, - 0.014143, - -0.024646, - -0.0034905, - -0.017305, - 0.016234, - 0.072108, - 0.00023893, - -0.020313, - -0.031609, - 0.045643, - -0.10147, - 0.042701, - -0.047922, - -0.044477, - 0.005985, - 0.0054705, - -0.024841, - 0.056541, - 0.0056273, - 0.017203, - 0.0064685, - 0.070764, - 0.015979, - -0.051279, - 0.056818, - -0.022881, - 0.040244, - -0.042339, - -0.019033, - 0.013805, - -0.0095151, - 0.045477, - 0.054037, - -0.027027, - 0.015478, - 0.025984, - 0.007359, - 0.043252, - 0.016644, - 0.056784, - 0.029409, - -0.061338, - 0.058081, - -0.067752, - 0.0047259, - -0.02871, - -0.031497, - -0.016754, - 0.12908, - -0.01863, - 0.0056927, - 0.10155, - 0.019629, - 0.022906, - -0.018977, - -0.02822, - -0.01093, - -0.010438, - 0.023652, - 0.017527, - 0.041038, - -0.023552, - -0.071522, - -0.030017, - -0.023186, - -0.0033817, - 0.026918, - -0.0090184, - 0.022102, - 0.041789, - 0.020807 - ], - "trajectory": [ - 0.019109, - -0.038959, - 0.0030212, - 0.043404, - -0.0034012, - 0.0048124, - -0.030279, - -0.081685, - -0.02685, - -0.0081465, - 0.014497, - -0.035949, - -0.00011471, - 0.047427, - -0.038604, - -0.0082345, - 0.065792, - 0.013651, - 0.059126, - 0.076273, - 0.027534, - 0.020028, - -0.054537, - 0.055302, - -0.068207, - 0.024058, - 0.0013746, - 0.062865, - -0.0056941, - 0.032114, - -0.025458, - 0.027159, - 0.039906, - -0.05663, - -0.033358, - -0.0086203, - -0.012166, - -0.018231, - -0.038211, - -0.026138, - -0.068456, - -0.095989, - 0.047352, - -0.01788, - -0.051437, - -0.0028416, - 0.037114, - -0.054811, - -0.024207, - -0.022222, - 0.0036252, - 0.0048301, - -0.071528, - -0.0097887, - -0.054563, - -0.087308, - 0.025511, - 0.034108, - -0.023414, - -0.022314, - 0.039079, - -0.032294, - 0.12294, - 0.0074342, - 0.10628, - -0.020689, - 0.050712, - 0.0014071, - -0.0031402, - 0.015993, - -0.028821, - 0.014278, - -0.040235, - 0.017248, - 0.016257, - 0.021629, - -0.0035961, - -0.015853, - 0.0037231, - -0.045485, - -0.0055143, - -0.027122, - -0.072975, - 0.06825, - -0.0072961, - -0.00065148, - -0.0034252, - -0.014031, - 0.04684, - -0.0030327, - 0.10171, - 0.019066, - -0.069437, - 0.022725, - -0.042662, - 0.045679, - -0.06133, - -0.015771, - 0.021832, - -0.034075, - 0.035157, - -0.050708, - 0.024056, - -0.045673, - -0.046056, - -0.044688, - 0.070373, - -0.024714, - 0.050336, - 0.083268, - 0.008122, - -0.005386, - 0.058728, - 0.021035, - 0.055354, - -0.0014929, - 0.022977, - 0.012434, - -0.046965, - 0.061052, - 0.014402, - -0.035001, - -0.025753, - 0.025004, - 0.069959, - -0.019755, - 0.016966, - -0.089765, - 0.062662, - 0.070288, - -0.011268, - -0.054299, - 0.0059334, - -0.011031, - -0.050942, - 0.018407, - 0.039381, - 0.056028, - 0.023479, - 0.006548, - -0.0046339, - -0.045191, - 0.0051778, - 0.0092261, - -0.0085794, - 0.033362, - 0.019988, - 0.012025, - -0.015903, - 0.040533, - 0.031388, - 0.034809, - -0.053105, - -0.059091, - 0.02001, - 0.061689, - -0.061286, - -0.033527, - -0.029734, - -0.032317, - 0.0095624, - 0.038711, - -0.063536, - -0.033778, - -0.069896, - 0.028578, - -0.042381, - -0.0048461, - -0.010241, - -0.0011453, - -0.018776, - 0.051788, - 0.02524, - -0.053519, - -0.0040674, - 0.049907, - -0.021914, - -0.0049678, - -0.042677, - 0.022289, - 0.021351, - 0.0233, - -0.033976, - -0.061896, - 0.0077589, - -0.058452, - -0.017458, - 0.080899, - 0.0063752, - -0.010178, - 0.014085, - 0.016867, - -0.001962, - -0.010702, - 0.0031634, - -0.061044, - -0.050569, - 0.066799, - -0.0003705, - 0.019908, - -0.13245, - 0.02269, - 0.060935, - -0.029192, - -0.0045563, - 0.022711, - 0.060619, - 0.0077388, - 0.038647, - -0.00016319, - 0.072212, - -0.023468, - 0.047507, - -0.036389, - 0.059875, - -0.012604, - 0.0028955, - -0.017466, - -0.0012073, - -0.026647, - -0.092999, - -0.025256, - 0.042063, - 0.076452, - -0.004505, - 0.0039926, - 0.028222, - 0.065419, - 0.0078956, - 0.0080427, - -0.00017129, - -0.055913, - -0.065676, - -0.0090097, - 0.05645, - -0.01552, - 0.032209, - -0.030441, - -0.018741, - 0.05394, - 0.028339, - 0.070948, - 0.023514, - 0.0112, - -0.049114, - 0.0037502, - -0.056512, - -0.058799, - -0.0039211, - -0.006826, - 0.074246, - -0.04343, - 0.02075, - -0.0037722, - 0.0052228, - 0.017131, - -0.037932, - 0.024754, - 0.032792, - 0.036355, - 0.058815, - 0.0018567, - 0.026678, - -0.034751, - -0.021526, - -0.022742, - 0.0024064, - 0.020901, - 0.00016406, - 0.0027514, - -0.005877, - 0.076883, - -0.11414, - -0.045206, - 0.074041, - -0.034636, - 0.0056541, - -0.0093926, - 0.066346, - 0.0056527, - 0.078247, - 0.0073333, - -0.005049, - -0.040674, - 0.010349, - -0.0071547, - -0.015526, - 0.024831, - 0.026038, - -0.040835, - -0.010169, - -0.021354, - -0.035375, - -0.0092121, - 0.054224, - 0.014013, - -0.040733, - -0.032401, - 0.078967, - 0.054964 - ], - "mythological": [ - -0.070255, - -0.044821, - 0.032152, - -0.0046104, - -0.019724, - -0.084044, - -0.035439, - -0.079026, - 0.026001, - 0.031655, - 0.033017, - -0.02992, - -0.0027396, - 0.0064527, - 0.0075987, - -0.028879, - 0.041656, - -0.055829, - 0.0062937, - 0.020076, - -0.02518, - 0.035828, - 0.012105, - 0.061961, - 0.036536, - -0.0072313, - -0.0097971, - 0.0059002, - 0.049972, - 0.049668, - -0.014241, - -0.0078309, - 0.023344, - -0.047572, - 0.053331, - 0.019012, - -0.0018588, - -0.047218, - 0.015928, - -0.0022773, - -0.013739, - -0.095267, - 0.052632, - 0.051248, - 0.0041481, - -0.0019412, - -0.015916, - 0.016604, - -0.019574, - -0.030945, - -0.00010039, - 0.010726, - -0.047782, - -0.01102, - 0.044943, - 0.017374, - 0.047534, - -0.010258, - -0.017184, - -0.010713, - -0.0070065, - -0.055836, - 0.090261, - -0.046027, - 0.095154, - -0.012829, - -0.038344, - -0.0015783, - 0.011135, - -0.0031718, - 0.0033368, - 0.0048983, - 0.010503, - 0.013756, - -0.018605, - -0.008142, - -0.028524, - -0.037639, - 0.045926, - -0.01688, - -0.0040007, - 0.0093628, - -0.0027767, - 0.029941, - -0.020784, - 0.016878, - -0.032322, - 0.0022922, - 0.0019113, - -0.051825, - -0.031437, - 0.0030303, - -0.055491, - 0.004743, - 0.0059589, - 0.049882, - -0.015902, - -0.0099952, - 0.04833, - 0.039892, - 0.04436, - 0.0038829, - -0.013146, - 0.0090696, - -0.029643, - -0.088832, - 0.01383, - 0.038915, - -0.040667, - 0.032429, - 0.031207, - 0.018971, - 0.012495, - -0.051209, - -0.029593, - 0.046522, - 0.0041301, - 0.010722, - -0.01805, - -0.017518, - -0.034429, - 0.026313, - -0.055061, - -0.041, - 0.080749, - 0.04861, - 0.02683, - 0.013092, - -0.022702, - 0.063835, - -0.037812, - 0.0086001, - -0.04697, - 0.0098921, - -0.00079774, - -0.016321, - -0.011945, - 0.053876, - 0.02065, - -0.0081887, - -0.028078, - -0.031901, - 0.012263, - 0.064514, - -0.022586, - -0.064145, - 0.0021373, - 0.016572, - -0.028646, - -0.039056, - 0.0025763, - 0.11694, - -0.014777, - -0.0080176, - -0.025644, - -0.011993, - -0.049219, - -0.032925, - 0.01352, - 0.025125, - -0.0052189, - 0.035532, - -0.043752, - 0.02068, - 0.037414, - -0.019671, - -0.017007, - 0.076744, - -0.033556, - -0.00072525, - -0.023712, - -0.077819, - 0.0076502, - -0.031977, - 0.0042903, - 0.044499, - 0.040296, - 0.037355, - -0.016633, - -0.0039385, - 0.02979, - 0.071479, - 0.031191, - 0.02124, - 0.030098, - -0.013573, - -0.034142, - 0.083843, - 0.022042, - -0.0063319, - 0.044172, - 0.059946, - 0.06539, - -0.030833, - -0.036935, - 0.043014, - -0.033153, - -0.009272, - -0.0037867, - -0.0018699, - -0.11233, - 0.018858, - -0.05402, - -0.076657, - 0.037282, - 0.066285, - -0.018825, - 0.024131, - -0.0084135, - 0.016712, - 0.095992, - -0.003295, - 0.0059072, - -0.052935, - 0.026334, - 0.031978, - -0.0052031, - -0.015218, - -0.029129, - -0.0061328, - 0.014916, - 0.035229, - -0.0063887, - 0.064529, - 0.0071998, - -0.020566, - 0.063852, - 0.039275, - 0.015971, - -0.0093475, - -0.043408, - -0.031775, - -0.029173, - -0.025407, - -0.015847, - 0.015218, - -0.040348, - -0.015532, - 0.034805, - -0.04058, - 0.036105, - -0.0014836, - -0.06424, - 0.01123, - -0.13333, - -0.030982, - -0.063201, - 0.0010282, - -0.075704, - -0.015301, - 0.024387, - -0.043633, - -0.010779, - 0.01549, - -0.032797, - 0.04804, - -0.053744, - 0.0082217, - 0.023083, - -0.0077371, - 0.044523, - -0.013156, - 0.0083269, - -0.012271, - 0.038778, - 0.011536, - -0.022262, - 0.0032459, - 0.050212, - 0.00037897, - -0.0081935, - 0.04003, - -0.048161, - -0.018171, - 0.065365, - -0.10653, - 0.0095405, - -0.02736, - -0.041349, - -0.012211, - 0.1285, - -0.067224, - 0.033308, - -0.030971, - 0.023957, - 0.018944, - 0.020795, - 0.00096394, - -0.011844, - -0.017067, - 0.040382, - -0.0090646, - -0.015617, - -0.033524, - 0.0093723, - 0.057996, - 0.034761, - 0.033565, - -0.0054187, - 0.026783 - ], - "computing": [ - -0.037473, - -0.052146, - -0.056174, - -0.019838, - -0.01048, - 0.0042503, - 0.023626, - -0.10321, - 0.037673, - -0.061798, - -0.0033637, - -0.050397, - -0.036427, - 0.058723, - -0.042855, - 0.02801, - 0.048331, - -0.009559, - 0.026233, - -0.021647, - -0.033215, - 0.057389, - -0.0035048, - 0.055873, - 0.00058789, - -0.027982, - -0.024716, - -0.0061208, - 0.0054698, - 0.023932, - 0.022907, - -0.029891, - 0.0086894, - -0.055671, - 0.081702, - 0.030896, - 0.011585, - -0.042512, - 0.050198, - 0.0152, - -0.065004, - -0.079279, - 0.0025473, - 0.014541, - -0.043421, - -0.061533, - 0.032451, - -0.078585, - -0.0024043, - -0.026694, - -0.02612, - 0.013247, - -0.006754, - 0.044525, - -0.034607, - 0.069189, - 0.028327, - 0.04066, - -0.0010129, - -0.074033, - 0.022249, - 0.022144, - 0.07092, - 0.038833, - 0.03121, - -0.015306, - 0.02683, - -0.0088354, - -0.0016049, - 0.027791, - 0.019723, - 0.019962, - 0.041554, - -0.0041407, - 0.016038, - -0.018653, - 0.032223, - -0.02303, - 0.046816, - -0.013118, - -0.036441, - -0.011645, - -0.0060994, - 0.0341, - -0.023552, - 0.030847, - -0.017446, - -0.018823, - 0.0072611, - 0.013991, - 0.043529, - 0.017077, - -0.077954, - 0.0084671, - 0.006444, - 0.064381, - -0.01772, - -0.042438, - -0.0051642, - 0.049522, - -0.0010004, - 0.0057759, - -0.049269, - -0.027988, - 0.040686, - -0.077669, - -0.036307, - 0.059556, - -0.014729, - -0.063566, - -0.012416, - 0.071866, - 0.02174, - -0.018881, - 0.0064175, - 0.049301, - -0.027972, - 0.051541, - -0.041624, - -0.017592, - -0.030656, - 0.029891, - -0.0015344, - -0.016224, - 0.051211, - 0.011016, - -0.055878, - -0.084481, - -0.060612, - 0.12937, - 0.013705, - -0.0068304, - -0.020829, - 0.00087243, - 0.023876, - -0.013122, - 0.027596, - -0.026741, - -0.01537, - -0.0047353, - 0.070291, - 0.050288, - 0.07784, - -0.0059074, - -0.0207, - 0.015165, - -0.016294, - -0.041071, - -0.00036125, - 0.01359, - 0.048956, - 0.053349, - 0.020655, - -0.06485, - 0.051391, - 0.023374, - 0.015724, - 0.068259, - -0.02535, - 0.0030048, - -0.0035372, - 0.0040579, - -0.083249, - -0.0064499, - -0.017126, - 0.0038524, - -0.035124, - -0.0094751, - -0.0053111, - 0.0070942, - 0.0028692, - -0.052849, - 0.027107, - 0.061724, - 0.062234, - 0.044966, - -0.038886, - 0.088827, - -0.058303, - -0.00093384, - 0.018427, - 0.017408, - -0.11805, - -0.021125, - -0.018505, - -0.044518, - -0.062942, - 0.06671, - 0.018593, - 0.020932, - 0.005492, - 0.020912, - 0.0037827, - -0.000031854, - 0.034232, - -0.027992, - -0.081112, - -0.0090389, - -0.038308, - -0.0031783, - -0.14362, - -0.0061298, - 0.047997, - 0.074613, - -0.023468, - -0.010953, - 0.021494, - -0.033766, - -0.035469, - 0.034385, - 0.088613, - 0.0039119, - -0.020482, - 0.004092, - -0.00010498, - 0.079028, - -0.0051065, - -0.011871, - -0.027437, - -0.0035744, - -0.005227, - -0.00064889, - 0.026467, - 0.08753, - -0.025488, - -0.02776, - 0.044472, - 0.075369, - 0.028473, - -0.016066, - -0.022207, - -0.025687, - -0.074531, - 0.029288, - -0.0041639, - -0.03598, - 0.024744, - -0.01231, - -0.047319, - -0.036803, - 0.032371, - -0.029099, - 0.070933, - -0.00011441, - -0.052059, - 0.03792, - -0.027858, - -0.0057712, - 0.0038591, - -0.041591, - 0.034884, - 0.042522, - -0.0062881, - -0.0038671, - 0.0036476, - 0.015518, - -0.029676, - 0.0283, - 0.01205, - 0.0071717, - -0.0061298, - 0.025518, - -0.050662, - 0.029186, - -0.0071619, - -0.059646, - 0.021269, - 0.001406, - 0.055151, - 0.030707, - -0.016214, - 0.072594, - -0.088016, - -0.0062311, - -0.039654, - -0.047773, - 0.088708, - 0.043207, - -0.034606, - -0.015855, - 0.065713, - 0.031222, - -0.061122, - -0.016077, - 0.0089372, - -0.059172, - -0.040647, - -0.00092976, - -0.044333, - 0.025135, - -0.066859, - 0.034821, - -0.03416, - -0.03161, - 0.071428, - 0.024293, - -0.030929, - 0.045942, - 0.041438, - 0.0036789 - ], - "political": [ - 0.033884, - -0.051216, - 0.0081093, - 0.0017933, - -0.023743, - -0.050413, - 0.020902, - -0.075723, - 0.064811, - 0.044464, - -0.001289, - -0.036338, - -0.022308, - 0.0095125, - 0.006737, - -0.012785, - 0.077414, - -0.039285, - 0.044334, - 0.018253, - -0.0025937, - 0.014066, - 0.050714, - 0.094714, - -0.037358, - 0.014815, - 0.004783, - -0.0043753, - 0.016383, - -0.0077951, - -0.012825, - 0.0057414, - -0.059027, - -0.10078, - 0.055197, - 0.056089, - 0.03411, - 0.025365, - 0.0028992, - 0.019685, - -0.026204, - -0.11197, - -0.0062972, - 0.034299, - 0.036254, - -0.012724, - -0.038585, - -0.015855, - -0.021486, - -0.032264, - -0.013708, - -0.0030875, - 0.0052516, - -0.0014616, - 0.036337, - -0.0030345, - 0.041656, - -0.0080398, - -0.043362, - 0.013095, - -0.0050514, - -0.0062925, - 0.091159, - -0.024856, - 0.08328, - 0.010005, - 0.013342, - 0.0069043, - 0.045559, - 0.03, - 0.01789, - 0.0012417, - 0.027061, - 0.010884, - 0.010849, - -0.013952, - -0.025413, - -0.05377, - -0.0017424, - 0.0058826, - -0.040957, - 0.039281, - -0.053834, - 0.049925, - -0.024141, - -0.010392, - -0.020113, - 0.029346, - 0.012732, - 0.017699, - 0.0024211, - 0.020287, - -0.0992, - 0.013576, - 0.024639, - 0.046854, - -0.033357, - -0.012863, - 0.03616, - 0.0048989, - 0.01305, - -0.011795, - -0.0068818, - -0.059736, - 0.026028, - -0.095124, - 0.034561, - -0.026227, - -0.017358, - -0.00087022, - -0.030638, - 0.066843, - 0.022267, - 0.0025548, - -0.033553, - -0.010801, - 0.05778, - -0.0083523, - -0.034725, - 0.037527, - 0.021938, - -0.046982, - 0.0085945, - 0.0024983, - 0.10094, - 0.014999, - -0.013402, - -0.045503, - -0.011952, - 0.07529, - 0.0010462, - -0.007928, - 0.056681, - 0.015231, - 0.0051507, - 0.052529, - 0.020568, - 0.057159, - 0.0024492, - 0.031302, - 0.017095, - -0.05629, - 0.016827, - 0.013476, - -0.04139, - -0.015711, - -0.0038059, - 0.027532, - 0.0002397, - 0.0019511, - 0.039362, - 0.15169, - -0.019537, - -0.039412, - 0.021682, - 0.020866, - -0.00034822, - -0.00097237, - -0.031758, - -0.010654, - 0.0325, - 0.037779, - -0.089986, - -0.0069551, - -0.060103, - 0.055001, - 0.042413, - 0.006871, - -0.015093, - -0.0089759, - 0.013556, - -0.016395, - 0.017641, - -0.0051983, - -0.01377, - 0.053141, - 0.0015048, - 0.025689, - -0.0091265, - -0.01577, - -0.029871, - 0.031016, - 0.016657, - -0.019162, - 0.011617, - -0.048455, - -0.015289, - 0.0862, - 0.046149, - -0.037168, - 0.023459, - 0.055326, - 0.10921, - 0.0095879, - -0.0014603, - 0.023245, - -0.012874, - 0.0040574, - -0.036708, - -0.0052066, - -0.12022, - -0.0060132, - 0.026867, - -0.017962, - -0.068246, - -0.040757, - 0.0099447, - 0.022739, - 0.036038, - 0.024677, - 0.14358, - 0.0027064, - -0.030231, - 0.0072577, - 0.018834, - 0.036432, - -0.00020138, - -0.0024351, - -0.05665, - -0.037499, - -0.017835, - 0.036645, - -0.029226, - 0.06869, - 0.017614, - 0.028141, - 0.036503, - 0.071222, - -0.02226, - -0.044037, - -0.011615, - -0.057725, - -0.051843, - -0.018264, - -0.02429, - 0.0036859, - 0.013952, - -0.035907, - -0.050319, - -0.026661, - 0.042797, - 0.013268, - -0.028439, - 0.061432, - -0.15816, - 0.0040762, - -0.036763, - -0.0030822, - -0.0019855, - -0.0019387, - 0.010424, - -0.0035623, - -0.013551, - 0.0082349, - -0.033095, - 0.03279, - -0.0017699, - 0.038972, - 0.00663, - -0.0022657, - 0.02114, - 0.029243, - 0.014346, - 0.014664, - 0.017946, - 0.0063052, - -0.029448, - 0.03713, - 0.018285, - -0.0039884, - 0.0022554, - 0.056296, - -0.090798, - -0.016135, - 0.066886, - -0.11891, - -0.010827, - 0.028508, - -0.051347, - -0.010396, - 0.15645, - 0.0001484, - -0.025586, - -0.0027039, - 0.031178, - 0.027122, - 0.022077, - -0.0066731, - -0.020252, - 0.023513, - 0.0027733, - -0.0053788, - -0.042909, - 0.064425, - -0.040139, - 0.046491, - -0.041623, - 0.0046766, - -0.021643, - -0.00033731 - ], - "vacation": [ - 0.01155, - -0.009833, - 0.0036412, - -0.00020394, - 0.01204, - -0.054293, - 0.027826, - -0.073438, - 0.018247, - -0.024312, - -0.077447, - -0.048154, - -0.034921, - -0.011195, - -0.05904, - -0.015467, - 0.11101, - -0.022145, - 0.028383, - 0.032614, - -0.049971, - 0.034945, - -0.1014, - 0.057925, - 0.044047, - -0.024761, - -0.047677, - 0.0635, - -0.071523, - 0.016618, - -0.020312, - -0.063966, - 0.0080327, - -0.080201, - -0.014938, - 0.011984, - 0.010745, - 0.026308, - 0.025847, - -0.028335, - 0.025115, - -0.12645, - 0.016644, - 0.004801, - 0.064018, - 0.0062534, - 0.01985, - -0.02723, - -0.054545, - 0.06877, - -0.0038949, - -0.026216, - -0.0032151, - 0.049339, - -0.093164, - -0.052669, - -0.0052783, - -0.071544, - -0.014149, - -0.020924, - -0.004558, - 0.043911, - 0.1064, - 0.053922, - -0.032321, - 0.0067782, - 0.031081, - -0.041179, - 0.0013543, - 0.026729, - -0.0077435, - 0.038846, - 0.011894, - 0.019362, - 0.02169, - -0.025071, - 0.020712, - -0.0079433, - -0.056208, - -0.019525, - -0.026828, - -0.018396, - 0.12217, - 0.018383, - -0.10988, - 0.00026483, - 0.076266, - -0.02033, - -0.00056946, - -0.053372, - -0.0026419, - 0.020517, - -0.065724, - 0.018216, - 0.0016131, - 0.035543, - -0.026057, - -0.018523, - -0.000922, - -0.006197, - 0.088792, - 0.12352, - -0.0061415, - -0.021499, - 0.016834, - -0.071543, - 0.0075981, - -0.016376, - -0.017588, - -0.048769, - 0.038968, - 0.014496, - 0.011446, - 0.11077, - -0.0040925, - -0.0033035, - -0.015523, - -0.07239, - -0.025881, - -0.034149, - -0.012646, - 0.016285, - -0.014647, - -0.00028969, - 0.041611, - 0.011263, - 0.021256, - -0.057105, - -0.042058, - 0.05177, - 0.038019, - 0.0076073, - -0.034128, - -0.014513, - 0.011771, - 0.017498, - -0.0077746, - 0.0073924, - -0.022553, - 0.005411, - 0.074065, - -0.059786, - 0.076573, - 0.057733, - 0.044804, - 0.035319, - 0.0089925, - -0.087652, - -0.00637, - -0.035146, - 0.033322, - 0.062516, - -0.038722, - -0.051851, - 0.054548, - 0.037086, - -0.025084, - 0.090917, - 0.024173, - -0.068065, - 0.051519, - 0.0368, - -0.0052072, - -0.049875, - 0.039082, - 0.056447, - 0.035383, - -0.039313, - -0.00059475, - 0.02597, - 0.02755, - -0.014714, - -0.0096423, - -0.017076, - -0.11199, - 0.051464, - -0.016441, - -0.035987, - -0.0043906, - 0.044784, - 0.0054728, - -0.079412, - -0.003164, - -0.063544, - 0.011211, - -0.023953, - 0.0043954, - 0.092547, - -0.045693, - 0.018981, - 0.049653, - 0.024248, - 0.021513, - 0.0034016, - -0.052869, - -0.014893, - 0.072061, - -0.060691, - -0.001001, - 0.0069502, - -0.11634, - 0.099831, - 0.014761, - -0.053512, - 0.037887, - 0.00054895, - -0.082685, - -0.061366, - -0.015855, - -0.038057, - 0.10133, - -0.02835, - 0.036266, - -0.024049, - 0.036697, - 0.0057403, - -0.048369, - -0.059266, - 0.00049179, - -0.14189, - -0.038591, - -0.0012806, - -0.0067148, - 0.077481, - -0.022737, - -0.031111, - -0.075571, - 0.095046, - -0.028719, - 0.022141, - 0.033112, - -0.091696, - -0.025718, - 0.003753, - -0.0038654, - -0.057264, - 0.008595, - 0.032324, - -0.0038204, - 0.01395, - 0.097515, - 0.011368, - 0.057516, - -0.059483, - -0.056832, - 0.065264, - 0.052128, - -0.023368, - -0.037719, - 0.035673, - 0.0054772, - -0.037241, - -0.024, - 0.0081767, - -0.0080235, - -0.017432, - 0.0077551, - 0.017897, - 0.036888, - 0.022629, - 0.02537, - 0.0023887, - -0.033159, - -0.019161, - 0.026887, - 0.0017431, - -0.058953, - 0.0069362, - 0.044132, - -0.015362, - -0.056221, - 0.077062, - -0.10179, - -0.012989, - -0.017087, - -0.049505, - 0.01401, - 0.007468, - 0.023441, - 0.02084, - 0.072339, - -0.036769, - -0.033264, - -0.0087847, - -0.0040967, - 0.033968, - 0.015427, - -0.037703, - -0.082373, - -0.011775, - 0.088005, - -0.0095228, - -0.035063, - 0.036983, - 0.024324, - 0.056881, - 0.0019197, - 0.070891, - -0.040003, - -0.029388 - ], - "physiology": [ - -0.04552, - -0.031909, - 0.040344, - -0.0091111, - 0.026931, - -0.10619, - 0.010339, - -0.065046, - 0.0464, - -0.0070044, - 0.00054874, - -0.046576, - 0.032487, - -0.048523, - 0.024539, - -0.032544, - 0.095223, - 0.0090789, - 0.027653, - 0.0406, - -0.0018612, - -0.015579, - 0.092811, - 0.069481, - -0.037452, - -0.075362, - -0.038338, - 0.0067344, - 0.015703, - 0.040904, - 0.050693, - -0.010838, - 0.05634, - -0.039406, - -0.010018, - 0.047665, - 0.03221, - -0.05255, - 0.042381, - -0.036162, - 0.026242, - -0.12324, - 0.0047957, - -0.052702, - 0.014738, - -0.026618, - 0.0095335, - -0.079859, - -0.018451, - 0.006379, - -0.029203, - 0.068143, - 0.052311, - 0.003764, - -0.028538, - 0.044703, - -0.028821, - 0.021587, - 0.018801, - 0.062338, - 0.03677, - 0.0041752, - 0.073421, - 0.046983, - 0.045247, - 0.01979, - 0.051366, - 0.022887, - -0.042469, - -0.026843, - -0.011457, - 0.022086, - -0.023045, - 0.037238, - -0.035311, - -0.030513, - -0.036362, - -0.024509, - -0.072749, - 0.020577, - -0.040023, - 0.014723, - -0.030865, - 0.059558, - -0.016022, - -0.024269, - 0.068691, - -0.015871, - 0.033745, - 0.020096, - 0.048162, - 0.022374, - -0.072937, - 0.044186, - -0.0090917, - 0.068428, - 0.018047, - 0.033978, - 0.040818, - 0.039977, - 0.0021478, - 0.0098582, - 0.02034, - 0.042921, - -0.011738, - -0.045461, - -0.035019, - -0.022708, - 0.0074285, - 0.03334, - -0.024941, - 0.07292, - 0.053059, - -0.02886, - 0.084331, - 0.013481, - -0.018715, - 0.037794, - -0.027271, - -0.02697, - 0.03614, - 0.010203, - -0.015252, - -0.019525, - 0.037628, - 0.051764, - -0.017846, - -0.067322, - 0.057145, - 0.12658, - -0.010771, - -0.029213, - -0.0145, - 0.0025571, - 0.035475, - -0.012778, - -0.000050418, - 0.03073, - 0.0535, - 0.0035281, - 0.051556, - 0.014907, - -0.040095, - 0.021832, - 0.052154, - -0.078542, - -0.013037, - -0.02586, - 0.011848, - -0.010655, - 0.02095, - 0.048838, - 0.0072606, - -0.053008, - -0.035004, - 0.084778, - 0.0098365, - 0.0031686, - 0.034269, - 0.0065976, - 0.037793, - -0.011487, - -0.1021, - 0.0025652, - -0.011155, - -0.014445, - -0.044545, - -0.020065, - 0.020038, - -0.040405, - 0.0067902, - -0.0098099, - -0.0080371, - -0.001193, - 0.043473, - 0.053733, - 0.020138, - 0.0088151, - -0.015113, - -0.034936, - -0.020598, - 0.053169, - -0.037177, - -0.023243, - 0.013059, - -0.056237, - 0.017567, - 0.10156, - -0.043772, - 0.11618, - -0.020056, - 0.046841, - -0.024407, - -0.028113, - -0.025023, - -0.025678, - -0.058522, - 0.032253, - -0.014838, - 0.0036953, - -0.10975, - -0.046326, - 0.0018016, - -0.077889, - -0.026511, - -0.019838, - -0.054284, - -0.022796, - -0.040214, - 0.013242, - 0.10503, - 0.030798, - 0.014178, - 0.0019675, - 0.065866, - 0.10621, - 0.025781, - -0.018335, - -0.037313, - 0.022461, - -0.072489, - -0.009474, - -0.041089, - 0.075616, - 0.0014869, - 0.0099713, - 0.033802, - 0.069456, - -0.016823, - -0.040745, - -0.030544, - -0.019744, - -0.081469, - -0.0077894, - 0.024949, - 0.0225, - 0.022927, - 0.044888, - 0.0045476, - 0.010339, - 0.016547, - 0.028591, - -0.02877, - 0.0056722, - 0.0037709, - 0.038088, - -0.00073131, - -0.030423, - 0.028201, - 0.018165, - 0.0015633, - 0.020922, - -0.020906, - -0.042591, - 0.012591, - -0.018687, - 0.0070811, - 0.029864, - 0.06232, - -0.00098567, - -0.0011991, - -0.033224, - 0.037144, - 0.010202, - 0.027696, - -0.01236, - 0.0016647, - 0.043611, - 0.054189, - 0.050988, - 0.042442, - 0.057733, - -0.079777, - -0.03542, - 0.020703, - -0.030043, - -0.050478, - 0.015999, - 0.054607, - -0.049236, - 0.069107, - -0.0078696, - 0.0010823, - -0.028575, - -0.0071504, - -0.028634, - -0.046561, - -0.012535, - -0.020732, - 0.039038, - 0.013332, - 0.066154, - -0.062674, - -0.062261, - -0.060744, - 0.023271, - 0.017872, - 0.0061799, - -0.026922, - 0.066219 - ], - "buisness": [ - -0.024568, - -0.041021, - -0.043264, - -0.045766, - -0.054017, - -0.045374, - 0.057847, - -0.065203, - 0.015285, - -0.041731, - -0.0014069, - -0.069405, - -0.022876, - -0.05445, - -0.0061043, - 0.014995, - 0.078101, - -0.038839, - 0.040956, - 0.0090862, - -0.016331, - 0.0049818, - -0.0061305, - 0.027496, - 0.0029286, - -0.017037, - 0.068586, - -0.037725, - -0.046089, - 0.024409, - -0.067688, - 0.020343, - -0.036814, - -0.046203, - 0.024064, - 0.057367, - -0.02172, - 0.0058204, - 0.017186, - 0.045419, - -0.0064722, - -0.09032, - 0.016129, - -0.061407, - -0.032358, - -0.00083703, - 0.00049653, - -0.003759, - -0.028175, - 0.012841, - 0.0014729, - -0.03073, - 0.0085201, - -0.0017503, - -0.037207, - -0.00725, - -0.062097, - 0.0035317, - -0.031642, - -0.0093626, - -0.054896, - -0.031033, - 0.074081, - 0.0033656, - 0.037278, - 0.085917, - -0.018513, - -0.027521, - 0.065936, - -0.035383, - 0.0016864, - -0.044935, - -0.0032461, - 0.067268, - 0.019863, - -0.045065, - 0.029633, - 0.014935, - -0.037542, - -0.0098747, - 0.014425, - -0.015885, - -0.055356, - 0.12477, - -0.01151, - 0.018524, - -0.066382, - -0.0020485, - -0.0017532, - -0.0067305, - 0.041164, - 0.0045448, - -0.048269, - 0.0042407, - 0.061187, - 0.0457, - 0.045562, - -0.046261, - 0.0022618, - -0.040025, - 0.029356, - 0.02368, - -0.00026533, - -0.063289, - 0.022211, - -0.13051, - 0.001431, - 0.00038324, - 0.059798, - 0.071746, - -0.053085, - 0.066632, - 0.038459, - 0.040991, - 0.0061278, - -0.065793, - -0.080572, - -0.04914, - -0.047847, - -0.016156, - -0.10758, - -0.011637, - -0.015147, - 0.018609, - 0.10042, - 0.058909, - -0.00208, - -0.10282, - -0.037686, - 0.097146, - 0.054027, - 0.028377, - 0.067478, - -0.011594, - -0.014774, - 0.0080431, - 0.077954, - 0.022918, - -0.049562, - 0.031194, - -0.026256, - -0.0060764, - 0.0011839, - 0.019238, - 0.013521, - 0.007996, - -0.021033, - -0.04291, - 0.030706, - -0.065979, - 0.057458, - 0.019101, - 0.020163, - -0.12945, - 0.0057197, - 0.012119, - 0.019665, - 0.005216, - 0.065681, - -0.035488, - 0.056729, - 0.034186, - -0.053901, - 0.06723, - -0.0052718, - 0.00043907, - 0.039629, - 0.042508, - -0.0092214, - 0.073362, - 0.029937, - -0.0011938, - 0.024533, - -0.013644, - -0.055861, - 0.064502, - -0.01045, - 0.035482, - 0.041393, - 0.021262, - 0.017349, - -0.058481, - -0.050634, - 0.0034109, - -0.014872, - -0.055405, - -0.0070972, - 0.11045, - 0.01417, - 0.023313, - -0.051538, - 0.052327, - -0.012144, - 0.095425, - 0.040597, - -0.000031929, - -0.020627, - -0.026302, - -0.012299, - 0.063248, - -0.1039, - 0.05862, - 0.011611, - -0.0084319, - 0.061824, - -0.028908, - -0.063006, - -0.06679, - 0.011391, - -0.017262, - 0.075625, - 0.0021023, - -0.022752, - -0.045838, - 0.013047, - 0.018772, - 0.016185, - -0.055159, - -0.019319, - 0.0054845, - 0.065651, - -0.079499, - -0.017626, - 0.0801, - -0.033954, - 0.046625, - 0.055295, - 0.084176, - -0.01011, - 0.010999, - 0.0031506, - -0.013571, - -0.066234, - 0.0078674, - 0.035679, - -0.025848, - 0.067066, - 0.013749, - 0.049108, - 0.01886, - 0.056719, - 0.0092291, - 0.083083, - 0.019071, - -0.048566, - -0.0091847, - 0.047755, - -0.034879, - 0.007849, - 0.030383, - -0.020044, - -0.014848, - 0.011839, - 0.046682, - 0.028743, - -0.064176, - -0.06392, - 0.064206, - 0.018897, - -0.0083341, - -0.047886, - 0.015567, - 0.031775, - 0.035622, - -0.039033, - 0.045827, - -0.027859, - 0.084709, - -0.055837, - 0.01564, - -0.074605, - 0.063157, - -0.021071, - -0.02582, - 0.066273, - -0.048214, - -0.017798, - -0.019327, - -0.063546, - 0.0012704, - 0.078313, - 0.045666, - 0.048414, - -0.071838, - -0.0025968, - 0.049798, - 0.096114, - -0.014387, - -0.028356, - 0.00010143, - -0.017673, - 0.016046, - -0.0083874, - -0.0020272, - -0.075796, - -0.017456, - -0.048464, - 0.017817, - -0.06242, - -0.033809 - ], - "war-related": [ - 0.0098673, - -0.029069, - 0.052784, - -0.029883, - 0.044047, - 0.0073203, - -0.010922, - -0.065115, - 0.06278, - 0.083752, - -0.074433, - -0.072419, - -0.019703, - 0.037921, - -0.011933, - 0.06456, - 0.077123, - -0.032354, - 0.034596, - 0.0012674, - 0.037926, - 0.013871, - 0.0073212, - 0.04022, - -0.00007322, - 0.013756, - -0.0081403, - -0.0076665, - 0.097211, - -0.0083029, - -0.014429, - -0.020916, - 0.0046135, - -0.094656, - 0.081269, - 0.014409, - 0.0069729, - 0.067182, - 0.035359, - 0.053029, - -0.042042, - -0.036564, - 0.0092492, - -0.0040179, - 0.0013676, - -0.026535, - -0.008962, - 0.044222, - -0.014212, - 0.018368, - 0.0078844, - 0.013201, - 0.0034701, - 0.020013, - -0.017541, - 0.006855, - -0.048774, - 0.0048402, - -0.0025384, - -0.011653, - -0.045658, - -0.017106, - 0.11308, - -0.019621, - 0.020204, - -0.03738, - 0.011179, - -0.021575, - -0.025734, - 0.081886, - 0.019793, - 0.01053, - 0.050511, - -0.000027872, - 0.02652, - -0.030279, - 0.045178, - -0.0050087, - 0.037748, - -0.025836, - -0.016538, - 0.016404, - -0.039909, - -0.015151, - -0.0017027, - 0.021318, - 0.0032909, - 0.026982, - -0.01829, - 0.01488, - -0.023731, - 0.026456, - -0.083119, - 0.030828, - -0.039591, - -0.040224, - -0.0981, - -0.0087751, - 0.028215, - 0.010365, - 0.025378, - -0.013625, - -0.016706, - -0.020508, - 0.051218, - -0.040919, - 0.021195, - 0.022345, - -0.012343, - -0.036177, - -0.030168, - 0.042198, - 0.024435, - 0.024128, - -0.016404, - 0.0028785, - 0.007846, - -0.040827, - -0.035904, - -0.02358, - -0.032576, - -0.009302, - -0.044493, - -0.042469, - 0.12558, - 0.073016, - -0.022958, - -0.028797, - -0.0062154, - 0.045001, - -0.02538, - -0.0095098, - -0.021831, - 0.034124, - 0.061538, - 0.050153, - -0.01427, - 0.06267, - 0.0088517, - 0.017009, - 0.022603, - 0.00075272, - -0.0030998, - 0.019104, - -0.037107, - -0.028297, - -0.036408, - 0.0072996, - 0.044298, - -0.0040495, - 0.039447, - 0.10402, - -0.019121, - -0.11937, - -0.038539, - 0.014593, - -0.029848, - 0.037524, - 0.012801, - -0.033421, - 0.032473, - -0.037113, - -0.046055, - 0.019365, - -0.059155, - -0.019956, - -0.012675, - 0.0025071, - -0.00019567, - -0.068787, - 0.020239, - -0.0088631, - 0.015716, - 0.016548, - -0.00036497, - 0.032144, - -0.026136, - -0.011146, - -0.013483, - 0.025412, - -0.01905, - 0.013897, - -0.036634, - -0.010385, - 0.022167, - 0.016689, - 0.022608, - 0.102, - 0.02234, - -0.01961, - 0.00049517, - -0.01284, - 0.0083672, - -0.030735, - 0.00099886, - 0.074616, - 0.0073401, - -0.023526, - -0.024498, - -0.024495, - -0.13063, - 0.020625, - -0.017877, - -0.056438, - 0.004584, - -0.027716, - -0.037041, - 0.013211, - 0.015391, - 0.020012, - 0.085209, - 0.053943, - 0.0058389, - -0.00030208, - 0.078908, - 0.035978, - 0.038955, - -0.0018208, - -0.034578, - -0.04536, - -0.0026176, - -0.046273, - -0.010389, - 0.08102, - -0.02027, - -0.0032206, - 0.041733, - 0.066081, - 0.029899, - -0.032054, - 0.009668, - -0.020252, - -0.09055, - -0.047371, - 0.035978, - 0.021878, - -0.030847, - 0.0081818, - 0.0073025, - -0.055818, - 0.024803, - 0.021762, - 0.015245, - -0.03988, - -0.16229, - -0.03164, - 0.00097143, - 0.034836, - -0.018621, - 0.016147, - -0.0022989, - 0.047837, - 0.049568, - 0.011219, - -0.052061, - 0.010443, - 0.044231, - -0.026243, - 0.050571, - -0.0074034, - 0.0014793, - -0.085605, - -0.0374, - -0.041231, - -0.0073526, - 0.016799, - -0.012921, - 0.033748, - 0.0072715, - 0.016734, - 0.039191, - 0.052328, - -0.078172, - -0.045682, - 0.02077, - -0.12234, - -0.012037, - -0.0055556, - -0.017438, - 0.0086664, - 0.089694, - 0.0077207, - 0.016891, - 0.055922, - -0.026699, - 0.027663, - -0.033441, - 0.028714, - -0.023895, - 0.018097, - 0.010463, - 0.081219, - -0.053507, - 0.0099362, - 0.039088, - -0.013218, - -0.00062794, - 0.027384, - -0.0035655, - -0.0061215 - ], - "interest": [ - 0.02437, - -0.062469, - 0.02108, - -0.0093422, - -0.071979, - 0.04066, - -0.0066056, - -0.093896, - 0.043922, - -0.018102, - 0.022574, - -0.027536, - -0.022934, - -0.015587, - -0.0051799, - 0.025084, - 0.078404, - 0.016285, - 0.057601, - -0.017235, - 0.0055343, - 0.0051816, - 0.06075, - 0.058071, - 0.0099415, - -0.025024, - -0.013338, - -0.0014871, - -0.017713, - -0.030324, - -0.010822, - 0.0011568, - 0.0014096, - -0.064547, - -0.024133, - -0.010161, - 0.013129, - 0.028864, - 0.018844, - 0.011059, - -0.020462, - -0.069243, - -0.01506, - -0.031621, - 0.016125, - -0.040721, - 0.0045408, - -0.02984, - -0.019943, - 0.0016644, - 0.0599, - 0.049104, - -0.044547, - -0.020209, - -0.0079673, - -0.028968, - -0.02645, - 0.050765, - -0.069038, - 0.00407, - 0.051767, - 0.027537, - 0.085571, - 0.0043506, - 0.037439, - -0.019527, - -0.028566, - 0.034907, - -0.0024472, - 0.028572, - 0.018512, - 0.013151, - 0.071635, - 0.029968, - 0.029099, - 0.0083555, - -0.010306, - -0.013175, - 0.040067, - -0.046476, - -0.058667, - 0.03859, - -0.014969, - 0.07061, - -0.0073807, - 0.016537, - 0.017364, - 0.00061002, - -0.018832, - 0.0041199, - 0.022876, - 0.054676, - -0.1023, - -0.056357, - -0.00038326, - -0.017685, - -0.053686, - -0.014848, - -0.026287, - 0.002654, - -0.040078, - 0.018512, - -0.050893, - -0.039095, - 0.041176, - -0.051857, - -0.0016375, - -0.0098078, - -0.013138, - -0.018733, - -0.059452, - 0.085409, - 0.033384, - 0.007369, - -0.021539, - 0.039495, - -0.029057, - -0.040614, - -0.054605, - -0.027901, - 0.0073184, - 0.021602, - -0.037531, - -0.078243, - 0.044645, - -0.015466, - 0.00047809, - -0.10032, - 0.020377, - 0.085187, - 0.042135, - -0.0073859, - -0.010645, - 0.040498, - 0.022231, - 0.033231, - -0.010218, - 0.10051, - 0.0062405, - 0.023681, - 0.0066299, - 0.030956, - -0.010904, - -0.019206, - -0.046644, - -0.043931, - -0.035069, - -0.027768, - 0.019492, - -0.0016923, - 0.10265, - 0.067845, - -0.0015473, - -0.067114, - -0.020598, - 0.0041727, - 0.053412, - 0.066947, - -0.016388, - 0.0079057, - 0.027983, - -0.0024951, - -0.039947, - -0.010581, - 0.0025083, - 0.025304, - 0.020269, - 0.01227, - -0.013763, - 0.021924, - 0.027841, - -0.037909, - 0.055983, - 0.0093746, - -0.072379, - 0.050755, - -0.047097, - 0.02081, - -0.0044836, - -0.016418, - -0.057781, - -0.039948, - 0.006249, - -0.070808, - 0.015889, - -0.081987, - 0.023062, - 0.097188, - 0.044547, - -0.0035197, - 0.020753, - 0.12999, - 0.0047775, - -0.008808, - -0.0072047, - 0.012308, - 0.0065243, - 0.0062472, - -0.027606, - 0.031182, - -0.10476, - 0.042106, - 0.011361, - -0.030993, - 0.027677, - 0.012173, - 0.004217, - -0.03625, - 0.003093, - -0.0047055, - 0.008926, - -0.019681, - -0.043453, - -0.028686, - -0.015739, - 0.010354, - 0.019269, - -0.07066, - -0.0094257, - -0.086366, - 0.01457, - 0.0332, - -0.062673, - 0.097894, - 0.12309, - 0.022464, - 0.019539, - 0.14266, - 0.027057, - -0.087072, - -0.0087654, - -0.072636, - -0.074774, - -0.026832, - 0.03972, - 0.054607, - -0.03692, - 0.032571, - -0.079572, - 0.0027293, - 0.075585, - -0.01239, - 0.0060102, - 0.024071, - -0.095278, - -0.02149, - -0.057809, - -0.11286, - 0.0075032, - -0.055323, - 0.077514, - -0.033794, - -0.0058894, - -0.028814, - 0.027327, - -0.044444, - -0.011056, - 0.044181, - -0.0072868, - 0.010219, - -0.013466, - 0.024458, - -0.0034908, - -0.010253, - -0.0045446, - -0.018907, - -0.055863, - 0.096188, - -0.0059938, - 0.00002276, - 0.055197, - 0.080512, - -0.11561, - -0.075766, - 0.12404, - -0.098016, - 0.0282, - 0.013728, - -0.0019506, - -0.0080049, - 0.076039, - -0.0039916, - 0.043552, - -0.022048, - 0.049871, - -0.028405, - 0.037546, - 0.073096, - -0.03689, - 0.041642, - -0.0070068, - 0.010078, - -0.0096366, - 0.013784, - -0.0031856, - -0.015109, - -0.03865, - -0.01464, - -0.031329, - -0.013379 - ], - "overland": [ - -0.045654, - 0.10614, - -0.037104, - 0.034567, - 0.044036, - -0.0053709, - -0.069258, - -0.072007, - -0.0031796, - 0.057115, - -0.0072873, - -0.087106, - -0.035695, - -0.01656, - 0.031532, - -0.037919, - 0.10168, - -0.06914, - 0.010576, - 0.01033, - 0.0033735, - -0.051407, - 0.02969, - 0.041119, - -0.037312, - 0.006114, - 0.0046913, - 0.032902, - -0.055863, - 0.016298, - -0.022227, - 0.07673, - 0.012728, - 0.0081846, - 0.0016811, - 0.022816, - 0.016896, - -0.015298, - -0.014259, - 0.0093029, - 0.054449, - -0.1026, - 0.068709, - -0.017237, - -0.020066, - 0.0024998, - 0.038292, - -0.0011497, - -0.047616, - -0.038244, - 0.050154, - 0.0032987, - -0.026035, - -0.04743, - -0.11161, - 0.015294, - 0.0472, - -0.0051029, - -0.022091, - -0.012403, - -0.016156, - 0.029956, - 0.10089, - 0.038734, - 0.0094934, - -0.025688, - -0.025952, - -0.091072, - -0.041311, - -0.0029402, - 0.038297, - 0.018379, - 0.022059, - 0.0083965, - 0.019231, - -0.0024355, - -0.032843, - -0.0060579, - 0.004679, - -0.005004, - 0.00041931, - -0.0022599, - -0.1317, - 0.053613, - 0.019822, - -0.036176, - 0.036453, - -0.0099861, - -0.0035898, - -0.0047885, - 0.033037, - 0.0866, - -0.069239, - 0.031419, - -0.048841, - 0.044712, - -0.050576, - 0.062943, - -0.1303, - -0.041004, - 0.077449, - -0.061059, - 0.062503, - -0.013265, - 0.046781, - -0.10401, - -0.032904, - -0.042405, - 0.032106, - 0.003858, - 0.053086, - 0.11034, - 0.051272, - 0.032626, - -0.029141, - 0.011094, - 0.07671, - 0.062663, - -0.0059762, - 0.023935, - 0.083467, - -0.026455, - 0.033072, - 0.088578, - 0.0093721, - -0.019391, - -0.03135, - -0.012222, - -0.051085, - -0.015814, - 0.0092117, - -0.0019784, - -0.083474, - -0.055348, - 0.071864, - -0.033033, - 0.028016, - 0.00048437, - -0.027768, - 0.026326, - -0.04799, - -0.017896, - -0.041546, - 0.0085579, - 0.030767, - 0.031655, - -0.018552, - 0.023052, - -0.018808, - -0.089011, - 0.049649, - 0.04475, - -0.032404, - -0.0031026, - 0.077278, - 0.019656, - -0.032348, - -0.03627, - -0.025604, - 0.0058238, - 0.03999, - -0.025811, - 0.0021897, - 0.042057, - -0.004383, - 0.035394, - 0.10644, - -0.070098, - 0.066436, - 0.0073444, - 0.066422, - 0.021853, - -0.02412, - -0.013705, - 0.012881, - 0.039412, - 0.034946, - 0.0071871, - 0.0033745, - 0.065771, - 0.045327, - 0.059274, - 0.00074107, - -0.070707, - 0.00046962, - 0.0091822, - -0.019155, - 0.15954, - -0.093213, - -0.073373, - 0.067301, - 0.00085834, - 0.054463, - 0.056682, - -0.0065589, - 0.027454, - 0.01346, - 0.072758, - -0.00033738, - 0.066023, - -0.17764, - 0.051758, - 0.038435, - 0.073609, - 0.016775, - -0.01525, - -0.0084642, - -0.0004669, - 0.067699, - -0.029192, - 0.083076, - -0.02966, - 0.043202, - -0.08961, - 0.074637, - 0.073841, - 0.0011573, - -0.054199, - 0.051431, - -0.053, - -0.033329, - 0.02084, - 0.050931, - 0.074321, - -0.044955, - 0.044991, - 0.0061321, - 0.077674, - -0.0057414, - -0.024871, - 0.0016419, - 0.0030469, - -0.025504, - -0.018917, - 0.027498, - -0.013006, - 0.018967, - 0.10826, - 0.0059321, - 0.047889, - 0.061272, - 0.058842, - 0.033251, - -0.13361, - -0.054866, - 0.0016159, - -0.010966, - -0.046944, - -0.0068943, - 0.1273, - 0.090015, - 0.012707, - 0.070084, - 0.04465, - 0.020904, - 0.049346, - 0.032314, - -0.0028293, - 0.050398, - -0.0083, - -0.038883, - 0.050871, - -0.072517, - -0.023985, - 0.03851, - -0.021313, - -0.0244, - -0.021993, - 0.0016886, - 0.041605, - -0.00026516, - 0.083903, - -0.088334, - -0.024534, - 0.0011032, - -0.092256, - 0.0052403, - -0.017434, - -0.029368, - 0.052316, - 0.10003, - 0.0015381, - -0.013238, - -0.0086581, - -0.054079, - -0.044444, - -0.0079687, - -0.018689, - 0.0053807, - -0.00029651, - -0.033569, - 0.041076, - -0.01963, - -0.0097007, - 0.050414, - -0.084328, - -0.0026989, - -0.025528, - -0.060525, - 0.0074219 - ], - "partisanship": [ - 0.019678, - 0.053884, - 0.048485, - -0.011621, - -0.029792, - 0.0044264, - -0.020653, - -0.057973, - 0.0037329, - 0.024382, - -0.022393, - -0.034849, - -0.045039, - 0.042818, - -0.0053069, - 0.021948, - 0.055515, - -0.013827, - 0.0032104, - 0.00057751, - -0.0046149, - 0.0086324, - 0.038638, - 0.045659, - -0.03938, - 0.01753, - 0.017639, - 0.042602, - 0.035465, - -0.022492, - 0.018066, - 0.0087007, - -0.043192, - -0.043479, - 0.0041466, - 0.0085871, - 0.02361, - 0.033174, - 0.010663, - 0.028863, - -0.045658, - -0.051341, - 0.0057281, - 0.0051851, - 0.0182, - -0.023351, - -0.062241, - -0.024383, - -0.00093203, - -0.023414, - 0.050592, - 0.017533, - 0.02188, - 0.013308, - -0.01174, - -0.00052814, - 0.038457, - 0.01842, - -0.028695, - 0.010768, - -0.022079, - -0.0070861, - -0.0068611, - -0.063457, - 0.0096106, - -0.011436, - -0.076072, - 0.031816, - 0.031149, - 0.055008, - 0.023616, - -0.0071164, - 0.0034354, - -0.016911, - 0.035051, - 0.0082082, - -0.021573, - 0.0035675, - -0.0073924, - 0.018135, - -0.094616, - -0.02822, - -0.048039, - 0.049878, - 0.035396, - -0.061964, - 0.001215, - 0.056969, - -0.014163, - -0.021739, - 0.019884, - 0.019412, - -0.07364, - 0.0023397, - 0.049241, - 0.013052, - -0.026544, - 0.018926, - 0.019587, - 0.0066688, - -0.010795, - -0.048776, - -0.008244, - 0.011115, - 0.016596, - -0.039641, - 0.077037, - -0.012574, - -0.063102, - -0.0062965, - -0.0074868, - 0.045889, - 0.028936, - -0.049341, - -0.029955, - 0.012043, - 0.059369, - -0.040339, - -0.041954, - -0.049298, - 0.0023887, - -0.023158, - 0.068548, - -0.027732, - 0.059988, - -0.014009, - 0.0032691, - -0.038886, - 0.0091773, - 0.099506, - -0.019476, - -0.026968, - 0.040472, - 0.055586, - 0.0026135, - -0.021535, - -0.0023171, - 0.052418, - 0.016349, - -0.023661, - 0.024145, - -0.054329, - 0.018032, - -0.016711, - -0.0059088, - -0.0091413, - 0.027152, - -0.001791, - 0.028273, - -0.0064487, - 0.013151, - 0.051955, - 0.00033698, - 0.0079492, - 0.005498, - 0.064356, - 0.037168, - 0.061467, - -0.028585, - 0.0082776, - 0.04248, - 0.016419, - -0.096419, - -0.055877, - -0.0069907, - 0.022569, - 0.018738, - 0.014532, - 0.013125, - -0.032711, - -0.023606, - 0.018752, - -0.0040624, - -0.0050985, - 0.028727, - 0.040224, - 0.013606, - 0.036604, - -0.022659, - -0.060594, - -0.0165, - -0.0080624, - 0.0019, - -0.043342, - 0.015003, - -0.034582, - 0.0066082, - 0.087305, - -0.021863, - -0.0019454, - 0.031082, - 0.049418, - -0.035046, - 0.016782, - 0.069195, - 0.01725, - 0.0311, - 0.029475, - -0.039095, - -0.042453, - -0.12292, - -0.028692, - 0.017452, - -0.070368, - -0.048459, - -0.02853, - -0.0014677, - 0.027757, - -0.027778, - 0.0019397, - 0.056663, - 0.0044704, - 0.0055406, - 0.028863, - 0.047525, - 0.021532, - -0.010175, - 0.027519, - 0.0029926, - -0.11253, - -0.056198, - 0.041386, - -0.033827, - 0.050146, - 0.027392, - 0.0023529, - 0.021597, - 0.059435, - -0.0054432, - -0.051374, - 0.038255, - -0.027127, - -0.045494, - -0.034851, - 0.023865, - -0.011068, - -0.040565, - -0.057704, - -0.014573, - -0.054925, - 0.022191, - -0.028846, - 0.016663, - 0.026839, - -0.043603, - 0.013042, - -0.039597, - -0.085729, - 0.0095145, - -0.023794, - -0.021116, - 0.030013, - -0.038209, - 0.057799, - 0.033423, - -0.019902, - -0.0073539, - 0.0078028, - 0.0054989, - 0.015973, - -0.01389, - 0.019959, - -0.017735, - 0.015037, - -0.025472, - 0.065605, - 0.027213, - 0.029291, - -0.042464, - 0.014001, - 0.013835, - 0.040019, - -0.078779, - -0.039833, - 0.052927, - -0.092642, - -0.016699, - 0.053519, - -0.055103, - 0.010528, - 0.061136, - -0.03028, - -0.018635, - 0.018992, - 0.015729, - 0.046189, - 0.036069, - 0.068341, - -0.034318, - 0.01536, - -0.030919, - 0.0045873, - -0.011844, - 0.01425, - -0.0028223, - 0.0080159, - -0.045924, - 0.0044986, - 0.0057337, - -0.015 - ], - "farmhouse": [ - 0.040646, - -0.038137, - -0.014924, - -0.0082479, - 0.010894, - -0.0062072, - 0.007855, - -0.10519, - -0.05786, - 0.026837, - 0.015269, - -0.10222, - 0.033973, - -0.047834, - -0.020667, - -0.0063771, - 0.098934, - -0.036414, - 0.0052525, - 0.008062, - 0.024801, - -0.091189, - -0.00074513, - 0.031283, - 0.060975, - -0.022189, - -0.020904, - 0.12681, - -0.032245, - 0.036808, - 0.028898, - -0.0046117, - 0.02411, - -0.0081597, - -0.013397, - 0.0072564, - 0.022352, - 0.010477, - 0.037022, - 0.028962, - -0.059417, - -0.099893, - 0.0086521, - 0.0033454, - 0.019141, - 0.019183, - 0.010853, - 0.012995, - -0.093563, - 0.01784, - 0.041188, - 0.0081779, - -0.028453, - 0.057413, - -0.059862, - -0.023003, - 0.047736, - -0.020213, - -0.075652, - -0.085098, - -0.0029404, - -0.012644, - 0.086051, - 0.031861, - 0.090485, - 0.023494, - -0.015096, - -0.021159, - -0.13136, - 0.072749, - 0.05027, - -0.034391, - 0.0074157, - -0.056422, - -0.025889, - 0.037033, - -0.036305, - -0.039039, - 0.034601, - 0.056894, - 0.00025424, - -0.0061198, - 0.044099, - 0.0035464, - -0.073426, - 0.0056269, - 0.050005, - -0.043542, - 0.014495, - 0.021543, - -0.022722, - 0.013366, - -0.081817, - -0.0036097, - 0.055422, - 0.1108, - -0.051644, - 0.088617, - 0.053954, - -0.038826, - 0.048139, - 0.030318, - -0.030645, - 0.0091857, - -0.012596, - -0.063098, - 0.004994, - 0.067136, - -0.017842, - 0.013498, - -0.011353, - 0.095658, - 0.068387, - 0.080873, - -0.064423, - -0.033424, - -0.008058, - 0.02383, - 0.029827, - -0.046203, - -0.052533, - -0.049228, - 0.0064435, - -0.041629, - 0.024647, - -0.0041321, - -0.00039943, - -0.051758, - -0.011209, - 0.023911, - 0.046003, - 0.0057919, - 0.034446, - 0.00037846, - -0.019808, - -0.058668, - 0.060091, - 0.026793, - 0.052892, - -0.051782, - -0.019931, - -0.043152, - 0.014651, - 0.025091, - 0.003084, - -0.02401, - 0.082749, - 0.071822, - -0.022081, - -0.070696, - -0.019337, - 0.0075444, - 0.04403, - 0.019732, - 0.068076, - 0.055862, - 0.037183, - -0.0087355, - 0.037169, - -0.016315, - -0.0075489, - -0.0044839, - -0.017569, - 0.0080469, - -0.016561, - 0.018494, - -0.024391, - 0.0099059, - 0.04753, - 0.066543, - 0.034501, - -0.043935, - -0.078849, - 0.01911, - 0.0034872, - 0.003766, - 0.032901, - 0.019622, - -0.049569, - -0.0050708, - 0.0024608, - -0.039602, - 0.034313, - -0.017342, - -0.071681, - 0.025179, - 0.045475, - 0.10111, - 0.032023, - -0.068829, - 0.066143, - 0.041251, - -0.011514, - 0.053549, - -0.0073038, - -0.061387, - 0.055576, - 0.10811, - 0.053122, - 0.040755, - -0.14327, - 0.019943, - -0.07059, - -0.043006, - 0.019522, - -0.030714, - 0.026524, - 0.045491, - -0.049376, - -0.044227, - 0.076794, - -0.030588, - 0.020559, - 0.0038176, - -0.028411, - 0.03315, - -0.032153, - 0.14761, - 0.054732, - -0.074677, - 0.001403, - -0.0097633, - 0.069122, - 0.056404, - -0.037736, - -0.054518, - 0.013472, - 0.023315, - -0.068589, - -0.022574, - 0.022071, - -0.045362, - -0.0060028, - -0.023421, - -0.010774, - -0.040611, - 0.065392, - 0.026458, - 0.0014846, - -0.0068564, - 0.051058, - 0.030265, - 0.024043, - 0.010344, - 0.022695, - 0.031922, - -0.039994, - 0.016188, - 0.0099001, - 0.05056, - -0.022073, - -0.017851, - -0.044968, - -0.015434, - -0.0027902, - -0.059236, - -0.037682, - 0.0082138, - -0.049368, - 0.12284, - 0.027315, - 0.027126, - 0.038943, - -0.04987, - 0.034988, - -0.093475, - 0.012143, - -0.037529, - 0.017747, - -0.025495, - -0.069954, - 0.059263, - -0.058576, - -0.031957, - 0.011028, - -0.0013846, - 0.054475, - 0.010962, - 0.032578, - -0.010498, - 0.075795, - 0.014367, - -0.00015668, - 0.051789, - -0.017653, - 0.022905, - 0.05559, - -0.0081159, - -0.034214, - 0.051739, - -0.0039863, - 0.030233, - 0.036211, - -0.0046653, - -0.05849, - 0.038492, - 0.054044, - 0.050992, - -0.018871, - -0.041698 - ], - "in-law": [ - -0.040105, - 0.000385, - 0.072377, - -0.0048859, - 0.05237, - 0.0078325, - -0.03083, - -0.06944, - -0.016264, - 0.043385, - -0.017316, - 0.026451, - -0.016382, - 0.0044145, - -0.056371, - 0.010185, - 0.045437, - -0.020614, - 0.058999, - -0.0028479, - 0.015671, - 0.038772, - 0.026334, - 0.051223, - 0.069631, - 0.0017144, - -0.018592, - 0.027629, - -0.0013402, - 0.056844, - 0.0071202, - -0.057405, - -0.030226, - -0.0024235, - -0.055268, - 0.055788, - -0.09413, - 0.073607, - 0.037308, - 0.025947, - -0.030563, - -0.064264, - 0.047988, - -0.043855, - -0.03309, - 0.091855, - 0.012214, - -0.040247, - -0.044452, - 0.012812, - 0.030696, - 0.0044107, - -0.016008, - 0.079108, - 0.10259, - -0.058176, - -0.035524, - -0.044681, - -0.068987, - -0.038186, - 0.00065301, - 0.037633, - 0.053544, - -0.01053, - -0.048632, - -0.031289, - 0.058228, - -0.016921, - -0.071602, - -0.051284, - 0.098402, - -0.0071355, - 0.086861, - -0.060726, - -0.0040386, - 0.00085407, - 0.026851, - -0.0013645, - 0.020879, - 0.029716, - 0.039574, - 0.075107, - -0.041562, - 0.057667, - -0.026919, - -0.079044, - 0.064687, - 0.12486, - -0.045622, - -0.026639, - 0.03137, - 0.060078, - -0.10529, - -0.065826, - -0.017747, - 0.10852, - -0.07155, - 0.077274, - 0.0094342, - -0.015861, - 0.042898, - 0.051597, - -0.046483, - -0.062131, - 0.03744, - -0.12369, - 0.0035169, - 0.010684, - 0.072436, - -0.011985, - -0.10179, - 0.13, - 0.068302, - -0.017309, - 0.032828, - -0.065817, - 0.046498, - -0.038452, - -0.013995, - -0.026483, - -0.027694, - 0.054836, - 0.11177, - -0.0011877, - 0.085312, - 0.050677, - 0.012836, - 0.022658, - 0.047171, - 0.13783, - 0.0314, - 0.034732, - -0.017972, - -0.046089, - -0.067017, - 0.024342, - -0.010691, - 0.10075, - 0.063725, - 0.021769, - 0.036314, - -0.036859, - -0.015942, - 0.073419, - 0.001305, - 0.043097, - 0.042759, - 0.076595, - -0.038464, - -0.010517, - 0.011961, - 0.10559, - 0.050324, - -0.080713, - 0.0042993, - -0.014979, - 0.046862, - 0.0056439, - 0.058396, - -0.008428, - 0.037272, - 0.081439, - -0.045261, - -0.067301, - -0.034686, - -0.0042551, - 0.020593, - -0.0078439, - -0.015827, - 0.065688, - -0.013614, - -0.024181, - -0.056322, - 0.011822, - -0.076823, - 0.045237, - 0.057321, - 0.029087, - -0.0061232, - -0.01104, - 0.083617, - -0.022226, - 0.010289, - -0.012352, - 0.010142, - -0.0084717, - -0.031264, - 0.11366, - 0.082784, - -0.021622, - -0.029222, - 0.12327, - -0.0026454, - 0.06313, - -0.059041, - 0.031786, - 0.029479, - 0.0075005, - -0.025939, - 0.029243, - -0.13539, - 0.04544, - -0.040433, - -0.083746, - 0.024508, - -0.052574, - 0.0034893, - -0.010804, - -0.0053636, - -0.022122, - 0.12333, - 0.048203, - 0.030957, - -0.013363, - -0.039965, - 0.06523, - -0.058932, - 0.0075701, - 0.022352, - -0.043814, - 0.13062, - -0.044268, - 0.040089, - 0.10263, - 0.081979, - -0.012636, - 0.047224, - 0.10541, - -0.06013, - -0.023229, - -0.012954, - -0.013547, - -0.036484, - -0.04171, - 0.019878, - 0.011188, - 0.044114, - -0.0092488, - -0.026938, - 0.016129, - 0.03111, - -0.07318, - 0.012248, - 0.021003, - -0.034072, - 0.055714, - -0.0079795, - -0.073494, - -0.0048319, - 0.083394, - -0.017781, - -0.036961, - -0.068613, - 0.10334, - 0.12381, - -0.061298, - 0.018983, - 0.021625, - 0.0039534, - -0.075784, - -0.027387, - -0.02257, - -0.069148, - 0.046756, - 0.048486, - 0.094555, - -0.039517, - 0.073343, - -0.07488, - 0.021051, - -0.10891, - 0.072445, - -0.088282, - -0.033184, - 0.10122, - -0.065639, - -0.0015456, - 0.0046914, - 0.011023, - 0.062788, - 0.085633, - -0.021353, - 0.050531, - -0.00040115, - -0.010705, - 0.082305, - -0.0064696, - -0.04732, - -0.042558, - -0.048297, - 0.0042485, - 0.002435, - -0.090634, - -0.0027967, - -0.031343, - -0.014187, - 0.02328, - 0.057267, - -0.017089, - 0.021404 - ], - "fashionista": [ - -0.026559, - -0.019061, - -0.0026462, - 0.027071, - -0.040651, - -0.037896, - -0.0079015, - -0.059006, - 0.024918, - -0.034868, - 0.0075198, - 0.060341, - -0.10225, - -0.012532, - -0.057583, - 0.0017693, - 0.074331, - 0.052829, - 0.016505, - 0.0024652, - 0.01987, - -0.013495, - -0.014594, - 0.0231, - 0.047438, - 0.032815, - 0.062895, - 0.070165, - -0.064591, - -0.0045149, - 0.020837, - -0.032837, - 0.058776, - -0.020189, - -0.018203, - 0.0094127, - 0.040863, - 0.018305, - -0.031529, - 0.034015, - 0.0052281, - -0.087275, - -0.0037239, - -0.01162, - 0.00029072, - 0.042235, - 0.003475, - -0.0013167, - -0.047917, - -0.075419, - -0.005365, - -0.060953, - -0.040558, - -0.0035299, - 0.037814, - -0.05485, - 0.032117, - -0.012307, - -0.045583, - -0.0052201, - -0.041811, - -0.046778, - 0.052878, - -0.0045237, - 0.019068, - 0.011121, - -0.014339, - 0.0032597, - -0.03408, - -0.041531, - 0.019976, - -0.0032773, - 0.04527, - -0.06444, - -0.007554, - 0.010718, - 0.026998, - -0.027408, - 0.0075605, - 0.059148, - 0.0073033, - 0.059917, - -0.01587, - 0.041884, - -0.022164, - -0.016786, - -0.075601, - 0.030429, - 0.013631, - -0.0010622, - 0.031092, - -0.024794, - -0.078036, - -0.010655, - 0.081697, - 0.10168, - -0.036724, - -0.036285, - -0.015595, - -0.0078416, - -0.025041, - 0.070501, - -0.03505, - 0.010448, - -0.034631, - -0.076126, - 0.022823, - 0.0054849, - 0.038874, - 0.030184, - -0.00053017, - 0.059511, - -0.0048568, - -0.022573, - -0.014632, - -0.023263, - -0.00073049, - -0.011951, - 0.0079236, - 0.025026, - -0.0060081, - 0.0068011, - -0.0089434, - -0.0056239, - 0.07133, - -0.029658, - 0.051877, - 0.074571, - 0.026393, - 0.011559, - 0.014544, - -0.0033541, - 0.039017, - -0.045672, - -0.015803, - 0.021303, - -0.018257, - 0.086341, - 0.0037536, - -0.071108, - 0.052637, - -0.012532, - 0.06035, - 0.053417, - -0.032472, - 0.022482, - -0.0086794, - -0.0062255, - 0.015896, - -0.027781, - 0.013251, - 0.053627, - -0.042118, - 0.018712, - -0.0026439, - -0.058641, - 0.029793, - 0.051723, - -0.0025933, - -0.014137, - 0.032549, - -0.013441, - -0.014301, - 0.040883, - -0.010409, - 0.015829, - -0.017754, - -0.029554, - -0.032233, - 0.040339, - -0.027086, - 0.010262, - 0.0060636, - -0.08914, - 0.00020277, - 0.065264, - -0.027619, - -0.0038928, - 0.015947, - -0.046814, - 0.026176, - -0.01704, - -0.021907, - -0.058449, - 0.029294, - -0.063037, - -0.0061258, - 0.10708, - -0.047744, - 0.005324, - -0.016864, - 0.086764, - -0.0056444, - -0.025958, - 0.0244, - 0.045312, - -0.028766, - 0.051907, - 0.036218, - 0.0053088, - -0.099865, - 0.015209, - -0.0069811, - 0.019892, - -0.0035702, - 0.051725, - -0.041293, - -0.023127, - -0.0018393, - -0.010568, - 0.05995, - -0.013773, - 0.017186, - 0.021973, - 0.026835, - -0.0049405, - -0.049137, - -0.0096141, - 0.022117, - 0.027152, - -0.063819, - -0.0024596, - 0.01341, - 0.037585, - 0.0066711, - 0.010193, - 0.053901, - 0.077656, - -0.00085279, - 0.029476, - -0.01021, - -0.0071853, - -0.062618, - -0.0531, - 0.00922, - -0.029858, - 0.0013161, - -0.056552, - 0.021659, - -0.011571, - 0.035026, - -0.0067177, - 0.024372, - 0.0037591, - 0.025569, - 0.038578, - -0.028563, - -0.012429, - -0.0275, - -0.026251, - 0.044116, - -0.021199, - -0.014601, - -0.015899, - 0.04614, - -0.0057597, - -0.028567, - -0.02528, - 0.055499, - 0.011777, - 0.0063805, - 0.037465, - 0.0090681, - 0.041507, - 0.010195, - 0.0097071, - -0.015005, - 0.019755, - 0.049964, - 0.0040174, - -0.0039267, - 0.047599, - -0.076119, - -0.0018493, - 0.075355, - -0.034143, - -0.05292, - -0.014191, - -0.044343, - 0.0019628, - 0.10164, - 0.067286, - 0.054761, - -0.0033264, - -0.072125, - -0.020566, - -0.013401, - -0.049921, - 0.033388, - 0.0065208, - -0.056073, - -0.006358, - -0.0029973, - 0.024435, - -0.020539, - -0.045812, - 0.0055375, - 0.082292, - 0.0077606, - 0.00063235 - ], - "systems": [ - -0.0079185, - -0.055801, - -0.039436, - -0.0099438, - -0.028531, - -0.017224, - -0.0061447, - -0.079942, - 0.044404, - -0.0060155, - 0.010933, - -0.075631, - -0.011987, - 0.0064072, - 0.0012364, - -0.024131, - 0.15353, - 0.051043, - 0.082268, - 0.032077, - -0.051321, - -0.0014681, - 0.060326, - 0.080287, - 0.023823, - -0.025048, - -0.035094, - -0.0566, - 0.064137, - 0.020467, - -0.013133, - -0.018392, - -0.028957, - -0.040366, - 0.066875, - 0.057192, - -0.0083209, - -0.0091391, - 0.04349, - -0.043775, - -0.049733, - -0.14445, - 0.015738, - -0.0039944, - -0.049011, - -0.052541, - 0.032474, - -0.01886, - 0.021785, - -0.039229, - -0.063522, - 0.035175, - 0.025617, - -0.036801, - -0.075902, - 0.037247, - 0.052703, - 0.048226, - 0.024258, - 0.0026632, - 0.075174, - -0.026733, - 0.17048, - 0.023958, - 0.088944, - 0.014505, - -0.012645, - -0.021566, - 0.016445, - 0.034007, - 0.024209, - -0.01672, - 0.0084098, - -0.02748, - -0.019897, - -0.052396, - -0.018437, - -0.021193, - 0.021787, - 0.022146, - 0.00889, - -0.037673, - -0.047097, - 0.057653, - 0.062228, - -0.019594, - -0.01663, - -0.039899, - -0.04007, - -0.028137, - 0.0048102, - -0.0017524, - -0.082757, - 0.079135, - -0.047482, - 0.0905, - 0.012202, - -0.013719, - -0.021729, - 0.015488, - 0.024726, - -0.033771, - -0.0064907, - -0.054217, - 0.026701, - -0.091284, - 0.021871, - 0.001524, - 0.018171, - -0.0099523, - 0.047645, - 0.070475, - 0.070843, - -0.0019635, - 0.03475, - -0.049957, - -0.066623, - 0.041659, - -0.057878, - -0.0059675, - -0.036872, - 0.0014683, - 0.014158, - -0.01056, - 0.14758, - 0.025129, - -0.048314, - -0.0090252, - -0.022021, - 0.12687, - -0.0033999, - 0.043408, - 0.039891, - -0.036766, - 0.033692, - -0.015741, - 0.018933, - 0.0045483, - -0.026066, - 0.036189, - 0.0064477, - -0.013307, - -0.029014, - 0.056383, - 0.043148, - -0.047422, - -0.0084245, - 0.0014432, - -0.0066344, - 0.014451, - 0.022279, - 0.073087, - 0.013037, - -0.084243, - 0.0067948, - 0.010946, - -0.041203, - 0.0046678, - 0.0055103, - -0.022899, - 0.033318, - -0.0068496, - 0.0035471, - -0.036575, - 0.0018242, - -0.00542, - 0.03861, - -0.0016577, - 0.052481, - 0.0018505, - 0.034229, - 0.021539, - 0.0033392, - 0.026836, - -0.043625, - 0.054456, - -0.026924, - 0.030552, - -0.086484, - -0.023495, - 0.016079, - 0.032673, - -0.038394, - -0.010756, - 0.027392, - -0.0075579, - -0.015622, - 0.10745, - -0.038568, - 0.019427, - -0.047162, - 0.061674, - -0.050437, - -0.035557, - 0.019563, - -0.072995, - -0.03372, - -0.014285, - 0.0077372, - -0.028262, - -0.16425, - 0.01884, - -0.024169, - 0.027046, - -0.030784, - -0.034981, - 0.025324, - -0.036266, - -0.016061, - -0.030298, - 0.099982, - 0.038723, - 0.071473, - 0.0042878, - -0.035348, - 0.019402, - 0.016024, - -0.030685, - -0.052667, - -0.0056018, - -0.014823, - 0.046374, - 0.032065, - 0.09305, - 0.015929, - -0.030654, - -0.021615, - 0.029078, - 0.00050656, - 0.079881, - -0.025829, - -0.027185, - -0.078358, - -0.042139, - 0.032973, - -0.015859, - 0.02017, - 0.071578, - -0.0021824, - 0.023446, - -0.04038, - -0.015695, - 0.0046008, - 0.03926, - 0.055738, - -0.032492, - -0.026352, - 0.027914, - 0.021531, - 0.045764, - -0.0037951, - 0.036478, - -0.018615, - 0.037408, - -0.026159, - 0.077173, - 0.040331, - 0.031038, - -0.044169, - -0.030182, - -0.018972, - 0.049679, - -0.027204, - -0.037543, - 0.015507, - -0.092615, - 0.038996, - -0.012015, - -0.035293, - 0.041415, - -0.053845, - 0.074687, - -0.10769, - -0.047878, - 0.00043377, - -0.0039706, - -0.030148, - 0.028026, - 0.043808, - 0.0046191, - 0.024642, - -0.038213, - -0.028661, - -0.0048026, - -0.016243, - -0.036099, - -0.016149, - 0.0099399, - -0.027161, - 0.028523, - -0.026018, - 0.015621, - -0.01645, - -0.081886, - 0.021949, - -0.030965, - -0.034756, - -0.0073049, - -0.012265, - 0.01752 - ], - "firm": [ - 0.015277, - -0.015232, - 0.048696, - -0.007906, - -0.07393, - -0.047589, - -0.056797, - -0.15379, - 0.050356, - 0.0065748, - -0.042891, - -0.09814, - 0.017502, - 0.067733, - -0.02632, - 0.065697, - 0.18755, - 0.029006, - 0.026603, - 0.013068, - 0.04702, - 0.16161, - -0.0065755, - 0.12292, - -0.039742, - 0.0021021, - 0.0013184, - 0.042542, - -0.039713, - 0.0045174, - -0.072422, - 0.054761, - -0.14073, - -0.035222, - -0.063389, - 0.10646, - -0.1012, - -0.0036752, - 0.10462, - 0.049937, - -0.034516, - -0.183, - -0.083259, - -0.095611, - -0.07957, - -0.046835, - 0.04042, - 0.042969, - -0.031105, - -0.076409, - 0.11605, - -0.094923, - 0.01695, - 0.10276, - -0.030436, - -0.016944, - -0.031403, - 0.030666, - -0.055177, - 0.028725, - -0.032614, - 0.048596, - 0.1053, - 0.022791, - 0.11944, - 0.0026594, - -0.042526, - -0.10281, - -0.0010535, - -0.073963, - 0.047763, - -0.023807, - 0.01121, - 0.050053, - -0.079061, - -0.082297, - -0.052628, - -0.09771, - -0.062401, - -0.09603, - 0.0080372, - 0.025349, - -0.053476, - -0.01877, - -0.036238, - -0.021085, - -0.074318, - -0.023947, - 0.01393, - -0.0023625, - 0.046187, - 0.020378, - -0.12322, - -0.10191, - 0.065253, - 0.11875, - -0.15357, - -0.040486, - 0.10927, - -0.064503, - -0.0092415, - -0.024956, - 0.046991, - -0.02059, - 0.0036473, - -0.19698, - -0.036553, - 0.035443, - -0.018166, - 0.045563, - -0.079227, - 0.17766, - 0.076464, - 0.044858, - 0.005039, - -0.062551, - -0.07251, - 0.04994, - -0.019898, - 0.035704, - 0.052864, - -0.069394, - 0.04172, - 0.057951, - 0.085776, - -0.027014, - 0.036881, - -0.11023, - 0.052658, - 0.054639, - 0.0537, - 0.05501, - -0.011621, - -0.056138, - 0.020308, - 0.051772, - 0.097329, - 0.049512, - -0.022524, - 0.03935, - 0.053235, - 0.039512, - -0.08093, - -0.055407, - -0.00047117, - -0.08002, - 0.06901, - -0.072228, - 0.057813, - -0.10555, - 0.017099, - 0.028202, - 0.069655, - -0.078594, - -0.047937, - 0.044587, - -0.031261, - -0.12283, - -0.061204, - 0.005796, - 0.051265, - -0.039355, - -0.018878, - 0.028172, - 0.075381, - 0.0072602, - -0.033744, - -0.060553, - -0.059892, - 0.029984, - -0.0020135, - 0.021767, - 0.017665, - -0.015357, - 0.0058059, - 0.038919, - -0.040483, - 0.031977, - -0.036161, - 0.013608, - -0.1381, - -0.093992, - 0.079651, - 0.034081, - -0.01192, - -0.029353, - 0.028158, - 0.11955, - 0.023431, - 0.050815, - -0.12124, - 0.11457, - 0.020386, - -0.066033, - 0.039812, - -0.0020075, - 0.026086, - 0.024914, - 0.071074, - -0.045252, - -0.23578, - 0.095066, - -0.033312, - 0.0078971, - -0.01657, - 0.029857, - -0.010149, - -0.08187, - 0.01261, - -0.12021, - 0.087065, - 0.028103, - -0.035675, - -0.025708, - -0.11636, - -0.014891, - 0.064967, - -0.0666, - -0.014916, - 0.013272, - -0.0097772, - -0.097696, - 0.032487, - 0.095966, - 0.090774, - -0.011164, - -0.0091779, - 0.086292, - -0.032819, - -0.045453, - 0.063648, - -0.11661, - -0.089069, - -0.011392, - -0.047372, - 0.02119, - -0.023082, - -0.047522, - -0.02686, - 0.050814, - 0.20765, - 0.027117, - 0.000067867, - 0.071923, - -0.0061329, - -0.073641, - -0.055667, - 0.043682, - -0.085681, - -0.021279, - -0.030319, - -0.10191, - -0.01117, - 0.085896, - 0.010037, - 0.010287, - -0.017379, - 0.073794, - -0.019709, - 0.004207, - -0.007621, - 0.12599, - -0.032321, - -0.017278, - -0.032137, - -0.012899, - 0.061333, - 0.029533, - -0.085456, - 0.089363, - -0.026196, - 0.11704, - -0.13619, - 0.02352, - 0.09174, - 0.013703, - 0.038992, - -0.00028371, - -0.061028, - -0.078667, - 0.072601, - 0.056056, - -0.041234, - 0.056685, - -0.02679, - 0.024891, - -0.035957, - -0.045853, - -0.05827, - 0.054417, - -0.036111, - 0.05305, - 0.071513, - 0.01553, - -0.036461, - -0.090194, - -0.040363, - 0.053921, - -0.13252, - -0.00276 - ], - "life": [ - 0.0031941, - -0.1289, - 0.11445, - -0.009161, - -0.0059675, - 0.0042326, - -0.0335, - -0.12365, - 0.17044, - 0.039937, - 0.053347, - -0.094224, - 0.022911, - -0.048023, - -0.035388, - -0.067587, - 0.17104, - 0.047225, - 0.064031, - 0.082609, - -0.057226, - 0.034573, - -0.019479, - 0.06729, - -0.0024783, - 0.035819, - -0.0078472, - 0.023529, - -0.039699, - 0.020119, - -0.0068216, - -0.014336, - -0.010728, - -0.076508, - 0.0027101, - 0.057211, - -0.0039925, - -0.0079065, - 0.0075256, - 0.10679, - -0.0016701, - -0.12967, - 0.040356, - 0.012536, - -0.0234, - -0.084456, - -0.0078438, - -0.085846, - -0.10103, - 0.00023969, - -0.0037872, - -0.01034, - -0.015804, - -0.0094239, - -0.14147, - -0.032599, - -0.080629, - -0.050476, - -0.11495, - -0.1035, - 0.0023015, - -0.014521, - 0.19698, - -0.022087, - 0.12594, - -0.02238, - 0.007451, - -0.01726, - -0.020373, - -0.034866, - 0.073798, - 0.039827, - -0.017101, - -0.010109, - 0.023498, - 0.019321, - 0.033445, - 0.017612, - -0.067707, - 0.033174, - 0.023725, - -0.036006, - 0.0084095, - 0.10413, - -0.040191, - 0.010722, - 0.0096412, - -0.031404, - -0.033135, - 0.0056353, - 0.059059, - 0.13722, - -0.13826, - 0.073076, - -0.083113, - 0.062341, - 0.055141, - 0.053838, - 0.10787, - 0.008823, - -0.020483, - 0.016429, - 0.11054, - 0.0075364, - 0.0018866, - -0.12944, - -0.018471, - 0.021151, - 0.074894, - -0.00058699, - -0.045732, - 0.015904, - 0.048638, - 0.041042, - -0.042932, - 0.05851, - -0.0076229, - -0.045553, - -0.063701, - -0.027262, - -0.037054, - -0.071691, - -0.033654, - 0.037717, - 0.025679, - 0.045422, - 0.037261, - -0.22089, - 0.039557, - 0.17509, - 0.032374, - -0.0018184, - 0.017763, - -0.033597, - -0.061756, - -0.043406, - 0.076433, - 0.057093, - 0.050291, - -0.01993, - 0.017685, - -0.034484, - -0.0029951, - 0.132, - -0.020687, - 0.05069, - 0.028523, - 0.019658, - -0.016514, - -0.046177, - 0.12758, - 0.08625, - -0.0059289, - -0.095567, - -0.039255, - -0.02305, - -0.036371, - 0.063159, - 0.078111, - -0.11854, - 0.085892, - 0.080986, - -0.05361, - 0.026121, - -0.001823, - -0.05458, - -0.02735, - -0.0072094, - 0.02652, - 0.033449, - 0.028344, - 0.025164, - 0.015723, - 0.0041586, - 0.032223, - 0.063962, - 0.07288, - 0.044235, - -0.0039776, - -0.088127, - -0.049767, - 0.037805, - 0.0080499, - -0.07105, - -0.037365, - -0.13543, - 0.03884, - 0.15309, - 0.019456, - -0.034412, - 0.015967, - 0.082094, - -0.065816, - 0.021296, - -0.011999, - -0.038576, - -0.053947, - 0.015832, - -0.00044921, - 0.042331, - -0.19297, - 0.17108, - 0.019137, - -0.14239, - -0.031238, - 0.054654, - 0.019923, - -0.0038551, - 0.046119, - 0.015244, - 0.11367, - -0.038784, - -0.01137, - 0.044747, - 0.084848, - -0.043428, - 0.028804, - -0.0031323, - 0.00081875, - -0.04223, - -0.028273, - -0.0056288, - -0.0065824, - 0.15281, - -0.017296, - 0.0025409, - 0.043871, - 0.15256, - -0.054496, - -0.077231, - 0.0054315, - -0.0802, - -0.11988, - 0.047378, - 0.032228, - 0.022394, - -0.012106, - -0.028687, - 0.037302, - -0.045759, - 0.041888, - 0.037101, - 0.032764, - 0.036806, - -0.034322, - -0.0080373, - -0.029798, - -0.13921, - 0.016724, - -0.0070593, - 0.074165, - 0.0067127, - 0.021384, - -0.029956, - 0.061797, - -0.00063327, - 0.060613, - 0.081527, - 0.081396, - 0.0026183, - -0.03537, - 0.044609, - -0.015251, - -0.040873, - 0.075687, - 0.010644, - 0.0093235, - 0.048039, - 0.16337, - -0.018466, - -0.024115, - 0.098278, - -0.15803, - -0.069445, - 0.054912, - -0.097534, - 0.024224, - 0.0089254, - 0.058098, - 0.036256, - 0.12089, - -0.009971, - 0.033752, - -0.074412, - 0.040121, - 0.022174, - -0.039795, - -0.014028, - -0.027663, - 0.07698, - 0.076643, - 0.063107, - -0.12419, - -0.07382, - -0.038322, - 0.048829, - 0.024403, - 0.038478, - -0.027846, - 0.02644 - ], - "families": [ - 0.0031294, - -0.015787, - 0.049958, - 0.03964, - -0.056119, - 0.029696, - -0.029333, - -0.068591, - 0.022704, - 0.019723, - 0.023008, - -0.065282, - -0.040692, - -0.033925, - -0.0099868, - -0.035722, - 0.054049, - 0.01496, - 0.047126, - 0.040171, - -0.016861, - 0.0090546, - -0.045232, - 0.075944, - 0.030663, - -0.030586, - -0.027982, - 0.042673, - 0.066486, - 0.028608, - 0.0092426, - -0.021856, - -0.0077905, - 0.035766, - -0.0016438, - 0.045346, - -0.013232, - -0.014644, - 0.043214, - -0.035674, - -0.02756, - -0.06466, - 0.028076, - -0.018338, - 0.017074, - -0.031575, - -0.028893, - 0.035405, - -0.034438, - -0.0093972, - -0.00028233, - 0.020541, - -0.02815, - -0.0044358, - -0.045352, - -0.014535, - -0.029135, - -0.037675, - -0.03562, - -0.034912, - -0.035337, - -0.025156, - 0.092709, - 0.030594, - 0.085643, - -0.018646, - -0.034122, - -0.069521, - -0.019214, - -0.02326, - -0.0078586, - -0.041906, - 0.10595, - -0.0023934, - 0.048827, - 0.0069105, - 0.03772, - -0.029533, - 0.026136, - 0.026957, - 0.025621, - 0.028276, - 0.054296, - 0.068295, - -0.066284, - -0.034793, - 0.041423, - 0.0056561, - -0.028427, - -0.0023763, - -0.0081815, - 0.025856, - -0.094626, - 0.037097, - -0.0458, - 0.067739, - -0.04925, - 0.064801, - 0.081859, - -0.041482, - 0.042379, - -0.047192, - -0.011745, - -0.048679, - 0.068941, - -0.063968, - -0.037158, - -0.019197, - 0.012353, - -0.027602, - -0.0016253, - 0.094599, - 0.052737, - 0.050098, - -0.020534, - -0.02465, - 0.014948, - -0.0055671, - -0.042421, - -0.034259, - -0.048944, - -0.037217, - 0.081002, - -0.079189, - 0.085001, - 0.019799, - 0.02598, - -0.10487, - 0.030878, - 0.054538, - 0.022739, - 0.13984, - 0.076627, - 0.0056387, - 0.018199, - 0.075835, - -0.028968, - 0.054851, - -0.033984, - 0.020017, - 0.031714, - -0.040437, - -0.038739, - 0.052329, - 0.031692, - 0.016577, - 0.010976, - 0.042315, - -0.045855, - -0.0029643, - 0.060538, - 0.083685, - 0.0010317, - -0.001512, - 0.095329, - -0.017642, - 0.032656, - 0.031622, - 0.058784, - -0.051961, - 0.03671, - -0.004885, - 0.061344, - -0.0056425, - -0.03463, - 0.084435, - 0.028871, - 0.060601, - 0.01594, - -0.060008, - -0.012056, - -0.021264, - 0.018295, - 0.028647, - -0.045608, - 0.024669, - 0.0019865, - 0.02862, - -0.026137, - -0.033282, - 0.01758, - -0.033706, - -0.0096347, - 0.014607, - -0.008863, - -0.061212, - 0.00086031, - 0.08011, - 0.057313, - -0.03256, - -0.040271, - 0.077697, - -0.099828, - 0.0041666, - -0.030904, - -0.013895, - -0.027393, - 0.033468, - -0.0098593, - -0.030815, - -0.11855, - 0.082814, - -0.0070117, - -0.0072489, - -0.013696, - -0.0097005, - -0.0050338, - -0.058128, - -0.0029566, - -0.055239, - 0.048829, - -0.029806, - 0.067939, - 0.012456, - -0.07111, - 0.034327, - -0.014153, - 0.056844, - 0.0012749, - -0.0045766, - 0.038784, - -0.097476, - 0.0027733, - 0.087972, - 0.010077, - -0.051187, - -0.023826, - 0.0426, - -0.010473, - -0.042153, - 0.02273, - 0.021655, - -0.088649, - 0.012784, - 0.046709, - 0.050371, - -0.016905, - 0.024382, - -0.022889, - -0.016377, - -0.016228, - -0.030107, - 0.012971, - -0.015697, - 0.031555, - 0.018819, - 0.0051581, - -0.064758, - -0.019862, - -0.054814, - 0.035749, - 0.021642, - 0.038443, - -0.014717, - 0.00089843, - 0.01389, - -0.035594, - 0.056642, - -0.022971, - -0.027026, - -0.027776, - -0.0023462, - 0.0041405, - -0.034795, - 0.028977, - 0.0048163, - -0.014057, - 0.020327, - -0.0029291, - 0.011774, - -0.0057512, - 0.057501, - -0.1129, - -0.048121, - 0.048276, - -0.026894, - 0.010655, - 0.017656, - 0.002269, - 0.04719, - -0.0039956, - 0.0014643, - 0.01236, - 0.019728, - 0.0077246, - 0.077493, - -0.014139, - -0.088996, - -0.01687, - -0.028947, - 0.013202, - 0.069346, - -0.076703, - -0.051543, - 0.020429, - 0.038387, - 0.06434, - 0.006458, - -0.010299, - 0.0074189 - ], - "drugs": [ - -0.042803, - 0.006761, - 0.045246, - 0.05516, - 0.041846, - -0.044758, - 0.022559, - -0.11809, - 0.075949, - 0.041625, - -0.0041891, - -0.018882, - 0.089433, - -0.07365, - 0.017459, - -0.048814, - 0.15209, - -0.010471, - 0.098595, - 0.024128, - 0.059381, - -0.0036388, - 0.11223, - 0.014788, - -0.0027602, - -0.072479, - 0.014597, - -0.024909, - 0.16783, - 0.088221, - 0.022289, - 0.022548, - 0.016682, - -0.013153, - 0.061188, - 0.011979, - -0.0025193, - -0.048971, - 0.042723, - 0.076894, - -0.055658, - -0.14573, - 0.0019347, - 0.018495, - 0.071635, - -0.073225, - 0.058732, - 0.080012, - 0.029063, - 0.021807, - -0.13759, - -0.014423, - 0.021696, - -0.055523, - -0.15333, - 0.052024, - -0.04163, - 0.040942, - -0.044827, - 0.024244, - -0.011715, - -0.033144, - 0.20581, - 0.031944, - -0.11031, - -0.042871, - 0.12939, - -0.12556, - 0.025156, - 0.037681, - -0.004778, - 0.11996, - 0.031552, - -0.10368, - -0.029665, - 0.0076008, - 0.047501, - -0.061724, - -0.06296, - -0.052564, - 0.0059594, - -0.041851, - -0.10586, - 0.081373, - -0.028901, - -0.0046132, - 0.084608, - -0.027668, - 0.028215, - -0.027144, - 0.037981, - -0.042639, - -0.12364, - 0.060614, - -0.031759, - 0.031045, - 0.057892, - -0.028247, - 0.018346, - 0.035452, - 0.042288, - -0.038448, - 0.0054763, - -0.058273, - 0.040927, - -0.056456, - -0.00077221, - 0.0061177, - 0.0988, - 0.093375, - 0.012109, - 0.072747, - 0.087908, - -0.02259, - -0.013438, - 0.024888, - 0.0056485, - -0.089596, - -0.055571, - 0.056102, - 0.01528, - 0.029016, - -0.060872, - -0.16188, - 0.12366, - 0.0075218, - -0.042542, - -0.072643, - 0.032011, - 0.10378, - 0.0067165, - 0.041395, - 0.028964, - -0.0095074, - 0.085776, - -0.083807, - -0.062118, - 0.0084025, - -0.0013333, - 0.043434, - 0.11398, - 0.076056, - -0.048091, - 0.0043869, - 0.055311, - -0.063399, - 0.041272, - 0.052846, - 0.12923, - -0.012647, - 0.038295, - 0.085444, - 0.064361, - -0.079294, - 0.025172, - 0.018385, - -0.053361, - 0.048166, - 0.1462, - 0.0088132, - 0.072186, - 0.10125, - -0.076496, - 0.034875, - -0.025875, - -0.029373, - 0.035059, - -0.04441, - -0.0081472, - -0.10446, - -0.003995, - -0.072782, - 0.10828, - -0.04252, - -0.031621, - 0.058672, - -0.077434, - 0.027943, - -0.0090122, - -0.093137, - 0.088903, - -0.051607, - -0.060205, - -0.066894, - 0.040216, - -0.093803, - 0.012459, - 0.14695, - 0.0012948, - -0.054581, - 0.040113, - 0.076175, - -0.10793, - 0.020271, - 0.067841, - -0.016102, - -0.040295, - 0.072903, - 0.020965, - 0.045548, - -0.17291, - 0.10468, - -0.0035498, - -0.010131, - 0.031485, - 0.04662, - 0.056423, - -0.052442, - 0.018847, - -0.05395, - 0.13376, - 0.057449, - 0.11448, - 0.074837, - 0.11012, - -0.080112, - -0.067944, - 0.063117, - -0.08148, - -0.11325, - -0.017307, - -0.072671, - -0.02058, - 0.12439, - 0.055806, - 0.014296, - 0.01415, - 0.059739, - -0.0059809, - -0.034811, - -0.097896, - 0.0032323, - -0.13034, - -0.13565, - 0.050538, - -0.032556, - -0.090552, - -0.063556, - 0.019631, - -0.087138, - -0.023857, - 0.0010995, - 0.018247, - -0.033917, - 0.014989, - 0.0093543, - -0.0465, - 0.02557, - 0.10056, - 0.12104, - -0.044819, - 0.028809, - 0.053135, - -0.089802, - -0.047427, - 0.0041112, - -0.022604, - 0.015462, - 0.084974, - -0.047329, - 0.030353, - 0.026293, - 0.021011, - -0.014829, - -0.00032094, - -0.050882, - -0.10909, - -0.025102, - 0.072032, - 0.12675, - -0.04738, - 0.12063, - -0.12004, - -0.088502, - -0.084971, - -0.017162, - 0.0062754, - 0.035124, - -0.071467, - 0.017275, - 0.082468, - 0.0070361, - -0.13809, - -0.022609, - -0.055924, - 0.050628, - 0.037171, - 0.083969, - 0.066841, - -0.088296, - 0.060294, - -0.014925, - -0.11994, - -0.032025, - -0.18484, - -0.020291, - 0.075039, - 0.0031784, - -0.0094872, - -0.11502 - ], - "route": [ - -0.023263, - 0.048185, - -0.011681, - -0.032685, - -0.017698, - 0.015744, - -0.070021, - -0.12152, - -0.029498, - -0.030208, - 0.011835, - -0.098702, - -0.11432, - 0.068007, - -0.0062179, - 0.016, - 0.13443, - -0.047376, - 0.12667, - 0.03951, - 0.04641, - 0.0088025, - 0.054552, - 0.075234, - -0.039459, - 0.045545, - -0.013301, - 0.055702, - -0.065972, - 0.11301, - -0.023833, - 0.1004, - -0.054198, - -0.095032, - -0.014031, - -0.0074844, - 0.02226, - 0.049767, - 0.040115, - -0.027689, - 0.01062, - -0.14862, - -0.022447, - -0.0079556, - -0.00091251, - -0.0058583, - 0.041329, - -0.010967, - -0.039374, - -0.03528, - 0.031228, - 0.03788, - -0.018074, - -0.048327, - -0.13324, - -0.040178, - -0.017172, - 0.014689, - -0.068996, - 0.020224, - -0.035736, - 0.03324, - 0.18401, - 0.035272, - 0.0093777, - 0.01373, - 0.020886, - -0.055734, - -0.014348, - -0.015612, - -0.010363, - 0.014281, - -0.02189, - -0.043146, - -0.020116, - 0.0088727, - -0.055219, - -0.09513, - -0.0061258, - -0.17019, - 0.0018567, - 0.016962, - -0.038235, - 0.059805, - -0.016328, - 0.016016, - -0.0051742, - -0.039962, - -0.033243, - -0.027574, - 0.056603, - 0.009265, - -0.10658, - -0.02036, - -0.005743, - 0.06329, - -0.039166, - 0.099031, - -0.052948, - -0.039436, - 0.093229, - -0.030742, - 0.022881, - 0.1126, - -0.049959, - -0.10349, - 0.061214, - -0.093158, - -0.0066576, - 0.036526, - 0.073328, - 0.079176, - 0.12849, - 0.019049, - -0.037252, - 0.0041509, - 0.047384, - 0.090513, - -0.046077, - -0.031988, - 0.15275, - -0.013374, - -0.016278, - 0.0099512, - 0.089812, - 0.033211, - -0.057844, - -0.12301, - 0.05907, - 0.0929, - -0.03946, - -0.04541, - -0.061522, - 0.033207, - -0.044654, - -0.0090489, - 0.012, - 0.041704, - -0.002969, - -0.078025, - -0.00018843, - -0.11329, - -0.095623, - 0.017541, - -0.07408, - -0.042365, - 0.010402, - 0.003521, - -0.018579, - -0.082726, - -0.031326, - 0.062144, - -0.026549, - -0.10224, - 0.05006, - 0.092191, - -0.060973, - 0.015971, - -0.10866, - 0.094975, - -0.024644, - -0.10558, - -0.044337, - 0.046378, - 0.0042593, - 0.045734, - 0.12494, - -0.045479, - 0.055959, - -0.0492, - 0.031981, - 0.05566, - 0.038381, - 0.0097813, - 0.068513, - 0.071635, - -0.036191, - 0.015017, - -0.073705, - 0.041894, - 0.051521, - -0.056239, - 0.012887, - -0.0895, - 0.019227, - -0.070303, - -0.083412, - 0.081864, - -0.037533, - -0.083388, - 0.026871, - 0.042215, - 0.01438, - 0.14265, - 0.0063036, - 0.051106, - -0.012181, - 0.012177, - 0.057524, - 0.11484, - -0.20827, - 0.12901, - 0.086243, - 0.032299, - -0.0093956, - 0.0053419, - 0.017211, - 0.013732, - 0.084619, - -0.024428, - 0.15173, - -0.076483, - 0.093618, - -0.049227, - 0.048897, - -0.022745, - 0.0017779, - -0.10212, - 0.012122, - -0.05736, - 0.034764, - 0.0022071, - -0.045319, - 0.15142, - -0.014669, - 0.027765, - -0.041083, - 0.051299, - 0.063118, - 0.038998, - -0.10848, - -0.12117, - -0.078476, - -0.01787, - 0.062165, - -0.097188, - 0.013704, - 0.078778, - 0.0066461, - 0.096419, - 0.0935, - 0.14048, - 0.066059, - -0.015852, - -0.049186, - 0.069044, - 0.072155, - 0.0090992, - -0.010047, - 0.089504, - 0.053154, - 0.026008, - 0.010766, - -0.018945, - -0.03199, - 0.051675, - -0.073494, - 0.057075, - 0.10098, - 0.065995, - 0.047726, - 0.089936, - -0.040707, - -0.096514, - 0.01012, - -0.072943, - -0.06006, - 0.0014147, - 0.019595, - 0.054628, - -0.04838, - 0.1412, - -0.14023, - -0.07026, - 0.022064, - -0.02126, - 0.0033882, - -0.039513, - 0.007623, - 0.0098105, - 0.083258, - -0.02534, - -0.060847, - -0.014695, - -0.012691, - -0.070867, - -0.11821, - 0.039758, - 0.068563, - -0.072575, - 0.090295, - 0.028726, - -0.021538, - -0.016064, - 0.038269, - 0.021166, - 0.025145, - -0.035158, - -0.0076607, - -0.021994 - ], - "legislations": [ - 0.0058272, - -0.053751, - 0.023146, - -0.015971, - -0.00019706, - -0.0026678, - 0.010459, - -0.083191, - 0.030541, - 0.025217, - 0.013571, - -0.075258, - -0.024534, - -0.020451, - 0.033998, - 0.080211, - 0.037723, - 0.027888, - 0.032024, - 0.042572, - 0.005145, - 0.0037669, - 0.026787, - 0.050582, - -0.013443, - 0.0055967, - 0.01232, - -0.034329, - 0.06593, - -0.035114, - 0.051082, - -0.083393, - -0.044248, - -0.072031, - 0.031191, - 0.049252, - -0.00359, - -0.041383, - -0.0045948, - -0.0032783, - 0.00048389, - -0.10518, - 0.0065377, - -0.024219, - -0.019579, - -0.015326, - -0.027771, - 0.012647, - -0.0042003, - 0.014209, - -0.00076673, - -0.038261, - 0.028139, - 0.00048948, - -0.062832, - 0.017445, - 0.026056, - -0.0051518, - -0.0085325, - 0.014422, - 0.044756, - -0.012622, - 0.10018, - -0.0038586, - -0.00052853, - -0.023363, - -0.014476, - 0.00095614, - 0.054585, - 0.015547, - -0.016369, - -0.021027, - -0.025294, - 0.016677, - -0.040883, - -0.037534, - 0.0017768, - -0.020149, - -0.0083516, - 0.025948, - 0.007023, - 0.03488, - -0.035574, - 0.068505, - 0.021112, - -0.001318, - 0.0074717, - 0.029902, - -0.0034255, - -0.0077558, - 0.0032462, - 0.012665, - -0.019837, - 0.027538, - -0.027273, - -0.0060826, - 0.058614, - 0.02519, - 0.011391, - -0.0089555, - -0.0064872, - -0.024028, - -0.023965, - -0.06612, - 0.018459, - 0.0094313, - 0.043146, - -0.0021596, - 0.019983, - 0.041206, - 0.033143, - 0.011107, - 0.066192, - 0.018698, - 0.01792, - 0.041343, - -0.0030313, - -0.019759, - -0.048168, - 0.065076, - -0.013211, - 0.036371, - 0.035142, - -0.01874, - 0.089444, - 0.066239, - -0.048334, - -0.016249, - 0.011236, - 0.13798, - 0.0035581, - 0.076795, - 0.015867, - 0.027723, - -0.00055548, - -0.0027274, - 0.013145, - 0.038964, - -0.017015, - 0.0202, - 0.01672, - -0.006552, - 0.0065123, - 0.061309, - 0.0023263, - 0.0099602, - -0.022698, - 0.024843, - 0.033988, - -0.016253, - -0.0029654, - 0.084776, - 0.047211, - -0.033609, - 0.058341, - 0.014677, - -0.0037411, - -0.04835, - -0.0060245, - 0.0081404, - 0.042136, - -0.0061597, - 0.023975, - 0.018478, - -0.01008, - -0.0076591, - 0.032961, - -0.0048732, - 0.0099167, - -0.007207, - -0.015242, - 0.00003414, - 0.0076113, - -0.0054476, - -0.082044, - 0.020027, - -0.070674, - 0.029788, - -0.020416, - -0.040009, - -0.011778, - -0.010832, - 0.026984, - 0.026002, - -0.026639, - 0.023356, - 0.034558, - 0.067571, - 0.039527, - 0.007854, - -0.038546, - 0.081244, - -0.062526, - -0.0045824, - 0.032501, - -0.0014359, - -0.004329, - -0.02457, - -0.021153, - -0.020228, - -0.12577, - -0.0043091, - 0.027635, - -0.027788, - 0.010128, - -0.03234, - 0.026883, - -0.00090672, - 0.018464, - -0.027627, - 0.075205, - 0.032653, - 0.031274, - -0.023967, - -0.0028454, - -0.0008079, - 0.04557, - 0.0022926, - -0.068178, - -0.084485, - -0.007249, - -0.012667, - 0.0083493, - 0.079106, - 0.039085, - 0.0010799, - 0.015826, - 0.046687, - -0.030055, - 0.01905, - -0.0048042, - -0.038932, - -0.034066, - -0.018838, - 0.014211, - -0.046668, - 0.04734, - 0.029494, - 0.0090119, - 0.032255, - -0.017238, - 0.017318, - 0.017507, - 0.0096049, - 0.0021305, - 0.05139, - 0.012107, - -0.047631, - -0.0022205, - 0.0052798, - 0.050856, - -0.053919, - -0.0077749, - 0.0059511, - -0.0040254, - 0.033976, - 0.016583, - 0.026554, - -0.0025715, - -0.012661, - -0.0058134, - -0.0082139, - -0.027416, - -0.029956, - 0.024691, - 0.012789, - 0.02119, - 0.031604, - 0.014277, - -0.069259, - -0.010795, - 0.053995, - -0.046242, - -0.0069539, - -0.01332, - 0.0098579, - -0.0086898, - 0.092511, - -0.048861, - -0.0079942, - 0.036926, - 0.04284, - -0.008126, - -0.041241, - 0.016923, - 0.075764, - -0.018812, - 0.01597, - 0.05681, - 0.018348, - 0.025129, - -0.040798, - 0.022748, - -0.01014, - -0.013742, - 0.0043744, - -0.029043, - -0.0087024, - -0.014903, - -0.040439 - ], - "climate": [ - 0.0041786, - -0.025702, - -0.018879, - 0.027837, - 0.0041428, - -0.07214, - -0.013622, - -0.080648, - 0.050951, - 0.089076, - -0.078714, - -0.063655, - 0.0043842, - 0.0088704, - 0.037842, - -0.006469, - 0.1605, - 0.021169, - 0.065759, - 0.06441, - -0.078642, - 0.013872, - 0.0064804, - 0.090578, - -0.0050077, - -0.0092607, - -0.0034689, - 0.045276, - 0.040774, - 0.027622, - -0.0085246, - 0.0039083, - -0.025514, - -0.075039, - 0.042024, - 0.085773, - 0.088906, - -0.063789, - 0.010986, - 0.023879, - -0.019467, - -0.097547, - 0.019542, - -0.01144, - -0.0012556, - -0.032197, - -0.041125, - -0.0050428, - -0.036973, - 0.017001, - -0.047423, - -0.0019232, - 0.016526, - 0.075985, - -0.027295, - 0.033525, - 0.064284, - 0.0025248, - -0.021627, - -0.015858, - 0.011446, - 0.034081, - 0.048647, - -0.093314, - 0.095365, - -0.074149, - 0.039294, - -0.00013933, - 0.1007, - 0.0093783, - 0.040477, - 0.039189, - -0.043564, - -0.010624, - -0.0031743, - -0.017921, - -0.0073134, - -0.047797, - -0.11414, - 0.010631, - 0.0098686, - 0.067886, - 0.025884, - 0.064106, - 0.0051255, - -0.020283, - -0.03503, - -0.060067, - 0.0067166, - -0.064351, - 0.047465, - 0.035349, - -0.096075, - 0.019119, - -0.048006, - 0.065431, - 0.030569, - 0.11733, - 0.043146, - -0.03498, - -0.0040949, - -0.06615, - 0.050909, - -0.019643, - 0.0083916, - -0.10529, - -0.024315, - -0.019876, - 0.039546, - -0.022522, - -0.006271, - 0.066165, - 0.0479, - 0.062352, - -0.035398, - -0.11644, - 0.029246, - 0.022228, - -0.069653, - 0.028118, - 0.063407, - -0.062043, - 0.033122, - -0.022457, - 0.090583, - 0.032388, - -0.045349, - -0.070331, - -0.030508, - 0.11287, - 0.027223, - -0.055248, - -0.011838, - 0.040003, - 0.017973, - 0.03906, - 0.063291, - 0.012401, - -0.018517, - 0.032161, - 0.054608, - -0.065917, - 0.036649, - -0.058889, - -0.066864, - 0.058276, - -0.004125, - -0.034148, - -0.015688, - -0.0020008, - 0.056537, - 0.090793, - 0.031212, - -0.032025, - 0.037447, - 0.054118, - 0.037926, - 0.072939, - -0.049289, - 0.0048979, - 0.046334, - -0.040075, - -0.14604, - 0.028197, - -0.019478, - -0.020676, - 0.0085143, - -0.016366, - 0.038569, - 0.067843, - -0.10579, - -0.040945, - -0.0030059, - -0.056702, - -0.0042669, - 0.075205, - -0.055883, - 0.077456, - -0.020765, - -0.024474, - -0.033675, - 0.11278, - 0.02517, - -0.038384, - 0.018008, - -0.046338, - -0.036119, - 0.084679, - -0.07188, - 0.049437, - 0.030769, - 0.038003, - 0.021927, - 0.0050916, - 0.00080303, - -0.019209, - -0.026147, - -0.021498, - -0.00093872, - 0.010353, - -0.15766, - -0.047843, - -0.011433, - -0.082601, - 0.017445, - 0.091335, - -0.011719, - 0.020586, - -0.045292, - 0.039593, - 0.064676, - -0.010321, - 0.021264, - 0.01987, - 0.085451, - 0.0086187, - 0.018847, - -0.048087, - -0.033997, - -0.13649, - -0.081558, - 0.046765, - 0.01289, - 0.084396, - -0.042821, - 0.0099773, - 0.020722, - 0.085476, - -0.00030958, - -0.024345, - 0.028454, - -0.060578, - -0.0639, - 0.018102, - 0.020204, - 0.0091622, - 0.032549, - 0.02277, - 0.039143, - -0.046998, - 0.02219, - 0.018978, - 0.044843, - 0.092025, - -0.052476, - 0.080943, - 0.055099, - -0.044491, - -0.0033215, - -0.026948, - 0.11397, - -0.042568, - -0.042902, - -0.13859, - -0.029527, - 0.026656, - 0.047436, - 0.040192, - 0.032322, - 0.027565, - 0.051155, - -0.056574, - -0.017597, - -0.013254, - -0.050085, - -0.025908, - -0.018983, - 0.02823, - 0.0074566, - -0.036702, - -0.067134, - 0.070964, - -0.13668, - -0.035941, - 0.040392, - -0.053243, - -0.018796, - 0.029262, - -0.054297, - -0.037838, - 0.11927, - -0.016918, - -0.021197, - -0.017716, - -0.02241, - 0.028507, - 0.0018939, - 0.0082743, - -0.035829, - 0.085302, - -0.091901, - 0.094526, - -0.0074759, - 0.067561, - -0.045519, - -0.016822, - -0.016132, - 0.086953, - -0.0027662, - -0.057472 - ], - "enterprises": [ - -0.00023406, - -0.06358, - -0.0071055, - -0.064352, - -0.066313, - -0.019293, - 0.03549, - -0.066832, - 0.014811, - 0.019363, - 0.013402, - -0.048881, - -0.037919, - -0.061014, - 0.041569, - -0.014856, - 0.037646, - -0.032376, - 0.061751, - 0.015426, - -0.041713, - -0.015215, - -0.0050653, - 0.06313, - -0.018739, - 0.021572, - -0.008762, - 0.0022288, - 0.037354, - 0.010775, - 0.01243, - -0.032439, - -0.030628, - -0.001103, - 0.047634, - 0.043334, - 0.0098105, - -0.0020172, - 0.034569, - 0.022213, - -0.0055152, - -0.046541, - -0.0095683, - 0.038758, - -0.037644, - -0.03521, - 0.017666, - 0.00018974, - 0.0078865, - -0.03164, - -0.0070901, - -0.012429, - -0.0018873, - 0.022158, - -0.044992, - 0.00089493, - -0.033299, - 0.013114, - -0.013231, - -0.030707, - 0.028919, - 0.032424, - 0.083711, - -0.013403, - 0.089056, - -0.010843, - 0.021057, - -0.044586, - 0.032403, - -0.0082078, - -0.0062735, - -0.020505, - 0.050506, - 0.056341, - 0.016098, - -0.023069, - -0.010937, - -0.035598, - 0.03662, - -0.0024683, - -0.028505, - 0.012402, - -0.047941, - 0.045132, - 0.011043, - -0.033107, - -0.035202, - 0.023132, - -0.012949, - -0.007414, - -0.028857, - 0.019706, - -0.054661, - 0.022596, - -0.027887, - 0.069681, - -0.051727, - -0.065185, - 0.0026281, - 0.040465, - 0.0033047, - -0.023363, - -0.036824, - -0.0045826, - 0.067772, - -0.053647, - 0.029031, - 0.0032528, - -0.012582, - -0.016129, - 0.0027296, - 0.059356, - 0.041683, - 0.036839, - 0.032945, - -0.0073261, - -0.035798, - 0.024166, - -0.04529, - -0.017933, - -0.07312, - -0.011454, - 0.014142, - -0.030736, - 0.091303, - 0.046931, - -0.025063, - -0.031246, - 0.025149, - 0.054872, - 0.017719, - 0.08359, - -0.0041804, - -0.048729, - 0.0071933, - 0.031897, - 0.015739, - 0.031503, - -0.010204, - 0.055687, - 0.0072747, - -0.02071, - -0.026904, - 0.014288, - 0.0083442, - 0.01268, - 0.011404, - 0.012687, - -0.020147, - -0.024548, - 0.048002, - 0.084695, - 0.03102, - -0.025413, - 0.057562, - -0.012141, - -0.031714, - 0.020563, - -0.057526, - -0.026087, - 0.044262, - -0.0090064, - 0.034946, - 0.062083, - 0.030083, - 0.0069884, - 0.021095, - 0.004543, - -0.00566, - 0.031691, - 0.040839, - 0.030306, - -0.02664, - 0.075987, - -0.048314, - 0.039511, - -0.035845, - 0.026933, - -0.057284, - 0.0097267, - 0.014383, - -0.036465, - -0.0014305, - 0.012578, - -0.028804, - -0.0085771, - -0.0006587, - 0.064112, - -0.00073932, - 0.023171, - -0.027477, - 0.029559, - -0.043954, - -0.0155, - 0.019488, - 0.01893, - -0.010435, - -0.053538, - 0.0141, - -0.016388, - -0.095356, - 0.068271, - -0.0024788, - 0.0021663, - 0.0020425, - -0.021249, - -0.0052669, - 0.019294, - -0.001645, - -0.010255, - 0.041436, - -0.0075644, - 0.049423, - -0.027065, - -0.038767, - 0.018089, - -0.025158, - -0.016542, - -0.011572, - 0.0084419, - 0.022032, - -0.042219, - -0.0021635, - 0.048911, - -0.035628, - -0.032531, - 0.031159, - 0.04521, - -0.021353, - 0.018478, - -0.04867, - -0.014078, - -0.049661, - -0.006728, - 0.036971, - 0.011465, - -0.0084736, - -0.043934, - 0.022624, - -0.022145, - -0.010601, - 0.019468, - 0.031306, - 0.013617, - 0.027012, - -0.0024555, - -0.037765, - -0.0066505, - 0.037024, - -0.021328, - -0.011284, - -0.041137, - 0.0010779, - -0.03336, - -0.043116, - 0.048381, - -0.046754, - 0.019575, - -0.014681, - -0.013464, - -0.011384, - 0.019503, - 0.0044349, - -0.014439, - -0.0097808, - 0.028329, - -0.00075353, - 0.0069789, - 0.0092775, - 0.036348, - -0.028094, - 0.054235, - -0.07183, - -0.015379, - -0.0051894, - -0.033769, - 0.038265, - -0.011539, - -0.047007, - 0.0090374, - -0.013137, - 0.014343, - 0.005613, - -0.021464, - 0.0017317, - -0.0018953, - 0.00061786, - -0.062562, - -0.016867, - -0.0020211, - -0.010639, - 0.038099, - -0.020098, - 0.0018942, - -0.019574, - 0.0040971, - -0.016744, - -0.023082, - -0.0326, - -0.010666 - ], - "laptops": [ - -0.1257, - -0.024627, - -0.048914, - 0.01747, - -0.022011, - -0.033229, - 0.039861, - -0.079667, - 0.039297, - -0.014534, - -0.089769, - -0.067561, - -0.040932, - 0.0012208, - 0.028765, - -0.0069397, - 0.051456, - 0.062405, - 0.042586, - -0.12245, - -0.0058894, - -0.0041131, - -0.047593, - 0.036566, - 0.056107, - -0.072451, - 0.028888, - -0.02894, - 0.13148, - -0.020498, - 0.095645, - -0.014808, - -0.007574, - 0.023176, - 0.054415, - 0.036122, - 0.058684, - 0.04616, - 0.044216, - -0.057963, - -0.0804, - -0.064532, - 0.0030388, - 0.10993, - 0.043089, - -0.050106, - 0.075099, - -0.062991, - 0.035405, - -0.012461, - 0.019264, - 0.024167, - -0.071159, - 0.024017, - -0.12954, - 0.077103, - 0.0095485, - -0.0060829, - -0.02827, - -0.0018124, - -0.00090525, - -0.064539, - 0.15458, - 0.1193, - 0.05308, - -0.053977, - 0.055833, - -0.047793, - -0.091395, - 0.081531, - -0.039066, - 0.0097616, - 0.041344, - 0.013546, - -0.047895, - -0.021324, - 0.10624, - -0.052243, - 0.073887, - 0.0094296, - -0.020673, - -0.078863, - 0.028389, - 0.0098705, - 0.0071675, - -0.027747, - -0.067485, - -0.028114, - -0.033535, - 0.0023416, - -0.024103, - -0.063167, - -0.079257, - 0.065186, - 0.042266, - 0.089256, - 0.013907, - -0.088384, - 0.0076187, - -0.025559, - 0.057882, - 0.064455, - 0.10713, - -0.07565, - 0.053831, - -0.048667, - -0.020853, - 0.0078774, - -0.033875, - 0.01124, - 0.14615, - 0.043565, - 0.054979, - 0.069392, - -0.052605, - -0.0032216, - -0.026327, - -0.0071661, - -0.04438, - 0.011378, - 0.041698, - -0.052066, - 0.064057, - -0.10271, - 0.081712, - 0.041896, - -0.017005, - -0.02128, - -0.042918, - 0.044024, - -0.0061138, - 0.038782, - 0.05736, - -0.0095938, - 0.081219, - -0.064879, - 0.031218, - 0.01413, - -0.067152, - 0.015826, - 0.11351, - 0.04542, - 0.043289, - -0.077415, - 0.043805, - 0.014711, - 0.05857, - -0.022781, - -0.043912, - -0.053503, - 0.0069415, - 0.069099, - 0.064334, - 0.0060054, - -0.013355, - 0.010283, - -0.039684, - 0.023978, - -0.063523, - -0.042404, - 0.055503, - 0.038674, - 0.04904, - 0.010504, - 0.047218, - 0.011921, - 0.043889, - -0.02228, - 0.062028, - 0.061664, - -0.013643, - 0.049197, - 0.058442, - 0.010724, - -0.040719, - 0.053311, - -0.014607, - 0.036112, - -0.0237, - 0.015767, - 0.11222, - -0.032466, - -0.095067, - -0.04675, - -0.026888, - -0.041638, - 0.010458, - 0.14504, - -0.026495, - -0.0090507, - -0.012747, - 0.054104, - -0.099294, - 0.013348, - 0.018384, - 0.029884, - -0.007345, - 0.034455, - 0.021641, - -0.0034817, - -0.091222, - 0.11563, - -0.026454, - 0.025854, - -0.010711, - 0.024505, - -0.022632, - 0.0066769, - -0.041149, - -0.070071, - 0.096856, - -0.013169, - 0.12007, - 0.090747, - -0.01898, - 0.036853, - -0.049689, - -0.01674, - -0.046369, - 0.016852, - 0.1044, - 0.024346, - -0.005102, - 0.075487, - 0.025277, - -0.11575, - 0.029896, - 0.046227, - 0.024717, - -0.0063005, - -0.061104, - -0.027787, - -0.10316, - -0.062863, - 0.025004, - 0.05016, - 0.048623, - 0.023029, - -0.056568, - -0.041573, - -0.017975, - -0.093174, - 0.12433, - -0.077739, - 0.048949, - 0.038393, - 0.015777, - -0.031252, - -0.029518, - -0.0014284, - -0.0087563, - 0.037289, - -0.1249, - -0.040433, - -0.00028292, - -0.050301, - 0.022528, - -0.019431, - -0.018339, - -0.017538, - -0.035242, - 0.010584, - -0.07247, - -0.030962, - 0.043914, - 0.026295, - -0.026095, - -0.016093, - -0.034767, - 0.049915, - -0.027417, - 0.070719, - -0.095019, - -0.0027698, - -0.054761, - 0.0027511, - -0.059767, - 0.10173, - 0.041502, - 0.0091986, - 0.019751, - 0.0050039, - -0.0057594, - 0.042472, - -0.047063, - -0.081007, - -0.088349, - 0.0081618, - 0.026594, - 0.028347, - -0.017552, - 0.0093973, - -0.090547, - 0.0053756, - 0.032647, - 0.054979, - -0.070706, - -0.00078061, - 0.065238, - 0.003947 - ], - "fund": [ - 0.084663, - -0.038251, - -0.063394, - 0.019067, - -0.066227, - 0.022042, - 0.027208, - -0.12988, - 0.02193, - 0.019366, - -0.012407, - -0.00048368, - 0.032661, - 0.0086081, - 0.019611, - 0.014278, - 0.19808, - 0.0061796, - 0.096401, - 0.0098573, - 0.01619, - 0.10607, - -0.089046, - 0.080885, - 0.096497, - 0.0053657, - -0.025876, - 0.031527, - -0.0086123, - -0.041368, - -0.0068496, - 0.011558, - -0.11913, - -0.0069416, - 0.025703, - 0.034277, - 0.037572, - -0.096082, - -0.028885, - 0.026202, - 0.010207, - -0.20309, - -0.010704, - 0.12804, - 0.012874, - 0.028316, - -0.040968, - -0.026772, - 0.036988, - 0.04347, - -0.046225, - 0.078154, - -0.018701, - 0.048401, - -0.21873, - 0.03138, - -0.049934, - -0.031667, - -0.046649, - 0.022721, - -0.017552, - -0.018553, - 0.21545, - 0.080439, - 0.081727, - -0.14398, - 0.05465, - -0.14043, - 0.021364, - 0.0091846, - 0.0551, - -0.0083467, - 0.0081685, - 0.079372, - 0.010494, - 0.088153, - 0.041483, - -0.0012017, - 0.089759, - -0.029367, - -0.023208, - -0.0080245, - -0.024312, - 0.10798, - -0.068408, - 0.041352, - -0.0050711, - -0.069933, - -0.034665, - -0.090384, - -0.06794, - 0.01492, - -0.13994, - 0.02489, - -0.064202, - -0.024353, - -0.024103, - 0.052202, - 0.014263, - 0.039555, - -0.033085, - -0.11964, - 0.029118, - -0.060489, - -0.015494, - -0.10735, - -0.044616, - -0.084088, - -0.097522, - 0.095262, - -0.0040771, - 0.12658, - 0.098343, - 0.0041902, - 0.015598, - -0.019947, - -0.053998, - -0.12386, - -0.05605, - 0.088226, - -0.015446, - -0.049484, - -0.066776, - -0.012114, - 0.11226, - -0.0097824, - -0.058405, - -0.10477, - 0.033496, - 0.14143, - -0.055311, - -0.039022, - -0.082243, - 0.065232, - 0.019256, - 0.030583, - -0.04935, - -0.012832, - -0.01149, - 0.0068358, - -0.047995, - -0.017191, - 0.036295, - 0.051786, - -0.12877, - -0.17508, - -0.0092668, - 0.0069058, - 0.10087, - -0.025178, - 0.00090116, - 0.16195, - 0.010425, - -0.17757, - -0.0054547, - -0.047777, - 0.09222, - 0.0023681, - -0.075196, - -0.0641, - 0.12002, - -0.033638, - -0.063339, - 0.046029, - 0.011514, - 0.062783, - -0.065471, - -0.038733, - -0.12519, - -0.016292, - 0.0030045, - -0.080417, - -0.0076153, - -0.014052, - -0.059814, - 0.080977, - -0.099256, - 0.025422, - -0.061757, - -0.081328, - -0.0039374, - 0.093993, - 0.017588, - 0.057155, - -0.091524, - -0.095293, - -0.011234, - 0.13304, - 0.055622, - -0.068246, - 0.02197, - 0.047225, - -0.0063802, - 0.012679, - 0.011185, - -0.061806, - 0.033102, - -0.0026162, - 0.016834, - -0.039138, - -0.2136, - 0.09296, - 0.039509, - 0.050635, - 0.084573, - -0.021761, - -0.065646, - -0.069558, - -0.047574, - -0.055442, - 0.12229, - 0.033113, - -0.043351, - 0.069468, - -0.0059378, - -0.023906, - -0.067278, - 0.033502, - 0.033154, - 0.074338, - 0.03145, - -0.021352, - 0.021678, - 0.10977, - 0.077487, - 0.011668, - -0.018936, - 0.028103, - 0.06037, - -0.016445, - -0.023872, - -0.1237, - -0.099996, - -0.037991, - 0.104, - -0.045971, - -0.05238, - 0.033496, - -0.15277, - -0.027801, - 0.18152, - -0.059875, - 0.091969, - -0.0058193, - -0.057996, - -0.029565, - -0.010274, - -0.036932, - 0.012855, - 0.083835, - 0.02812, - 0.011766, - 0.029506, - 0.02097, - -0.029781, - 0.037993, - 0.0024094, - 0.091786, - 0.015046, - 0.084469, - 0.061948, - -0.07132, - -0.087341, - -0.039062, - -0.0083347, - 0.0036093, - -0.079134, - -0.042646, - 0.067017, - 0.12193, - 0.059109, - 0.10308, - -0.18564, - -0.081124, - -0.15325, - 0.048481, - 0.045546, - 0.04018, - 0.044019, - -0.11713, - 0.093315, - -0.066281, - -0.036189, - -0.047958, - -0.054931, - 0.040136, - -0.033144, - 0.01301, - -0.03793, - -0.013014, - 0.075959, - 0.039512, - -0.0083661, - 0.043442, - 0.00032402, - -0.14253, - -0.026545, - -0.072406, - -0.095279, - 0.009502 - ], - "polytheism": [ - -0.012763, - -0.012106, - 0.046925, - -0.065302, - -0.01775, - -0.0047623, - 0.031844, - -0.071422, - 0.019131, - 0.0067433, - 0.049856, - -0.050087, - -0.037238, - 0.022987, - 0.033826, - -0.029955, - 0.099623, - -0.042946, - 0.0092398, - -0.036739, - 0.014854, - 0.0072973, - -0.027234, - 0.045414, - -0.0051038, - -0.042575, - -0.00011432, - 0.028361, - 0.067763, - 0.039135, - 0.03385, - 0.0037243, - -0.01448, - -0.0104, - 0.041668, - 0.017719, - -0.0131, - -0.027604, - 0.030339, - 0.017468, - -0.060257, - -0.044401, - -0.037843, - 0.060916, - -0.048065, - 0.0019757, - -0.073494, - -0.054253, - 0.028707, - -0.088733, - -0.014952, - -0.032545, - 0.010462, - -0.02028, - -0.066983, - 0.052991, - 0.012996, - -0.02659, - -0.0084993, - 0.003329, - 0.061604, - 0.0094682, - 0.011524, - -0.065907, - -0.028643, - -0.011434, - -0.0039967, - -0.0013728, - 0.040734, - -0.069553, - 0.021515, - 0.052708, - 0.013921, - -0.020993, - -0.047157, - -0.035209, - -0.0021125, - -0.033777, - 0.037625, - 0.062576, - -0.031273, - 0.03143, - -0.024316, - 0.0026505, - 0.020434, - -0.0043792, - -0.0012113, - 0.026315, - -0.0472, - 0.067889, - -0.025066, - 0.025429, - -0.048573, - 0.032103, - 0.014589, - 0.025738, - -0.0057774, - -0.046901, - 0.027562, - -0.063469, - 0.038783, - 0.022422, - -0.0072832, - 0.023768, - -0.042947, - -0.023435, - 0.012899, - 0.068014, - -0.090067, - -0.028134, - 0.021646, - 0.028262, - 0.019362, - -0.004359, - -0.024298, - 0.032425, - 0.0026235, - 0.058909, - -0.032015, - -0.0073473, - -0.064084, - 0.012315, - -0.025247, - -0.078723, - 0.055154, - -0.005329, - -0.062792, - 0.013269, - 0.038707, - 0.12705, - -0.023406, - -0.022496, - -0.0045349, - 0.04659, - -0.020326, - -0.026515, - -0.01438, - 0.032335, - -0.058903, - -0.11493, - 0.0041219, - -0.041662, - -0.023566, - 0.010334, - 0.021199, - -0.045007, - 0.010544, - -0.041328, - 0.02508, - -0.019263, - 0.029595, - 0.017813, - -0.02858, - 0.02296, - -0.037472, - 0.0054588, - -0.0080935, - -0.075651, - 0.029896, - 0.035048, - 0.0092115, - 0.013815, - -0.12371, - 0.017421, - 0.07377, - -0.056034, - 0.0572, - 0.067889, - 0.034765, - 0.028193, - 0.0013352, - -0.064659, - -0.065203, - 0.05079, - 0.041047, - 0.036143, - 0.0849, - -0.0014086, - -0.012774, - -0.06244, - 0.031523, - 0.072903, - -0.010776, - 0.061405, - 0.048288, - -0.0013103, - 0.001749, - 0.061739, - -0.051313, - -0.068185, - 0.053666, - 0.049863, - -0.085908, - -0.018853, - -0.027289, - 0.018676, - -0.037321, - -0.031986, - -0.032209, - -0.038243, - -0.14629, - 0.045961, - 0.0044708, - -0.027508, - -0.0091724, - 0.089102, - 0.062102, - -0.0011181, - 0.10357, - -0.023274, - 0.084162, - 0.012282, - 0.00033474, - -0.0035345, - 0.086304, - 0.081744, - -0.071849, - 0.041765, - 0.055523, - -0.094315, - -0.013276, - 0.037789, - -0.042037, - 0.098103, - -0.0082202, - 0.015213, - 0.0016597, - 0.062942, - 0.048931, - -0.021065, - -0.041442, - -0.017103, - -0.048473, - -0.064734, - 0.072505, - 0.064657, - -0.028246, - -0.01053, - 0.054303, - -0.031429, - 0.020809, - -0.04652, - -0.072784, - -0.0030382, - 0.038459, - -0.01782, - -0.04955, - -0.041529, - -0.14195, - -0.026883, - 0.0092706, - -0.072505, - -0.018021, - 0.045115, - 0.034648, - 0.037946, - -0.016261, - 0.038613, - -0.0026857, - -0.065816, - 0.036359, - 0.011317, - -0.0003486, - 0.0080465, - 0.029888, - -0.071587, - 0.046342, - 0.0089659, - -0.018782, - 0.034251, - -0.025104, - 0.083548, - -0.062929, - -0.0056856, - 0.0065435, - -0.038468, - 0.021961, - -0.055777, - -0.089956, - -0.035222, - 0.073337, - -0.041229, - -0.035597, - 0.0017354, - -0.046092, - 0.0098909, - 0.049768, - 0.029058, - -0.03, - 0.027763, - 0.050201, - -0.060718, - 0.044122, - -0.053966, - 0.038165, - -0.024673, - 0.059688, - 0.090204, - 0.0047983, - -0.01408 - ], - "craft": [ - -0.02329, - -0.070193, - 0.046976, - -0.040585, - -0.060301, - -0.049162, - -0.035297, - -0.12726, - 0.022387, - 0.038107, - -0.030206, - -0.065803, - -0.12989, - 0.016801, - -0.085898, - 0.095773, - 0.16213, - 0.054376, - 0.083966, - 0.061419, - 0.015265, - 0.019119, - 0.048452, - 0.052811, - -0.035796, - -0.070842, - 0.0096035, - 0.0026941, - -0.012766, - -0.051446, - 0.012125, - -0.00075433, - 0.10803, - -0.020565, - 0.042782, - -0.048187, - 0.056085, - 0.013406, - 0.0014401, - -0.0041978, - -0.0787, - -0.15956, - 0.080056, - 0.0066991, - -0.017288, - -0.079963, - 0.017705, - 0.07478, - -0.0034923, - -0.033783, - -0.013129, - 0.018247, - 0.010829, - 0.0077588, - -0.095306, - 0.0056713, - 0.09348, - -0.018685, - -0.0073328, - -0.027651, - -0.0035391, - -0.013891, - 0.15728, - -0.052203, - 0.11683, - -0.0060217, - -0.14156, - -0.011265, - -0.01226, - 0.020149, - 0.073287, - -0.0010682, - 0.020509, - 0.068456, - 0.036659, - 0.0086799, - -0.0082194, - -0.033809, - 0.022014, - -0.0054659, - -0.012377, - -0.016107, - -0.0075399, - 0.042205, - -0.041598, - -0.027192, - 0.049253, - -0.011733, - 0.015341, - -0.029494, - 0.046094, - -0.010692, - -0.12616, - 0.0072083, - 0.0075635, - 0.031652, - -0.016477, - 0.070805, - 0.036189, - -0.0048558, - 0.038762, - -0.061384, - 0.13798, - 0.029177, - -0.018932, - -0.111, - -0.0017063, - 0.10217, - -0.032904, - 0.011104, - -0.0078975, - 0.05493, - 0.080628, - 0.11872, - -0.028906, - 0.004499, - -0.01418, - -0.017245, - -0.086594, - 0.047731, - -0.029967, - -0.010198, - -0.10663, - -0.053091, - 0.095984, - -0.021162, - 0.030348, - -0.087794, - 0.047857, - 0.13687, - 0.0063053, - 0.017413, - 0.076525, - 0.0020981, - 0.043177, - -0.12252, - -0.0091185, - -0.0083086, - -0.019292, - 0.0065798, - -0.033029, - -0.037149, - -0.020255, - -0.062262, - -0.051003, - -0.046211, - -0.036924, - -0.019417, - -0.064368, - -0.03796, - 0.0098583, - 0.14994, - -0.025904, - -0.096505, - -0.011491, - 0.0029393, - 0.015577, - -0.03386, - -0.053086, - -0.0091255, - 0.025142, - 0.13016, - -0.056203, - 0.07549, - -0.030635, - 0.080546, - 0.067295, - -0.069972, - -0.060761, - 0.057034, - 0.13997, - 0.022539, - -0.03284, - -0.078639, - 0.00037808, - 0.064227, - 0.0167, - 0.070924, - -0.07132, - 0.12621, - 0.0019037, - 0.025954, - -0.010175, - -0.05405, - 0.044878, - -0.078679, - 0.027349, - 0.085654, - -0.024699, - -0.079696, - -0.064515, - 0.083489, - 0.0056253, - -0.07404, - 0.012717, - 0.025138, - -0.012446, - 0.043316, - 0.0016517, - -0.018473, - -0.19446, - 0.10764, - 0.028706, - -0.0052708, - 0.12743, - 0.086879, - -0.056251, - 0.072525, - 0.10048, - -0.03211, - 0.093422, - 0.0039392, - 0.06198, - 0.015496, - 0.021924, - 0.10838, - 0.0019998, - 0.055513, - -0.034552, - 0.024137, - -0.01105, - -0.071709, - -0.023168, - 0.12831, - 0.008212, - -0.034248, - 0.089079, - 0.10444, - -0.0012062, - -0.024131, - 0.012832, - -0.055259, - -0.11065, - 0.0046697, - 0.029461, - -0.10338, - -0.038117, - -0.058652, - 0.019345, - 0.061295, - 0.10493, - 0.021019, - -0.022574, - -0.059839, - -0.047201, - 0.0045424, - -0.11682, - 0.021187, - 0.02509, - 0.061329, - 0.027499, - -0.055678, - -0.08802, - 0.074468, - 0.024671, - 0.012574, - -0.04198, - 0.050396, - -0.050291, - -0.024721, - 0.017219, - 0.051624, - 0.075839, - -0.023892, - -0.034699, - -0.026493, - 0.028976, - 0.045213, - -0.022966, - -0.051384, - -0.0058462, - 0.13422, - -0.13517, - -0.047094, - -0.065302, - 0.019373, - 0.038717, - 0.020491, - -0.038438, - 0.01922, - 0.10593, - 0.034569, - -0.0069907, - -0.016767, - -0.046541, - 0.0056704, - 0.0036843, - -0.023641, - 0.01629, - -0.030163, - -0.0039337, - -0.047302, - 0.0096521, - -0.11992, - -0.052829, - 0.018881, - 0.036751, - -0.069844, - 0.013606, - -0.08427 - ], - "folklore": [ - 0.010022, - -0.078112, - 0.0093432, - -0.025407, - -0.037126, - -0.077022, - 0.0016752, - -0.090756, - 0.02756, - -0.037047, - 0.056601, - -0.080482, - 0.012213, - -0.026808, - 0.04799, - 0.0029824, - 0.13397, - -0.089704, - 0.0093266, - 0.14904, - -0.031388, - -0.010675, - 0.0086068, - 0.099444, - 0.0598, - -0.012994, - -0.073522, - 0.056715, - 0.037074, - -0.018405, - 0.010551, - -0.049265, - 0.046504, - -0.055689, - 0.080493, - 0.027547, - 0.026431, - 0.031718, - 0.02301, - 0.018865, - 0.051931, - -0.1121, - 0.054861, - 0.037594, - 0.070453, - 0.011717, - 0.006805, - 0.0032698, - -0.0043834, - -0.057225, - -0.028488, - 0.083333, - -0.035434, - -0.01019, - -0.021828, - 0.13621, - -0.0090015, - 0.038903, - -0.016075, - -0.0095546, - -0.0068982, - -0.066834, - 0.076307, - 0.0064041, - 0.05019, - 0.043597, - -0.040145, - 0.10997, - 0.017883, - 0.047626, - -0.039534, - -0.0045899, - 0.029076, - 0.0071806, - -0.0051748, - 0.035238, - 0.010672, - 0.0022501, - 0.0726, - -0.082733, - -0.049715, - 0.070736, - -0.014279, - 0.043342, - -0.020666, - -0.027321, - 0.0058457, - -0.0096347, - 0.0034346, - -0.0019848, - -0.052392, - 0.05444, - -0.054973, - -0.003975, - 0.046286, - 0.062371, - 0.013976, - 0.067594, - 0.051054, - 0.01101, - -0.018479, - -0.0066431, - -0.047787, - -0.0084949, - -0.0087902, - -0.073537, - -0.028478, - 0.013203, - 0.00013917, - 0.015101, - -0.034133, - 0.075289, - 0.041179, - -0.059084, - -0.012372, - 0.082851, - -0.035957, - 0.021776, - -0.029565, - 0.027958, - -0.041332, - 0.017258, - -0.12265, - -0.095884, - 0.060686, - 0.074581, - -0.0114, - 0.035682, - -0.020565, - 0.17694, - -0.0010597, - 0.014236, - -0.090248, - 0.018821, - 0.018243, - 0.0069582, - 0.031825, - 0.04405, - 0.022627, - 0.016517, - 0.016231, - -0.027891, - 0.040308, - 0.028622, - -0.014649, - -0.08016, - 0.0078513, - 0.070206, - -0.068047, - -0.065327, - 0.0483, - 0.032071, - -0.021018, - -0.0056957, - 0.014694, - 0.044133, - -0.0062889, - 0.037385, - 0.022567, - 0.048243, - 0.0077017, - 0.057684, - -0.099188, - -0.024949, - 0.027384, - -0.091205, - 0.088903, - 0.032583, - 0.014602, - -0.001927, - 0.0051536, - -0.045934, - -0.026954, - 0.008378, - 0.042376, - 0.066537, - 0.069025, - 0.0491, - -0.030482, - -0.03169, - -0.045189, - 0.076716, - -0.030679, - -0.066034, - -0.076564, - 0.015696, - -0.016856, - 0.10696, - 0.031549, - -0.015663, - 0.013437, - 0.11053, - -0.035028, - -0.018087, - -0.039997, - 0.10378, - 0.039633, - -0.0011185, - -0.00012268, - -0.044042, - -0.15283, - -0.076637, - -0.042476, - -0.045084, - 0.070798, - 0.041998, - -0.013249, - 0.012285, - -0.0098461, - 0.002823, - 0.098963, - 0.022538, - -0.039427, - -0.057337, - 0.013715, - 0.018859, - -0.027809, - -0.047817, - -0.052343, - -0.0066773, - 0.049499, - -0.045452, - 0.017495, - 0.10109, - 0.016289, - -0.031721, - 0.037336, - 0.06421, - -0.035967, - -0.015111, - 0.011028, - -0.018354, - -0.045136, - 0.036339, - -0.028464, - 0.017993, - -0.031454, - 0.046037, - 0.066663, - -0.01568, - 0.058622, - 0.006671, - -0.028977, - 0.0054573, - 0.022877, - -0.013225, - -0.094537, - -0.039304, - -0.034776, - -0.021138, - 0.1005, - -0.047042, - -0.0098595, - 0.020506, - -0.012908, - 0.045397, - -0.048944, - 0.030901, - 0.097896, - 0.0069382, - 0.08848, - -0.028799, - -0.013183, - 0.023208, - -0.0081202, - -0.029033, - 0.024111, - 0.021301, - 0.050351, - -0.0045514, - -0.00097845, - 0.061757, - -0.069617, - -0.044612, - 0.00209, - -0.043693, - 0.021422, - -0.070556, - -0.070804, - -0.025029, - 0.066921, - -0.041481, - -0.0023283, - -0.010625, - -0.018772, - 0.051109, - 0.048289, - 0.018389, - -0.048924, - -0.044107, - 0.055776, - 0.024464, - 0.019225, - -0.058848, - 0.0033699, - 0.027214, - 0.037968, - 0.029262, - 0.025985, - -0.028301 - ], - "child": [ - -0.067711, - 0.00083038, - -0.019739, - 0.0026524, - -0.023497, - 0.004847, - 0.0075112, - -0.093149, - 0.10203, - -0.045452, - 0.036614, - 0.02055, - 0.038797, - 0.057485, - -0.061896, - -0.014608, - 0.10544, - -0.0052252, - 0.047645, - 0.10285, - -0.024762, - -0.044974, - 0.009527, - 0.058696, - -0.0027714, - 0.036162, - -0.046723, - 0.058057, - 0.049998, - -0.044996, - 0.026111, - 0.012972, - -0.036284, - 0.0029205, - -0.039569, - 0.0052453, - -0.05241, - -0.073026, - 0.13293, - -0.071796, - -0.012052, - -0.092873, - 0.0065294, - -0.082377, - -0.0021891, - 0.0022972, - 0.026863, - 0.090782, - -0.046602, - 0.043073, - 0.046932, - 0.05649, - -0.0074327, - -0.037019, - -0.010898, - -0.060064, - 0.007561, - -0.12572, - -0.080876, - -0.028361, - -0.038464, - -0.11506, - 0.12534, - 0.02196, - 0.028367, - 0.0038023, - 0.075723, - -0.076269, - -0.033657, - -0.06664, - -0.03037, - -0.012442, - 0.092494, - 0.0096191, - 0.0039644, - -0.00045818, - 0.02255, - -0.020962, - 0.075924, - -0.058397, - 0.024567, - 0.04544, - -0.068247, - 0.045453, - -0.060958, - -0.033344, - -0.00038558, - 0.019917, - -0.068223, - 0.011556, - -0.019288, - 0.072511, - -0.14755, - -0.027798, - -0.014183, - 0.099933, - 0.042513, - 0.051712, - 0.056942, - -0.01577, - 0.031467, - -0.074358, - -0.020082, - -0.048562, - -0.029698, - -0.14987, - 0.03642, - 0.035058, - -0.013388, - -0.036448, - -0.015641, - 0.10379, - 0.071167, - -0.026285, - -0.0042458, - -0.029033, - -0.055736, - -0.044364, - -0.032281, - 0.048667, - -0.017017, - 0.0079569, - 0.034473, - -0.062326, - 0.074661, - -0.037557, - 0.067661, - -0.18287, - 0.018949, - 0.033806, - -0.061619, - 0.0075345, - -0.00049223, - 0.01483, - -0.10934, - -0.044913, - -0.019689, - 0.066969, - 0.046428, - 0.011765, - 0.014013, - 0.03717, - -0.020709, - -0.016312, - 0.033346, - 0.049835, - -0.043609, - 0.042807, - -0.036138, - -0.018487, - 0.066828, - 0.10602, - -0.051924, - -0.13231, - -0.032385, - -0.035306, - 0.053742, - 0.018177, - 0.11005, - -0.099584, - 0.061487, - -0.037585, - -0.055182, - -0.019189, - 0.025705, - -0.01217, - 0.084334, - -0.055724, - -0.056638, - -0.072046, - -0.053218, - -0.00084614, - -0.041707, - 0.00060302, - 0.056939, - 0.051671, - 0.030449, - -0.025072, - -0.056749, - -0.07283, - 0.019375, - -0.12423, - -0.073171, - 0.0091183, - 0.0096917, - -0.16928, - 0.057364, - 0.087757, - 0.062933, - -0.011051, - -0.010154, - 0.022686, - -0.033963, - -0.055774, - 0.045556, - -0.07125, - 0.0086724, - 0.023142, - 0.014283, - 0.0036608, - -0.14104, - 0.10525, - 0.010307, - -0.069006, - 0.030024, - 0.079664, - -0.0047146, - -0.099727, - 0.032214, - -0.069837, - 0.12087, - -0.029641, - -0.026626, - 0.056297, - -0.022957, - -0.018787, - 0.02467, - -0.018535, - 0.05303, - -0.0088684, - 0.020108, - -0.001117, - 0.010746, - 0.14019, - 0.017102, - -0.053275, - -0.013355, - 0.062315, - -0.053279, - -0.055848, - 0.025457, - -0.058245, - -0.12094, - -0.053777, - 0.00073841, - 0.11595, - 0.024096, - 0.018139, - -0.060604, - -0.10168, - 0.024823, - 0.00098489, - -0.043638, - -0.025066, - -0.025468, - -0.0087805, - 0.031462, - -0.039006, - -0.0081858, - -0.018035, - 0.032778, - -0.043571, - 0.044957, - 0.008794, - 0.065185, - -0.030428, - 0.0030866, - 0.031099, - -0.057882, - 0.012483, - -0.048764, - -0.048936, - -0.013114, - -0.037586, - 0.034016, - 0.0077882, - -0.0089995, - 0.030592, - 0.11137, - 0.020138, - -0.046812, - 0.089569, - -0.17737, - -0.064459, - 0.022976, - -0.026727, - -0.0048977, - -0.0084329, - 0.01001, - 0.0040503, - 0.10501, - -0.014855, - 0.10105, - -0.07191, - -0.0069049, - 0.16427, - -0.00563, - -0.063978, - 0.0094933, - 0.027019, - -0.042864, - 0.00017752, - -0.11893, - -0.044085, - -0.033499, - 0.062488, - 0.10312, - 0.049091, - 0.013383, - -0.050908 - ], - "business-related": [ - -0.029675, - -0.012885, - 0.0091794, - -0.021915, - 0.021936, - 0.0092475, - 0.010488, - -0.043277, - 0.026856, - 0.040422, - -0.017076, - -0.069498, - -0.057013, - -0.018707, - 0.012871, - 0.06114, - 0.048099, - -0.010438, - 0.026415, - -0.0072894, - -0.0036253, - 0.017454, - 0.043635, - 0.046862, - -0.014133, - 0.029649, - -0.024236, - 0.050432, - 0.045519, - -0.0055658, - 0.0079063, - 0.0012085, - -0.022531, - -0.072742, - 0.080456, - 0.0081866, - -0.023267, - 0.045855, - 0.036501, - 0.01409, - 0.0086045, - -0.038599, - 0.0029928, - 0.041829, - 0.011326, - -0.029329, - 0.027235, - -0.033175, - 0.0019452, - 0.0023062, - -0.0076903, - -0.031178, - -0.00061565, - 0.035491, - -0.003852, - -0.014729, - -0.038728, - 0.012858, - -0.0061132, - -0.012146, - 0.0091928, - 0.013062, - 0.12301, - 0.049102, - 0.0016655, - -0.018839, - 0.013602, - 0.0018675, - -0.0096796, - 0.011725, - 0.016183, - 0.0033395, - 0.029915, - 0.027827, - 0.022877, - -0.01252, - -0.0076287, - -0.016943, - -0.0076272, - -0.018929, - 0.0096466, - 0.023539, - -0.0094536, - 0.014788, - -0.02558, - -0.035966, - -0.015146, - 0.015848, - 0.023889, - 0.0019569, - 0.020217, - 0.025638, - -0.062541, - 0.042889, - -0.014413, - -0.010093, - -0.033901, - -0.0036871, - 0.012594, - 0.0091011, - -0.0034913, - 0.0063392, - -0.042191, - -0.057185, - 0.032657, - -0.024848, - 0.0071546, - 0.018526, - 0.027876, - -0.034545, - -0.017743, - 0.044511, - 0.021601, - -0.0018014, - -0.012724, - -0.016137, - -0.041199, - -0.039441, - -0.018274, - 0.0035126, - -0.017843, - -0.0036123, - 0.021036, - -0.020122, - 0.082979, - 0.0017189, - -0.035669, - -0.012065, - 0.0069346, - 0.024351, - -0.0075108, - 0.032688, - -0.021676, - -0.017307, - -0.0062574, - 0.0201, - 0.055729, - 0.03405, - 0.023135, - 0.0023134, - 0.032575, - -0.0071672, - -0.0088816, - -0.017039, - -0.048574, - -0.013058, - -0.0055342, - -0.027848, - -0.0028284, - 0.011664, - 0.02448, - 0.085455, - -0.017546, - -0.065256, - 0.029163, - 0.033527, - -0.017843, - -0.0015484, - -0.0037427, - -0.0083441, - 0.032295, - 0.031252, - -0.011037, - 0.028482, - 0.034365, - 0.014639, - 0.0020958, - -0.011794, - -0.013855, - 0.023143, - 0.01116, - 0.022002, - 0.0090825, - 0.045067, - -0.0066025, - 0.037191, - -0.02124, - 0.033182, - -0.014384, - 0.028962, - 0.017248, - -0.040183, - 0.024148, - 0.00058359, - -0.001555, - -0.023123, - -0.031581, - 0.064772, - 0.023036, - 0.01854, - -0.06325, - 0.0093686, - 0.0033647, - -0.0079266, - -0.0067764, - 0.0341, - 0.0021268, - -0.031686, - 0.0025225, - -0.020386, - -0.073689, - 0.028306, - -0.02708, - -0.041968, - -0.017309, - 0.002971, - -0.041477, - -0.01643, - 0.018793, - -0.000021689, - 0.076392, - 0.017669, - 0.0063599, - -0.029357, - 0.029653, - 0.038679, - -0.026596, - -0.019178, - -0.038332, - -0.015035, - 0.0062886, - -0.0079125, - -0.031782, - 0.071685, - -0.029138, - -0.0065606, - 0.0066604, - 0.037119, - 0.011653, - -0.03184, - 0.0081998, - -0.011555, - -0.060904, - 0.0017816, - -0.0044556, - -0.0016131, - -0.013233, - -0.020128, - -0.019706, - -0.045557, - 0.0044049, - 0.012728, - 0.0040546, - 0.01363, - -0.093804, - -0.013706, - 0.023297, - 0.012255, - 0.026826, - 0.021294, - 0.0099177, - -0.0073769, - -0.028991, - -0.0055128, - -0.022487, - -0.031799, - -0.063818, - 0.0022668, - -0.0013837, - -0.0081698, - 0.01484, - 0.0077064, - -0.02043, - -0.026442, - 0.010119, - 0.017967, - -0.020078, - 0.043911, - 0.022421, - 0.0016328, - -0.022142, - 0.048787, - -0.070452, - -0.028574, - 0.002062, - -0.055768, - 0.0033345, - 0.0055889, - -0.025002, - 0.0040782, - 0.039508, - -0.0017819, - 0.0016216, - 0.020439, - 0.0039864, - -0.0099821, - -0.00826, - -0.017169, - -0.036599, - -0.004895, - 0.0028178, - 0.01242, - -0.0090241, - 0.034654, - -0.004764, - 0.018027, - -0.033789, - 0.01339, - 0.013556, - -0.011628 - ], - "aviation": [ - -0.007794, - -0.10018, - 0.073221, - -0.093956, - -0.031741, - 0.0015254, - 0.076427, - -0.096322, - 0.12322, - 0.059351, - 0.07214, - -0.025615, - -0.054184, - 0.0016927, - 0.06928, - 0.039739, - 0.060248, - -0.015307, - 0.050464, - 0.079238, - 0.061317, - 0.020399, - 0.039431, - 0.075622, - -0.059794, - -0.06012, - 0.01711, - 0.013768, - -0.0014825, - -0.043242, - 0.10443, - -0.033381, - 0.030887, - -0.041287, - 0.089762, - 0.044246, - -0.026946, - 0.024389, - 0.067569, - -0.018957, - -0.083496, - -0.12602, - 0.074015, - 0.00019344, - -0.080328, - -0.028981, - 0.065421, - 0.023327, - -0.050053, - 0.0084887, - 0.004218, - 0.0034346, - 0.028634, - 0.040125, - -0.029048, - -0.046491, - -0.049711, - -0.031086, - 0.00084949, - 0.00016896, - 0.003758, - -0.039292, - 0.092485, - 0.001247, - 0.063686, - -0.035367, - -0.050747, - -0.0431, - 0.039548, - 0.053813, - 0.072576, - -0.03187, - 0.04668, - 0.02487, - 0.013001, - -0.020597, - -0.042136, - 0.021691, - 0.0066522, - -0.0049542, - -0.024184, - 0.039994, - -0.085301, - 0.017031, - -0.10192, - -0.017355, - 0.0073016, - -0.0086261, - 0.0080952, - -0.040395, - 0.064378, - 0.079169, - -0.070567, - 0.0094913, - 0.014066, - 0.075693, - -0.033343, - 0.0043009, - -0.010868, - 0.015071, - -0.033376, - 0.020936, - -0.00039623, - -0.055285, - 0.026318, - -0.073227, - -0.014165, - 0.0039217, - 0.02192, - 0.058362, - 0.040468, - 0.085153, - 0.0051935, - 0.048193, - 0.0035188, - -0.0064047, - -0.034961, - -0.049759, - -0.031206, - -0.021856, - 0.058768, - -0.024248, - -0.11838, - -0.019612, - 0.066569, - 0.037477, - -0.025961, - -0.038231, - 0.025221, - 0.096168, - -0.029226, - 0.011371, - -0.031595, - 0.042328, - 0.071632, - -0.0078316, - 0.084932, - 0.014109, - -0.0073081, - 0.043634, - 0.014614, - 0.035023, - -0.031113, - 0.018703, - -0.07027, - 0.037263, - -0.033766, - -0.09146, - -0.0011667, - -0.018533, - 0.085181, - 0.090364, - -0.053736, - -0.03678, - 0.014064, - 0.01671, - 0.020579, - 0.063061, - -0.088034, - -0.0049696, - 0.014932, - -0.054771, - -0.074335, - -0.050509, - -0.013017, - -0.060798, - 0.031987, - -0.014226, - 0.02325, - 0.042014, - 0.028408, - 0.013308, - 0.012921, - 0.0017423, - 0.0030902, - 0.052296, - -0.055393, - 0.065488, - -0.021686, - 0.09154, - -0.018062, - -0.0051142, - 0.0035605, - -0.029232, - 0.045722, - -0.039085, - -0.0064262, - 0.10935, - -0.037463, - -0.064252, - -0.062152, - 0.066779, - 0.010452, - -0.0332, - -0.024018, - 0.015416, - -0.097248, - 0.043225, - 0.017196, - -0.097667, - -0.1118, - 0.003807, - -0.0099027, - -0.023282, - 0.04442, - 0.036904, - 0.0029111, - 0.0069302, - -0.019747, - 0.011604, - 0.1195, - 0.011165, - -0.029337, - 0.034584, - 0.0030526, - 0.093027, - 0.021647, - -0.075327, - -0.015067, - -0.032559, - -0.027823, - -0.10354, - -0.024139, - 0.079979, - -0.051308, - 0.076108, - -0.0010194, - 0.1093, - 0.0039398, - -0.01415, - 0.02747, - 0.0044338, - -0.051162, - 0.064222, - 0.01208, - -0.015948, - -0.012826, - 0.027958, - -0.0022766, - -0.068908, - 0.014203, - 0.042291, - 0.093057, - -0.011348, - -0.018798, - -0.026543, - 0.0032807, - -0.041036, - 0.012565, - -0.0074209, - 0.074375, - 0.060121, - -0.00092214, - 0.039877, - -0.014566, - 0.041208, - 0.044947, - 0.01828, - 0.070852, - 0.031915, - 0.025359, - -0.026931, - -0.014849, - 0.0010345, - 0.014301, - -0.015094, - 0.005113, - 0.0050254, - 0.083007, - -0.022367, - -0.0083832, - 0.051777, - -0.094076, - 0.0025953, - -0.022772, - -0.010499, - 0.0083146, - 0.042312, - 0.0052868, - -0.10888, - 0.1194, - -0.04074, - 0.0021664, - 0.0062201, - -0.012041, - -0.070492, - -0.033968, - -0.033501, - -0.0070374, - -0.058073, - 0.044149, - 0.020078, - -0.024786, - -0.034263, - -0.031492, - -0.067696, - 0.0019202, - 0.025992, - 0.071821, - -0.073012 - ], - "humanitarian": [ - -0.010355, - -0.05544, - 0.031423, - -0.020072, - -0.053281, - -0.047491, - -0.069879, - -0.060553, - 0.056695, - -0.0046457, - -0.00011419, - -0.0015814, - -0.027991, - -0.033815, - 0.023446, - -0.0030304, - 0.037474, - -0.013115, - 0.021633, - 0.048995, - 0.0021714, - -0.0082097, - 0.049026, - 0.050829, - -0.024002, - 0.029079, - 0.015415, - 0.026743, - 0.03192, - -0.039979, - -0.0094, - -0.023874, - 0.029591, - -0.051068, - 0.047646, - 0.040081, - 0.022379, - -0.014036, - 0.087762, - 0.0038734, - -0.039438, - -0.096338, - 0.035704, - 0.0269, - 0.010715, - 0.0039611, - -0.020964, - 0.014882, - -0.021776, - -0.011418, - -0.032467, - -0.0064815, - 0.0081085, - -0.034189, - 0.047738, - 0.039496, - -0.014856, - -0.010668, - -0.031115, - 0.018821, - -0.042111, - -0.046767, - 0.094322, - -0.031893, - 0.047721, - -0.063852, - 0.050366, - -0.070736, - 0.0016374, - 0.0086366, - 0.0056463, - 0.0047122, - 0.035513, - -0.0047733, - -0.0026811, - 0.020603, - 0.0075507, - -0.022408, - 0.039453, - 0.043188, - -0.012516, - 0.037995, - -0.012802, - 0.048003, - -0.010213, - 0.018048, - -0.0089575, - 0.046987, - 0.020458, - 0.020395, - -0.033525, - 0.048777, - -0.089882, - -0.0054038, - -0.013509, - 0.039236, - -0.011491, - -0.033822, - -0.0060494, - -0.027289, - 0.0079241, - -0.025639, - -0.0086222, - -0.042275, - -0.002999, - -0.066735, - 0.042019, - 0.070384, - -0.048679, - 0.0027174, - -0.043118, - 0.055312, - 0.032449, - 0.00801, - -0.010134, - -0.014724, - 0.026022, - -0.0016043, - -0.0045628, - -0.022716, - -0.031328, - -0.061154, - -0.013391, - -0.0083356, - 0.056418, - 0.018014, - 0.017157, - -0.034263, - 0.024642, - 0.054375, - -0.0073527, - 0.014771, - -0.0017017, - 0.0043546, - -0.0026155, - 0.077643, - 0.024904, - 0.031877, - -0.0090126, - 0.017992, - -0.020035, - -0.022719, - 0.016026, - -0.0047657, - -0.055098, - 0.041948, - 0.0011434, - 0.00076276, - -0.0065617, - 0.039077, - -0.0033283, - 0.12931, - -0.032891, - -0.056259, - 0.011676, - 0.01221, - -0.020517, - -0.024724, - 0.016865, - -0.056795, - 0.049392, - -0.015976, - -0.076248, - 0.04243, - -0.1016, - 0.053137, - 0.0093321, - 0.010626, - -0.064388, - 0.0032912, - 0.022842, - -0.0072864, - 0.033562, - 0.036297, - -0.017611, - 0.042228, - -0.019721, - 0.006876, - 0.00079866, - 0.010508, - -0.029429, - 0.022053, - -0.010381, - -0.034441, - -0.034703, - -0.047837, - 0.051475, - 0.083718, - 0.018804, - -0.080706, - 0.056849, - 0.039497, - 0.068775, - -0.050122, - -0.020885, - 0.030656, - 0.0089751, - -0.01844, - -0.00687, - -0.0037958, - -0.097069, - 0.021043, - 0.017756, - -0.01486, - -0.036523, - -0.035627, - -0.049356, - -0.047145, - 0.016701, - 0.01145, - 0.12345, - 0.018462, - -0.035126, - 0.030815, - 0.015637, - 0.064447, - 0.023933, - -0.026099, - -0.052709, - -0.0091086, - -0.01457, - -0.0043519, - -0.076917, - 0.052575, - -0.012246, - 0.05069, - 0.0078181, - 0.056384, - 0.050424, - -0.033622, - -0.022788, - -0.034348, - -0.061696, - -0.084158, - -0.03366, - 0.0053046, - -0.0022353, - -0.037075, - -0.0082835, - 0.021262, - 0.014789, - 0.034277, - 0.031449, - -0.041792, - -0.060774, - -0.022302, - -0.020296, - 0.0096749, - -0.023343, - 0.035657, - 0.039337, - 0.010661, - 0.017582, - -0.02334, - 0.0023236, - 0.031232, - 0.035954, - 0.015955, - 0.019831, - 0.0025578, - -0.033975, - -0.024128, - -0.0089233, - 0.01712, - 0.02102, - 0.011853, - 0.006175, - 0.00069208, - 0.061685, - 0.034492, - 0.011837, - 0.049612, - -0.070186, - -0.011432, - 0.029094, - -0.07121, - -0.03281, - -0.049743, - 0.0030265, - 0.01076, - 0.12326, - 0.019615, - -0.085081, - 0.023845, - -0.0089814, - 0.016202, - -0.024545, - -0.061075, - 0.029985, - 0.041137, - -0.042694, - -0.011165, - -0.016023, - 0.043161, - -0.011772, - -0.038598, - 0.011443, - 0.056909, - -0.021306, - 0.00054288 - ], - "horse-racing": [ - -0.034426, - -0.050007, - 0.07032, - 0.03012, - -0.06082, - -0.013769, - -0.044959, - -0.074821, - 0.034455, - 0.013666, - -0.0016965, - -0.059221, - 0.0082945, - 0.0079877, - -0.012856, - 0.014004, - 0.039623, - 0.031275, - -0.0078311, - -0.00061736, - 0.051308, - -0.088182, - 0.037582, - 0.027791, - 0.094378, - -0.00050782, - 0.037322, - 0.041798, - 0.030819, - 0.022544, - -0.0063316, - 0.0031823, - -0.041049, - -0.053617, - 0.090263, - 0.002992, - -0.01554, - 0.014257, - 0.0067553, - 0.038557, - 0.047346, - -0.083113, - -0.064982, - 0.079054, - -0.025127, - -0.022725, - 0.034618, - -0.028588, - -0.029253, - -0.022799, - -0.0126, - 0.020737, - 0.040088, - 0.028337, - -0.038708, - -0.077149, - -0.019279, - -0.000010524, - -0.021522, - -0.01137, - -0.020582, - 0.064409, - 0.032706, - 0.034694, - 0.017282, - 0.00018732, - -0.07132, - -0.0067479, - 0.047165, - 0.031281, - -0.022281, - -0.056711, - 0.059484, - 0.052967, - 0.054046, - 0.10235, - -0.059055, - -0.0048107, - -0.051373, - 0.024607, - -0.016824, - 0.0065561, - -0.055404, - 0.015052, - -0.031778, - -0.078873, - 0.054818, - -0.0000023331, - 0.010346, - -0.0028419, - 0.06906, - 0.028671, - -0.084216, - -0.0019511, - 0.013339, - 0.082347, - -0.051673, - 0.0038361, - 0.010098, - 0.034231, - -0.092949, - -0.020032, - -0.057956, - -0.089819, - 0.0017657, - -0.07598, - -0.049889, - 0.038888, - -0.00032503, - 0.020075, - -0.055321, - 0.075252, - 0.058544, - -0.026083, - -0.0077937, - -0.029444, - 0.0020634, - 0.010945, - -0.032355, - -0.025127, - 0.050386, - 0.039649, - -0.062944, - -0.0053893, - 0.076534, - 0.05665, - -0.049899, - -0.029665, - -0.057441, - 0.078144, - 0.03122, - 0.02024, - -0.0086386, - 0.021753, - -0.0064327, - -0.0068891, - -0.061082, - -0.00075926, - 0.031236, - 0.0016122, - 0.019765, - -0.013999, - 0.035472, - 0.020917, - 0.0060941, - -0.019107, - -0.0059187, - -0.044123, - -0.018251, - -0.065876, - 0.024884, - 0.063734, - -0.020902, - -0.03243, - -0.0094716, - 0.010184, - 0.017698, - 0.056578, - -0.0049981, - -0.019488, - 0.033113, - 0.01576, - -0.053316, - 0.032971, - -0.053724, - 0.0016609, - -0.022287, - 0.04368, - -0.057646, - -0.021541, - 0.017549, - -0.0773, - 0.048493, - 0.052121, - 0.038069, - 0.018802, - -0.0323, - -0.007651, - -0.060585, - -0.011623, - 0.0014742, - -0.025022, - 0.0039898, - -0.036546, - -0.027172, - -0.033947, - 0.015971, - 0.056957, - 0.011364, - -0.013557, - 0.002502, - 0.050277, - 0.037715, - -0.065066, - 0.016459, - 0.015774, - 0.027114, - 0.043497, - 0.029573, - -0.014217, - -0.11184, - 0.061156, - -0.023503, - -0.022307, - 0.037264, - 0.024637, - -0.034976, - -0.0042309, - -0.0010637, - -0.0094726, - 0.086298, - 0.0012899, - 0.01111, - 0.0035371, - -0.028451, - -0.0054149, - -0.091411, - 0.018581, - 0.020832, - -0.0022785, - 0.030721, - -0.044783, - 0.029, - 0.053664, - -0.025991, - -0.021005, - 0.017397, - 0.059733, - -0.019963, - -0.0012076, - 0.0012972, - -0.05691, - -0.039137, - 0.0021005, - -0.012214, - 0.064973, - 0.023197, - 0.061271, - -0.042059, - -0.03198, - 0.031728, - 0.040329, - 0.0091432, - -0.046826, - -0.061115, - 0.033731, - 0.032903, - 0.025696, - 0.0080915, - 0.061081, - 0.027436, - -0.018996, - 0.019207, - 0.0088702, - -0.020976, - 0.031645, - -0.069199, - 0.0089619, - 0.01656, - 0.071651, - 0.013216, - -0.0067279, - 0.051824, - 0.043665, - 0.0084344, - -0.005184, - -0.04016, - -0.00099156, - 0.052839, - -0.0060639, - 0.0083003, - 0.062456, - -0.064114, - -0.006831, - -0.024638, - -0.034185, - 0.037523, - -0.01068, - -0.056198, - -0.025747, - 0.071415, - 0.031756, - -0.0035812, - 0.029397, - -0.039715, - 0.051953, - 0.014358, - -0.057416, - -0.023463, - 0.043607, - 0.065615, - -0.034366, - -0.015383, - -0.0057128, - -0.0313, - 0.016214, - -0.047483, - 0.032103, - -0.076421, - -0.024893 - ], - "Laws": [ - -0.0027581, - -0.0054663, - 0.070877, - 0.065456, - 0.081204, - -0.019836, - 0.0012847, - -0.082997, - 0.077601, - 0.047077, - 0.008224, - -0.15954, - -0.048872, - -0.051496, - 0.089786, - 0.045441, - 0.009489, - -0.012318, - 0.17604, - 0.08739, - 0.020569, - 0.079103, - 0.068981, - 0.073309, - 0.093194, - -0.061416, - 0.0094144, - -0.062372, - 0.13591, - -0.044003, - 0.030523, - -0.076064, - -0.075157, - 0.042948, - 0.043062, - 0.035609, - -0.05359, - -0.11853, - -0.0102, - -0.025875, - 0.070042, - 0.036887, - -0.025308, - -0.0011242, - -0.11421, - -0.0009901, - 0.023282, - -0.049967, - 0.03071, - -0.034363, - -0.04157, - -0.045203, - 0.12701, - -0.041701, - -0.11911, - 0.034636, - 0.092778, - -0.023718, - -0.15813, - -0.027267, - 0.051667, - 0.035868, - -0.023094, - 0.089379, - -0.14321, - -0.01917, - -0.070611, - 0.062322, - 0.15281, - 0.080986, - -0.038997, - -0.051743, - -0.038353, - 0.018205, - -0.022979, - -0.073842, - -0.066966, - -0.17941, - -0.030441, - 0.057066, - 0.091099, - 0.015968, - -0.031795, - 0.077568, - 0.092047, - -0.013569, - 0.10966, - 0.019047, - 0.037598, - 0.036672, - 0.065932, - -0.12333, - -0.081026, - 0.00041504, - -0.10219, - 0.2076, - 0.023903, - 0.08919, - 0.018531, - -0.063268, - 0.01574, - 0.022602, - -0.045134, - -0.040206, - -0.017202, - -0.14919, - 0.1263, - 0.031356, - 0.11156, - -0.011509, - -0.069529, - -0.082145, - 0.12523, - -0.063283, - 0.081622, - 0.14572, - -0.028148, - -0.026499, - 0.13527, - 0.093252, - 0.043131, - 0.040475, - 0.057247, - -0.12487, - 0.11587, - 0.023754, - -0.10345, - -0.032833, - -0.069672, - 0.3913, - -0.0080145, - 0.15782, - 0.095826, - 0.047292, - 0.030196, - -0.032061, - 0.032017, - -0.02512, - 0.024278, - -0.049372, - 0.10138, - -0.023303, - -0.019608, - -0.077944, - 0.09372, - 0.043649, - -0.091471, - 0.022272, - -0.068744, - -0.022128, - -0.0088616, - 0.064106, - -0.069477, - 0.033174, - 0.059218, - 0.19212, - 0.017095, - -0.095631, - 0.043157, - -0.053369, - 0.092119, - 0.083208, - -0.11379, - 0.10853, - 0.0051532, - -0.1067, - 0.12139, - -0.025294, - 0.045496, - -0.039482, - -0.052396, - -0.013019, - 0.020203, - -0.024168, - -0.083607, - -0.024662, - -0.041781, - 0.081046, - 0.038191, - -0.038201, - -0.057191, - 0.036705, - 0.0011078, - 0.067204, - -0.0058491, - 0.26812, - 0.13126, - 0.19684, - 0.13642, - 0.034692, - 0.010495, - 0.16455, - -0.19153, - -0.012329, - 0.022248, - -0.040984, - 0.00088888, - -0.11013, - 0.0054247, - -0.033304, - -0.063463, - 0.16177, - 0.072517, - -0.019445, - 0.045543, - -0.0099823, - 0.088022, - -0.046955, - 0.12402, - -0.012104, - 0.23561, - 0.078874, - 0.016856, - 0.041691, - 0.11747, - -0.034729, - 0.014535, - 0.023855, - -0.15261, - -0.04866, - 0.03856, - -0.1019, - -0.0032355, - 0.15824, - 0.070006, - -0.080855, - 0.01789, - 0.07989, - -0.095861, - -0.0016387, - -0.02839, - -0.11051, - 0.014393, - -0.00022419, - 0.017201, - -0.029173, - 0.082868, - 0.048171, - 0.037054, - 0.17281, - 0.049539, - -0.0023244, - -0.022731, - 0.0069811, - 0.21461, - -0.01704, - -0.04843, - -0.10153, - -0.0075733, - -0.021018, - 0.011623, - -0.15134, - 0.047418, - -0.0026309, - 0.010364, - -0.017143, - 0.06323, - 0.094672, - -0.040651, - 0.034817, - -0.059818, - -0.048405, - -0.018946, - -0.12337, - 0.025197, - 0.093989, - 0.09547, - -0.010629, - -0.018127, - -0.035348, - 0.047641, - 0.16544, - -0.046786, - 0.042672, - 0.062357, - -0.10815, - -0.044334, - 0.012872, - 0.0059487, - -0.084278, - -0.041266, - 0.011595, - -0.044342, - -0.097622, - 0.07475, - 0.07411, - -0.020237, - 0.10078, - 0.1069, - 0.10098, - -0.027155, - -0.084228, - -0.052325, - -0.060897, - -0.11771, - -0.030776, - -0.042042, - -0.088862, - -0.057387, - -0.012806 - ], - "inclement": [ - 0.037863, - 0.015638, - 0.04572, - 0.013395, - -0.0014826, - -0.081236, - -0.0097911, - -0.091812, - 0.048121, - 0.022896, - -0.0091254, - 0.064138, - -0.0026552, - 0.038207, - 0.0081907, - -0.043217, - 0.044638, - 0.022135, - 0.030138, - 0.031899, - 0.022529, - -0.046172, - -0.031264, - 0.05195, - 0.052379, - 0.070615, - 0.0028787, - -0.0082422, - 0.072201, - -0.026829, - 0.011646, - 0.05446, - -0.019521, - -0.087069, - 0.028935, - -0.0040471, - 0.072276, - 0.026029, - 0.022111, - -0.043397, - 0.015511, - -0.071248, - 0.032532, - -0.017807, - -0.044995, - 0.0084891, - 0.011763, - -0.044518, - 0.016237, - -0.0044034, - -0.025696, - 0.028502, - 0.0021399, - 0.037977, - -0.025139, - 0.03195, - 0.070117, - -0.040817, - -0.059907, - -0.020699, - -0.054809, - 0.084796, - 0.060375, - -0.014217, - -0.031945, - -0.0051248, - 0.0041271, - 0.010662, - 0.022935, - 0.099973, - 0.069884, - 0.034179, - -0.02652, - 0.035249, - 0.00092404, - -0.014538, - -0.028293, - 0.011621, - -0.10774, - 0.035805, - 0.038134, - 0.032802, - 0.061706, - 0.037831, - 0.032432, - -0.033709, - 0.068602, - 0.0055313, - -0.086242, - -0.020336, - 0.0045277, - 0.01463, - -0.08446, - -0.051074, - 0.0034983, - 0.021194, - -0.058193, - 0.067872, - 0.00039951, - -0.0014129, - 0.0056579, - -0.026012, - 0.0576, - 0.07001, - 0.046958, - -0.025036, - -0.060018, - -0.018366, - 0.061842, - -0.017183, - -0.087168, - 0.051606, - 0.020177, - 0.085418, - -0.01621, - -0.068328, - 0.014338, - 0.040453, - 0.004939, - -0.040522, - 0.059021, - -0.0023493, - -0.048253, - 0.037449, - 0.046523, - 0.013357, - -0.016421, - -0.013279, - 0.0166, - 0.086778, - 0.04744, - 0.055029, - 0.014292, - 0.018345, - -0.015077, - 0.043076, - 0.021745, - 0.099195, - -0.0049983, - 0.02567, - 0.03884, - -0.059982, - -0.055642, - -0.06312, - -0.024049, - 0.036105, - 0.0041545, - 0.01358, - 0.0032021, - 0.01462, - -0.024038, - 0.024491, - -0.015438, - -0.06324, - 0.065983, - 0.020588, - 0.020143, - 0.028532, - -0.015267, - -0.018664, - 0.017216, - -0.040265, - -0.076439, - 0.027539, - 0.048444, - -0.0076257, - 0.0069792, - -0.034175, - 0.030545, - 0.078067, - -0.067422, - -0.014505, - 0.0072217, - -0.063509, - 0.026417, - 0.02299, - 0.063106, - -0.00096239, - -0.032209, - 0.047094, - 0.015716, - 0.018968, - -0.015083, - -0.050827, - -0.0078588, - -0.021761, - -0.081557, - 0.16585, - -0.05191, - -0.032054, - -0.0027566, - 0.015833, - -0.16185, - -0.00065828, - -0.048122, - -0.021437, - 0.025937, - 0.025631, - -0.025645, - -0.024573, - -0.1023, - -0.025362, - -0.016017, - -0.032864, - -0.010335, - 0.034424, - -0.088308, - 0.0051064, - 0.013447, - -0.045611, - 0.075798, - -0.015525, - 0.060583, - 0.076344, - 0.14381, - 0.055992, - -0.039975, - -0.029266, - -0.12863, - -0.071402, - 0.014693, - 0.023748, - -0.055202, - 0.058842, - -0.069064, - -0.032632, - -0.0057838, - 0.097789, - -0.089376, - 0.028585, - -0.035619, - 0.0037171, - -0.032081, - 0.024747, - 0.047151, - -0.00064463, - -0.0068759, - -0.0017525, - 0.099314, - -0.030907, - 0.071743, - -0.0076412, - 0.006416, - -0.0012082, - -0.064474, - 0.0087597, - 0.035585, - -0.089733, - -0.02409, - -0.053796, - -0.031961, - 0.0017493, - 0.018381, - 0.069146, - 0.015814, - -0.0019578, - 0.090415, - -0.027582, - -0.029084, - 0.04092, - 0.049718, - -0.037951, - -0.026895, - 0.029746, - 0.039666, - -0.0031531, - 0.0085487, - -0.0049832, - 0.010488, - 0.017268, - -0.041127, - 0.085473, - -0.07674, - -0.046231, - 0.080294, - -0.065643, - -0.011246, - -0.015174, - -0.075324, - -0.003949, - 0.057023, - -0.0072377, - 0.011893, - -0.03451, - -0.023874, - 0.018756, - -0.0049861, - -0.058434, - -0.00053535, - 0.067815, - 0.039157, - -0.038301, - -0.024236, - 0.093049, - 0.0077124, - -0.048918, - -0.046587, - 0.06609, - 0.0026709, - -0.0047175 - ], - "commerce": [ - -0.071924, - -0.043814, - 0.055622, - -0.01724, - 0.012877, - -0.01795, - -0.032531, - -0.09911, - 0.10208, - 0.097237, - -0.034647, - -0.046899, - -0.048545, - -0.018848, - -0.02428, - 0.074883, - 0.14001, - -0.039645, - 0.045871, - 0.066469, - -0.019948, - -0.024232, - 0.082984, - 0.041284, - -0.037474, - -0.023515, - 0.0086537, - 0.011188, - -0.011879, - -0.025832, - 0.019203, - 0.012884, - -0.0015111, - -0.033354, - 0.047066, - 0.084982, - 0.058914, - 0.039249, - -0.012151, - 0.024146, - -0.049022, - -0.11732, - 0.013031, - -0.010932, - -0.037201, - -0.013277, - -0.049612, - 0.073923, - -0.013366, - 0.02205, - -0.05431, - -0.074797, - 0.029665, - -0.043661, - -0.073154, - 0.0075856, - -0.025978, - 0.048949, - -0.0080209, - -0.0037455, - -0.034798, - 0.064772, - 0.055384, - 0.0049134, - 0.042332, - -0.0088033, - -0.0019106, - -0.016823, - 0.055089, - -0.0079468, - 0.027352, - 0.01618, - 0.042806, - 0.0045373, - 0.051951, - -0.026011, - 0.020963, - 0.015775, - 0.0026791, - -0.010735, - -0.019254, - -0.032902, - -0.10383, - 0.033713, - 0.0057697, - -0.028571, - -0.03528, - -0.019352, - -0.030331, - -0.0082025, - 0.015678, - 0.043644, - -0.10037, - 0.023289, - -0.0045947, - 0.074725, - 0.017494, - -0.040956, - -0.034944, - 0.023108, - 0.059822, - 0.017253, - -0.027465, - -0.076647, - 0.044096, - -0.061025, - 0.033949, - 0.032314, - 0.040665, - 0.012817, - 0.0093656, - 0.11342, - 0.052523, - 0.010132, - -0.042033, - 0.032766, - 0.0028554, - -0.012077, - -0.0382, - 0.0083878, - -0.068244, - -0.019341, - -0.05709, - 0.018747, - 0.034958, - 0.014127, - -0.067621, - -0.084098, - -0.0014397, - 0.12443, - 0.032761, - 0.011758, - -0.056701, - 0.039995, - 0.0070226, - -0.0099685, - 0.026981, - 0.0061874, - -0.0025142, - -0.033684, - 0.060724, - 0.005486, - -0.025559, - -0.0047817, - 0.065169, - 0.051627, - 0.008636, - -0.056845, - -0.023323, - -0.015281, - 0.080869, - 0.047553, - 0.020928, - -0.036451, - 0.084884, - 0.035367, - -0.043979, - 0.036904, - -0.032145, - -0.00044702, - 0.049167, - -0.087147, - -0.12554, - 0.081747, - 0.068478, - 0.033377, - 0.035574, - -0.038304, - 0.035694, - 0.028375, - 0.036324, - 0.05458, - -0.0064505, - 0.029276, - -0.019753, - 0.055193, - 0.0021943, - 0.089174, - -0.04563, - 0.041721, - -0.059252, - -0.0015221, - 0.021622, - -0.015055, - -0.004585, - -0.046183, - -0.040892, - 0.10654, - -0.0040833, - -0.016124, - -0.083104, - 0.059085, - -0.02811, - 0.024054, - -0.0093705, - 0.0045447, - 0.01177, - 0.034653, - 0.0059531, - 0.0092455, - -0.14576, - -0.0050266, - 0.010776, - 0.0076611, - -0.0081499, - 0.044685, - -0.029246, - -0.04188, - 0.064623, - 0.0037255, - 0.10838, - -0.010494, - -0.046175, - -0.0080517, - 0.041567, - 0.096725, - 0.0020899, - -0.041874, - 0.026445, - -0.022446, - 0.039341, - -0.10523, - -0.025613, - 0.085435, - -0.00084446, - 0.024554, - 0.090418, - 0.063841, - 0.0048985, - -0.056127, - -0.068542, - 0.0031236, - -0.057036, - -0.063946, - 0.064419, - -0.046752, - -0.018969, - 0.034532, - -0.00048087, - -0.13212, - 0.032872, - 0.0025532, - -0.0017526, - -0.0048941, - 0.021507, - 0.020477, - -0.0049007, - -0.092107, - 0.052307, - 0.051556, - 0.075295, - -0.054343, - -0.0044927, - 0.030221, - 0.025958, - 0.05615, - -0.13283, - 0.053385, - 0.0074052, - -0.031047, - 0.011524, - 0.059554, - 0.01459, - 0.030755, - -0.061683, - 0.05052, - 0.11068, - 0.033193, - -0.0081931, - -0.00082297, - 0.022623, - 0.074682, - -0.092636, - -0.050145, - -0.044003, - -0.010672, - 0.043318, - 0.026514, - -0.027273, - -0.049879, - 0.057623, - 0.043236, - -0.018528, - -0.061269, - -0.031989, - 0.017044, - -0.005882, - -0.0085479, - -0.015879, - 0.025132, - 0.002041, - 0.067901, - -0.076181, - -0.01374, - -0.051458, - -0.0025682, - -0.022614, - -0.01842, - -0.021764, - 0.043264 - ], - "smartphones": [ - -0.089523, - -0.034335, - -0.027441, - -0.0077144, - -0.00020932, - 0.027398, - -0.010856, - -0.026426, - 0.026292, - 0.036692, - -0.00056435, - -0.020425, - -0.050563, - -0.019941, - 0.0045754, - -0.027224, - 0.071916, - -0.01781, - 0.050018, - -0.051603, - 0.026288, - -0.05957, - 0.028737, - 0.041978, - 0.019928, - -0.0056631, - -0.00043605, - -0.034351, - 0.053293, - -0.032613, - 0.017166, - -0.040403, - 0.054648, - 0.0034635, - 0.039268, - 0.029443, - 0.0034155, - 0.0046135, - -0.048033, - -0.047028, - -0.061898, - -0.050127, - -0.049063, - 0.038462, - 0.061268, - -0.02548, - -0.049815, - -0.046997, - 0.0101, - -0.065351, - 0.0027588, - -0.029789, - -0.042305, - 0.017827, - -0.068664, - 0.040116, - 0.036093, - 0.03668, - -0.0048345, - -0.01113, - 0.021015, - -0.024535, - 0.074436, - 0.070144, - -0.0016421, - -0.022242, - 0.057393, - -0.0093447, - -0.022618, - 0.040986, - -0.068936, - -0.03788, - 0.024197, - -0.0014513, - -0.10308, - 0.031052, - 0.055384, - -0.031052, - -0.013483, - -0.052976, - -0.019529, - -0.044663, - -0.056234, - 0.069725, - 0.037314, - -0.050637, - 0.000073427, - -0.043419, - -0.047298, - 0.01252, - 0.022456, - -0.038583, - -0.05974, - 0.044412, - -0.021685, - 0.044971, - -0.048844, - -0.080986, - 0.012533, - 0.013074, - 0.054503, - 0.017897, - 0.014037, - -0.021245, - 0.0096846, - -0.017456, - 0.0029501, - 0.061271, - 0.011516, - -0.00036776, - 0.027704, - 0.044501, - 0.063472, - 0.048357, - -0.052944, - -0.0087011, - -0.034381, - 0.017548, - -0.04389, - -0.013983, - -0.017715, - 0.025277, - 0.028709, - -0.036296, - 0.037881, - 0.042308, - 0.0029191, - -0.032296, - 0.017099, - 0.028936, - -0.014838, - 0.047069, - -0.011175, - -0.055617, - 0.059117, - -0.0044898, - 0.015887, - -0.017636, - -0.05571, - 0.032818, - 0.095247, - 0.01043, - 0.016875, - 0.021048, - -0.0065504, - 0.0083499, - -0.015549, - 0.0090476, - 0.047884, - -0.0039647, - 0.025083, - 0.052205, - 0.028653, - -0.011432, - 0.008811, - 0.030516, - -0.084487, - 0.037751, - -0.015197, - -0.0071394, - 0.037481, - 0.0087546, - 0.00018024, - 0.016963, - 0.022332, - 0.0039494, - 0.0056126, - 0.0021918, - 0.0084283, - -0.0050233, - -0.036808, - 0.06632, - 0.036781, - 0.056255, - -0.037801, - 0.033673, - -0.016545, - -0.014082, - -0.014071, - -0.018136, - 0.067744, - -0.027666, - 0.0056314, - -0.041682, - -0.048373, - -0.02919, - 0.015761, - 0.077727, - -0.021583, - 0.031636, - -0.019092, - 0.044165, - -0.089102, - -0.0070047, - -0.024217, - -0.0194, - -0.040391, - -0.012481, - 0.036145, - 0.019492, - -0.092276, - 0.054835, - -0.037066, - 0.022398, - -0.026851, - 0.067679, - 0.043017, - -0.027853, - -0.048712, - -0.038708, - 0.060346, - -0.0091955, - 0.043235, - 0.030951, - 0.00061085, - -0.0014019, - -0.047063, - 0.0032402, - -0.022216, - 0.014807, - 0.057089, - -0.025889, - -0.00026159, - 0.081192, - 0.0060201, - -0.050089, - 0.0084554, - 0.035475, - -0.0073239, - -0.036322, - -0.0080075, - -0.02416, - -0.055932, - 0.0043867, - 0.048784, - 0.053025, - 0.0073781, - -0.036842, - 0.032916, - -0.059982, - -0.0032496, - 0.017598, - 0.030186, - -0.020068, - 0.033886, - -0.011971, - -0.010935, - -0.023724, - -0.025485, - 0.0018613, - 0.011864, - 0.023115, - -0.10795, - -0.030168, - -0.0048374, - -0.016629, - -0.033526, - -0.027372, - 0.01517, - -0.0056844, - 0.00032724, - 0.074819, - -0.053619, - -0.025164, - 0.03947, - 0.015802, - 0.0084448, - 0.03132, - 0.057002, - 0.073099, - -0.010039, - 0.060492, - -0.096509, - -0.00031615, - -0.031721, - -0.032294, - 0.0082536, - 0.044516, - -0.021015, - 0.0002139, - 0.02584, - 0.0010621, - -0.049966, - 0.036809, - -0.026875, - -0.087942, - -0.07868, - 0.014984, - 0.0543, - -0.016476, - -0.00010223, - 0.0035807, - -0.085386, - -0.0028132, - 0.069181, - 0.012893, - -0.0019058, - 0.02504, - 0.032971, - 0.053789 - ], - "post-secondary": [ - -0.02107, - -0.048193, - -0.030487, - 0.0058397, - 0.026034, - -0.021842, - -0.037487, - -0.033181, - 0.040487, - 0.0020008, - 0.039801, - -0.048707, - 0.0067078, - 0.045751, - -0.026005, - 0.018938, - 0.044753, - 0.046353, - -0.011197, - 0.012318, - 0.034256, - -0.0046479, - 0.008318, - 0.078996, - -0.051924, - 0.031556, - -0.021069, - 0.035569, - 0.014814, - 0.00053608, - 0.018455, - -0.0066609, - -0.082721, - -0.071752, - 0.030013, - 0.078315, - 0.031147, - 0.021041, - -0.071152, - 0.020307, - -0.039768, - -0.070318, - 0.031379, - 0.04455, - 0.016768, - -0.040894, - -0.056598, - 0.025069, - 0.0050379, - 0.055399, - -0.037307, - 0.045391, - -0.036784, - 0.01134, - -0.0092107, - -0.018393, - -0.037995, - 0.010084, - -0.015418, - -0.0047036, - 0.032591, - 0.0054281, - 0.086632, - 0.056213, - 0.034935, - -0.069617, - -0.024056, - -0.018703, - -0.011926, - -0.0076199, - -0.050661, - -0.020985, - 0.044911, - 0.056984, - -0.005313, - -0.0074848, - -0.022819, - -0.013133, - 0.036006, - 0.036563, - -0.0088583, - 0.03304, - -0.030625, - -0.010615, - -0.035052, - 0.046051, - -0.037252, - -0.0076589, - -0.034273, - 0.010172, - 0.026287, - -0.0057038, - -0.046703, - 0.027266, - -0.035141, - 0.042628, - 0.030958, - 0.011221, - -0.015555, - 0.021669, - 0.016549, - 0.0058876, - 0.042188, - -0.030227, - 0.021016, - -0.043242, - 0.014963, - 0.045324, - -0.00024306, - -0.00011335, - -0.0025084, - 0.05274, - 0.017343, - 0.020098, - 0.020492, - 0.0039747, - -0.015011, - -0.0024918, - -0.012248, - 0.020945, - 0.0015811, - -0.015273, - -0.020536, - 0.00022339, - 0.0043716, - 0.011289, - -0.036636, - -0.037783, - -0.010961, - 0.010719, - -0.018421, - 0.021968, - 0.010458, - -0.042394, - -0.040408, - 0.01513, - -0.010223, - 0.0053702, - 0.019337, - -0.023914, - 0.01067, - -0.0097566, - 0.0093449, - 0.021452, - -0.015246, - -0.02661, - -0.057422, - -0.021343, - 0.0056374, - 0.049746, - 0.075645, - 0.097971, - -0.022717, - -0.0084445, - 0.045512, - 0.010072, - -0.048917, - 0.0083115, - -0.058029, - -0.041402, - 0.015242, - 0.010103, - 0.0097171, - 0.0093398, - -0.020722, - -0.030756, - 0.022193, - -0.0002561, - -0.011503, - -0.031975, - 0.032471, - 0.0076126, - -0.0026374, - -0.016801, - -0.0051436, - 0.041755, - 0.039881, - 0.040989, - -0.017471, - 0.012626, - 0.0026304, - -0.047208, - -0.029264, - 0.022486, - 0.0047414, - 0.0029263, - -0.048721, - 0.10071, - -0.0089499, - -0.0013988, - -0.0016696, - 0.027344, - 0.070603, - -0.006922, - -0.021658, - 0.0012667, - 0.032964, - -0.026689, - 0.0067343, - -0.011323, - -0.076766, - -0.014109, - -0.015908, - 0.023443, - -0.016101, - 0.047684, - 0.015613, - 0.009128, - -0.043102, - 0.01435, - 0.092705, - -0.016657, - 0.0055498, - -0.0076183, - -0.055036, - 0.018842, - 0.0074207, - -0.02709, - 0.011559, - -0.0087559, - -0.017589, - 0.0053953, - -0.03744, - 0.046158, - -0.0093669, - 0.000785, - 0.024216, - 0.050421, - 0.019207, - -0.041183, - 0.029198, - -0.055375, - -0.029214, - 0.039386, - 0.030852, - -0.026502, - 0.066291, - 0.022873, - -0.049004, - -0.00043175, - 0.029292, - 0.035668, - 0.027404, - -0.03001, - -0.10311, - -0.026699, - -0.012641, - -0.045431, - 0.011795, - 0.016845, - 0.0016518, - 0.011589, - 0.00002045, - -0.070093, - -0.032021, - 0.0045223, - -0.053265, - 0.011695, - 0.011457, - -0.032725, - -0.017324, - -0.075343, - 0.011363, - -0.024732, - 0.025062, - 0.055805, - -0.0074072, - 0.021087, - -0.020506, - 0.016715, - 0.0047201, - 0.034103, - -0.045865, - -0.015973, - -0.028714, - -0.047695, - -0.018954, - 0.046609, - 0.041012, - 0.046821, - 0.070512, - -0.002355, - 0.053007, - 0.0044878, - -0.0068568, - 0.012388, - 0.023775, - -0.014471, - -0.041028, - -0.026702, - -0.0028967, - 0.0068755, - -0.0075361, - -0.0072875, - 0.011697, - 0.012837, - -0.0024414, - -0.035248, - 0.010169, - -0.013649 - ], - "ciphers": [ - 0.046859, - -0.038883, - 0.043362, - 0.070664, - -0.050705, - -0.0018992, - 0.0072507, - -0.076043, - -0.01951, - 0.062677, - 0.060981, - -0.051601, - -0.069479, - 0.035893, - -0.030695, - 0.015248, - -0.01905, - 0.030553, - 0.033988, - -0.014223, - 0.04806, - 0.075976, - 0.058725, - 0.032414, - 0.0059369, - 0.032143, - 0.0047426, - -0.092953, - 0.10473, - -0.049183, - -0.11094, - -0.10456, - -0.09861, - 0.038745, - 0.049687, - -0.02425, - 0.015705, - 0.036647, - 0.017368, - -0.0044378, - -0.042161, - -0.098391, - -0.00040219, - 0.0068472, - -0.0013444, - -0.085017, - -0.018779, - 0.058141, - -0.008551, - -0.007277, - -0.025109, - -0.085063, - 0.052037, - -0.018489, - -0.068883, - -0.0095047, - 0.066081, - 0.075956, - 0.02717, - -0.071243, - -0.092003, - -0.15733, - 0.11119, - -0.08665, - -0.044827, - 0.015384, - -0.018552, - 0.087472, - -0.031198, - -0.041722, - -0.047734, - 0.041131, - 0.077961, - 0.020168, - 0.024809, - -0.030776, - 0.018628, - -0.075075, - 0.039726, - -0.056057, - 0.032518, - -0.022826, - 0.0043686, - 0.053771, - -0.043286, - 0.011032, - 0.025094, - 0.020689, - 0.020289, - 0.016033, - 0.052124, - -0.039615, - -0.06245, - 0.0059369, - 0.014032, - 0.0864, - 0.0072349, - 0.0030657, - 0.023801, - 0.069068, - 0.056632, - 0.08412, - 0.036313, - 0.04616, - 0.01908, - -0.048461, - 0.095958, - 0.023195, - -0.029252, - 0.052696, - 0.056228, - 0.057208, - 0.059293, - 0.031205, - -0.041644, - 0.039351, - 0.061603, - 0.11678, - -0.035724, - -0.058076, - 0.19055, - -0.037126, - -0.14885, - -0.045295, - 0.10726, - -0.037199, - -0.024891, - -0.014473, - -0.059108, - 0.067954, - -0.0023638, - 0.06744, - 0.11634, - 0.049328, - 0.034466, - -0.10264, - 0.043858, - 0.048628, - -0.0043605, - 0.0087898, - 0.10902, - 0.028066, - -0.036421, - 0.042349, - 0.074086, - -0.073467, - -0.098092, - -0.11257, - 0.015183, - -0.10156, - -0.031493, - 0.072547, - 0.051499, - -0.0035946, - 0.10455, - 0.037727, - 0.029846, - 0.067191, - 0.0045086, - 0.084775, - 0.034081, - -0.022863, - -0.048277, - 0.079467, - 0.0076916, - -0.16487, - -0.070678, - 0.053194, - -0.0021768, - -0.049219, - 0.040665, - 0.0027622, - 0.02872, - 0.083114, - -0.02564, - 0.046058, - 0.0017846, - 0.050065, - -0.027308, - -0.013117, - 0.03086, - -0.0045889, - 0.0090341, - 0.013082, - 0.032235, - 0.021195, - -0.061062, - 0.14876, - 0.08805, - 0.091036, - -0.004929, - 0.073792, - -0.05692, - -0.052834, - 0.075456, - 0.029247, - -0.10379, - -0.0083211, - -0.071092, - 0.018853, - -0.12689, - 0.066147, - -0.04689, - 0.073165, - 0.022554, - -0.031475, - 0.11178, - -0.014347, - -0.044637, - -0.082161, - 0.077137, - 0.04914, - 0.010792, - 0.10473, - 0.0084591, - 0.092584, - -0.097922, - 0.026937, - -0.042392, - -0.055267, - 0.042851, - 0.012742, - -0.010634, - 0.083948, - 0.036631, - -0.086328, - 0.12155, - 0.06088, - 0.057852, - 0.013877, - -0.031862, - 0.024254, - -0.077047, - -0.071508, - -0.0074264, - -0.14704, - -0.0038516, - 0.0075424, - 0.019617, - -0.063304, - -0.010066, - -0.071083, - 0.0048685, - -0.02156, - 0.062041, - 0.08105, - -0.13536, - -0.0051908, - -0.0026833, - 0.081408, - -0.044852, - 0.020406, - -0.0021946, - 0.057756, - 0.012383, - 0.12073, - 0.075301, - -0.045079, - 0.060381, - -0.041081, - -0.035516, - 0.0050308, - 0.08477, - 0.0017499, - 0.09928, - -0.10449, - 0.033022, - -0.028278, - 0.017692, - -0.0075198, - 0.028401, - 0.095357, - -0.047486, - -0.020346, - -0.052927, - -0.025761, - 0.13662, - -0.044065, - 0.11071, - -0.050285, - 0.049476, - 0.044548, - -0.034626, - -0.032619, - 0.016246, - 0.0022466, - 0.013063, - 0.003752, - -0.083091, - 0.088173, - -0.10198, - 0.010813, - -0.071965, - 0.0015194, - 0.019605, - -0.011207, - 0.035508, - -0.046218, - -0.14501, - 0.063817 - ], - "judicial": [ - -0.048174, - -0.086482, - 0.037039, - 0.026806, - -0.050419, - -0.064321, - 0.023044, - -0.079465, - 0.05926, - 0.012053, - 0.04891, - -0.062922, - -0.0034465, - 0.0633, - 0.0038361, - 0.064356, - 0.080662, - -0.014372, - 0.039943, - 0.0583, - -0.031159, - -0.023342, - 0.041171, - 0.10041, - 0.021549, - 0.039344, - -0.0089163, - 0.050815, - -0.0086891, - -0.0027083, - 0.0094809, - -0.052922, - -0.087129, - -0.11169, - 0.044966, - 0.087309, - 0.035716, - 0.035926, - -0.0095572, - 0.0067273, - 0.00023466, - -0.1367, - 0.044149, - 0.0098373, - 0.047495, - -0.0037171, - -0.012354, - 0.032294, - -0.032052, - -0.032202, - -0.0039044, - 0.029923, - 0.030076, - 0.0048171, - -0.00015001, - -0.045491, - -0.0050538, - -0.0079006, - -0.0057847, - 0.063593, - -0.00075198, - 0.026954, - 0.096856, - -0.0044215, - 0.024475, - -0.018319, - -0.017696, - -0.057111, - 0.0033082, - 0.059833, - 0.036736, - -0.063779, - 0.041924, - -0.057703, - -0.013519, - -0.038734, - -0.0046676, - -0.049165, - 0.015568, - 0.037558, - -0.049675, - 0.012165, - -0.034323, - 0.039569, - 0.022205, - 0.0041717, - 0.04467, - -0.034259, - 0.034927, - 0.044387, - -0.01975, - 0.024577, - -0.10299, - -0.021916, - -0.0047377, - 0.054227, - -0.029963, - -0.032233, - -0.0098931, - -0.034607, - 0.0040826, - -0.0032202, - -0.023848, - -0.052444, - 0.030223, - -0.091345, - 0.067171, - -0.056967, - -0.027365, - -0.0071346, - -0.021839, - 0.076006, - 0.04497, - 0.0083239, - 0.0021807, - 0.021039, - 0.073688, - -0.055449, - -0.04256, - 0.040449, - 0.023497, - -0.064759, - 0.085733, - 0.028549, - 0.078504, - 0.031201, - -0.0079, - -0.046768, - -0.031202, - 0.104, - -0.018918, - -0.0088034, - 0.02691, - -0.012634, - -0.025748, - -0.069728, - -0.042714, - 0.0095725, - 0.042326, - -0.048954, - 0.029604, - -0.061559, - -0.0090265, - -0.0005163, - -0.0601, - -0.014499, - -0.0094227, - 0.033872, - -0.0017493, - -0.001197, - 0.039796, - 0.15539, - 0.027226, - -0.06536, - 0.031548, - 0.017407, - -0.012854, - -0.019605, - 0.0028325, - 0.025266, - 0.039817, - 0.050577, - -0.077477, - 0.015118, - 0.029608, - 0.088382, - 0.063689, - 0.00069398, - 0.022865, - -0.015873, - 0.072054, - -0.0074053, - 0.039045, - 0.016668, - 0.0064747, - 0.073302, - 0.007921, - 0.026562, - -0.021715, - -0.065555, - -0.020379, - -0.053586, - 0.001148, - -0.025242, - -0.00287, - -0.015214, - 0.022804, - 0.11518, - 0.051289, - 0.047304, - -0.044256, - 0.026852, - 0.13767, - 0.0035816, - -0.034546, - -0.022195, - 0.021302, - 0.012941, - -0.060722, - 0.0090844, - -0.16963, - -0.0025074, - 0.048793, - 0.018595, - -0.10259, - -0.0071436, - 0.075958, - -0.0029552, - 0.036104, - 0.019962, - 0.15409, - 0.018353, - 0.0042334, - 0.026321, - -0.015566, - -0.012147, - 0.018902, - 0.02162, - -0.023313, - -0.050023, - -0.040411, - 0.0068556, - 0.0068586, - 0.077331, - 0.019097, - 0.02408, - -0.029549, - 0.045649, - -0.047207, - -0.031341, - 0.037086, - -0.084444, - -0.027431, - 0.030565, - 0.00022649, - -0.042284, - -0.049645, - 0.020842, - 0.031015, - -0.014438, - 0.054703, - -0.020625, - -0.045949, - 0.03107, - -0.1296, - 0.01671, - -0.05104, - -0.033644, - -0.025247, - 0.013474, - 0.027041, - 0.027985, - -0.0095026, - -0.016042, - -0.0099605, - 0.02503, - 0.031836, - 0.013368, - -0.056862, - -0.00059179, - -0.0194, - -0.028514, - -0.0064498, - -0.0039869, - -0.016509, - -0.051374, - 0.0017339, - 0.037445, - -0.0088254, - -0.010985, - -0.027207, - 0.047097, - -0.10551, - -0.034425, - -0.0092655, - -0.056919, - -0.028809, - 0.076234, - -0.023075, - -0.047881, - 0.17383, - -0.0043967, - -0.01106, - -0.049878, - 0.00084799, - 0.027303, - -0.021989, - 0.0012133, - -0.0091345, - 0.069445, - -0.047544, - -0.070062, - 0.024419, - 0.050168, - -0.0057215, - 0.030613, - -0.070676, - 0.018043, - -0.026309, - 0.045316 - ], - "legislating": [ - 0.0024395, - -0.045354, - 0.0121, - -0.007438, - 0.027414, - -0.0090316, - -0.019717, - -0.097554, - 0.014227, - 0.047004, - -0.014717, - -0.069445, - -0.028573, - -0.0061308, - -0.0097511, - 0.057419, - 0.026025, - 0.0068052, - 0.026519, - 0.031842, - 0.025431, - 0.017322, - 0.020961, - 0.019258, - -0.014943, - -0.014378, - 0.022749, - 0.0018758, - 0.035892, - -0.04287, - 0.034118, - -0.070743, - -0.047411, - -0.074989, - 0.018941, - 0.018654, - 0.023075, - -0.049313, - -0.019199, - 0.027915, - -0.0097928, - -0.087305, - -0.029486, - -0.00020767, - -0.026611, - -0.032507, - -0.04824, - 0.026732, - -0.014097, - 0.025014, - 0.026201, - -0.017197, - 0.036766, - 0.027344, - -0.072229, - -0.0001556, - -0.0063935, - -0.01527, - -0.011198, - -0.014129, - -0.0052042, - -0.042664, - 0.011104, - 0.0083169, - -0.027395, - -0.027619, - -0.012148, - 0.018137, - 0.062493, - 0.0055081, - 0.0023001, - 0.0048399, - 0.006844, - 0.0021911, - -0.048309, - -0.00049865, - -0.006771, - -0.069332, - -0.030011, - 0.041431, - -0.014378, - -0.020978, - 0.016985, - 0.05142, - -0.016186, - -0.0015434, - 0.019122, - -0.019041, - 0.0067645, - 0.018617, - 0.011623, - -0.04243, - -0.059753, - 0.024378, - 0.028233, - -0.021347, - 0.002046, - 0.030746, - 0.041052, - -0.00019306, - -0.025286, - -0.024724, - -0.043015, - -0.017752, - -0.020822, - -0.040675, - 0.048607, - -0.031593, - -0.037069, - -0.019389, - 0.032359, - 0.060502, - 0.046002, - -0.018406, - -0.00044702, - 0.037547, - 0.017369, - -0.018111, - -0.058372, - 0.0016154, - -0.0009809, - 0.012098, - 0.045225, - 0.012746, - 0.0022488, - 0.02511, - -0.0090517, - -0.063721, - 0.0032757, - 0.11271, - -0.0045338, - 0.019733, - -0.0018228, - 0.06902, - -0.0018201, - -0.059114, - -0.032024, - -0.04924, - 0.0042437, - 0.0028516, - 0.058527, - -0.028517, - 0.021982, - 0.068104, - -0.0058336, - 0.00031632, - -0.012029, - 0.015791, - 0.050644, - -0.033944, - 0.026301, - 0.023639, - 0.0056521, - -0.069728, - 0.0011115, - 0.054357, - 0.011044, - -0.016581, - -0.049394, - 0.00027905, - 0.042477, - 0.036356, - -0.027296, - 0.028341, - 0.022906, - 0.036765, - 0.044232, - 0.0067073, - -0.0038534, - -0.035207, - -0.0076752, - -0.0096078, - -0.0054901, - 0.0023968, - -0.023544, - 0.035307, - -0.028151, - 0.061183, - -0.020099, - -0.024211, - -0.015473, - -0.054539, - 0.0049518, - 0.018212, - 0.01106, - 0.00026034, - 0.031429, - 0.059013, - 0.018212, - 0.012039, - -0.052672, - 0.013274, - -0.012225, - -0.0041757, - 0.029787, - -0.015586, - -0.024962, - 0.004638, - -0.045562, - -0.0044912, - -0.14523, - 0.040681, - 0.056742, - -0.0090618, - -0.0093293, - 0.0031639, - -0.00072497, - 0.022193, - 0.0022824, - -0.002424, - 0.017474, - 0.014861, - 0.014068, - -0.0076499, - -0.020294, - 0.0067302, - 0.062124, - -0.038882, - 0.0036311, - -0.056786, - -0.006225, - -0.0031561, - 0.0086759, - 0.070898, - -0.022207, - -0.025246, - 0.024836, - 0.037551, - 0.003815, - -0.028718, - 0.0053069, - -0.054082, - -0.060028, - -0.030143, - 0.010793, - -0.056696, - 0.025981, - 0.030206, - 0.0092633, - -0.016742, - 0.057721, - -0.020789, - 0.011674, - -0.00094228, - -0.11685, - 0.029738, - -0.010292, - -0.0080508, - -0.014084, - -0.0049655, - 0.035293, - -0.0054093, - -0.015088, - 0.020445, - 0.038051, - 0.04568, - -0.019417, - 0.046631, - -0.034205, - 0.011964, - -0.0017858, - -0.016168, - -0.034646, - 0.066277, - -0.046457, - 0.058142, - -0.0013338, - 0.015662, - -0.005801, - -0.018153, - -0.040483, - 0.035874, - -0.079065, - 0.012816, - -0.046774, - -0.053995, - 0.0025462, - 0.095387, - -0.035273, - 0.0089776, - 0.010838, - 0.027538, - -0.044509, - -0.015276, - 0.057454, - 0.024999, - 0.036321, - -0.029838, - 0.089381, - 0.054092, - 0.048168, - -0.052231, - 0.029342, - -0.025178, - -0.028004, - 0.034817, - -0.047159, - -0.010246, - -0.041041, - -0.00383 - ], - "budget": [ - 0.098088, - -0.011645, - -0.041583, - -0.010001, - 0.077794, - -0.028514, - -0.018084, - -0.12298, - 0.024678, - 0.075533, - -0.059691, - -0.060488, - -0.034749, - -0.0031411, - -0.036312, - 0.049514, - 0.073787, - -0.023005, - 0.087028, - 0.027943, - 0.021056, - -0.052838, - -0.049788, - 0.071418, - 0.078337, - -0.0046519, - -0.019984, - 0.031551, - -0.018467, - 0.028944, - 0.026279, - 0.033321, - -0.016707, - -0.11628, - 0.0038249, - 0.052654, - 0.0060999, - 0.010171, - -0.01622, - -0.015527, - -0.037237, - -0.12548, - 0.031237, - 0.038283, - -0.016597, - 0.039695, - -0.0037772, - -0.049849, - -0.028204, - 0.027595, - 0.050542, - 0.0034061, - 0.038872, - 0.063017, - -0.082816, - 0.045528, - -0.02076, - -0.096396, - -0.073301, - 0.02297, - 0.098808, - -0.064796, - 0.16915, - 0.061299, - 0.024286, - 0.02049, - 0.032462, - -0.059033, - -0.038557, - -0.011478, - 0.016354, - -0.064766, - 0.0055119, - -0.01695, - 0.023335, - 0.035912, - 0.12777, - -0.050968, - 0.020463, - -0.0095916, - -0.015776, - -0.044134, - -0.018486, - 0.064639, - 0.042635, - 0.072521, - -0.075947, - -0.075561, - 0.0050704, - -0.057779, - 0.03494, - -0.00092393, - -0.12462, - 0.026043, - -0.10808, - 0.038674, - -0.0034251, - 0.041811, - 0.093361, - 0.064152, - 0.036304, - -0.054715, - 0.00067058, - -0.009226, - 0.015538, - -0.080175, - -0.0032816, - -0.063389, - -0.10722, - 0.040181, - 0.014242, - 0.036416, - 0.095237, - 0.017542, - 0.056977, - -0.11843, - -0.0035486, - -0.074114, - -0.074695, - 0.039938, - -0.062061, - -0.022096, - -0.077303, - -0.015005, - 0.045951, - 0.011867, - -0.046089, - -0.10543, - 0.0072624, - 0.12341, - 0.005755, - -0.062272, - 0.038947, - 0.067716, - -0.043567, - -0.058753, - 0.02725, - 0.049334, - -0.05354, - 0.050303, - 0.038313, - -0.033069, - 0.027458, - 0.024855, - -0.073785, - -0.051358, - -0.053935, - -0.034779, - 0.081248, - -0.063551, - 0.012241, - 0.066909, - 0.047431, - -0.074366, - 0.038113, - 0.034214, - -0.004441, - -0.042518, - -0.056137, - -0.044651, - 0.094848, - 0.06577, - -0.076217, - 0.013069, - -0.052801, - 0.1112, - -0.001774, - -0.065176, - -0.010769, - 0.016839, - -0.043243, - -0.046311, - -0.078608, - -0.12084, - -0.033978, - 0.073898, - -0.10311, - 0.056979, - -0.039016, - -0.00065268, - -0.026359, - -0.011955, - 0.0013754, - -0.011171, - -0.011507, - -0.0087385, - 0.0060184, - 0.07362, - 0.023645, - -0.039497, - -0.048027, - 0.031854, - 0.041365, - -0.037551, - -0.016739, - -0.058403, - -0.089121, - -0.0063577, - 0.018814, - -0.0213, - -0.16386, - 0.025724, - -0.005198, - 0.082481, - -0.019501, - -0.00061862, - -0.13505, - -0.048521, - -0.011981, - -0.05651, - 0.12937, - -0.070052, - -0.01615, - -0.0041501, - 0.0075209, - -0.025633, - 0.085908, - 0.066009, - -0.018015, - -0.069958, - -0.0089054, - 0.099806, - 0.049204, - 0.11107, - 0.023998, - -0.025449, - 0.049696, - 0.030192, - 0.057475, - -0.0019989, - -0.017883, - -0.12648, - -0.055086, - -0.0056398, - 0.0046127, - -0.090535, - -0.066142, - -0.080467, - -0.052618, - 0.004185, - 0.085708, - -0.03345, - 0.014478, - -0.03463, - -0.056556, - 0.064195, - -0.01004, - -0.054287, - 0.019897, - -0.051193, - 0.002033, - 0.029467, - -0.021842, - 0.033285, - 0.0033153, - -0.01332, - -0.03496, - 0.0081524, - -0.0074575, - 0.07199, - 0.042905, - -0.068463, - -0.058946, - -0.072035, - 0.011348, - 0.022578, - -0.048582, - 0.034885, - 0.078842, - 0.010029, - 0.051934, - 0.060232, - -0.13651, - -0.050615, - -0.0057914, - -0.010891, - -0.025081, - 0.11005, - 0.041583, - 0.040705, - 0.097394, - 0.013706, - -0.0054247, - 0.0011511, - 0.017618, - 0.051955, - 0.0092648, - 0.055724, - -0.11305, - -0.045678, - 0.0089305, - 0.042892, - 0.080073, - 0.053542, - 0.0041551, - -0.018052, - -0.079208, - -0.006307, - -0.046515, - 0.03211 - ], - "speculator": [ - 0.026108, - -0.055363, - -0.018461, - 0.029179, - -0.069565, - -0.0086678, - -0.0077085, - -0.11355, - 0.048426, - 0.065758, - 0.0026154, - 0.032166, - -0.022232, - -0.011926, - -0.028803, - -0.012737, - 0.011032, - -0.028898, - -0.0022783, - 0.00065407, - 0.055871, - 0.049554, - -0.0048383, - 0.019254, - 0.011503, - 0.0082691, - 0.058611, - 0.0069573, - -0.010766, - -0.029953, - -0.0014584, - -0.019277, - -0.022204, - -0.017592, - -0.015723, - 0.022632, - 0.025401, - -0.0011908, - -0.010483, - 0.047328, - -0.035665, - -0.14831, - -0.03424, - 0.0067494, - -0.048613, - 0.067112, - -0.018386, - 0.050047, - -0.04434, - -0.0119, - -0.02546, - 0.048231, - -0.032415, - -0.077828, - 0.068588, - -0.010148, - 0.016957, - 0.025729, - -0.022982, - -0.037402, - -0.028211, - 0.076256, - 0.047214, - 0.040296, - 0.03716, - 0.027832, - -0.01612, - 0.035479, - 0.025656, - -0.074427, - 0.060664, - 0.01073, - 0.015641, - 0.048935, - 0.012335, - 0.089428, - -0.078435, - -0.02617, - -0.018364, - 0.020392, - 0.013076, - -0.0044672, - -0.062544, - 0.065734, - -0.040077, - -0.062182, - 0.029088, - 0.024121, - 0.0089692, - -0.04103, - 0.01279, - 0.03844, - -0.069372, - -0.10207, - -0.011079, - 0.081467, - 0.021796, - -0.091826, - -0.0056553, - 0.013333, - -0.037537, - 0.007237, - -0.020191, - 0.014015, - 0.033414, - -0.064657, - 0.011215, - -0.0050129, - 0.015906, - 0.026921, - -0.052027, - 0.063851, - 0.02859, - -0.002823, - 0.015662, - 0.015804, - 0.016462, - -0.060776, - -0.032257, - 0.034645, - 0.038615, - -0.039346, - 0.034467, - -0.031706, - 0.10845, - -0.004462, - 0.03055, - 0.013656, - -0.02248, - 0.095764, - 0.048963, - 0.029239, - -0.026011, - 0.01242, - 0.0094131, - 0.027975, - 0.015846, - 0.10596, - 0.00058642, - 0.014667, - -0.0059586, - -0.0045639, - -0.07147, - 0.05727, - 0.0075787, - -0.052411, - 0.030453, - -0.034904, - 0.029369, - -0.051618, - -0.019607, - 0.065158, - -0.051501, - -0.071192, - -0.021855, - -0.05309, - 0.065385, - -0.025919, - -0.06312, - -0.016946, - 0.0088722, - 0.011645, - -0.06376, - -0.0060117, - -0.0060683, - -0.016239, - -0.0035871, - -0.040406, - 0.053732, - 0.035879, - -0.051225, - -0.03755, - 0.025755, - -0.014379, - -0.031609, - 0.027608, - -0.0078973, - -0.024523, - 0.011616, - 0.074701, - -0.035796, - 0.014976, - -0.037893, - -0.069002, - -0.011766, - -0.063022, - 0.031383, - 0.076373, - 0.005315, - 0.022311, - -0.011632, - 0.057771, - -0.036686, - 0.065791, - -0.028989, - -0.072396, - -0.014594, - 0.074398, - -0.012057, - 0.097341, - -0.14657, - -0.0015167, - -0.009502, - -0.045509, - 0.05679, - -0.0095432, - -0.029519, - -0.031826, - -0.021836, - -0.010198, - 0.057183, - 0.050595, - -0.062504, - -0.01012, - -0.075764, - 0.069133, - -0.022724, - -0.012138, - 0.049708, - -0.0016406, - 0.01091, - -0.022516, - -0.0090152, - 0.081058, - 0.081011, - -0.015043, - 0.019679, - 0.07, - -0.017162, - 0.031838, - -0.077284, - -0.036558, - -0.052654, - -0.025277, - -0.00033016, - 0.018401, - 0.022413, - -0.013441, - -0.00067329, - -0.070912, - 0.077665, - 0.018548, - 0.029, - 0.052133, - -0.0154, - -0.0037978, - -0.078859, - 0.035587, - -0.025749, - -0.0040772, - 0.016369, - -0.072775, - 0.026025, - -0.015124, - 0.057065, - -0.019307, - -0.040292, - 0.043037, - 0.0092752, - 0.062584, - 0.04657, - 0.010102, - -0.076394, - 0.071552, - -0.045029, - 0.063443, - -0.0109, - -0.0044145, - 0.032803, - -0.0089179, - -0.056368, - 0.071333, - -0.064582, - 0.0012534, - 0.078241, - -0.042494, - 0.065735, - -0.024134, - 0.030005, - -0.057028, - 0.047792, - 0.031589, - -0.033533, - -0.066008, - -0.040384, - 0.0089989, - 0.019923, - -0.098257, - -0.037599, - 0.02466, - -0.037063, - -0.02312, - -0.020498, - 0.063147, - -0.042446, - 0.0035995, - -0.0093891, - -0.033798, - -0.051347, - -0.025372 - ], - "mythologies": [ - -0.039153, - -0.056771, - 0.058625, - -0.020922, - -0.031611, - -0.041568, - -0.013342, - -0.070125, - 0.01885, - -0.00034722, - 0.054682, - -0.035229, - -0.015856, - 0.017834, - 0.011452, - -0.03891, - 0.10439, - -0.044062, - 0.028074, - 0.013956, - -0.055543, - 0.037153, - 0.011834, - 0.058327, - -0.00052777, - -0.018116, - 0.0028946, - 0.0079668, - 0.059306, - 0.028616, - 0.0078803, - -0.018209, - 0.025987, - -0.019681, - 0.038788, - 0.0058206, - 0.0016171, - -0.044878, - 0.0016411, - -0.039594, - -0.058665, - -0.07592, - 0.040644, - 0.052272, - -0.010938, - -0.034168, - -0.0050702, - 0.032906, - 0.010124, - -0.065253, - -0.054528, - 0.052837, - -0.016405, - -0.027947, - -0.022656, - 0.087403, - 0.030775, - -0.023489, - -0.017668, - 0.0015726, - -0.012801, - -0.057883, - 0.13622, - -0.070568, - 0.11908, - -0.020072, - -0.064369, - 0.020935, - 0.021426, - -0.016899, - 0.0019578, - 0.0056331, - 0.013624, - -0.00011757, - -0.02707, - 0.0074026, - 0.013575, - 0.00034377, - 0.029763, - -0.023967, - -0.0037257, - 0.01389, - -0.03581, - 0.062569, - 0.043392, - 0.011946, - 0.00042392, - -0.007066, - -0.0059777, - 0.0079241, - -0.012613, - 0.0071558, - -0.040222, - 0.023198, - 0.016577, - 0.055144, - 0.023411, - -0.019367, - 0.030299, - 0.0051373, - 0.033967, - 0.029672, - -0.042959, - 0.0007302, - 0.019789, - 0.010907, - -0.026178, - 0.030448, - -0.017299, - 0.015008, - 0.033947, - 0.0027611, - 0.014149, - -0.05974, - 0.016547, - 0.015703, - -0.0070825, - 0.045981, - -0.027326, - -0.0011485, - -0.030471, - 0.0085596, - -0.046585, - -0.051322, - 0.084277, - 0.067825, - -0.027799, - 0.034905, - -0.020937, - 0.13041, - -0.019037, - 0.055124, - -0.032342, - 0.0044387, - 0.0068699, - 0.0077695, - -0.04329, - 0.032227, - -0.023425, - -0.014097, - -0.001165, - -0.033786, - 0.014573, - 0.062648, - 0.038154, - -0.086471, - -0.02112, - 0.022143, - -0.0014354, - -0.056642, - 0.0077462, - 0.054021, - -0.023119, - 0.047048, - -0.00090584, - -0.020519, - -0.017983, - 0.020397, - 0.016605, - 0.012413, - -0.0095604, - 0.02239, - -0.002456, - 0.0051782, - 0.038392, - -0.052022, - -0.0015126, - 0.048976, - -0.038786, - -0.005681, - -0.025444, - -0.090211, - -0.028421, - -0.04718, - -0.035752, - 0.038389, - 0.022739, - 0.034055, - -0.020707, - -0.0091646, - 0.0093712, - 0.09089, - 0.0045968, - 0.0001431, - 0.035922, - 0.0095515, - 0.028836, - 0.087492, - 0.03403, - 0.0011512, - 0.038779, - 0.085275, - -0.084351, - -0.021326, - 0.0039154, - 0.042517, - -0.047396, - -0.04284, - -0.0079956, - 0.0095748, - -0.10994, - -0.0094121, - -0.01731, - -0.09493, - 0.062867, - 0.063192, - 0.03086, - 0.041313, - 0.03032, - 0.017284, - 0.060986, - 0.012451, - 0.037913, - -0.0064926, - 0.030233, - 0.027485, - -0.0084689, - -0.045394, - -0.067351, - -0.010562, - 0.0041424, - 0.041521, - 0.00092939, - 0.072178, - 0.03664, - 0.01744, - 0.044421, - 0.051185, - 0.025182, - -0.0075389, - -0.011467, - 0.023432, - -0.048693, - -0.0025137, - 0.016133, - 0.059371, - -0.040428, - 0.044472, - 0.063038, - -0.020553, - -0.030461, - 0.0018398, - -0.085061, - -0.0018883, - 0.0017948, - -0.019823, - -0.086747, - -0.023515, - -0.063411, - -0.010342, - 0.017633, - -0.071036, - -0.051914, - 0.023654, - -0.010364, - 0.072923, - -0.067392, - 0.0070333, - 0.050625, - -0.023857, - 0.060877, - 0.0034195, - 0.01042, - -0.010093, - 0.02428, - 0.00029646, - 0.0098862, - -0.0076002, - 0.031591, - -0.016276, - -0.005041, - 0.062614, - -0.071365, - -0.033001, - 0.056449, - -0.022871, - 0.003484, - 0.0076378, - -0.063128, - -0.0055791, - 0.048018, - -0.078871, - 0.019707, - -0.025632, - -0.010052, - 0.0011625, - -0.0033821, - -0.0094572, - -0.026791, - -0.020354, - 0.063293, - -0.0077709, - -0.029436, - -0.069645, - 0.0007281, - 0.023286, - 0.067895, - 0.035955, - -0.020903, - -0.0050024 - ], - "entrepreneurial": [ - -0.002837, - -0.033736, - 0.034502, - -0.0077852, - -0.063669, - 0.013023, - 0.0077606, - -0.057408, - 0.0087231, - 0.036507, - 0.015401, - -0.022315, - -0.034985, - -0.027326, - 0.0025369, - 0.029774, - 0.024782, - -0.012925, - 0.042413, - 0.019863, - 0.017941, - 0.075222, - -0.039415, - 0.065492, - -0.028247, - 0.011168, - -0.0019885, - 0.010282, - 0.020334, - 0.020328, - -0.018902, - -0.025616, - -0.0097257, - -0.035814, - 0.02798, - 0.05598, - 0.045726, - -0.029869, - 0.026848, - 0.031959, - -0.018601, - -0.067824, - 0.0014243, - 0.0096646, - -0.014248, - -0.014657, - 0.025047, - 0.0061368, - 0.0044142, - -0.051601, - 0.0063875, - 0.0030245, - -0.0319, - 0.026032, - 0.018224, - 0.0049322, - 0.011086, - 0.018333, - -0.028348, - 0.033244, - 0.028219, - 0.030242, - 0.072867, - 0.007823, - 0.036494, - -0.011476, - 0.026875, - -0.0079469, - 0.0014039, - -0.057838, - 0.0058974, - -0.032736, - 0.022725, - 0.047586, - 0.0142, - -0.00018775, - -0.030724, - -0.0031173, - -0.010172, - 0.034968, - -0.031443, - 0.01711, - 0.0014174, - 0.035331, - 0.01151, - -0.032728, - -0.04257, - 0.035843, - 0.037784, - -0.0056667, - -0.00043493, - 0.027785, - -0.070921, - -0.0092236, - 0.012409, - 0.041284, - -0.0018278, - -0.025789, - -0.009806, - 0.001844, - 0.027425, - -0.030711, - 0.011017, - -0.029054, - -0.00057018, - -0.063796, - -0.022657, - 0.015018, - -0.019007, - 0.0032628, - -0.025604, - 0.064637, - 0.024164, - 0.009953, - -0.0033092, - -0.0013684, - -0.049424, - -0.013486, - -0.033268, - 0.040007, - -0.027769, - -0.072235, - 0.021143, - -0.036689, - 0.074969, - -0.019149, - 0.02103, - -0.025437, - 0.059622, - 0.035187, - -0.0056993, - 0.02376, - -0.020802, - -0.026231, - 0.016502, - -0.016025, - 0.014418, - 0.047768, - -0.019083, - 0.0056009, - 0.040727, - -0.025447, - -0.0066464, - -0.010718, - -0.0050579, - -0.016896, - 0.017009, - 0.0039221, - -0.017716, - -0.0097281, - 0.038252, - 0.093038, - 0.022214, - -0.011297, - 0.045404, - 0.0084473, - 0.010178, - 0.022226, - -0.0083083, - -0.032065, - 0.035646, - 0.022442, - -0.06698, - 0.063191, - 0.01896, - 0.015509, - -0.0046104, - -0.032214, - -0.0062151, - 0.041223, - 0.01493, - 0.031382, - -0.020452, - 0.0052153, - -0.0067637, - 0.038035, - 0.00056086, - 0.0427, - -0.025731, - -0.00040711, - -0.0037348, - -0.054042, - -0.010179, - -0.026061, - 0.0051919, - -0.045999, - -0.016176, - 0.073932, - -0.011722, - 0.022302, - -0.015077, - 0.031855, - 0.036026, - 0.02548, - -0.014644, - -0.0054696, - 0.031983, - 0.016165, - 0.017441, - -0.033531, - -0.085158, - 0.040816, - 0.0052842, - 0.0022748, - -0.018003, - 0.023826, - 0.0017559, - 0.0054636, - 0.01377, - -0.0048754, - 0.090652, - -0.0073612, - 0.033704, - -0.034228, - 0.011617, - 0.024091, - -0.019867, - -0.022981, - -0.057426, - 0.024158, - -0.0073579, - -0.033018, - -0.027502, - 0.050561, - -0.010577, - -0.0046003, - 0.031829, - 0.045426, - -0.0053496, - -0.0082614, - -0.014098, - -0.010714, - -0.034564, - -0.0085725, - 0.01644, - 0.005489, - 0.029112, - -0.05502, - -0.035048, - 0.022472, - 0.029852, - 0.039023, - 0.049034, - 0.020265, - -0.064176, - -0.05643, - -0.024271, - -0.051119, - 0.01202, - -0.02549, - 0.037916, - -0.0076592, - -0.0089165, - -0.022891, - 0.0097112, - 0.017195, - -0.045588, - 0.020301, - 0.029165, - 0.030401, - 0.016593, - -0.0054476, - 0.029616, - 0.011666, - 0.018427, - 0.049558, - 0.010858, - 0.013952, - 0.0049852, - 0.015878, - -0.037683, - 0.035252, - -0.057254, - -0.026106, - 0.057504, - -0.070456, - 0.019058, - 0.0022532, - -0.030601, - 0.0040912, - 0.10529, - 0.0077699, - -0.015989, - 0.032429, - 0.010959, - 0.0058471, - 0.020071, - -0.047079, - -0.022637, - -0.00081755, - -0.0010384, - 0.028426, - -0.022156, - 0.022139, - -0.057554, - 0.0060039, - -0.015429, - 0.014906, - -0.011176, - -0.035409 - ], - "sexuality": [ - 0.0487, - -0.058327, - 0.082138, - 0.058464, - 0.00027517, - 0.082058, - 0.016077, - -0.056192, - 0.072933, - 0.039349, - 0.012698, - -0.055076, - 0.071924, - -0.01188, - -0.048809, - -0.089815, - 0.068862, - 0.020561, - 0.011292, - 0.046855, - 0.06398, - 0.0069608, - 0.091042, - 0.05354, - -0.010512, - 0.0011389, - -0.010219, - 0.0061579, - 0.04919, - 0.0060112, - -0.00075219, - 0.069958, - -0.014181, - -0.043075, - -0.0039109, - 0.04825, - 0.0079544, - -0.024254, - -0.039794, - 0.063693, - 0.011767, - -0.087063, - -0.017891, - -0.016158, - 0.013383, - -0.034897, - 0.049574, - -0.011111, - -0.033761, - -0.029292, - 0.0079306, - -0.054468, - 0.036062, - 0.042215, - -0.065911, - 0.031583, - -0.0073518, - -0.026183, - -0.026617, - 0.00022894, - -0.027854, - -0.050913, - 0.047815, - -0.0083482, - 0.076467, - 0.016152, - 0.006177, - -0.024651, - 0.0047802, - -0.014571, - 0.060003, - 0.067473, - 0.0098021, - 0.02913, - -0.017741, - -0.0084977, - 0.046248, - -0.0016238, - 0.030258, - 0.032648, - -0.011756, - -0.0049464, - -0.070312, - 0.062177, - -0.037599, - 0.020065, - -0.0013737, - -0.0026373, - 0.0019685, - -0.0099564, - -0.00094154, - 0.024984, - -0.073505, - 0.04454, - 0.01836, - 0.050877, - 0.049942, - 0.065725, - 0.025547, - 0.049294, - -0.016973, - 0.077288, - -0.0063693, - -0.05359, - -0.015333, - -0.067553, - 0.028535, - 0.0075368, - -0.043685, - -0.021187, - 0.0024805, - 0.065643, - 0.039478, - -0.037682, - -0.024293, - 0.0058183, - 0.026612, - 0.05212, - -0.053979, - 0.079234, - 0.051404, - 0.027845, - 0.056244, - -0.053958, - 0.05493, - -0.0076433, - -0.011431, - -0.067085, - 0.017232, - 0.10711, - -0.068881, - -0.090568, - 0.056907, - -0.03305, - -0.024173, - -0.031075, - -0.057775, - 0.019946, - 0.047332, - 0.0068708, - 0.034526, - 0.011097, - 0.0016308, - 0.094486, - 0.022871, - -0.066467, - -0.049763, - -0.031051, - 0.048069, - -0.028656, - 0.037617, - 0.068228, - 0.0043744, - -0.061091, - -0.011978, - 0.051108, - 0.015537, - -0.013889, - 0.074087, - 0.0012546, - 0.039296, - 0.036824, - -0.13738, - 0.006586, - -0.056545, - -0.0017907, - 0.035632, - 0.062453, - -0.030995, - -0.097364, - -0.0093517, - -0.060163, - -0.024747, - -0.024253, - 0.038296, - 0.059039, - 0.031023, - 0.051608, - 0.016345, - -0.036111, - 0.056673, - 0.030387, - -0.0032004, - 0.027942, - 0.05909, - -0.082199, - 0.0054643, - 0.094442, - -0.030615, - 0.073702, - 0.022898, - 0.071188, - -0.017042, - -0.0037553, - 0.043969, - -0.053912, - 0.0037415, - -0.037433, - -0.0017291, - -0.011952, - -0.1484, - 0.020316, - 0.018065, - -0.087588, - 0.045861, - 0.048082, - 0.020349, - -0.028237, - 0.03477, - 0.0037341, - 0.094604, - 0.025302, - 0.023578, - 0.056428, - 0.082722, - 0.050412, - 0.0060731, - -0.0063021, - -0.038734, - -0.012588, - -0.027895, - -0.049925, - -0.022518, - 0.080903, - 0.014757, - -0.04867, - 0.044853, - 0.053026, - -0.01038, - -0.06198, - -0.011105, - -0.04394, - -0.12834, - -0.064179, - 0.056721, - 0.038563, - 0.023712, - 0.0036156, - 0.03515, - -0.075213, - 0.0042598, - -0.047184, - -0.051606, - -0.014325, - 0.0028074, - 0.058781, - -0.057266, - -0.088581, - -0.021876, - -0.016416, - 0.037586, - -0.040272, - -0.07239, - -0.07479, - 0.036998, - -0.020408, - -0.031176, - 0.014369, - 0.085717, - -0.046103, - 0.0017445, - -0.015936, - -0.0093449, - -0.007842, - 0.0092543, - -0.033746, - -0.0027829, - 0.0065844, - 0.065475, - 0.0031014, - 0.093158, - 0.057175, - -0.088074, - -0.015268, - 0.015842, - -0.052791, - -0.031508, - 0.0052995, - -0.064812, - 0.0067508, - 0.084809, - 0.030283, - 0.02794, - -0.053408, - 0.013043, - 0.022403, - 0.0038223, - 0.05729, - 0.005435, - 0.024864, - 0.0058448, - -0.020281, - -0.083699, - -0.026562, - -0.016879, - 0.11894, - 0.003776, - 0.058232, - 0.024572, - -0.028467 - ], - "residence": [ - 0.0055221, - -0.086186, - 0.032581, - 0.004309, - -0.022804, - -0.016205, - -0.0037283, - -0.074838, - 0.069547, - 0.019441, - -0.0096862, - -0.061458, - 0.049078, - 0.0077513, - -0.016827, - 0.047121, - 0.050012, - -0.010429, - 0.0080918, - 0.060461, - 0.017049, - -0.045015, - 0.032773, - 0.061435, - 0.028472, - 0.028474, - -0.041094, - 0.052134, - -0.040806, - 0.031943, - -0.020802, - 0.013247, - -0.067274, - -0.038841, - -0.074775, - 0.049927, - 0.0013864, - -0.019547, - -0.028368, - 0.042256, - -0.0073429, - -0.090241, - 0.044896, - -0.037432, - -0.029516, - -0.000066199, - -0.017859, - -0.016966, - -0.047316, - 0.086247, - -0.014101, - 0.0054767, - -0.029252, - 0.025714, - -0.083939, - -0.00082751, - 0.02583, - 0.020298, - -0.02365, - -0.062226, - 0.049278, - 0.01765, - 0.11911, - 0.033814, - 0.034574, - -0.016072, - -0.021349, - -0.033104, - -0.032193, - -0.0018735, - 0.028173, - 0.0050309, - 0.010086, - -0.036776, - 0.05937, - 0.017357, - -0.0059566, - 0.0066865, - -0.02176, - 0.033716, - -0.015675, - 0.024345, - 0.044667, - 0.030477, - -0.069967, - -0.033191, - -0.020833, - -0.027283, - 0.0095169, - 0.025666, - 0.026071, - 0.01727, - -0.080536, - -0.017812, - 0.037527, - 0.086669, - -0.02144, - 0.042919, - 0.025171, - 0.014123, - 0.12546, - 0.030388, - 0.057614, - -0.010791, - 0.0022162, - -0.057698, - -0.026708, - 0.010385, - 0.037209, - -0.019766, - -0.01563, - 0.035739, - 0.052293, - 0.038173, - 0.010355, - -0.023877, - 0.023746, - -0.06026, - 0.0097356, - 0.0018335, - 0.011156, - 0.034652, - 0.055727, - -0.001412, - 0.0099739, - 0.014072, - 0.023902, - -0.10089, - 0.01078, - 0.058366, - 0.063095, - -0.021232, - 0.026513, - -0.052346, - -0.019816, - 0.05497, - -0.005966, - 0.017874, - -0.0029151, - -0.042566, - 0.029652, - -0.027898, - 0.05555, - 0.021624, - 0.065056, - 0.01673, - 0.0058175, - 0.043379, - -0.012043, - -0.01459, - -0.010691, - 0.0044076, - -0.02901, - -0.097839, - 0.048437, - 0.018447, - -0.0090541, - 0.057935, - 0.0042966, - 0.034351, - 0.024001, - 0.028672, - -0.019284, - 0.012779, - 0.033545, - 0.008451, - 0.026552, - -0.067184, - -0.0023756, - 0.025334, - 0.036428, - 0.021965, - 0.022019, - 0.031781, - -0.0078243, - 0.040888, - -0.007059, - -0.0053767, - -0.023668, - 0.029083, - 0.049811, - 0.049659, - 0.034411, - 0.0028356, - -0.026667, - -0.04935, - -0.023352, - 0.070941, - 0.059553, - -0.036175, - 0.052171, - 0.077431, - -0.024486, - 0.046196, - -0.0021568, - 0.0096158, - 0.045807, - 0.063696, - 0.028108, - 0.0043644, - -0.14104, - 0.07297, - -0.021239, - -0.035692, - -0.017384, - -0.045559, - -0.0024426, - -0.0041139, - -0.058537, - -0.029301, - 0.11404, - -0.031167, - -0.045842, - 0.013365, - -0.030327, - 0.017988, - -0.0022312, - 0.031073, - 0.037342, - -0.057772, - 0.0050029, - -0.021867, - 0.016031, - 0.091101, - 0.05281, - 0.0017356, - -0.039185, - 0.058027, - -0.027053, - -0.0090469, - -0.020364, - -0.028981, - -0.038755, - -0.049969, - -0.029611, - -0.02133, - 0.014752, - -0.0049911, - -0.033034, - 0.0051557, - 0.066809, - -0.028577, - 0.02844, - 0.02148, - 0.014525, - 0.0093577, - -0.011986, - -0.062244, - -0.027195, - 0.030093, - -0.071013, - -0.012992, - -0.035965, - -0.060261, - 0.06098, - -0.06612, - -0.029298, - 0.019059, - 0.03752, - -0.0099074, - 0.00068691, - -0.067277, - -0.039136, - -0.0016957, - 0.034442, - -0.0181, - 0.0099856, - 0.016972, - -0.018279, - -0.043027, - -0.063185, - 0.062602, - -0.10212, - -0.034463, - 0.051074, - 0.0000072709, - 0.06889, - -0.044881, - 0.014476, - 0.036785, - 0.063265, - -0.0075667, - -0.024045, - -0.0080271, - 0.022603, - 0.062703, - -0.045063, - -0.046483, - -0.021266, - 0.016058, - 0.023894, - 0.042716, - 0.012971, - 0.033274, - -0.032696, - 0.062219, - -0.0056658, - 0.014211, - -0.022886, - 0.031164 - ], - "curricula": [ - 0.0043017, - -0.02955, - -0.019027, - 0.055799, - 0.047769, - -0.025249, - -0.016389, - -0.064218, - -0.021579, - 0.0026038, - 0.0039961, - -0.081759, - -0.012271, - 0.038501, - 0.029637, - 0.034466, - 0.093763, - 0.060068, - 0.032272, - 0.035387, - -0.01853, - -0.013951, - 0.04141, - 0.067222, - -0.057227, - -0.017907, - -0.029892, - 0.015039, - 0.023929, - -0.0074936, - 0.060373, - -0.053708, - 0.018809, - -0.03022, - 0.099799, - 0.060545, - 0.039356, - -0.0052174, - -0.01073, - -0.00016904, - 0.0045258, - -0.089116, - 0.02464, - 0.0068916, - 0.03376, - -0.064796, - 0.034453, - 0.019069, - 0.013089, - -0.0059209, - -0.073821, - 0.0075206, - -0.021068, - 0.069139, - -0.083815, - 0.073934, - 0.012957, - 0.019904, - 0.017746, - 0.042512, - 0.004099, - 0.0096356, - 0.15204, - 0.099987, - 0.070951, - -0.029404, - -0.030072, - -0.0057494, - 0.019495, - -0.03753, - -0.0071193, - -0.053318, - -0.020691, - 0.024544, - 0.033989, - -0.065309, - 0.052096, - -0.010911, - 0.081161, - 0.014292, - 0.016621, - -0.029216, - -0.052526, - 0.045448, - -0.040926, - 0.043708, - -0.025895, - -0.015619, - -0.035985, - 0.031091, - 0.04319, - 0.042107, - -0.062593, - 0.016686, - -0.013491, - 0.054222, - 0.086047, - 0.0036379, - -0.030605, - 0.0027809, - 0.044496, - 0.046443, - 0.040287, - -0.054882, - 0.00021387, - -0.033037, - 0.041063, - -0.015488, - -0.029492, - 0.034195, - 0.029476, - 0.0055724, - 0.038494, - 0.028151, - 0.0089313, - -0.030395, - -0.016748, - 0.00082561, - -0.029404, - -0.01802, - 0.0033964, - -0.053925, - -0.014389, - -0.026696, - 0.020238, - 0.038938, - -0.088819, - 0.031261, - -0.022566, - 0.087828, - -0.03834, - -0.0026049, - 0.010103, - 0.041925, - 0.0026497, - 0.035742, - 0.03227, - 0.0126, - 0.058004, - -0.04877, - 0.0080167, - -0.038656, - -0.029289, - 0.0017255, - 0.018353, - -0.024713, - -0.015282, - -0.029123, - -0.018599, - 0.024647, - 0.028479, - 0.059356, - 0.023138, - -0.046283, - 0.037766, - 0.042144, - 0.01012, - 0.026244, - 0.023798, - -0.009438, - 0.059568, - 0.024633, - -0.025536, - 0.010868, - 0.0090992, - -0.022577, - 0.068892, - 0.013356, - 0.0029244, - -0.062518, - -0.0073733, - -0.0084245, - -0.029319, - -0.0082419, - -0.020792, - 0.031724, - -0.047328, - 0.071084, - -0.049338, - -0.022654, - 0.051946, - -0.0076566, - -0.01151, - -0.004627, - 0.023267, - -0.015237, - 0.055357, - 0.098258, - 0.0036572, - 0.020725, - -0.037969, - 0.056179, - -0.0075795, - -0.069785, - 0.069611, - -0.0034823, - 0.027343, - 0.023941, - 0.01872, - -0.039862, - -0.12846, - -0.017962, - 0.0098283, - 0.012538, - 0.0040804, - -0.057514, - -0.010573, - 0.0025592, - -0.02247, - -0.016542, - 0.077998, - 0.028267, - 0.05137, - 0.036353, - -0.0000074659, - -0.038629, - 0.0042141, - -0.026413, - -0.062313, - -0.018705, - -0.068791, - 0.0064166, - 0.041747, - 0.061536, - 0.010306, - -0.036782, - 0.066521, - 0.0048926, - 0.046637, - 0.00036495, - 0.017793, - -0.023452, - -0.056042, - 0.02506, - 0.032865, - 0.050061, - 0.0079233, - 0.043109, - -0.071515, - 0.016421, - 0.016667, - 0.0032739, - 0.029731, - 0.0081053, - 0.035258, - 0.083731, - -0.032921, - -0.0519, - -0.038082, - 0.040736, - 0.033704, - -0.038048, - -0.037294, - -0.081356, - -0.039679, - 0.049103, - 0.011355, - 0.011998, - 0.075034, - 0.01119, - 0.025649, - -0.054086, - 0.0067578, - -0.055805, - 0.03714, - 0.021622, - -0.0081611, - -0.012251, - 0.01639, - 0.048838, - 0.050352, - 0.043233, - -0.08918, - -0.046096, - -0.0094673, - -0.0026594, - -0.049023, - 0.025512, - -0.0070441, - 0.014515, - 0.046448, - 0.036467, - 0.098982, - -0.014878, - 0.00042137, - 0.026143, - -0.0095128, - 0.04593, - -0.014435, - -0.014124, - -0.048054, - -0.023669, - 0.022579, - -0.022087, - -0.001634, - 0.031412, - 0.030486, - -0.0014729, - 0.024145, - -0.02937 - ], - "stepfather": [ - -0.020843, - 0.0091219, - 0.023583, - 0.016065, - 0.034338, - 0.019286, - 0.014036, - -0.059018, - -0.015755, - 0.015802, - 0.033005, - 0.037599, - 0.019515, - 0.025998, - -0.028876, - 0.0015306, - 0.04391, - -0.041027, - -0.02304, - 0.069496, - 0.0047166, - -0.02815, - -0.031131, - 0.044793, - -0.024471, - 0.04682, - 0.0080602, - -0.0096291, - 0.024311, - 0.046847, - 0.014076, - -0.025988, - -0.015909, - -0.0069466, - -0.038732, - 0.018267, - -0.057484, - -0.031483, - 0.0023135, - -0.033563, - -0.023025, - -0.055223, - 0.040351, - -0.027867, - -0.05423, - 0.064135, - -0.015306, - 0.0061457, - 0.010278, - 0.0026964, - 0.020468, - -0.003535, - 0.010484, - 0.043027, - 0.037983, - -0.043502, - -0.0058134, - -0.068813, - -0.07808, - -0.036326, - -0.0084031, - 0.005817, - 0.064436, - -0.010755, - -0.015215, - -0.049881, - 0.03398, - -0.06302, - -0.033785, - -0.070661, - 0.00079788, - 0.012261, - 0.067294, - -0.031725, - 0.0036005, - 0.021559, - 0.0084409, - 0.019585, - 0.053737, - -0.024725, - 0.00030943, - 0.044717, - -0.037724, - 0.0057205, - -0.0028295, - 0.018352, - 0.037051, - 0.039263, - 0.016945, - 0.010966, - -0.01607, - -0.018736, - -0.088473, - -0.057932, - 0.0025006, - 0.12172, - -0.017256, - 0.0081058, - -0.0067277, - -0.0043915, - 0.040263, - -0.028944, - -0.021406, - -0.050565, - -0.046416, - -0.073682, - -0.021312, - -0.018305, - -0.019591, - 0.025897, - -0.029206, - 0.036445, - 0.041302, - -0.0087104, - 0.0008138, - -0.0028299, - 0.021968, - -0.0031688, - 0.019293, - 0.0038267, - -0.037206, - 0.011169, - -0.031368, - -0.053439, - 0.067083, - -0.034019, - -0.025475, - -0.04217, - -0.021575, - 0.033968, - -0.022743, - 0.020424, - -0.024471, - -0.00084079, - -0.034866, - 0.025191, - -0.0021511, - 0.055736, - 0.051687, - -0.02037, - -0.0012215, - 0.012548, - -0.0051343, - 0.001717, - -0.0015552, - 0.023023, - 0.033455, - 0.022163, - -0.018092, - -0.049632, - -0.0091289, - 0.0075025, - -0.056762, - -0.036859, - -0.0082666, - -0.00028755, - 0.035438, - -0.0044732, - 0.091158, - -0.024309, - 0.018364, - 0.013609, - -0.028364, - -0.021532, - 0.013577, - -0.014893, - 0.013836, - 0.015189, - 0.0097269, - -0.019929, - -0.046007, - -0.018664, - -0.021903, - 0.021785, - 0.04574, - 0.023949, - 0.026714, - 0.038041, - -0.026525, - -0.054234, - 0.043205, - -0.061739, - -0.0058051, - 0.0042906, - 0.027743, - -0.042009, - -0.026024, - 0.0824, - 0.067454, - 0.0043482, - -0.029716, - 0.11317, - -0.066803, - 0.0102, - 0.0037765, - 0.014307, - 0.034925, - 0.03897, - 0.055549, - 0.025461, - -0.11348, - 0.050543, - -0.028283, - -0.06762, - 0.043502, - 0.055627, - -0.024671, - -0.028163, - 0.00099334, - -0.052731, - 0.089277, - 0.039385, - 0.035005, - -0.04412, - -0.080706, - -0.034624, - -0.022153, - -0.04665, - -0.02885, - -0.0082167, - 0.04485, - -0.024598, - 0.029847, - 0.088901, - 0.067407, - -0.030486, - -0.049213, - 0.0225, - -0.05866, - -0.034437, - 0.0033462, - -0.020313, - -0.041963, - 0.017279, - -0.019231, - 0.041443, - 0.0084431, - 0.015876, - 0.0060484, - -0.010887, - 0.06879, - -0.059265, - 0.028051, - 0.0029688, - 0.034204, - 0.0023823, - -0.049718, - -0.06582, - 0.020542, - 0.028452, - 0.021371, - -0.026029, - -0.0025543, - 0.024673, - 0.090286, - -0.054633, - 0.037179, - 0.0086436, - -0.032956, - -0.033433, - -0.0067065, - -0.040487, - 0.016505, - 0.03434, - 0.036971, - -0.0466, - -0.043787, - 0.025049, - 0.028579, - -0.030175, - -0.093557, - 0.059312, - -0.076717, - -0.017546, - 0.063329, - 0.0047094, - -0.0022494, - 0.0099653, - 0.027058, - 0.035272, - 0.045443, - 0.018826, - 0.01751, - -0.016809, - -0.00011883, - 0.075215, - -0.036698, - -0.091351, - 0.0016429, - 0.00084902, - -0.027604, - 0.027984, - -0.011275, - 0.030716, - -0.053295, - 0.0057997, - 0.040881, - 0.015698, - -0.0055574, - -0.034743 - ], - "mythology": [ - -0.058282, - -0.054364, - 0.052306, - -0.0028012, - -0.032193, - -0.082422, - -0.022604, - -0.094736, - 0.024171, - 0.010776, - 0.037186, - -0.041833, - 0.00064094, - 0.0044532, - -0.0099022, - -0.024197, - 0.10798, - -0.06563, - 0.016288, - 0.069199, - -0.025886, - 0.025529, - 0.016339, - 0.056442, - 0.029717, - -0.014617, - -0.00099421, - 0.0054669, - 0.020194, - 0.048228, - 0.0042739, - -0.0058151, - 0.01726, - -0.032312, - 0.023346, - -0.009669, - 0.016489, - -0.052243, - 0.019552, - -0.070642, - -0.038237, - -0.087517, - 0.071991, - 0.061608, - -0.010795, - -0.01279, - -0.004277, - 0.022861, - -0.0016576, - -0.029958, - -0.0025808, - 0.036842, - -0.031574, - -0.029409, - -0.016623, - 0.08221, - 0.036757, - -0.021087, - -0.025903, - 0.013309, - -0.005087, - -0.062949, - 0.063498, - -0.043912, - 0.088665, - -0.020813, - -0.044114, - 0.04691, - 0.035289, - -0.017077, - -0.018678, - 0.045047, - -0.024556, - 0.021848, - -0.036505, - -0.021097, - -0.0019321, - 0.007864, - 0.046336, - -0.036438, - -0.028045, - 0.042118, - -0.040303, - 0.081388, - -0.0079441, - 0.012939, - -0.0034693, - -0.018696, - 0.031018, - -0.020911, - 0.013265, - 0.043334, - -0.064404, - 0.031039, - 0.042369, - 0.081074, - 0.0070518, - 0.015496, - 0.0173, - 0.0073658, - 0.050278, - 0.018088, - -0.00049098, - -0.006219, - -0.032482, - -0.068152, - -0.0056167, - 0.055645, - -0.018487, - 0.0201, - 0.01489, - 0.034379, - 0.027617, - -0.074391, - 0.0042719, - 0.052319, - -0.011365, - 0.023906, - -0.014079, - -0.0050262, - -0.050055, - 0.025008, - -0.069239, - -0.072243, - 0.065954, - 0.085762, - -0.031414, - -0.0086211, - -0.040665, - 0.16164, - -0.013132, - -0.014425, - -0.035635, - 0.020159, - 0.022085, - -0.025463, - -0.04462, - 0.025065, - 0.027857, - -0.038502, - 0.0055048, - -0.052878, - 0.021935, - 0.064196, - -0.015226, - -0.099471, - -0.028363, - 0.014638, - -0.029987, - -0.10435, - 0.030225, - 0.035316, - -0.028756, - 0.016082, - -0.027948, - 0.034416, - 0.0019197, - 0.015244, - 0.017233, - 0.028436, - -0.015538, - 0.036538, - -0.082722, - 0.017453, - 0.048756, - -0.040611, - 0.0089914, - 0.066067, - -0.028196, - 0.0079877, - -0.02465, - -0.13247, - -0.038802, - -0.043129, - 0.033999, - 0.041857, - 0.039432, - 0.063759, - -0.028327, - -0.0030083, - -0.024797, - 0.091242, - -0.012869, - -0.000051077, - 0.049511, - 0.0085418, - 0.005939, - 0.099537, - 0.037626, - -0.014627, - 0.021357, - 0.091993, - -0.040761, - -0.036564, - -0.027461, - 0.056668, - -0.062019, - -0.037784, - -0.033646, - -0.015802, - -0.13805, - -0.037785, - -0.039167, - -0.1111, - 0.044869, - 0.079925, - -0.0037651, - 0.004601, - 0.0056517, - 0.0013026, - 0.10607, - 0.014161, - -0.000097564, - -0.023497, - 0.042802, - 0.037336, - -0.0076263, - -0.02049, - -0.016914, - -0.001901, - 0.019193, - 0.029283, - -0.0082035, - 0.091437, - -0.01128, - -0.0033445, - 0.082463, - 0.054262, - 0.038778, - -0.019887, - -0.025625, - -0.020666, - -0.041811, - -0.016862, - 0.01039, - 0.050713, - -0.076059, - 0.0082685, - 0.035294, - -0.071386, - 0.054527, - 0.0028189, - -0.062527, - -0.018676, - 0.023573, - -0.02809, - -0.088727, - -0.032955, - -0.070313, - -0.013577, - 0.087574, - -0.065108, - -0.053938, - 0.024028, - 0.0058935, - 0.04176, - -0.076792, - 0.011146, - 0.07167, - -0.019672, - 0.072947, - -0.010449, - 0.015669, - 0.0093514, - 0.041809, - 0.0056984, - -0.011288, - -0.0010062, - 0.063969, - -0.00095819, - 0.022613, - 0.079423, - -0.089102, - -0.022491, - 0.011475, - -0.036298, - 0.014259, - -0.018629, - -0.053175, - -0.014918, - 0.075671, - -0.063334, - 0.042815, - -0.017652, - -0.048777, - -0.0059417, - 0.038955, - 0.0016232, - -0.040978, - -0.0225, - 0.056248, - -0.014288, - -0.0015014, - -0.047097, - 0.0041314, - 0.032585, - 0.054393, - 0.039577, - 0.00045664, - 0.011692 - ], - "small-business": [ - -0.0039765, - -0.032468, - 0.017718, - -0.047749, - -0.090454, - 0.0024351, - -0.0029713, - -0.063237, - 0.030278, - 0.060936, - 0.010542, - -0.02932, - -0.060065, - -0.023659, - -0.051757, - 0.0083785, - 0.047614, - 0.026399, - 0.044884, - -0.0032756, - 0.0024049, - -0.0056298, - 0.0062444, - 0.05239, - 0.021494, - -0.016674, - 0.055121, - 0.045337, - 0.01845, - -0.019886, - -0.024585, - -0.044415, - -0.017789, - -0.042516, - 0.03333, - 0.061024, - 0.041163, - 0.013233, - 0.047061, - -0.0043758, - -0.029502, - -0.091321, - -0.023594, - 0.057138, - -0.019975, - 0.016903, - 0.0014226, - 0.037907, - 0.014246, - -0.02816, - 0.014237, - -0.027429, - 0.0077786, - 0.02912, - 0.016464, - -0.0089173, - -0.023235, - 0.021387, - -0.034885, - 0.01457, - -0.0059817, - 0.015233, - 0.070735, - -0.0075759, - 0.045587, - -0.017873, - -0.035715, - -0.0074177, - -0.017806, - -0.034071, - -0.056797, - 0.008855, - 0.034105, - -0.0032422, - -0.0011429, - 0.016982, - -0.018499, - -0.032063, - -0.0098933, - 0.032378, - 0.004043, - 0.028723, - 0.016761, - 0.011856, - -0.055498, - -0.042438, - -0.059082, - 0.010672, - 0.04891, - 0.034638, - 0.031619, - 0.052072, - -0.073696, - 0.0074377, - -0.0076378, - 0.035491, - -0.026401, - -0.04892, - -0.016756, - -0.0060603, - 0.0051952, - -0.044197, - -0.012943, - -0.030324, - 0.0085778, - -0.054755, - 0.016872, - 0.022168, - 0.011013, - -0.052552, - -0.028232, - 0.085286, - -0.0032793, - 0.010621, - 0.015578, - 0.020786, - -0.023151, - -0.008752, - -0.044658, - 0.0051251, - -0.09017, - -0.0000089971, - 0.025089, - -0.014589, - 0.071379, - -0.008767, - -0.0050615, - -0.061517, - 0.040245, - 0.054714, - 0.021542, - 0.021995, - -0.012028, - 0.021974, - -0.0013887, - -0.0033754, - 0.058336, - 0.027461, - -0.042137, - -0.0019623, - 0.043723, - 0.0096021, - -0.040959, - -0.03732, - -0.030291, - -0.030968, - -0.014339, - 0.011376, - -0.016584, - -0.0038505, - 0.038511, - 0.11753, - 0.019846, - -0.014737, - 0.0464, - -0.025655, - 0.032547, - 0.023479, - -0.018146, - 0.0070875, - 0.052305, - 0.050197, - -0.039352, - 0.036722, - 0.042095, - -0.050445, - -0.023637, - -0.049688, - -0.017967, - 0.074811, - -0.0066874, - 0.012097, - -0.016895, - 0.064691, - -0.014109, - 0.036951, - -0.016334, - -0.022471, - -0.011318, - 0.0081868, - 0.0092319, - -0.036961, - 0.013829, - 0.013933, - -0.0074838, - -0.014379, - -0.015968, - 0.083582, - -0.044627, - -0.003498, - -0.058815, - 0.036126, - 0.068999, - -0.0076162, - 0.013734, - 0.016168, - -0.0065721, - -0.044375, - 0.0069919, - -0.050068, - -0.084911, - 0.048939, - 0.012045, - -0.0093774, - 0.008964, - 0.0055824, - -0.040118, - 0.019316, - 0.016471, - -0.0086942, - 0.11634, - -0.020123, - -0.0066632, - -0.033845, - -0.033165, - 0.022145, - 0.031946, - -0.008593, - 0.037741, - 0.028812, - 0.063106, - -0.040265, - 0.018566, - 0.050245, - -0.019421, - -0.039082, - 0.0042072, - 0.0057467, - 0.01601, - -0.050711, - -0.00086481, - -0.017519, - -0.016931, - -0.00053556, - 0.036795, - -0.0003799, - -0.013813, - -0.02211, - -0.021899, - 0.01775, - 0.0050507, - 0.022821, - 0.053543, - -0.0524, - -0.081902, - 0.0040047, - 0.026817, - -0.032171, - 0.037087, - -0.020646, - 0.008245, - -0.0073163, - -0.034791, - 0.010352, - 0.012368, - -0.027587, - -0.048201, - -0.0037863, - -0.02364, - -0.015949, - 0.029049, - 0.0098104, - 0.01573, - 0.029695, - 0.0045594, - 0.0086515, - -0.037039, - 0.015058, - 0.042591, - 0.0070501, - -0.05113, - 0.046705, - -0.070438, - -0.0030127, - 0.03366, - -0.062844, - -0.041634, - 0.014659, - 0.00046668, - -0.035456, - 0.093889, - 0.044514, - 0.030967, - 0.066723, - -0.003088, - 0.010603, - -0.0012069, - -0.042453, - -0.051792, - -0.02472, - -0.0027477, - 0.0085867, - 0.01746, - 0.010916, - -0.026935, - -0.032999, - -0.01948, - 0.013902, - -0.023187, - -0.0015955 - ], - "enforces": [ - 0.0082215, - 0.012121, - 0.078736, - 0.00097681, - -0.045585, - -0.090094, - 0.045571, - -0.10875, - -0.034886, - 0.054634, - 0.03338, - -0.16015, - 0.019732, - -0.027267, - -0.037818, - 0.061428, - 0.13349, - 0.047467, - 0.10202, - 0.074565, - -0.006242, - -0.012083, - 0.029304, - 0.055525, - 0.021108, - 0.044828, - -0.019785, - -0.049977, - 0.088819, - 0.008549, - -0.0024698, - -0.071648, - 0.0041018, - -0.047945, - -0.069018, - 0.037235, - -0.006922, - 0.020649, - -0.016158, - -0.060212, - 0.044889, - -0.14425, - -0.035458, - 0.050708, - -0.048324, - 0.0017082, - 0.050993, - 0.0025011, - -0.011124, - -0.071903, - -0.015977, - -0.018072, - 0.094609, - -0.0034166, - -0.015983, - -0.010419, - 0.041327, - 0.068492, - -0.0076889, - 0.0049669, - -0.0031183, - -0.030774, - 0.088329, - 0.028988, - -0.043309, - -0.028502, - -0.0144, - -0.029476, - 0.13826, - -0.00078648, - 0.11166, - 0.0056401, - -0.013173, - -0.02989, - -0.016883, - -0.011672, - 0.075015, - -0.044612, - 0.012275, - 0.0034146, - 0.072533, - 0.03216, - -0.028569, - 0.091906, - -0.017198, - 0.005785, - 0.0050764, - -0.041254, - 0.10529, - -0.023271, - 0.10065, - -0.069089, - -0.041624, - 0.052785, - 0.0036801, - -0.02503, - -0.031246, - -0.021356, - 0.10975, - 0.0006924, - 0.019205, - 0.01782, - -0.039297, - 0.01921, - -0.0044317, - -0.061331, - 0.0092078, - 0.00078328, - -0.052829, - -0.036617, - 0.02842, - 0.067979, - 0.081125, - -0.004428, - -0.017497, - -0.0094105, - -0.080152, - 0.054658, - -0.021224, - 0.044742, - 0.0066812, - 0.0035406, - 0.045246, - 0.067634, - 0.087748, - -0.06247, - 0.031195, - -0.063892, - -0.022176, - 0.16106, - -0.010118, - -0.0030997, - 0.005787, - -0.020049, - -0.0036605, - -0.11648, - -0.018146, - 0.01711, - -0.031433, - -0.046301, - 0.035323, - -0.017935, - 0.062174, - 0.0017281, - -0.040262, - 0.011637, - -0.057606, - 0.02699, - -0.052763, - -0.036402, - 0.051099, - 0.014709, - 0.014591, - -0.060518, - 0.005277, - 0.092354, - -0.036474, - -0.029621, - -0.0054227, - 0.029401, - 0.059744, - -0.048116, - -0.11934, - -0.060425, - 0.012787, - -0.034361, - -0.0068494, - 0.010609, - -0.028632, - -0.00071223, - -0.067467, - -0.009896, - 0.0090695, - 0.042926, - -0.083471, - 0.019388, - -0.060767, - 0.01322, - -0.044537, - -0.052164, - -0.016501, - -0.0169, - -0.014012, - 0.063268, - -0.0017474, - -0.044693, - 0.060057, - 0.11399, - 0.0511, - -0.009077, - -0.04168, - 0.053159, - -0.11667, - 0.02516, - 0.060916, - -0.029766, - 0.092353, - 0.0082923, - -0.011217, - -0.024785, - -0.19903, - -0.092983, - 0.01977, - -0.032163, - 0.032885, - 0.0049914, - -0.0041112, - -0.0050398, - 0.047029, - -0.068569, - 0.056656, - 0.040389, - -0.032625, - 0.05539, - 0.0088655, - -0.023158, - 0.035828, - 0.053171, - -0.028354, - -0.053695, - 0.069611, - -0.012615, - -0.020835, - 0.096817, - 0.14149, - -0.022392, - 0.014653, - 0.0644, - -0.033561, - 0.0049392, - -0.052563, - -0.048215, - -0.091925, - -0.033566, - 0.0086318, - -0.03922, - -0.014548, - 0.023811, - 0.065145, - 0.055502, - 0.066306, - 0.028847, - 0.042993, - 0.010821, - -0.014196, - 0.041163, - 0.0078922, - -0.11059, - 0.023184, - -0.033285, - 0.035927, - 0.01682, - -0.016085, - 0.033268, - 0.0756, - 0.014119, - 0.065436, - 0.038754, - -0.0055747, - -0.04832, - 0.011062, - -0.0082758, - -0.026696, - 0.0010985, - 0.012662, - 0.0034973, - 0.086667, - 0.015405, - 0.027325, - -0.0097134, - -0.0021866, - 0.063324, - -0.10306, - -0.043806, - -0.020429, - 0.052043, - -0.0034071, - -0.023748, - -0.038735, - -0.030291, - 0.038357, - 0.0035444, - -0.022057, - -0.029776, - -0.017149, - 0.064675, - -0.04706, - 0.041903, - 0.054949, - 0.010667, - -0.01329, - -0.024124, - 0.12366, - -0.032388, - -0.0091744, - -0.033238, - -0.0064045, - -0.026779, - -0.052586, - -0.025326 - ], - "drug-dealing": [ - 0.026217, - 0.0028042, - -0.0033487, - 0.013602, - -0.027453, - 0.0072636, - 0.024585, - -0.065598, - -0.0028517, - 0.051403, - 0.025931, - -0.033599, - 0.023936, - -0.019186, - -0.0080818, - -0.032998, - 0.077065, - 0.027416, - 0.043565, - 0.023417, - 0.051245, - 0.021414, - -0.0093335, - 0.003182, - 0.042545, - 0.018124, - 0.056606, - 0.010814, - -0.010063, - 0.059671, - -0.031369, - 0.0081827, - -0.020406, - -0.040942, - 0.043739, - 0.017454, - 0.0070661, - 0.029584, - -0.015082, - -0.0023491, - -0.049423, - -0.060966, - 0.058262, - 0.040238, - 0.012421, - -0.013685, - 0.047908, - 0.0139, - -0.023974, - 0.0013842, - -0.04267, - 0.036735, - -0.019487, - -0.027242, - -0.013464, - -0.015748, - -0.036215, - -0.022942, - -0.022093, - -0.037665, - -0.033885, - -0.0038509, - 0.040676, - -0.0013864, - -0.034618, - -0.04377, - 0.10097, - -0.063851, - 0.025533, - 0.001737, - -0.00046622, - 0.061167, - 0.00099529, - -0.037684, - 0.037714, - -0.0068729, - 0.0529, - 0.00065686, - 0.0032326, - -0.023886, - 0.055509, - 0.027021, - -0.06732, - 0.045579, - -0.012185, - 0.034044, - 0.005397, - 0.052341, - 0.062626, - -0.0050986, - 0.010227, - 0.027659, - -0.059609, - -0.006241, - 0.028068, - 0.03077, - -0.0060474, - -0.045575, - 0.0090561, - 0.01866, - 0.0076724, - -0.017549, - -0.043892, - -0.041533, - -0.0057379, - -0.061919, - 0.0087498, - -0.0093904, - 0.053018, - 0.041434, - -0.051095, - 0.050422, - 0.012222, - -0.051122, - 0.013326, - -0.0029019, - 0.0094593, - -0.021457, - -0.024765, - -0.012029, - 0.005375, - -0.010584, - -0.012423, - -0.035278, - 0.07315, - -0.013098, - 0.0014099, - -0.027153, - 0.0071252, - 0.070805, - 0.015233, - 0.02036, - 0.009176, - -0.028213, - 0.030189, - -0.011704, - -0.0098643, - 0.062665, - 0.05869, - -0.021827, - 0.020679, - 0.066068, - -0.020979, - 0.020538, - 0.0026736, - -0.024967, - 0.03311, - -0.0069229, - -0.0053125, - -0.050411, - 0.035175, - 0.068506, - 0.014422, - -0.022959, - 0.0052941, - 0.013853, - -0.040729, - -0.0070411, - 0.051973, - 0.065274, - 0.063752, - 0.0485, - -0.070789, - 0.029008, - -0.020427, - -0.040707, - 0.0079952, - 0.021112, - -0.021803, - 0.0053186, - 0.033254, - -0.011036, - 0.013362, - 0.0090178, - -0.0010669, - 0.037079, - -0.00076147, - 0.0044323, - -0.002952, - -0.03825, - 0.026136, - -0.018745, - 0.0005296, - 0.0031959, - 0.040758, - -0.048612, - 0.008315, - 0.078222, - 0.022622, - 0.02093, - 0.010274, - 0.034423, - -0.0060187, - 0.040786, - 0.012588, - 0.00027684, - -0.0090588, - 0.042856, - 0.0069913, - 0.0042997, - -0.10644, - 0.063271, - -0.038543, - 0.0050098, - -0.032802, - 0.055032, - 0.039517, - 0.0025072, - 0.004802, - 0.041923, - 0.10713, - 0.021675, - 0.026744, - -0.022987, - 0.0066635, - -0.041384, - -0.052855, - 0.0027328, - 0.021058, - 0.0029082, - 0.047057, - -0.014459, - 0.00059914, - 0.043258, - -0.054636, - -0.012399, - 0.048629, - 0.045941, - -0.016255, - -0.07926, - -0.058182, - 0.0045699, - -0.10014, - -0.015146, - 0.059647, - 0.021215, - -0.002196, - -0.038825, - -0.0010048, - 0.012095, - 0.012546, - -0.038694, - -0.0015547, - -0.013455, - -0.085946, - 0.013745, - -0.077811, - -0.0066354, - 0.007012, - 0.036924, - -0.019088, - -0.032439, - 0.0023684, - -0.014634, - 0.049063, - -0.0057567, - -0.0062738, - 0.06461, - 0.012372, - -0.025043, - -0.0015423, - -0.023866, - -0.021119, - 0.016244, - 0.010202, - 0.0085678, - -0.064381, - -0.0072397, - 0.035931, - 0.027601, - -0.06886, - 0.027227, - -0.040964, - -0.014076, - 0.0010539, - -0.063958, - 0.015337, - 0.015131, - -0.035051, - 0.04946, - 0.066167, - 0.044251, - -0.032102, - -0.024027, - -0.0078416, - 0.023242, - 0.01573, - -0.051343, - -0.011282, - -0.01903, - 0.044731, - 0.0018783, - -0.04339, - 0.017879, - -0.067237, - -0.0030569, - 0.011404, - 0.089662, - -0.079778, - -0.047943 - ], - "fashioned": [ - -0.025336, - 0.074019, - -0.0063224, - -0.002986, - -0.045485, - -0.071599, - -0.041117, - -0.07716, - -0.019832, - 0.007061, - -0.008103, - -0.022086, - -0.041298, - 0.0040464, - -0.0068829, - 0.0091219, - 0.065104, - 0.022408, - 0.0099062, - 0.079985, - 0.024241, - -0.00018154, - -0.055214, - 0.048272, - 0.050002, - -0.0099801, - 0.0045733, - 0.022069, - -0.0056402, - -0.024405, - -0.026886, - -0.027505, - 0.028384, - -0.018039, - 0.046115, - 0.011332, - 0.040761, - 0.027625, - -0.0018418, - 0.048309, - -0.010044, - -0.068416, - -0.0018931, - -0.019082, - -0.016102, - 0.0051837, - 0.050106, - -0.0040265, - 0.00079847, - -0.046784, - -0.023747, - -0.0091447, - -0.0065332, - 0.042387, - -0.052532, - -0.0044085, - 0.11177, - -0.050518, - -0.039744, - -0.032027, - -0.0021025, - -0.017128, - 0.2109, - -0.035284, - 0.090446, - 0.030412, - -0.041616, - 0.051479, - 0.0040306, - 0.015845, - 0.0073184, - -0.010082, - -0.0031904, - -0.07041, - 0.012006, - 0.012573, - 0.001662, - -0.062016, - 0.0084094, - -0.032483, - 0.037094, - -0.032369, - 0.014549, - 0.057504, - 0.017793, - -0.0074628, - -0.031665, - 0.059315, - -0.055573, - 0.0070648, - 0.039952, - 0.017853, - -0.07245, - 0.052627, - 0.08624, - 0.072647, - -0.0016746, - -0.021485, - 0.04502, - 0.033591, - 0.044783, - 0.0065243, - 0.021369, - -0.0002126, - -0.049885, - -0.10851, - 0.062133, - 0.045025, - 0.007241, - -0.01492, - -0.011052, - 0.03675, - 0.052371, - 0.0065999, - -0.058093, - 0.018984, - -0.0048285, - -0.0035588, - -0.058445, - 0.0085573, - 0.0022233, - -0.020487, - -0.024683, - -0.06205, - 0.050682, - -0.0042538, - -0.0039375, - 0.047262, - 0.060727, - -0.0070934, - -0.041035, - -0.0057965, - -0.0032616, - 0.025164, - 0.00092712, - -0.05047, - -0.032981, - 0.096808, - 0.0087407, - -0.040491, - 0.039914, - -0.031506, - 0.0088993, - 0.02992, - -0.018466, - -0.036418, - 0.03573, - 0.017009, - 0.027362, - -0.0040895, - 0.05634, - 0.035585, - 0.027481, - 0.019808, - -0.039356, - -0.0094338, - 0.012091, - -0.039979, - 0.051325, - -0.040384, - 0.018772, - -0.02912, - 0.020421, - 0.03158, - 0.034118, - 0.038481, - 0.020706, - -0.038557, - -0.0076877, - 0.02432, - 0.0090966, - 0.01619, - -0.013465, - -0.045363, - -0.013305, - 0.02735, - -0.011752, - 0.056313, - -0.014072, - 0.0091054, - 0.025012, - 0.0063093, - 0.011726, - -0.02073, - -0.00064576, - 0.015917, - -0.00070757, - 0.092494, - 0.0050593, - 0.023202, - 0.021649, - 0.10194, - -0.031083, - -0.019132, - -0.0077724, - 0.0049509, - 0.0085603, - 0.019424, - 0.036466, - 0.017219, - -0.093447, - 0.040207, - 0.070272, - 0.014162, - -0.0049711, - 0.012771, - 0.025333, - 0.0019817, - -0.010709, - -0.04595, - 0.074176, - 0.020051, - 0.038844, - 0.041139, - 0.027652, - -0.0029147, - -0.019647, - -0.029096, - -0.03182, - -0.011534, - -0.029168, - -0.034683, - -0.008619, - 0.083894, - -0.063347, - -0.010973, - 0.069422, - 0.076136, - -0.0014467, - 0.01069, - 0.0048799, - -0.040188, - -0.0048301, - 0.0030973, - -0.01476, - -0.0092373, - -0.040387, - -0.010118, - 0.031215, - 0.0087223, - 0.11595, - 0.022391, - -0.014989, - 0.083105, - -0.053372, - 0.061242, - -0.037114, - -0.01399, - -0.014285, - 0.025629, - -0.026693, - -0.012641, - -0.028584, - 0.024467, - 0.014002, - 0.050754, - 0.0063747, - -0.043193, - -0.0055568, - 0.023164, - 0.0034001, - 0.013023, - 0.023837, - 0.077884, - 0.0050954, - 0.016705, - 0.0052129, - -0.026081, - 0.00097719, - -0.0054017, - -0.029462, - 0.066117, - -0.064351, - -0.014707, - -0.0019898, - 0.0155, - -0.010361, - 0.016362, - -0.040528, - 0.0083862, - -0.047804, - -0.00017469, - 0.009583, - -0.032284, - -0.035866, - -0.021041, - -0.0038607, - -0.063866, - 0.0019597, - 0.064535, - 0.015155, - 0.043352, - 0.014588, - -0.01034, - -0.0043131, - -0.017225, - 0.025859, - -0.037808, - -0.010482, - -0.034983 - ], - "health-care": [ - 0.017253, - -0.043305, - -0.019107, - 0.031924, - -0.029466, - -0.014189, - 0.0056252, - -0.057813, - 0.065843, - 0.0085885, - -0.051834, - -0.025255, - 0.042062, - -0.019596, - -0.10386, - -0.0082146, - 0.065578, - 0.043866, - 0.040051, - 0.0027774, - 0.016946, - 0.031668, - 0.030007, - 0.053219, - -0.0034871, - -0.036393, - 0.018905, - 0.060387, - -0.0042937, - 0.0028912, - -0.0063189, - -0.034106, - -0.062889, - -0.045232, - 0.082723, - 0.052417, - 0.0094668, - 0.0027025, - 0.10312, - 0.056874, - -0.057263, - -0.11664, - 0.002356, - 0.0096643, - 0.025821, - -0.0054472, - -0.05044, - 0.015222, - -0.022825, - 0.00026918, - -0.028655, - 0.0077392, - 0.011901, - 0.020327, - -0.011379, - 0.036205, - -0.057034, - 0.028901, - -0.0067737, - -0.056634, - -0.0196, - -0.048504, - 0.088674, - 0.0085203, - 0.036545, - 0.051924, - -0.017965, - -0.050355, - -0.015721, - 0.009449, - -0.054803, - 0.0044566, - 0.024277, - -0.023199, - -0.044278, - -0.00042643, - -0.02725, - -0.0018046, - -0.026315, - 0.018161, - -0.022627, - 0.024798, - -0.056823, - 0.02815, - -0.042839, - 0.0029831, - -0.038298, - -0.036192, - -0.034209, - -0.010088, - 0.056525, - 0.057619, - -0.068393, - 0.0027738, - -0.043466, - 0.042467, - 0.017441, - 0.012877, - -0.01285, - 0.021603, - -0.016077, - -0.039375, - -0.0090161, - -0.025797, - 0.032297, - -0.076145, - 0.043964, - -0.014512, - -0.011901, - -0.0041805, - -0.018136, - 0.076707, - 0.029456, - 0.038333, - 0.038969, - 0.023061, - -0.011396, - 0.0056872, - -0.033513, - 0.021086, - -0.036444, - 0.016725, - 0.025969, - 0.0076683, - 0.074795, - 0.0069699, - -0.046446, - -0.039851, - 0.073275, - 0.076223, - 0.029788, - -0.0031004, - -0.013364, - -0.056894, - 0.028102, - -0.0028052, - -0.0077656, - 0.015983, - -0.01113, - 0.013011, - 0.046728, - -0.050468, - -0.036426, - 0.0539, - -0.066381, - -0.043232, - 0.013715, - 0.02797, - 0.048104, - 0.012821, - 0.018776, - 0.10512, - -0.0013756, - -0.062624, - 0.047134, - -0.016583, - -0.01589, - -0.036609, - 0.056362, - -0.025229, - 0.052272, - 0.038666, - -0.086961, - 0.021084, - -0.032486, - -0.016824, - -0.0084832, - -0.046017, - -0.013527, - -0.060903, - -0.033039, - -0.0032852, - -0.026112, - 0.031685, - -0.012597, - 0.044526, - -0.058144, - 0.024362, - -0.044805, - 0.0074514, - 0.0037459, - -0.011069, - -0.014458, - 0.0098693, - -0.0088526, - -0.032166, - 0.0257, - 0.10914, - -0.016524, - 0.0092837, - -0.015796, - 0.044553, - 0.040191, - -0.03517, - 0.024252, - -0.031003, - -0.0041172, - -0.023233, - -0.035603, - -0.082871, - -0.10306, - 0.0093639, - 0.028292, - 0.027106, - -0.034489, - 0.006179, - -0.010613, - -0.0079131, - -0.037999, - -0.0043848, - 0.099393, - -0.010462, - -0.029049, - 0.066091, - -0.030787, - 0.014685, - 0.010606, - -0.031185, - 0.0041221, - -0.010667, - -0.0032272, - -0.0014624, - -0.014814, - 0.070621, - -0.018077, - 0.011049, - -0.0082975, - 0.057433, - -0.006347, - -0.020951, - 0.020905, - 0.0071845, - -0.028652, - -0.026402, - 0.037247, - 0.010191, - -0.021496, - 0.024307, - -0.011486, - -0.00056395, - -0.0084281, - 0.047069, - 0.018092, - -0.0099981, - -0.062293, - 0.037309, - 0.033392, - 0.017881, - -0.014171, - 0.025712, - 0.0096055, - 0.015724, - -0.032878, - -0.04316, - -0.022252, - 0.052242, - -0.061447, - 0.022724, - 0.013533, - 0.00022527, - -0.013407, - -0.00011273, - -0.055972, - -0.0009338, - 0.02324, - 0.041683, - -0.0056334, - 0.058105, - -0.020248, - 0.025452, - -0.04383, - 0.045585, - -0.10156, - -0.004873, - -0.0075936, - -0.026682, - -0.052079, - -0.050956, - 0.017835, - 0.011626, - 0.12287, - -0.001547, - -0.053301, - 0.00010714, - 0.0037062, - 0.039033, - -0.0053304, - -0.023762, - -0.010639, - 0.011541, - 0.036575, - 0.021726, - -0.0042963, - 0.019251, - -0.020838, - -0.01841, - -0.018053, - 0.046319, - 0.030241, - -0.027119 - ], - "telephone": [ - 0.0052433, - 0.01507, - -0.011029, - 0.0097858, - 0.010417, - 0.013784, - 0.029665, - -0.079227, - 0.058666, - -0.012936, - 0.039644, - -0.032381, - -0.041482, - 0.016197, - -0.031152, - -0.020092, - 0.028388, - -0.034821, - 0.026312, - 0.034958, - -0.029944, - -0.033125, - 0.076087, - 0.06345, - 0.022655, - 0.0016431, - -0.046, - 0.044098, - -0.01654, - 0.027223, - -0.050251, - 0.06985, - -0.054415, - -0.040213, - 0.026446, - -0.01328, - 0.027039, - 0.010614, - 0.024674, - 0.0055074, - -0.020793, - -0.08751, - 0.033583, - -0.0042459, - 0.043842, - 0.042901, - -0.019449, - -0.056783, - -0.025546, - -0.01771, - 0.0094985, - 0.013667, - 0.041412, - 0.0054397, - -0.050075, - 0.04429, - -0.030372, - -0.0032457, - -0.0018619, - -0.011427, - -0.076396, - 0.035399, - 0.096992, - 0.0038683, - -0.013161, - 0.024106, - -0.03978, - 0.016282, - -0.077889, - -0.020849, - -0.02442, - -0.0049786, - 0.048767, - -0.014082, - -0.04429, - 0.017884, - 0.012927, - -0.046367, - -0.043181, - 0.016167, - -0.038591, - -0.070811, - -0.045673, - -0.026764, - -0.021897, - -0.10036, - -0.0066547, - 0.0068453, - -0.048051, - -0.0032992, - -0.031377, - 0.00061461, - -0.073214, - -0.013764, - 0.037039, - 0.07477, - 0.006724, - -0.00053468, - 0.029795, - -0.047561, - 0.022373, - 0.014429, - -0.093047, - -0.017092, - 0.026969, - -0.073754, - 0.042858, - -0.0011597, - 0.047183, - -0.027924, - -0.0044117, - 0.040672, - 0.071214, - 0.056618, - -0.077487, - -0.017566, - -0.041054, - -0.0097407, - -0.033361, - -0.072452, - 0.029416, - 0.051135, - 0.015221, - 0.016277, - 0.030459, - -0.024233, - 0.0021794, - -0.03923, - 0.017435, - 0.059894, - -0.00059532, - -0.03369, - -0.048678, - 0.0020452, - 0.023467, - -0.0091781, - 0.05102, - 0.0047921, - -0.063694, - 0.028603, - 0.091775, - -0.0072365, - 0.029856, - 0.001272, - -0.05464, - -0.010254, - -0.044366, - 0.04229, - 0.037923, - -0.0087905, - -0.053286, - 0.052575, - -0.034508, - -0.029313, - -0.035777, - -0.013634, - 0.0047442, - -0.018586, - 0.010783, - 0.030025, - 0.045633, - 0.017913, - -0.036046, - 0.031657, - 0.035172, - -0.031541, - 0.026748, - -0.0031998, - 0.04447, - 0.027468, - 0.010576, - 0.059294, - 0.0073849, - 0.10826, - 0.01537, - 0.046136, - -0.019837, - 0.077595, - -0.042715, - 0.016518, - 0.055372, - 0.020126, - 0.029962, - 0.027997, - -0.012785, - -0.008906, - -0.1246, - 0.071659, - 0.041172, - -0.050754, - -0.017278, - 0.030856, - 0.018885, - 0.011132, - 0.056103, - -0.0014446, - -0.03393, - 0.00248, - 0.017452, - 0.06458, - -0.11984, - 0.035864, - -0.043377, - 0.076131, - 0.020311, - -0.0017495, - 0.013092, - -0.0057032, - -0.12177, - -0.040568, - 0.13129, - -0.0052789, - 0.023268, - 0.052767, - -0.025814, - -0.038665, - 0.0042301, - -0.024825, - 0.020874, - -0.0040588, - 0.023785, - -0.030461, - 0.01235, - 0.072118, - 0.029464, - -0.010535, - -0.0065135, - 0.042866, - 0.016023, - 0.012438, - 0.017893, - -0.065472, - 0.01247, - -0.01027, - 0.02324, - 0.031228, - 0.014921, - 0.023594, - 0.027529, - -0.059888, - 0.05467, - -0.010949, - 0.012922, - -0.033822, - -0.027656, - -0.063108, - 0.0026447, - 0.026779, - -0.013209, - 0.016958, - -0.0053446, - 0.023584, - 0.005355, - 0.030636, - 0.0065015, - 0.0058029, - -0.031979, - -0.0027498, - -0.06389, - 0.0035749, - -0.0070062, - -0.053221, - 0.039482, - -0.022027, - -0.032774, - -0.033745, - 0.0048889, - 0.0082763, - -0.0050155, - 0.02217, - -0.10538, - 0.084767, - -0.083401, - -0.024739, - -0.022951, - -0.016763, - 0.037865, - 0.047162, - 0.02069, - -0.002883, - 0.067318, - -0.069045, - -0.037196, - -0.019326, - -0.048814, - 0.022856, - -0.11136, - 0.0011889, - -0.029057, - -0.0098121, - 0.018628, - 0.038879, - -0.059258, - 0.022342, - -0.017887, - 0.064783, - -0.059144, - -0.00091951, - 0.040029, - -0.014712 - ], - "expenses": [ - -0.013559, - -0.02248, - 0.024908, - -0.045508, - 0.085724, - -0.011315, - 0.056907, - -0.066113, - 0.046121, - -0.012739, - -0.030744, - -0.005923, - -0.062945, - -0.030317, - -0.0084872, - 0.022044, - 0.024771, - -0.10041, - 0.062691, - -0.057256, - -0.016666, - -0.0069245, - -0.014605, - 0.041367, - 0.034847, - 0.032983, - -0.025956, - 0.084418, - 0.1033, - -0.02241, - -0.008168, - 0.033262, - -0.059895, - -0.038721, - -0.001393, - 0.029857, - -0.067645, - 0.032218, - 0.02126, - 0.040286, - 0.00052271, - -0.067011, - 0.015773, - 0.055293, - 0.014784, - 0.023059, - -0.024501, - -0.069076, - 0.010205, - -0.016469, - -0.03734, - 0.043079, - -0.052976, - 0.030964, - -0.10738, - 0.062717, - -0.14157, - 0.0039945, - -0.023996, - -0.02397, - 0.044916, - -0.011808, - 0.12824, - 0.07379, - -0.015292, - -0.029668, - 0.044035, - -0.067547, - -0.040276, - -0.02674, - 0.0054896, - -0.019308, - 0.062489, - 0.026762, - 0.076434, - 0.0086807, - 0.021633, - -0.017122, - -0.043771, - -0.046109, - -0.016543, - -0.032334, - -0.052269, - 0.072873, - 0.016662, - -0.013852, - 0.022211, - -0.036779, - -0.013426, - -0.067856, - 0.0082192, - -0.050081, - -0.062445, - 0.040747, - -0.075167, - 0.011172, - -0.051446, - 0.0027726, - -0.015852, - 0.0025796, - 0.0099981, - -0.0016157, - -0.019839, - -0.015041, - 0.1175, - -0.011218, - -0.013569, - -0.030477, - -0.015435, - 0.0034791, - 0.015633, - 0.10089, - 0.061904, - -0.027501, - 0.050738, - -0.087784, - -0.012818, - -0.095072, - -0.017261, - 0.011337, - -0.01791, - 0.025881, - -0.015049, - 0.02619, - 0.13782, - -0.018133, - -0.0073402, - -0.11086, - -0.0081264, - 0.066448, - 0.01676, - 0.010084, - 0.0035888, - -0.018214, - -0.0025603, - 0.016654, - -0.0031643, - 0.04206, - -0.04239, - 0.011096, - -0.0040949, - -0.0073502, - -0.014972, - 0.027616, - -0.037486, - -0.077287, - -0.022171, - -0.015058, - 0.042895, - -0.035378, - 0.018311, - 0.053709, - -0.018974, - -0.077846, - 0.057414, - 0.013233, - 0.050634, - 0.033129, - -0.039363, - -0.048416, - 0.13109, - 0.060832, - -0.025383, - 0.016964, - 0.013524, - 0.0010613, - -0.04424, - -0.041112, - -0.0030859, - -0.019971, - 0.026501, - 0.0094769, - 0.013784, - -0.024461, - 0.022432, - 0.086463, - -0.076412, - 0.046396, - -0.013087, - 0.0090425, - 0.017326, - -0.015592, - 0.012628, - -0.03842, - -0.069478, - -0.013764, - -0.0049623, - 0.11661, - 0.018143, - -0.035962, - 0.053233, - 0.017268, - -0.065587, - -0.076194, - -0.052394, - -0.02405, - -0.059145, - -0.010475, - 0.026816, - 0.041798, - -0.14908, - -0.012241, - 0.10828, - 0.018659, - 0.043521, - 0.015902, - -0.075996, - -0.038198, - 0.047762, - -0.01925, - 0.054572, - -0.018014, - 0.017228, - 0.032212, - 0.056531, - 0.013693, - -0.029616, - 0.034281, - -0.033668, - -0.015198, - 0.033561, - 0.03096, - 0.030102, - 0.073558, - 0.086041, - -0.011593, - 0.0081537, - 0.065976, - -0.032027, - 0.01066, - 0.037573, - -0.027566, - -0.078039, - -0.013029, - 0.089834, - -0.028743, - -0.0055622, - -0.015586, - -0.070131, - 0.012875, - -0.031455, - -0.040976, - 0.015483, - -0.062164, - -0.018541, - 0.028096, - 0.053159, - -0.073598, - 0.010904, - 0.023705, - -0.012184, - 0.035344, - 0.0087931, - -0.024894, - -0.048957, - -0.01403, - -0.00035405, - 0.045334, - -0.058831, - 0.047898, - -0.019502, - -0.0086402, - -0.10814, - -0.049072, - 0.076475, - 0.032828, - -0.062623, - -0.0054595, - -0.032139, - 0.075212, - 0.0038442, - 0.060867, - -0.1081, - -0.064565, - 0.060159, - -0.033231, - 0.0015588, - 0.051752, - 0.014714, - 0.010172, - 0.040717, - 0.0064147, - 0.035858, - 0.0043269, - 0.039139, - 0.043674, - -0.080856, - 0.073589, - -0.060171, - 0.038303, - 0.050671, - 0.015475, - -0.049137, - -0.018601, - -0.022615, - -0.059802, - -0.033041, - 0.057655, - -0.032684, - -0.013606 - ], - "hardware": [ - -0.055265, - -0.0047914, - -0.039565, - 0.033771, - -0.026367, - -0.047107, - 0.058586, - -0.092966, - 0.025206, - -0.029084, - -0.021365, - -0.011582, - -0.07903, - 0.046778, - -0.018081, - 0.024405, - 0.068987, - 0.062496, - 0.070538, - -0.019221, - -0.041958, - -0.04023, - -0.016765, - 0.066309, - 0.020243, - 0.025299, - -0.0090838, - -0.031721, - 0.064755, - 0.043102, - -0.0036003, - -0.050226, - 0.022708, - -0.041058, - 0.075345, - 0.024304, - 0.031557, - -0.024759, - 0.039873, - -0.025049, - -0.056586, - -0.145, - -0.01716, - 0.022163, - -0.082956, - -0.053552, - -0.002401, - -0.056962, - -0.0064915, - -0.026676, - -0.034562, - 0.010978, - -0.033423, - 0.01195, - -0.041488, - 0.067807, - 0.048829, - 0.039913, - 0.0041755, - 0.022748, - 0.0029981, - 0.0010038, - 0.13124, - 0.059847, - 0.056685, - -0.013655, - -0.024297, - -0.036498, - -0.018158, - -0.033062, - -0.019982, - -0.017614, - 0.014002, - 0.010843, - -0.055472, - 0.0090742, - 0.0027528, - -0.045487, - -0.017885, - -0.025108, - -0.03323, - -0.015494, - -0.070816, - 0.043701, - -0.036218, - -0.047014, - -0.022323, - -0.035266, - -0.069909, - -0.079444, - 0.040567, - -0.006679, - -0.087151, - 0.015597, - -0.028997, - 0.078093, - 0.037428, - -0.041333, - 0.017775, - 0.044007, - 0.0035252, - 0.0025907, - 0.0040292, - 0.0034603, - 0.019514, - -0.073379, - -0.0009301, - 0.085669, - -0.064806, - -0.029786, - -0.027078, - 0.075596, - 0.03396, - 0.007227, - 0.072833, - -0.036112, - -0.014523, - 0.025559, - -0.061882, - 0.03677, - -0.017981, - -0.025165, - -0.016062, - -0.013862, - 0.083143, - 0.057042, - -0.047363, - -0.052751, - -0.016309, - 0.089913, - 0.00092212, - -0.012524, - 0.04528, - -0.0010355, - 0.037796, - -0.022956, - 0.018531, - 0.039629, - -0.025269, - 0.048835, - 0.056968, - 0.074195, - 0.0067401, - -0.0023009, - -0.055458, - -0.0094255, - -0.0039645, - -0.0029774, - 0.050266, - -0.0055938, - 0.010228, - 0.084094, - 0.040808, - -0.078408, - 0.0066847, - 0.00045856, - -0.029162, - -0.043995, - -0.02324, - 0.0058121, - 0.030163, - 0.061964, - -0.059106, - -0.052477, - -0.062871, - 0.012759, - 0.014811, - -0.0069193, - 0.020481, - 0.015905, - 0.062419, - 0.040037, - 0.039316, - 0.033236, - 0.049602, - 0.047732, - -0.023056, - 0.046319, - -0.036633, - -0.020324, - 0.029948, - -0.027449, - -0.067633, - -0.057069, - -0.047288, - -0.059696, - -0.015685, - 0.0745, - -0.018948, - -0.035916, - -0.041614, - 0.065645, - 0.0072062, - -0.046432, - 0.037144, - -0.013929, - -0.018537, - 0.012014, - 0.013084, - 0.028472, - -0.13305, - -0.026599, - -0.061081, - -0.02237, - 0.01963, - -0.048755, - -0.024113, - -0.0046584, - -0.0087469, - -0.040894, - 0.12077, - 0.037174, - 0.014467, - -0.057433, - 0.022471, - -0.0073243, - -0.045724, - 0.048572, - -0.019425, - -0.0053274, - 0.070463, - 0.036665, - 0.01746, - 0.091707, - 0.032231, - -0.081903, - 0.076308, - 0.025057, - -0.035671, - -0.0084476, - -0.081899, - -0.019194, - -0.09833, - -0.040312, - -0.007781, - -0.065361, - 0.046165, - 0.032196, - 0.0048944, - -0.063805, - 0.018165, - -0.047205, - 0.093055, - -0.050666, - -0.025619, - 0.051514, - 0.0088268, - 0.010032, - 0.0048817, - 0.017463, - -0.03004, - 0.000041454, - -0.03359, - 0.013639, - -0.002757, - 0.0053557, - 0.014133, - 0.014779, - 0.008236, - -0.025044, - 0.010572, - 0.007593, - -0.051536, - 0.013778, - 0.024154, - -0.041668, - 0.018901, - 0.016614, - -0.0051432, - -0.00045377, - -0.011209, - 0.059184, - -0.085617, - -0.054481, - -0.0032297, - -0.062507, - 0.021592, - 0.033983, - -0.018614, - 0.01191, - 0.098443, - 0.046764, - 0.021579, - 0.0078314, - -0.026691, - -0.045496, - -0.055073, - 0.015499, - -0.019077, - -0.028984, - -0.11282, - 0.0075749, - -0.034539, - -0.0070933, - 0.031988, - -0.046445, - 0.013943, - -0.034142, - -0.036566, - 0.01052 - ], - "drug-trafficking": [ - 0.022545, - -0.0062677, - 0.0048247, - -0.033424, - -0.05559, - -0.0089346, - -0.013212, - -0.044671, - 0.010902, - 0.039639, - 0.025393, - -0.041746, - -0.03422, - 0.0038116, - 0.027849, - -0.02043, - 0.062501, - 0.0041706, - 0.027873, - 0.051974, - 0.0035889, - -0.034549, - 0.011873, - 0.021962, - 0.016483, - 0.0051882, - -0.0024169, - -0.0032428, - 0.023078, - 0.034618, - 0.008953, - 0.026053, - -0.033017, - -0.033208, - 0.044221, - 0.010754, - -0.006454, - 0.02733, - 0.024098, - 0.015212, - -0.034498, - -0.068758, - 0.08019, - 0.0301, - 0.032822, - 0.029286, - 0.054861, - 0.013865, - -0.032179, - -0.0076176, - -0.0013153, - 0.014485, - -0.014194, - 0.020834, - -0.025462, - -0.025496, - -0.019851, - -0.0044301, - 0.0043828, - 0.01765, - -0.042944, - -0.0024365, - 0.018492, - -0.0006716, - -0.032755, - -0.049049, - 0.093409, - -0.066296, - 0.059063, - 0.015309, - -0.013325, - 0.044429, - 0.0029841, - -0.0085835, - 0.051926, - 0.012213, - 0.029976, - 0.029567, - 0.0018477, - -0.013849, - 0.0062973, - 0.028031, - -0.11326, - 0.021145, - -0.0083563, - -0.018288, - 0.018825, - 0.027057, - 0.038898, - 0.0082189, - -0.02581, - 0.03187, - -0.067142, - 0.014148, - -0.022177, - 0.024416, - -0.030855, - -0.039377, - 0.011507, - -0.025631, - 0.010074, - -0.030717, - -0.049276, - -0.053221, - 0.016405, - -0.015085, - -0.015128, - -0.018917, - 0.0078242, - 0.0011735, - 0.027586, - 0.049982, - 0.02066, - -0.033759, - -0.016288, - -0.011459, - 0.030483, - -0.02857, - -0.033184, - 0.056054, - 0.030471, - -0.022932, - -0.015151, - -0.048358, - 0.08323, - 0.023709, - 0.011243, - -0.035347, - 0.016652, - 0.059644, - -0.0019368, - -0.0080352, - 0.0032845, - -0.034885, - 0.042576, - -0.021558, - -0.015807, - 0.010155, - 0.02735, - 0.025039, - 0.039406, - 0.037297, - -0.013037, - -0.025163, - 0.0053101, - -0.012935, - 0.0060709, - 0.0007189, - 0.023586, - -0.022145, - 0.00079006, - 0.061142, - 0.019057, - -0.038151, - 0.027991, - 0.0048168, - -0.05488, - -0.0085666, - 0.036092, - 0.058503, - 0.04979, - 0.040154, - -0.075303, - 0.019032, - -0.053582, - -0.013695, - 0.022728, - 0.0021055, - -0.0042898, - 0.0081181, - 0.0012212, - -0.01002, - 0.032067, - -0.025867, - -0.0044901, - 0.043772, - -0.00036335, - 0.021343, - -0.047684, - -0.022267, - 0.021819, - 0.0075101, - 0.04602, - 0.027325, - 0.0070412, - -0.047562, - 0.0039032, - 0.07428, - -0.0049911, - -0.01267, - 0.043583, - 0.026257, - -0.014375, - 0.022763, - 0.005341, - -0.0010199, - 0.0041205, - 0.037105, - -0.004311, - -0.030727, - -0.10137, - 0.029187, - -0.028146, - 0.0021952, - -0.010641, - 0.033372, - 0.039317, - 0.020329, - 0.034414, - 0.016198, - 0.089773, - -0.0097754, - 0.023426, - -0.019239, - 0.05471, - -0.031686, - -0.042288, - 0.027275, - -0.00083637, - -0.019677, - -0.017679, - -0.056594, - 0.015288, - 0.045707, - -0.069359, - 0.013057, - -0.016231, - 0.013417, - 0.016256, - -0.031422, - -0.053307, - -0.0052252, - -0.024209, - -0.041033, - 0.028295, - -0.028914, - -0.048234, - -0.034189, - -0.0032264, - -0.016633, - -0.03441, - -0.039379, - -0.0017382, - -0.0076017, - -0.033414, - 0.0011438, - -0.01351, - -0.00074805, - 0.048006, - 0.038447, - -0.031103, - -0.012315, - 0.020592, - -0.020793, - -0.0018918, - 0.029553, - -0.0054283, - 0.017147, - -0.0074853, - 0.0034671, - -0.032572, - 0.024762, - 0.01316, - -0.00024431, - 0.011985, - -0.0079224, - -0.050655, - 0.013132, - 0.028893, - 0.0061175, - -0.083281, - 0.037334, - -0.066747, - -0.012026, - 0.023506, - -0.051007, - -0.031412, - 0.009242, - -0.050855, - -0.011246, - 0.081383, - 0.005868, - -0.0065344, - -0.029096, - -0.020205, - -0.0018834, - 0.0091656, - -0.009305, - -0.01354, - -0.040985, - -0.020604, - 0.0037519, - -0.02825, - -0.0056847, - -0.029117, - -0.021292, - 0.0007334, - 0.039928, - -0.023038, - -0.078013 - ], - "electromechanical": [ - -0.014367, - -0.013856, - 0.011596, - 0.014673, - -0.0020404, - -0.024023, - -0.027434, - -0.068642, - 0.041384, - 0.0021593, - 0.04719, - -0.0092179, - 0.010542, - 0.044719, - 0.015221, - 0.0011596, - 0.02465, - 0.024035, - 0.032077, - 0.013401, - 0.049568, - -0.0083636, - 0.017594, - 0.047992, - 0.029988, - -0.016544, - -0.042896, - -0.029106, - 0.013742, - 0.0013511, - 0.023972, - -0.026048, - 0.030541, - -0.039007, - 0.049619, - 0.02089, - 0.0086834, - 0.01091, - 0.032565, - 0.027644, - -0.013579, - -0.066087, - 0.0093319, - 0.0065211, - -0.03242, - -0.0027587, - 0.00057578, - -0.0049959, - -0.020846, - 0.019469, - -0.030941, - -0.0091502, - 0.0022115, - 0.039866, - 0.034084, - -0.00175, - 0.026308, - 0.016203, - 0.0037357, - 0.013846, - 0.014676, - 0.066109, - 0.069694, - 0.029997, - 0.028711, - 0.053544, - -0.01611, - 0.0029686, - -0.0035375, - 0.005561, - -0.024976, - 0.010847, - 0.022102, - 0.0033751, - -0.0080479, - 0.0089527, - -0.055625, - -0.04092, - -0.0067271, - -0.0049298, - 0.0077669, - -0.025332, - -0.038173, - -0.011845, - 0.024373, - -0.038076, - -0.0066619, - 0.0093131, - 0.0033601, - -0.029642, - -0.007369, - 0.0066037, - -0.059629, - -0.0070009, - -0.0019162, - 0.042051, - -0.0026023, - 0.0062351, - -0.014568, - 0.0079684, - 0.039653, - 0.017458, - -0.028248, - -0.039811, - -0.014989, - -0.046792, - -0.002918, - 0.038165, - -0.016483, - -0.0054836, - 0.024643, - 0.035591, - 0.032208, - 0.01403, - 0.035109, - 0.033088, - -0.035093, - 0.044531, - -0.017671, - -0.016639, - 0.0035045, - 0.012062, - -0.045767, - 0.029079, - 0.049649, - -0.0084677, - 0.0089527, - 0.014208, - 0.028785, - 0.045549, - -0.021992, - 0.025679, - -0.003926, - -0.016142, - 0.054291, - -0.028077, - 0.035198, - 0.041653, - -0.0079621, - -0.0026318, - 0.039844, - 0.042844, - 0.031827, - 0.013207, - -0.0028742, - -0.044702, - -0.012877, - -0.048902, - 0.023496, - -0.011746, - 0.02685, - 0.10139, - 0.019063, - 0.012505, - 0.0070728, - 0.018913, - -0.02117, - -0.0011075, - 0.033816, - 0.0011501, - 0.01376, - 0.040426, - -0.056923, - -0.034056, - -0.017937, - -0.0035829, - -0.021904, - 0.012047, - 0.034617, - -0.024639, - 0.035043, - 0.035183, - -0.031507, - 0.0067543, - 0.0049972, - 0.012027, - 0.039775, - -0.0042986, - -0.04087, - -0.020152, - 0.014269, - 0.020455, - -0.044085, - 0.003925, - -0.0028554, - -0.039759, - -0.054961, - 0.067156, - -0.025213, - 0.018457, - -0.026023, - 0.020832, - 0.042535, - -0.013686, - 0.027108, - -0.0062974, - -0.040288, - -0.0001526, - 0.0035336, - 0.015785, - -0.093466, - 0.030108, - -0.025617, - -0.016375, - 0.0069343, - 0.026202, - -0.0093535, - -0.040071, - -0.084591, - -0.0016335, - 0.097188, - 0.013651, - 0.035785, - 0.0022729, - 0.045697, - 0.030796, - 0.0045587, - 0.022546, - -0.025761, - 0.021275, - -0.0099099, - 0.0012386, - -0.019539, - 0.070221, - 0.0042879, - 0.019069, - 0.012726, - 0.057218, - 0.0073705, - -0.0032003, - -0.01676, - -0.046379, - -0.010957, - -0.045256, - 0.0095567, - -0.0097064, - 0.035638, - -0.0061924, - 0.00039468, - 0.0016609, - 0.029634, - 0.03254, - 0.0090481, - 0.018104, - -0.070787, - -0.019789, - -0.014164, - -0.0042924, - 0.036625, - 0.0042139, - -0.0032101, - 0.025805, - 0.019502, - 0.012847, - -0.03106, - 0.028831, - 0.039447, - -0.02068, - 0.010139, - -0.050134, - 0.016225, - 0.011649, - 0.024636, - 0.006522, - -0.032012, - -0.026017, - -0.0021049, - 0.019459, - -0.034906, - -0.009732, - -0.0174, - 0.072502, - -0.049655, - 0.0034487, - -0.031892, - -0.078278, - 0.025042, - 0.043868, - 0.011925, - -0.037425, - 0.10321, - 0.013907, - -0.030231, - 0.0029186, - -0.016202, - -0.011934, - -0.03943, - 0.0019277, - -0.020608, - 0.04389, - 0.0038694, - 0.037023, - -0.024913, - -0.032753, - -0.0049572, - 0.018772, - 0.0056556, - -0.042088, - 0.0031771, - 0.0018991 - ], - "Hinduism": [ - -0.028404, - -0.037053, - 0.12699, - -0.10834, - -0.03972, - -0.042758, - -0.011784, - -0.086618, - 0.042177, - -0.070009, - 0.052908, - -0.066997, - 0.053634, - -0.018144, - -0.035319, - -0.015556, - 0.070785, - -0.068349, - 0.042071, - -0.024197, - -0.060149, - 0.03387, - 0.019856, - 0.053591, - 0.015391, - -0.022897, - 0.01398, - -0.026506, - 0.073561, - 0.004247, - 0.043676, - 0.028396, - 0.0243, - 0.04811, - 0.038902, - 0.038115, - -0.019008, - -0.0065554, - 0.038029, - 0.03661, - -0.0050347, - -0.047968, - 0.028861, - -0.012243, - -0.0012286, - -0.0013817, - 0.026051, - -0.062714, - 0.042663, - -0.038059, - -0.026033, - -0.025297, - 0.038854, - 0.018811, - -0.083871, - 0.005213, - -0.022681, - -0.094503, - -0.0264, - -0.0064331, - 0.077838, - -0.021369, - 0.022049, - -0.0044607, - -0.034805, - -0.012075, - 0.027221, - 0.018755, - 0.021059, - -0.04983, - 0.015518, - 0.027876, - -0.0036179, - -0.087233, - -0.067412, - -0.032656, - -0.034786, - -0.028116, - 0.091486, - 0.033638, - 0.0038604, - 0.08625, - -0.041113, - 0.023533, - -0.0085759, - 0.026286, - -0.057679, - -0.055308, - 0.030451, - -0.037431, - -0.0040179, - 0.022801, - -0.05191, - 0.02258, - -0.0262, - 0.070773, - 0.020454, - -0.006884, - 0.014616, - -0.044498, - 0.010336, - 0.05328, - 0.052354, - -0.089772, - -0.042775, - -0.096636, - -0.014344, - 0.044333, - -0.028104, - -0.0086076, - 0.053065, - 0.065734, - 0.027266, - -0.048961, - -0.092221, - 0.086588, - 0.027368, - 0.054153, - -0.0063596, - 0.03523, - 0.072136, - -0.058291, - 0.014147, - -0.060147, - -0.055476, - 0.073719, - -0.11074, - -0.020472, - 0.018565, - 0.15008, - 0.01831, - 0.0063956, - -0.03472, - 0.027833, - -0.039232, - -0.033944, - 0.017035, - 0.01887, - 0.024509, - -0.093643, - -0.059262, - -0.089213, - 0.11373, - 0.045253, - -0.010525, - -0.10911, - 0.017076, - 0.027855, - 0.038091, - -0.020079, - 0.03047, - 0.017215, - -0.14461, - -0.043617, - -0.044312, - 0.056398, - 0.012589, - -0.047753, - 0.065509, - 0.039554, - 0.018786, - -0.0099698, - -0.076811, - 0.026176, - 0.11464, - -0.057174, - 0.039311, - 0.010639, - -0.019509, - 0.039975, - -0.024895, - -0.033348, - -0.014341, - 0.026543, - -0.043798, - 0.04533, - 0.022153, - -0.0035295, - 0.0066777, - -0.064771, - 0.0068011, - 0.093552, - -0.018996, - 0.030065, - 0.093841, - 0.0094492, - 0.016464, - 0.09485, - -0.045123, - -0.096893, - 0.020778, - 0.090834, - -0.11165, - 0.0091799, - 0.039782, - 0.038785, - -0.078136, - -0.026757, - -0.021478, - -0.10037, - -0.12645, - 0.077045, - -0.0042631, - -0.073099, - 0.05904, - 0.090886, - 0.093094, - -0.0024919, - 0.11208, - -0.0064709, - 0.11455, - -0.0041953, - -0.0007987, - -0.012447, - 0.10879, - 0.047531, - 0.037453, - -0.034092, - 0.0067543, - -0.013877, - -0.12383, - 0.043753, - -0.028451, - 0.088415, - -0.02814, - -0.039293, - 0.037214, - 0.083954, - 0.0039486, - -0.038954, - 0.0046123, - -0.063552, - -0.037744, - -0.015158, - 0.037233, - 0.024561, - -0.036719, - 0.07446, - 0.011064, - 0.012551, - 0.017855, - -0.12289, - -0.069639, - 0.011854, - 0.10049, - -0.0043691, - 0.022962, - 0.016824, - -0.079424, - -0.043642, - 0.035227, - -0.079849, - -0.12027, - 0.0052341, - 0.010195, - 0.040359, - 0.0026712, - 0.019406, - 0.01341, - -0.01721, - 0.029358, - 0.077673, - 0.018017, - -0.0070537, - 0.029946, - -0.0031421, - 0.039377, - -0.0035375, - -0.0017434, - 0.059636, - -0.017595, - 0.073799, - -0.05939, - 0.010403, - 0.0033949, - -0.04179, - 0.036131, - 0.02102, - -0.075529, - -0.007378, - 0.0099973, - -0.056768, - 0.028826, - 0.0081318, - -0.030243, - 0.0094568, - 0.056662, - -0.0031374, - -0.0082995, - -0.0033281, - -0.072009, - -0.056224, - 0.0053656, - -0.024215, - 0.040207, - 0.03335, - 0.06851, - 0.044468, - 0.037668, - 0.035859 - ], - "property": [ - 0.049626, - -0.033249, - 0.030007, - 0.057659, - 0.0046694, - 0.038318, - 0.026147, - -0.074032, - 0.063164, - 0.0083634, - -0.017266, - -0.037619, - 0.035436, - 0.0018777, - -0.014328, - -0.01264, - 0.10189, - -0.0059564, - 0.062168, - 0.0083875, - 0.00063217, - -0.03692, - 0.011084, - 0.051916, - -0.013933, - 0.015883, - -0.047937, - 0.0216, - 0.056337, - 0.0060772, - -0.0042439, - 0.0080123, - 0.0026424, - -0.018548, - 0.021703, - 0.014298, - -0.039225, - -0.01509, - -0.037336, - 0.042549, - 0.054294, - -0.098361, - -0.0067475, - 0.018251, - -0.061367, - -0.047634, - -0.013471, - 0.024855, - -0.015843, - -0.034775, - -0.0037077, - -0.0079074, - -0.033531, - 0.026814, - -0.073442, - -0.027153, - -0.018258, - -0.021722, - -0.017537, - -0.066567, - 0.088867, - -0.014091, - 0.13894, - 0.071541, - 0.016459, - -0.0072084, - 0.061341, - -0.0029096, - 0.031267, - -0.022918, - 0.046949, - -0.044409, - -0.0015043, - 0.020596, - 0.013397, - -0.033727, - -0.052114, - -0.016641, - 0.013195, - 0.034529, - -0.01667, - 0.00488, - -0.0040997, - 0.039975, - -0.048255, - 0.0011247, - 0.054932, - -0.041783, - 0.0082378, - 0.026156, - -0.0067994, - 0.03235, - -0.06894, - 0.0079746, - -0.0089508, - 0.064425, - -0.020063, - -0.00090888, - 0.06182, - 0.0076569, - 0.028103, - 0.019281, - -0.038522, - 0.015527, - 0.0087237, - -0.10862, - -0.0088428, - 0.063333, - 0.020909, - -0.04314, - 0.011515, - 0.10287, - 0.065535, - -0.022491, - 0.011097, - 0.0070638, - -0.014282, - -0.025129, - -0.045202, - 0.060257, - -0.015377, - -0.00025031, - 0.002272, - -0.029092, - 0.076281, - 0.014605, - 0.028406, - -0.098277, - -0.023874, - 0.074923, - 0.093457, - -0.053606, - 0.03825, - 0.02317, - 0.02885, - 0.029635, - 0.02571, - 0.037033, - -0.024494, - -0.016516, - -0.035891, - -0.0016257, - 0.0022023, - 0.0052228, - -0.016185, - 0.0035727, - 0.057936, - 0.003645, - -0.027398, - -0.0060612, - 0.031402, - 0.054359, - 0.019593, - -0.085271, - 0.01884, - -0.013577, - 0.021437, - 0.024523, - -0.010129, - -0.013956, - 0.037236, - -0.018233, - -0.071633, - 0.0016553, - 0.04057, - -0.028846, - 0.021593, - -0.0029747, - 0.00010971, - 0.011253, - 0.016327, - -0.014434, - 0.051807, - -0.025484, - -0.085437, - 0.035652, - 0.019634, - 0.054955, - -0.048033, - -0.015065, - 0.017522, - -0.056848, - 0.015285, - -0.0020534, - -0.035254, - -0.030553, - -0.02023, - 0.075295, - 0.043513, - -0.066421, - -0.041975, - 0.051546, - -0.009825, - 0.047264, - -0.047384, - -0.034899, - 0.051833, - 0.047008, - 0.00433, - 0.030659, - -0.12939, - 0.077072, - -0.020153, - -0.071996, - 0.083769, - -0.075803, - 0.036593, - -0.056178, - -0.0079054, - -0.027997, - 0.081488, - -0.016999, - -0.024298, - -0.017845, - 0.024627, - 0.024877, - -0.00089947, - 0.051368, - 0.016415, - 0.001994, - 0.027612, - -0.043952, - 0.016673, - 0.096694, - 0.033437, - -0.025297, - -0.057207, - 0.045078, - -0.039683, - -0.015383, - -0.051759, - -0.028967, - -0.08871, - -0.060558, - 0.0085061, - 0.0051845, - -0.041163, - 0.011506, - -0.013322, - -0.03374, - 0.039604, - -0.0047184, - 0.079476, - -0.0076217, - -0.021616, - -0.0039263, - 0.02679, - 0.01908, - -0.01469, - 0.0086204, - -0.040134, - -0.042716, - 0.035137, - 0.012167, - 0.01292, - -0.031013, - -0.034276, - 0.014478, - 0.028466, - 0.018412, - 0.0081918, - -0.019683, - -0.043769, - -0.017176, - -0.014864, - -0.035747, - 0.004515, - -0.016608, - -0.019663, - 0.006969, - -0.070485, - 0.091892, - -0.10477, - -0.036454, - 0.043637, - -0.04843, - 0.059418, - 0.0043965, - 0.055955, - -0.045177, - 0.071782, - -0.055368, - -0.042744, - -0.0075644, - 0.015363, - 0.013532, - -0.040077, - 0.026323, - -0.042448, - 0.050555, - -0.057643, - 0.014594, - -0.05655, - 0.055563, - -0.007533, - 0.0019664, - -0.080703, - 0.015321, - -0.016523, - -0.022204 - ], - "technology": [ - -0.043935, - -0.015652, - -0.018693, - 0.0017813, - -0.021476, - -0.016994, - 0.008906, - -0.072004, - 0.033977, - 0.027211, - -0.0061825, - -0.0090881, - 0.013367, - 0.0079475, - 0.0027854, - 0.024713, - 0.11929, - 0.032013, - 0.050482, - 0.017151, - 0.0049677, - 0.010504, - 0.017999, - 0.044372, - -0.025549, - -0.0075832, - -0.0095273, - -0.0091477, - 0.044274, - -0.0049907, - -0.004006, - -0.020818, - -0.0038078, - -0.041643, - 0.031612, - 0.024122, - 0.023184, - 0.00092676, - 0.039645, - -0.015091, - -0.054242, - -0.11667, - -0.025945, - -0.0082087, - 0.0093455, - -0.045142, - 0.019998, - 0.00038853, - -0.0064408, - 0.0040069, - -0.0099912, - 0.0057694, - 0.0023081, - 0.016638, - -0.047251, - 0.062468, - 0.052226, - -0.023813, - 0.014363, - 0.043312, - 0.036562, - 0.029261, - 0.096323, - 0.023469, - 0.03295, - -0.0079242, - -0.023182, - -0.0087273, - 0.0089222, - -0.013797, - 0.010736, - 0.0057295, - -0.032876, - 0.0063022, - -0.017673, - 0.040824, - 0.0081223, - -0.012213, - 0.021364, - -0.021717, - -0.022558, - 0.0051615, - -0.053558, - 0.03659, - -0.02815, - 0.0010359, - -0.0432, - -0.026375, - -0.017008, - 0.008225, - 0.040296, - 0.0024909, - -0.087289, - 0.010843, - -0.0074101, - 0.045039, - 0.039495, - -0.059814, - -0.032586, - 0.032801, - 0.013179, - -0.020126, - 0.041366, - -0.043444, - -0.026496, - -0.064343, - 0.030688, - 0.038226, - 0.042568, - -0.016515, - -0.033272, - 0.065987, - 0.046317, - 0.015947, - -0.02143, - -0.0095954, - -0.054443, - 0.00087666, - -0.051883, - 0.04617, - -0.064374, - -0.022966, - -0.008298, - -0.0006226, - 0.063917, - 0.020029, - -0.083403, - -0.053324, - -0.0060044, - 0.1107, - 0.0084213, - -0.032905, - -0.019585, - -0.042178, - 0.040703, - -0.019822, - 0.053995, - -0.00050777, - -0.010448, - 0.039567, - 0.0057569, - 0.0002949, - 0.023794, - 0.029786, - -0.038232, - -0.025489, - -0.033313, - 0.0019158, - -0.016647, - -0.0044897, - 0.039068, - 0.054209, - 0.023242, - -0.095248, - -0.00082046, - 0.035202, - 0.024928, - 0.03578, - 0.0075397, - -0.0031934, - 0.043892, - 0.0053068, - -0.071898, - 0.010758, - 0.029205, - 0.0061525, - -0.011044, - 0.0023382, - 0.030058, - -0.033034, - 0.013602, - 0.051668, - -0.01976, - 0.018656, - 0.021181, - 0.033497, - -0.032348, - 0.05576, - -0.057035, - 0.049457, - 0.018577, - 0.007047, - -0.02332, - -0.010045, - -0.035395, - -0.036016, - -0.023375, - 0.066055, - -0.0012105, - 0.026111, - -0.031279, - 0.059594, - -0.015085, - -0.0098811, - 0.0011418, - -0.0048486, - -0.035687, - -0.0048978, - 0.0088495, - 0.020481, - -0.11941, - -0.0017946, - 0.033993, - -0.010821, - -0.0036172, - -0.0025642, - -0.020478, - 0.0085164, - -0.013675, - -0.024085, - 0.092838, - 0.021976, - 0.018994, - 0.024398, - 0.023207, - 0.035541, - 0.024166, - -0.013656, - -0.034747, - -0.0203, - -0.0031713, - 0.016082, - 0.0097284, - 0.07563, - 0.0022792, - -0.025491, - 0.043541, - 0.027402, - -0.0060906, - 0.0043743, - -0.0088905, - -0.036164, - -0.073052, - -0.056658, - 0.027007, - 0.018034, - 0.017054, - 0.01136, - 0.0097116, - -0.02678, - 0.012007, - 0.0012752, - 0.031914, - -0.00012907, - 0.020355, - 0.021975, - -0.018015, - 0.0069444, - 0.028356, - 0.018784, - 0.033717, - -0.00039441, - -0.050523, - -0.029452, - 0.0042959, - 0.049316, - 0.012012, - 0.019226, - 0.016332, - 0.039801, - -0.0059378, - 0.0267, - -0.030995, - 0.020472, - 0.010133, - -0.026627, - 0.037616, - 0.004399, - 0.0088383, - 0.0267, - -0.0029024, - 0.076653, - -0.090773, - -0.034222, - -0.02001, - -0.014075, - 0.018648, - 0.058457, - -0.025015, - -0.058463, - 0.066386, - -0.0086424, - -0.013188, - 0.0095233, - -0.031416, - -0.04736, - -0.037291, - 0.02238, - -0.011431, - -0.0054187, - -0.050486, - 0.0011885, - -0.022251, - -0.043466, - -0.000012782, - -0.0019023, - -0.0082833, - -0.0065147, - 0.035474, - -0.022503 - ], - "stint": [ - -0.019732, - -0.14436, - 0.041386, - -0.042281, - 0.052132, - -0.09183, - -0.039618, - -0.15401, - 0.021309, - 0.033097, - -0.034223, - -0.019767, - -0.075023, - 0.078142, - -0.046321, - 0.018778, - 0.048686, - -0.002301, - 0.019907, - 0.029501, - 0.038481, - -0.024157, - -0.097411, - 0.063903, - 0.019793, - -0.017783, - 0.071266, - -0.017448, - -0.09766, - 0.012287, - -0.029455, - -0.064173, - -0.059828, - -0.16402, - -0.015405, - 0.028069, - -0.025312, - 0.019363, - 0.037864, - 0.020208, - 0.0046803, - -0.094264, - -0.02788, - 0.016379, - -0.0055841, - 0.14138, - 0.0091078, - -0.097157, - 0.040555, - 0.067392, - -0.048404, - 0.045671, - 0.081613, - -0.020903, - -0.14665, - -0.044073, - -0.081701, - -0.060123, - -0.040485, - -0.030246, - -0.022324, - 0.038464, - 0.13049, - -0.07783, - 0.0013434, - -0.045873, - 0.0058762, - -0.022358, - -0.037969, - -0.10454, - -0.10873, - 0.03242, - 0.034592, - -0.028554, - 0.079771, - 0.055969, - -0.0028242, - 0.04715, - -0.023817, - 0.026009, - -0.012593, - -0.10527, - 0.033997, - 0.13267, - -0.047265, - 0.047277, - 0.045845, - -0.06065, - -0.038027, - 0.025394, - 0.063014, - 0.039555, - -0.15075, - -0.061775, - 0.09511, - 0.078818, - 0.045219, - -0.034887, - 0.030817, - 0.00067359, - 0.063643, - 0.058495, - 0.0094081, - 0.038568, - -0.021772, - -0.071559, - -0.035825, - -0.12456, - 0.088253, - 0.047425, - 0.064185, - -0.031895, - -0.034386, - 0.068541, - 0.020798, - 0.048702, - -0.0084081, - -0.024317, - -0.063144, - 0.020604, - 0.0078013, - -0.092282, - 0.040555, - 0.07948, - 0.10651, - -0.023602, - -0.0064203, - -0.068512, - 0.0081151, - 0.079662, - 0.038424, - -0.0033283, - -0.044225, - -0.085924, - -0.12609, - 0.015096, - -0.019765, - 0.021756, - 0.083323, - 0.015434, - -0.033975, - 0.035915, - 0.012915, - 0.012534, - -0.037133, - 0.021697, - 0.014451, - 0.0060179, - 0.033637, - -0.13081, - 0.051881, - 0.10923, - -0.075647, - -0.12261, - -0.077082, - 0.032415, - -0.073672, - 0.096947, - 0.039378, - -0.046313, - -0.015459, - 0.046953, - -0.01409, - 0.062649, - -0.065434, - 0.041693, - -0.025612, - -0.16764, - -0.034958, - 0.051626, - 0.14245, - 0.0037832, - 0.029459, - 0.00984, - 0.031481, - 0.046199, - 0.038194, - 0.048226, - 0.020914, - 0.085375, - -0.027597, - 0.008645, - -0.017436, - -0.021841, - 0.06642, - -0.030795, - 0.1157, - 0.14395, - 0.032522, - 0.076011, - 0.086911, - 0.14558, - 0.0040019, - 0.0017763, - 0.044677, - 0.039778, - 0.11924, - -0.027552, - 0.0598, - -0.032164, - -0.17356, - 0.063282, - -0.076416, - -0.046868, - -0.056801, - 0.028666, - -0.068453, - 0.054914, - 0.058324, - -0.060782, - 0.14677, - 0.035686, - 0.084311, - -0.033867, - 0.061843, - -0.0054143, - -0.0903, - -0.019471, - 0.10491, - -0.11606, - -0.017032, - -0.015466, - -0.065802, - 0.12311, - -0.0035212, - -0.0088929, - 0.084129, - 0.10336, - 0.0013452, - 0.052471, - 0.11165, - -0.18278, - 0.071978, - -0.050259, - -0.011464, - -0.009784, - 0.021733, - -0.060289, - 0.014635, - 0.015007, - 0.16287, - -0.058831, - 0.0025847, - 0.016584, - 0.015481, - 0.0026365, - 0.026321, - -0.086994, - 0.0023619, - 0.048049, - 0.0283, - 0.065325, - 0.085453, - 0.022117, - 0.0361, - -0.041738, - 0.12346, - 0.036006, - 0.039509, - 0.10337, - 0.029178, - -0.0079923, - -0.00315, - -0.081423, - -0.047377, - 0.054538, - 0.062579, - -0.04191, - -0.015305, - -0.03564, - 0.03093, - 0.11873, - -0.12604, - 0.014103, - 0.04356, - -0.080778, - 0.0048306, - 0.026256, - -0.037821, - 0.074126, - 0.07651, - 0.066676, - -0.042056, - -0.026301, - -0.018213, - -0.044474, - 0.056722, - -0.015357, - -0.042812, - 0.010028, - 0.05022, - 0.013943, - 0.01785, - 0.0076398, - 0.005607, - 0.062683, - -0.12868, - 0.054006, - -0.012928, - 0.033634 - ], - "ethnicity": [ - 0.067396, - -0.07037, - 0.06805, - 0.0024313, - 0.018721, - 0.061292, - 0.029549, - -0.039342, - 0.088489, - -0.0050707, - -0.0036726, - -0.022978, - 0.015944, - -0.05107, - -0.00055538, - -0.025444, - 0.029213, - 0.011041, - 0.040825, - 0.094556, - -0.028099, - -0.034658, - 0.084409, - 0.067608, - 0.0048771, - 0.077611, - -0.065551, - -0.044995, - 0.084811, - 0.049768, - 0.0025576, - 0.040694, - -0.019104, - -0.011899, - -0.019932, - 0.025857, - -0.0050248, - 0.033297, - -0.033158, - 0.027388, - -0.02613, - -0.084828, - 0.022084, - -0.058875, - 0.05156, - -0.0000010634, - -0.031808, - -0.041284, - -0.013344, - -0.01245, - 0.0019092, - -0.028591, - -0.012609, - 0.022063, - -0.0057735, - 0.023287, - 0.053299, - 0.017773, - -0.0027841, - -0.072636, - -0.023684, - -0.018102, - 0.064503, - -0.0047956, - 0.08366, - -0.034719, - -0.024401, - 0.071276, - -0.012296, - 0.016861, - 0.0023706, - -0.021373, - 0.036819, - -0.09322, - 0.02348, - 0.038491, - 0.056513, - 0.010485, - 0.063438, - 0.019751, - -0.017946, - -0.0047921, - -0.012237, - 0.04706, - -0.048789, - -0.071091, - -0.03173, - -0.0057237, - -0.008638, - 0.022957, - 0.021928, - 0.018426, - -0.069075, - 0.00075723, - 0.021117, - 0.030179, - -0.043521, - -0.014542, - 0.055958, - -0.024755, - 0.081216, - -0.069755, - 0.0473, - -0.018007, - -0.029199, - -0.055145, - -0.039271, - 0.018431, - 0.013177, - 0.0044611, - 0.028122, - 0.086274, - 0.037743, - -0.066293, - -0.014481, - -0.030965, - -0.0024292, - -0.029152, - -0.03477, - 0.090264, - 0.026765, - -0.035917, - 0.044867, - -0.048571, - 0.058104, - -0.0062996, - -0.0072532, - -0.073496, - -0.048024, - 0.10363, - -0.041892, - -0.072954, - 0.033492, - -0.010475, - -0.029767, - 0.050658, - 0.012632, - 0.063701, - 0.012565, - -0.015474, - 0.024303, - -0.093801, - 0.021071, - 0.049811, - 0.0099918, - -0.084871, - -0.038653, - -0.0018731, - -0.05157, - 0.020183, - 0.0069542, - 0.039542, - 0.015813, - -0.054326, - 0.034591, - 0.061027, - 0.071058, - 0.013255, - 0.016011, - 0.071296, - -0.0079341, - -0.0069466, - -0.11983, - -0.021437, - -0.035613, - -0.015634, - -0.0079895, - -0.0026208, - -0.056106, - -0.042148, - -0.011362, - -0.05871, - -0.025667, - 0.064223, - 0.017464, - 0.064882, - 0.0060378, - 0.056342, - 0.019206, - -0.034141, - 0.035246, - 0.0030339, - 0.046738, - 0.031222, - 0.047561, - -0.10109, - -0.011891, - 0.10184, - -0.021317, - 0.036117, - 0.019036, - 0.11337, - -0.034326, - -0.011146, - 0.090972, - 0.11761, - -0.013898, - 0.00088826, - -0.016681, - -0.054778, - -0.12749, - 0.038854, - -0.013038, - -0.098094, - -0.046876, - 0.066334, - 0.023237, - 0.0063788, - -0.0083354, - -0.0020195, - 0.11181, - -0.031969, - 0.0053455, - 0.034787, - 0.030285, - -0.0013015, - 0.044103, - -0.030592, - -0.02953, - 0.0055591, - 0.029945, - -0.0044754, - -0.041494, - 0.0856, - 0.0056535, - 0.022778, - 0.043411, - 0.050015, - -0.0063195, - -0.066533, - -0.0060168, - -0.020451, - -0.10518, - -0.063673, - 0.039254, - 0.047399, - -0.0035337, - 0.031398, - -0.041063, - -0.061536, - 0.013684, - -0.027437, - -0.015395, - -0.0032364, - -0.00046645, - -0.058485, - 0.0002823, - -0.074724, - -0.080733, - -0.035263, - 0.001468, - -0.063881, - -0.064746, - -0.02656, - 0.034461, - -0.040366, - -0.011795, - 0.023032, - 0.082376, - -0.063674, - 0.0011791, - -0.053494, - 0.0051859, - -0.0076654, - 0.0071606, - 0.0029506, - -0.056808, - 0.022743, - 0.017417, - 0.038661, - -0.0019804, - 0.071484, - -0.089141, - -0.042873, - 0.077244, - -0.054631, - 0.026619, - 0.0061455, - -0.075249, - -0.023633, - 0.073326, - -0.006802, - -0.033189, - 0.061625, - 0.040722, - 0.093835, - -0.032731, - 0.023596, - -0.00098717, - -0.043226, - 0.023241, - -0.049394, - -0.059353, - -0.02795, - -0.023604, - 0.076017, - 0.043897, - -0.0017788, - -0.0045326, - -0.014836 - ], - "tourist": [ - 0.010166, - -0.011167, - 0.032162, - 0.014406, - -0.083315, - -0.028618, - -0.028075, - -0.095333, - 0.072952, - 0.03969, - 0.04517, - -0.030581, - -0.047231, - -0.080379, - -0.048212, - 0.041026, - 0.084801, - -0.028321, - -0.0065816, - 0.050919, - -0.024988, - -0.034994, - -0.0089141, - 0.074436, - 0.029522, - -0.0069002, - 0.02788, - 0.093633, - -0.047742, - 0.032034, - -0.023146, - 0.01418, - 0.03622, - -0.031021, - 0.032633, - 0.0018972, - 0.044046, - 0.045289, - -0.023114, - 0.0068252, - 0.090827, - -0.14845, - -0.038359, - 0.0023641, - 0.10638, - 0.039288, - -0.0028968, - -0.032846, - -0.045577, - 0.050672, - 0.014737, - 0.0003911, - -0.060966, - -0.055209, - 0.045822, - 0.0044356, - 0.032767, - -0.0077333, - -0.081333, - -0.050425, - 0.011687, - 0.051004, - 0.1576, - 0.0067537, - 0.035727, - 0.036897, - -0.0053308, - -0.026722, - -0.0056854, - 0.050484, - 0.011364, - -0.0051304, - 0.1019, - 0.013307, - 0.040957, - -0.050402, - 0.033248, - 0.0033754, - -0.0080456, - -0.070045, - -0.022932, - 0.0086868, - -0.072421, - 0.01335, - -0.036978, - -0.11469, - 0.043831, - 0.036702, - -0.022987, - -0.072342, - -0.056773, - 0.075923, - -0.108, - -0.050381, - -0.013438, - 0.08797, - 0.037879, - -0.0055967, - 0.0052484, - -0.016991, - 0.044623, - 0.11677, - -0.072576, - -0.031176, - 0.011749, - -0.10342, - 0.047624, - 0.00056431, - -0.011955, - 0.057625, - -0.0051634, - 0.089445, - 0.090758, - 0.05102, - 0.0049306, - -0.046552, - -0.0097937, - -0.0025297, - -0.059181, - 0.12276, - 0.02278, - 0.048591, - -0.06759, - -0.04527, - 0.13095, - -0.00215, - 0.0026293, - -0.07886, - -0.019292, - 0.066119, - -0.019695, - 0.059921, - -0.070052, - -0.01178, - -0.077439, - -0.0054495, - 0.033777, - 0.030724, - -0.023766, - -0.0066306, - -0.028208, - -0.036301, - 0.029773, - 0.028341, - 0.025435, - 0.031795, - -0.019311, - 0.027862, - -0.067216, - 0.01407, - 0.048502, - 0.13407, - -0.048452, - -0.11323, - 0.038393, - 0.030214, - -0.075961, - 0.077639, - -0.058515, - -0.016435, - 0.021434, - 0.0071839, - -0.072773, - 0.022874, - -0.041279, - 0.053693, - 0.1149, - -0.095783, - 0.046171, - 0.13568, - 0.019508, - 0.04618, - -0.015643, - -0.02231, - 0.010615, - 0.079163, - -0.11201, - -0.057313, - -0.051518, - 0.096737, - -0.067844, - 0.056247, - 0.018011, - -0.12414, - 0.037181, - -0.092456, - 0.044405, - 0.10189, - 0.0056072, - -0.045041, - -0.050439, - 0.063205, - 0.018913, - 0.099482, - -0.060543, - -0.0046092, - 0.034527, - -0.046667, - 0.0026109, - -0.013566, - -0.17157, - 0.10619, - -0.020196, - -0.03952, - 0.068496, - 0.083947, - -0.094368, - 0.029312, - 0.00086863, - -0.01227, - 0.17035, - -0.049243, - -0.051681, - -0.052903, - -0.077924, - -0.01596, - 0.00067449, - -0.038657, - 0.0023613, - -0.013537, - -0.040973, - -0.070292, - 0.0017873, - 0.087575, - -0.0016574, - -0.0033828, - -0.092007, - 0.068661, - -0.0099546, - 0.0053765, - -0.061284, - -0.015069, - -0.014552, - 0.0030707, - -0.020155, - -0.066879, - 0.0087377, - 0.048387, - -0.01189, - -0.032601, - 0.068306, - 0.053645, - 0.021339, - -0.020614, - -0.021162, - 0.023346, - 0.0061168, - -0.013301, - -0.090356, - -0.038471, - 0.031185, - -0.039991, - 0.0090892, - -0.053031, - 0.040258, - 0.041457, - -0.041011, - 0.014228, - 0.044651, - 0.074876, - -0.020014, - 0.021892, - 0.015694, - -0.012095, - 0.07585, - 0.037026, - 0.0090129, - -0.0003968, - 0.086725, - 0.0036997, - -0.0073729, - 0.080999, - -0.10207, - -0.036983, - 0.023986, - -0.022822, - 0.034021, - -0.0259, - -0.017414, - -0.075649, - 0.1248, - 0.030249, - -0.0015311, - 0.035505, - 0.00061653, - 0.042482, - 0.012755, - -0.11331, - -0.0018804, - -0.010703, - 0.016344, - 0.071373, - -0.033085, - 0.065613, - -0.0064177, - 0.017367, - 0.030365, - 0.044827, - -0.042604, - -0.098142 - ], - "cuisine": [ - -0.041856, - -0.12702, - 0.099634, - -0.037115, - 0.032322, - -0.024548, - 0.034513, - -0.09081, - 0.076748, - 0.063747, - -0.032398, - -0.077653, - -0.081811, - -0.019488, - 0.0056618, - -0.026305, - 0.14803, - -0.005906, - 0.04387, - 0.096154, - -0.00020025, - -0.0036156, - 0.027545, - 0.071284, - -0.0059227, - 0.024312, - -0.010167, - 0.049947, - 0.0075155, - -0.018157, - 0.05602, - -0.052374, - 0.098968, - -0.028758, - 0.039819, - 0.0078894, - 0.048181, - 0.15759, - 0.060242, - 0.033536, - -0.017355, - -0.10922, - -0.014339, - -0.023147, - 0.088023, - -0.044205, - -0.038248, - -0.11115, - -0.0063387, - -0.023787, - -0.040015, - 0.018133, - 0.019971, - -0.029944, - -0.045965, - 0.019601, - 0.043836, - 0.00046079, - -0.015425, - -0.018264, - 0.0090995, - -0.043188, - 0.0695, - -0.028853, - 0.061958, - 0.099653, - -0.020285, - 0.053048, - -0.050413, - -0.057326, - 0.0083966, - -0.034922, - -0.032366, - -0.040392, - -0.013172, - 0.00331, - -0.029695, - -0.016379, - 0.0031364, - 0.054948, - -0.0010323, - 0.065836, - 0.011801, - 0.057618, - -0.066123, - -0.0702, - -0.041212, - -0.063424, - 0.0069295, - 0.052532, - -0.012238, - 0.075354, - -0.084536, - 0.048648, - -0.049792, - 0.11563, - -0.026512, - 0.14371, - 0.019143, - -0.066908, - 0.039365, - 0.05164, - -0.040057, - -0.053739, - -0.028077, - -0.091234, - -0.14351, - 0.099535, - 0.0096671, - 0.015572, - 0.028339, - 0.071792, - 0.056976, - 0.057846, - -0.011226, - -0.059342, - -0.069356, - 0.021901, - -0.030228, - 0.041033, - -0.02001, - -0.019696, - -0.023368, - -0.052868, - 0.13616, - 0.042624, - -0.022277, - -0.10804, - 0.0095323, - 0.14477, - -0.0087206, - -0.00078215, - -0.0093773, - -0.10264, - -0.041609, - 0.00075211, - -0.028891, - 0.0023416, - 0.02787, - -0.091038, - 0.031605, - -0.042512, - 0.0023247, - -0.018525, - -0.031162, - -0.039943, - 0.012793, - 0.063285, - -0.040746, - -0.011205, - 0.072776, - 0.030661, - 0.013689, - 0.019575, - 0.042401, - 0.052341, - -0.069897, - 0.15698, - -0.043675, - 0.042448, - -0.011593, - 0.018253, - -0.10568, - -0.016546, - 0.031889, - 0.13099, - -0.021987, - -0.074363, - 0.036993, - 0.010264, - 0.067635, - 0.010391, - -0.022736, - -0.028309, - 0.01839, - 0.050772, - -0.061116, - 0.091629, - -0.047479, - -0.048337, - -0.018132, - -0.0047562, - 0.057574, - -0.11981, - 0.10225, - -0.029917, - 0.096617, - 0.12939, - -0.055287, - -0.029413, - 0.076517, - 0.07126, - -0.017942, - -0.054609, - -0.059602, - 0.069873, - 0.027647, - -0.067046, - 0.011374, - -0.042842, - -0.14641, - -0.030907, - -0.033023, - -0.077697, - -0.011015, - 0.014641, - 0.033525, - 0.0071864, - 0.027004, - 0.010023, - 0.10727, - -0.021848, - 0.036962, - 0.019978, - 0.043481, - -0.0028404, - 0.0076464, - 0.01996, - -0.042948, - 0.011535, - -0.058182, - 0.015719, - 0.017609, - 0.10605, - -0.025546, - 0.092745, - 0.051963, - 0.08598, - -0.038177, - -0.013021, - -0.11398, - -0.017891, - -0.087085, - 0.018009, - 0.05632, - 0.024889, - -0.052854, - 0.058879, - 0.075413, - -0.035225, - 0.012905, - -0.057626, - -0.054771, - -0.026144, - 0.05252, - 0.032723, - 0.056326, - -0.089523, - 0.027924, - -0.044592, - 0.10231, - -0.15636, - -0.18586, - -0.081696, - 0.027945, - 0.057564, - -0.12194, - 0.016961, - -0.010947, - 0.17704, - 0.072655, - 0.073236, - 0.14388, - -0.036659, - 0.012744, - 0.01279, - -0.038424, - -0.0071685, - 0.01231, - -0.01224, - -0.008853, - 0.088833, - -0.10062, - -0.036603, - -0.025005, - -0.0081357, - -0.012468, - -0.0046475, - -0.083465, - -0.031671, - 0.11844, - 0.017567, - -0.048932, - 0.034825, - -0.027868, - 0.037722, - 0.021196, - 0.042909, - -0.010635, - -0.036139, - -0.028198, - 0.0020927, - 0.0055673, - -0.06208, - 0.0074683, - -0.007189, - 0.064321, - 0.096212, - -0.036822, - -0.076204 - ], - "expenditures": [ - 0.043377, - 0.0097498, - -0.018296, - -0.013061, - 0.058269, - -0.023622, - -0.014676, - -0.065406, - 0.036492, - 0.016657, - -0.0081418, - -0.021282, - -0.0080241, - -0.020808, - -0.00078889, - 0.048163, - 0.0033082, - -0.054474, - 0.04773, - -0.031001, - 0.0076151, - -0.042392, - -0.046392, - 0.045471, - -0.0084464, - 0.014274, - -0.05541, - 0.035735, - 0.075254, - -0.0084422, - 0.020362, - -0.019814, - -0.034414, - -0.017705, - 0.0072168, - 0.040372, - -0.028946, - 0.052043, - -0.0063215, - 0.016426, - 0.024188, - -0.057667, - 0.033302, - 0.04136, - 0.0035488, - 0.012156, - 0.0031132, - -0.019751, - 0.0027817, - 0.011065, - -0.0072362, - 0.023124, - 0.0060222, - 0.0066098, - -0.0831, - 0.050032, - -0.060414, - 0.039935, - 0.0017657, - 0.010182, - 0.037524, - -0.077988, - 0.094853, - 0.01967, - -0.001896, - -0.019122, - -0.022582, - -0.039566, - -0.018596, - 0.019968, - 0.011821, - -0.066067, - 0.054028, - -0.0017507, - 0.038091, - -0.023127, - 0.040273, - -0.017924, - -0.043434, - -0.0058757, - -0.017366, - -0.016835, - -0.045266, - 0.019252, - 0.0060188, - 0.0061959, - -0.015831, - -0.032025, - 0.0062916, - -0.041646, - -0.015078, - 0.01527, - -0.032817, - 0.019233, - -0.033452, - 0.014687, - -0.030903, - -0.045943, - 0.016578, - 0.039704, - 0.002327, - -0.051369, - -0.024713, - -0.041341, - 0.068778, - -0.019884, - 0.036484, - -0.020722, - -0.028133, - 0.001617, - 0.009559, - 0.055497, - 0.040072, - -0.019349, - 0.026719, - -0.062875, - -0.0042305, - -0.025617, - -0.028791, - 0.027133, - -0.030449, - 0.06356, - 0.01052, - -0.0049089, - 0.11014, - -0.0083899, - -0.022736, - -0.062928, - -0.001453, - 0.081158, - -0.00095004, - 0.0065381, - 0.034089, - 0.0049227, - -0.014868, - -0.012337, - 0.020452, - 0.041456, - -0.017774, - 0.060139, - 0.038144, - -0.011279, - -0.0015965, - 0.047024, - 0.012704, - -0.043248, - 0.018957, - -0.003322, - 0.062376, - -0.03659, - 0.020601, - 0.048702, - -0.0053286, - -0.084745, - 0.020167, - 0.0032289, - -0.004953, - 0.018317, - -0.053577, - -0.016839, - 0.071543, - 0.019301, - -0.029268, - -0.024633, - -0.016827, - 0.024626, - -0.019738, - -0.059977, - 0.018027, - -0.044244, - 0.039396, - -0.019791, - -0.019303, - -0.022428, - -0.01517, - 0.032817, - -0.057764, - 0.030256, - -0.036924, - 0.021075, - 0.022526, - 0.0069323, - -0.0039511, - -0.0085959, - -0.034275, - -0.063045, - 0.013717, - 0.081248, - 0.011804, - -0.027173, - 0.049281, - 0.023736, - -0.030405, - -0.031375, - -0.011004, - -0.086397, - -0.064326, - -0.0075716, - -0.0027709, - -0.024662, - -0.12101, - 0.022299, - 0.024046, - 0.013875, - 0.0083573, - 0.050814, - -0.036661, - -0.015082, - 0.034528, - -0.022496, - 0.049582, - -0.0028723, - -0.0078134, - 0.018477, - 0.057874, - 0.010386, - -0.011268, - 0.019241, - -0.03214, - -0.0097564, - -0.0045821, - 0.023691, - 0.02709, - 0.055042, - 0.058754, - 0.02597, - 0.02962, - 0.016952, - 0.0092908, - 0.020782, - -0.0092936, - -0.012234, - -0.049053, - -0.008875, - 0.071204, - -0.027108, - -0.037193, - -0.025482, - -0.067433, - 0.0037525, - -0.052606, - -0.030877, - -0.012179, - -0.02343, - -0.0023812, - 0.04624, - -0.0039532, - -0.08378, - 0.0049258, - -0.008848, - -0.017209, - 0.0052361, - 0.017396, - -0.044126, - -0.0222, - -0.0041136, - -0.028995, - 0.011952, - -0.003034, - 0.022522, - -0.014567, - -0.047167, - -0.050207, - -0.023021, - 0.04365, - 0.00054257, - -0.031225, - -0.016718, - 0.0006421, - 0.062079, - 0.025032, - 0.047688, - -0.07144, - -0.04764, - 0.00016919, - -0.01408, - -0.015333, - 0.021834, - -0.028566, - -0.016862, - 0.042246, - -0.02612, - 0.0035621, - 0.021963, - 0.017766, - 0.047167, - -0.042279, - 0.053505, - -0.062909, - 0.013404, - 0.028083, - 0.021486, - -0.03282, - 0.021077, - -0.013498, - -0.021949, - -0.049062, - -0.024844, - -0.0083446, - 0.033811 - ], - "wintry": [ - 0.037661, - -0.024197, - 0.085243, - -0.067828, - 0.051564, - -0.095483, - -0.08509, - -0.080618, - 0.016012, - 0.0068312, - -0.091614, - -0.041334, - -0.032611, - -0.009313, - 0.017052, - -0.069854, - 0.028123, - -0.0084286, - 0.050421, - -0.007299, - -0.025722, - -0.088958, - -0.054312, - 0.068487, - 0.17221, - 0.019664, - 0.089523, - 0.10933, - -0.022108, - 0.03615, - 0.0023467, - -0.0041564, - -0.041652, - -0.20422, - 0.04591, - 0.053635, - 0.027218, - 0.076327, - -0.021871, - -0.041707, - 0.020209, - -0.1586, - 0.0036144, - -0.031059, - 0.0084527, - -0.013628, - -0.038851, - -0.029633, - -0.068911, - 0.011636, - 0.058936, - 0.077088, - -0.13199, - 0.035899, - -0.087823, - -0.0047767, - 0.09339, - -0.046109, - -0.05628, - 0.0048105, - -0.02149, - 0.023463, - 0.18328, - -0.019882, - -0.085371, - -0.023466, - -0.055004, - -0.013292, - -0.087926, - 0.084097, - 0.086589, - 0.055674, - -0.12084, - 0.043951, - 0.011884, - 0.02322, - -0.042769, - -0.072234, - -0.10552, - 0.050927, - -0.011909, - 0.0048965, - 0.14434, - 0.068268, - 0.018715, - -0.0097464, - 0.012503, - -0.039921, - -0.024167, - -0.013347, - -0.058963, - 0.00046203, - -0.10631, - 0.16963, - 0.023681, - 0.085821, - -0.018282, - 0.10171, - 0.065818, - 0.069893, - 0.046314, - 0.051889, - 0.0096683, - 0.097816, - 0.067538, - -0.010091, - -0.054133, - 0.020204, - -0.0193, - -0.041248, - -0.035111, - -0.0051133, - 0.015052, - 0.074679, - -0.022703, - -0.077627, - 0.01735, - 0.089017, - -0.011801, - -0.030543, - 0.0021238, - -0.053139, - 0.0060792, - -0.059111, - -0.0050042, - -0.0082252, - -0.0098976, - -0.050035, - -0.029062, - 0.086332, - 0.073002, - 0.058705, - -0.062807, - 0.06114, - 0.024664, - -0.026994, - 0.09705, - 0.04374, - -0.022381, - -0.019068, - 0.019016, - -0.12003, - -0.043389, - -0.050312, - 0.079898, - 0.022483, - 0.024701, - -0.0070695, - -0.10256, - -0.034654, - -0.011516, - 0.11756, - 0.050638, - 0.057981, - 0.038275, - 0.02641, - -0.0012617, - 0.011967, - -0.05184, - -0.027636, - 0.088805, - -0.12448, - -0.038903, - 0.061893, - -0.058673, - -0.010247, - 0.0031926, - -0.0022662, - 0.015548, - 0.085746, - -0.095432, - -0.012821, - -0.028672, - 0.033742, - 0.073057, - 0.070071, - 0.11388, - -0.036357, - -0.027617, - -0.051467, - -0.045803, - -0.018695, - -0.029084, - -0.14246, - -0.023201, - -0.0010967, - -0.06214, - 0.18547, - -0.074448, - 0.041513, - 0.062445, - -0.10221, - -0.034457, - -0.036424, - 0.0013321, - -0.03399, - 0.03522, - -0.017892, - -0.034697, - -0.033434, - -0.11078, - 0.044612, - -0.04744, - -0.043249, - -0.015567, - 0.11196, - -0.025529, - 0.10373, - 0.063279, - -0.025196, - 0.10654, - -0.024664, - 0.042788, - 0.065724, - 0.16311, - 0.03578, - 0.015845, - -0.053594, - -0.061853, - -0.15214, - -0.026911, - 0.0051158, - -0.0065433, - 0.11698, - -0.13569, - 0.044384, - -0.0078847, - 0.1205, - -0.07474, - 0.095363, - 0.032937, - -0.08096, - -0.04206, - -0.0056644, - -0.033634, - -0.020465, - 0.054744, - -0.050451, - 0.076526, - -0.13691, - 0.062921, - 0.04115, - -0.0012737, - -0.058606, - -0.10578, - -0.06696, - -0.022245, - -0.055166, - -0.025935, - 0.033834, - 0.061115, - -0.067632, - -0.042288, - 0.076472, - -0.0064148, - 0.036429, - 0.055455, - 0.043412, - 0.094133, - 0.005555, - 0.05903, - -0.062189, - -0.0030414, - -0.1788, - -0.013498, - -0.0052009, - 0.0097575, - -0.058363, - 0.033965, - -0.022745, - -0.090071, - 0.047096, - -0.14654, - 0.0031132, - 0.12575, - -0.098551, - -0.0041767, - -0.081496, - -0.019965, - 0.035657, - 0.12338, - -0.03892, - 0.071951, - -0.094382, - -0.065954, - -0.0055607, - 0.042737, - -0.065302, - -0.060027, - 0.026746, - 0.062846, - -0.04022, - 0.011174, - -0.0099193, - -0.04087, - -0.065404, - 0.014947, - 0.083199, - 0.01831, - -0.025988 - ], - "provisions": [ - 0.020213, - 0.0061081, - -0.0338, - -0.0026471, - -0.0078475, - -0.023888, - 0.013509, - -0.073916, - -0.04581, - 0.016716, - -0.052305, - -0.045441, - -0.013425, - -0.0066167, - 0.005549, - 0.037473, - 0.024778, - 0.017495, - 0.030229, - 0.025153, - -0.010819, - -0.05334, - 0.013014, - 0.015327, - 0.025526, - -0.0079364, - -0.041071, - -0.030706, - 0.10287, - -0.059167, - 0.017378, - -0.042188, - -0.06906, - -0.071748, - 0.050298, - -0.0021132, - 0.036181, - 0.01426, - 0.0062197, - -0.0049244, - 0.0020557, - -0.079509, - 0.032802, - 0.018583, - -0.016546, - -0.020445, - -0.026709, - 0.0021361, - 0.023883, - -0.006086, - -0.038076, - -0.016966, - 0.027385, - -0.029209, - -0.056249, - 0.031421, - -0.010674, - -0.026368, - -0.0058044, - -0.034668, - 0.0010725, - 0.023506, - 0.11568, - 0.026235, - 0.0089433, - -0.027903, - -0.023233, - -0.039201, - -0.020576, - 0.041392, - -0.029784, - -0.001802, - -0.0039226, - 0.01466, - -0.018092, - -0.00089256, - 0.021233, - -0.076238, - -0.036308, - 0.042188, - 0.0061591, - -0.018147, - 0.0087349, - 0.036599, - 0.026041, - 0.055618, - 0.028748, - -0.019913, - -0.018553, - -0.0093525, - 0.039413, - -0.035999, - -0.057742, - -0.00074409, - -0.041475, - -0.00014692, - -0.0055454, - 0.043472, - -0.041914, - -0.020719, - 0.016901, - -0.021143, - 0.00087021, - 0.021079, - 0.0047148, - -0.012184, - 0.013132, - 0.01932, - -0.0058109, - 0.0080847, - 0.0030722, - 0.0038056, - 0.053798, - -0.020378, - 0.015776, - 0.022298, - 0.034997, - -0.01148, - -0.048195, - 0.0082389, - -0.0018715, - 0.053227, - 0.029465, - -0.031267, - 0.07031, - 0.019693, - -0.0080207, - 0.0059466, - 0.039945, - 0.136, - 0.010657, - 0.054661, - -0.060664, - 0.040146, - 0.0058472, - -0.0017863, - -0.005853, - 0.019379, - -0.015865, - 0.032891, - 0.0086694, - 0.003668, - -0.014902, - 0.012252, - -0.023425, - 0.028466, - -0.0024942, - 0.030094, - -0.022228, - -0.0039813, - -0.0027234, - 0.037079, - 0.021886, - -0.06847, - 0.094789, - 0.040009, - -0.025013, - -0.018083, - -0.024272, - -0.023643, - 0.064972, - -0.0023422, - -0.0080117, - 0.0067675, - 0.021979, - -0.037451, - 0.056473, - -0.042939, - -0.0324, - -0.020503, - 0.031111, - -0.025925, - 0.014646, - 0.029995, - -0.058199, - 0.036002, - -0.021842, - 0.064822, - -0.046874, - -0.00017602, - 0.00029506, - -0.006886, - 0.051238, - -0.026226, - -0.018918, - -0.0053993, - 0.018843, - 0.081983, - 0.022665, - 0.021086, - -0.034032, - 0.097083, - -0.083256, - -0.036902, - 0.010395, - -0.0019963, - 0.014094, - 0.017188, - 0.0042636, - -0.021124, - -0.10574, - 0.0022728, - 0.0027683, - -0.018086, - 0.021105, - -0.0059009, - 0.01157, - -0.015793, - 0.0070019, - -0.03715, - 0.073302, - 0.019712, - 0.03723, - 0.0095248, - -0.0070598, - 0.058803, - 0.035673, - 0.016338, - -0.082829, - -0.062056, - 0.037662, - -0.0075796, - 0.026262, - 0.093192, - 0.081998, - 0.0062926, - 0.011889, - 0.024105, - -0.017146, - 0.003722, - -0.016285, - -0.04225, - -0.029343, - -0.041273, - -0.020824, - -0.042219, - 0.0067766, - 0.0058347, - 0.041077, - 0.047224, - 0.001808, - -0.003965, - 0.014017, - -0.00056566, - -0.0030568, - 0.087095, - -0.016865, - -0.0016084, - -0.012788, - 0.016614, - 0.034321, - -0.016981, - 0.018786, - 0.011399, - -0.0092074, - -0.0019209, - 0.0659, - 0.024654, - -0.036992, - 0.022813, - 0.0012118, - -0.018647, - -0.01155, - -0.041547, - 0.065212, - 0.015461, - -0.039141, - -0.014164, - -0.021302, - 0.0045443, - 0.019828, - 0.060284, - -0.085934, - -0.033573, - 0.009843, - 0.018405, - 0.0018889, - 0.036227, - -0.028462, - -0.0072916, - 0.043784, - 0.0011159, - 0.0016424, - -0.0057015, - -0.011711, - 0.044099, - -0.045782, - 0.091575, - 0.010186, - 0.034225, - 0.021352, - 0.010298, - 0.054713, - -0.030079, - -0.008779, - -0.045745, - 0.0092489, - -0.027544, - -0.043258, - -0.01375 - ], - "pseudoscience": [ - 0.014313, - -0.040449, - -0.045164, - -0.001879, - -0.022791, - -0.11586, - 0.06491, - -0.059183, - 0.013134, - -0.014616, - -0.031076, - -0.012699, - 0.018472, - -0.036408, - -0.010762, - -0.029675, - 0.074548, - 0.068063, - 0.003809, - -0.031944, - -0.022313, - -0.021203, - 0.044904, - 0.036226, - -0.00032096, - -0.056817, - 0.03753, - 0.051222, - 0.064845, - 0.033942, - 0.038446, - -0.039314, - 0.072998, - -0.010345, - 0.023825, - -0.0057826, - 0.006412, - -0.052567, - 0.017371, - 0.012793, - -0.013777, - -0.05759, - 0.0024729, - 0.019749, - 0.0020629, - 0.014665, - -0.026212, - 0.071957, - 0.01865, - -0.0085016, - -0.004201, - 0.041213, - 0.028014, - -0.0087822, - -0.032254, - 0.068708, - -0.0022392, - 0.029824, - -0.012986, - 0.045052, - 0.024642, - 0.036971, - 0.018878, - -0.008551, - -0.013218, - 0.014221, - 0.023793, - 0.0037907, - -0.011543, - -0.004249, - 0.018286, - -0.045442, - -0.03035, - 0.017833, - -0.021895, - 0.052681, - 0.020448, - -0.0090284, - 0.01125, - -0.0043834, - 0.011588, - 0.015438, - -0.022824, - 0.039836, - -0.0014581, - -0.015563, - 0.003113, - 0.0087817, - 0.067757, - -0.012196, - 0.011157, - 0.038852, - -0.027792, - 0.0032784, - 0.022057, - 0.021332, - 0.0091647, - -0.011478, - -0.00059107, - 0.036539, - -0.091865, - 0.016514, - 0.020356, - -0.013776, - -0.036212, - -0.039737, - 0.087176, - 0.067511, - 0.0073993, - -0.017553, - -0.00089733, - 0.028091, - 0.011414, - -0.024939, - 0.0083794, - 0.016132, - -0.023066, - -0.029844, - -0.037317, - -0.020244, - -0.025664, - 0.011691, - -0.038403, - -0.056772, - 0.065344, - -0.028881, - -0.055096, - -0.031126, - -0.019569, - 0.042564, - -0.024468, - -0.011459, - -0.016692, - 0.0075007, - -0.0094499, - -0.00083696, - -0.035116, - 0.032372, - -0.0045137, - 0.0015451, - 0.028819, - -0.053494, - -0.042514, - -0.017333, - -0.019928, - -0.043796, - -0.018485, - 0.012115, - -0.0096853, - -0.025862, - 0.017504, - 0.020999, - -0.012186, - -0.019065, - -0.0076189, - 0.025373, - 0.02929, - 0.0033799, - -0.014694, - 0.010407, - -0.0068549, - 0.044993, - -0.084458, - -0.010239, - -0.021043, - -0.02482, - -0.013882, - 0.050665, - -0.028977, - -0.055061, - -0.013664, - 0.012572, - 0.013998, - 0.023861, - 0.060498, - 0.034536, - -0.010451, - 0.011134, - 0.023026, - -0.011199, - -0.0035911, - 0.037319, - 0.041083, - 0.00083941, - 0.084524, - 0.018908, - -0.017226, - 0.063214, - -0.045253, - 0.0098049, - 0.045548, - 0.052591, - -0.03802, - -0.028265, - 0.014096, - 0.026063, - -0.018428, - 0.020168, - -0.025503, - 0.0098332, - -0.11893, - 0.028574, - 0.0000076412, - -0.0051189, - 0.07824, - 0.046944, - 0.037682, - -0.025539, - -0.0096515, - -0.0032577, - 0.047183, - -0.00086402, - -0.017907, - -0.0089299, - 0.075793, - 0.062219, - 0.025201, - -0.0092051, - -0.00027111, - -0.060637, - -0.066495, - 0.056321, - -0.041931, - 0.062055, - -0.021263, - 0.0037163, - 0.018643, - 0.041699, - 0.040863, - -0.023582, - -0.018958, - -0.031203, - -0.020561, - -0.0098421, - 0.037535, - 0.02062, - -0.041845, - -0.0051292, - 0.032601, - -0.0277, - 0.033554, - -0.079582, - -0.004946, - 0.0041321, - -0.0067319, - 0.04527, - -0.0068737, - -0.0049687, - -0.049359, - 0.024592, - 0.0096083, - -0.0013657, - -0.029522, - -0.027767, - 0.012115, - -0.01764, - 0.0044975, - -0.012756, - -0.00083992, - -0.0060639, - 0.055584, - 0.062801, - 0.050607, - 0.02042, - -0.015925, - -0.03295, - 0.036656, - -0.000086927, - 0.055837, - 0.044282, - 0.022804, - 0.05462, - -0.037528, - -0.010771, - 0.011021, - -0.054859, - 0.016693, - 0.024981, - -0.064039, - -0.032524, - 0.055878, - -0.038277, - -0.027927, - -0.0053952, - -0.023902, - 0.006351, - -0.027424, - 0.004134, - -0.025518, - -0.067488, - -0.012434, - -0.029203, - -0.0013953, - -0.0084898, - -0.057287, - 0.018416, - -0.0053165, - 0.041424, - -0.046864, - 0.041017 - ], - "drug-related": [ - -0.019726, - -0.016391, - 0.032407, - 0.039441, - 0.019192, - 0.029434, - 0.0055903, - -0.084606, - 0.035863, - 0.018434, - -0.030622, - -0.059042, - 0.051108, - 0.0068571, - 0.052388, - 0.0276, - 0.045217, - 0.014802, - 0.045943, - 0.0068426, - 0.024164, - -0.025097, - 0.013689, - 0.079451, - 0.011105, - -0.016793, - -0.042098, - 0.0079936, - 0.086347, - 0.045876, - -0.0044421, - 0.023228, - 0.015759, - -0.065359, - 0.067331, - -0.013525, - -0.057767, - 0.044432, - 0.016142, - 0.031393, - -0.020383, - -0.032749, - 0.036769, - 0.038592, - 0.037349, - 0.017027, - 0.026206, - 0.038179, - 0.0203, - 0.011408, - -0.026816, - -0.0024873, - 0.00082883, - 0.010202, - -0.024388, - -0.00092225, - -0.04172, - 0.0067498, - -0.0063645, - -0.0043657, - -0.0069958, - -0.0089815, - 0.082964, - 0.003579, - -0.016818, - -0.026189, - 0.069865, - -0.01982, - 0.029004, - 0.030409, - -0.034744, - 0.088157, - 0.027898, - -0.024526, - 0.041608, - -0.045433, - 0.026136, - -0.019335, - -0.021438, - -0.039552, - 0.011082, - 0.042344, - -0.062569, - -0.01244, - -0.015628, - -0.030996, - 0.050778, - 0.043745, - 0.022375, - 0.020401, - -0.015308, - -0.00024489, - -0.082552, - 0.029781, - -0.071312, - -0.022644, - 0.0031001, - -0.041712, - 0.0011168, - 0.020138, - 0.0047979, - -0.021378, - -0.030148, - -0.067939, - 0.060639, - -0.031944, - -0.027374, - -0.036303, - 0.045359, - 0.021782, - -0.023647, - 0.043339, - 0.015901, - -0.0062567, - -0.0079894, - -0.016697, - 0.017575, - -0.06213, - -0.021107, - 0.048542, - -0.03791, - 0.010531, - -0.036212, - -0.048634, - 0.1179, - -0.013049, - 0.0068934, - -0.041618, - 0.024975, - 0.027986, - 0.011054, - -0.02847, - 0.033062, - -0.023952, - 0.043483, - -0.0050961, - -0.020126, - 0.035913, - 0.040261, - 0.001468, - 0.054093, - 0.039765, - 0.019155, - -0.020117, - -0.03215, - -0.039467, - 0.017911, - 0.032891, - 0.046756, - 0.0018543, - -0.0046057, - 0.11565, - 0.0018856, - -0.070166, - -0.0031616, - 0.016227, - -0.044762, - 0.00064132, - 0.060097, - 0.037813, - 0.038255, - 0.075117, - -0.071034, - 0.024653, - -0.015001, - -0.0087082, - 0.025068, - 0.011367, - -0.052278, - -0.035188, - 0.024186, - -0.02483, - 0.061958, - 0.0071804, - -0.0056117, - 0.052466, - 0.001301, - -0.0084924, - -0.037047, - -0.027493, - 0.0090329, - -0.030038, - -0.013263, - 0.010076, - 0.0062169, - -0.043337, - 0.027827, - 0.072485, - 0.015808, - 0.014012, - 0.02758, - -0.028495, - -0.015234, - 0.011929, - 0.019807, - -0.0084516, - 0.02373, - 0.040779, - 0.012966, - -0.034125, - -0.12739, - 0.039751, - -0.04858, - 0.0066725, - -0.039263, - 0.042748, - -0.0061556, - 0.017547, - -0.024185, - 0.016206, - 0.087585, - 0.015305, - -0.0035204, - 0.010522, - 0.10057, - -0.055833, - -0.06352, - 0.026288, - -0.0046943, - -0.052507, - -0.023688, - -0.029493, - -0.0097265, - 0.0695, - -0.046657, - 0.0019883, - -0.021308, - 0.061593, - 0.027476, - -0.035557, - -0.058703, - -0.01827, - -0.069309, - -0.02346, - 0.030623, - -0.012886, - -0.04367, - -0.020014, - -0.0022804, - -0.038172, - -0.002283, - -0.021917, - -0.031429, - -0.01474, - -0.13367, - -0.012469, - -0.02033, - 0.016172, - -0.0043433, - 0.06327, - 0.017063, - 0.021064, - 0.054574, - -0.065559, - -0.011583, - -0.011116, - -0.010517, - 0.028103, - 0.020813, - -0.02957, - -0.0026675, - -0.05196, - -0.01671, - -0.026581, - 0.029355, - -0.019837, - -0.019769, - 0.040104, - 0.049588, - 0.015061, - -0.062113, - 0.049871, - -0.086896, - -0.037793, - 0.013416, - -0.12, - -0.007804, - 0.019259, - -0.063496, - 0.020396, - 0.085284, - 0.018399, - -0.029271, - 0.0030766, - -0.022095, - 0.0066191, - 0.00218, - 0.031819, - -0.015754, - -0.089979, - 0.033014, - -0.025892, - -0.058855, - 0.00034541, - -0.052931, - 0.00387, - 0.033465, - 0.013197, - -0.017684, - -0.019112 - ], - "media": [ - 0.035673, - -0.067817, - 0.00047437, - 0.10359, - -0.046891, - -0.020756, - 0.055694, - -0.11492, - 0.1127, - -0.077033, - 0.003839, - -0.057057, - -0.035557, - 0.087154, - -0.011568, - 0.013517, - 0.12783, - -0.061514, - 0.11574, - -0.012465, - 0.026478, - 0.012526, - 0.12725, - 0.13174, - -0.0794, - 0.0061181, - -0.001259, - 0.026736, - -0.010177, - 0.035419, - -0.043448, - -0.038859, - -0.074675, - -0.08854, - 0.06605, - 0.055081, - -0.035267, - -0.023538, - 0.0070555, - -0.010655, - -0.055743, - -0.15754, - -0.028865, - 0.09527, - 0.13216, - -0.012058, - 0.062332, - 0.053447, - -0.0093496, - -0.068819, - 0.00035826, - -0.095107, - 0.10032, - -0.03275, - -0.045304, - 0.11374, - 0.030985, - -0.030048, - -0.044515, - 0.042865, - 0.026624, - -0.02453, - 0.13244, - 0.021333, - 0.10613, - 0.084256, - -0.022344, - 0.015305, - 0.034594, - -0.010595, - -0.038739, - 0.020262, - 0.054142, - 0.0047334, - 0.017438, - 0.012191, - 0.013034, - -0.014176, - 0.032857, - -0.048356, - -0.081657, - 0.044988, - -0.031203, - 0.080956, - 0.028266, - -0.024764, - -0.039597, - -0.024738, - -0.0013421, - -0.03056, - -0.092281, - 0.039635, - -0.13668, - 0.027811, - 0.033203, - 0.078508, - 0.0069388, - 0.0037166, - 0.0040658, - -0.0043773, - 0.031628, - -0.025664, - -0.010632, - -0.030892, - 0.061448, - -0.11044, - -0.053828, - -0.031063, - 0.030344, - 0.049626, - -0.04464, - 0.12525, - 0.073844, - -0.031566, - -0.012484, - -0.10608, - 0.030759, - 0.014625, - -0.065599, - 0.068196, - -0.025254, - -0.024395, - 0.017367, - -0.016964, - 0.072332, - -0.0082864, - -0.063821, - -0.038521, - 0.0085723, - 0.16985, - 0.033629, - 0.0527, - 0.065468, - 0.024716, - 0.046172, - 0.045187, - -0.029865, - 0.061692, - -0.033317, - 0.015113, - 0.0082655, - -0.030693, - 0.015454, - -0.013367, - -0.060065, - 0.021933, - -0.06531, - -0.041669, - 0.034253, - -0.068594, - 0.060882, - 0.13009, - -0.017676, - -0.053202, - -0.065278, - -0.016343, - -0.061682, - 0.087924, - 0.031026, - 0.04023, - -0.010798, - 0.066341, - -0.036674, - 0.040381, - -0.0846, - -0.021221, - 0.028352, - 0.032155, - -0.019564, - -0.025632, - -0.036129, - 0.056545, - -0.032757, - -0.028075, - -0.0079661, - 0.055691, - -0.066998, - 0.024611, - -0.034357, - 0.028769, - -0.013561, - 0.014915, - -0.014847, - 0.029917, - -0.080814, - -0.020978, - 0.09289, - 0.090431, - 0.04088, - 0.0042385, - -0.073734, - 0.082196, - 0.024196, - 0.0055443, - -0.099316, - 0.031827, - 0.067633, - -0.018826, - -0.094131, - -0.0045554, - -0.18618, - 0.023824, - 0.043005, - -0.051778, - 0.0059397, - 0.02704, - -0.0018967, - 0.03809, - -0.02855, - 0.0022026, - 0.1253, - 0.051733, - 0.030623, - 0.071813, - -0.043172, - 0.024401, - -0.050008, - -0.060695, - 0.0053601, - -0.010184, - 0.0052096, - 0.0031881, - 0.017613, - 0.13754, - 0.015079, - -0.047241, - 0.07126, - 0.087605, - -0.049251, - -0.026704, - -0.040185, - -0.030668, - -0.044145, - -0.039681, - 0.027267, - 0.050651, - -0.028441, - -0.022914, - 0.014198, - -0.17715, - 0.070929, - 0.005195, - 0.060138, - 0.0082302, - -0.0054945, - 0.016864, - -0.010209, - 0.0096419, - -0.064686, - -0.039048, - 0.1173, - 0.005654, - -0.070535, - 0.011119, - -0.037973, - 0.044677, - -0.031899, - -0.00048884, - 0.028738, - -0.0022422, - 0.005423, - 0.028611, - 0.051285, - -0.021915, - -0.017913, - -0.0039498, - 0.042552, - 0.013609, - 0.0098534, - 0.040059, - -0.015554, - 0.090516, - -0.12196, - -0.026641, - 0.0017179, - -0.023514, - -0.0047772, - 0.11742, - -0.064762, - 0.050103, - 0.11497, - 0.04318, - -0.018722, - 0.00029814, - -0.023582, - -0.01904, - 0.026558, - -0.054979, - -0.0055246, - -0.019361, - -0.04599, - 0.0085384, - 0.0083451, - -0.052258, - 0.0011483, - 0.024688, - -0.082816, - -0.043134, - 0.12742, - 0.079203 - ], - "travelled": [ - -0.044632, - 0.061306, - 0.0072243, - 0.025864, - -0.00014852, - -0.025283, - -0.059523, - -0.072416, - 0.020393, - -0.009807, - -0.034259, - -0.13469, - -0.022205, - -0.052506, - 0.047459, - 0.015477, - 0.02848, - -0.048844, - 0.01195, - 0.012217, - -0.051037, - 0.029134, - 0.0059926, - 0.060994, - 0.011354, - 0.050209, - 0.0090518, - 0.017486, - 0.046043, - -0.004943, - -0.043034, - 0.057482, - 0.00071653, - 0.082721, - -0.013179, - -0.0025949, - 0.0046975, - 0.0034371, - -0.007157, - -0.027367, - -0.0098208, - -0.0063174, - 0.016867, - -0.04863, - -0.023776, - 0.0010986, - 0.028866, - -0.051444, - 0.037002, - 0.060239, - 0.055208, - 0.028558, - -0.021107, - -0.0011971, - -0.13875, - 0.017702, - 0.01265, - -0.0037834, - -0.078841, - -0.040896, - 0.01967, - 0.019686, - 0.17303, - 0.038199, - -0.0065302, - 0.024517, - -0.01433, - -0.059561, - -0.0722, - 0.010487, - -0.021, - -0.028284, - 0.086042, - 0.026509, - 0.026037, - 0.065541, - -0.011259, - 0.055987, - -0.0031035, - -0.031421, - -0.033014, - 0.010938, - 0.0012195, - 0.05825, - 0.0019438, - -0.043894, - 0.047006, - 0.02953, - -0.010595, - -0.027066, - -0.0045872, - 0.064247, - -0.087062, - -0.017307, - 0.031833, - 0.040635, - -0.016557, - 0.04178, - 0.0078826, - -0.040413, - 0.059348, - -0.0049563, - 0.031342, - 0.0025786, - 0.083169, - -0.13037, - 0.010122, - -0.011079, - 0.070782, - 0.063467, - 0.055042, - 0.041192, - 0.06693, - -0.014844, - -0.024115, - 0.036186, - 0.098655, - 0.020017, - 0.038676, - 0.0053674, - 0.058885, - -0.015756, - -0.088276, - 0.00017912, - 0.03771, - -0.01423, - -0.047453, - -0.06691, - 0.0025279, - -0.015529, - 0.053488, - 0.012019, - 0.012171, - -0.047939, - -0.0092459, - 0.012522, - -0.00047832, - 0.13681, - 0.028049, - 0.0078859, - -0.039203, - -0.0328, - 0.0030602, - 0.024807, - -0.043106, - 0.04757, - -0.016618, - 0.017537, - -0.035614, - -0.078816, - 0.082421, - 0.0063529, - -0.057296, - -0.031174, - -0.011699, - 0.011388, - -0.055339, - 0.016417, - -0.053143, - -0.04981, - 0.061957, - -0.0089168, - 0.041835, - 0.039165, - -0.02543, - 0.024409, - 0.078624, - -0.059228, - 0.03906, - 0.0071313, - 0.014035, - -0.002561, - -0.053019, - -0.0040732, - 0.026388, - 0.025653, - -0.01463, - -0.00085064, - -0.023913, - 0.065898, - 0.0029439, - 0.005757, - -0.0052547, - 0.002441, - -0.015814, - -0.018729, - 0.0077888, - 0.13988, - -0.0043498, - -0.024882, - 0.061599, - 0.010535, - -0.046458, - -0.012003, - -0.0030158, - 0.062653, - 0.0093403, - 0.018487, - -0.0037163, - 0.031375, - -0.058125, - 0.00024164, - 0.059968, - 0.023042, - -0.00030468, - -0.0024453, - -0.019645, - 0.013669, - 0.068469, - -0.073768, - 0.03664, - -0.054114, - 0.04904, - -0.038899, - -0.027202, - -0.00039937, - 0.011222, - -0.074951, - 0.038035, - -0.036978, - -0.020891, - -0.021877, - 0.0014206, - 0.081073, - -0.026915, - 0.023229, - -0.050227, - 0.096387, - -0.0065003, - -0.028781, - 0.0074216, - -0.034439, - -0.033605, - -0.03467, - -0.048921, - -0.0056947, - 0.010624, - 0.020936, - -0.022819, - 0.017744, - 0.1731, - 0.013083, - 0.031853, - -0.060965, - -0.01959, - 0.0060379, - 0.054939, - -0.016554, - -0.013083, - -0.024846, - 0.081717, - -0.0074728, - 0.034948, - 0.013009, - -0.062189, - -0.0018679, - -0.055761, - 0.010435, - 0.015532, - 0.045267, - 0.0077863, - 0.01504, - -0.070268, - 0.039665, - 0.023468, - -0.020769, - 0.040915, - 0.033696, - -0.0090115, - 0.016309, - -0.042278, - 0.05904, - -0.11161, - 0.024577, - -0.041904, - -0.023798, - 0.031352, - -0.017367, - -0.02754, - 0.037579, - -0.1175, - 0.0084197, - -0.063336, - -0.066329, - -0.0029843, - -0.0061592, - 0.014225, - -0.079983, - 0.015947, - 0.040336, - 0.050132, - 0.015091, - -0.033798, - -0.064092, - -0.0039021, - 0.0079668, - -0.0017172, - 0.003413, - 0.038647, - -0.05138 - ], - "biomedicine": [ - -0.059362, - -0.062297, - -0.013189, - -0.014098, - 0.015023, - -0.01848, - 0.044913, - -0.06306, - 0.054919, - -0.017778, - -0.015484, - -0.022788, - 0.040628, - -0.070581, - -0.020272, - 0.0060255, - 0.10967, - 0.031805, - 0.049054, - 0.0080048, - 0.049492, - -0.01759, - 0.11777, - 0.039949, - 0.038106, - -0.047759, - -0.021794, - 0.0095875, - 0.018954, - 0.044418, - 0.017059, - -0.034254, - 0.039714, - -0.033643, - 0.026198, - 0.055722, - 0.026403, - -0.025062, - 0.079048, - 0.038689, - -0.045336, - -0.12109, - 0.026886, - -0.057507, - 0.025299, - -0.068158, - -0.021038, - 0.0034843, - 0.021877, - -0.034669, - -0.05571, - -0.008593, - -0.0098689, - 0.02728, - -0.040314, - 0.025522, - -0.034081, - 0.07629, - 0.014654, - 0.0023892, - 0.041631, - 0.028388, - 0.014194, - 0.021905, - 0.057011, - -0.0060951, - 0.046983, - -0.03137, - 0.007775, - 0.0013815, - -0.021691, - 0.01087, - -0.010766, - -0.029679, - -0.071282, - 0.029656, - -0.015008, - -0.014852, - 0.051178, - 0.028897, - 0.017823, - 0.02037, - -0.060114, - 0.0070688, - -0.072189, - -0.022697, - -0.0029093, - -0.012374, - 0.015942, - 0.022174, - 0.022987, - 0.026424, - -0.067872, - 0.03126, - 0.023431, - 0.094097, - 0.029318, - -0.037631, - -0.037703, - 0.026014, - -0.035122, - -0.026229, - 0.00029654, - -0.04121, - -0.018507, - -0.0405, - 0.001159, - 0.019641, - 0.07567, - -0.033929, - -0.00059328, - 0.077198, - 0.041863, - -0.022492, - 0.022981, - 0.06399, - -0.026194, - -0.030825, - -0.017439, - 0.030921, - 0.0095774, - -0.0045819, - -0.047063, - -0.02265, - 0.014073, - 0.0085537, - -0.08808, - -0.043728, - 0.015335, - 0.11143, - -0.011885, - 0.0029357, - -0.029369, - -0.021565, - 0.037615, - -0.0162, - 0.0069656, - -0.0254, - -0.0061646, - 0.040801, - 0.0046826, - -0.045906, - -0.029873, - 0.036505, - -0.046648, - -0.037066, - -0.0034511, - 0.015843, - 0.02024, - -0.015005, - 0.060132, - 0.020907, - 0.034331, - -0.032132, - 0.037305, - 0.069377, - 0.00033431, - 0.0071812, - 0.030209, - 0.019256, - 0.03507, - 0.030663, - -0.068598, - -0.017073, - -0.044318, - 0.012883, - -0.052077, - -0.0012162, - -0.016963, - -0.037049, - 0.0095377, - -0.020228, - -0.033806, - -0.00693, - 0.036665, - 0.02769, - -0.034826, - 0.030828, - -0.033131, - -0.024374, - -0.0003408, - 0.042397, - -0.01633, - -0.042972, - 0.005739, - -0.046932, - 0.017911, - 0.10027, - -0.10005, - 0.058619, - -0.023625, - 0.069656, - -0.042612, - -0.034985, - 0.0050099, - -0.0015282, - -0.049258, - 0.0078691, - -0.012225, - -0.038362, - -0.09851, - -0.048817, - 0.0066969, - -0.019849, - -0.032695, - 0.010781, - 0.002141, - -0.065644, - -0.015384, - 0.012912, - 0.08089, - -0.0087375, - -0.0043607, - 0.039002, - 0.066358, - 0.045874, - 0.018737, - -0.012206, - -0.044265, - -0.022155, - -0.026945, - -0.0070482, - -0.077442, - 0.07775, - -0.039837, - 0.047448, - -0.0018808, - 0.071577, - 0.039921, - -0.033333, - -0.052428, - -0.021629, - -0.028425, - -0.025686, - 0.043706, - 0.033385, - -0.025484, - 0.0071368, - -0.0014582, - -0.029643, - 0.01254, - 0.019584, - 0.026383, - 0.017685, - 0.045917, - 0.0048276, - -0.023043, - -0.011212, - 0.045857, - 0.018139, - 0.0052932, - -0.0025536, - -0.031157, - -0.080079, - -0.035309, - 0.074348, - 0.012623, - 0.019947, - 0.061694, - 0.007779, - 0.013765, - -0.0026873, - 0.015936, - 0.019818, - 0.033056, - -0.025864, - 0.069621, - 0.023931, - 0.039025, - 0.0012629, - 0.023883, - 0.06942, - -0.080791, - -0.017345, - -0.055129, - -0.025358, - 0.032597, - 0.037217, - -0.020331, - -0.028508, - 0.053305, - -0.048563, - -0.077222, - -0.028806, - -0.037048, - 0.026544, - -0.052604, - -0.014816, - 0.037876, - -0.002109, - 0.0020434, - 0.028294, - -0.014721, - -0.038696, - -0.011454, - 0.027861, - -0.0031556, - 0.043695, - -0.019032, - 0.02107 - ], - "anti-cancer": [ - -0.056514, - -0.041479, - -0.0094536, - 0.041051, - -0.0046325, - -0.019227, - -0.0042753, - -0.041381, - 0.012291, - 0.039958, - 0.051968, - -0.019631, - 0.071251, - -0.045965, - -0.01858, - -0.036072, - 0.036352, - -0.043527, - 0.02738, - 0.019103, - 0.018873, - 0.0117, - 0.052121, - 0.037653, - 0.003853, - -0.017916, - 0.019349, - 0.057092, - 0.038485, - 0.027633, - -0.0062901, - -0.050277, - 0.01062, - -0.075294, - 0.056982, - -0.00088293, - -0.019676, - -0.10383, - 0.01252, - 0.0021558, - 0.0067173, - -0.059291, - 0.0043037, - -0.030798, - 0.087214, - -0.0064867, - -0.0055232, - 0.068191, - 0.0039912, - -0.0058756, - -0.042425, - 0.051214, - 0.00051745, - -0.0041551, - 0.01259, - -0.031298, - 0.0076926, - 0.030694, - -0.0018567, - 0.07531, - -0.039605, - 0.036137, - 0.11681, - -0.015874, - -0.072433, - -0.0095778, - 0.074807, - 0.0075123, - 0.008275, - -0.043932, - -0.029665, - 0.021131, - 0.046201, - -0.038672, - -0.054972, - 0.031983, - -0.010275, - -0.016452, - -0.049782, - -0.038562, - 0.016741, - 0.024207, - 0.0010355, - 0.015452, - 0.0051921, - 0.020797, - 0.025959, - -0.010694, - -0.00093217, - 0.027205, - 0.0078781, - 0.045875, - -0.075747, - -0.0043837, - -0.0063849, - 0.024833, - 0.040604, - 0.065622, - 0.027279, - 0.006229, - -0.058397, - -0.011692, - 0.024987, - 0.022131, - 0.0053333, - -0.033259, - -0.02728, - -0.0023577, - 0.053691, - 0.055951, - -0.037761, - 0.051649, - 0.040857, - 0.013371, - 0.034777, - 0.045143, - 0.029433, - -0.024493, - -0.014141, - -0.0010816, - -0.080028, - -0.0016507, - -0.014317, - -0.095241, - 0.13689, - -0.002302, - 0.0034796, - -0.034994, - 0.032797, - 0.039995, - 0.046383, - -0.029681, - -0.027023, - -0.0089355, - 0.0066857, - -0.012823, - 0.01141, - 0.036866, - -0.0090516, - -0.0014707, - 0.027099, - 0.041743, - 0.001878, - 0.024836, - -0.015337, - -0.027365, - 0.015962, - 0.048615, - -0.021338, - 0.041456, - 0.013215, - 0.1001, - 0.025292, - -0.057222, - 0.020841, - 0.000041954, - 0.060757, - 0.016443, - 0.046526, - 0.02253, - 0.015625, - 0.00030063, - -0.090316, - 0.0033569, - -0.019243, - 0.00055602, - -0.057053, - -0.020079, - -0.042812, - -0.077007, - 0.01489, - -0.064223, - -0.019103, - -0.03377, - -0.046007, - 0.0418, - -0.078765, - -0.02683, - -0.042587, - -0.040925, - -0.00050796, - -0.010543, - 0.083049, - -0.028864, - -0.025419, - -0.040136, - 0.059703, - 0.12436, - -0.0057826, - -0.019691, - 0.067596, - 0.041101, - 0.01465, - -0.0062437, - -0.0051655, - -0.0055365, - 0.012711, - 0.010456, - 0.013203, - 0.017572, - -0.07047, - 0.074114, - -0.050429, - 0.036405, - -0.0041395, - 0.031194, - 0.030471, - 0.0045832, - 0.011867, - 0.024915, - 0.11361, - 0.0099567, - 0.053371, - -0.0037503, - 0.047354, - -0.0045551, - -0.017166, - 0.037638, - -0.061044, - -0.029554, - -0.036486, - 0.0015663, - -0.00017295, - 0.060076, - 0.0055576, - 0.051098, - 0.010272, - 0.046695, - 0.011861, - -0.024304, - -0.052854, - -0.028042, - -0.029112, - -0.024373, - 0.02188, - -0.061682, - -0.091816, - -0.050734, - -0.011773, - -0.031858, - -0.0051732, - -0.0062978, - 0.086095, - -0.01563, - -0.064975, - 0.0019529, - -0.0078082, - -0.032235, - 0.15383, - -0.0011028, - -0.020709, - -0.039701, - -0.058993, - -0.051376, - -0.00015845, - -0.0082652, - 0.0041211, - -0.053871, - 0.034213, - -0.02808, - 0.063006, - 0.079583, - -0.028502, - 0.0012748, - 0.024215, - -0.02911, - -0.032043, - 0.038408, - -0.0011511, - 0.049294, - -0.0096995, - 0.05919, - -0.082969, - -0.027191, - -0.041657, - -0.045001, - 0.058349, - -0.0096151, - -0.0031195, - -0.010716, - 0.13037, - -0.023595, - -0.076643, - 0.012453, - -0.0027318, - -0.025066, - -0.0096632, - -0.00097677, - -0.0070819, - 0.01412, - 0.073342, - -0.0078004, - -0.023498, - 0.0031528, - 0.01421, - -0.026832, - -0.01034, - 0.015922, - -0.0035983, - -0.056668 - ], - "geoscience": [ - -0.00077947, - -0.06027, - -0.022006, - 0.035918, - 0.028209, - 0.022479, - -0.069107, - -0.09119, - 0.040673, - 0.010061, - 0.032034, - -0.022571, - -0.067379, - 0.06284, - 0.050219, - 0.010165, - 0.072374, - 0.12662, - 0.0086488, - -0.024222, - -0.023881, - 0.013157, - 0.031928, - 0.061977, - 0.0017955, - 0.0053298, - -0.017783, - 0.027915, - -0.011838, - -0.042213, - -0.008241, - -0.015373, - 0.030538, - -0.04799, - 0.03564, - 0.06731, - 0.017709, - -0.052123, - -0.01339, - -0.0085217, - -0.06383, - -0.10471, - 0.036531, - -0.02514, - -0.0028328, - -0.048193, - -0.060885, - 0.0016402, - 0.018094, - 0.041848, - -0.034103, - -0.035861, - 0.017492, - 0.056929, - -0.0022841, - 0.055521, - -0.013102, - 0.033457, - -0.00070599, - 0.0097927, - 0.023049, - 0.080574, - 0.085034, - 0.035903, - 0.043927, - 0.01537, - -0.036756, - 0.015345, - 0.090374, - 0.037914, - 0.037025, - -0.0016585, - 0.040774, - -0.018046, - 0.052948, - -0.019639, - 0.013731, - 0.0024223, - 0.069386, - 0.011091, - -0.011828, - 0.065501, - 0.0041801, - -0.065192, - -0.052819, - 0.058544, - -0.0079405, - 0.015484, - 0.018355, - 0.060656, - 0.051521, - 0.044757, - -0.084781, - 0.020906, - 0.011894, - 0.099141, - 0.02415, - 0.05082, - 0.0074413, - -0.029048, - 0.0016593, - -0.05969, - -0.01086, - -0.042424, - 0.024174, - -0.056587, - 0.039912, - 0.068907, - 0.025598, - -0.069735, - 0.01991, - 0.072927, - 0.013826, - 0.020636, - 0.032786, - -0.031512, - 0.0066244, - -0.045271, - -0.062482, - 0.013322, - 0.0036962, - -0.018788, - -0.054993, - -0.047678, - 0.038488, - 0.067413, - -0.085456, - -0.045659, - -0.043862, - 0.089746, - -0.0035257, - 0.038669, - -0.093123, - 0.037829, - 0.048805, - 0.016688, - 0.0025915, - 0.01033, - -0.034232, - 0.036619, - -0.033595, - -0.02972, - 0.013328, - -0.028417, - -0.019736, - -0.013118, - -0.047567, - -0.040189, - -0.009085, - -0.050514, - 0.059729, - 0.062059, - 0.0044341, - -0.052673, - 0.051108, - 0.031363, - -0.0017532, - 0.030957, - -0.052553, - -0.0102, - 0.020125, - 0.0366, - -0.047182, - 0.028805, - -0.026984, - -0.023528, - -0.11291, - 0.038242, - 0.008352, - 0.012159, - 0.020107, - -0.038128, - -0.059861, - -0.030401, - -0.00059998, - 0.056267, - 0.0062184, - 0.026033, - -0.01054, - -0.023457, - -0.060775, - -0.017851, - 0.016142, - 0.0034913, - 0.0083272, - -0.048536, - -0.030369, - 0.084409, - -0.01138, - 0.090595, - 0.0045745, - 0.055227, - -0.0024802, - -0.0032519, - 0.035454, - -0.0098825, - -0.042354, - -0.059506, - -0.056334, - -0.030975, - -0.10033, - -0.045122, - 0.011699, - 0.050006, - 0.0678, - 0.048758, - -0.038563, - -0.0037489, - -0.071641, - 0.00054072, - 0.13207, - 0.015046, - -0.029202, - -0.052266, - -0.011595, - 0.025056, - 0.04504, - -0.023843, - -0.03192, - 0.006087, - -0.059272, - 0.066873, - -0.08994, - 0.077896, - -0.02813, - 0.055584, - -0.011485, - 0.065444, - -0.010274, - -0.045998, - 0.059301, - 0.0082591, - -0.021493, - 0.023325, - 0.011783, - 0.039779, - 0.042235, - 0.032228, - -0.048737, - -0.0054809, - 0.028906, - 0.026483, - 0.015903, - 0.042997, - -0.0055992, - 0.0039746, - -0.04311, - -0.020479, - -0.055188, - 0.0083017, - 0.059184, - 0.016963, - 0.037398, - -0.080327, - 0.012718, - -0.034521, - -0.032734, - 0.050308, - 0.047251, - 0.078871, - -0.0045625, - 0.036666, - -0.092564, - 0.004868, - -0.014937, - -0.048115, - 0.036746, - 0.052078, - 0.073503, - 0.039939, - 0.0058463, - 0.056249, - -0.081059, - 0.0018157, - -0.021269, - -0.0059655, - -0.035902, - 0.022408, - 0.0013464, - -0.0032054, - 0.09743, - -0.036415, - 0.016728, - -0.00060718, - -0.064732, - -0.050482, - -0.034971, - -0.0025087, - -0.044149, - -0.049136, - -0.033624, - 0.079646, - 0.0017434, - 0.017432, - -0.00010245, - -0.0070553, - -0.040672, - -0.0025804, - 0.0062104, - 0.028155 - ], - "forecasting": [ - 0.014081, - -0.098938, - -0.091752, - -0.0070957, - 0.0081415, - -0.080987, - -0.038652, - -0.077966, - 0.01337, - 0.031058, - 0.024367, - -0.035718, - -0.072788, - -0.033245, - 0.015369, - -0.012973, - 0.010819, - -0.011803, - 0.021264, - 0.0040514, - 0.03897, - 0.045569, - -0.0016468, - 0.053314, - 0.0061248, - -0.049368, - -0.026885, - -0.0059952, - 0.025629, - 0.031828, - -0.0039919, - 0.013924, - 0.0087407, - -0.077947, - 0.056594, - 0.012342, - -0.020667, - 0.022257, - -0.0052406, - -0.014725, - -0.041911, - -0.07771, - 0.011963, - 0.026952, - -0.028171, - -0.01226, - 0.011831, - -0.048256, - -0.02008, - -0.03843, - -0.038694, - -0.0037083, - -0.013378, - 0.032863, - -0.029795, - -0.041006, - 0.052604, - 0.0090021, - -0.02281, - -0.018678, - 0.00077677, - 0.031063, - 0.022279, - 0.021631, - -0.0081245, - -0.0066867, - 0.016472, - 0.047425, - 0.017813, - 0.00387, - 0.031067, - 0.010018, - 0.027448, - -0.043367, - 0.035928, - -0.036531, - 0.04111, - -0.046857, - -0.054729, - -0.034701, - -0.028609, - -0.00046567, - -0.036551, - 0.039194, - 0.025844, - -0.0024469, - 0.00862, - 0.00021586, - 0.0036165, - -0.066117, - -0.013983, - 0.0056433, - -0.045702, - -0.002666, - -0.027024, - 0.016141, - -0.03213, - 0.019712, - 0.0040296, - 0.022473, - -0.002644, - -0.063414, - -0.021233, - -0.0039696, - -0.0055927, - -0.065927, - 0.043673, - 0.013138, - 0.024286, - -0.0078155, - -0.058014, - 0.032848, - 0.041345, - 0.0041057, - 0.0065654, - -0.067773, - -0.037826, - 0.0019525, - -0.016536, - 0.035047, - -0.027071, - 0.013125, - 0.059764, - 0.024296, - 0.059791, - 0.052691, - 0.010519, - -0.067627, - -0.052201, - 0.11233, - 0.036242, - -0.039223, - 0.00049699, - 0.019739, - -0.0080752, - 0.021057, - 0.096619, - 0.0061117, - -0.0083348, - 0.045519, - 0.042791, - -0.0072451, - -0.025725, - 0.0050324, - -0.04467, - -0.032863, - -0.050184, - -0.021438, - 0.027856, - 0.011646, - 0.011315, - 0.047532, - 0.03548, - -0.097788, - 0.03796, - 0.024393, - 0.0080687, - -0.018906, - -0.083878, - 0.029919, - 0.032886, - -0.0034634, - -0.075067, - 0.038384, - -0.019502, - -0.023696, - -0.055642, - -0.023024, - 0.046555, - 0.066685, - -0.028952, - -0.025232, - -0.01438, - -0.073132, - 0.0062176, - 0.042573, - 0.010432, - 0.0035655, - -0.029525, - 0.021887, - -0.017473, - -0.014193, - -0.019724, - -0.055164, - 0.020942, - -0.020794, - -0.010215, - 0.085759, - -0.00080465, - -0.007529, - -0.019253, - 0.0071163, - -0.0074017, - -0.082829, - 0.0041582, - -0.044304, - -0.044461, - 0.037854, - 0.0065282, - 0.012863, - -0.11718, - 0.024065, - 0.014499, - 0.050219, - -0.010734, - 0.065013, - -0.042944, - -0.02117, - -0.039441, - 0.014163, - 0.033618, - 0.013539, - -0.0044474, - 0.016544, - -0.02823, - 0.045095, - 0.018775, - -0.093082, - -0.022368, - -0.036154, - -0.075672, - 0.0020824, - 0.052831, - 0.070307, - 0.000061851, - 0.023003, - -0.061344, - 0.055447, - 0.047701, - 0.0023663, - 0.058252, - -0.033198, - -0.036108, - 0.028008, - 0.041028, - 0.019183, - 0.0064414, - -0.01818, - 0.071756, - 0.0010536, - 0.064587, - 0.023005, - 0.010051, - -0.036114, - -0.080634, - 0.021155, - -0.046401, - 0.0037053, - 0.040431, - -0.0076048, - 0.053537, - 0.040933, - 0.04095, - 0.066689, - 0.0066243, - 0.031733, - 0.000087592, - 0.038159, - 0.04759, - 0.058928, - 0.068398, - 0.01768, - -0.0047288, - 0.045202, - -0.050926, - -0.022662, - 0.014929, - 0.020352, - 0.054393, - 0.0013821, - 0.00050486, - 0.057455, - -0.07172, - -0.0057885, - -0.03446, - -0.028949, - -0.05156, - -0.0048527, - -0.07254, - -0.039095, - 0.049006, - -0.0030993, - -0.040713, - 0.0086841, - 0.049643, - -0.029639, - 0.004382, - 0.017261, - -0.069583, - 0.013555, - -0.0019431, - 0.0067194, - 0.0017007, - 0.037002, - 0.020335, - -0.010431, - -0.061938, - -0.018636, - 0.042189, - -0.01971 - ], - "buddhism": [ - -0.018011, - -0.092782, - 0.047379, - -0.092852, - 0.0032037, - -0.039561, - -0.014888, - -0.054918, - 0.02824, - -0.050158, - 0.02856, - -0.05713, - 0.088395, - -0.080856, - -0.027863, - -0.038666, - 0.16278, - -0.042205, - 0.032996, - -0.057313, - -0.090548, - 0.071876, - 0.046155, - 0.02468, - -0.0041763, - -0.0046637, - 0.043189, - 0.013378, - 0.057816, - -0.010922, - 0.066178, - 0.055166, - -0.034355, - -0.0042519, - 0.020139, - 0.045371, - 0.046218, - -0.036599, - 0.063006, - 0.07782, - 0.075422, - -0.1176, - 0.064425, - -0.022862, - 0.027893, - -0.074733, - 0.0025813, - -0.039076, - 0.021705, - -0.020176, - -0.019886, - -0.10512, - -0.050632, - -0.015927, - -0.026857, - -0.020449, - 0.005403, - -0.00759, - -0.062775, - 0.049258, - 0.13014, - -0.085863, - 0.093597, - -0.022182, - -0.023583, - -0.030933, - 0.036482, - -0.022226, - 0.045167, - 0.0019011, - 0.0050592, - -0.043887, - 0.0055572, - -0.032126, - -0.082825, - -0.078858, - 0.009413, - 0.028162, - 0.011209, - 0.044184, - 0.012534, - 0.020414, - -0.028981, - 0.13733, - -0.088753, - 0.015079, - -0.021869, - 0.030076, - 0.023185, - 0.04265, - 0.013905, - 0.075893, - -0.065049, - 0.071316, - -0.0068944, - 0.034149, - 0.062517, - -0.034636, - -0.030769, - 0.023856, - 0.032051, - -0.037937, - 0.078504, - -0.025035, - -0.018425, - -0.027711, - -0.0045778, - -0.058675, - -0.074334, - -0.019552, - -0.03092, - 0.069019, - 0.064367, - -0.014015, - -0.019304, - 0.041473, - -0.077817, - 0.056441, - -0.053606, - 0.055532, - -0.013317, - 0.035856, - -0.015743, - -0.024355, - 0.076168, - 0.093159, - -0.070634, - -0.03227, - -0.022914, - 0.10231, - 0.030871, - -0.026442, - -0.033999, - 0.021578, - -0.082546, - -0.0056814, - 0.045291, - 0.049911, - -0.018747, - -0.11067, - -0.027603, - 0.0021746, - 0.083041, - 0.087563, - -0.008674, - -0.093854, - -0.0025374, - 0.012292, - 0.0011183, - -0.048726, - 0.096859, - 0.096678, - -0.093812, - -0.074223, - -0.055213, - 0.023504, - -0.0018501, - -0.032237, - 0.082041, - 0.0034898, - 0.034199, - -0.019495, - -0.054358, - -0.028747, - 0.013329, - 0.0022139, - 0.042084, - 0.049839, - -0.0071861, - 0.012599, - -0.017898, - -0.036538, - -0.014963, - 0.069146, - 0.0074032, - 0.074538, - 0.074931, - 0.014732, - -0.0019646, - -0.053508, - -0.012855, - 0.054259, - -0.026403, - 0.023192, - 0.09918, - -0.062056, - 0.066243, - 0.088231, - -0.036574, - -0.072176, - 0.041855, - 0.11192, - -0.10143, - 0.066534, - 0.017385, - 0.030624, - -0.00023134, - -0.029513, - -0.055712, - 0.069996, - -0.16156, - -0.033455, - -0.028095, - -0.014493, - 0.065575, - 0.09016, - 0.072211, - 0.022361, - 0.1446, - 0.0020784, - 0.080569, - -0.0067251, - 0.054835, - 0.0089546, - 0.041185, - 0.069598, - 0.0085232, - -0.019694, - 0.040465, - -0.052747, - -0.03748, - 0.0079026, - -0.0079676, - 0.11886, - -0.013968, - 0.069888, - 0.056409, - 0.12374, - 0.010349, - -0.024783, - -0.046366, - -0.0062418, - -0.041835, - -0.0032743, - 0.012344, - 0.050599, - -0.0132, - 0.022884, - -0.0062984, - 0.014272, - 0.035119, - -0.044783, - 0.012387, - -0.055968, - -0.01895, - 0.021627, - 0.046991, - -0.017119, - -0.063331, - 0.018324, - 0.055982, - -0.011992, - -0.037144, - 0.034349, - 0.015873, - -0.04176, - -0.02847, - -0.00086055, - 0.028576, - 0.015666, - 0.046535, - 0.066987, - 0.082838, - -0.0020882, - 0.066337, - 0.044441, - 0.0321, - 0.051468, - 0.01459, - 0.01211, - -0.015088, - 0.058758, - -0.029505, - -0.044949, - -0.040525, - 0.00094948, - 0.044808, - 0.0089903, - -0.078471, - 0.016143, - 0.060778, - -0.0054123, - 0.046353, - -0.016253, - -0.083999, - -0.054617, - 0.030222, - -0.0025434, - -0.098918, - -0.0066128, - -0.088787, - -0.075059, - -0.002012, - -0.070884, - -0.007573, - 0.065037, - 0.099322, - 0.068485, - 0.018739, - 0.047632 - ], - "babies": [ - -0.014791, - -0.0015025, - -0.036802, - -0.10112, - -0.014863, - 0.043925, - 0.050161, - -0.081019, - 0.076115, - 0.027534, - 0.0055961, - -0.012852, - 0.011656, - 0.0086089, - -0.064184, - -0.029883, - 0.052808, - -0.019141, - 0.018999, - 0.036123, - 0.031087, - 0.047059, - 0.0089984, - 0.045095, - 0.022684, - -0.026832, - 0.028584, - 0.046564, - 0.13464, - -0.030982, - 0.00066557, - -0.025931, - -0.0093228, - 0.043507, - 0.01899, - -0.035971, - 0.0034159, - -0.15634, - 0.045114, - -0.052178, - -0.062176, - -0.040274, - -0.09567, - -0.1035, - 0.057069, - -0.047217, - 0.01912, - 0.10803, - -0.0025426, - -0.0065969, - 0.0043928, - -0.018717, - 0.00086988, - -0.029064, - -0.091301, - 0.039613, - 0.059056, - -0.11313, - -0.05008, - -0.028215, - -0.044155, - -0.077432, - 0.146, - -0.029237, - 0.045052, - 0.10152, - 0.082061, - -0.060054, - -0.07173, - -0.066212, - -0.066487, - 0.019921, - 0.11712, - 0.0055576, - -0.018223, - 0.034632, - 0.047318, - -0.022648, - -0.04108, - 0.012851, - 0.025275, - -0.023964, - 0.034827, - 0.049007, - -0.03084, - 0.0087078, - -0.013231, - -0.017606, - -0.025594, - 0.011573, - -0.028024, - 0.010821, - -0.10854, - 0.035559, - 0.076532, - 0.055285, - 0.030289, - 0.014522, - 0.083579, - -0.081993, - 0.018012, - -0.091717, - -0.074676, - 0.010603, - 0.052474, - -0.089935, - 0.057217, - -0.0049502, - -0.0042895, - 0.038164, - 0.035393, - 0.10872, - 0.077826, - 0.10109, - 0.012371, - 0.094527, - -0.03266, - -0.02378, - -0.0487, - -0.0030364, - -0.019971, - 0.037366, - 0.055242, - -0.10918, - 0.075901, - 0.019103, - 0.032954, - -0.11949, - -0.0058957, - 0.018364, - -0.047044, - 0.12196, - 0.045175, - -0.040502, - 0.0058831, - -0.0016881, - -0.0094379, - 0.059735, - 0.00077129, - 0.0040918, - -0.0058, - 0.012134, - 0.01912, - 0.0038519, - 0.10292, - -0.0038904, - 0.016917, - 0.0072556, - -0.053095, - -0.016203, - 0.037932, - 0.08499, - 0.011668, - -0.00068502, - -0.013557, - -0.050611, - 0.0038011, - -0.019399, - 0.15619, - -0.085318, - 0.093378, - 0.024525, - 0.051268, - -0.02809, - 0.016876, - -0.0048412, - 0.0025716, - -0.012419, - -0.050727, - -0.062167, - -0.030637, - 0.018211, - 0.051097, - -0.0020437, - 0.044614, - 0.057869, - 0.04525, - 0.036758, - -0.014871, - -0.042618, - 0.07144, - -0.032738, - -0.03749, - -0.036884, - 0.035242, - -0.085114, - 0.081569, - 0.11394, - 0.025884, - -0.12232, - -0.041099, - 0.028704, - -0.1237, - -0.092534, - 0.068179, - -0.026548, - -0.028973, - 0.037189, - -0.018001, - -0.05815, - -0.10714, - 0.15844, - -0.014477, - -0.055967, - -0.011713, - 0.053948, - -0.076747, - -0.072584, - -0.059484, - -0.086197, - 0.06522, - -0.013987, - 0.059056, - 0.08132, - 0.015081, - 0.014971, - -0.0017036, - -0.023036, - -0.009242, - -0.037748, - 0.0049687, - 0.013171, - 0.048142, - 0.11755, - 0.076895, - 0.014666, - -0.033104, - 0.0061989, - 0.0037593, - -0.031417, - -0.0056766, - 0.015593, - -0.12144, - -0.0041003, - 0.043075, - 0.059594, - 0.013954, - 0.016735, - -0.044671, - -0.09459, - -0.02346, - -0.024792, - -0.057873, - -0.061098, - 0.036858, - 0.016111, - -0.064352, - -0.040417, - -0.014038, - -0.015244, - -0.0062419, - 0.086144, - 0.017298, - -0.019053, - 0.015812, - 0.067325, - 0.00075659, - -0.016582, - 0.12236, - -0.0057622, - -0.030928, - -0.013607, - 0.030042, - -0.085708, - 0.10275, - 0.10558, - 0.045914, - -0.021252, - 0.12675, - 0.030793, - -0.012778, - 0.10118, - -0.12414, - -0.044929, - -0.011716, - -0.020771, - -0.022814, - 0.0056603, - 0.024555, - -0.083921, - 0.028338, - 0.072558, - 0.07606, - 0.02998, - -0.0057699, - 0.14322, - -0.027808, - -0.019763, - 0.076818, - 0.089206, - -0.010933, - 0.035619, - -0.17154, - -0.032157, - -0.00089032, - -0.039211, - 0.14793, - 0.028101, - -0.0069567, - 0.068043 - ], - "triathlons": [ - -0.060403, - -0.067208, - 0.029199, - -0.0095399, - -0.020474, - -0.027589, - -0.062882, - -0.073376, - 0.021781, - -0.023561, - 0.027344, - -0.059409, - -0.048458, - -0.053023, - 0.040729, - -0.00041037, - 0.11079, - 0.015383, - 0.050858, - -0.055878, - -0.041001, - 0.0035226, - 0.015485, - 0.049811, - 0.080152, - -0.0031422, - 0.023591, - -0.0034396, - 0.087951, - 0.080807, - 0.0124, - 0.012749, - 0.0045009, - -0.040217, - 0.024702, - 0.02753, - 0.077749, - -0.057821, - 0.047445, - -0.0032027, - -0.019428, - -0.053328, - -0.0077275, - 0.047656, - 0.041386, - -0.006422, - -0.038593, - -0.032831, - -0.055461, - 0.023736, - -0.039831, - 0.0072083, - 0.054129, - 0.050552, - -0.099931, - 0.044776, - 0.049603, - 0.023412, - -0.053798, - 0.01559, - -0.0081471, - 0.0088864, - 0.061711, - -0.017622, - -0.014799, - -0.090925, - -0.014187, - -0.04776, - -0.040734, - -0.078741, - 0.028702, - -0.08253, - 0.048565, - 0.005916, - 0.0047437, - -0.0059127, - 0.024598, - -0.0366, - -0.052198, - 0.037277, - -0.02739, - -0.006936, - -0.054406, - 0.054872, - -0.0089594, - 0.027094, - 0.067523, - -0.040689, - -0.030104, - 0.010829, - 0.061274, - 0.044374, - -0.076775, - 0.071109, - 0.067212, - 0.071348, - -0.073877, - -0.067532, - 0.090236, - -0.0042279, - -0.029965, - 0.017851, - 0.00093894, - -0.0093375, - 0.032621, - 0.022203, - -0.060334, - -0.016672, - -0.020667, - 0.029309, - 0.035478, - 0.042441, - 0.094753, - 0.044314, - 0.056949, - 0.0033491, - -0.010888, - 0.013818, - -0.060808, - 0.016562, - 0.0074922, - 0.085465, - -0.03617, - -0.017937, - 0.071901, - -0.056251, - 0.017231, - -0.046873, - 0.049066, - 0.090397, - -0.017917, - 0.10349, - 0.050615, - -0.070495, - -0.027576, - -0.031514, - 0.099463, - 0.0077394, - 0.040088, - -0.068538, - 0.04245, - -0.042834, - -0.017991, - 0.020522, - 0.0178, - 0.0037661, - -0.0052938, - -0.063166, - -0.0035191, - -0.030929, - 0.046507, - 0.10002, - -0.090173, - 0.013158, - -0.018757, - 0.025258, - -0.048487, - 0.078811, - 0.027231, - -0.026547, - -0.0097223, - 0.012861, - -0.022045, - -0.017411, - 0.0076302, - -0.0026191, - -0.073642, - -0.046869, - -0.0804, - -0.038988, - 0.086425, - -0.012137, - 0.031434, - 0.018432, - -0.0046188, - -0.0052569, - 0.019727, - -0.011894, - -0.067736, - -0.054605, - 0.12273, - -0.078432, - 0.0041311, - -0.033386, - 0.016152, - -0.0088772, - -0.034203, - 0.07427, - -0.00027571, - 0.085113, - -0.0098868, - 0.067246, - -0.11315, - 0.010202, - 0.054957, - 0.015914, - 0.0015746, - -0.030878, - 0.03768, - 0.030705, - -0.10125, - 0.054651, - 0.0047525, - -0.0032439, - 0.006846, - -0.027644, - -0.10616, - 0.041133, - 0.014862, - -0.055767, - 0.098397, - 0.0070924, - 0.017257, - -0.05661, - 0.021832, - -0.0092168, - 0.017168, - -0.0021961, - -0.044982, - -0.031148, - -0.02248, - -0.0475, - -0.097037, - 0.11012, - -0.005802, - 0.03084, - -0.035352, - 0.061064, - -0.027681, - -0.012814, - -0.010765, - -0.032001, - -0.024592, - 0.01894, - -0.030817, - 0.062213, - 0.02639, - 0.029655, - -0.043777, - -0.036652, - -0.011964, - 0.068077, - 0.061045, - -0.054605, - -0.0062726, - 0.038418, - 0.068059, - -0.048443, - 0.0091321, - -0.015468, - 0.0098751, - 0.063545, - -0.088384, - -0.0080121, - -0.04936, - 0.071497, - -0.026605, - -0.022867, - 0.046932, - 0.026748, - 0.010856, - 0.060124, - 0.0086888, - -0.080398, - -0.00059112, - -0.064946, - -0.069035, - -0.030322, - 0.094293, - -0.024702, - 0.01793, - 0.077033, - -0.077082, - -0.014684, - -0.060723, - -0.033058, - 0.012384, - -0.026981, - 0.048305, - -0.012132, - 0.0030121, - -0.0016384, - -0.0070032, - 0.061516, - -0.046924, - -0.022654, - 0.0023954, - -0.0035629, - -0.01754, - 0.044203, - 0.10959, - 0.0014292, - -0.05004, - -0.044967, - -0.049273, - -0.02085, - -0.047559, - 0.033889, - -0.058194, - -0.079756 - ], - "milkshake": [ - -0.074459, - 0.0368, - -0.049821, - -0.009651, - -0.0052451, - -0.026205, - 0.033741, - -0.12204, - -0.000095979, - 0.047124, - 0.033573, - -0.014353, - 0.056914, - 0.05376, - -0.030124, - -0.0019717, - 0.030504, - 0.010389, - 0.011664, - -0.048224, - 0.039528, - 0.027798, - 0.019232, - 0.0036201, - 0.011642, - -0.012006, - 0.02832, - 0.053169, - -0.031852, - 0.050048, - -0.050917, - -0.058041, - -0.0041185, - 0.016222, - 0.018032, - -0.0072954, - -0.0069745, - 0.0017466, - -0.016746, - 0.0021813, - -0.0085889, - -0.08206, - -0.09994, - 0.011063, - 0.064399, - -0.029311, - 0.059836, - 0.012245, - -0.01993, - 0.043468, - 0.019227, - 0.047673, - 0.082472, - -0.03776, - -0.069973, - 0.021151, - 0.040242, - -0.083558, - -0.098445, - -0.057095, - -0.0096504, - 0.048247, - 0.076043, - 0.065368, - -0.027774, - 0.069428, - 0.01196, - 0.054146, - -0.08772, - -0.021365, - 0.045831, - 0.032505, - 0.02861, - -0.017035, - 0.027786, - 0.0073067, - -0.020122, - 0.00071869, - -0.049351, - 0.05083, - -0.053216, - -0.083474, - 0.018622, - 0.022083, - -0.012058, - 0.022558, - -0.051599, - -0.00012606, - 0.017246, - -0.02464, - 0.036026, - 0.021493, - -0.10494, - -0.012704, - 0.021171, - 0.085588, - 0.034718, - 0.035732, - 0.038587, - 0.018441, - -0.030625, - -0.010545, - -0.043779, - -0.063786, - -0.0083713, - -0.097253, - -0.075815, - 0.030803, - -0.032074, - 0.084349, - -0.017375, - 0.043965, - 0.052845, - 0.080937, - 0.056329, - 0.022228, - -0.090282, - 0.039268, - -0.089369, - 0.059712, - 0.023112, - -0.037642, - -0.0089315, - -0.10929, - 0.11521, - 0.061449, - -0.00096005, - -0.13267, - 0.0050477, - 0.0086901, - 0.0020544, - -0.0023801, - -0.0013447, - -0.088972, - -0.030894, - -0.059553, - 0.0058414, - 0.095, - 0.047643, - -0.042309, - 0.0064741, - -0.039342, - 0.021717, - -0.032853, - 0.01176, - -0.055956, - 0.057282, - -0.021472, - -0.01416, - 0.019415, - -0.071276, - -0.0059566, - -0.0029345, - 0.038255, - -0.011973, - -0.026045, - -0.054301, - 0.018103, - -0.031757, - 0.0084195, - 0.010667, - 0.028778, - -0.081336, - -0.011026, - 0.004664, - -0.009557, - -0.044207, - 0.027575, - 0.028779, - -0.021354, - -0.01683, - -0.00038466, - -0.025313, - 0.055772, - 0.032138, - 0.026579, - -0.041781, - 0.042522, - -0.045244, - -0.036715, - 0.031267, - -0.066197, - -0.013519, - -0.070666, - 0.021238, - -0.020114, - 0.019369, - 0.071734, - 0.10934, - 0.015414, - 0.056112, - 0.012051, - 0.010743, - 0.0038224, - 0.11974, - -0.020782, - -0.0092615, - -0.0095457, - 0.058834, - 0.010802, - -0.15303, - 0.052222, - -0.020064, - -0.014552, - -0.036761, - -0.0024441, - 0.050008, - -0.0030935, - 0.047996, - -0.046364, - 0.13446, - -0.029044, - 0.047838, - -0.0059627, - 0.076911, - -0.0091584, - 0.015738, - -0.038457, - 0.034239, - -0.0014727, - -0.0018318, - -0.033055, - 0.027129, - 0.11356, - 0.021111, - 0.092935, - 0.0037848, - 0.057592, - -0.018864, - 0.0078045, - 0.0046352, - -0.10126, - -0.073374, - -0.045907, - 0.019157, - 0.038621, - 0.0010988, - -0.042881, - 0.028559, - -0.084091, - 0.091666, - -0.032517, - -0.11247, - -0.085475, - -0.044058, - 0.032382, - 0.044525, - 0.011702, - -0.074251, - 0.0146, - -0.027604, - -0.03165, - 0.01, - 0.048613, - 0.0063266, - 0.013071, - -0.0072285, - -0.043405, - 0.037128, - -0.023249, - -0.045376, - 0.037006, - 0.080905, - -0.077535, - -0.0082301, - -0.033879, - -0.05561, - -0.040138, - 0.064028, - 0.046349, - -0.027462, - 0.090804, - -0.071053, - -0.026217, - -0.062159, - -0.051123, - 0.00046762, - 0.013348, - -0.017991, - 0.0013836, - 0.045993, - 0.032912, - 0.0063674, - 0.053814, - -0.079731, - 0.0029205, - -0.023405, - 0.01626, - -0.018, - -0.010287, - 0.020836, - -0.013958, - -0.049019, - 0.0026652, - -0.097831, - -0.020077, - 0.043424, - -0.018534, - -0.045847, - 0.022285 - ], - "transit": [ - 0.00142, - 0.0049971, - 0.00083867, - 0.055516, - -0.027622, - -0.033401, - -0.0067048, - -0.10639, - 0.086308, - 0.02562, - -0.031477, - -0.063737, - -0.018943, - 0.054642, - -0.035924, - -0.014873, - 0.09732, - 0.059434, - 0.038486, - -0.0049149, - 0.0087611, - -0.062876, - -0.026563, - 0.033193, - -0.024369, - 0.032488, - -0.028593, - -0.032702, - -0.080756, - 0.023866, - -0.0027348, - 0.092398, - -0.050245, - -0.051143, - 0.069822, - 0.0045092, - -0.0094467, - 0.047734, - -0.017462, - -0.021505, - -0.0049069, - -0.10223, - -0.069166, - -0.011371, - -0.00053732, - -0.00090203, - -0.013661, - 0.011444, - -0.01075, - 0.081845, - -0.044296, - -0.051674, - 0.013415, - -0.044207, - -0.13153, - -0.059693, - 0.013537, - -0.013214, - -0.035938, - -0.014585, - 0.072127, - 0.027163, - 0.11583, - -0.024185, - 0.055051, - -0.074069, - 0.010705, - -0.06477, - -0.026828, - -0.032612, - 0.0052115, - 0.031129, - 0.028278, - -0.051056, - 0.022299, - 0.046119, - -0.00059657, - 0.06449, - -0.0014218, - -0.040092, - -0.014636, - -0.021486, - -0.020197, - 0.062088, - -0.0069544, - 0.017894, - 0.031028, - -0.013079, - 0.014672, - -0.073325, - -0.013193, - 0.035137, - -0.077424, - -0.057826, - -0.043899, - 0.027542, - 0.007943, - 0.056267, - -0.087861, - 0.017127, - -0.015014, - -0.038767, - 0.0092089, - 0.0091709, - 0.084901, - -0.10747, - 0.0098392, - 0.036025, - 0.02425, - 0.018209, - 0.0014098, - 0.016703, - 0.05348, - -0.018656, - -0.034034, - -0.029398, - -0.027069, - 0.01385, - -0.04906, - 0.12122, - 0.058548, - 0.015585, - -0.035847, - 0.027339, - 0.075538, - -0.025866, - 0.039205, - -0.13089, - 0.029092, - 0.06219, - 0.037835, - 0.00075423, - 0.052804, - 0.006126, - 0.04867, - 0.029198, - 0.014209, - 0.023092, - 0.012208, - 0.031208, - 0.028717, - 0.0013063, - -0.098251, - 0.033059, - 0.021307, - 0.031719, - -0.067107, - 0.040268, - -0.035071, - -0.031275, - 0.0041645, - 0.049604, - -0.02027, - -0.11858, - 0.0051198, - -0.0090939, - -0.086916, - 0.022239, - -0.16399, - -0.026972, - 0.042457, - -0.0073002, - -0.062993, - 0.002787, - -0.040864, - -0.045658, - 0.12977, - -0.084327, - 0.052853, - -0.0022147, - 0.063983, - 0.061043, - -0.0045039, - -0.017683, - -0.0096182, - 0.06328, - -0.02458, - 0.0001236, - -0.042293, - 0.081609, - -0.024961, - 0.021594, - -0.025895, - -0.025907, - -0.026462, - -0.021092, - -0.0040583, - 0.08745, - 0.020409, - -0.010826, - 0.054771, - 0.016986, - 0.028239, - 0.044164, - 0.029974, - 0.022799, - -0.029501, - -0.049284, - 0.030982, - -0.032967, - -0.18553, - 0.11158, - 0.06676, - 0.049532, - 0.032378, - 0.041369, - -0.016654, - -0.028738, - -0.018768, - -0.011818, - 0.12894, - -0.0098259, - -0.027605, - -0.010799, - 0.033162, - 0.071845, - -0.0032313, - -0.041062, - 0.052642, - -0.045493, - 0.012906, - -0.0047435, - 0.041673, - 0.090842, - -0.032913, - 0.062114, - 0.033562, - 0.099142, - 0.01558, - 0.0096073, - -0.10814, - -0.018035, - -0.011752, - -0.043107, - 0.010405, - -0.09936, - -0.012933, - 0.093209, - -0.032596, - -0.015693, - 0.093994, - 0.030869, - -0.0020926, - -0.088315, - -0.11026, - 0.022745, - 0.048944, - -0.017879, - 0.019785, - 0.027687, - 0.033428, - 0.018718, - -0.0037493, - 0.0074909, - 0.006653, - 0.016667, - -0.027375, - -0.0024588, - -0.00045527, - 0.0073037, - -0.066827, - 0.052835, - -0.027942, - -0.025377, - 0.053935, - 0.0318, - -0.013619, - -0.012141, - -0.019558, - 0.042478, - -0.051646, - 0.11236, - -0.10618, - -0.048068, - -0.047529, - -0.024851, - -0.025061, - 0.000053945, - 0.05289, - 0.0022205, - 0.065031, - -0.082539, - -0.013729, - -0.026979, - -0.01647, - -0.0067321, - -0.088094, - 0.0052386, - 0.035917, - -0.068299, - 0.030429, - 0.018581, - -0.094044, - -0.034182, - 0.057145, - 0.020084, - -0.019702, - 0.038817, - -0.043211, - -0.050088 - ], - "non-science": [ - -0.050832, - -0.010573, - -0.056489, - -0.0010892, - -0.018548, - -0.048723, - 0.039896, - -0.059584, - -0.0086536, - -0.0030523, - -0.010031, - -0.0093364, - 0.023186, - 0.0089066, - 0.021977, - 0.023953, - 0.082183, - 0.083989, - 0.013426, - -0.016092, - 0.0049965, - 0.0012129, - 0.065392, - 0.018043, - -0.033526, - -0.048853, - 0.0011776, - 0.061317, - 0.036912, - 0.016307, - -0.021067, - -0.015973, - 0.037451, - -0.026585, - 0.064604, - 0.016219, - 0.013676, - -0.034617, - 0.015839, - 0.045469, - -0.012506, - -0.072697, - -0.009529, - 0.0016172, - 0.013269, - -0.041497, - -0.034014, - -0.0062713, - -0.013954, - 0.020394, - 0.005753, - 0.044285, - 0.047282, - -0.0087094, - -0.0068874, - 0.089566, - -0.0069497, - 0.012808, - 0.0064587, - 0.027453, - 0.036407, - 0.046371, - 0.076245, - -0.0096311, - 0.036511, - -0.029384, - -0.013617, - 0.027174, - 0.027396, - 0.066758, - 0.018042, - -0.022, - 0.036844, - 0.048111, - -0.013528, - -0.00029752, - -0.026886, - 0.0048211, - 0.030875, - -0.0038154, - -0.011311, - 0.019834, - 0.01626, - 0.05805, - -0.027407, - 0.077749, - -0.014263, - 0.038557, - 0.022234, - 0.044646, - 0.032977, - 0.017947, - -0.045408, - 0.028807, - 0.041557, - 0.046611, - 0.036514, - 0.022891, - -0.026717, - 0.035485, - -0.041548, - 0.0051465, - 0.0070979, - -0.01411, - 0.0037802, - -0.052256, - 0.030578, - 0.054378, - 0.024631, - -0.013517, - 0.012248, - 0.078849, - 0.039731, - -0.001186, - -0.0046911, - -0.00062231, - 0.0016989, - -0.011599, - -0.060584, - -0.025603, - 0.022639, - 0.0046131, - -0.049593, - -0.090386, - 0.078251, - 0.0081175, - -0.10189, - -0.026308, - -0.051035, - 0.035261, - -0.026559, - 0.089994, - 0.010484, - 0.025581, - -0.0037728, - -0.0062403, - 0.01177, - 0.03296, - -0.011275, - -0.031188, - 0.0080389, - -0.053601, - -0.020805, - -0.016099, - -0.007059, - -0.041357, - -0.044033, - 0.00023788, - -0.041076, - -0.0074053, - 0.049732, - 0.050058, - -0.030856, - -0.012219, - 0.026262, - 0.042331, - 0.040292, - 0.023425, - -0.002459, - 0.0047888, - 0.0078949, - 0.048213, - 0.0031465, - -0.016122, - 0.043822, - 0.0065136, - -0.046151, - 0.0032257, - 0.00011455, - -0.014518, - -0.028874, - -0.00068448, - 0.024138, - -0.018127, - 0.10758, - 0.052435, - 0.0078531, - 0.014902, - -0.0022607, - 0.021505, - -0.038319, - 0.058101, - 0.0067251, - 0.028092, - 0.07501, - -0.052827, - 0.030714, - 0.086866, - 0.014051, - 0.000077891, - -0.0015776, - 0.064597, - -0.034129, - -0.030982, - 0.0063863, - 0.012689, - -0.079961, - -0.014915, - -0.049902, - 0.028535, - -0.096422, - 0.003067, - 0.015944, - -0.010061, - 0.037524, - 0.026163, - -0.0042886, - -0.0097121, - 0.0056994, - -0.017344, - 0.091258, - -0.032579, - 0.016131, - -0.013606, - 0.0085901, - 0.067274, - 0.0042805, - -0.015061, - -0.019185, - -0.0076667, - -0.0067965, - 0.047405, - -0.058585, - 0.076451, - -0.025733, - -0.0097503, - 0.070409, - 0.055293, - 0.070367, - -0.0084005, - -0.033324, - -0.010238, - -0.019224, - 0.0019811, - 0.05603, - 0.045539, - 0.013061, - -0.035657, - 0.012377, - -0.030452, - 0.015271, - -0.056393, - 0.027625, - 0.056224, - -0.051993, - 0.071579, - -0.0035576, - -0.022224, - -0.018042, - 0.053343, - 0.017559, - 0.080624, - 0.016659, - -0.039049, - -0.0016032, - -0.021784, - 0.01655, - 0.031091, - 0.065467, - 0.0055983, - 0.022203, - 0.036259, - 0.0085088, - -0.0066985, - -0.031269, - -0.00095694, - 0.021497, - 0.017182, - 0.078108, - 0.019134, - 0.013761, - 0.063773, - -0.047922, - -0.022925, - 0.049836, - -0.060037, - -0.0091596, - -0.010743, - -0.0003973, - -0.018299, - 0.047348, - -0.041442, - 0.034883, - -0.032108, - -0.022038, - 0.0028292, - 0.0010623, - -0.026949, - 0.0012306, - -0.070775, - -0.024511, - 0.017367, - 0.017551, - 0.030508, - -0.05336, - -0.014463, - -0.026331, - -0.0093417, - -0.0028807, - 0.028672 - ], - "PKI": [ - 0.071792, - -0.0065348, - -0.28551, - -0.16079, - -0.085722, - 0.050076, - 0.10263, - -0.13025, - -0.13857, - 0.13688, - -0.13894, - 0.0060819, - -0.0045857, - 0.23611, - -0.21402, - 0.10571, - 0.11971, - -0.1957, - 0.064554, - -0.086365, - -0.10061, - 0.061189, - 0.080096, - -0.019906, - -0.11084, - 0.041503, - 0.041722, - -0.13303, - -0.0044317, - 0.022302, - 0.17551, - -0.29656, - 0.086065, - 0.018462, - 0.0592, - -0.040281, - -0.020686, - -0.0013359, - -0.049259, - -0.089979, - 0.0010852, - -0.035121, - -0.015031, - 0.11431, - -0.16409, - -0.01166, - -0.025536, - -0.078491, - 0.11166, - -0.11733, - -0.027911, - -0.2005, - -0.041297, - 0.038956, - 0.037618, - 0.045977, - -0.066534, - -0.041829, - 0.02185, - -0.1724, - 0.12319, - -0.088706, - 0.041468, - -0.12291, - -0.12341, - -0.020388, - 0.26383, - -0.15269, - -0.045671, - -0.0226, - -0.098512, - 0.068844, - -0.035019, - -0.058215, - -0.070555, - -0.21382, - 0.046271, - 0.011068, - 0.15323, - 0.029884, - 0.033914, - 0.035518, - -0.065288, - -0.098728, - -0.079885, - -0.13001, - -0.060975, - -0.067358, - -0.019752, - -0.035173, - 0.088078, - -0.022284, - -0.0081597, - 0.017829, - -0.097799, - 0.13489, - 0.025719, - -0.14716, - -0.020437, - 0.22658, - -0.096583, - 0.043303, - 0.080058, - -0.16279, - -0.0077542, - -0.10686, - 0.15787, - -0.090745, - -0.084578, - 0.06219, - -0.050134, - 0.042341, - -0.062736, - -0.021529, - -0.17247, - -0.0016404, - 0.08267, - 0.15172, - 0.032342, - 0.026427, - 0.094731, - 0.023733, - -0.1808, - -0.052588, - 0.014507, - 0.12768, - -0.11722, - -0.060802, - 0.013939, - 0.089359, - -0.057037, - 0.016667, - 0.084526, - 0.0098599, - -0.030943, - 0.069172, - -0.043029, - 0.012237, - -0.021391, - -0.060702, - -0.094796, - 0.080862, - -0.099957, - 0.10966, - -0.14352, - -0.1105, - -0.12585, - -0.079182, - -0.085534, - -0.08569, - 0.070635, - 0.069036, - 0.078691, - -0.10619, - 0.024531, - 0.055752, - 0.0099122, - 0.039769, - -0.051978, - -0.082219, - 0.16848, - -0.12099, - -0.066664, - 0.041343, - 0.16912, - -0.21275, - 0.037592, - 0.25352, - 0.13808, - -0.034902, - -0.02336, - 0.14287, - -0.13517, - 0.0067086, - -0.24454, - 0.048031, - -0.13504, - 0.0026855, - 0.097459, - -0.21578, - 0.052094, - 0.095327, - -0.046477, - 0.088261, - 0.0741, - -0.045091, - 0.012205, - 0.31403, - -0.13372, - -0.12984, - -0.056068, - 0.016255, - 0.039731, - 0.0077564, - 0.1992, - 0.039344, - 0.11867, - -0.11892, - -0.056872, - -0.0067994, - -0.082864, - -0.0028746, - -0.021443, - 0.099529, - -0.031052, - -0.089745, - -0.07189, - 0.11074, - -0.06638, - -0.014723, - 0.14303, - -0.051341, - 0.042379, - -0.062976, - 0.012936, - 0.13443, - -0.12032, - 0.087582, - 0.043538, - 0.0031978, - 0.066379, - -0.12215, - -0.23059, - 0.053416, - -0.045984, - 0.040796, - 0.10084, - -0.068645, - -0.051587, - 0.0041863, - -0.039975, - 0.00021486, - -0.07832, - 0.085505, - 0.082089, - -0.12173, - -0.084991, - 0.10367, - 0.008035, - 0.006011, - -0.0042429, - -0.20242, - 0.043421, - 0.037897, - 0.073429, - -0.051986, - -0.32225, - 0.0095914, - 0.05069, - 0.077641, - 0.00055325, - 0.11689, - -0.16442, - -0.0028573, - 0.019828, - 0.13815, - 0.15914, - -0.013194, - 0.14458, - 0.054996, - -0.019884, - 0.25533, - -0.12587, - -0.0087014, - 0.035497, - -0.17356, - 0.10979, - 0.072854, - -0.0024188, - -0.066658, - -0.12192, - 0.0043783, - 0.10239, - 0.015116, - -0.027363, - -0.021315, - 0.10917, - -0.0057428, - -0.029175, - 0.17547, - 0.20693, - -0.020348, - 0.031419, - 0.19142, - 0.012402, - -0.20305, - -0.017885, - -0.032875, - -0.062291, - -0.16007, - 0.066381, - 0.05765, - 0.029473, - 0.080218, - -0.070682, - 0.093232, - -0.062, - -0.13258, - -0.020669, - -0.023933 - ], - "development": [ - 0.00583, - -0.06119, - 0.0026989, - -0.0064969, - -0.044888, - 0.016012, - 0.0013552, - -0.070169, - 0.0053484, - 0.033332, - 0.0056477, - -0.048808, - -0.010598, - 0.0068154, - 0.029513, - 0.020483, - 0.067573, - 0.016987, - 0.059116, - 0.01908, - -0.0028471, - -0.011095, - 0.012757, - 0.052713, - -0.023974, - -0.0032239, - -0.035762, - 0.012346, - 0.012409, - -0.0010888, - -0.025158, - 0.011743, - 0.011015, - -0.079353, - -0.0063483, - 0.032703, - 0.016627, - -0.030528, - -0.003461, - -0.037375, - -0.005165, - -0.070027, - -0.022224, - -0.050771, - -0.016194, - 0.012534, - -0.009726, - -0.0052411, - -0.024195, - 0.0013908, - -0.0054784, - 0.014153, - -0.024134, - 0.000094442, - -0.04543, - 0.023212, - 0.007095, - -0.031209, - -0.033986, - 0.05509, - 0.038973, - -0.0088844, - 0.052872, - 0.011973, - 0.078817, - -0.026365, - 0.011105, - -0.035044, - 0.010505, - -0.054535, - 0.018433, - -0.013516, - -0.0074008, - 0.012516, - -0.019398, - -0.0068989, - -0.028271, - -0.019087, - 0.011663, - -0.0076347, - 0.00080768, - -0.012161, - -0.051381, - 0.03013, - 0.0074987, - 0.015191, - -0.014778, - -0.006596, - -0.015144, - 0.01554, - 0.0080069, - 0.030904, - -0.07028, - 0.00042339, - -0.021886, - 0.020925, - 0.043352, - -0.034007, - -0.026361, - 0.012217, - -0.0031195, - -0.007188, - 0.0048819, - 0.0011808, - 0.0094523, - -0.054202, - 0.022574, - 0.0013699, - -0.019889, - 0.0058932, - -0.043076, - 0.043185, - 0.05518, - 0.017916, - 0.01145, - -0.01103, - -0.023553, - 0.0019961, - -0.04326, - 0.022592, - -0.010227, - -0.031865, - 0.0099739, - 0.056555, - 0.063774, - 0.013412, - -0.014108, - -0.10123, - 0.03261, - 0.11133, - 0.044443, - -0.0050981, - 0.010057, - -0.0049702, - -0.027173, - 0.0063991, - 0.021527, - 0.019895, - 0.0062957, - 0.019724, - 0.014446, - 0.037778, - 0.014373, - 0.028456, - 0.010989, - -0.0055564, - 0.018463, - 0.026112, - 0.015653, - 0.011989, - 0.062092, - 0.036392, - 0.038232, - -0.091767, - 0.017115, - 0.0010867, - 0.028804, - 0.033179, - 0.011462, - -0.021349, - 0.034674, - -0.0090536, - -0.055177, - -0.0051575, - -0.022731, - -0.011691, - 0.012914, - -0.0073886, - 0.019508, - 0.00026857, - 0.062388, - 0.022954, - -0.0034948, - 0.0077897, - -0.014059, - 0.028224, - -0.03344, - 0.0092935, - -0.058032, - 0.030741, - -0.043926, - 0.011684, - -0.014144, - 0.035627, - -0.020655, - -0.04555, - 0.0019927, - 0.059616, - -0.0099458, - -0.020899, - -0.033411, - 0.014347, - -0.0023271, - -0.013678, - -0.011901, - -0.018338, - 0.0038587, - 0.014859, - 0.0062654, - -0.0067374, - -0.1149, - 0.06047, - 0.016397, - -0.02392, - -0.016482, - 0.02792, - 0.0079314, - -0.015014, - -0.0062719, - 0.0000087274, - 0.070822, - 0.017215, - 0.014953, - -0.0013013, - 0.056116, - 0.0078106, - 0.012013, - -0.023993, - 0.004512, - -0.029574, - -0.02633, - -0.012539, - 0.020106, - 0.068075, - 0.00057903, - 0.0050178, - 0.0034082, - 0.071365, - -0.0015112, - -0.019704, - -0.019478, - -0.042008, - -0.028688, - 0.0078138, - 0.033459, - 0.024622, - -0.0073663, - 0.0092348, - -0.021999, - 0.0088825, - 0.018829, - 0.04137, - 0.0046152, - -0.014469, - -0.048881, - 0.0054944, - -0.039581, - -0.046125, - 0.024334, - 0.016919, - 0.032116, - 0.002883, - 0.0077281, - -0.0086171, - 0.020901, - 0.045649, - -0.0083984, - 0.030253, - 0.050057, - 0.0057362, - 0.026097, - 0.000035421, - -0.0437, - 0.013721, - 0.0259, - -0.015436, - -0.021233, - 0.0079619, - -0.014863, - -0.0025389, - 0.015966, - 0.053133, - -0.083942, - -0.038427, - -0.0033033, - -0.01472, - 0.02091, - 0.017787, - 0.013544, - -0.010417, - 0.055674, - 0.0019808, - 0.012806, - -0.0036104, - 0.010616, - 0.0020884, - -0.012658, - 0.00090226, - -0.024188, - -0.0073386, - -0.026144, - -0.0027415, - -0.034924, - -0.021529, - 0.013631, - 0.0014039, - -0.028196, - 0.012007, - -0.020889, - 0.00047931 - ], - "cellphones": [ - -0.050587, - -0.019383, - -0.010625, - 0.020814, - -0.001251, - -0.0077213, - 0.047819, - -0.031815, - 0.052361, - 0.058556, - -0.012883, - -0.017381, - -0.052375, - -0.032373, - -0.017149, - -0.028544, - 0.055616, - 0.039901, - 0.011448, - -0.0068092, - 0.040622, - -0.094615, - 0.046821, - 0.027809, - 0.020897, - -0.042389, - 0.097701, - 0.019129, - 0.057572, - -0.065291, - -0.01884, - 0.01832, - 0.047513, - 0.024943, - 0.053249, - -0.0063286, - 0.020613, - 0.021521, - -0.025249, - -0.066974, - -0.096932, - -0.061413, - -0.045525, - 0.044505, - 0.098016, - -0.028712, - 0.0017653, - -0.057259, - -0.011516, - -0.049271, - -0.010048, - -0.031015, - -0.020595, - 0.002594, - -0.10557, - 0.095053, - 0.0049725, - -0.0065611, - -0.0031598, - -0.0010661, - -0.016327, - -0.030223, - 0.092759, - 0.048756, - -0.018656, - 0.018173, - 0.061787, - -0.018887, - -0.0079465, - 0.036828, - -0.023391, - -0.043308, - 0.034654, - -0.04711, - -0.059006, - 0.050877, - 0.067572, - -0.062917, - 0.0016926, - -0.025332, - -0.018167, - -0.078085, - -0.047038, - 0.022019, - -0.0096359, - -0.063514, - -0.02627, - -0.028819, - -0.040486, - 0.046065, - -0.016259, - -0.053617, - -0.066696, - 0.0292, - 0.014472, - 0.06029, - -0.036113, - -0.084237, - -0.0071965, - -0.00079018, - 0.03046, - 0.034101, - -0.0015458, - -0.050987, - 0.021913, - -0.033904, - 0.00063587, - 0.028039, - 0.060104, - -0.023191, - 0.055356, - 0.044655, - 0.053184, - 0.066332, - -0.085564, - -0.0081235, - -0.044973, - 0.018328, - -0.054036, - -0.0020149, - -0.026484, - 0.062182, - 0.036298, - -0.041688, - 0.057308, - 0.016755, - 0.0056861, - -0.040717, - 0.040038, - 0.047849, - -0.023791, - 0.032172, - -0.025919, - 0.014957, - 0.095547, - -0.023749, - 0.058296, - -0.023592, - -0.013685, - 0.055563, - 0.10932, - 0.039614, - 0.039862, - 0.036444, - 0.025352, - 0.013608, - -0.014997, - 0.033982, - 0.0090269, - -0.077844, - -0.000090812, - 0.056732, - -0.020263, - 0.0018651, - 0.015631, - 0.016878, - -0.035258, - 0.012466, - 0.0067974, - 0.0071398, - 0.049577, - 0.029236, - 0.0038452, - -0.0043411, - -0.01018, - -0.030685, - 0.0067794, - -0.0086414, - 0.05162, - 0.013674, - -0.0082296, - 0.049842, - 0.056887, - 0.11032, - -0.061092, - 0.05048, - 0.0054313, - 0.037236, - -0.021641, - 0.0014864, - 0.1083, - 0.0033068, - 0.0056805, - -0.040169, - -0.048857, - -0.058648, - -0.029653, - 0.11108, - 0.046215, - 0.0093711, - 0.0018654, - 0.042606, - -0.067838, - 0.030233, - 0.023635, - 0.00017075, - 0.0012923, - 0.03645, - 0.026263, - 0.018996, - -0.0781, - 0.078639, - -0.040631, - 0.022266, - 0.020037, - 0.082169, - 0.038885, - 0.019491, - -0.041643, - -0.045535, - 0.056401, - 0.022324, - 0.08427, - 0.05798, - -0.0085091, - -0.014816, - -0.063927, - -0.026958, - -0.020125, - -0.0029096, - 0.01522, - -0.052308, - -0.0093703, - 0.064558, - 0.047738, - -0.043668, - 0.0062162, - 0.01297, - -0.052082, - -0.04523, - -0.0077703, - -0.022057, - -0.080937, - -0.015153, - 0.038336, - 0.024366, - 0.032186, - 0.060345, - 0.01783, - -0.05249, - -0.0063511, - -0.056711, - 0.077217, - -0.027701, - 0.030482, - -0.017083, - 0.038785, - -0.0057576, - 0.0045996, - -0.0044278, - -0.012169, - 0.013042, - -0.1056, - -0.01522, - -0.017112, - -0.0046348, - -0.014349, - -0.039909, - -0.018625, - -0.02384, - -0.0044453, - 0.036363, - 0.0027783, - -0.020455, - 0.015314, - 0.039718, - -0.018423, - -0.018137, - 0.042057, - 0.058791, - -0.048255, - 0.062529, - -0.1111, - 0.010382, - -0.027802, - -0.0016252, - -0.068358, - 0.043283, - 0.037991, - -0.018651, - 0.038008, - -0.020654, - -0.054597, - 0.0070203, - -0.038098, - -0.03306, - -0.11157, - 0.043191, - 0.02631, - -0.0048125, - 0.051121, - -0.011781, - -0.10293, - 0.0089903, - 0.054512, - 0.014727, - -0.0026676, - -0.020757, - 0.086569, - -0.0023071 - ], - "literature": [ - -0.017579, - -0.079466, - 0.050535, - 0.0088788, - 0.017591, - -0.035838, - -0.015674, - -0.082596, - 0.052974, - -0.020346, - 0.04881, - -0.073422, - 0.0065803, - -0.025638, - 0.0030812, - -0.02753, - 0.1061, - 0.002368, - 0.031826, - 0.010381, - -0.016848, - 0.0079686, - 0.017009, - 0.049864, - 0.0013706, - 0.024081, - -0.042193, - -0.014885, - 0.015607, - 0.0089877, - 0.023229, - -0.012836, - 0.016744, - -0.064428, - 0.0401, - 0.019625, - 0.026912, - -0.037335, - 0.01944, - -0.0091041, - 0.0044424, - -0.087493, - 0.013181, - 0.031788, - 0.020253, - -0.0054734, - -0.000025045, - 0.020295, - 0.011463, - 0.011246, - -0.0014258, - 0.028575, - -0.020575, - -0.032387, - -0.045236, - 0.019483, - -0.029623, - 0.050641, - -0.0023152, - 0.04434, - 0.041173, - -0.046298, - 0.090636, - 0.050267, - 0.042089, - 0.019115, - 0.02759, - 0.037945, - 0.011843, - -0.0058313, - -0.00138, - 0.0055991, - 0.013676, - -0.014221, - 0.029826, - -0.04886, - -0.018098, - -0.018757, - 0.07207, - -0.028743, - -0.0071814, - 0.029554, - -0.036173, - 0.022816, - -0.050976, - 0.0016664, - 0.0087844, - 0.0026899, - -0.033277, - 0.032182, - -0.046781, - 0.026773, - -0.054396, - 0.027617, - 0.029654, - 0.044364, - 0.014612, - 0.021147, - 0.014655, - 0.052853, - -0.0012591, - 0.0070276, - -0.034398, - -0.047669, - 0.0033551, - -0.047847, - -0.024238, - 0.036757, - 0.014165, - 0.023485, - -0.020103, - 0.073056, - 0.033896, - -0.035204, - -0.05736, - 0.022721, - 0.017872, - -0.0059826, - -0.03086, - 0.0022578, - 0.0094072, - -0.032424, - -0.032199, - -0.029802, - 0.031099, - -0.014117, - -0.075694, - -0.013317, - 0.027783, - 0.11038, - 0.014305, - 0.015115, - 0.0085119, - 0.0089163, - 0.0068163, - 0.015475, - 0.0017562, - 0.024888, - 0.027158, - -0.024367, - 0.039479, - -0.032226, - 0.0053372, - 0.02683, - 0.0020485, - -0.048114, - -0.055423, - -0.0038226, - -0.0039989, - -0.037424, - 0.042381, - 0.030398, - 0.00055924, - -0.062017, - 0.01044, - 0.0063649, - 0.0024973, - 0.024299, - 0.015813, - 0.047581, - 0.017503, - 0.0049668, - -0.043247, - -0.038479, - 0.011751, - 0.012075, - 0.029738, - -0.042787, - -0.0018749, - -0.014145, - 0.033521, - -0.043867, - 0.012538, - -0.0014095, - 0.019538, - 0.040889, - -0.021585, - 0.025618, - -0.01626, - -0.0099481, - -0.010719, - 0.049416, - -0.0090902, - -0.040012, - 0.00075239, - 0.00976, - 0.039981, - 0.082173, - 0.021455, - 0.014292, - -0.011113, - 0.063057, - -0.021547, - -0.058476, - -0.042417, - -0.0099201, - -0.016884, - 0.020898, - -0.0051908, - 0.032176, - -0.1088, - -0.013423, - -0.0036603, - -0.025335, - 0.046842, - 0.0086242, - 0.02258, - 0.011204, - -0.046723, - -0.0055556, - 0.077437, - 0.017753, - -0.007523, - 0.022601, - 0.014365, - 0.040395, - 0.017422, - -0.029404, - -0.019559, - -0.0062331, - -0.021056, - 0.0017747, - 0.011624, - 0.095004, - 0.0091128, - -0.0060437, - 0.031139, - 0.063111, - 0.01259, - -0.0021067, - 0.016808, - -0.040776, - -0.019658, - 0.017003, - -0.015979, - 0.019035, - 0.024286, - -0.015123, - 0.018784, - -0.058835, - 0.036599, - 0.010508, - 0.0033265, - -0.019571, - 0.015656, - -0.038937, - -0.057965, - -0.000445, - 0.0082567, - -0.017235, - 0.10689, - 0.0063572, - -0.053014, - 0.023731, - -0.037451, - 0.011401, - -0.054295, - 0.027697, - 0.045067, - -0.022711, - 0.017592, - 0.0077248, - -0.019915, - -0.0094314, - -0.016779, - -0.0099702, - -0.01424, - 0.028004, - 0.022819, - -0.011428, - 0.052724, - 0.063867, - -0.060682, - -0.022482, - -0.01017, - -0.022445, - -0.0065209, - 0.018238, - -0.02697, - 0.025549, - 0.06526, - 0.013139, - 0.0088116, - -0.016692, - -0.042487, - 0.042504, - -0.026827, - 0.0060464, - -0.011086, - 0.013845, - 0.008309, - 0.016403, - -0.00060553, - -0.067291, - -0.0025003, - 0.042776, - 0.036031, - -0.010486, - 0.035026, - 0.011561 - ], - "residential": [ - 0.028337, - -0.039986, - 0.045061, - 0.029502, - -0.024823, - -0.0097807, - 0.0010449, - -0.063747, - 0.044734, - 0.012173, - -0.030364, - -0.055457, - 0.0011245, - 0.014915, - -0.016932, - -0.0030039, - 0.056099, - 0.010805, - 0.01374, - 0.041578, - 0.043672, - -0.019057, - 0.050122, - 0.073202, - 0.0283, - -0.027347, - -0.032572, - 0.058955, - 0.0092409, - 0.050649, - -0.042318, - -0.015558, - -0.050192, - -0.04329, - 0.023777, - 0.050134, - 0.048365, - 0.025561, - -0.022147, - 0.032565, - -0.0036021, - -0.082023, - 0.055654, - -0.014258, - -0.031246, - -0.030579, - -0.021969, - 0.0057322, - -0.028738, - 0.033255, - -0.0047884, - -0.0047154, - -0.024085, - 0.0044172, - -0.0049164, - -0.031854, - -0.016775, - 0.016469, - -0.017998, - -0.060952, - 0.015634, - 0.012502, - 0.093596, - -0.028607, - 0.03292, - -0.026295, - -0.020102, - -0.033878, - -0.017088, - -0.053145, - 0.024777, - -0.012204, - 0.05294, - -0.012764, - 0.019986, - -0.04958, - -0.018473, - -0.0063429, - 0.0035249, - -0.010436, - -0.0013682, - -0.027809, - 0.0036423, - 0.0013026, - -0.044094, - 0.041252, - -0.0016806, - -0.0093732, - 0.011675, - -0.021476, - 0.0091417, - 0.024909, - -0.074827, - -0.014927, - 0.0017013, - 0.064407, - -0.0021783, - 0.0019558, - 0.0014731, - 0.00845, - 0.052538, - 0.070577, - -0.00080933, - -0.010338, - 0.029293, - -0.079006, - 0.0237, - 0.006799, - 0.00028652, - 0.013722, - -0.052045, - 0.064761, - 0.037611, - 0.073307, - -0.0042896, - -0.052955, - 0.0055455, - -0.0053166, - -0.029509, - -0.014102, - -0.022688, - 0.0354, - 0.053554, - -0.0084176, - 0.061254, - -0.0022275, - 0.022179, - -0.059275, - 0.018427, - 0.0083612, - 0.029612, - 0.036955, - 0.03414, - -0.013552, - -0.02211, - 0.06126, - 0.011191, - 0.0062725, - -0.028254, - -0.042295, - -0.0015999, - -0.0063842, - 0.025389, - 0.027035, - 0.030816, - -0.013098, - 0.018723, - 0.048621, - -0.021947, - 0.03327, - 0.043393, - 0.091355, - 0.014518, - -0.05891, - 0.029539, - 0.043865, - 0.0020103, - 0.04935, - -0.010621, - 0.014221, - 0.015775, - -0.0080659, - -0.034467, - 0.013331, - 0.03835, - 0.0034997, - 0.03538, - -0.04736, - 0.029158, - 0.012343, - 0.039867, - 0.040411, - 0.075593, - 0.087945, - -0.019018, - 0.057079, - -0.002667, - 0.021877, - -0.046288, - 0.029107, - 0.0098695, - -0.0012361, - -0.01434, - 0.045814, - -0.02988, - -0.023265, - -0.0076477, - 0.078375, - 0.0041158, - -0.012911, - -0.015461, - 0.025619, - 0.048989, - 0.02527, - 0.022287, - -0.016019, - 0.028312, - 0.028696, - -0.0014244, - 0.0043967, - -0.11754, - 0.034253, - -0.0022747, - -0.019556, - -0.0058428, - -0.015331, - -0.0080938, - 0.0034069, - -0.028902, - 0.0047304, - 0.12654, - -0.032821, - -0.028024, - -0.019021, - -0.048518, - 0.018818, - 0.023844, - -0.02691, - -0.011654, - -0.058736, - 0.0092625, - -0.043849, - 0.020188, - 0.062552, - -0.040284, - 0.013211, - -0.066659, - 0.045747, - 0.023923, - -0.019289, - -0.0093565, - -0.010215, - -0.0025671, - 0.003181, - 0.011261, - 0.048188, - 0.015859, - 0.013037, - -0.01928, - -0.023668, - 0.044855, - -0.022829, - 0.031609, - -0.018529, - -0.083618, - 0.045698, - -0.024988, - -0.033255, - 0.0021166, - -0.0042842, - -0.057478, - -0.023149, - -0.030783, - -0.029579, - -0.0087067, - 0.018349, - -0.0203, - 0.0078528, - -0.006756, - -0.038302, - 0.033889, - -0.03216, - -0.041806, - -0.02349, - 0.049907, - 0.0014912, - 0.001809, - 0.00023962, - 0.032165, - 0.0049311, - -0.033775, - 0.0413, - -0.075616, - -0.011988, - -0.014217, - -0.041106, - 0.086154, - 0.00017292, - 0.051146, - 0.046823, - 0.11063, - 0.0012749, - -0.01524, - 0.036017, - -0.013192, - 0.0085069, - -0.039466, - -0.038421, - -0.018558, - -0.033197, - 0.0036827, - -0.016962, - -0.014518, - 0.036479, - -0.0030322, - 0.040968, - -0.035104, - 0.0299, - 0.0077898, - 0.01103 - ], - "high-street": [ - -0.026889, - -0.039055, - -0.0064335, - -0.035539, - -0.03186, - -0.054304, - 0.061125, - -0.040686, - 0.052531, - 0.017722, - 0.0021319, - -0.029572, - -0.052065, - -0.031111, - -0.019782, - 0.021493, - 0.07807, - 0.04895, - 0.047007, - -0.011364, - 0.028661, - 0.019347, - 0.0087664, - 0.058677, - 0.031498, - 0.019363, - 0.029278, - 0.028352, - -0.051343, - 0.032075, - -0.017035, - -0.039403, - -0.0023492, - -0.031931, - 0.052648, - 0.030028, - 0.029634, - 0.041599, - -0.01849, - 0.05229, - 0.041684, - -0.12064, - -0.014837, - -0.0062107, - 0.0077206, - -0.03173, - -0.018236, - -0.0052195, - 0.014049, - -0.032419, - 0.04314, - -0.029876, - -0.028129, - -0.021558, - 0.032282, - -0.012654, - -0.02134, - 0.0039789, - -0.047864, - -0.053441, - -0.0058305, - 0.050904, - 0.043113, - 0.016912, - -0.00129, - 0.038834, - -0.040866, - -0.028581, - -0.054507, - -0.060596, - -0.034262, - 0.019569, - 0.044752, - -0.031192, - 0.0070661, - -0.044438, - 0.064007, - -0.021846, - 0.010182, - 0.017471, - -0.0099293, - -0.01963, - -0.013725, - 0.069816, - 0.0078861, - 0.057704, - -0.054906, - 0.0093744, - 0.0027125, - -0.0036357, - 0.015465, - 0.038, - -0.068989, - 0.0054244, - -0.012992, - 0.08167, - -0.060792, - 0.011998, - 0.019318, - -0.01542, - -0.038735, - -0.0022159, - -0.040414, - 0.063243, - -0.038926, - -0.067357, - 0.0066029, - -0.011859, - 0.029736, - 0.021516, - -0.0016632, - 0.044337, - 0.024063, - 0.046186, - -0.040709, - 0.002406, - 0.01857, - 0.035385, - -0.02855, - -0.033633, - 0.040379, - -0.012533, - -0.01194, - -0.013055, - 0.018384, - -0.024159, - -0.031889, - -0.046845, - 0.061108, - 0.066402, - 0.0011451, - 0.084151, - 0.02791, - 0.028942, - -0.0062561, - -0.0093092, - -0.017593, - 0.018354, - 0.029346, - -0.097924, - 0.046965, - 0.018926, - -0.0015551, - 0.034673, - -0.01255, - 0.015019, - 0.055607, - -0.017149, - 0.006179, - 0.012168, - 0.045262, - 0.10698, - 0.029282, - 0.022239, - -0.019255, - 0.0055264, - 0.010267, - 0.061449, - 0.0052351, - 0.094252, - 0.028682, - -0.065944, - -0.0040494, - 0.070316, - -0.021189, - 0.031124, - 0.024724, - 0.0061615, - 0.058055, - 0.082695, - -0.0064691, - -0.038909, - 0.03336, - -0.02253, - -0.0071948, - 0.044465, - -0.062586, - 0.0051505, - 0.011247, - -0.048535, - 0.024257, - -0.087412, - -0.027467, - -0.070123, - -0.003139, - -0.011421, - -0.04059, - 0.13196, - -0.02846, - 0.030304, - -0.073589, - 0.062999, - 0.011968, - -0.039685, - 0.0068434, - 0.0056145, - -0.017955, - -0.028824, - 0.0029859, - 0.010786, - -0.13957, - 0.060921, - -0.033426, - 0.035426, - 0.036582, - 0.056332, - 0.033347, - -0.03372, - 0.0011173, - 0.027889, - 0.12179, - -0.024535, - 0.035402, - -0.011604, - -0.054285, - -0.062716, - -0.036726, - 0.0026458, - 0.04839, - 0.0079481, - 0.041732, - -0.042339, - 0.010375, - 0.069589, - -0.085694, - -0.052233, - -0.012858, - 0.053897, - 0.024863, - -0.046329, - -0.01288, - -0.019381, - -0.0098295, - -0.064894, - 0.0054393, - 0.016, - 0.0018934, - -0.0014061, - 0.027763, - -0.015859, - 0.02778, - -0.022124, - 0.0128, - 0.027998, - -0.094499, - 0.012992, - -0.039683, - 0.038029, - -0.022907, - -0.017394, - -0.029682, - -0.028209, - -0.0032389, - 0.011043, - 0.019693, - 0.033323, - -0.047857, - -0.010644, - 0.0278, - 0.046117, - 0.049381, - -0.011144, - 0.017979, - -0.010148, - -0.058214, - 0.010057, - 0.027127, - 0.00099967, - 0.051092, - 0.039794, - -0.03127, - 0.041908, - -0.091958, - -0.0073693, - 0.0048826, - -0.050826, - 0.023047, - 0.027021, - -0.02525, - -0.00037007, - 0.11701, - 0.039876, - -0.0092364, - 0.018252, - -0.026772, - -0.026296, - -0.024085, - -0.072358, - -0.0021487, - -0.030871, - -0.019616, - 0.0015327, - 0.00045489, - -0.015081, - -0.039296, - -0.029584, - 0.020326, - 0.030042, - -0.058234, - -0.0090487 - ], - "organisation": [ - 0.037567, - -0.035225, - -0.0089343, - -0.020962, - -0.02182, - -0.051224, - 0.019119, - -0.068246, - 0.009464, - -0.052344, - 0.01542, - -0.04587, - -0.019977, - -0.043284, - 0.051572, - 0.077586, - 0.057887, - -0.0049232, - 0.037339, - -0.0076926, - -0.072486, - 0.049499, - 0.064528, - 0.060667, - -0.023107, - 0.038022, - -0.0090745, - -0.013332, - -0.01177, - 0.01339, - 0.04211, - 0.016086, - -0.0031845, - -0.034454, - -0.012713, - 0.015543, - -0.018949, - -0.042253, - 0.0056614, - -0.02011, - -0.015675, - -0.083243, - 0.017726, - -0.0091925, - 0.026944, - 0.0050687, - 0.035894, - -0.068513, - -0.015003, - -0.0276, - 0.010058, - -0.023164, - 0.012313, - 0.013868, - -0.023644, - 0.045254, - -0.0098697, - -0.046775, - -0.0071795, - 0.043013, - 0.016836, - -0.010339, - 0.071152, - -0.015461, - 0.039673, - -0.0048789, - 0.016741, - -0.036975, - 0.018247, - -0.017132, - 0.01034, - -0.027761, - 0.00067764, - 0.0099124, - 0.0091474, - -0.025541, - -0.023213, - -0.0043557, - -0.019743, - -0.0076853, - -0.015397, - 0.024555, - -0.047281, - 0.055952, - 0.0088101, - -0.00888, - -0.028778, - -0.017154, - 0.018753, - 0.00035798, - 0.0048306, - 0.060924, - -0.041063, - -0.017578, - -0.012486, - 0.063786, - -0.0065339, - 0.023468, - 0.076878, - -0.00074256, - -0.029588, - 0.011402, - 0.037992, - -0.012201, - 0.0038571, - -0.057714, - 0.042717, - -0.0011982, - -0.011232, - 0.043783, - -0.017728, - 0.060511, - 0.038935, - 0.011998, - -0.0095629, - -0.0030355, - 0.032768, - -0.0016905, - -0.029608, - -0.015742, - 0.033493, - -0.0061209, - 0.0026, - 0.023486, - 0.041014, - 0.0027214, - -0.012745, - -0.065006, - 0.021638, - 0.069934, - -0.021266, - 0.00079251, - 0.015504, - -0.025672, - 0.00075552, - 0.0076732, - 0.000024249, - 0.0104, - -0.0027336, - 0.023094, - -0.055392, - 0.0050843, - 0.034322, - 0.0058112, - -0.010073, - -0.0010083, - -0.007507, - -0.020855, - -0.0092504, - 0.019277, - 0.042968, - 0.028512, - -0.0058858, - -0.062827, - -0.0086305, - 0.011821, - -0.032757, - -0.0033312, - 0.013936, - -0.01043, - 0.014495, - -0.081406, - -0.032784, - 0.061022, - -0.033455, - 0.017082, - 0.026319, - 0.029453, - -0.018193, - 0.029807, - -0.0041339, - -0.0017386, - -0.021024, - 0.020477, - -0.015609, - 0.03174, - -0.040064, - 0.029384, - -0.019526, - -0.023016, - -0.042339, - -0.00051527, - 0.010815, - 0.047196, - -0.021625, - -0.048656, - 0.02009, - 0.049435, - 0.00044352, - -0.010971, - -0.025602, - 0.055687, - -0.021736, - -0.047876, - 0.0018682, - -0.010308, - 0.0022782, - -0.015769, - -0.005552, - 0.012096, - -0.098301, - 0.036033, - 0.0088268, - 0.023454, - -0.058496, - 0.0043375, - -0.022248, - -0.015194, - -0.014333, - -0.020855, - 0.06852, - 0.012821, - 0.0061706, - -0.0038987, - -0.038658, - -0.0024816, - -0.0006857, - 0.027919, - 0.022749, - 0.021391, - -0.0013226, - -0.036655, - 0.02304, - 0.072527, - -0.027258, - -0.025668, - -0.026059, - 0.037951, - 0.033409, - -0.0050453, - 0.027389, - -0.030904, - -0.04334, - -0.014609, - -0.013135, - -0.0019242, - 0.024361, - -0.017917, - 0.029124, - -0.0026199, - 0.037458, - 0.00203, - 0.027044, - 0.023903, - 0.015614, - -0.011982, - -0.024469, - -0.0015099, - 0.0017612, - -0.0082629, - -0.0058691, - 0.030995, - 0.011043, - -0.01555, - 0.00078593, - 0.022324, - -0.042619, - 0.033015, - 0.010035, - 0.034497, - 0.0053248, - 0.027881, - 0.015242, - -0.00022376, - 0.033772, - -0.02859, - -0.035599, - 0.014174, - 0.0056594, - 0.037557, - -0.012873, - 0.043175, - -0.074979, - -0.0014733, - 0.024138, - -0.013256, - 0.093603, - 0.033636, - -0.05538, - 0.018615, - 0.036845, - -0.016221, - -0.00026601, - 0.0028799, - -0.0076574, - -0.020525, - 0.002671, - -0.033061, - 0.019662, - 0.013138, - 0.028786, - 0.05766, - 0.0012494, - -0.02676, - -0.03971, - 0.0018713, - -0.048696, - 0.033362, - -0.05722, - -0.0069667 - ], - "drink": [ - -0.060304, - -0.0045647, - -0.013722, - -0.027194, - 0.066874, - 0.040486, - 0.040822, - -0.10712, - 0.030259, - 0.075128, - -0.026769, - 0.029207, - 0.061756, - 0.011555, - 0.075953, - -0.045614, - 0.090926, - -0.020049, - 0.02836, - -0.021416, - 0.023043, - 0.065457, - 0.0077865, - 0.029211, - -0.016395, - -0.086852, - 0.02391, - 0.064845, - -0.082598, - -0.043958, - -0.059239, - 0.058151, - -0.0055829, - 0.011714, - 0.01884, - -0.099343, - 0.020889, - 0.021496, - -0.014001, - 0.043261, - 0.043252, - -0.071714, - -0.011692, - 0.022592, - -0.010261, - -0.039509, - 0.059848, - -0.020662, - -0.010848, - 0.056698, - -0.0017546, - 0.085887, - 0.11776, - -0.1611, - -0.14527, - 0.059034, - 0.01137, - -0.043874, - -0.060015, - -0.038326, - -0.014496, - -0.033872, - 0.17992, - 0.054316, - -0.093837, - 0.10387, - -0.019115, - -0.039739, - 0.027487, - -0.038492, - 0.14355, - 0.043877, - 0.073748, - 0.028784, - -0.016306, - -0.062762, - 0.020152, - -0.0092375, - -0.067537, - 0.025185, - -0.070568, - -0.073101, - 0.031815, - 0.065394, - -0.086923, - -0.063573, - 0.023635, - -0.05477, - -0.062652, - -0.01829, - 0.074107, - 0.022729, - -0.11265, - -0.04446, - 0.024384, - 0.0026494, - 0.014578, - 0.066452, - 0.076367, - 0.038527, - -0.036064, - -0.028733, - 0.028863, - -0.056793, - 0.029347, - -0.11973, - -0.12489, - 0.048114, - 0.038651, - 0.10291, - 0.056331, - 0.024569, - 0.083611, - 0.044505, - 0.12135, - -0.047455, - -0.021336, - -0.021945, - -0.038056, - 0.0032832, - 0.030121, - 0.079517, - -0.01203, - -0.14125, - 0.090198, - 0.0079752, - -0.063103, - -0.094464, - -0.025175, - 0.046898, - -0.005138, - 0.010857, - 0.0078037, - -0.096301, - -0.029101, - 0.018033, - -0.026441, - 0.04056, - 0.044157, - 0.03598, - 0.17565, - -0.07288, - 0.014731, - -0.054833, - 0.047798, - -0.017339, - 0.11784, - 0.062939, - -0.018908, - -0.025274, - 0.015793, - 0.06464, - 0.01064, - -0.007657, - -0.011068, - -0.019663, - -0.14258, - 0.022931, - -0.000021417, - -0.038955, - 0.050541, - 0.0084058, - -0.083061, - 0.098054, - 0.027866, - 0.065505, - -0.070483, - -0.029674, - 0.09785, - 0.035856, - 0.0017237, - -0.057801, - 0.011579, - 0.047602, - 0.052097, - 0.076783, - -0.039136, - 0.065459, - -0.0040675, - -0.061993, - -0.031744, - 0.0081957, - 0.023162, - -0.097898, - -0.025925, - -0.071388, - -0.011191, - 0.13243, - 0.11345, - -0.012139, - 0.035498, - 0.039202, - -0.038151, - 0.066408, - 0.16205, - -0.011193, - 0.057455, - -0.03369, - -0.03485, - 0.0046369, - -0.189, - 0.098629, - 0.0049212, - -0.102, - -0.0017615, - 0.054871, - 0.038019, - 0.059526, - 0.030486, - -0.039552, - 0.046066, - 0.007079, - 0.068677, - 0.032808, - 0.038921, - 0.012353, - -0.036234, - -0.020651, - -0.0066208, - -0.047582, - -0.00089221, - -0.081982, - -0.013459, - 0.1334, - 0.066405, - 0.033463, - -0.066841, - 0.071444, - -0.059522, - 0.02983, - 0.031173, - -0.083737, - -0.089029, - -0.0754, - -0.053846, - 0.033596, - -0.093732, - -0.031506, - 0.077011, - -0.14008, - 0.16141, - -0.018807, - -0.038554, - -0.087806, - -0.069134, - 0.050483, - -0.050064, - 0.032985, - -0.085875, - -0.0066571, - 0.02885, - -0.0085351, - -0.056474, - 0.0199, - -0.024604, - -0.030494, - -0.038705, - -0.026808, - 0.05765, - 0.050686, - 0.056304, - -0.016094, - -0.023395, - -0.099154, - 0.0013384, - -0.051293, - 0.039197, - -0.053126, - 0.069393, - 0.1317, - 0.019796, - 0.12207, - -0.13886, - -0.072507, - -0.065811, - -0.012693, - -0.042755, - 0.012255, - -0.044874, - -0.0014572, - 0.0056344, - 0.06263, - -0.059901, - 0.0074143, - -0.059901, - 0.047443, - 0.029435, - 0.021994, - 0.16744, - -0.064364, - 0.06755, - 0.03994, - -0.041615, - -0.042829, - -0.039432, - 0.0084724, - 0.09828, - -0.015505, - -0.076711, - 0.026496 - ], - "upbringing": [ - 0.025686, - -0.034172, - 0.088902, - -0.055807, - -0.021342, - 0.0021872, - 0.0044881, - -0.061142, - 0.012193, - 0.027921, - -0.0097446, - -0.06683, - 0.023313, - 0.042568, - -0.045039, - -0.023828, - -0.002279, - 0.0012372, - 0.013077, - 0.097475, - 0.0054305, - -0.021005, - 0.014877, - 0.054182, - -0.038248, - 0.092674, - 0.030175, - 0.022127, - -0.025837, - -0.0012333, - 0.006771, - -0.022995, - -0.0030904, - -0.060554, - 0.0056024, - 0.097345, - -0.062874, - -0.067224, - -0.011152, - 0.0081546, - -0.004936, - -0.0843, - 0.053079, - 0.016917, - -0.040317, - -0.013185, - -0.006907, - -0.033546, - -0.032949, - -0.012673, - -0.039529, - 0.011956, - 0.065154, - 0.0015635, - -0.022119, - -0.0063713, - 0.061993, - -0.041834, - -0.011756, - -0.049726, - -0.015035, - -0.036847, - 0.082668, - 0.012926, - 0.12103, - -0.027791, - 0.0074481, - -0.012586, - -0.024016, - -0.053625, - 0.0039249, - -0.016882, - 0.03121, - 0.003018, - -0.037774, - 0.045238, - 0.033465, - -0.01608, - 0.015943, - -0.016463, - -0.046929, - 0.024654, - 0.063103, - 0.08353, - -0.027202, - 0.027911, - 0.02902, - -0.035312, - 0.028559, - 0.022095, - -0.022008, - 0.019707, - -0.071294, - 0.014836, - -0.013636, - 0.080908, - 0.026086, - -0.015428, - 0.057485, - -0.011199, - 0.051178, - -0.036727, - 0.0064314, - -0.045427, - 0.0042176, - -0.051165, - 0.051537, - -0.0069172, - -0.0049772, - 0.076097, - -0.038287, - 0.013667, - 0.029922, - -0.0036531, - -0.0093968, - -0.021918, - -0.017229, - 0.0048347, - -0.032154, - 0.040099, - 0.033309, - -0.035937, - -0.0081777, - -0.026351, - 0.075647, - -0.00046686, - -0.022053, - -0.045831, - 0.022538, - 0.084109, - 0.043079, - -0.037225, - 0.045614, - -0.037756, - -0.12446, - 0.0011029, - 0.0048738, - 0.0047876, - -0.02309, - -0.02859, - 0.011281, - 0.0078883, - -0.036209, - 0.076252, - 0.0065015, - -0.041548, - 0.00051702, - 0.037785, - -0.042103, - -0.040283, - 0.036513, - 0.0078625, - -0.032196, - 0.0064947, - 0.022577, - 0.087449, - 0.060549, - 0.06458, - 0.10614, - -0.06854, - 0.047058, - 0.021269, - -0.063096, - -0.035112, - -0.019527, - 0.036579, - 0.018324, - 0.0048833, - 0.013234, - -0.00021431, - 0.023049, - 0.038123, - -0.025049, - -0.0092703, - 0.064817, - 0.037135, - 0.065204, - 0.11271, - 0.00027095, - -0.074402, - -0.078105, - -0.038958, - -0.04351, - 0.0049386, - 0.051165, - -0.090165, - -0.0053045, - 0.12038, - -0.013394, - -0.0089622, - 0.039234, - 0.053468, - 0.020498, - 0.00083689, - -0.015369, - 0.0053362, - 0.033638, - 0.038002, - -0.027334, - -0.039759, - -0.081385, - -0.019529, - 0.059572, - -0.055823, - -0.03903, - 0.073458, - 0.022872, - -0.0042849, - 0.046999, - 0.00072684, - 0.038169, - -0.0023943, - 0.06019, - -0.0084751, - 0.024723, - 0.0043881, - -0.058085, - -0.038095, - -0.037638, - -0.0052743, - -0.0081588, - 0.018299, - 0.024565, - 0.075216, - -0.031953, - -0.016782, - 0.043943, - 0.063049, - -0.052017, - -0.00090445, - -0.00083727, - -0.024854, - -0.06549, - -0.01882, - 0.07529, - 0.1037, - 0.025028, - 0.0069072, - -0.019341, - -0.0025731, - 0.029021, - -0.019479, - 0.032697, - -0.0025577, - -0.000044651, - -0.044006, - -0.0052343, - -0.12538, - 0.024451, - -0.0055924, - 0.00057666, - -0.068202, - -0.018142, - -0.022781, - 0.00088802, - 0.0010181, - 0.0040569, - 0.032252, - 0.036572, - 0.036621, - 0.009075, - -0.052169, - -0.0025171, - -0.015522, - 0.059154, - -0.027862, - -0.11102, - 0.014046, - 0.036346, - 0.0055014, - -0.019587, - 0.031217, - -0.094957, - -0.038338, - 0.045233, - -0.021601, - -0.0074164, - 0.0097946, - 0.0031057, - 0.058244, - 0.066963, - -0.0025579, - 0.082412, - -0.077304, - 0.016515, - 0.036181, - 0.039184, - -0.0095113, - 0.031404, - -0.002527, - 0.019716, - 0.055671, - -0.0087216, - 0.037218, - -0.059356, - 0.015661, - 0.065647, - 0.055174, - -0.04705, - 0.001894 - ], - "nourishment": [ - -0.031706, - -0.062299, - 0.05242, - -0.046937, - -0.012087, - -0.018339, - -0.067578, - -0.026626, - 0.015019, - 0.0316, - 0.0019518, - 0.0043526, - -0.013335, - -0.037235, - -0.014487, - -0.030193, - 0.019292, - 0.01967, - 0.01711, - 0.059493, - 0.00777, - -0.016406, - 0.014623, - 0.039524, - -0.021873, - -0.017435, - 0.0062911, - 0.059927, - 0.040713, - 0.0026594, - 0.058989, - -0.0036149, - 0.022675, - -0.065636, - 0.0026275, - 0.033856, - 0.014793, - -0.058038, - 0.052241, - 0.0033982, - 0.015037, - -0.087849, - 0.0022119, - 0.014324, - -0.0074088, - -0.084652, - -0.0043118, - -0.016659, - -0.088264, - -0.00070468, - 0.0071151, - 0.015163, - 0.025838, - -0.0068488, - -0.031898, - 0.0067516, - -0.01214, - -0.078616, - -0.027927, - -0.013727, - -0.063062, - -0.037569, - 0.033655, - -0.022353, - -0.016737, - 0.017899, - 0.050375, - -0.04635, - -0.019935, - -0.10992, - 0.061886, - 0.021791, - 0.01338, - 0.012096, - -0.038395, - -0.027921, - -0.041478, - -0.065762, - -0.054302, - -0.066125, - -0.053881, - -0.012982, - 0.06815, - 0.050126, - -0.015875, - 0.008104, - 0.032619, - -0.03762, - -0.037591, - 0.0040845, - -0.024988, - -0.0019041, - -0.063334, - 0.0091129, - -0.031335, - 0.062919, - 0.065691, - 0.043347, - 0.011713, - 0.020655, - 0.048394, - -0.012798, - 0.03131, - 0.00061548, - -0.0083438, - -0.059444, - -0.031897, - 0.025951, - 0.031611, - -0.012458, - 0.019283, - 0.08126, - 0.044906, - 0.0019282, - 0.028274, - 0.012513, - -0.0023615, - 0.042083, - -0.031967, - 0.017323, - -0.027999, - 0.0094933, - -0.021957, - -0.043238, - 0.040639, - -0.052597, - -0.064317, - -0.051244, - 0.043315, - 0.036898, - 0.029515, - -0.02728, - 0.030636, - -0.010616, - 0.025616, - 0.010449, - -0.055345, - -0.0010271, - 0.050488, - 0.015174, - 0.053476, - -0.043603, - 0.038962, - -0.01512, - 0.035221, - 0.018924, - 0.049543, - 0.0048266, - -0.031323, - 0.057013, - 0.050275, - 0.057323, - 0.015223, - -0.043262, - 0.036748, - -0.013539, - -0.060281, - 0.045051, - -0.022922, - -0.037154, - 0.037196, - -0.03224, - -0.024579, - 0.029498, - 0.030667, - 0.076862, - -0.06761, - -0.015546, - 0.00627, - 0.044313, - 0.049886, - 0.0047173, - -0.053377, - -0.015954, - 0.023537, - 0.015622, - 0.028355, - -0.017335, - -0.020503, - -0.027973, - -0.090092, - 0.010054, - -0.0012379, - -0.043301, - -0.038926, - -0.056551, - 0.040184, - 0.0991, - -0.044018, - -0.03772, - -0.023214, - 0.0092218, - 0.054806, - -0.022179, - -0.004245, - -0.030513, - 0.018785, - -0.01142, - -0.0033994, - 0.022618, - -0.112, - 0.045915, - -0.018786, - -0.03595, - 0.020497, - 0.0098734, - 0.058699, - 0.0047395, - 0.037467, - -0.014635, - 0.053126, - 0.0020141, - 0.039318, - 0.05383, - 0.0065928, - 0.054554, - 0.0091828, - -0.0044203, - -0.00553, - -0.013462, - -0.012377, - 0.0046208, - 0.029976, - 0.046908, - 0.085087, - 0.0057577, - -0.0024063, - 0.02437, - -0.031336, - -0.040571, - -0.018376, - -0.032934, - -0.031681, - 0.0070506, - 0.0021537, - 0.010944, - -0.073276, - 0.033569, - -0.05081, - -0.085276, - 0.0085027, - -0.0017964, - -0.027897, - -0.0084377, - -0.016759, - 0.051859, - -0.015761, - -0.047438, - -0.058007, - 0.035156, - 0.0076551, - -0.061579, - -0.036897, - -0.016142, - 0.011017, - 0.016632, - 0.0056386, - -0.020237, - 0.043931, - 0.058471, - -0.0036024, - -0.0092922, - 0.015626, - -0.032206, - 0.076364, - 0.0090778, - 0.014567, - -0.01035, - 0.045907, - 0.077626, - 0.032235, - 0.041625, - -0.059942, - -0.043382, - -0.028114, - -0.02823, - -0.0083823, - -0.014772, - -0.0031366, - 0.029305, - 0.079456, - 0.024885, - 0.015672, - -0.060664, - -0.0001064, - 0.091493, - -0.014146, - 0.086644, - 0.0016652, - 0.05759, - 0.038629, - 0.0494, - -0.09456, - -0.023378, - -0.0060092, - 0.031747, - -0.0037518, - 0.0067275, - -0.078829, - 0.049257 - ], - "national-security": [ - -0.022917, - -0.055723, - -0.03284, - -0.013079, - 0.00079463, - 0.010795, - -0.0025917, - -0.032214, - 0.028436, - 0.06122, - -0.018703, - -0.031943, - -0.0041627, - 0.035303, - -0.0332, - -0.0047144, - 0.049181, - -0.0016334, - 0.030882, - 0.009753, - 0.031389, - 0.030985, - 0.05838, - 0.019599, - 0.015053, - 0.023702, - 0.027452, - 0.010725, - 0.023977, - -0.028197, - 0.028715, - -0.051372, - -0.037394, - -0.057809, - 0.059451, - 0.032767, - -0.0099092, - 0.053465, - 0.02068, - 0.0079177, - -0.042329, - -0.077576, - -0.0028349, - 0.034058, - 0.0072884, - -0.017437, - -0.015364, - 0.019612, - -0.019521, - -0.0054489, - 0.015499, - -0.0011836, - 0.013751, - 0.027814, - 0.014535, - -0.01141, - -0.022638, - -0.0018287, - 0.016038, - -0.012187, - -0.010526, - 0.0031293, - 0.053839, - -0.038087, - 0.010513, - -0.032431, - -0.0034283, - -0.013627, - 0.028241, - 0.036049, - 0.02872, - -0.0031481, - 0.028607, - -0.006788, - -0.018191, - 0.034757, - 0.037073, - 0.023249, - 0.032703, - -0.015632, - -0.012758, - 0.034516, - -0.0079721, - 0.025084, - -0.021812, - 0.010998, - -0.024321, - 0.0091054, - 0.021365, - 0.039866, - 0.034994, - 0.0095581, - -0.075937, - 0.030137, - 0.012409, - 0.0278, - -0.041971, - -0.047678, - -0.012269, - 0.0045481, - 0.016532, - -0.020628, - 0.0075759, - -0.022099, - 0.010986, - -0.03321, - 0.00095585, - 0.0071749, - -0.0066786, - -0.036772, - -0.018684, - 0.04814, - 0.014596, - 0.0071013, - -0.011941, - 0.0019304, - 0.0082963, - 0.029034, - -0.019371, - 0.040518, - 0.026262, - 0.0083642, - -0.0062163, - 0.017296, - 0.054344, - -0.015674, - -0.016503, - -0.020357, - -0.0066827, - 0.04123, - -0.013121, - -0.0028597, - 0.040719, - 0.026723, - -0.0094239, - -0.012466, - 0.0018839, - 0.038543, - -0.01942, - 0.058804, - 0.023836, - -0.011992, - -0.022088, - -0.00045592, - -0.045982, - -0.024133, - -0.0012282, - 0.02557, - 0.01938, - 0.016516, - 0.0048752, - 0.090582, - -0.010373, - -0.015034, - 0.045001, - -0.0061148, - -0.0015236, - -0.018559, - 0.014121, - -0.010615, - 0.049851, - 0.039518, - -0.04461, - 0.0041181, - -0.028695, - -0.019478, - 0.0015876, - -0.0085486, - -0.0030363, - -0.023045, - -0.017769, - 0.027477, - -0.024307, - 0.027577, - -0.026079, - 0.022172, - -0.018516, - -0.013141, - -0.015505, - 0.015108, - -0.0000040519, - -0.0027413, - 0.030067, - -0.0024582, - 0.010706, - -0.021581, - 0.014073, - 0.081309, - 0.019356, - 0.011885, - -0.01028, - 0.028144, - 0.058291, - -0.0071303, - -0.01514, - 0.021832, - 0.048935, - -0.000049942, - -0.018641, - -0.013412, - -0.059314, - -0.029328, - -0.021503, - -0.0028752, - -0.040478, - -0.04319, - 0.043161, - 0.0093112, - 0.0036792, - 0.000023713, - 0.087539, - -0.011555, - -0.029556, - 0.022865, - -0.037276, - 0.011631, - 0.016853, - -0.032771, - -0.017631, - -0.030368, - -0.019639, - -0.001941, - -0.026003, - 0.053581, - 0.003672, - 0.01516, - 0.012491, - 0.015437, - 0.0026283, - -0.044989, - -0.013536, - -0.016881, - -0.023033, - -0.019175, - -0.028224, - -0.033144, - -0.0076743, - -0.020763, - -0.018102, - -0.023668, - 0.030608, - -0.017929, - 0.023732, - 0.0099512, - -0.069513, - 0.0093072, - 0.0083684, - -0.0022915, - -0.024218, - 0.0071033, - 0.006344, - -0.011678, - -0.027475, - -0.010113, - -0.02794, - 0.053206, - 0.018873, - -0.0039595, - 0.012998, - 0.0014105, - -0.015358, - 0.0052221, - -0.0085784, - -0.015472, - -0.011024, - 0.00019412, - -0.025362, - 0.051262, - 0.03431, - -0.022375, - -0.041754, - 0.014978, - -0.046938, - -0.015331, - 0.029168, - -0.02566, - -0.00087148, - 0.010676, - 0.019173, - -0.041312, - 0.083835, - 0.0042933, - -0.00053165, - 0.028264, - -0.0095183, - -0.038941, - -0.014949, - -0.032383, - -0.044111, - -0.006452, - 0.008556, - 0.0064568, - 0.026834, - 0.014952, - -0.007446, - -0.0015918, - -0.029588, - 0.025188, - -0.0063675, - -0.022045 - ], - "pharmacological": [ - -0.023051, - -0.011419, - -0.0070262, - 0.039621, - -0.0014767, - -0.048749, - -0.010895, - -0.064054, - 0.017962, - 0.0017989, - -0.0063348, - -0.031498, - 0.0068144, - -0.033401, - 0.051395, - -0.023136, - 0.051986, - -0.022988, - 0.021889, - 0.012578, - 0.012344, - 0.032206, - 0.054551, - 0.062402, - -0.022369, - -0.037694, - -0.02785, - -0.015417, - 0.021498, - 0.062987, - 0.030363, - -0.052188, - 0.033385, - -0.08157, - 0.066607, - 0.049387, - 0.0072341, - -0.03089, - 0.01533, - 0.027399, - 0.028088, - -0.057483, - 0.020447, - -0.0060946, - 0.041634, - -0.02198, - -0.019089, - 0.04051, - -0.021807, - 0.01224, - -0.026917, - 0.00080077, - -0.012802, - -0.024221, - 0.039864, - -0.038789, - -0.017279, - 0.027323, - -0.0029696, - 0.011358, - 0.03766, - 0.0099902, - 0.067375, - 0.033954, - 0.018124, - 0.012464, - 0.047152, - -0.012856, - 0.031584, - -0.022464, - -0.009767, - 0.032709, - 0.019705, - -0.011017, - -0.01775, - -0.028686, - -0.031754, - -0.078085, - -0.012817, - -0.033937, - 0.0020569, - 0.02941, - -0.0011668, - 0.0093082, - -0.028404, - -0.027599, - 0.052459, - 0.0021554, - 0.010712, - -0.0035702, - -0.0027718, - -0.0071473, - -0.077171, - -0.012222, - -0.0047322, - 0.0062382, - 0.01242, - -0.0059184, - 0.0015425, - 0.027697, - 0.011223, - 0.026862, - -0.031835, - -0.0043494, - -0.0032888, - -0.063063, - -0.0054183, - -0.053105, - -0.0069317, - 0.0094101, - -0.0046008, - 0.034662, - 0.018019, - -0.010058, - 0.0048371, - 0.0070415, - 0.020859, - -0.0087085, - -0.020739, - -0.01066, - 0.0067708, - 0.0077667, - -0.030586, - 0.0006926, - 0.076512, - 0.05785, - -0.011935, - -0.013314, - 0.039486, - 0.064559, - 0.023141, - 0.021731, - -0.012273, - -0.0083714, - 0.015436, - -0.024427, - 0.0020947, - 0.033365, - 0.044806, - -0.000023708, - 0.010384, - 0.032004, - -0.033394, - 0.015973, - -0.066332, - -0.048351, - 0.015848, - 0.0026803, - 0.03681, - 0.050495, - 0.017618, - 0.13434, - 0.023623, - -0.037668, - 0.029818, - 0.015638, - -0.018502, - -0.021545, - 0.061575, - 0.030971, - 0.0135, - 0.02709, - -0.053643, - -0.0076134, - -0.0087582, - 0.028554, - 0.0076426, - -0.023043, - 0.01822, - -0.057958, - 0.030194, - -0.013173, - 0.035297, - -0.021374, - -0.0057715, - 0.025648, - -0.023375, - -0.02725, - -0.023718, - -0.027613, - -0.0022161, - -0.01269, - -0.023652, - -0.022524, - 0.027073, - -0.02154, - 0.039304, - 0.076714, - -0.031538, - 0.024215, - 0.041673, - 0.058057, - 0.075642, - -0.00031827, - -0.011818, - 0.013606, - -0.047482, - 0.043201, - -0.0060405, - 0.0381, - -0.091274, - 0.01138, - -0.030684, - 0.017574, - -0.009569, - -0.0087399, - -0.0059002, - -0.01008, - -0.032665, - 0.020784, - 0.099902, - 0.010102, - 0.018749, - 0.023959, - 0.016561, - 0.016784, - -0.014845, - 0.034382, - -0.035396, - -0.0058685, - -0.041032, - -0.0034568, - -0.050334, - 0.070005, - 0.040784, - 0.028327, - 0.042384, - 0.044857, - 0.0090718, - -0.03741, - -0.054469, - -0.047587, - -0.018989, - -0.0051879, - -0.017585, - -0.014551, - -0.038085, - 0.0044798, - 0.0086039, - -0.0039428, - 0.012345, - 0.0082423, - 0.0057605, - 0.025617, - -0.10668, - -0.0017981, - -0.050578, - 0.0086221, - 0.028253, - -0.000043742, - 0.005033, - -0.0063445, - 0.031467, - -0.055425, - -0.036018, - 0.01608, - 0.013747, - 0.015676, - 0.047356, - -0.030628, - 0.036188, - -0.00062478, - 0.021711, - -0.0011735, - 0.030276, - -0.041042, - -0.017965, - 0.04461, - 0.019165, - 0.065531, - -0.020723, - 0.038176, - -0.054826, - -0.0065435, - -0.000095253, - -0.062744, - 0.019231, - 0.0107, - -0.015832, - -0.022145, - 0.11311, - -0.0047776, - -0.07099, - -0.035765, - 0.015937, - 0.024878, - -0.026225, - -0.0088256, - 0.0080787, - -0.029069, - 0.0094078, - 0.0092845, - -0.0033989, - -0.020627, - -0.034492, - 0.051187, - 0.021074, - -0.0023632, - -0.0043336, - 0.038134 - ], - "statutory": [ - 0.030072, - -0.0042803, - 0.0021448, - 0.039066, - 0.0038299, - 0.0034012, - 0.072902, - -0.091071, - 0.037158, - -0.01202, - 0.028886, - -0.058718, - -0.014834, - 0.016243, - -0.034242, - 0.069704, - 0.023282, - 0.0055695, - 0.041852, - 0.012808, - -0.067886, - -0.01571, - 0.049302, - 0.064435, - 0.026382, - 0.015281, - -0.039652, - 0.02028, - 0.027653, - -0.032934, - 0.051074, - -0.038466, - -0.055072, - -0.13137, - 0.026273, - 0.061801, - -0.036268, - -0.030691, - 0.0042226, - 0.024539, - -0.0040455, - -0.11801, - 0.041651, - 0.034344, - 0.048857, - 0.042779, - 0.031832, - 0.019398, - -0.0090396, - 0.041269, - 0.008557, - 0.037624, - 0.02549, - -0.029302, - 0.012515, - 0.010211, - 0.015112, - 0.026382, - -0.028035, - -0.0064034, - 0.014398, - 0.025798, - 0.13727, - 0.029584, - 0.020693, - -0.072362, - -0.010536, - -0.050306, - -0.0039158, - -0.0036392, - 0.0018725, - -0.034274, - -0.028076, - 0.011356, - -0.049338, - -0.0093156, - -0.050651, - -0.067374, - -0.035634, - -0.037996, - -0.010283, - 0.0088723, - -0.015803, - 0.055043, - -0.019402, - 0.10276, - 0.054604, - -0.021218, - 0.027319, - 0.035433, - -0.00021122, - -0.021762, - -0.070286, - 0.0094016, - 0.0017059, - 0.018929, - 0.015319, - 0.043447, - 0.0009453, - 0.024527, - 0.037111, - -0.02994, - -0.050937, - -0.039021, - -0.0057087, - -0.021036, - 0.056085, - 0.035653, - -0.049288, - -0.049598, - 0.047447, - 0.0025907, - 0.036011, - 0.025036, - -0.06584, - 0.069189, - 0.029987, - -0.010807, - -0.023481, - 0.031503, - -0.012708, - 0.0088289, - 0.015343, - -0.04736, - 0.046017, - 0.021856, - 0.01355, - -0.04915, - 0.025107, - 0.093054, - -0.094404, - 0.012558, - -0.035081, - 0.018878, - -0.091261, - -0.0066214, - -0.01296, - 0.024635, - -0.0071153, - -0.025845, - 0.02741, - -0.038515, - 0.0058832, - 0.0090535, - -0.028589, - -0.040086, - 0.0015653, - -0.062728, - 0.0026184, - 0.020555, - -0.039527, - 0.11413, - 0.049864, - -0.02551, - 0.084843, - 0.067477, - 0.0073065, - -0.02683, - -0.043021, - -0.0053083, - 0.036424, - 0.016377, - -0.037243, - 0.056459, - 0.067293, - 0.022492, - 0.056394, - 0.00013402, - -0.012174, - -0.0001507, - -0.013772, - -0.0037719, - 0.022754, - -0.010962, - -0.048814, - 0.065588, - 0.013972, - 0.048928, - -0.021149, - -0.044301, - 0.013934, - -0.067089, - 0.026372, - 0.024012, - -0.020148, - 0.014914, - 0.011611, - 0.13639, - 0.058232, - 0.0076398, - -0.027353, - 0.061257, - 0.062815, - -0.0499, - 0.011339, - -0.039603, - -0.025322, - -0.0078263, - -0.028819, - -0.0228, - -0.14667, - -0.023727, - -0.027486, - -0.010872, - -0.003005, - 0.026192, - 0.036706, - -0.034301, - -0.013334, - -0.014847, - 0.15562, - 0.0087778, - -0.030978, - -0.0094649, - -0.076207, - 0.025918, - 0.0026424, - -0.014722, - -0.022295, - -0.096675, - 0.0041292, - -0.017844, - 0.05464, - 0.10012, - 0.030942, - -0.057673, - -0.016342, - 0.020567, - 0.03134, - -0.050575, - -0.031815, - -0.051421, - -0.041098, - 0.0052472, - -0.02721, - -0.057355, - 0.0063427, - -0.0066783, - 0.011704, - 0.011587, - 0.080541, - -0.018727, - -0.098823, - -0.0019431, - -0.12217, - 0.028822, - -0.034131, - -0.0026511, - -0.015505, - -0.044287, - -0.01561, - 0.0057625, - 0.023999, - -0.0152, - 0.049087, - 0.01082, - 0.05471, - 0.046236, - -0.046663, - 0.066121, - 0.060087, - -0.030429, - -0.015849, - -0.02638, - 0.0029692, - -0.023332, - -0.018719, - 0.0014429, - 0.019048, - -0.0028392, - 0.029794, - 0.058082, - -0.089785, - -0.03887, - 0.044484, - 0.020361, - 0.099913, - 0.083116, - 0.017252, - -0.01738, - 0.16405, - 0.048269, - 0.030681, - 0.020146, - 0.015662, - 0.030092, - -0.054184, - 0.022331, - 0.019443, - 0.029406, - 0.026121, - -0.012087, - 0.029747, - -0.013321, - -0.024471, - 0.016482, - -0.057587, - -0.050353, - 0.010151, - -0.027095 - ], - "architectures": [ - -0.015803, - -0.022422, - -0.05204, - -0.035829, - -0.018802, - -0.013319, - -0.0027991, - -0.05805, - 0.010736, - -0.0058863, - 0.062157, - -0.041576, - -0.01154, - 0.052838, - 0.0031476, - 0.012364, - 0.039833, - 0.0087805, - 0.031584, - -0.017078, - -0.050442, - 0.018086, - 0.046945, - 0.048602, - 0.0222, - 0.032696, - -0.013547, - -0.020221, - 0.08376, - 0.0068461, - -0.019545, - -0.060093, - -0.0012624, - -0.025595, - 0.028047, - 0.034683, - 0.030526, - 0.0083393, - 0.054778, - 0.014681, - -0.06569, - -0.091709, - 0.022897, - 0.0045568, - -0.073048, - -0.032814, - -0.0029152, - -0.010686, - -0.0034682, - 0.0018631, - -0.023448, - -0.013125, - -0.014674, - 0.011286, - -0.054149, - 0.013882, - 0.014405, - 0.029528, - 0.013532, - 0.0084938, - 0.026846, - 0.023954, - 0.095554, - -0.033769, - 0.073843, - 0.021078, - -0.01697, - 0.00034829, - 0.0045062, - -0.0039162, - -0.0071592, - 0.010443, - -0.0049951, - -0.029669, - 0.020849, - -0.03134, - -0.0092103, - -0.035732, - -0.004836, - 0.026121, - 0.0027485, - -0.03757, - 0.015937, - -0.0022276, - 0.05669, - -0.027625, - -0.0094581, - -0.02073, - -0.037118, - 0.023116, - -0.0053069, - -0.00038398, - -0.049232, - 0.042059, - 0.010966, - 0.058498, - 0.015589, - -0.025153, - -0.014201, - 0.069316, - 0.02081, - -0.014457, - 0.0028257, - 0.019663, - 0.0075636, - -0.025994, - -0.015495, - 0.03887, - -0.0058966, - -0.025742, - -0.014187, - 0.057428, - 0.030895, - 0.025659, - 0.00019497, - -0.03468, - -0.044633, - 0.04475, - -0.019312, - 0.030045, - -0.010511, - -0.031918, - -0.032205, - -0.015235, - 0.085603, - 0.057061, - -0.028065, - -0.0083143, - 0.039952, - 0.098219, - -0.041181, - 0.03301, - 0.034712, - 0.032389, - -0.024927, - 0.058852, - -0.034362, - 0.0034656, - -0.015867, - 0.0021733, - 0.023571, - 0.044382, - -0.0064428, - 0.037179, - 0.022993, - -0.0097536, - 0.0008948, - 0.0091026, - 0.01857, - -0.031527, - 0.0065784, - 0.052276, - 0.031056, - -0.058026, - 0.0067253, - 0.022157, - 0.021259, - 0.018267, - -0.010978, - 0.033799, - 0.014516, - -0.00029198, - -0.008671, - -0.051043, - 0.011132, - -0.0060164, - 0.019177, - -0.0071146, - 0.03219, - 0.019592, - 0.030147, - -0.022015, - 0.0018761, - -0.0075996, - -0.0068991, - 0.029232, - -0.036691, - -0.021168, - -0.055387, - -0.043507, - 0.052278, - -0.026192, - 0.0069362, - -0.0014654, - 0.0024164, - -0.0097007, - 0.028484, - 0.083344, - -0.01302, - -0.014464, - -0.013749, - 0.058074, - -0.031123, - 0.033985, - -0.0023308, - 0.014335, - -0.021671, - -0.017209, - 0.05, - -0.018351, - -0.096427, - 0.0019231, - -0.020055, - -0.0085788, - 0.024396, - -0.034115, - 0.0056801, - -0.0087186, - -0.00019913, - -0.0090188, - 0.070029, - 0.023617, - 0.037319, - -0.032698, - -0.00025587, - 0.047834, - 0.0056246, - 0.019361, - -0.047086, - -0.016582, - -0.028887, - 0.0024272, - 0.037826, - 0.057765, - 0.021043, - -0.013705, - 0.0034895, - 0.002402, - -0.043824, - 0.026398, - -0.050653, - -0.0059838, - -0.046701, - 0.0094121, - 0.0081142, - -0.031293, - 0.012192, - 0.019207, - 0.019445, - 0.0212, - -0.055727, - -0.015397, - 0.022417, - -0.0013695, - 0.047409, - -0.0068744, - -0.057152, - -0.037976, - 0.030944, - 0.032625, - -0.0009016, - -0.023204, - -0.025103, - -0.04173, - -0.029866, - 0.052703, - -0.035888, - 0.0060252, - 0.011753, - 0.013532, - -0.011572, - 0.081495, - -0.057627, - -0.0089466, - 0.023152, - -0.052028, - 0.053867, - -0.0020261, - -0.0022342, - 0.0090318, - -0.034136, - 0.049909, - -0.066707, - -0.038804, - 0.0030187, - -0.010418, - 0.070075, - 0.0069274, - -0.0053622, - 0.0069383, - 0.028509, - 0.022985, - -0.068547, - 0.019873, - -0.013632, - -0.023485, - -0.02169, - -0.00077098, - -0.0098559, - -0.0091438, - -0.065571, - -0.0098274, - -0.01173, - -0.076887, - 0.0591, - 0.00061066, - 0.014549, - 0.021308, - -0.00046504, - -0.0064021 - ], - "coder": [ - -0.01348, - -0.0044806, - 0.055618, - -0.016713, - -0.1236, - 0.0069638, - 0.052358, - -0.11536, - 0.050784, - -0.041202, - -0.043844, - 0.12483, - -0.14375, - -0.1152, - -0.084626, - 0.13052, - 0.13188, - -0.0095124, - 0.051119, - 0.072, - 0.078965, - 0.12972, - -0.0011011, - 0.064935, - 0.042684, - 0.049399, - 0.025236, - -0.035004, - -0.047271, - -0.10344, - -0.051251, - 0.031483, - 0.034825, - -0.034628, - -0.058723, - 0.016762, - 0.065194, - 0.057515, - 0.025001, - 0.046135, - -0.024039, - -0.17807, - -0.13655, - -0.055031, - -0.18957, - 0.053214, - 0.080715, - 0.0031776, - 0.026615, - 0.088079, - -0.034607, - -0.087559, - 0.10086, - -0.021609, - 0.075259, - 0.086925, - 0.019909, - -0.045422, - -0.044164, - 0.02596, - -0.079302, - -0.16013, - 0.088085, - -0.015341, - -0.035916, - 0.086978, - -0.010139, - 0.070275, - 0.010047, - -0.12499, - 0.009842, - 0.02807, - -0.043047, - -0.026671, - -0.085275, - -0.08038, - -0.034263, - -0.077637, - -0.11203, - -0.017519, - -0.0025048, - 0.063851, - -0.014775, - -0.005168, - -0.03499, - -0.075351, - 0.054468, - 0.072625, - 0.01502, - -0.00032698, - 0.067564, - 0.041345, - -0.10775, - -0.091674, - -0.044167, - 0.11413, - 0.080194, - -0.16254, - 0.0434, - 0.15345, - 0.087817, - 0.020277, - -0.0014921, - 0.17793, - -0.045315, - -0.17253, - 0.1137, - -0.073645, - -0.049801, - -0.084415, - -0.10385, - 0.085952, - 0.085947, - -0.040814, - 0.020598, - -0.010344, - -0.056033, - -0.05232, - -0.0020688, - -0.030139, - 0.088009, - 0.04428, - 0.067017, - 0.035661, - 0.037719, - 0.035706, - -0.0035384, - -0.011329, - 0.02847, - 0.16476, - -0.028115, - 0.0071355, - 0.020197, - -0.12998, - -0.091768, - -0.086416, - 0.11699, - 0.10153, - 0.0097192, - -0.021406, - 0.012715, - 0.029712, - 0.035475, - -0.027312, - -0.097671, - -0.046217, - -0.17063, - -0.032038, - -0.062329, - -0.08902, - 0.02227, - 0.088697, - -0.0014121, - -0.15269, - 0.041868, - -0.075423, - 0.053061, - 0.094371, - 0.14776, - -0.0044942, - 0.0090911, - -0.018794, - -0.033793, - -0.048238, - -0.036129, - -0.10103, - -0.025745, - -0.073691, - -0.11408, - -0.055941, - 0.024785, - 0.0054936, - 0.14082, - 0.048251, - 0.029876, - 0.05087, - 0.075428, - 0.062353, - -0.044557, - 0.048397, - -0.046018, - -0.03372, - -0.098974, - -0.034432, - 0.063771, - -0.12888, - 0.004408, - 0.11614, - -0.0059944, - 0.0239, - -0.051641, - 0.092319, - -0.015321, - -0.0022281, - 0.064729, - 0.026999, - -0.04423, - 0.039521, - -0.037352, - -0.024767, - -0.18442, - 0.013651, - -0.060167, - 0.047395, - -0.055087, - -0.0051265, - 0.028215, - -0.029871, - -0.046617, - -0.060272, - 0.13312, - 0.01303, - -0.089353, - -0.0033124, - -0.078389, - 0.018729, - -0.014296, - 0.032687, - 0.032595, - 0.049929, - 0.032449, - 0.053527, - -0.11134, - 0.1483, - 0.077981, - -0.095266, - 0.051254, - 0.07708, - 0.058939, - -0.069804, - 0.013353, - -0.0013003, - -0.0036354, - 0.010729, - -0.056415, - -0.075153, - 0.062234, - -0.023643, - -0.043889, - 0.031014, - 0.078932, - -0.0074373, - -0.04172, - -0.0073048, - 0.013273, - 0.043554, - -0.032134, - 0.042532, - -0.069121, - -0.025784, - 0.0088305, - 0.037317, - -0.056319, - -0.048991, - 0.050571, - 0.017461, - -0.041689, - 0.0703, - 0.0034054, - 0.011305, - 0.08776, - -0.035024, - 0.029884, - 0.044742, - -0.035789, - -0.15392, - 0.010738, - -0.022689, - 0.019108, - -0.067746, - -0.058977, - 0.1311, - -0.14299, - -0.046551, - 0.034206, - -0.047195, - 0.091525, - -0.011783, - 0.052424, - -0.05493, - 0.036246, - 0.083029, - -0.05757, - 0.036392, - -0.0046052, - -0.052035, - -0.025886, - -0.13442, - -0.056418, - 0.019636, - 0.01261, - -0.11723, - -0.054635, - 0.023638, - 0.069445, - -0.088148, - -0.069554, - 0.0078781, - -0.064489, - -0.0092885 - ], - "cityscape": [ - 0.060919, - -0.02086, - 0.082658, - 0.033377, - 0.021897, - -0.022961, - -0.0196, - -0.097524, - 0.0036223, - 0.033086, - 0.038401, - -0.10405, - 0.01483, - 0.065446, - 0.0069033, - 0.012034, - 0.068276, - 0.048541, - 0.059905, - -0.035982, - 0.040637, - -0.0661, - -0.0081718, - 0.091016, - 0.022659, - -0.03114, - 0.0096402, - 0.052229, - -0.016298, - 0.051922, - -0.060955, - 0.025677, - 0.017585, - -0.006208, - 0.018216, - -0.0090648, - -0.00055061, - 0.026116, - -0.038867, - -0.060494, - 0.022014, - -0.084847, - 0.031164, - 0.032718, - -0.0050895, - -0.019166, - -0.0258, - 0.022564, - -0.060644, - 0.035716, - -0.022566, - -0.065046, - -0.1047, - -0.01368, - -0.053326, - -0.0008361, - -0.0056032, - -0.031021, - -0.019506, - -0.063065, - 0.035221, - -0.0095456, - 0.084292, - -0.077805, - 0.11801, - 0.063152, - -0.015012, - 0.057786, - -0.0075526, - 0.065354, - 0.063424, - 0.063826, - -0.016324, - 0.012186, - -0.0147, - -0.061954, - 0.024606, - -0.026816, - -0.012487, - 0.023559, - 0.01453, - 0.0074206, - -0.021293, - 0.039887, - 0.0060746, - -0.04121, - 0.025266, - -0.07299, - 0.039054, - 0.064033, - 0.043838, - 0.056422, - -0.1062, - 0.012948, - 0.020337, - 0.06092, - -0.01097, - -0.058687, - 0.043454, - 0.059336, - 0.08072, - -0.0034835, - 0.031327, - 0.054419, - -0.029151, - -0.07639, - -0.048493, - 0.014795, - 0.036063, - 0.042108, - -0.01965, - 0.072861, - 0.019606, - 0.059191, - -0.020012, - -0.0057384, - -0.1105, - 0.0037146, - -0.031587, - 0.064506, - -0.019535, - -0.018985, - -0.026578, - 0.00030314, - -0.0021256, - 0.01708, - 0.026704, - -0.064313, - 0.041199, - 0.055089, - 0.015673, - -0.0027616, - -0.042798, - 0.005688, - 0.043987, - 0.071438, - -0.0040727, - 0.051858, - -0.0056307, - -0.0324, - -0.038943, - -0.0016843, - -0.052854, - 0.071744, - 0.016132, - -0.030992, - 0.0052424, - -0.037729, - -0.0073373, - -0.067262, - 0.030391, - 0.02861, - 0.046855, - 0.02171, - -0.036243, - 0.058332, - -0.021684, - 0.046353, - -0.027385, - -0.02751, - -0.006995, - -0.10359, - -0.070249, - 0.025997, - -0.063206, - 0.0266, - 0.056608, - -0.068077, - 0.046282, - 0.090077, - -0.050372, - 0.043569, - 0.0096217, - 0.011868, - 0.082682, - 0.022942, - -0.030922, - 0.02036, - -0.061204, - -0.0084296, - 0.025467, - 0.018054, - 0.013914, - -0.057276, - -0.024365, - -0.0062884, - 0.022841, - 0.081148, - -0.030022, - 0.043883, - 0.026717, - 0.021616, - -0.016329, - 0.031671, - 0.024794, - -0.014329, - -0.03096, - -0.01745, - 0.05585, - -0.0053743, - -0.13098, - 0.034729, - -0.018567, - -0.074002, - -0.011015, - 0.045735, - -0.035146, - 0.038312, - -0.023447, - -0.013451, - 0.066785, - -0.036221, - -0.014223, - -0.023392, - 0.021665, - -0.010959, - 0.052799, - 0.037228, - 0.024995, - -0.018752, - 0.012611, - 0.013128, - 0.0069103, - 0.092115, - -0.0085669, - 0.069449, - 0.078962, - 0.062774, - -0.00078833, - -0.02173, - -0.10777, - -0.065026, - -0.059677, - 0.052803, - -0.0065873, - 0.02936, - 0.02984, - 0.03543, - 0.016084, - -0.030098, - 0.05533, - 0.054297, - -0.072826, - -0.029845, - 0.018663, - 0.06078, - -0.024955, - 0.0041841, - -0.025586, - -0.081444, - 0.032724, - -0.16422, - -0.075303, - -0.063458, - -0.028306, - 0.055823, - -0.017254, - -0.0061618, - 0.095364, - 0.0066289, - 0.036555, - 0.069698, - 0.040268, - -0.074752, - 0.048443, - 0.037879, - 0.034115, - -0.01216, - 0.10972, - -0.0025544, - -0.055622, - 0.07463, - -0.084613, - -0.029656, - -0.0054794, - -0.049061, - 0.026811, - -0.026333, - 0.045202, - -0.011854, - 0.055773, - 0.0016601, - -0.03685, - -0.00063923, - 0.0027344, - 0.053013, - -0.032097, - -0.025649, - 0.0052001, - -0.0098661, - 0.0081586, - -0.030828, - 0.02914, - 0.028241, - 0.015827, - 0.03356, - -0.00087516, - 0.12881, - 0.066711, - -0.022514 - ], - "faiths": [ - 0.010614, - -0.056622, - 0.14371, - -0.066515, - -0.074555, - -0.0064695, - -0.069741, - -0.087548, - 0.0075781, - -0.0079797, - -0.01167, - -0.082897, - -0.028891, - -0.026655, - 0.032382, - 0.0083775, - 0.064709, - -0.0033986, - 0.040711, - -0.07955, - -0.096803, - 0.0011565, - 0.058098, - 0.10855, - -0.014105, - -0.0015607, - 0.059955, - -0.004871, - 0.052751, - 0.052151, - 0.0061605, - 0.011449, - 0.021947, - -0.024703, - 0.034815, - 0.062133, - -0.04427, - 0.015777, - -0.021175, - 0.020726, - -0.077007, - -0.10596, - 0.02496, - 0.023603, - -0.033697, - -0.094276, - -0.082196, - 0.010719, - 0.017748, - -0.016421, - -0.072393, - 0.0080455, - 0.0020468, - 0.014264, - -0.057449, - 0.10582, - 0.045552, - -0.068918, - -0.0095907, - -0.10771, - 0.038, - 0.066762, - 0.25315, - -0.060637, - 0.033297, - -0.041449, - -0.046158, - 0.030603, - 0.039003, - 0.0032594, - 0.068925, - 0.0040356, - 0.12031, - -0.0070366, - -0.037672, - 0.029813, - 0.077283, - 0.0094337, - 0.088917, - 0.094397, - -0.055746, - 0.055679, - 0.078425, - 0.09901, - 0.014101, - 0.008877, - -0.023719, - 0.029906, - -0.050167, - -0.018985, - 0.000052112, - 0.04439, - -0.11211, - 0.015358, - 0.011418, - 0.047059, - 0.083559, - -0.028072, - 0.038168, - -0.089982, - 0.0018819, - 0.0020628, - 0.090486, - -0.099043, - 0.094785, - -0.03458, - -0.0085705, - -0.010475, - -0.091745, - -0.012059, - -0.029756, - 0.045397, - 0.043658, - 0.035388, - 0.0063685, - -0.021109, - 0.05926, - 0.04887, - -0.028642, - -0.0014859, - 0.0075313, - -0.039678, - -0.080946, - -0.18954, - 0.07034, - 0.0068843, - -0.057184, - -0.0004679, - 0.037812, - 0.14672, - 0.037992, - 0.12465, - 0.00041324, - 0.02716, - 0.0057732, - 0.08038, - -0.0083281, - 0.066885, - -0.096225, - -0.077078, - -0.034957, - -0.053243, - -0.031986, - 0.113, - 0.05833, - 0.011173, - -0.0090145, - -0.056588, - 0.010667, - 0.00080692, - 0.092371, - 0.10716, - -0.04523, - -0.00062393, - 0.073588, - -0.013314, - -0.0082857, - -0.0071746, - -0.0017655, - 0.09153, - 0.060268, - -0.022581, - 0.038502, - -0.022676, - 0.01564, - -0.029251, - 0.088722, - 0.075686, - -0.027041, - -0.011319, - -0.013849, - -0.049891, - -0.011668, - 0.014085, - -0.010373, - 0.10047, - 0.07737, - 0.03249, - 0.0072755, - -0.13508, - 0.060393, - -0.0063182, - 0.037135, - 0.11577, - 0.069999, - -0.11287, - 0.12569, - 0.17667, - -0.0091577, - -0.12165, - -0.014835, - 0.08247, - -0.10517, - 0.00037011, - 0.083858, - 0.033413, - -0.04131, - -0.0063224, - -0.018489, - -0.0733, - -0.12411, - 0.016996, - -0.018208, - -0.050145, - -0.019033, - 0.019519, - 0.065273, - -0.052789, - 0.16626, - 0.0026402, - 0.032359, - 0.024851, - 0.078413, - 0.098608, - 0.0037519, - 0.043537, - 0.02888, - -0.026807, - -0.071691, - -0.06228, - -0.012975, - -0.0054869, - -0.084074, - 0.10018, - 0.024876, - -0.0064922, - 0.076939, - 0.12113, - -0.0010524, - -0.043998, - 0.01285, - 0.024825, - -0.149, - -0.02059, - 0.079387, - 0.030525, - -0.049001, - 0.020459, - 0.0048104, - 0.12878, - 0.024871, - -0.11194, - -0.027683, - 0.0008465, - 0.026602, - 0.0197, - 0.070659, - -0.089094, - -0.039457, - -0.040746, - 0.0065866, - -0.051636, - -0.07541, - -0.025596, - -0.070601, - 0.043254, - -0.011898, - 0.060031, - -0.0021292, - -0.034281, - 0.051265, - -0.0048731, - 0.055456, - -0.0065637, - -0.011813, - -0.082134, - 0.083612, - 0.049961, - 0.042689, - 0.081091, - 0.059055, - 0.072656, - -0.12419, - -0.055474, - 0.095644, - -0.047555, - 0.032277, - -0.038061, - -0.096475, - -0.006665, - 0.048704, - -0.11093, - -0.014362, - 0.015661, - 0.0086606, - -0.031596, - 0.0087994, - -0.03941, - -0.029372, - 0.023282, - 0.069853, - 0.033819, - -0.073795, - -0.038435, - -0.024166, - 0.034443, - 0.12965, - 0.016756, - 0.015874, - -0.022422 - ], - "shamanism": [ - -0.026662, - -0.037635, - 0.039564, - -0.055367, - -0.0099693, - -0.071836, - -0.033741, - -0.07639, - -0.0051096, - -0.074958, - -0.017613, - 0.014267, - 0.039313, - -0.018668, - -0.006374, - -0.036971, - 0.12685, - -0.0077021, - -0.0065492, - 0.038368, - -0.11192, - -0.015225, - 0.0038204, - 0.04406, - 0.056086, - -0.077926, - 0.010809, - 0.052551, - 0.017864, - 0.00053359, - 0.035751, - -0.039456, - -0.000023523, - 0.01037, - 0.016503, - 0.0069698, - 0.057252, - -0.03397, - 0.049292, - 0.047535, - 0.016442, - -0.092066, - -0.0008071, - -0.032203, - 0.019709, - -0.026821, - -0.018658, - 0.0067788, - 0.085201, - -0.069916, - -0.079228, - 0.032034, - -0.03683, - -0.021246, - -0.064607, - 0.049313, - -0.021336, - -0.010987, - -0.066695, - 0.074498, - 0.054371, - -0.040308, - 0.004706, - -0.045962, - -0.036637, - 0.012745, - 0.013395, - -0.031709, - 0.0050961, - 0.021101, - -0.0077069, - 0.06302, - -0.0091599, - -0.016054, - -0.037731, - 0.043471, - -0.0018367, - -0.028445, - 0.0070141, - 0.027767, - 0.022813, - 0.014206, - -0.048625, - 0.039752, - -0.045724, - -0.065426, - -0.007492, - 0.0091484, - 0.034602, - 0.035512, - -0.025634, - 0.026265, - -0.062354, - -0.009636, - 0.013402, - 0.052313, - 0.0093139, - -0.034891, - -0.041325, - -0.023693, - -0.026377, - 0.011243, - 0.029143, - -0.024232, - -0.02187, - -0.021758, - 0.0080194, - -0.021784, - -0.013587, - -0.061653, - -0.017941, - 0.10233, - 0.048016, - -0.07626, - -0.014251, - 0.046095, - -0.012732, - -0.033902, - -0.063715, - 0.018277, - 0.019707, - 0.057739, - -0.065911, - -0.10256, - 0.086614, - 0.014322, - -0.055461, - -0.044462, - 0.039735, - 0.078075, - 0.028139, - -0.059567, - -0.078022, - -0.00097692, - -0.053899, - 0.033858, - -0.030061, - 0.0049735, - -0.0018087, - 0.0048993, - -0.0089572, - -0.056351, - -0.051429, - 0.064111, - 0.0081259, - -0.15581, - -0.041459, - 0.044084, - 0.003151, - -0.055404, - 0.070152, - -0.0084349, - -0.066943, - -0.018458, - -0.033352, - 0.051798, - -0.032723, - -0.020049, - 0.024805, - -0.008148, - -0.015173, - 0.065437, - -0.06942, - -0.0049041, - -0.021144, - -0.007878, - 0.035145, - 0.043913, - 0.026957, - -0.013808, - 0.055261, - -0.047338, - -0.024322, - 0.062032, - 0.01706, - 0.050252, - 0.018416, - 0.049756, - -0.033783, - -0.034444, - -0.00051706, - 0.041736, - 0.0001647, - -0.0098194, - 0.04442, - -0.0082173, - -0.011904, - 0.093299, - -0.06505, - 0.0081042, - 0.080765, - 0.068357, - -0.091433, - 0.0046436, - -0.023794, - 0.07634, - 0.003541, - -0.0014582, - -0.012312, - 0.053162, - -0.12752, - 0.010055, - -0.03629, - -0.0016539, - 0.0084841, - 0.091956, - 0.038616, - 0.077316, - 0.075458, - -0.017294, - 0.073703, - 0.041339, - 0.013571, - -0.049782, - 0.087321, - 0.037018, - -0.015398, - -0.049313, - -0.0094168, - -0.0051853, - -0.034605, - -0.043512, - -0.13817, - 0.094823, - -0.020859, - 0.033072, - 0.0063906, - 0.072641, - -0.040758, - -0.015657, - 0.029608, - -0.039947, - -0.085624, - 0.011494, - 0.029104, - 0.064041, - 0.032129, - 0.050614, - 0.069305, - 0.048541, - 0.049952, - 0.051611, - -0.01992, - -0.01935, - 0.034049, - 0.0073859, - -0.073499, - 0.034629, - 0.027634, - 0.000066251, - 0.039146, - -0.082256, - -0.079405, - 0.0098812, - 0.039705, - 0.02803, - 0.0039377, - 0.042334, - -0.019811, - -0.081146, - 0.094708, - -0.021734, - 0.038556, - 0.03351, - 0.055958, - -0.080143, - 0.05427, - 0.014724, - 0.0022455, - 0.03323, - -0.024077, - 0.067103, - -0.055201, - -0.039162, - 0.043859, - -0.02114, - 0.041773, - -0.022975, - -0.15171, - 0.0061629, - 0.042305, - -0.01154, - -0.017073, - -0.02787, - -0.09193, - -0.010699, - 0.00070558, - 0.034894, - -0.090554, - -0.060682, - -0.024159, - -0.010484, - 0.055795, - -0.10066, - 0.0091084, - 0.090991, - 0.049956, - 0.035926, - -0.013098, - -0.00041048 - ], - "tradition": [ - -0.015138, - -0.0098452, - 0.064022, - -0.0070017, - -0.064706, - -0.043265, - -0.011588, - -0.085136, - 0.023512, - -0.026103, - -0.010463, - -0.063956, - 0.014295, - -0.00085352, - 0.017119, - 0.05034, - 0.059612, - -0.013582, - 0.028749, - 0.053468, - -0.0099283, - 0.016921, - -0.015849, - 0.029126, - 0.035343, - 0.0083658, - 0.0079071, - 0.038846, - 0.015452, - 0.013141, - 0.0023548, - -0.01444, - -0.0012219, - -0.067274, - 0.0085763, - 0.0090664, - 0.024894, - 0.038789, - 0.0022036, - -0.0019987, - 0.016415, - -0.1119, - -0.0089806, - 0.010964, - 0.030105, - 0.0040626, - 0.0082468, - -0.029141, - -0.01826, - -0.048128, - 0.014918, - 0.023552, - -0.013335, - 0.049662, - -0.020901, - 0.018665, - 0.045438, - 0.01653, - -0.014702, - 0.0060418, - 0.029503, - -0.032348, - 0.085098, - -0.017002, - 0.013805, - 0.040811, - -0.0032382, - 0.04289, - 0.059803, - -0.044619, - 0.015694, - -0.020005, - -0.020455, - 0.030475, - 0.034343, - 0.0046916, - 0.013733, - 0.024794, - 0.059934, - -0.031268, - -0.021371, - 0.016904, - 0.0010269, - 0.054965, - -0.080984, - -0.018451, - -0.029853, - 0.0027627, - -0.064706, - 0.011473, - 0.021259, - 0.030891, - -0.059044, - -0.0032616, - 0.06474, - 0.057495, - 0.0041103, - -0.0094874, - 0.030498, - 0.0036415, - 0.046726, - -0.063587, - 0.0083429, - -0.038486, - -0.054402, - -0.052685, - -0.0072581, - 0.017644, - -0.066635, - 0.030296, - -0.019201, - 0.021742, - 0.047116, - 0.0056798, - -0.045778, - -0.00055854, - -0.002343, - 0.028089, - -0.032776, - -0.01707, - 0.03211, - -0.0055176, - 0.0044805, - 0.014131, - 0.017583, - 0.025985, - 0.017006, - -0.015838, - 0.012606, - 0.13437, - 0.067378, - 0.0045698, - -0.0080472, - 0.027953, - 0.021348, - -0.051454, - -0.018885, - 0.032628, - 0.025023, - -0.04637, - 0.071158, - -0.037436, - 0.00064473, - 0.0387, - -0.001232, - -0.030548, - 0.041159, - 0.073, - -0.059117, - -0.024612, - 0.04947, - 0.029568, - -0.0045618, - -0.0083093, - 0.031703, - 0.07826, - -0.011454, - -0.020642, - 0.0035869, - -0.02282, - 0.023904, - 0.035962, - -0.047316, - -0.0022212, - 0.021609, - 0.035395, - 0.0076739, - 0.043538, - -0.019971, - 0.0073756, - 0.044284, - -0.0027913, - -0.0037696, - -0.021753, - 0.02153, - 0.03127, - 0.028389, - 0.064142, - -0.01028, - -0.06436, - -0.04811, - 0.0072437, - 0.035248, - -0.051619, - -0.0042313, - -0.025381, - -0.0092847, - 0.050458, - -0.029845, - -0.04127, - -0.0069777, - 0.10631, - -0.032686, - -0.0072571, - -0.03057, - 0.0053377, - 0.021873, - -0.054838, - 0.017856, - -0.0044771, - -0.12828, - 0.009892, - -0.0092797, - -0.025535, - -0.018598, - -0.0037661, - 0.063717, - -0.0045369, - 0.056634, - -0.017945, - 0.082523, - 0.008281, - -0.015183, - -0.017922, - 0.0013346, - 0.011153, - 0.012772, - -0.016129, - 0.01544, - -0.022651, - 0.0055458, - -0.042974, - 0.04252, - 0.11653, - 0.000056593, - -0.0077814, - -0.022137, - 0.048416, - -0.0030134, - -0.04042, - 0.02096, - -0.058927, - -0.020831, - 0.012723, - -0.016814, - 0.048384, - -0.029429, - 0.015404, - 0.04927, - 0.04367, - 0.06895, - -0.016439, - 0.011912, - 0.0063952, - -0.027734, - 0.0024732, - -0.056433, - -0.043441, - -0.022924, - -0.0052887, - 0.034865, - 0.016363, - -0.024267, - 0.039359, - 0.012394, - 0.056283, - -0.017416, - 0.014997, - 0.0029442, - 0.04907, - 0.030429, - -0.021072, - 0.0074756, - -0.0055901, - 0.030246, - -0.0021903, - 0.058731, - 0.046253, - -0.0063041, - -0.0094271, - 0.053548, - 0.060075, - -0.079279, - -0.020528, - 0.071366, - -0.038305, - -0.0079037, - 0.011098, - -0.010866, - 0.019761, - 0.056936, - -0.037809, - -0.01485, - -0.0094584, - -0.014262, - -0.0076496, - 0.028097, - -0.0099138, - 0.0083664, - 0.013389, - 0.0080568, - 0.020137, - 0.055476, - -0.086027, - 0.023807, - 0.04853, - 0.052425, - -0.015375, - -0.02257, - 0.0044493 - ], - "rain": [ - 0.092654, - 0.081586, - 0.0143, - 0.035563, - 0.11146, - -0.11154, - 0.054411, - -0.11425, - 0.079687, - 0.012768, - 0.024485, - 0.013803, - 0.011412, - 0.10024, - 0.058876, - -0.009406, - 0.1475, - 0.065416, - 0.047412, - -0.10437, - 0.042813, - -0.071739, - -0.14088, - 0.06537, - 0.18119, - -0.073651, - 0.01941, - 0.0093229, - 0.012105, - -0.003821, - 0.05639, - 0.08597, - 0.054201, - -0.024682, - 0.011959, - 0.021637, - -0.021743, - -0.039879, - -0.06255, - -0.10229, - 0.070236, - -0.094288, - -0.039208, - -0.023508, - 0.020601, - 0.024973, - 0.08955, - -0.06159, - -0.035236, - 0.070054, - 0.0182, - 0.022908, - -0.0052889, - -0.018575, - -0.14291, - -0.0085627, - 0.11554, - -0.10622, - -0.070354, - 0.012207, - -0.0047454, - 0.057071, - 0.097122, - -0.039007, - -0.18797, - -0.025491, - 0.062571, - -0.023162, - 0.022962, - 0.13463, - 0.099401, - 0.099947, - 0.066712, - 0.10722, - -0.10667, - -0.058354, - -0.050902, - 0.015258, - -0.067896, - 0.063643, - -0.099915, - -0.096472, - 0.029448, - 0.096323, - 0.14502, - -0.14615, - 0.029154, - -0.022764, - -0.076375, - -0.017586, - -0.066817, - -0.028648, - -0.12172, - -0.066277, - 0.045198, - 0.055325, - 0.065916, - 0.060864, - 0.038045, - -0.087645, - 0.048839, - -0.15814, - 0.053638, - 0.0082156, - 0.092575, - -0.11577, - 0.010027, - 0.021924, - 0.11298, - 0.0064361, - -0.014962, - 0.10555, - 0.099065, - 0.044817, - -0.0083539, - -0.039819, - -0.038699, - 0.10422, - -0.042459, - -0.025901, - 0.030981, - 0.021394, - 0.075066, - -0.017717, - 0.089773, - 0.035867, - 0.0091341, - -0.15289, - -0.1461, - 0.1198, - 0.080884, - 0.002729, - -0.046768, - 0.11213, - 0.0027284, - 0.10326, - 0.083265, - 0.063859, - 0.068533, - 0.010105, - 0.11661, - -0.11152, - 0.028971, - -0.062664, - 0.081624, - -0.019283, - -0.046309, - 0.072222, - -0.042705, - -0.023214, - -0.00086702, - 0.084651, - -0.017239, - -0.065715, - 0.065741, - 0.043031, - 0.043786, - -0.065201, - 0.0040466, - -0.026129, - 0.084667, - -0.050438, - -0.097479, - 0.056744, - 0.023173, - -0.0062698, - -0.021744, - 0.09857, - 0.029132, - 0.13219, - 0.025972, - 0.021124, - 0.079454, - -0.0048809, - 0.16077, - 0.10958, - 0.080249, - -0.08796, - -0.068, - -0.021435, - -0.12415, - 0.11642, - -0.018629, - -0.14411, - -0.10573, - -0.057175, - -0.07025, - 0.12825, - -0.048473, - -0.089627, - 0.049561, - -0.025887, - -0.046913, - -0.089614, - -0.024695, - -0.052674, - -0.050416, - 0.020765, - 0.049642, - 0.0035214, - -0.24024, - -0.012097, - -0.042664, - -0.0036761, - 0.073062, - 0.097286, - 0.049775, - 0.0076915, - 0.096536, - -0.064191, - 0.13024, - -0.10036, - -0.027465, - -0.0069787, - 0.11572, - -0.022772, - -0.03695, - -0.10318, - 0.074489, - -0.16671, - 0.064978, - -0.046714, - -0.041243, - 0.15075, - 0.077205, - -0.0079203, - -0.051481, - 0.059275, - 0.038594, - -0.092266, - 0.071806, - -0.063324, - -0.075559, - -0.052154, - 0.030112, - 0.095497, - 0.05302, - -0.03371, - 0.11621, - -0.21696, - 0.13678, - 0.0096177, - 0.060381, - -0.089179, - -0.11252, - 0.068109, - 0.036543, - -0.016912, - 0.012516, - 0.0020533, - 0.015359, - -0.12762, - 0.091051, - 0.061627, - -0.043371, - 0.095386, - 0.10684, - -0.019043, - 0.061995, - 0.079763, - 0.062994, - 0.14062, - -0.10018, - -0.069042, - 0.077018, - -0.098825, - -0.034687, - 0.017061, - -0.04684, - -0.0028353, - -0.0029676, - 0.12117, - -0.14393, - -0.040733, - -0.068981, - -0.12802, - -0.012767, - -0.02733, - -0.068845, - -0.037481, - 0.07325, - -0.016247, - 0.071573, - 0.012672, - -0.019905, - 0.053712, - 0.11729, - 0.08029, - 0.067615, - 0.050844, - 0.027093, - -0.037771, - -0.075239, - 0.043838, - -0.015053, - -0.074304, - 0.0042165, - -0.012566, - 0.1109, - -0.089418 - ], - "literatures": [ - -0.0020279, - -0.11218, - 0.034337, - -0.0096192, - 0.014427, - 0.0071031, - -0.015508, - -0.063436, - 0.035507, - -0.017942, - 0.040944, - -0.070921, - 0.002423, - -0.029376, - 0.041851, - -0.027595, - 0.09306, - -0.029181, - 0.033473, - 0.0065363, - -0.04787, - -0.00043952, - 0.030985, - 0.055145, - 0.017253, - 0.018855, - -0.052283, - -0.00092568, - 0.085645, - 0.0015815, - 0.011952, - -0.032241, - -0.0074344, - -0.04607, - 0.051079, - 0.033787, - 0.03237, - 0.0037221, - -0.012658, - 0.0093761, - -0.001959, - -0.072084, - 0.0043653, - 0.014056, - 0.015692, - -0.026555, - 0.01409, - -0.0030981, - 0.02785, - -0.0040352, - 0.00022056, - 0.021063, - -0.053207, - 0.016488, - -0.06692, - 0.015267, - -0.0063522, - 0.067226, - 0.015409, - 0.049811, - 0.054167, - -0.046874, - 0.099849, - 0.028276, - 0.042078, - 0.0024947, - 0.012725, - 0.063654, - 0.028515, - -0.014995, - -0.024203, - -0.0083536, - 0.041405, - -0.036785, - 0.0076339, - -0.058248, - 0.016882, - -0.0083849, - 0.071029, - -0.0020215, - -0.003432, - 0.0068799, - -0.016431, - -0.0096574, - 0.0024115, - 0.011754, - 0.0046745, - -0.0021466, - -0.02756, - 0.039492, - -0.024673, - 0.011244, - -0.031506, - 0.065699, - 0.027297, - 0.060869, - 0.004783, - -0.006172, - 0.0040898, - 0.049411, - 0.0097388, - 0.0074993, - -0.047755, - -0.039386, - 0.048851, - -0.029443, - -0.032681, - 0.028428, - 0.023449, - -0.010999, - -0.0059685, - 0.061562, - 0.027374, - -0.015921, - -0.041473, - 0.011415, - -0.010034, - 0.013676, - 0.0032636, - 0.012346, - 0.014578, - -0.049224, - -0.01946, - -0.021549, - 0.073042, - 0.0048992, - -0.085957, - 0.025415, - 0.037761, - 0.12098, - -0.0093951, - 0.08277, - -0.035451, - -0.029454, - 0.0014997, - 0.018796, - -0.003226, - 0.029757, - -0.0025394, - 0.0072745, - 0.019667, - -0.012956, - 0.026108, - 0.040354, - 0.078428, - -0.065563, - -0.032589, - 0.001004, - 0.00056141, - -0.017436, - 0.04049, - 0.06341, - 0.019169, - -0.0084681, - 0.031785, - -0.030956, - 0.022864, - -0.018536, - 0.019674, - 0.066584, - 0.051779, - -0.012696, - 0.030695, - -0.052011, - 0.0026496, - 0.021195, - 0.012075, - -0.071462, - -0.019965, - -0.01476, - 0.02988, - -0.062231, - -0.024724, - -0.046013, - -0.021722, - 0.069079, - -0.0034614, - 0.0042754, - -0.023124, - 0.0015843, - 0.02913, - 0.066454, - 0.0081669, - -0.001505, - -0.010992, - 0.0060981, - 0.049401, - 0.12325, - 0.049523, - 0.057852, - 0.0073614, - 0.08036, - -0.036461, - -0.07877, - -0.037928, - -0.00073418, - -0.041012, - 0.0079673, - 0.0044759, - 0.0053406, - -0.084702, - -0.090229, - -0.017568, - -0.039581, - 0.02396, - -0.00035828, - 0.031203, - -0.0089517, - -0.0089485, - -0.012626, - 0.054577, - 0.0082396, - 0.0040112, - 0.014189, - 0.015936, - 0.046843, - 0.029005, - -0.039234, - -0.031621, - 0.01594, - -0.019244, - 0.007698, - 0.0019598, - 0.077, - 0.036457, - 0.014653, - 0.0092668, - 0.059158, - -0.0033883, - 0.016592, - 0.014886, - 0.0076165, - -0.036645, - -0.000076407, - 0.012868, - 0.019772, - -0.018642, - 0.028974, - -0.0035483, - 0.0023751, - -0.040743, - 0.0083481, - -0.025855, - 0.0232, - 0.031906, - -0.027771, - -0.027796, - -0.036599, - 0.0024476, - 0.0028159, - 0.04247, - 0.010684, - -0.039536, - 0.031823, - -0.087602, - 0.055736, - -0.06005, - 0.03024, - 0.033491, - -0.031864, - 0.0074683, - 0.020532, - -0.019172, - -0.03136, - -0.040723, - -0.0040991, - 0.004693, - 0.025572, - 0.0022159, - -0.0083772, - 0.033808, - 0.056943, - -0.032313, - -0.034219, - 0.0064087, - 0.000087406, - -0.009479, - 0.033453, - -0.042154, - 0.026731, - 0.018585, - -0.0059444, - -0.016441, - -0.044579, - -0.032634, - 0.039744, - 0.022071, - -0.0059892, - -0.017525, - -0.012227, - 0.0083188, - -0.022796, - -0.04927, - -0.07858, - -0.0081961, - 0.056422, - 0.067121, - -0.0099976, - 0.055464, - 0.021845 - ], - "theater": [ - -0.0067811, - -0.095825, - 0.062118, - 0.020432, - 0.044208, - -0.010028, - 0.022137, - -0.092286, - 0.079016, - 0.014901, - 0.062516, - -0.07301, - 0.091828, - -0.038416, - -0.097413, - -0.038815, - 0.14879, - -0.015873, - 0.039896, - 0.0053787, - 0.01906, - -0.090612, - -0.00047888, - 0.056023, - -0.022726, - 0.082715, - -0.0012649, - 0.050806, - -0.0056612, - -0.0046744, - -0.049119, - 0.010083, - -0.018218, - -0.043486, - 0.043497, - 0.0383, - 0.077553, - 0.035997, - 0.088814, - -0.099174, - -0.029899, - -0.13834, - 0.0024525, - -0.0062984, - 0.025679, - -0.013323, - 0.11314, - -0.005873, - -0.027109, - 0.038633, - 0.039925, - 0.011703, - 0.035199, - 0.0092381, - -0.063288, - -0.012767, - 0.010675, - -0.00032883, - -0.029228, - -0.0013639, - -0.0049153, - -0.029862, - 0.094452, - 0.017359, - 0.035348, - 0.049129, - -0.0070602, - -0.014706, - 0.039021, - 0.055014, - 0.056528, - -0.023187, - 0.034253, - 0.032949, - 0.13373, - 0.021363, - 0.00039542, - -0.038756, - 0.07378, - 0.070047, - -0.018049, - 0.0019252, - -0.07286, - 0.028309, - -0.099686, - -0.015094, - -0.091097, - -0.041622, - -0.046041, - 0.021568, - 0.0058668, - 0.068019, - -0.086254, - -0.0037705, - 0.033256, - 0.097754, - -0.056596, - 0.057896, - -0.030796, - 0.061072, - 0.12846, - 0.049468, - -0.0050608, - -0.019965, - 0.019695, - -0.12363, - -0.0562, - 0.018641, - -0.054694, - 0.031221, - -0.0194, - 0.11125, - 0.053914, - -0.0014022, - 0.071369, - -0.066312, - -0.0033821, - 0.0063731, - -0.035408, - 0.062956, - -0.080659, - -0.054367, - -0.091151, - 0.0075129, - 0.025997, - 0.043771, - 0.0013639, - -0.085826, - 0.01588, - 0.095389, - -0.0024881, - 0.027604, - 0.025063, - 0.04215, - 0.0075665, - 0.018316, - 0.0010931, - 0.021558, - -0.016491, - -0.048639, - 0.0022388, - -0.022456, - -0.056605, - 0.039278, - -0.026152, - -0.020785, - -0.06528, - -0.071196, - 0.028633, - 0.045197, - 0.04131, - 0.063553, - -0.023821, - -0.062543, - -0.067756, - -0.0058495, - 0.031272, - 0.054252, - 0.056185, - -0.013958, - 0.023746, - 0.021707, - -0.048495, - -0.02566, - -0.030055, - 0.030403, - 0.0085734, - -0.075276, - -0.020055, - 0.024346, - 0.068909, - -0.0051301, - 0.037051, - 0.041382, - -0.017112, - 0.032977, - -0.022416, - -0.039365, - -0.053562, - -0.014968, - 0.0060102, - 0.069833, - -0.0075367, - -0.059786, - -0.03173, - 0.0022459, - -0.019874, - 0.081977, - 0.011371, - -0.010374, - 0.05162, - 0.064406, - 0.011569, - -0.088049, - -0.03922, - 0.022863, - -0.030462, - 0.047524, - 0.059761, - -0.005048, - -0.16661, - 0.029415, - -0.094007, - -0.0024691, - 0.096089, - -0.012844, - -0.018945, - 0.047821, - -0.057463, - -0.018029, - 0.12407, - -0.028586, - -0.016354, - 0.025567, - -0.0021504, - 0.052694, - 0.1048, - -0.028702, - 0.055847, - -0.032729, - 0.069622, - 0.051849, - -0.033858, - 0.11043, - -0.030879, - -0.058939, - 0.068626, - 0.045094, - -0.067195, - -0.0022459, - 0.0068555, - -0.048367, - -0.038002, - -0.0037804, - -0.0054506, - -0.061544, - 0.009311, - -0.053538, - -0.012638, - -0.022902, - 0.058644, - -0.034036, - 0.0089875, - 0.020828, - -0.0060977, - -0.0060067, - -0.080438, - 0.02777, - 0.066308, - 0.031388, - 0.038077, - -0.014091, - -0.06364, - 0.074193, - -0.063582, - 0.056955, - -0.020111, - 0.034345, - -0.032949, - -0.028819, - 0.063428, - 0.028029, - -0.058869, - -0.017373, - -0.04841, - 0.058754, - -0.011708, - 0.027638, - -0.042718, - -0.011963, - 0.022459, - 0.096315, - -0.10977, - -0.021254, - -0.007945, - -0.022278, - -0.058559, - 0.023829, - -0.0048768, - 0.0057117, - 0.068947, - 0.0038403, - -0.028049, - 0.014155, - -0.019105, - 0.0069121, - -0.020821, - -0.041088, - 0.024495, - 0.0072546, - 0.049023, - 0.08933, - -0.015735, - 0.048312, - 0.023452, - 0.0082873, - 0.06234, - 0.052746, - 0.0081672, - 0.0014945 - ], - "snow": [ - 0.12608, - 0.040926, - 0.01669, - -0.061211, - 0.018958, - -0.10639, - -0.055706, - -0.11453, - 0.092863, - -0.028656, - 0.012632, - -0.025398, - 0.058874, - -0.0036592, - -0.0081018, - -0.060074, - 0.10803, - 0.046777, - 0.057201, - -0.011813, - -0.037162, - -0.091271, - -0.044659, - 0.055239, - 0.2226, - 0.065081, - -0.0097745, - 0.089488, - 0.096451, - 0.030529, - 0.040016, - -0.066304, - 0.038971, - -0.056024, - 0.0096554, - 0.021213, - 0.024144, - 0.014769, - -0.075722, - -0.0601, - 0.040695, - -0.19482, - -0.016666, - -0.03521, - 0.067175, - 0.0065633, - -0.015316, - -0.036011, - -0.052219, - 0.040939, - 0.10646, - 0.050254, - -0.016072, - 0.019126, - -0.11653, - 0.032216, - 0.084371, - -0.049954, - -0.076791, - -0.037326, - 0.040381, - -0.027595, - 0.089526, - 0.04016, - -0.054559, - -0.036537, - 0.046332, - -0.021763, - -0.021746, - 0.12254, - -0.0078001, - 0.057931, - 0.018192, - 0.078906, - 0.0033945, - -0.0048326, - -0.060976, - -0.028222, - -0.15833, - -0.061297, - -0.044841, - -0.11748, - 0.021309, - 0.047237, - 0.11838, - 0.032336, - 0.032244, - -0.029803, - -0.0065398, - -0.081974, - -0.10197, - -0.022417, - -0.13863, - -0.028466, - 0.06497, - 0.055217, - -0.030639, - 0.19104, - 0.05588, - 0.050331, - 0.076224, - -0.048328, - 0.054563, - 0.10228, - 0.068307, - -0.10363, - -0.07764, - 0.1474, - -0.030788, - -0.053814, - -0.098086, - 0.10342, - 0.056048, - 0.036056, - 0.021562, - -0.11268, - 0.0024045, - 0.10972, - -0.057852, - -0.051664, - 0.013226, - 0.03608, - 0.035254, - -0.090196, - 0.054449, - 0.00024352, - 0.018899, - -0.1239, - -0.048966, - 0.10912, - 0.06507, - -0.0010457, - -0.0015944, - 0.11235, - 0.061576, - 0.088098, - 0.055879, - 0.058338, - -0.058956, - 0.0017881, - 0.044166, - -0.18952, - 0.000093417, - -0.12998, - 0.013813, - 0.06124, - -0.0098021, - -0.04196, - 0.0074458, - -0.075092, - -0.040119, - 0.093969, - 0.032413, - -0.039359, - 0.087342, - -0.039583, - -0.043526, - -0.077774, - -0.059142, - 0.012261, - 0.052042, - -0.066037, - -0.10867, - -0.0059368, - -0.063071, - 0.0065406, - 0.020358, - 0.099527, - 0.030734, - 0.10769, - -0.015606, - -0.0018049, - -0.050351, - 0.0523, - 0.19532, - 0.10708, - 0.091969, - 0.007763, - -0.064163, - -0.011816, - 0.022483, - -0.042431, - -0.00030009, - -0.15027, - -0.081218, - -0.055121, - -0.091836, - 0.13122, - -0.022603, - -0.014316, - 0.040499, - -0.017543, - -0.080237, - -0.065928, - -0.031238, - -0.046463, - -0.076982, - -0.061571, - -0.030045, - -0.011733, - -0.23312, - -0.0090244, - -0.060314, - -0.022653, - 0.078814, - 0.17153, - 0.027397, - 0.087509, - -0.039547, - -0.065377, - 0.1707, - -0.065819, - -0.017137, - -0.0046998, - 0.12872, - -0.035722, - 0.032528, - -0.111, - 0.030132, - -0.11133, - 0.066185, - -0.044089, - 0.00202, - 0.12413, - 0.068759, - 0.14445, - -0.12894, - 0.061754, - -0.11243, - -0.061255, - 0.060154, - -0.063177, - -0.12231, - -0.0060144, - -0.033537, - 0.011643, - 0.18528, - -0.063242, - 0.010304, - -0.13602, - 0.11363, - 0.092263, - 0.0063479, - -0.13695, - -0.089211, - 0.089814, - 0.092461, - -0.0012548, - -0.09003, - -0.024024, - -0.084796, - 0.020128, - -0.014279, - 0.13939, - 0.011726, - 0.087556, - 0.032358, - -0.04332, - 0.1373, - 0.074922, - -0.0057804, - 0.073642, - -0.19634, - -0.065736, - -0.020862, - -0.054813, - -0.0082752, - 0.0029968, - 0.041371, - -0.078059, - -0.079686, - 0.12775, - -0.1697, - -0.026428, - -0.019577, - -0.093818, - -0.092685, - -0.080149, - -0.016186, - -0.055104, - 0.12659, - 0.031901, - 0.062281, - -0.04882, - -0.031874, - 0.004497, - 0.022871, - 0.025576, - -0.12466, - -0.010622, - -0.078355, - -0.11199, - -0.054041, - -0.10445, - -0.042991, - -0.04444, - 0.093853, - -0.024804, - 0.1479, - -0.072279 - ], - "businesslike": [ - 0.0011423, - 0.0050655, - 0.039919, - -0.022872, - 0.0099883, - 0.0043866, - -0.039409, - -0.094457, - -0.023466, - 0.070862, - 0.0087353, - 0.0091443, - -0.011591, - 0.016991, - -0.053449, - 0.048064, - 0.082094, - 0.041298, - 0.074649, - 0.014201, - -0.021424, - -0.019714, - -0.0043282, - 0.067891, - -0.016086, - 0.030359, - 0.028925, - 0.039821, - -0.042517, - 0.010309, - -0.043137, - 0.00024158, - 0.0068218, - -0.07026, - 0.054774, - 0.045995, - -0.028964, - 0.05045, - 0.019057, - 0.018294, - 0.0096442, - -0.093465, - 0.0020845, - 0.059379, - -0.0075873, - -0.054962, - 0.022103, - -0.066569, - -0.020721, - -0.065851, - 0.019768, - -0.04922, - 0.0095743, - 0.0089165, - -0.01714, - -0.014411, - -0.049566, - -0.028482, - -0.017908, - 0.0098807, - 0.040045, - 0.025583, - 0.084652, - -0.037314, - -0.013264, - -0.0065712, - 0.025971, - -0.037382, - -0.033396, - -0.038616, - 0.022342, - -0.02911, - 0.010829, - 0.0055719, - -0.011873, - -0.013045, - -0.036244, - -0.06438, - -0.019804, - -0.00092597, - 0.043723, - -0.015256, - 0.050191, - 0.0098714, - 0.040371, - -0.055963, - -0.013983, - 0.019074, - 0.037442, - 0.01833, - -0.02242, - 0.028059, - -0.091293, - 0.025303, - 0.060942, - 0.051341, - -0.062278, - -0.040245, - 0.042767, - 0.043288, - -0.023851, - 0.026397, - -0.079744, - 0.0005758, - -0.047877, - -0.088976, - 0.044747, - 0.0048785, - -0.054049, - -0.019461, - -0.026747, - 0.049884, - -0.013563, - 0.03399, - -0.05456, - -0.070251, - -0.012427, - 0.0021951, - -0.043753, - -0.0074664, - -0.016881, - -0.058237, - 0.02497, - 0.027935, - 0.054162, - 0.016895, - 0.011716, - 0.025879, - 0.044512, - 0.0061077, - -0.0056783, - 0.021308, - -0.029515, - 0.024673, - -0.041035, - -0.037022, - 0.036539, - -0.0066793, - 0.0077378, - 0.02441, - 0.07543, - 0.0024699, - 0.002936, - -0.073101, - -0.0016366, - 0.0044356, - 0.074884, - -0.028202, - -0.0035442, - -0.026559, - 0.002014, - 0.047705, - -0.0081296, - 0.0011297, - -0.032787, - 0.057634, - -0.0067347, - -0.031145, - 0.004596, - 0.034118, - 0.072625, - -0.0032502, - -0.057224, - 0.084563, - 0.0050472, - 0.02587, - 0.045481, - -0.014124, - -0.014015, - 0.033506, - 0.018181, - 0.0043532, - -0.0035741, - 0.009051, - 0.037507, - 0.028455, - -0.048362, - 0.10073, - -0.039694, - 0.0089258, - -0.012748, - -0.050603, - 0.0056877, - -0.012086, - -0.00086513, - -0.052724, - -0.040152, - 0.071462, - -0.026561, - -0.0082447, - -0.024578, - 0.047635, - 0.025279, - -0.016748, - -0.032077, - -0.021681, - -0.0099673, - 0.0032998, - 0.0023559, - -0.017049, - -0.12248, - 0.068341, - 0.045631, - -0.0059321, - 0.011762, - -0.012972, - -0.08904, - -0.011841, - -0.013845, - -0.025443, - 0.070023, - -0.0036167, - -0.0017746, - 0.026111, - 0.0088709, - 0.010503, - -0.035214, - -0.055683, - -0.11765, - -0.030577, - 0.0052188, - -0.024272, - -0.018699, - 0.071341, - -0.02988, - -0.0047537, - 0.061335, - 0.077049, - 0.011253, - -0.044955, - 0.03445, - -0.034792, - 0.020331, - -0.015193, - 0.045947, - -0.0076036, - -0.026183, - -0.048883, - -0.024592, - -0.00094156, - 0.05462, - -0.01641, - 0.018431, - 0.044874, - -0.064818, - 0.019208, - 0.010655, - -0.074407, - 0.035784, - -0.081983, - 0.048695, - -0.011621, - -0.0074053, - -0.02562, - 0.0037479, - -0.0085194, - -0.014331, - 0.017272, - -0.040355, - -0.01866, - -0.014956, - 0.023104, - 0.010411, - 0.017357, - -0.042762, - 0.036783, - 0.030518, - 0.019117, - -0.041779, - 0.016629, - -0.04425, - 0.074829, - -0.10056, - -0.019937, - 0.079664, - -0.06581, - 0.019085, - 0.02157, - 0.026321, - -0.028188, - 0.031732, - -0.0005539, - -0.0015588, - -0.017551, - -0.057465, - 0.012905, - 0.022344, - -0.050219, - -0.02312, - 0.021922, - -0.0078091, - 0.050166, - 0.059793, - 0.0076726, - -0.032011, - -0.040559, - -0.0067551, - 0.017229, - -0.047574, - -0.049918 - ], - "factionalism": [ - 0.029662, - -0.024528, - 0.0092164, - -0.055752, - -0.0012451, - -0.015935, - 0.025471, - -0.05805, - 0.019442, - 0.016979, - -0.017691, - -0.01853, - -0.007234, - 0.032972, - -0.018009, - -0.039538, - 0.021207, - 0.015889, - 0.00053861, - 0.0067236, - -0.022549, - 0.007013, - -0.017575, - 0.061304, - -0.056293, - 0.013746, - -0.0040035, - -0.036087, - 0.093845, - -0.016057, - -0.015718, - -0.015835, - -0.019471, - -0.068023, - 0.014963, - -0.0029566, - 0.034908, - 0.024833, - -0.025901, - 0.022123, - -0.025299, - -0.085543, - -0.0064315, - 0.045815, - 0.022285, - 0.013439, - -0.015474, - -0.006855, - -0.024073, - -0.043446, - 0.015416, - 0.030727, - 0.0096812, - 0.035353, - -0.016353, - -0.0094453, - -0.0034413, - 0.014152, - -0.036288, - 0.029345, - 0.0083334, - -0.012093, - -0.023929, - -0.065153, - 0.025073, - -0.017055, - 0.0026455, - 0.020957, - 0.051665, - 0.012865, - 0.036949, - -0.0056148, - -0.039177, - -0.020162, - 0.047148, - -0.007846, - -0.033216, - -0.011966, - 0.0021407, - 0.000023478, - -0.046093, - 0.031171, - -0.092806, - 0.029812, - 0.053363, - -0.094616, - -0.0049631, - 0.034104, - -0.00014007, - 0.032708, - 0.029261, - -0.0011617, - -0.049008, - 0.01636, - 0.01509, - 0.025187, - -0.047939, - -0.03874, - 0.015891, - 0.01736, - -0.021766, - 0.016842, - 0.02587, - -0.025468, - -0.0022499, - 0.0090803, - 0.051316, - 0.0044506, - -0.065133, - -0.0080916, - -0.013189, - 0.05863, - 0.049985, - -0.0050035, - 0.0051266, - -0.012048, - 0.049333, - -0.023919, - -0.026027, - -0.004736, - -0.023528, - -0.026225, - 0.027142, - -0.045258, - 0.074003, - 0.0043375, - -0.0092013, - -0.017071, - 0.024687, - 0.12671, - 0.02353, - -0.045576, - 0.069413, - 0.020664, - 0.031108, - -0.0025126, - -0.070221, - 0.039957, - 0.0041418, - -0.02146, - 0.060376, - -0.0066465, - 0.007967, - 0.030898, - 0.0012704, - -0.047046, - 0.018751, - 0.027472, - -0.038488, - 0.00011654, - 0.069219, - 0.039233, - 0.010503, - 0.039956, - 0.010143, - 0.0086076, - 0.035395, - 0.084057, - -0.0028086, - 0.012778, - 0.048432, - -0.044759, - -0.11554, - -0.044162, - -0.024393, - -0.00095973, - 0.024382, - 0.057814, - -0.019295, - 0.0067267, - -0.035876, - 0.0010822, - -0.017374, - -0.0032563, - 0.0063049, - 0.020096, - 0.030683, - 0.021839, - 0.0000096624, - -0.045602, - -0.027194, - 0.0041293, - -0.019579, - -0.011489, - 0.065248, - -0.045249, - 0.017458, - 0.085199, - -0.016653, - -0.044968, - -0.0050237, - 0.035647, - -0.096179, - -0.021946, - 0.026122, - 0.01637, - 0.034464, - 0.013148, - -0.047213, - 0.015475, - -0.10616, - -0.033911, - 0.025227, - -0.015503, - -0.077537, - 0.015926, - -0.010838, - 0.028387, - 0.061774, - 0.0067748, - 0.04636, - 0.020596, - 0.02876, - -0.0011025, - 0.096562, - 0.017604, - -0.043468, - 0.017516, - 0.043415, - -0.097641, - -0.021327, - 0.019094, - -0.017986, - 0.052721, - 0.061512, - 0.038743, - 0.0069488, - 0.069178, - 0.0085016, - -0.016284, - 0.0042105, - -0.045952, - -0.032181, - 0.0075641, - 0.031714, - 0.01031, - -0.036049, - -0.065421, - -0.012483, - -0.017315, - 0.014638, - 0.0091844, - 0.02598, - 0.051692, - -0.040159, - -0.002898, - -0.066234, - -0.040988, - -0.00065037, - 0.0026239, - -0.0089101, - 0.035291, - -0.017473, - 0.081161, - -0.011665, - -0.0032708, - 0.033005, - 0.02599, - 0.03291, - -0.0022546, - -0.020123, - -0.015964, - 0.0034765, - 0.032187, - -0.0085544, - 0.018029, - -0.061652, - -0.0099908, - -0.050487, - 0.012155, - -0.031906, - 0.076319, - -0.063321, - -0.015318, - 0.087773, - -0.072391, - 0.0029336, - 0.013626, - -0.11573, - 0.052172, - 0.071528, - -0.029868, - -0.0034002, - 0.034715, - -0.0046649, - 0.0019884, - 0.060908, - 0.024728, - -0.065631, - 0.017935, - 0.0049992, - -0.016928, - -0.056333, - -0.03738, - -0.013814, - 0.011549, - -0.041695, - 0.035487, - 0.025861, - 0.044064 - ], - "fashionable": [ - -0.033635, - 0.010308, - 0.039046, - 0.0083133, - -0.021781, - 0.0061104, - -0.0042802, - -0.05597, - 0.03234, - -0.010448, - -0.012174, - -0.021374, - -0.038074, - -0.046252, - -0.029712, - -0.021208, - 0.1335, - 0.02662, - 0.021266, - 0.016111, - 0.018141, - -0.012126, - -0.012473, - 0.037052, - -0.009218, - 0.001104, - -0.00081785, - 0.076268, - 0.0062569, - -0.029315, - -0.043525, - -0.083394, - 0.040994, - -0.030063, - 0.050364, - 0.0085043, - 0.049619, - 0.02653, - 0.0087276, - 0.016778, - 0.014103, - -0.033902, - -0.035019, - 0.017149, - -0.0092814, - -0.037809, - 0.013179, - 0.0012595, - -0.023037, - 0.016823, - -0.021712, - -0.020233, - -0.074513, - 0.035879, - -0.011202, - -0.0010878, - 0.034861, - 0.019719, - -0.04496, - 0.012232, - 0.018488, - -0.019635, - 0.082027, - 0.014668, - -0.0017779, - 0.055648, - -0.018368, - 0.006953, - -0.0056454, - -0.045763, - 0.016996, - -0.015549, - 0.045938, - -0.052028, - 0.015833, - 0.040339, - 0.02406, - -0.0031828, - 0.0042867, - 0.012418, - 0.022689, - 0.032546, - 0.015871, - 0.046426, - -0.000039652, - 0.017417, - -0.028964, - -0.0049653, - -0.046149, - 0.0052412, - 0.019009, - -0.035386, - -0.072073, - -0.003715, - 0.10089, - 0.052627, - -0.056449, - -0.035253, - -0.0038813, - 0.038597, - -0.031123, - 0.030062, - -0.013313, - 0.015637, - -0.043756, - -0.099052, - 0.023886, - 0.029007, - 0.033387, - 0.002157, - -0.028267, - 0.081894, - 0.04126, - 0.0283, - -0.064307, - -0.039169, - 0.023896, - -0.0018587, - -0.030967, - 0.00527, - 0.029992, - -0.03368, - -0.031715, - -0.0066722, - 0.035814, - -0.022126, - -0.012226, - -0.0020004, - 0.017938, - -0.041532, - -0.0035107, - 0.078792, - 0.065321, - -0.0079633, - -0.052399, - 0.039024, - -0.020243, - 0.041052, - -0.011979, - -0.054513, - 0.070642, - -0.0067026, - 0.0098524, - 0.061197, - 0.045487, - -0.00094463, - 0.033056, - 0.039109, - 0.025115, - -0.0055477, - 0.035425, - 0.085105, - -0.014276, - -0.029893, - -0.035663, - 0.024454, - 0.027444, - 0.050351, - -0.010696, - 0.032053, - 0.04238, - -0.0041413, - 0.011059, - 0.021007, - -0.0079897, - -0.014592, - 0.0061945, - -0.053705, - -0.013753, - -0.010329, - -0.031031, - 0.0014596, - 0.030583, - -0.02462, - -0.013783, - 0.039106, - -0.028341, - 0.037412, - 0.0019865, - -0.013109, - 0.025849, - -0.010195, - 0.0024978, - -0.044815, - 0.017896, - 0.0068527, - -0.043712, - 0.091786, - -0.024295, - 0.024236, - 0.0013992, - 0.086353, - 0.047035, - -0.039275, - 0.022586, - -0.012668, - 0.034524, - 0.024948, - -0.0025936, - 0.04403, - -0.12671, - 0.036533, - 0.022406, - 0.0058548, - 0.044666, - 0.019294, - 0.014063, - -0.047921, - -0.0020309, - -0.037776, - 0.051397, - -0.049031, - -0.0045032, - 0.035962, - 0.048178, - 0.015534, - -0.042817, - -0.017068, - -0.030628, - -0.067039, - -0.039333, - -0.030738, - 0.053873, - 0.07958, - -0.033579, - 0.00037123, - 0.013544, - 0.026121, - -0.0059426, - -0.0099528, - -0.018526, - -0.014817, - -0.03555, - 0.008302, - 0.015436, - -0.0020284, - -0.025853, - -0.018052, - 0.03172, - -0.036658, - 0.087163, - -0.01395, - -0.01781, - -0.015487, - -0.096874, - 0.043121, - -0.047652, - -0.00077069, - -0.022112, - -0.062318, - -0.046094, - 0.0068055, - -0.015688, - -0.019117, - -0.020037, - 0.021914, - -0.030692, - 0.02684, - 0.02264, - 0.04386, - 0.045767, - 0.0075206, - -0.0089939, - 0.0043425, - -0.0021713, - 0.032134, - -0.0071696, - 0.035182, - 0.025285, - 0.043479, - -0.04728, - 0.058105, - -0.069416, - -0.018202, - 0.033423, - -0.087929, - 0.022479, - 0.021466, - -0.05278, - -0.011098, - 0.050177, - 0.057468, - -0.022817, - -0.01999, - -0.017164, - -0.020577, - -0.000024618, - -0.033816, - 0.041766, - 0.043689, - -0.028532, - 0.013184, - 0.030042, - 0.018037, - -0.034144, - -0.011238, - 0.019107, - 0.046182, - -0.032177, - -0.012046 - ], - "constitutional": [ - 0.010902, - 0.015888, - 0.0078178, - 0.0047289, - -0.0081742, - -0.028896, - 0.038325, - -0.052354, - 0.037318, - 0.041048, - 0.035302, - -0.057385, - 0.01557, - 0.00497, - 0.0083638, - 0.056318, - 0.05561, - -0.0091043, - 0.014811, - 0.010964, - 0.0062312, - -0.022252, - 0.046227, - 0.053655, - -0.013634, - 0.0086892, - 0.0062611, - 0.014781, - 0.021471, - 0.019067, - 0.029809, - -0.042896, - -0.029276, - -0.075807, - 0.030176, - 0.027544, - 0.043297, - -0.021595, - -0.020367, - 0.044827, - 0.0009622, - -0.070479, - 0.0029124, - 0.017931, - 0.010875, - 0.013718, - -0.023139, - 0.019556, - 0.007939, - 0.023838, - 0.020622, - 0.0038721, - -0.0022979, - 0.023996, - 0.0050419, - -0.025508, - 0.0018769, - -0.030328, - -0.016483, - 0.0068751, - -0.0010162, - 0.024122, - 0.069389, - 0.021348, - 0.034036, - -0.017905, - -0.0087474, - 0.0021644, - 0.010713, - 0.011491, - 0.00030939, - -0.018789, - -0.0041724, - -0.018635, - -0.021704, - -0.028142, - -0.027318, - -0.037258, - -0.033413, - 0.013881, - -0.017002, - 0.023683, - 0.011011, - 0.026641, - 0.010068, - 0.03842, - -0.012697, - 0.0057144, - 0.0044369, - 0.0457, - 0.0041038, - -0.0019092, - -0.065502, - 0.0042052, - 0.008201, - 0.0062687, - 0.0067042, - -0.013004, - 0.011369, - -0.0078293, - 0.034381, - 0.016211, - -0.014224, - -0.054586, - -0.019962, - -0.056363, - 0.042431, - -0.013542, - -0.048777, - -0.017456, - 0.026332, - 0.031314, - 0.035908, - -0.0076223, - 0.011656, - 0.050415, - 0.040536, - -0.0044153, - -0.031426, - 0.056085, - 0.038714, - -0.0087354, - 0.014258, - 0.022156, - 0.058831, - 0.030262, - 0.030595, - -0.039364, - -0.0083911, - 0.055794, - 0.0032969, - 0.0032273, - 0.0020233, - 0.024271, - -0.0099666, - -0.0056701, - 0.0063388, - 0.018872, - 0.014, - 0.010909, - 0.074327, - -0.04913, - -0.021695, - 0.046079, - -0.01707, - -0.028804, - 0.010372, - 0.024269, - -0.011549, - 0.0070133, - 0.024651, - 0.10105, - 0.022093, - -0.013808, - 0.027061, - 0.014498, - -0.015888, - -0.047004, - -0.0042168, - -0.046887, - 0.025709, - 0.043573, - -0.061142, - 0.025725, - -0.001102, - -0.0053332, - 0.034469, - -0.020225, - -0.035718, - -0.024411, - 0.023068, - -0.013652, - -0.0016164, - -0.018015, - -0.025295, - 0.029107, - 0.032276, - 0.014379, - -0.020038, - -0.028261, - 0.012938, - 0.012992, - 0.0072527, - -0.0078235, - 0.035956, - 0.0099459, - -0.010932, - 0.059563, - 0.056692, - -0.012434, - 0.033586, - 0.035971, - 0.06628, - -0.036689, - -0.00494, - -0.014616, - 0.048126, - -0.0018243, - -0.0083599, - -0.01783, - -0.11379, - -0.015216, - 0.029606, - -0.018117, - -0.038132, - -0.037401, - 0.04897, - 0.0023721, - -0.025066, - 0.0025552, - 0.094519, - 0.0046274, - -0.01166, - 0.034611, - -0.0085782, - 0.015664, - 0.035123, - -0.013526, - -0.026125, - -0.048872, - 0.0019225, - 0.0086725, - 0.020143, - 0.045487, - 0.0032299, - 0.0081353, - 0.030752, - 0.031877, - -0.013622, - -0.047381, - -0.0026186, - -0.028336, - -0.050405, - -0.0053509, - -0.025479, - -0.028433, - -0.0081448, - 0.0018215, - -0.022721, - 0.0097067, - 0.038959, - -0.042031, - -0.019016, - 0.02523, - -0.10828, - -0.015897, - -0.013811, - 0.015329, - -0.027975, - -0.0051598, - -0.015306, - 0.0040484, - 0.0040322, - -0.0042356, - -0.017004, - 0.030891, - 0.00069178, - 0.020808, - -0.0044281, - -0.014669, - 0.013383, - -0.017849, - -0.01912, - -0.0038274, - 0.011924, - -0.019554, - -0.010289, - 0.015532, - -0.0022017, - 0.021839, - 0.036984, - 0.040153, - -0.051267, - -0.015847, - 0.038735, - -0.058361, - 0.01221, - 0.03774, - 0.0046368, - -0.016382, - 0.09711, - -0.019635, - 0.0075521, - 0.0023885, - 0.016522, - -0.0057162, - -0.013225, - 0.0038426, - 0.0033022, - 0.031073, - -0.008616, - -0.0099897, - 0.0027069, - 0.0062416, - 0.0018724, - 0.0020411, - -0.063263, - -0.014236, - -0.0026599, - 0.013969 - ], - "theology": [ - 0.016884, - -0.054529, - 0.026651, - -0.081751, - 0.019376, - -0.073004, - -0.063497, - -0.092576, - 0.046081, - -0.030445, - 0.0253, - -0.070702, - 0.021732, - -0.0031535, - -0.027775, - -0.053818, - 0.11428, - 0.0014652, - -0.0034366, - -0.0044892, - -0.042113, - 0.040822, - 0.023001, - 0.044047, - -0.0060779, - 0.023022, - 0.013377, - 0.051673, - 0.008786, - 0.045543, - 0.023196, - 0.055541, - -0.018311, - -0.046633, - 0.015326, - 0.051807, - 0.038325, - 0.0024042, - 0.0024931, - -0.058517, - -0.027058, - -0.1032, - 0.025664, - 0.063188, - -0.01696, - -0.037709, - -0.06786, - -0.041433, - 0.0046268, - 0.0058824, - -0.0097794, - -0.056151, - 0.022143, - -0.0037218, - -0.031569, - 0.060966, - -0.02729, - 0.036208, - -0.020726, - 0.034952, - 0.033745, - -0.026784, - 0.081837, - 0.06267, - 0.030885, - -0.014677, - 0.012551, - 0.029513, - 0.022716, - -0.021389, - 0.030561, - -0.037078, - -0.0065767, - 0.029362, - 0.016911, - -0.047535, - 0.011131, - -0.015094, - 0.12236, - 0.0095696, - -0.012436, - 0.01891, - -0.039735, - 0.052108, - -0.10348, - -0.0095833, - 0.030905, - -0.014127, - 0.057926, - 0.048898, - 0.06681, - 0.025111, - -0.075602, - 0.018505, - 0.046572, - 0.078912, - 0.061833, - -0.05212, - -0.011329, - -0.041704, - 0.02646, - 0.010891, - 0.044378, - -0.0024377, - -0.020682, - -0.062156, - 0.056269, - 0.070898, - -0.046271, - 0.0010472, - -0.020584, - 0.069918, - 0.025157, - 0.028726, - 0.0050374, - 0.048022, - 0.068586, - 0.064325, - -0.029482, - 0.042601, - -0.043569, - -0.03844, - -0.034246, - -0.048719, - 0.045599, - 0.021068, - -0.10066, - -0.024357, - 0.020812, - 0.16647, - -0.0062034, - -0.019031, - -0.012616, - 0.05296, - 0.015102, - 0.088298, - 0.017112, - 0.020737, - 0.035514, - -0.063666, - -0.01684, - 0.0058166, - -0.066364, - 0.053717, - -0.0038951, - -0.06581, - 0.014778, - -0.0015874, - -0.037951, - -0.023296, - 0.051293, - 0.045559, - -0.021177, - -0.034527, - 0.039758, - 0.075123, - -0.039131, - -0.039836, - 0.019754, - -0.00090983, - 0.023677, - 0.059206, - -0.11243, - -0.045677, - 0.023392, - 0.010947, - 0.02422, - 0.036082, - 0.004912, - 0.0066098, - 0.0038842, - -0.057627, - -0.016143, - -0.05017, - 0.097841, - 0.047474, - 0.020416, - 0.065992, - -0.024262, - -0.079781, - -0.022217, - 0.026785, - -0.0013107, - 0.015167, - 0.033154, - -0.03204, - 0.084841, - 0.10086, - -0.024462, - -0.069468, - 0.064149, - 0.095346, - -0.038497, - -0.038257, - -0.00018679, - -0.068693, - -0.06361, - -0.024796, - 0.0024159, - 0.0024348, - -0.14156, - -0.016925, - 0.0024124, - -0.048466, - -0.048351, - -0.010083, - 0.017946, - -0.080554, - -0.0047795, - -0.012746, - 0.10593, - 0.0268, - -0.0083317, - 0.019217, - 0.036955, - 0.086219, - 0.019795, - -0.094508, - -0.05337, - -0.037004, - -0.072021, - 0.0058914, - -0.048762, - 0.079459, - -0.00021494, - -0.040762, - 0.01252, - 0.082328, - 0.011617, - -0.026995, - 0.050982, - -0.04377, - -0.04118, - -0.0088603, - 0.017861, - 0.02297, - -0.019848, - -0.05148, - -0.0059018, - 0.00086652, - 0.028779, - -0.025867, - -0.050676, - 0.034046, - 0.014903, - 0.045547, - -0.026694, - -0.025236, - 0.00065329, - 0.029605, - 0.043743, - -0.029801, - -0.082854, - -0.047205, - 0.013953, - -0.0057184, - -0.025496, - 0.033195, - 0.075217, - -0.023846, - 0.020247, - -0.027712, - 0.013506, - 0.027058, - 0.0042258, - -0.029381, - 0.0064295, - 0.030204, - 0.013528, - 0.038343, - 0.069995, - 0.087892, - -0.086534, - -0.01854, - -0.010303, - -0.011299, - -0.065516, - -0.019109, - -0.03877, - 0.014232, - 0.076154, - 0.00015106, - 0.0062769, - -0.029664, - -0.040082, - -0.031004, - -0.0025523, - 0.00011644, - 0.000028205, - 0.115, - 0.059529, - -0.040388, - -0.0075361, - -0.017813, - 0.0093753, - 0.01921, - 0.044461, - 0.045366, - 0.00062771, - 0.0061152 - ], - "academic": [ - -0.0076867, - -0.12129, - 0.036817, - 0.0053078, - -0.045815, - -0.055201, - -0.015162, - -0.085913, - 0.08476, - -0.0086536, - -0.032455, - -0.057726, - 0.015935, - 0.022896, - 0.014671, - 0.047545, - 0.049149, - -0.012321, - 0.05546, - 0.033485, - -0.031197, - 0.077648, - 0.024438, - 0.13627, - -0.01405, - 0.041264, - -0.047937, - 0.054926, - 0.030652, - 0.022138, - 0.018431, - -0.038376, - -0.045547, - -0.11096, - 0.040072, - 0.073816, - 0.055443, - -0.0088367, - 0.040477, - 0.030522, - 0.010754, - -0.068802, - 0.045681, - 0.066616, - 0.026993, - 0.00049499, - -0.0085399, - -0.010599, - -0.024743, - -0.026111, - 0.0011193, - -0.013239, - -0.004826, - 0.0038419, - 0.041169, - 0.012461, - -0.031098, - 0.03155, - 0.004714, - -0.028169, - 0.051527, - 0.042152, - 0.12537, - 0.052264, - 0.054822, - -0.015782, - 0.013429, - -0.051751, - 0.010464, - -0.02292, - 0.013994, - -0.011481, - 0.06053, - 0.005672, - 0.01236, - -0.024211, - 0.002457, - -0.013594, - 0.073729, - 0.010554, - -0.0080434, - 0.031613, - -0.034772, - 0.0072755, - -0.044541, - 0.026533, - -0.059541, - 0.062093, - -0.033051, - -0.0014317, - 0.014947, - 0.049921, - -0.076786, - 0.016681, - 0.033865, - 0.06872, - 0.033861, - -0.013574, - 0.058626, - 0.017862, - 0.036902, - 0.068604, - 0.00013904, - -0.018335, - 0.031012, - -0.092044, - -0.0022511, - 0.049853, - -0.02116, - 0.020731, - -0.046903, - 0.074517, - 0.012482, - 0.0071669, - -0.03116, - -0.0050294, - -0.0025377, - -0.022365, - -0.04055, - -0.011876, - 0.05809, - -0.060263, - 0.0052245, - -0.0030307, - 0.051965, - -0.03509, - -0.028388, - -0.053991, - -0.025786, - 0.067644, - 0.0078994, - 0.040446, - 0.014163, - 0.0036997, - -0.024348, - 0.021829, - -0.016271, - 0.062013, - -0.015125, - -0.011897, - 0.01847, - -0.057111, - -0.0013696, - -0.0352, - -0.042708, - -0.02098, - 0.017167, - -0.015324, - -0.050883, - 0.03709, - 0.073866, - 0.17024, - 0.018195, - -0.048937, - 0.072182, - -0.003482, - 0.021847, - 0.040119, - 0.0093204, - 0.021673, - 0.031716, - 0.03871, - -0.048309, - -0.042793, - -0.0008733, - 0.015735, - 0.023529, - -0.002706, - 0.013594, - -0.050019, - 0.013251, - -0.028203, - 0.018877, - 0.0048459, - 0.031139, - 0.074822, - -0.029807, - 0.025141, - -0.020206, - -0.011271, - -0.036152, - 0.03887, - -0.04058, - -0.010296, - 0.016987, - -0.07342, - -0.045861, - 0.080124, - 0.0066803, - 0.042242, - -0.04625, - 0.068854, - 0.10012, - -0.051534, - 0.0039657, - 0.0027796, - -0.01588, - -0.033084, - 0.014813, - -0.034182, - -0.11911, - -0.014815, - -0.024406, - -0.022423, - -0.05475, - 0.0097083, - -0.025043, - -0.028563, - -0.045545, - 0.012799, - 0.17582, - -0.016278, - -0.061992, - 0.019463, - -0.042996, - 0.015082, - 0.026806, - -0.010248, - -0.032513, - -0.021227, - -0.062362, - 0.020755, - -0.017889, - 0.074497, - -0.015771, - 0.016369, - 0.051133, - 0.08581, - 0.033501, - -0.059442, - -0.021141, - -0.050084, - -0.05431, - 0.028206, - -0.017921, - 0.0024793, - 0.034658, - -0.052999, - -0.033165, - -0.027374, - 0.011484, - -0.013357, - 0.044389, - 0.005232, - -0.13847, - 0.040395, - -0.091518, - -0.078727, - 0.01742, - -0.0019426, - 0.0089012, - 0.010508, - -0.032974, - -0.060052, - -0.018207, - -0.0021498, - 0.031976, - 0.02383, - 0.03465, - -0.010662, - 0.021743, - -0.031503, - 0.012487, - -0.016931, - -0.010344, - 0.032383, - 0.045265, - 0.063719, - 0.052855, - 0.0021466, - 0.016351, - 0.061461, - -0.11673, - -0.029646, - 0.054616, - -0.11587, - 0.02798, - -0.0058257, - 0.0014948, - 0.043524, - 0.13745, - 0.017409, - 0.029507, - -0.034197, - 0.030721, - 0.011215, - -0.031534, - -0.050908, - -0.053439, - -0.0077039, - -0.013012, - -0.049633, - -0.0094139, - 0.024357, - -0.016422, - 0.054726, - -0.021161, - 0.028979, - -0.0031121, - 0.0017715 - ], - "costs": [ - 0.056171, - -0.059196, - 0.031452, - 0.014606, - 0.09949, - 0.031271, - 0.06455, - -0.1071, - 0.10542, - 0.025518, - 0.029621, - -0.0089984, - -0.041854, - -0.035499, - -0.029112, - 0.010973, - 0.055652, - -0.12999, - 0.12927, - -0.031947, - -0.090738, - 0.033632, - -0.026039, - 0.066808, - 0.052098, - -0.0016563, - -0.02427, - 0.082959, - 0.2236, - 0.048505, - -0.043212, - -0.028167, - -0.082972, - -0.037488, - -0.02482, - 0.041097, - -0.0054088, - 0.044471, - 0.054239, - 0.068185, - -0.02047, - -0.11699, - -0.007344, - 0.059183, - -0.041477, - 0.039009, - -0.0070842, - -0.0070227, - -0.0076182, - 0.0022516, - -0.062561, - 0.04985, - -0.028052, - -0.0153, - -0.13904, - 0.064721, - -0.11115, - 0.063848, - -0.032134, - -0.040548, - 0.061151, - 0.01606, - 0.16811, - 0.062344, - -0.03017, - 0.017347, - 0.083942, - -0.078813, - -0.062059, - 0.012151, - 0.036238, - 0.00036631, - 0.092808, - -0.042331, - 0.096716, - -0.018426, - 0.023654, - -0.050523, - -0.086704, - -0.06842, - -0.080867, - -0.075692, - -0.09426, - 0.11288, - 0.018567, - -0.00024639, - -0.04137, - -0.066584, - -0.087262, - -0.089936, - 0.041144, - -0.065599, - -0.11897, - 0.044973, - -0.13211, - -0.014969, - 0.005831, - -0.042042, - -0.065022, - -0.026818, - 0.0056344, - -0.060566, - -0.044309, - 0.023151, - 0.14069, - -0.017312, - 0.0095428, - -0.015664, - 0.027453, - -0.0070778, - 0.036079, - 0.09985, - 0.12383, - -0.04143, - 0.012013, - -0.13434, - -0.048347, - -0.039053, - -0.055017, - 0.04149, - -0.045131, - 0.060681, - 0.0045168, - -0.0036515, - 0.18539, - -0.026997, - -0.022122, - -0.181, - 0.049213, - 0.14139, - -0.023179, - -0.029533, - 0.038557, - -0.0030765, - 0.022898, - -0.025861, - 0.015805, - 0.074896, - -0.041863, - 0.065342, - -0.018852, - -0.041855, - 0.039619, - 0.014899, - -0.046966, - -0.13981, - 0.024702, - -0.047055, - 0.010664, - -0.043929, - 0.048821, - 0.064769, - -0.020552, - -0.16207, - 0.071088, - 0.037964, - 0.033092, - -0.00080151, - 0.022217, - -0.085915, - 0.12096, - -0.0099749, - -0.085264, - 0.0011288, - 0.045289, - 0.011817, - 0.066819, - 0.027742, - -0.0045972, - -0.053258, - 0.042438, - 0.063979, - 0.002778, - -0.05015, - 0.041263, - 0.087453, - -0.044551, - 0.0037431, - -0.059846, - 0.045432, - 0.015972, - -0.017052, - -0.048813, - -0.046971, - -0.05067, - -0.074945, - -0.0018377, - 0.15216, - 0.084516, - -0.035022, - 0.040422, - -0.015588, - -0.11458, - -0.067305, - 0.015899, - -0.066031, - -0.062923, - 0.026415, - 0.032756, - 0.0081736, - -0.19556, - -0.025306, - 0.12265, - 0.018158, - -0.010815, - 0.012973, - -0.059016, - -0.021929, - 0.043179, - -0.057137, - 0.067956, - 0.0036055, - 0.0086403, - -0.0073407, - 0.1001, - -0.022534, - 0.046, - 0.047051, - -0.035098, - -0.086872, - 0.045335, - 0.068126, - 0.026761, - 0.098364, - 0.17175, - 0.01732, - -0.014437, - 0.061579, - 0.017506, - -0.00090345, - 0.034219, - -0.039676, - -0.15605, - -0.019349, - 0.14184, - -0.039399, - -0.013255, - -0.03272, - 0.011751, - 0.050336, - -0.053125, - 0.007443, - 0.028901, - -0.063304, - -0.055971, - 0.047978, - -0.0059161, - -0.073129, - 0.025493, - -0.012327, - -0.0038792, - 0.066464, - 0.030721, - -0.089448, - -0.046797, - 0.034103, - 0.046303, - 0.065314, - -0.07407, - 0.045968, - -0.0059365, - -0.038657, - -0.10142, - -0.095856, - 0.08909, - 0.029885, - -0.047136, - -0.01857, - -0.034358, - 0.084144, - -0.03848, - 0.1147, - -0.18219, - -0.082153, - 0.12167, - -0.037423, - -0.025087, - 0.12878, - 0.00071899, - 0.007851, - 0.049966, - 0.058819, - 0.027926, - 0.066028, - 0.091011, - 0.017002, - -0.047393, - 0.13733, - -0.042505, - -0.0023529, - 0.00092426, - 0.04254, - -0.041887, - -0.016896, - 0.0079195, - -0.12322, - -0.02223, - 0.058025, - -0.030626, - -0.032436 - ], - "chronicles": [ - -0.01881, - -0.11515, - 0.08283, - 0.02976, - 0.0043565, - -0.021023, - -0.000022111, - -0.10546, - 0.039237, - 0.068691, - 0.043009, - -0.081006, - 0.020205, - 0.023479, - 0.051946, - 0.012602, - 0.076413, - -0.088056, - 0.036536, - 0.040874, - -0.018392, - 0.043291, - -0.011681, - 0.068486, - 0.0066377, - -0.020014, - -0.025121, - 0.014284, - 0.063817, - 0.018509, - 0.010512, - 0.025, - -0.03427, - -0.054086, - 0.0069131, - 0.0085665, - 0.0096626, - 0.0654, - -0.018131, - 0.001624, - 0.023361, - -0.055349, - 0.043881, - 0.061533, - 0.012697, - 0.043411, - 0.019143, - 0.0052734, - -0.0029224, - -0.048851, - -0.016287, - -0.031307, - -0.015654, - -0.029365, - -0.014547, - 0.025664, - -0.039729, - -0.005813, - -0.043715, - 0.0070871, - 0.035029, - -0.041183, - 0.090771, - -0.064968, - 0.094057, - -0.051233, - -0.040556, - 0.078661, - 0.010453, - 0.04653, - -0.025037, - -0.033591, - 0.013935, - -0.022202, - 0.012338, - 0.058343, - 0.0027415, - -0.048836, - -0.015071, - -0.03489, - 0.011818, - -0.00098354, - -0.031184, - -0.0025939, - 0.0026562, - -0.020323, - 0.044343, - 0.010861, - 0.04299, - -0.0087151, - -0.013811, - -0.014481, - -0.05331, - 0.0014897, - -0.0062085, - 0.036266, - 0.020977, - 0.012525, - 0.041734, - -0.0077527, - -0.0040994, - -0.036212, - 0.027454, - 0.0076324, - 0.030815, - -0.043892, - 0.037511, - -0.041078, - 0.013798, - 0.033279, - -0.023793, - 0.020203, - 0.021352, - 0.011929, - -0.058379, - 0.046147, - 0.018212, - 0.04333, - -0.023581, - 0.031051, - -0.044838, - -0.023663, - 0.035615, - 0.051401, - 0.096761, - -0.029947, - 0.0053472, - -0.004461, - 0.0017858, - 0.12264, - 0.015213, - 0.060631, - -0.0030735, - -0.026905, - 0.049313, - -0.0082423, - 0.025546, - 0.035689, - 0.02478, - -0.073658, - 0.048985, - -0.031621, - 0.016449, - -0.010659, - -0.018484, - -0.03601, - 0.019775, - -0.01744, - -0.044264, - -0.041455, - 0.020754, - 0.040119, - 0.011332, - -0.048084, - 0.0025032, - 0.0055115, - 0.014936, - 0.055697, - -0.00071538, - -0.013518, - 0.0084, - 0.052646, - 0.00090363, - -0.02746, - -0.065597, - 0.028247, - 0.016827, - -0.027087, - 0.054081, - 0.021891, - -0.011357, - -0.013399, - 0.0056734, - 0.02834, - 0.012644, - -0.0075185, - -0.026109, - -0.015407, - -0.0194, - 0.035774, - 0.073271, - -0.0072881, - 0.0062901, - -0.031187, - -0.023744, - -0.0017648, - 0.043517, - 0.051142, - 0.018082, - 0.0097015, - 0.0010466, - 0.030346, - -0.10741, - 0.0032065, - -0.026574, - 0.045062, - -0.044392, - 0.028485, - -0.0030725, - -0.0074677, - -0.10127, - 0.026433, - -0.024406, - -0.032454, - 0.01977, - 0.02203, - 0.015753, - 0.065415, - 0.022037, - -0.050274, - 0.064191, - 0.035815, - -0.0028437, - 0.056273, - -0.0095832, - -0.0020951, - -0.022781, - 0.019428, - -0.040013, - 0.047039, - 0.015458, - -0.038702, - 0.029174, - 0.065808, - 0.05353, - -0.0049795, - 0.10341, - 0.05417, - -0.078032, - 0.04793, - -0.0025098, - -0.085569, - -0.015707, - 0.048506, - 0.062736, - -0.012585, - 0.025092, - 0.0063222, - 0.019884, - -0.0074183, - 0.050332, - 0.032105, - 0.013572, - -0.038389, - -0.054258, - -0.042416, - -0.036521, - -0.010675, - 0.014063, - 0.026494, - 0.077368, - -0.0096738, - 0.02973, - -0.014535, - -0.047446, - 0.009879, - 0.010255, - 0.035293, - 0.033558, - 0.023594, - 0.006133, - -0.019232, - 0.0044611, - -0.069743, - 0.076525, - -0.035001, - -0.041889, - 0.012835, - 0.044613, - -0.0040364, - 0.04592, - 0.0516, - -0.070426, - 0.031529, - 0.015941, - -0.018416, - -0.080606, - -0.0037167, - -0.026993, - 0.031119, - 0.0022053, - -0.030831, - 0.034531, - -0.026569, - -0.038013, - 0.044603, - -0.018485, - 0.024234, - -0.014876, - 0.00064183, - -0.0032285, - 0.0074054, - -0.0042344, - -0.0011264, - -0.013031, - -0.0022372, - 0.036426, - 0.043963, - -0.0018334, - 0.028337 - ], - "temperature": [ - -0.076274, - 0.0012008, - 0.0040631, - -0.0010638, - 0.05951, - -0.033355, - -0.010622, - -0.047674, - 0.051845, - 0.022626, - -0.036086, - -0.032708, - -0.0075605, - 0.039553, - 0.019765, - -0.0018266, - 0.052876, - 0.038792, - 0.028995, - 0.023375, - 0.033842, - 0.011777, - 0.023598, - 0.047515, - 0.043652, - 0.043559, - -0.0080636, - -0.0076795, - -0.0031567, - 0.019911, - 0.025349, - 0.039793, - 0.052089, - -0.058582, - -0.027761, - 0.037098, - 0.036422, - 0.0072602, - -0.01706, - 0.075218, - -0.00015573, - -0.090499, - -0.038283, - -0.021537, - -0.0073169, - -0.00009156, - 0.02924, - -0.028864, - -0.035834, - 0.054893, - 0.00048001, - 0.032069, - 0.01142, - 0.022404, - -0.034034, - 0.06341, - 0.036147, - 0.0092188, - -0.010146, - -0.015072, - 0.069584, - 0.0036388, - 0.053047, - -0.045432, - 0.046902, - -0.010392, - 0.055521, - -0.014085, - 0.0068942, - 0.0273, - 0.021527, - 0.03656, - 0.0092749, - 0.010848, - -0.064097, - -0.022496, - -0.047035, - -0.05686, - -0.066618, - 0.039635, - -0.053307, - -0.044643, - -0.022589, - 0.03635, - -0.012826, - 0.027067, - 0.03068, - -0.044031, - -0.011751, - -0.032724, - -0.036514, - -0.015029, - -0.050396, - -0.012655, - -0.042596, - 0.026804, - -0.012188, - 0.090305, - 0.010071, - -0.038324, - -0.0030736, - -0.021469, - -0.0088893, - 0.033541, - 0.035425, - -0.027176, - -0.016614, - -0.049303, - 0.014451, - 0.019432, - 0.017196, - 0.039634, - 0.045309, - -0.052336, - 0.034899, - -0.062355, - 0.026739, - 0.0022299, - -0.012103, - 0.020116, - 0.0030093, - -0.0064302, - 0.0046999, - -0.032824, - 0.031314, - -0.01115, - 0.024483, - -0.08586, - -0.009522, - 0.069249, - 0.035025, - -0.079147, - 0.027761, - -0.017919, - -0.041017, - 0.0062269, - 0.055302, - 0.037162, - -0.011152, - 0.03895, - 0.061764, - -0.016718, - -0.001092, - -0.041995, - 0.0050422, - -0.010935, - -0.0019425, - -0.024844, - -0.043452, - 0.049972, - -0.033574, - 0.031363, - -0.024714, - -0.04532, - 0.0098006, - 0.069483, - -0.053444, - -0.0074289, - -0.019873, - 0.014352, - 0.02372, - -0.014495, - -0.074138, - 0.0080214, - 0.023328, - 0.010463, - -0.054581, - 0.01261, - 0.0071168, - 0.027158, - -0.061279, - 0.02432, - -0.051284, - -0.022506, - 0.029676, - 0.067263, - -0.037591, - -0.0026212, - -0.010566, - -0.029558, - -0.015461, - 0.042288, - -0.060403, - -0.052849, - 0.012249, - -0.050978, - 0.022794, - 0.077931, - -0.01575, - 0.012128, - 0.031533, - -0.02087, - -0.017019, - 0.0069528, - 0.011645, - -0.011659, - 0.031654, - 0.017989, - -0.002798, - 0.01104, - -0.10125, - 0.013552, - -0.035185, - -0.015583, - 0.026266, - -0.013555, - 0.010411, - -0.0040325, - -0.06816, - -0.00028808, - 0.056796, - -0.049225, - 0.011183, - 0.034914, - 0.044212, - 0.049502, - 0.033996, - 0.0041679, - -0.022508, - -0.042465, - -0.012895, - 0.018762, - 0.041173, - 0.070071, - 0.051073, - 0.010833, - -0.012176, - 0.041414, - -0.020401, - -0.016321, - -0.0091838, - -0.042993, - -0.042458, - 0.029894, - 0.0062419, - 0.011965, - 0.03967, - 0.023453, - 0.058908, - 0.01149, - 0.036121, - 0.0084814, - 0.01244, - -0.0056379, - -0.04656, - 0.02601, - 0.014273, - -0.028285, - 0.0020895, - -0.076141, - 0.04461, - -0.032583, - -0.046557, - -0.0051796, - 0.019486, - -0.030477, - 0.022284, - 0.032884, - 0.0082871, - -0.049065, - 0.021917, - 0.0057324, - -0.0071583, - -0.022004, - -0.085675, - -0.03773, - -0.021778, - 0.011022, - -0.02685, - -0.0085018, - -0.053407, - 0.054014, - -0.085943, - -0.03575, - 0.033682, - 0.01057, - -0.028741, - -0.0068924, - -0.0016777, - -0.030567, - 0.067325, - -0.019451, - 0.044315, - 0.016804, - 0.039866, - 0.027435, - -0.029661, - 0.071844, - -0.010899, - 0.070481, - -0.085647, - 0.05106, - -0.03298, - -0.041321, - -0.025558, - -0.014758, - -0.019293, - -0.023656, - 0.066, - 0.011522 - ], - "bottle": [ - -0.039732, - -0.034281, - -0.027937, - 0.0097236, - 0.011888, - 0.014607, - 0.12229, - -0.11517, - -0.021276, - -0.011523, - 0.010566, - -0.013702, - 0.017856, - 0.028765, - 0.033749, - -0.064996, - 0.056519, - 0.0090978, - 0.030851, - 0.085926, - 0.050518, - 0.092816, - -0.043424, - 0.020932, - 0.05288, - -0.15519, - 0.016304, - 0.08931, - 0.0025014, - -0.0056591, - -0.036014, - 0.044635, - 0.046517, - -0.029087, - -0.043237, - -0.059198, - 0.0016893, - -0.047651, - -0.015577, - -0.049275, - 0.083122, - -0.11043, - -0.016165, - -0.066919, - 0.033662, - 0.018696, - 0.022172, - 0.11098, - -0.015989, - 0.052052, - -0.016922, - -0.050501, - 0.050404, - -0.047493, - -0.11558, - 0.012005, - 0.044523, - -0.019459, - -0.089742, - -0.028366, - 0.025742, - -0.031749, - 0.14009, - -0.013105, - 0.037545, - 0.11635, - -0.031611, - 0.016708, - 0.021998, - -0.010937, - 0.0645, - 0.034401, - 0.017453, - 0.0104, - -0.013166, - -0.053966, - -0.018537, - -0.01667, - -0.021734, - 0.074543, - -0.063625, - -0.13043, - -0.059998, - 0.077933, - -0.081627, - -0.059835, - 0.050596, - -0.072466, - -0.060491, - -0.050689, - 0.094529, - 0.020378, - -0.10268, - 0.028941, - 0.056244, - 0.069352, - 0.071145, - 0.01535, - 0.028924, - -0.026869, - -0.078537, - -0.015827, - -0.021942, - 0.0043129, - -0.0015752, - -0.11033, - -0.066159, - 0.024679, - 0.0085629, - 0.12966, - 0.089118, - 0.075967, - 0.099239, - 0.033603, - 0.026762, - -0.081463, - 0.049569, - -0.1173, - -0.046367, - 0.019609, - -0.028803, - -0.015752, - -0.0068178, - -0.082111, - 0.013481, - -0.039126, - 0.0070988, - -0.13361, - -0.010149, - 0.04808, - -0.08327, - -0.0034057, - -0.0017059, - -0.012149, - -0.024849, - -0.092451, - -0.040574, - 0.054089, - 0.082383, - 0.012002, - 0.08892, - -0.028156, - 0.046503, - -0.07165, - -0.032519, - -0.010932, - 0.053978, - 0.058554, - -0.10845, - -0.041001, - -0.045697, - 0.037427, - 0.04278, - -0.014273, - -0.022125, - -0.014505, - -0.03345, - -0.071846, - 0.022977, - -0.051642, - 0.052472, - -0.017326, - -0.050937, - 0.039954, - 0.027695, - 0.0555, - -0.070329, - -0.074086, - -0.014156, - -0.034519, - 0.032073, - 0.11834, - -0.098987, - 0.078757, - -0.0027787, - 0.042097, - -0.090104, - 0.00047801, - 0.044248, - -0.018633, - -0.043263, - -0.040277, - 0.015815, - -0.1268, - 0.0071887, - -0.052478, - -0.00513, - 0.1554, - 0.10544, - -0.034343, - 0.07683, - -0.003709, - -0.019995, - -0.00080468, - 0.047361, - -0.037593, - 0.046317, - 0.0038372, - -0.0031026, - 0.06213, - -0.15213, - 0.10127, - 0.065517, - 0.025032, - 0.037795, - 0.044019, - 0.017194, - 0.032757, - -0.02314, - -0.049931, - 0.15584, - -0.012417, - 0.011573, - 0.051356, - 0.0089267, - -0.012569, - -0.060704, - 0.017463, - 0.0053858, - -0.057738, - -0.004056, - 0.021509, - 0.045006, - 0.10194, - -0.0085031, - 0.021888, - -0.062691, - -0.017501, - 0.013364, - -0.03005, - 0.043067, - -0.058992, - -0.022921, - -0.099861, - -0.026696, - 0.051852, - -0.053088, - -0.063713, - 0.07147, - -0.045783, - 0.060437, - 0.038432, - 0.0045479, - 0.018332, - -0.024223, - -0.028456, - -0.018018, - 0.049263, - -0.077834, - 0.0031156, - -0.034083, - 0.0013488, - -0.01076, - 0.074494, - -0.027462, - -0.038039, - -0.014772, - 0.020861, - 0.0021774, - 0.032568, - 0.075832, - -0.04953, - 0.013771, - -0.096447, - -0.060174, - -0.043245, - 0.076944, - -0.039439, - 0.06002, - 0.079391, - -0.014124, - 0.12167, - -0.1077, - -0.058508, - 0.017068, - -0.041775, - -0.10775, - 0.062576, - 0.023756, - 0.028639, - 0.090571, - 0.019018, - -0.0028936, - 0.0085241, - -0.033574, - 0.018162, - -0.046417, - 0.046369, - 0.0013233, - -0.088203, - -0.01765, - 0.10013, - -0.037025, - -0.03106, - -0.097488, - -0.0025546, - 0.074151, - -0.073997, - -0.042724, - -0.014196 - ], - "mother": [ - -0.040542, - 0.0037815, - 0.037694, - -0.03956, - 0.060769, - -0.015551, - 0.014961, - -0.10613, - 0.064939, - -0.0047997, - 0.014457, - 0.028098, - -0.021121, - 0.020109, - -0.067511, - 0.0055508, - 0.070244, - -0.036501, - 0.013003, - 0.08354, - -0.020305, - 0.012357, - 0.0012729, - 0.031512, - -0.0075754, - 0.051508, - 0.011297, - 0.069618, - 0.019666, - 0.0060435, - 0.035043, - -0.030266, - -0.019338, - 0.023315, - -0.065477, - 0.030704, - -0.05459, - -0.077555, - 0.060421, - -0.0088144, - -0.023961, - -0.056838, - 0.052892, - -0.083105, - 0.0088735, - 0.040777, - -0.0016624, - 0.027278, - -0.028099, - 0.015522, - 0.046849, - -0.016635, - 0.016398, - 0.016433, - 0.020812, - -0.059249, - 0.017641, - -0.079049, - -0.081696, - -0.0061906, - -0.049437, - -0.017143, - 0.11429, - 0.0084006, - 0.020453, - -0.021927, - 0.021042, - -0.022703, - -0.057198, - -0.10369, - 0.011867, - 0.024992, - 0.097841, - -0.043289, - -0.010639, - 0.014016, - 0.019073, - 0.0028136, - 0.030172, - -0.010008, - 0.030439, - 0.040405, - -0.010641, - 0.033303, - -0.034311, - -0.0019377, - 0.016644, - 0.029802, - -0.048233, - 0.0082147, - -0.027784, - 0.013301, - -0.13464, - -0.069314, - 0.025008, - 0.14018, - 0.018252, - -0.0016942, - 0.03548, - -0.032224, - 0.025833, - -0.043126, - -0.023867, - -0.026604, - -0.062072, - -0.15197, - 0.024997, - 0.011867, - -0.0067426, - 0.049186, - -0.018619, - 0.094505, - 0.048463, - -0.016458, - -0.0041054, - 0.030107, - -0.017523, - 0.0076886, - 0.021817, - -0.0016248, - -0.039113, - 0.030312, - 0.021958, - -0.060852, - 0.072429, - -0.031012, - 0.045016, - -0.12311, - 0.0693, - 0.071356, - -0.023569, - 0.007787, - -0.034701, - -0.012359, - -0.069032, - -0.011944, - -0.0018743, - 0.096057, - 0.054057, - -0.011258, - 0.04872, - 0.0096946, - 0.010099, - 0.014329, - 0.017035, - 0.012143, - 0.012212, - 0.077818, - -0.036306, - -0.036101, - -0.02271, - 0.017264, - -0.01141, - -0.085026, - -0.0036633, - -0.048058, - 0.043728, - 0.00042374, - 0.062565, - -0.031199, - 0.017809, - -0.020377, - -0.014009, - -0.0001492, - -0.0080678, - -0.013839, - -0.015428, - 0.014995, - -0.034221, - 0.018597, - -0.041768, - 0.0075902, - -0.059237, - -0.017185, - 0.051932, - 0.017419, - 0.061345, - 0.010507, - -0.010221, - -0.024525, - 0.062889, - -0.060457, - -0.03447, - -0.03226, - 0.0072123, - -0.11032, - -0.015045, - 0.094446, - 0.052505, - -0.045333, - -0.0092792, - 0.13012, - -0.059349, - -0.021455, - 0.016279, - 0.010367, - 0.053001, - 0.081545, - 0.0068802, - -0.017563, - -0.11393, - 0.082994, - -0.0028419, - -0.090207, - 0.016602, - 0.058066, - -0.046477, - -0.076538, - 0.031951, - -0.063508, - 0.11506, - 0.007717, - 0.036103, - 0.013862, - -0.094776, - 0.0079566, - 0.0042452, - -0.038181, - 0.031248, - 0.018633, - 0.069938, - 0.0035548, - -0.00062251, - 0.12662, - 0.054383, - -0.0035615, - -0.018826, - 0.060642, - -0.015672, - -0.066898, - 0.023219, - -0.035766, - -0.071087, - -0.031458, - 0.06674, - 0.077006, - 0.023093, - 0.0084103, - -0.011546, - -0.057892, - 0.062913, - -0.035563, - 0.00021676, - 0.031077, - -0.015872, - -0.010172, - -0.037728, - -0.042432, - 0.01831, - 0.042301, - 0.041709, - -0.035473, - 0.013802, - 0.049066, - 0.11422, - -0.039525, - -0.017847, - 0.023093, - 0.0042645, - -0.0092686, - -0.071302, - -0.00031565, - -0.0020591, - 0.018221, - 0.1093, - 0.0048808, - -0.052926, - 0.06134, - 0.03581, - -0.0057483, - -0.057124, - 0.077963, - -0.10853, - -0.037094, - 0.06154, - -0.010223, - -0.041365, - -0.017662, - 0.03282, - 0.02497, - 0.072242, - 0.0061357, - 0.017242, - -0.034892, - 0.018063, - 0.14014, - -0.022958, - -0.095024, - 0.019653, - 0.025675, - 0.00076026, - 0.04532, - -0.053714, - -0.041419, - -0.0080406, - 0.00056948, - 0.078543, - 0.023833, - 0.028621, - 0.035317 - ], - "science-based": [ - -0.077876, - -0.023471, - -0.071418, - 0.043544, - -0.010202, - -0.059682, - 0.0061415, - -0.063672, - -0.01166, - 0.062404, - -0.0058285, - -0.027174, - 0.028064, - 0.00061545, - 0.040397, - -0.0019332, - 0.075589, - 0.039806, - 0.043874, - 0.021572, - -0.012664, - 0.01381, - 0.048438, - 0.045765, - -0.036568, - -0.034166, - -0.011644, - 0.05255, - 0.031822, - 0.0095575, - 0.0057916, - -0.027416, - 0.044094, - -0.066668, - 0.070259, - 0.024913, - -0.042379, - -0.033519, - 0.033457, - 0.03027, - -0.024701, - -0.10311, - 0.0045551, - 0.022378, - 0.0038919, - -0.064866, - -0.011529, - 0.062939, - 0.0019334, - -0.0019707, - -0.036934, - 0.035289, - 0.0075651, - 0.014606, - -0.0027386, - -0.0033959, - 0.035427, - 0.030917, - 0.020075, - 0.035587, - 0.018787, - -0.0064954, - 0.087296, - -0.0047529, - 0.038307, - -0.030175, - -0.0032518, - -0.0030243, - 0.03518, - 0.0034264, - 0.046436, - 0.0041619, - 0.017228, - 0.048408, - 0.016001, - 0.046391, - -0.012066, - -0.050892, - 0.038686, - -0.0089719, - -0.0045492, - 0.016246, - 0.002402, - -0.0020956, - -0.022734, - 0.044428, - -0.0046941, - 0.0042153, - 0.038292, - 0.011458, - 0.045742, - 0.041471, - -0.077981, - 0.0085682, - -0.0034708, - 0.045795, - 0.067, - 0.024569, - -0.027268, - 0.01142, - -0.038734, - -0.021866, - -0.017306, - -0.016985, - -0.036552, - -0.059196, - 0.050912, - 0.027983, - -0.026551, - 0.0031231, - -0.033897, - 0.052724, - 0.021581, - 0.028219, - -0.014296, - -0.0034252, - 0.021425, - 0.010612, - -0.03694, - -0.016966, - -0.034985, - -0.0050747, - -0.053923, - -0.020998, - 0.04851, - -0.0091599, - -0.077933, - 0.021108, - 0.0022111, - 0.050938, - -0.023409, - 0.026169, - -0.021156, - -0.021738, - 0.0024664, - -0.0021123, - 0.016346, - -0.0069755, - 0.014459, - 0.0068731, - 0.042501, - -0.064871, - -0.009777, - -0.010801, - -0.018217, - -0.034655, - -0.020467, - 0.0059133, - 0.005227, - 0.0077806, - 0.050887, - 0.083132, - -0.0045252, - -0.017786, - 0.033248, - 0.058142, - 0.0097863, - -0.025498, - 0.022299, - -0.035604, - 0.013449, - 0.017919, - -0.040149, - 0.011803, - -0.0084587, - 0.018881, - -0.032965, - 0.030079, - -0.018822, - -0.039726, - 0.0036497, - 0.00223, - 0.02442, - -0.026276, - 0.022659, - 0.033959, - -0.021178, - 0.051899, - -0.022334, - 0.01663, - -0.0014434, - 0.017304, - 0.022815, - 0.017053, - 0.035048, - -0.011365, - 0.022186, - 0.086224, - -0.0578, - -0.0025057, - -0.012479, - 0.069284, - 0.076697, - -0.029549, - 0.043495, - -0.021103, - -0.02726, - 0.013673, - 0.0026445, - -0.031504, - -0.083057, - 0.031736, - 0.015174, - -0.01536, - -0.0088869, - 0.0074431, - 0.0074937, - -0.0045689, - -0.0061516, - 0.0057459, - 0.08383, - 0.0094929, - 0.0029896, - 0.023841, - -0.0047817, - -0.0040266, - 0.054093, - -0.017964, - -0.055836, - -0.014747, - -0.043107, - 0.027807, - -0.046976, - 0.052828, - -0.031248, - -0.032991, - 0.019027, - 0.074819, - 0.045388, - -0.049573, - -0.022269, - -0.037668, - 0.0127, - 0.0139, - 0.002447, - 0.019334, - 0.0015311, - 0.00097201, - 0.014308, - 0.010989, - 0.029614, - -0.010813, - 0.049846, - 0.015896, - -0.090114, - 0.04455, - -0.01402, - -0.0092278, - -0.0011612, - -0.0066675, - 0.042426, - 0.0010849, - 0.034788, - -0.064205, - -0.031155, - 0.03132, - -0.018747, - -0.031214, - 0.032555, - 0.0050509, - 0.027033, - 0.069443, - 0.02551, - 0.021241, - 0.0026725, - 0.032724, - 0.062897, - 0.026616, - 0.069526, - 0.012032, - -0.0021327, - 0.047438, - -0.067877, - -0.023872, - -0.049894, - -0.045902, - -0.0094634, - 0.0040798, - -0.023838, - -0.034532, - 0.10954, - -0.021994, - -0.016778, - 0.016944, - -0.061472, - -0.011102, - -0.017034, - -0.015707, - 0.0049237, - -0.040011, - -0.036101, - 0.025697, - 0.043882, - -0.0014409, - -0.024047, - 0.011603, - -0.0017294, - -0.0012039, - -0.0051941, - 0.0011962 - ], - "organization": [ - 0.035051, - -0.025832, - -0.0030111, - -0.010509, - -0.019116, - -0.02606, - 0.0026812, - -0.06963, - 0.0083529, - -0.017423, - -0.0043746, - -0.043065, - -0.011877, - 0.0098355, - -0.0027228, - 0.043494, - 0.067146, - -0.00023723, - 0.045771, - -0.0032966, - -0.026272, - 0.027719, - 0.035887, - 0.067255, - -0.03529, - 0.024589, - -0.015376, - -0.010068, - -0.011401, - 0.0015443, - -0.0034444, - -0.0020414, - -0.0025809, - -0.042042, - -0.021108, - 0.029497, - -0.0098862, - 0.0075759, - 0.0071682, - -0.031637, - -0.024316, - -0.072937, - 0.04059, - -0.0019373, - 0.033313, - 0.0024515, - 0.032119, - -0.0076254, - -0.0095786, - -0.018272, - 0.021932, - 0.010928, - 0.010343, - 0.037789, - -0.016054, - 0.043497, - -0.010231, - -0.013009, - 0.010832, - 0.047762, - 0.011087, - -0.031923, - 0.060464, - -0.030993, - 0.054432, - -0.023542, - 0.029212, - -0.020645, - 0.05519, - -0.013966, - -0.0061227, - 0.00084153, - -0.0037089, - -0.012442, - 0.041202, - -0.012462, - -0.013653, - -0.0023218, - -0.006337, - -0.025355, - -0.01163, - 0.033292, - -0.039815, - 0.0074957, - 0.00024464, - -0.027002, - -0.02464, - -0.017926, - 0.039361, - 0.028063, - -0.0047637, - 0.051755, - -0.039999, - -0.012357, - -0.015764, - 0.056962, - -0.018303, - 0.00049841, - 0.075311, - 0.032046, - -0.017975, - 0.008508, - 0.029307, - -0.0033526, - 0.015903, - -0.055692, - 0.019832, - -0.0079334, - -0.017433, - -0.0011218, - -0.012958, - 0.064175, - 0.019759, - 0.017065, - 0.016222, - -0.0049322, - -0.020304, - -0.034406, - -0.02172, - 0.014042, - -0.014966, - -0.026259, - 0.042013, - 0.014135, - 0.044481, - -0.00040844, - 0.0036559, - -0.064686, - 0.041954, - 0.073325, - -0.015397, - 0.0038147, - 0.011404, - -0.00052834, - 0.0034176, - 0.01556, - 0.012426, - 0.0085787, - 0.012049, - -0.0034536, - -0.022728, - 0.0052585, - -0.014245, - -0.00026468, - -0.010587, - 0.0084409, - -0.012447, - -0.019788, - 0.0078778, - 0.019614, - 0.040342, - 0.028065, - -0.01967, - -0.058817, - 0.0044468, - 0.011296, - -0.018727, - -0.011855, - 0.025489, - -0.01507, - -0.0025268, - -0.017841, - -0.026289, - 0.013715, - 0.0058002, - 0.0071938, - -0.017167, - -0.011111, - -0.0084454, - 0.025436, - 0.0004222, - -0.0109, - 0.012676, - 0.033537, - -0.0096474, - 0.028315, - -0.02022, - 0.041844, - -0.013746, - -0.01482, - -0.048139, - 0.0080066, - 0.046848, - 0.049553, - -0.037703, - -0.041078, - -0.016881, - 0.056274, - 0.0057982, - -0.037978, - 0.003425, - 0.062157, - -0.011528, - -0.029856, - 0.00044286, - -0.012811, - 0.0094797, - -0.0038398, - 0.0064906, - -0.024437, - -0.099658, - 0.026963, - 0.022907, - 0.022255, - -0.012043, - -0.020761, - -0.028337, - -0.0065432, - -0.010789, - -0.019746, - 0.062733, - 0.0065863, - -0.00085453, - 0.0080343, - -0.043133, - -0.00036306, - 0.024718, - 0.015587, - 0.024197, - 0.019115, - -0.034853, - -0.032852, - -0.01787, - 0.081574, - -0.029549, - -0.010168, - 0.030665, - 0.021157, - 0.013621, - -0.00065489, - 0.019394, - -0.022362, - -0.040977, - -0.01292, - -0.0098293, - -0.014416, - 0.021284, - -0.013795, - 0.0014219, - -0.0017264, - 0.044844, - -0.013831, - 0.044406, - -0.0044555, - 0.0089327, - -0.027711, - 0.004583, - -0.004903, - 0.030551, - -0.0080813, - 0.0051428, - 0.026112, - 0.0070336, - -0.0064024, - -0.0079433, - 0.019314, - -0.042162, - 0.047074, - 0.0026021, - 0.014459, - 0.00059752, - 0.041304, - -0.0030165, - 0.0014219, - 0.035518, - 0.011549, - -0.026215, - 0.0075953, - -0.020094, - 0.039598, - -0.0089689, - 0.054511, - -0.06707, - -0.015049, - 0.019501, - 0.0015538, - -0.04818, - -0.0058991, - -0.047051, - 0.015982, - 0.037047, - -0.030661, - 0.0091057, - -0.000679, - 0.0019923, - -0.02057, - -0.011975, - -0.038121, - -0.033451, - -0.0010092, - -0.0026802, - 0.030825, - 0.0085442, - -0.035958, - -0.012247, - -0.0069249, - -0.024622, - 0.012088, - -0.059652, - -0.0067414 - ], - "model": [ - 0.053696, - -0.059977, - 0.022859, - 0.050561, - -0.040735, - -0.085611, - -0.00053064, - -0.13218, - -0.026865, - -0.014773, - 0.067204, - -0.02027, - -0.0061676, - -0.043208, - -0.038337, - 0.063926, - 0.13924, - 0.042392, - 0.088197, - 0.072699, - 0.0013805, - -0.011371, - -0.01136, - 0.098799, - 0.067411, - -0.041168, - -0.043292, - -0.021016, - -0.030804, - 0.059503, - -0.06414, - 0.022587, - 0.014131, - -0.084164, - -0.0000024113, - -0.048188, - 0.066017, - -0.11685, - 0.020231, - 0.0046122, - 0.00060133, - -0.14496, - -0.080946, - -0.023518, - -0.061394, - 0.0044551, - -0.0023666, - -0.017192, - 0.030277, - -0.042501, - 0.0025668, - -0.015904, - -0.043147, - 0.00073826, - -0.0475, - -0.13454, - 0.071275, - -0.019117, - -0.052325, - -0.047786, - 0.030908, - -0.031823, - 0.13673, - 0.02416, - 0.11279, - -0.015124, - 0.0090202, - 0.036515, - -0.010919, - -0.02478, - -0.022825, - -0.031987, - -0.049539, - -0.084261, - 0.059917, - -0.042378, - -0.0093961, - -0.048259, - -0.013555, - -0.039475, - 0.047939, - 0.026487, - -0.022903, - 0.057901, - 0.035728, - -0.019463, - -0.058007, - -0.010414, - 0.0076822, - 0.0060442, - 0.041465, - -0.0068888, - -0.096876, - -0.011598, - 0.0079327, - 0.11063, - 0.083506, - -0.040457, - 0.018031, - 0.015028, - 0.051456, - -0.077855, - 0.010849, - -0.0055399, - -0.11258, - -0.11161, - 0.065371, - -0.034772, - -0.048417, - 0.050146, - 0.022306, - 0.070723, - 0.064882, - -0.012297, - 0.016357, - -0.16682, - -0.010988, - 0.018343, - -0.051746, - -0.0071391, - 0.025721, - -0.00076868, - 0.0030496, - -0.031193, - 0.11589, - 0.04993, - 0.025237, - -0.069471, - 0.13578, - 0.12909, - 0.0088903, - -0.033683, - 0.013368, - -0.0090691, - 0.0027368, - -0.0026293, - 0.017345, - 0.0069295, - 0.03703, - -0.082477, - 0.017111, - -0.010832, - 0.065532, - 0.0074264, - -0.032706, - -0.018838, - -0.00414, - -0.011337, - 0.033951, - 0.0031766, - 0.04145, - 0.037124, - 0.071066, - -0.13525, - -0.010576, - 0.029905, - -0.052975, - 0.031784, - -0.049224, - -0.033741, - 0.015023, - -0.012556, - -0.073298, - -0.019392, - 0.0052928, - -0.035059, - 0.0084864, - 0.041396, - -0.020274, - 0.043529, - -0.033542, - -0.0084085, - -0.051886, - -0.076991, - -0.040713, - 0.051643, - -0.099401, - 0.070404, - -0.062184, - 0.026842, - 0.012421, - -0.033273, - 0.013779, - -0.017705, - 0.070639, - 0.023448, - -0.04268, - 0.078407, - -0.0019626, - 0.056805, - -0.007817, - 0.11678, - -0.039637, - -0.056406, - 0.047641, - -0.062497, - 0.0084422, - 0.07743, - 0.025984, - 0.031786, - -0.19716, - 0.079246, - 0.046256, - 0.00073547, - 0.017536, - 0.045852, - 0.025995, - -0.058323, - -0.027877, - -0.041591, - 0.16603, - -0.024874, - 0.0042722, - -0.026513, - -0.076269, - 0.086347, - 0.019574, - -0.026396, - -0.0015079, - -0.0030701, - -0.076439, - -0.053852, - -0.016032, - 0.1059, - 0.033674, - -0.020135, - 0.058674, - 0.051927, - 0.019486, - 0.086206, - -0.010185, - -0.091057, - -0.038668, - 0.011314, - 0.019778, - 0.067277, - 0.071946, - -0.001025, - 0.0098805, - 0.044524, - 0.12743, - -0.0037685, - 0.025744, - 0.046788, - -0.0037645, - -0.025615, - -0.018027, - 0.032313, - -0.0037404, - 0.026215, - 0.074065, - 0.011683, - 0.024169, - 0.019127, - 0.044548, - 0.0041317, - 0.063891, - 0.067819, - 0.010559, - 0.017577, - 0.036733, - 0.015647, - -0.03639, - -0.034953, - 0.042733, - -0.020024, - -0.014157, - -0.00021821, - 0.012634, - 0.027924, - -0.028805, - 0.12811, - -0.12971, - -0.034538, - -0.01067, - -0.003763, - -0.068468, - -0.0057857, - 0.051491, - 0.038135, - 0.10607, - 0.05303, - -0.069741, - 0.055198, - -0.052556, - -0.06683, - -0.10707, - 0.0059503, - -0.038975, - 0.025635, - -0.098365, - 0.0024512, - 0.023901, - -0.07753, - 0.038039, - 0.017609, - 0.016497, - -0.037784, - 0.028141, - 0.0032248 - ], - "business-to-business": [ - 0.0042007, - -0.019562, - -0.006598, - -0.024952, - -0.041977, - -0.00014583, - -0.016353, - -0.047766, - 0.012453, - 0.043336, - 0.009884, - -0.053903, - -0.039398, - -0.0018183, - -0.012263, - 0.05097, - 0.036324, - 0.0021203, - 0.035718, - -0.0017946, - 0.0087437, - 0.0052376, - 0.044673, - 0.036704, - -0.011381, - 0.015903, - -0.0037806, - 0.035065, - -0.0014485, - -0.0053233, - -0.0086491, - 0.0062437, - -0.017144, - -0.065573, - 0.049715, - 0.028275, - -0.014527, - 0.037529, - 0.019419, - 0.017972, - -0.027808, - -0.063427, - -0.0091841, - 0.0063347, - -0.041153, - -0.024162, - -0.027178, - 0.012345, - -0.013012, - -0.0064186, - -0.011621, - -0.062666, - 0.010849, - 0.01861, - -0.0027223, - -0.012603, - -0.018349, - 0.019801, - -0.024533, - 0.0033719, - -0.013354, - 0.021966, - 0.038213, - -0.028765, - -0.0030289, - 0.0016059, - -0.0058401, - -0.025313, - 0.0027979, - -0.02651, - -0.044571, - -0.010054, - 0.011228, - -0.006525, - -0.0054536, - 0.0040308, - -0.032075, - -0.018971, - -0.0043877, - -0.022784, - 0.0070359, - -0.013277, - -0.047471, - -0.00209, - 0.00076312, - -0.024493, - -0.018964, - 0.0029739, - 0.036149, - 0.0042956, - -0.0031257, - 0.04506, - -0.058389, - 0.031917, - -0.013637, - 0.039766, - 0.0083997, - -0.010897, - -0.013733, - -0.020212, - -0.010023, - 0.011373, - -0.069024, - -0.02234, - 0.00076228, - -0.016794, - 0.013223, - 0.0401, - 0.011427, - -0.0033099, - -0.01496, - 0.034891, - 0.014905, - 0.011103, - -0.019639, - -0.021971, - -0.025074, - -0.016775, - -0.0038438, - 0.0050842, - -0.03316, - -0.0039773, - 0.01972, - -0.0098572, - 0.031192, - -0.03187, - -0.021761, - -0.039738, - 0.032838, - 0.033783, - 0.0052594, - 0.011998, - -0.035487, - -0.028569, - 0.016403, - 0.022196, - 0.047376, - -0.0097317, - -0.020478, - -0.00049146, - 0.027247, - -0.0071974, - -0.024075, - -0.025473, - -0.038187, - 0.0051558, - -0.019943, - -0.024026, - -0.014238, - -0.00085714, - 0.038012, - 0.092033, - 0.0057568, - -0.0082766, - 0.0022701, - 0.031467, - -0.020593, - -0.0039585, - 0.030918, - 0.019686, - 0.027901, - 0.010872, - -0.03595, - 0.044993, - 0.019648, - 0.0030746, - -0.0085232, - -0.019075, - -0.016962, - -0.0042505, - -0.012433, - 0.010638, - -0.027424, - 0.019226, - -0.014078, - 0.023529, - -0.030175, - 0.016514, - -0.031894, - 0.0072776, - 0.037978, - 0.0027723, - 0.014417, - 0.015483, - -0.011167, - -0.042529, - -0.018078, - 0.080107, - -0.028486, - -0.0070911, - -0.053282, - 0.01402, - 0.041809, - -0.0097774, - -0.000063485, - -0.027413, - 0.014358, - -0.048085, - 0.036923, - 0.0076608, - -0.070177, - 0.025964, - -0.0025829, - 0.0069152, - -0.0078514, - 0.012539, - -0.042864, - -0.0095438, - 0.014552, - -0.00278, - 0.071469, - -0.0065409, - -0.014274, - -0.081273, - 0.0015335, - 0.034917, - -0.019732, - -0.017415, - 0.011529, - -0.025506, - 0.041548, - -0.041183, - 0.016401, - 0.070279, - -0.042357, - -0.016764, - -0.010365, - -0.0075187, - 0.0081721, - -0.02749, - -0.0061221, - -0.031384, - -0.0054382, - -0.0054801, - 0.015309, - -0.0076977, - 0.0038339, - -0.034433, - -0.011202, - -0.027381, - 0.0097208, - 0.019149, - 0.023749, - -0.020012, - -0.035084, - -0.010838, - -0.014633, - -0.029698, - 0.037725, - 0.0017877, - 0.010968, - -0.0098516, - -0.012688, - 0.024133, - -0.0066496, - 0.033094, - -0.055579, - -0.011771, - 0.019353, - 0.0022839, - 0.035925, - 0.045547, - -0.014001, - 0.0035274, - -0.027937, - 0.0060037, - 0.058385, - -0.0015055, - 0.0025844, - -0.0010071, - -0.022215, - 0.035963, - -0.060299, - -0.0059641, - -0.01391, - -0.049882, - 0.013368, - 0.0062341, - -0.033408, - 0.0036286, - 0.066572, - 0.018004, - -0.025125, - -0.00098825, - -0.027334, - -0.004814, - -0.02586, - -0.021459, - -0.049598, - -0.028143, - -0.0024367, - 0.038532, - -0.016212, - -0.010325, - -0.0080228, - -0.0064085, - -0.0043906, - -0.019618, - 0.0039594, - 0.010286 - ], - "corporate": [ - 0.000087628, - -0.023703, - -0.0049819, - 0.024167, - -0.060874, - -0.041866, - -0.024409, - -0.095002, - 0.029666, - 0.0057869, - -0.010607, - -0.059724, - -0.024268, - 0.013901, - -0.043552, - 0.040826, - 0.081254, - 0.023281, - 0.066143, - 0.023543, - -0.0059716, - 0.012008, - 0.020315, - 0.075708, - -0.0097008, - 0.014308, - 0.010116, - 0.039558, - -0.061873, - 0.000078428, - -0.010013, - -0.062166, - -0.076509, - 0.0053564, - 0.04013, - 0.034442, - -0.041549, - -0.015688, - 0.013031, - 0.015948, - -0.040527, - -0.074819, - -0.001722, - 0.034677, - 0.034954, - -0.00030942, - 0.014734, - -0.03746, - 0.016013, - -0.05282, - 0.019103, - 0.0092569, - 0.032912, - -0.0042469, - -0.017458, - 0.045184, - -0.016039, - 0.00043192, - -0.018264, - -0.0061289, - 0.03206, - -0.011444, - 0.1362, - -0.0017385, - 0.049793, - 0.019989, - -0.0073554, - -0.0043566, - 0.084361, - -0.0047103, - 0.043108, - -0.0057079, - 0.10161, - 0.067011, - -0.0046737, - -0.017738, - -0.00058721, - -0.022452, - 0.0031281, - -0.027195, - -0.0082959, - 0.023603, - -0.010095, - 0.068944, - -0.0029063, - 0.013015, - -0.057544, - -0.010572, - 0.036127, - 0.044448, - -0.020181, - 0.0079927, - -0.079044, - -0.057499, - 0.045256, - 0.07071, - -0.023402, - -0.04602, - -0.016121, - 0.020062, - -0.0070485, - 0.0069099, - -0.017641, - -0.058383, - 0.029751, - -0.109, - 0.021008, - -0.058233, - -0.017404, - 0.005581, - 0.00072066, - 0.082625, - 0.029978, - 0.019067, - -0.026868, - 0.0040821, - -0.084425, - -0.024016, - -0.063029, - -0.0090251, - 0.017327, - -0.058444, - 0.057755, - 0.0044825, - 0.076856, - 0.024042, - -0.0087378, - -0.091902, - 0.036347, - 0.061202, - 0.01867, - 0.012364, - 0.021244, - -0.0028371, - -0.0095773, - -0.00024191, - 0.024936, - 0.0092752, - -0.031915, - -0.0072249, - -0.017382, - -0.016678, - -0.019415, - 0.041355, - -0.015332, - -0.028732, - 0.052353, - -0.043373, - 0.027259, - -0.028974, - 0.016237, - 0.061555, - 0.010159, - -0.045861, - 0.020994, - -0.0043577, - -0.011712, - 0.029361, - -0.0058761, - -0.020982, - 0.018435, - -0.0095965, - -0.054823, - 0.014553, - 0.015659, - 0.036607, - -0.0078457, - -0.013877, - -0.0043052, - 0.027428, - -0.032681, - 0.017998, - -0.016588, - 0.037689, - -0.05235, - 0.08938, - -0.024114, - 0.0077544, - -0.028418, - 0.0077833, - 0.019879, - -0.051679, - 0.01128, - 0.0015393, - -0.010035, - -0.023895, - -0.024983, - 0.10882, - 0.033065, - 0.024584, - -0.052282, - 0.026228, - 0.030277, - -0.013538, - -0.001578, - -0.028737, - -0.044407, - -0.043141, - 0.032911, - -0.010166, - -0.15198, - 0.0263, - 0.024397, - -0.026304, - 0.022272, - -0.011738, - -0.050168, - -0.014783, - 0.0094373, - -0.0070462, - 0.12762, - 0.017738, - -0.050915, - -0.011455, - -0.056752, - -0.011098, - -0.012175, - -0.026463, - 0.038962, - -0.028572, - -0.00043364, - -0.054064, - -0.024412, - 0.056728, - -0.026029, - -0.0048639, - 0.0088208, - 0.05072, - -0.0040991, - -0.057223, - -0.0092508, - -0.00088832, - -0.071647, - 0.010512, - -0.015136, - -0.0071955, - 0.0013458, - -0.024954, - 0.014308, - -0.021071, - 0.060434, - 0.0093337, - 0.0034456, - 0.046253, - -0.10319, - 0.0087933, - 0.0062548, - 0.026138, - 0.014773, - -0.02095, - 0.011304, - -0.047254, - -0.04151, - -0.027162, - 0.052566, - 0.031068, - -0.0091164, - 0.046422, - 0.049575, - 0.0071421, - 0.014246, - 0.007261, - 0.0054231, - -0.0087319, - 0.043468, - -0.0212, - 0.017048, - 0.02417, - -0.065033, - 0.047676, - -0.048599, - 0.068333, - -0.096268, - -0.052031, - -0.025631, - -0.0079976, - 0.0065737, - 0.026831, - -0.039841, - 0.058071, - 0.12295, - -0.0054707, - 0.0023024, - 0.028595, - -0.014155, - -0.056085, - -0.020057, - -0.041157, - -0.031706, - 0.046381, - 0.016796, - 0.032181, - 0.021219, - 0.035438, - -0.021622, - -0.026215, - -0.041499, - 0.026717, - -0.010274, - 0.026927 - ], - "investments": [ - 0.047116, - 0.0030562, - -0.06825, - 0.025351, - 0.011125, - -0.021709, - 0.031422, - -0.070036, - 0.029953, - 0.027089, - 0.010277, - -0.031348, - 0.0079581, - -0.031535, - -0.0043717, - 0.027759, - 0.039076, - 0.0063239, - 0.066049, - -0.024108, - -0.0013107, - 0.014239, - -0.036907, - 0.045344, - -0.017463, - 0.049403, - -0.01885, - 0.0049106, - 0.064714, - -0.00072723, - -0.016454, - -0.052391, - -0.062321, - -0.034863, - 0.031868, - 0.043108, - -0.020388, - 0.0023358, - 0.017337, - 0.030507, - 0.028001, - -0.061978, - -0.013024, - 0.022106, - -0.051926, - -0.013196, - -0.021552, - 0.00078717, - -0.020382, - 0.020437, - -0.025647, - 0.0075642, - -0.0064337, - 0.0069551, - -0.077873, - 0.0048176, - -0.038839, - 0.017725, - -0.020893, - -0.0031553, - 0.0095489, - 0.021655, - 0.10176, - 0.021942, - 0.024858, - -0.042932, - 0.00036172, - -0.084583, - 0.017725, - -0.026264, - 0.017764, - -0.0055217, - 0.041088, - 0.034985, - 0.0066583, - 0.020066, - 0.020025, - -0.0092528, - -0.0019215, - 0.005845, - -0.0036045, - -0.013681, - -0.016429, - 0.056771, - -0.005615, - -0.013713, - -0.0047109, - -0.0023411, - 0.010026, - -0.076862, - -0.0095343, - 0.038028, - -0.079274, - 0.010972, - -0.038251, - 0.019746, - -0.0078773, - -0.027134, - -0.014643, - -0.018082, - -0.027326, - -0.056048, - -0.047424, - -0.050277, - 0.061566, - -0.023438, - -0.0034858, - -0.008067, - -0.035767, - 0.021007, - -0.0162, - 0.0623, - 0.055217, - 0.032668, - 0.013697, - -0.02514, - -0.028444, - -0.0032326, - -0.040997, - 0.067006, - -0.034234, - -0.034723, - 0.031383, - 0.010362, - 0.10995, - 0.015019, - -0.041156, - -0.060368, - 0.0023993, - 0.080107, - 0.030867, - 0.041349, - -0.01078, - -0.0094769, - -0.023684, - 0.0057468, - 0.044278, - 0.03669, - -0.046518, - 0.066517, - 0.0080381, - 0.0096937, - -0.019472, - 0.056684, - 0.022685, - -0.021154, - 0.015519, - 0.0051438, - 0.011071, - -0.02015, - 0.033305, - 0.06219, - -0.00020451, - -0.090526, - -0.021831, - 0.00058474, - 0.032047, - -0.0060615, - -0.04831, - -0.02149, - 0.067079, - 0.022351, - -0.0017737, - 0.016244, - 0.021207, - 0.010732, - -0.01454, - -0.062102, - -0.00044697, - -0.0037811, - 0.051288, - -0.0079266, - -0.013973, - 0.038493, - -0.040016, - 0.029182, - -0.022088, - 0.019398, - -0.055669, - 0.012199, - 0.05325, - 0.037137, - 0.031932, - 0.0048566, - -0.009398, - -0.05945, - -0.03185, - 0.061002, - 0.026908, - -0.0014994, - -0.046166, - 0.071866, - -0.029147, - 0.010741, - -0.026357, - -0.026033, - -0.0049726, - -0.017181, - 0.028067, - -0.005833, - -0.12009, - 0.064821, - 0.043449, - -0.032493, - 0.039007, - 0.02602, - 0.0044551, - -0.016158, - -0.020083, - -0.030822, - 0.070235, - 0.0095204, - -0.0043271, - -0.0089035, - 0.025347, - 0.0079785, - -0.0030347, - -0.030836, - -0.045967, - 0.0021199, - 0.00015081, - 0.0009958, - -0.0057954, - 0.072551, - 0.067854, - -0.019104, - -0.0037763, - 0.037798, - 0.0096941, - -0.012067, - 0.0079146, - -0.0077488, - -0.06527, - -0.019461, - 0.060344, - -0.0012423, - -0.034555, - 0.013128, - -0.040361, - -0.0016319, - -0.047146, - -0.0010741, - 0.053878, - 0.02052, - -0.014806, - 0.0042344, - -0.025522, - -0.090769, - 0.036014, - 0.0093705, - 0.0087575, - -0.075699, - 0.00020215, - -0.034733, - -0.030038, - 0.01036, - -0.0091923, - -0.0055625, - 0.042294, - 0.031072, - -0.030364, - 0.0083797, - -0.012764, - -0.016266, - 0.048711, - 0.03985, - -0.028874, - 0.0013544, - 0.035509, - 0.017425, - -0.014536, - 0.040635, - -0.08736, - -0.058081, - -0.017682, - -0.0060075, - 0.058707, - 0.0052164, - -0.012686, - -0.052611, - 0.045782, - -0.032543, - -0.026679, - -0.011084, - 0.015544, - 0.0091438, - -0.021415, - 0.025914, - -0.054296, - 0.0056609, - -0.0070206, - 0.021709, - -0.063442, - 0.035056, - 0.025371, - -0.037952, - 0.0015961, - -0.026519, - -0.021939, - -0.054864 - ], - "dads": [ - -0.16183, - -0.086974, - 0.095691, - -0.034034, - -0.10479, - -0.022491, - 0.032645, - -0.09202, - 0.023883, - 0.082321, - 0.032107, - -0.038326, - -0.083903, - 0.046674, - 0.014802, - -0.002411, - 0.044099, - 0.048075, - 0.042549, - 0.026823, - 0.10403, - 0.12082, - -0.042546, - 0.050508, - 0.036391, - 0.04461, - 0.087658, - 0.0086756, - 0.10605, - 0.019894, - 0.079871, - -0.15638, - 0.039577, - 0.03659, - -0.018072, - 0.052697, - -0.061254, - -0.10177, - -0.11656, - -0.095539, - -0.10372, - -0.080345, - -0.014765, - -0.086345, - 0.03318, - -0.0097918, - 0.064482, - 0.049825, - 0.0086497, - -0.016858, - 0.033975, - -0.035246, - 0.15878, - 0.074586, - -0.04068, - -0.13855, - -0.030106, - -0.18505, - -0.052985, - 0.049114, - -0.074091, - 0.041605, - 0.099608, - 0.052716, - -0.017746, - -0.043723, - -0.029006, - -0.036907, - -0.070058, - -0.053039, - -0.009045, - -0.10252, - 0.204, - -0.043083, - 0.10548, - -0.00087586, - 0.021506, - -0.080017, - -0.092003, - -0.028001, - -0.059126, - 0.019771, - 0.073196, - 0.098841, - -0.095052, - -0.03463, - 0.027396, - -0.018356, - 0.020497, - 0.061233, - 0.015335, - -0.021824, - -0.1566, - -0.040699, - 0.10814, - 0.13477, - -0.080252, - 0.05005, - 0.0064515, - -0.094032, - 0.024642, - -0.19431, - -0.0072997, - -0.16986, - 0.034025, - -0.14238, - 0.039862, - 0.070155, - -0.047058, - -0.020673, - 0.03145, - 0.086568, - -0.04613, - 0.11764, - 0.099116, - -0.03325, - -0.065695, - 0.12177, - -0.09069, - -0.074854, - -0.081012, - 0.057588, - 0.23434, - -0.1002, - 0.18745, - -0.044254, - -0.0017424, - -0.049441, - 0.053158, - 0.15308, - -0.1085, - 0.19551, - -0.057276, - 0.063358, - -0.024626, - -0.059631, - 0.026517, - 0.079556, - -0.094811, - -0.083625, - 0.070479, - -0.060303, - 0.078411, - 0.053619, - -0.04829, - 0.060589, - 0.067279, - 0.10841, - -0.092623, - -0.020002, - 0.073455, - 0.16786, - -0.047656, - -0.009774, - -0.0086853, - -0.084103, - 0.017832, - 0.065604, - 0.30818, - -0.086882, - 0.11323, - 0.083936, - 0.070895, - -0.09755, - 0.00050573, - -0.041077, - 0.018875, - 0.096302, - 0.00067276, - -0.011597, - -0.058901, - 0.032552, - -0.022169, - -0.017512, - -0.036683, - 0.12335, - 0.0096645, - 0.05188, - 0.075982, - -0.083402, - 0.050763, - -0.23128, - -0.090601, - -0.082981, - -0.025289, - -0.1397, - -0.031604, - 0.18444, - -0.017854, - 0.017539, - 0.019732, - 0.14478, - -0.12188, - 0.043125, - 0.018657, - -0.037125, - -0.0093159, - -0.041944, - -0.05866, - -0.041156, - -0.1916, - 0.12684, - -0.094457, - -0.019644, - 0.093994, - 0.075877, - -0.102, - -0.02678, - -0.046767, - -0.12066, - 0.073522, - 0.014599, - 0.13506, - 0.014634, - -0.14397, - -0.0071706, - -0.22386, - 0.025355, - -0.01901, - -0.062432, - 0.14763, - -0.12043, - -0.004286, - 0.12424, - 0.12527, - -0.068473, - 0.046879, - 0.12514, - 0.039347, - -0.045368, - 0.033362, - 0.017551, - -0.085768, - 0.14452, - 0.052336, - 0.11582, - 0.10585, - 0.052674, - -0.06107, - 0.040495, - 0.032992, - -0.0047759, - -0.038764, - -0.15779, - 0.038791, - -0.0076978, - -0.13423, - -0.10754, - 0.093409, - -0.047222, - 0.025983, - 0.090982, - 0.018588, - 0.082971, - 0.050602, - -0.0642, - 0.0060185, - 0.0091703, - 0.13543, - -0.18408, - -0.054077, - -0.0092235, - 0.012804, - -0.0061151, - 0.10173, - 0.099358, - -0.008347, - 0.02638, - 0.07469, - 0.042513, - -0.035373, - 0.073439, - -0.16141, - -0.045671, - 0.067912, - -0.0061793, - 0.03939, - 0.12665, - 0.051166, - 0.056331, - 0.072683, - 0.10243, - 0.089223, - -0.036058, - -0.003746, - 0.027128, - -0.068444, - -0.15022, - -0.015492, - -0.012419, - 0.067545, - -0.028175, - -0.12328, - 0.070318, - -0.0085199, - -0.10586, - 0.13878, - 0.10372, - 0.025513, - -0.0034365 - ], - "scholarship": [ - -0.021517, - -0.033521, - 0.034844, - 0.027173, - -0.018692, - -0.012838, - -0.053227, - -0.058979, - 0.019006, - -0.024193, - 0.04109, - -0.029093, - 0.027848, - -0.031364, - -0.02622, - 0.039967, - 0.064442, - -0.055207, - 0.0097843, - 0.032817, - 0.0099506, - 0.077912, - 0.0056514, - 0.033512, - 0.022377, - -0.00069497, - -0.045066, - 0.01578, - 0.020217, - 0.0020564, - 0.0075023, - 0.018582, - -0.0030595, - -0.069851, - 0.020686, - 0.034335, - 0.049108, - -0.0094207, - 0.011571, - 0.016554, - -0.0038112, - -0.089111, - 0.06241, - 0.051508, - 0.031545, - -0.0059634, - -0.031015, - -0.017879, - -0.018789, - -0.0049815, - -0.013096, - 0.007746, - -0.0070875, - 0.034442, - -0.034451, - 0.0023708, - -0.049011, - 0.05681, - -0.018807, - 0.008129, - 0.056004, - 0.036603, - 0.069989, - 0.069772, - 0.021857, - -0.073468, - -0.016592, - -0.035305, - 0.031287, - 0.010694, - 0.036799, - -0.0021487, - 0.026455, - 0.015639, - 0.038376, - 0.004081, - 0.0031492, - -0.0023137, - 0.066954, - -0.019742, - -0.040801, - -0.0053836, - 0.03015, - 0.0072128, - -0.043773, - -0.032626, - -0.030169, - -0.011158, - -0.018044, - 0.012784, - -0.031506, - 0.026023, - -0.05928, - -0.00049191, - 0.013397, - 0.038469, - 0.016501, - -0.024517, - 0.005125, - -0.011607, - 0.052345, - 0.0048854, - 0.02161, - -0.022686, - -0.018195, - -0.045355, - 0.027602, - 0.059209, - -0.021821, - 0.018747, - -0.010521, - 0.04487, - 0.025932, - -0.0048672, - -0.029398, - 0.014615, - 0.0039835, - -0.069079, - -0.047255, - -0.023803, - 0.015698, - -0.080373, - -0.024885, - -0.012347, - 0.04474, - -0.071859, - -0.045675, - -0.024779, - -0.03821, - 0.081561, - 0.0093078, - -0.015513, - -0.019204, - 0.0072242, - 0.0046706, - 0.010248, - -0.01193, - 0.017536, - -0.0027345, - -0.081781, - 0.0082952, - -0.030031, - -0.010264, - -0.022086, - -0.035556, - -0.028495, - -0.0012925, - 0.013291, - 0.010012, - 0.0037609, - 0.047611, - 0.039518, - 0.017858, - -0.080328, - -0.0049103, - 0.026146, - 0.063782, - -0.010838, - -0.0051082, - -0.006784, - 0.033452, - 0.0054845, - -0.05274, - -0.028083, - -0.031075, - 0.000096668, - 0.0080476, - -0.01217, - -0.037268, - -0.021125, - 0.051498, - -0.009716, - -0.047024, - -0.0075472, - 0.02529, - 0.036686, - -0.0044489, - -0.00034002, - -0.010362, - -0.081271, - -0.050731, - 0.068431, - 0.0082879, - 0.017127, - -0.023238, - -0.03411, - -0.02767, - 0.063349, - 0.0082245, - 0.012745, - 0.01359, - 0.047472, - 0.017657, - -0.057064, - -0.022451, - 0.005231, - 0.034158, - -0.033366, - 0.005706, - -0.0065114, - -0.10387, - 0.043837, - 0.0083346, - -0.043954, - -0.021831, - 0.04109, - 0.0042403, - -0.030381, - 0.0037178, - -0.02424, - 0.088883, - 0.0063811, - -0.040444, - -0.0076001, - -0.028136, - 0.01818, - 0.00080653, - -0.032673, - -0.020531, - -0.027828, - -0.020407, - -0.0080947, - -0.00066652, - 0.072023, - 0.058284, - 0.00066831, - -0.012924, - 0.052665, - 0.0018964, - -0.03765, - 0.04191, - -0.049598, - -0.02921, - -0.035974, - 0.0083001, - 0.034267, - 0.014025, - -0.036325, - -0.017684, - -0.008797, - 0.034139, - -0.052034, - 0.030289, - -0.039674, - -0.004978, - -0.0092906, - -0.070728, - -0.036125, - 0.01998, - 0.00083768, - 0.044549, - 0.027751, - -0.031819, - 0.0029887, - 0.0025453, - 0.0061781, - -0.014674, - 0.0139, - 0.038517, - 0.063371, - -0.0088053, - -0.031394, - 0.010696, - -0.007889, - 0.035604, - 0.044186, - 0.0056303, - 0.0047248, - 0.027427, - 0.013799, - 0.052871, - 0.045253, - -0.083131, - -0.039549, - -0.040037, - -0.028416, - -0.022358, - 0.019906, - -0.03047, - 0.012876, - 0.080177, - -0.026685, - -0.017096, - -0.05398, - -0.026342, - 0.010024, - -0.015693, - 0.045526, - -0.047884, - 0.0052782, - -0.016439, - -0.039717, - 0.023425, - -0.035921, - 0.034584, - 0.016235, - -0.02134, - -0.018871, - -0.00056628, - -0.013377 - ], - "cryptanalysis": [ - 0.038163, - -0.050555, - -0.010859, - 0.033289, - 0.0023369, - 0.039344, - 0.0068549, - -0.082362, - -0.022846, - 0.0090606, - 0.059511, - -0.023026, - -0.06189, - 0.032469, - -0.058835, - 0.0047585, - 0.051981, - 0.014255, - 0.026904, - 0.0060338, - -0.01668, - 0.082424, - 0.011485, - 0.038848, - 0.014615, - 0.025272, - 0.0038136, - -0.055041, - -0.014545, - -0.021832, - -0.025444, - -0.03815, - -0.0099473, - -0.071005, - 0.027719, - -0.031786, - -0.006589, - 0.025372, - 0.043672, - -0.030616, - -0.002415, - -0.079217, - -0.020581, - -0.08073, - 0.018506, - -0.056085, - -0.003499, - -0.021916, - -0.004673, - 0.015174, - -0.018501, - -0.0039372, - 0.0021549, - -0.0034423, - -0.038087, - -0.021649, - 0.024597, - 0.060451, - -0.019334, - 0.00044056, - -0.039007, - -0.055447, - 0.018715, - -0.022342, - -0.042915, - -0.0014118, - -0.0013778, - 0.042904, - 0.0020434, - 0.043743, - -0.01121, - 0.054109, - -0.039981, - 0.0074234, - 0.014569, - -0.05821, - -0.018672, - -0.0016058, - 0.031552, - -0.022436, - 0.0030874, - -0.004737, - -0.033075, - -0.011339, - 0.0038628, - 0.013809, - 0.032864, - -0.016501, - 0.060503, - 0.041053, - -0.014882, - 0.0035304, - -0.026587, - 0.013224, - 0.019323, - 0.057067, - -0.048639, - -0.015791, - 0.014973, - 0.074675, - 0.0013858, - 0.017105, - 0.012449, - 0.055344, - 0.020047, - -0.0031022, - 0.025268, - 0.029416, - 0.040491, - 0.0039554, - -0.015071, - 0.035967, - 0.046543, - 0.030365, - -0.0026488, - 0.014723, - 0.036914, - 0.069865, - -0.011449, - -0.0083759, - 0.10309, - 0.014886, - -0.050098, - 0.0064416, - 0.059874, - -0.03896, - -0.0038237, - -0.039513, - -0.049824, - 0.093449, - 0.0087227, - -0.0081051, - 0.01063, - 0.021375, - 0.031982, - -0.054078, - 0.048891, - 0.050702, - 0.041367, - 0.033673, - 0.041139, - 0.014858, - -0.016245, - -0.0036472, - 0.0045454, - 0.0063903, - -0.07269, - -0.044434, - 0.052437, - -0.074139, - 0.0039223, - 0.06546, - 0.03724, - -0.068071, - 0.088725, - 0.028123, - 0.022708, - -0.002939, - 0.028195, - 0.03076, - -0.012113, - -0.012135, - -0.04651, - -0.01177, - 0.0095667, - -0.063119, - -0.027606, - -0.0060571, - 0.07094, - -0.026955, - 0.070539, - 0.035486, - 0.01597, - 0.031614, - 0.026306, - 0.039132, - 0.023134, - 0.049719, - -0.051717, - 0.0042697, - -0.052123, - 0.019809, - 0.0081341, - 0.019756, - 0.048769, - -0.010073, - -0.025916, - 0.072332, - 0.017678, - 0.053794, - -0.0087866, - 0.022693, - -0.077735, - -0.046194, - -0.0091732, - 0.062816, - -0.068204, - -0.015277, - -0.048587, - 0.0072381, - -0.10623, - 0.022205, - -0.050549, - 0.069268, - -0.036571, - -0.059967, - 0.06357, - -0.029732, - -0.0076879, - 0.012469, - 0.079443, - 0.024253, - 0.030853, - -0.00085743, - 0.026075, - 0.076726, - -0.0537, - -0.040418, - -0.038301, - 0.0026298, - -0.0031656, - -0.035874, - -0.040362, - 0.078637, - 0.0063117, - -0.04849, - 0.022485, - 0.082784, - 0.033709, - -0.0058871, - 0.009011, - -0.025055, - -0.015482, - -0.049673, - 0.0094759, - -0.0634, - -0.033252, - 0.021811, - 0.0053059, - -0.003111, - 0.043512, - -0.023291, - 0.04672, - -0.034488, - 0.0074646, - 0.052384, - -0.022873, - -0.052601, - 0.0085397, - 0.054415, - -0.0079189, - 0.078147, - 0.01845, - 0.013025, - 0.01003, - 0.016478, - 0.036069, - 0.01992, - -0.0081581, - -0.0064845, - 0.017621, - -0.032069, - -0.024977, - 0.02321, - -0.01025, - -0.081761, - -0.0067424, - 0.015912, - -0.0030118, - 0.0090863, - -0.012459, - 0.072673, - -0.035037, - -0.014532, - -0.038613, - -0.012382, - 0.092393, - 0.015976, - 0.078065, - -0.011289, - 0.057322, - -0.0034102, - -0.018075, - 0.012961, - -0.0095314, - -0.026621, - -0.0092537, - -0.0242, - -0.060785, - 0.0077602, - -0.068734, - 0.022929, - -0.021037, - 0.00078258, - 0.057933, - -0.028717, - -0.024041, - -0.04182, - -0.031438, - 0.010405 - ], - "entertainments": [ - -0.0019477, - -0.050483, - 0.059064, - 0.019366, - 0.0045589, - -0.016764, - -0.006477, - -0.061634, - 0.024181, - 0.052902, - 0.036192, - -0.037949, - 0.044322, - -0.028978, - -0.00042545, - 0.018003, - 0.021824, - -0.0048985, - 0.016355, - 0.032838, - 0.008601, - -0.033411, - 0.0040443, - 0.025584, - -0.014439, - 0.027731, - 0.0088287, - 0.02014, - 0.067198, - -0.024735, - -0.033655, - -0.050982, - -0.001625, - -0.049259, - 0.052377, - 0.018539, - 0.0020489, - 0.0088693, - 0.012586, - 0.015678, - -0.013024, - -0.079557, - -0.029319, - 0.029077, - 0.012267, - -0.047144, - 0.03354, - -0.014343, - -0.03032, - -0.0031132, - -0.025318, - 0.0024597, - 0.028892, - -0.03463, - -0.043283, - 0.027521, - -0.02316, - 0.0040799, - -0.022231, - -0.03318, - 0.0077589, - 0.011064, - 0.085456, - 0.013387, - 0.034085, - 0.046597, - -0.018879, - -0.008658, - 0.03691, - 0.0057094, - 0.022511, - -0.040067, - 0.033058, - 0.0492, - 0.0147, - 0.033528, - 0.0038036, - -0.025828, - -0.010401, - -0.0025901, - -0.0010105, - -0.0054474, - -0.015096, - 0.044263, - -0.020898, - -0.0073538, - -0.017896, - 0.021916, - -0.059856, - -0.014737, - -0.01581, - 0.033554, - -0.038613, - 0.014549, - -0.020119, - 0.032233, - -0.0067098, - 0.015073, - -0.022332, - 0.050888, - 0.049735, - 0.05484, - -0.034474, - -0.045727, - 0.033477, - -0.017563, - 0.0070977, - -0.012781, - 0.01926, - 0.0076378, - -0.040341, - 0.081536, - 0.03211, - 0.039963, - -0.00040265, - -0.020751, - 0.019076, - 0.003229, - -0.022274, - -0.011855, - -0.015198, - 0.039074, - -0.064363, - 0.00072162, - 0.080061, - 0.023437, - -0.016448, - -0.008778, - 0.0012349, - 0.073093, - 0.032477, - 0.053165, - 0.020826, - -0.0050633, - 0.0080982, - -0.038994, - 0.001021, - 0.017876, - -0.022366, - 0.021217, - 0.048292, - -0.003164, - 0.0039911, - 0.01848, - 0.032836, - 0.0069117, - -0.0008851, - -0.030864, - -0.0094456, - 0.057064, - 0.033975, - 0.06524, - -0.051794, - -0.018037, - -0.021148, - 0.0085501, - -0.048781, - 0.063001, - 0.019338, - 0.0093148, - 0.034158, - -0.012284, - -0.0030465, - 0.032597, - -0.010575, - 0.057999, - 0.0085091, - -0.03211, - -0.022994, - -0.0088351, - 0.0028591, - -0.017855, - 0.064151, - 0.019943, - -0.00017409, - 0.016748, - -0.026256, - 0.019116, - -0.030616, - -0.0065558, - 0.014144, - -0.0033089, - 0.0023283, - -0.036965, - -0.040486, - 0.0065996, - 0.0031803, - 0.068429, - 0.014258, - -0.013799, - 0.012676, - 0.069569, - -0.014914, - -0.033078, - -0.0096615, - 0.035327, - -0.0093326, - -0.00020403, - -0.0083541, - 0.022675, - -0.098175, - 0.053596, - 0.014581, - 0.0034314, - 0.061116, - 0.055317, - -0.048079, - 0.0083538, - 0.0031082, - -0.021742, - 0.060952, - 0.031959, - 0.0069555, - 0.020509, - 0.0040825, - -0.00046995, - -0.052617, - 0.015929, - -0.037731, - -0.011791, - 0.047994, - -0.012748, - -0.0073342, - 0.066673, - 0.047877, - -0.057728, - 0.042919, - 0.041371, - -0.044481, - 0.0083404, - -0.029047, - 0.0051683, - -0.031974, - 0.014235, - 0.015456, - 0.018669, - -0.013458, - -0.041358, - 0.0086047, - -0.040241, - -0.023922, - -0.0028207, - -0.041685, - -0.018818, - -0.01288, - 0.039724, - -0.013437, - -0.033963, - -0.010919, - 0.028745, - 0.010554, - -0.013903, - -0.02148, - 0.025123, - -0.059513, - 0.04091, - -0.029962, - 0.014514, - 0.019753, - 0.026564, - 0.025511, - 0.016045, - -0.0071894, - -0.0010546, - 0.013632, - 0.031575, - 0.0069342, - -0.0063682, - 0.01269, - 0.029739, - 0.0097987, - 0.049751, - -0.055598, - -0.022297, - -0.037499, - -0.0034767, - 0.036819, - 0.037534, - -0.019157, - 0.033642, - 0.026652, - 0.030858, - -0.02431, - -0.041639, - -0.01228, - 0.036174, - -0.007684, - -0.022723, - -0.013185, - 0.067644, - 0.032533, - 0.037423, - 0.00086092, - 0.0011768, - 0.0066344, - 0.010834, - -0.0093951, - 0.062207, - -0.04493, - 0.03657 - ], - "traditions": [ - -0.010023, - -0.044978, - 0.06718, - -0.0081542, - -0.024413, - -0.040668, - 0.0037526, - -0.058033, - 0.024569, - -0.01751, - -0.013483, - -0.091595, - 0.0053794, - 0.0012357, - 0.026559, - 0.053156, - 0.043846, - -0.019062, - 0.024389, - 0.071885, - -0.036401, - 0.018815, - -0.0021822, - 0.059553, - 0.014957, - 0.019565, - -0.0016915, - 0.0029683, - 0.061966, - 0.0074026, - 0.004806, - -0.040111, - 0.0036683, - -0.037742, - 0.03574, - 0.036569, - -0.0012359, - 0.054155, - -0.0094151, - 0.012998, - 0.03253, - -0.1096, - 0.016284, - -0.00036587, - 0.026765, - -0.018594, - 0.0025531, - -0.030515, - -0.0015243, - -0.079187, - -0.025796, - 0.015182, - -0.0028484, - 0.038089, - -0.035391, - 0.04685, - 0.030549, - 0.008312, - -0.014916, - -0.0070422, - 0.034577, - -0.026637, - 0.14322, - -0.037444, - 0.032253, - 0.0017319, - -0.021588, - 0.057879, - 0.027584, - -0.016508, - 0.023036, - -0.0047805, - 0.037578, - 0.017115, - 0.022216, - -0.0081379, - 0.03608, - 0.0019412, - 0.029625, - -0.018882, - -0.0042118, - 0.012236, - -0.012273, - 0.059512, - -0.032686, - -0.029116, - -0.034985, - -0.0080692, - -0.05236, - -0.0031752, - 0.0065522, - 0.022369, - -0.05498, - 0.029185, - 0.004895, - 0.046134, - 0.029014, - 0.019974, - 0.023323, - -0.0062342, - 0.052378, - -0.036419, - 0.002247, - -0.044946, - 0.031516, - -0.020614, - -0.02662, - 0.011359, - -0.03306, - 0.030344, - -0.00852, - 0.01732, - 0.046389, - -0.0014134, - -0.015874, - -0.0095604, - 0.0087667, - 0.038268, - -0.019902, - -0.015965, - 0.0088906, - -0.021117, - -0.0047215, - -0.042918, - 0.040989, - 0.021085, - -0.015875, - 0.012148, - 0.02393, - 0.14796, - 0.051636, - 0.067766, - 0.0052734, - 0.038838, - 0.03185, - -0.046299, - -0.006797, - 0.032974, - -0.012308, - -0.023404, - 0.030714, - -0.026565, - -0.018441, - 0.054269, - 0.037604, - -0.0098233, - 0.024771, - 0.066513, - -0.052423, - -0.016417, - 0.027219, - 0.066763, - -0.0020426, - 0.0089761, - 0.02811, - 0.041829, - -0.016323, - -0.010721, - 0.015827, - -0.01234, - 0.017011, - 0.022516, - 0.019382, - -0.017485, - 0.01523, - 0.0095882, - 0.010931, - 0.0020524, - -0.024852, - 0.005676, - 0.050203, - -0.0095186, - -0.0042284, - -0.022439, - -0.0025929, - 0.05329, - 0.026115, - 0.073028, - -0.020929, - -0.069384, - -0.022317, - 0.027339, - 0.020696, - -0.04289, - 0.01323, - -0.018018, - 0.024284, - 0.098313, - -0.0060866, - -0.047099, - -0.0014566, - 0.099409, - -0.071301, - -0.018359, - -0.017151, - 0.024538, - 0.012271, - -0.05822, - 0.01767, - -0.013271, - -0.12735, - -0.05422, - 0.0053775, - -0.036334, - -0.0085903, - 0.016963, - 0.065461, - 0.022274, - 0.063125, - -0.0005505, - 0.072039, - 0.020155, - 0.02323, - -0.012275, - 0.002679, - 0.0041796, - 0.014678, - -0.0044067, - -0.080635, - -0.018173, - -0.0048085, - -0.036113, - 0.02777, - 0.077011, - 0.035247, - 0.00012349, - -0.015678, - 0.05249, - -0.032711, - -0.016062, - 0.033133, - -0.0131, - -0.079968, - 0.02108, - 0.00081062, - 0.062583, - -0.013691, - 0.051908, - 0.053501, - 0.097938, - -0.0081786, - 0.01029, - -0.0044237, - 0.027098, - 0.0013163, - 0.017494, - -0.076277, - -0.053073, - -0.0086988, - 0.0079144, - 0.010658, - -0.015807, - -0.030148, - 0.021269, - -0.032074, - 0.047451, - -0.021646, - 0.012088, - -0.0077865, - 0.03865, - 0.013804, - -0.016291, - 0.032637, - -0.053979, - 0.051122, - -0.0069817, - 0.044395, - 0.039178, - -0.0012379, - -0.007581, - 0.041803, - 0.048272, - -0.077011, - -0.037119, - 0.062604, - -0.016421, - -0.0066047, - 0.0011189, - -0.037049, - -0.00054829, - 0.037788, - -0.044486, - 0.0050866, - -0.013866, - 0.025034, - 0.0075808, - -0.0069511, - 0.010326, - -0.0041997, - 0.0094166, - 0.011499, - 0.020031, - 0.029898, - -0.10964, - 0.022856, - 0.046132, - 0.054603, - 0.02084, - -0.031825, - -0.008405 - ], - "disbursements": [ - -0.0011731, - 0.0055043, - -0.028403, - -0.019204, - 0.052399, - -0.036253, - -0.024541, - -0.07434, - 0.029238, - -0.020817, - 0.0044962, - -0.012406, - -0.0020216, - 0.007712, - 0.025162, - 0.031785, - 0.011455, - -0.018387, - 0.019722, - 0.0018193, - -0.010216, - -0.0080213, - -0.067455, - 0.039064, - -0.0055483, - -0.0035098, - -0.040616, - 0.073175, - 0.074766, - -0.03988, - 0.014637, - -0.0046602, - -0.019969, - -0.055361, - 0.028093, - 0.072124, - -0.051224, - 0.040773, - -0.0053647, - -0.044455, - -0.0015266, - -0.062024, - 0.0078208, - 0.03142, - -0.031745, - 0.033033, - 0.034693, - -0.011549, - 0.008159, - 0.025888, - -0.032157, - -0.0037295, - 0.026168, - -0.0014952, - -0.079832, - 0.04151, - -0.062057, - -0.012674, - 0.017576, - 0.014062, - 0.052635, - 0.0030102, - 0.081326, - 0.032023, - 0.020636, - -0.087509, - -0.0020194, - -0.04379, - -0.056509, - 0.037089, - -0.051452, - -0.058088, - 0.056723, - 0.0052471, - 0.024992, - 0.0015081, - 0.0045804, - -0.0050546, - 0.0061664, - 0.0080589, - -0.031554, - -0.028628, - -0.031577, - 0.034971, - 0.018087, - 0.0080785, - -0.045649, - -0.0044054, - 0.037678, - -0.048324, - -0.016828, - -0.0029573, - -0.047189, - -0.0021314, - -0.055127, - 0.02512, - -0.06374, - -0.058953, - -0.024383, - -0.0070904, - -0.034864, - -0.053287, - -0.01121, - -0.0021936, - 0.051356, - -0.0089428, - 0.016304, - -0.05631, - -0.051318, - 0.023432, - -0.0097056, - 0.041539, - 0.031554, - -0.0018949, - 0.00083065, - -0.047105, - 0.025537, - -0.0086237, - -0.038632, - 0.020062, - 0.012327, - -0.018002, - 0.047008, - 0.014845, - 0.085446, - -0.031922, - -0.057918, - -0.071639, - 0.011104, - 0.053038, - -0.031742, - 0.010454, - -0.0030771, - 0.028144, - 0.020625, - 0.00077882, - 0.0062557, - 0.044917, - -0.010037, - -0.017407, - 0.0011435, - -0.015579, - -0.0036785, - 0.0058129, - 0.070751, - -0.0096902, - -0.020766, - 0.0050807, - 0.0071883, - -0.010962, - 0.018959, - 0.04022, - 0.034175, - -0.077192, - 0.019719, - -0.020825, - 0.0014038, - -0.0057077, - -0.048789, - 0.011538, - 0.081439, - 0.031328, - -0.032142, - 0.0049189, - -0.01574, - 0.0077528, - -0.043733, - -0.020885, - 0.0045313, - 0.023053, - 0.019582, - 0.0017439, - 0.0025314, - -0.015658, - -0.035341, - 0.040731, - -0.028673, - 0.002942, - -0.026337, - -0.0558, - 0.018511, - 0.038759, - 0.045442, - 0.028127, - -0.065012, - -0.025877, - 0.0010879, - 0.065906, - -0.0029054, - -0.05022, - -0.00037321, - 0.032802, - -0.050745, - -0.041473, - -0.012253, - -0.021047, - -0.032464, - -0.014448, - 0.0078455, - -0.032722, - -0.12136, - 0.05145, - 0.039185, - 0.017981, - -0.0064232, - 0.028376, - -0.036516, - -0.067132, - 0.034579, - -0.035584, - 0.071647, - -0.0032026, - -0.013674, - 0.029128, - 0.042702, - -0.00067451, - -0.045234, - 0.046483, - -0.043327, - -0.013728, - 0.028132, - 0.037251, - 0.011613, - 0.081046, - 0.056279, - 0.042954, - -0.0056879, - -0.000073777, - 0.016025, - 0.0090409, - -0.0078885, - -0.022437, - -0.038493, - -0.020736, - 0.08729, - -0.029982, - -0.038712, - -0.036252, - -0.060926, - 0.032077, - 0.015734, - -0.00077497, - -0.019299, - -0.053575, - -0.024244, - -0.029318, - -0.0047943, - -0.085312, - 0.013861, - 0.006872, - 0.0076782, - -0.013768, - 0.041419, - 0.012321, - -0.038715, - 0.0049409, - -0.0024018, - 0.036313, - -0.031575, - -0.013227, - -0.010658, - -0.021629, - -0.0026692, - -0.019638, - 0.037177, - -0.039234, - -0.022399, - -0.039329, - -0.043388, - 0.04925, - 0.021539, - 0.061818, - -0.085055, - -0.042054, - -0.036157, - -0.0077637, - -0.026649, - -0.0064583, - -0.0094611, - -0.020907, - 0.034371, - -0.00097037, - -0.032303, - -0.011388, - 0.022679, - 0.075038, - -0.019151, - 0.066711, - -0.052584, - 0.036248, - 0.038641, - -0.03147, - 0.00033522, - 0.029618, - -0.023515, - -0.026758, - -0.034702, - -0.075899, - -0.036762, - -0.018024 - ], - "pseudo-science": [ - 0.007854, - -0.030785, - -0.016624, - -0.0062033, - -0.012831, - -0.098939, - 0.038117, - -0.052098, - -0.0072473, - 0.0010206, - -0.022322, - -0.015047, - 0.018409, - -0.03785, - -0.0011525, - -0.052123, - 0.059731, - 0.029812, - 0.0013071, - 0.021494, - -0.011977, - 0.028972, - 0.02821, - 0.026182, - -0.0047066, - -0.026834, - 0.042889, - 0.032139, - 0.055117, - 0.038386, - 0.025929, - -0.044739, - 0.031025, - -0.026304, - 0.031486, - 0.010185, - 0.026778, - -0.033678, - 0.04264, - 0.02573, - -0.0086942, - -0.064745, - 0.0030332, - 0.024039, - 0.010963, - -0.0041657, - -0.031965, - 0.053443, - 0.0051682, - -0.019953, - -0.011267, - 0.028001, - 0.00042447, - 0.0045085, - -0.016352, - 0.055641, - -0.0021433, - 0.015327, - -0.0012169, - 0.036083, - 0.037566, - 0.012596, - 0.021837, - -0.0055335, - 0.0066136, - 0.020675, - 0.0057453, - 0.035419, - 0.0077504, - -0.010881, - 0.0041094, - -0.026182, - -0.015513, - 0.0085416, - 0.0050073, - 0.058972, - -0.0025001, - -0.018183, - 0.019173, - 0.0051627, - -0.0030138, - -0.003709, - -0.04757, - 0.060611, - 0.0065664, - -0.017475, - -0.0087842, - 0.026439, - 0.043504, - 0.0028697, - -0.011256, - 0.027817, - -0.034142, - 0.0038576, - 0.050567, - 0.022298, - 0.016941, - -0.032572, - 0.0016948, - 0.043675, - -0.082817, - 0.013029, - -0.013807, - -0.016891, - -0.034399, - -0.042849, - 0.082884, - 0.044552, - 0.018638, - 0.0090683, - -0.0045138, - 0.031374, - 0.03255, - -0.011495, - 0.0020149, - 0.0092581, - -0.0052887, - -0.012953, - -0.045361, - -0.010033, - 0.0045223, - -0.00013554, - -0.029823, - -0.057962, - 0.061572, - -0.015732, - -0.028781, - -0.01673, - -0.027686, - 0.052313, - -0.0233, - 0.013274, - 0.0030173, - -0.0034562, - 0.0047491, - 0.0036652, - -0.016446, - 0.033975, - -0.0028927, - -0.026908, - 0.0060959, - -0.052372, - -0.026358, - -0.0011327, - -0.014264, - -0.039697, - -0.0073171, - 0.025109, - -0.044299, - 0.0016171, - 0.025958, - 0.023655, - -0.014026, - -0.0076682, - 0.0088694, - 0.030797, - 0.045403, - 0.016377, - -0.0039038, - -0.0093893, - 0.0084803, - 0.020737, - -0.078183, - -0.005009, - -0.007365, - -0.011042, - -0.020063, - 0.03104, - 0.0085904, - -0.027542, - -0.0099436, - -0.022685, - -0.015104, - 0.0036423, - 0.061795, - 0.035175, - -0.002966, - 0.011937, - 0.0071896, - 0.024085, - -0.018423, - 0.030378, - -0.0033567, - -0.0052428, - 0.041245, - 0.0031979, - -0.0041081, - 0.06303, - -0.025976, - 0.037712, - 0.04777, - 0.06514, - -0.038302, - -0.043349, - 0.010565, - 0.016792, - -0.028819, - -0.01143, - -0.032978, - 0.020962, - -0.090538, - 0.0093879, - 0.013857, - -0.013141, - 0.060779, - 0.02033, - 0.02666, - -0.03561, - -0.013833, - -0.0081388, - 0.043622, - -0.00016349, - -0.0087037, - -0.0067195, - 0.06174, - 0.044693, - 0.02051, - -0.012309, - -0.00010289, - -0.043112, - -0.041595, - 0.037248, - -0.027348, - 0.045034, - -0.0024151, - -0.017215, - 0.026714, - 0.035753, - 0.03697, - -0.018062, - -0.0054417, - -0.024081, - -0.013769, - -0.012131, - 0.025416, - 0.035408, - -0.0038504, - 0.0042556, - 0.03345, - -0.034353, - 0.039007, - -0.052282, - 0.0070461, - 0.013871, - -0.0034042, - 0.048669, - -0.0011192, - -0.0080586, - -0.044602, - 0.034404, - 0.010411, - -0.0022801, - -0.024096, - -0.017237, - 0.021658, - 0.0073538, - -0.0036524, - 0.00035831, - 0.013258, - -0.014461, - 0.089185, - 0.06828, - 0.014447, - 0.022017, - -0.0014572, - -0.016348, - 0.022244, - 0.0063759, - 0.07493, - 0.020942, - -0.0035843, - 0.055172, - -0.055053, - -0.008422, - 0.019403, - -0.053707, - 0.026868, - 0.014399, - -0.070442, - -0.045127, - 0.044719, - -0.025945, - -0.011687, - -0.015161, - -0.034884, - 0.028449, - -0.0042346, - -0.0006763, - -0.011035, - -0.0066477, - -0.023094, - -0.034019, - 0.0057263, - 0.009197, - -0.036626, - -0.004286, - -0.010232, - 0.021884, - -0.039438, - 0.014049 - ], - "athletic": [ - -0.02186, - -0.10743, - 0.06247, - 0.040083, - -0.018641, - -0.044575, - -0.053431, - -0.081458, - 0.11473, - 0.027052, - -0.022881, - -0.020992, - 0.049131, - 0.049774, - 0.015012, - -0.050927, - 0.057711, - -0.011291, - 0.045179, - 0.011382, - 0.03816, - -0.076535, - -0.026149, - 0.090388, - 0.023767, - -0.032123, - 0.021039, - -0.027924, - 0.056215, - 0.019889, - 0.018202, - -0.056863, - 0.023948, - -0.071849, - 0.086287, - 0.070031, - 0.12112, - -0.0221, - 0.045239, - 0.012047, - 0.059365, - -0.13275, - 0.011261, - 0.026422, - 0.057309, - -0.012485, - 0.086876, - -0.016274, - -0.044011, - -0.023987, - 0.0026696, - -0.028808, - 0.040636, - 0.037756, - 0.05389, - 0.045689, - -0.0042256, - 0.0090777, - -0.026488, - -0.0020236, - 0.051856, - -0.0032741, - 0.10062, - 0.023793, - 0.10595, - -0.089799, - 0.040577, - -0.043615, - 0.048031, - -0.06673, - 0.040878, - -0.072739, - 0.044799, - 0.0077362, - 0.017921, - 0.090268, - -0.021103, - -0.017004, - 0.010185, - -0.026406, - -0.0031242, - 0.016447, - -0.025107, - 0.017554, - 0.010544, - -0.039285, - -0.090569, - 0.0076799, - -0.020618, - -0.016797, - 0.006368, - 0.015539, - -0.11065, - -0.0063544, - 0.024426, - 0.1111, - -0.097922, - -0.025297, - 0.094021, - 0.058665, - 0.10094, - 0.11448, - -0.0011224, - -0.015746, - 0.0076337, - -0.10165, - -0.074638, - -0.033035, - -0.03688, - 0.085284, - -0.073378, - 0.11703, - 0.031613, - 0.015015, - 0.0513, - 0.0019455, - -0.037888, - 0.030891, - -0.039149, - -0.014776, - 0.07422, - 0.023664, - -0.016639, - 0.0056154, - 0.09821, - -0.072267, - -0.027703, - -0.020375, - -0.010539, - 0.037305, - -0.0055554, - 0.037688, - 0.0088612, - 0.030923, - -0.058936, - -0.040591, - 0.01984, - 0.044601, - -0.020428, - -0.040218, - 0.059971, - 0.0056116, - -0.0021185, - -0.02498, - 0.025591, - 0.030182, - -0.0019749, - -0.07689, - 0.0029935, - 0.052514, - 0.017646, - 0.15877, - -0.0036616, - -0.061199, - 0.022827, - -0.02267, - 0.050477, - -0.0023317, - 0.024345, - 0.024409, - 0.022192, - -0.014929, - -0.086712, - 0.02792, - 0.0072717, - -0.027219, - 0.0078778, - 0.022512, - -0.055614, - -0.097437, - 0.1042, - -0.062185, - 0.019588, - 0.023546, - 0.094021, - 0.050898, - -0.0072291, - 0.075822, - -0.016701, - -0.055463, - -0.030068, - -0.073426, - -0.0059415, - -0.0034575, - -0.013744, - -0.054878, - -0.091332, - 0.089787, - 0.0010009, - 0.029612, - 0.01195, - 0.071004, - 0.10241, - -0.050132, - 0.015571, - -0.072553, - 0.0015356, - -0.045428, - 0.049106, - -0.020455, - -0.16083, - 0.034285, - -0.0026777, - -0.058562, - 0.064561, - 0.0096827, - -0.085406, - -0.01974, - -0.016242, - -0.01362, - 0.15262, - 0.0025389, - 0.0058244, - 0.049636, - -0.027108, - -0.01295, - 0.030126, - 0.020385, - -0.064002, - 0.058102, - -0.068363, - 0.026022, - -0.058532, - 0.085137, - -0.042454, - 0.049129, - 0.00022321, - 0.031092, - -0.044854, - -0.038257, - -0.017903, - -0.004923, - -0.065615, - -0.041732, - 0.01311, - 0.053216, - -0.017819, - -0.090291, - -0.080976, - -0.0039542, - 0.032372, - 0.0095171, - 0.044351, - -0.030992, - -0.10916, - 0.064744, - -0.035113, - -0.068502, - -0.014893, - -0.0025337, - -0.0063992, - 0.037028, - -0.033656, - -0.055568, - -0.013014, - 0.028865, - -0.029616, - -0.021422, - 0.058349, - 0.06194, - -0.03944, - -0.05873, - 0.018551, - 0.020236, - 0.070761, - 0.031335, - -0.023244, - -0.0013557, - 0.03428, - 0.0057639, - 0.032372, - 0.086326, - -0.11728, - -0.0092108, - 0.034843, - -0.090012, - -0.085249, - -0.037846, - -0.023213, - -0.007354, - 0.15924, - 0.0082589, - -0.0075814, - 0.020467, - 0.00048109, - 0.001589, - 0.011853, - -0.071404, - -0.046665, - -0.0030391, - 0.097637, - -0.045224, - 0.0070513, - 0.0072652, - 0.0057739, - 0.011484, - -0.044271, - 0.059885, - 0.013645, - -0.04697 - ], - "folklorists": [ - 0.041447, - -0.070595, - -0.012033, - 0.0028526, - -0.067594, - -0.017456, - -0.0089328, - -0.070459, - 0.0269, - -0.053561, - 0.038091, - 0.015448, - -0.028954, - -0.056527, - 0.047176, - 0.016991, - 0.070177, - -0.055855, - 0.014336, - 0.083336, - -0.036422, - -0.016963, - -0.002792, - 0.060375, - 0.037512, - 0.023712, - -0.035151, - 0.094919, - 0.10347, - -0.010942, - 0.00001239, - -0.025654, - 0.021449, - -0.015449, - -0.015297, - 0.059009, - 0.02458, - 0.062161, - 0.019285, - 0.013787, - 0.051958, - -0.049794, - 0.031101, - 0.049081, - 0.093983, - 0.021665, - 0.0045602, - -0.00081309, - -0.00028734, - -0.059838, - -0.043304, - 0.059665, - -0.03043, - 0.031833, - -0.00072162, - 0.10075, - -0.03178, - 0.051871, - -0.0034493, - -0.043504, - 0.0045563, - -0.071215, - 0.040951, - -0.0045342, - 0.0046165, - 0.02096, - -0.042946, - -0.020698, - 0.012249, - 0.038372, - -0.015601, - -0.00215, - 0.10363, - -0.010403, - -0.0068235, - 0.050408, - -0.0020892, - -0.043174, - 0.045667, - -0.070114, - -0.019941, - 0.071762, - 0.04035, - -0.0046258, - -0.010605, - -0.034978, - 0.05115, - -0.00023432, - 0.0049524, - 0.01783, - -0.057142, - 0.04376, - -0.047356, - -0.029636, - 0.049174, - 0.062673, - 0.00081036, - 0.037573, - 0.04539, - 0.039063, - 0.013453, - -0.040666, - -0.035716, - 0.0057637, - -0.013794, - -0.0088311, - 0.015103, - 0.031854, - 0.0064888, - -0.00059722, - -0.0099057, - 0.090882, - 0.018387, - -0.018935, - -0.028752, - 0.055266, - -0.01587, - 0.021961, - -0.0023243, - 0.024531, - -0.02915, - -0.012728, - -0.10182, - -0.020447, - 0.068816, - 0.01707, - -0.025789, - 0.040752, - -0.018673, - 0.14204, - -0.0084801, - 0.13717, - -0.04605, - 0.042491, - 0.019444, - 0.00060294, - -0.021611, - 0.057645, - -0.000092472, - 0.033777, - 0.0092118, - -0.014444, - 0.031118, - -0.026404, - -0.044841, - -0.071889, - 0.011628, - 0.050072, - -0.095995, - -0.059019, - 0.085247, - 0.10398, - -0.048706, - -0.02169, - 0.026937, - -0.0097799, - -0.0068872, - 0.0007502, - 0.013968, - 0.015743, - 0.026598, - 0.081207, - 0.020666, - -0.0094128, - 0.0098492, - -0.022046, - 0.040927, - 0.066522, - 0.0034773, - -0.039856, - -0.013854, - -0.03743, - 0.0001276, - -0.033957, - 0.027309, - 0.014792, - 0.0097367, - 0.011451, - 0.0015097, - -0.0076971, - -0.041667, - 0.068743, - -0.0011336, - -0.016653, - -0.059174, - -0.078968, - -0.042327, - 0.11022, - -0.033598, - -0.022029, - 0.024765, - 0.1026, - -0.12398, - -0.031568, - -0.017083, - 0.079842, - 0.035699, - -0.019068, - -0.020503, - -0.062704, - -0.082789, - -0.045098, - -0.0781, - 0.0019966, - 0.064892, - 0.053177, - -0.021319, - 0.0048406, - -0.036817, - -0.052298, - 0.031138, - 0.037891, - 0.0070028, - 0.0045186, - -0.081471, - 0.037546, - -0.022216, - -0.063855, - -0.048552, - -0.011351, - 0.012543, - -0.051909, - 0.01546, - 0.10313, - 0.083406, - -0.0041303, - 0.046511, - 0.092316, - -0.000077358, - -0.010381, - 0.013517, - 0.0026852, - -0.018731, - 0.048309, - -0.042032, - 0.038157, - 0.024289, - 0.045551, - 0.049405, - 0.032131, - -0.023759, - -0.011413, - -0.029379, - -0.017003, - 0.077782, - -0.038513, - -0.12463, - -0.036141, - -0.054609, - -0.018667, - 0.069578, - 0.006927, - -0.015651, - 0.027066, - -0.018884, - 0.047339, - -0.038421, - -0.0092149, - 0.062699, - -0.0020005, - 0.076473, - -0.049397, - -0.0064029, - 0.067968, - -0.020018, - -0.02742, - 0.034391, - 0.024138, - 0.022204, - -0.021482, - -0.0081378, - 0.041806, - -0.050574, - -0.030306, - 0.022522, - 0.0052181, - 0.0063009, - -0.037337, - -0.039501, - -0.034685, - -0.0083671, - -0.019045, - -0.018273, - -0.0043069, - -0.021793, - 0.024649, - 0.0071056, - -0.089827, - -0.016638, - -0.018317, - 0.040404, - -0.014828, - -0.027627, - -0.057191, - 0.026547, - 0.018497, - 0.020291, - 0.022623, - 0.019335, - -0.0091623 - ], - "laptop": [ - -0.15139, - -0.0050187, - -0.03795, - 0.044698, - 0.014746, - -0.050316, - 0.048209, - -0.11773, - 0.031185, - 0.0028129, - -0.10643, - -0.020415, - -0.032836, - 0.0081509, - 0.030994, - -0.0099946, - 0.11149, - 0.01401, - 0.055685, - -0.087468, - -0.034222, - 0.041358, - -0.063801, - 0.036115, - 0.065566, - -0.034777, - 0.0052671, - 0.023898, - -0.014218, - -0.0069717, - 0.1294, - -0.0061422, - 0.0060782, - -0.031867, - 0.0083155, - -0.0097334, - 0.032275, - 0.043924, - 0.057067, - -0.019293, - -0.02637, - -0.13736, - 0.021622, - 0.10133, - 0.024285, - -0.0098713, - 0.098828, - -0.064745, - 0.015506, - 0.0043191, - 0.038671, - 0.007781, - -0.031468, - 0.013737, - -0.07535, - 0.057972, - 0.014976, - -0.011692, - -0.056807, - -0.014939, - -0.011019, - -0.0562, - 0.14462, - 0.11535, - 0.077593, - -0.046984, - 0.080212, - 0.0054413, - -0.1368, - 0.061389, - 0.011467, - 0.055619, - 0.040971, - 0.0081298, - -0.035012, - -0.025473, - 0.071097, - -0.022325, - 0.074029, - -0.0025986, - -0.0040491, - -0.069136, - -0.012227, - 0.039228, - -0.0045131, - -0.027093, - -0.054844, - 0.0023601, - -0.0051759, - 0.023543, - 0.034078, - 0.028016, - -0.092067, - 0.024526, - 0.053866, - 0.1006, - 0.075378, - -0.14458, - 0.012156, - -0.02705, - 0.075914, - 0.068586, - 0.10145, - -0.11107, - -0.026298, - -0.11416, - -0.032364, - 0.011117, - -0.029813, - -0.015349, - 0.1262, - 0.080394, - 0.05808, - 0.078436, - -0.015743, - -0.025863, - -0.0083721, - -0.01671, - -0.048908, - -0.0094443, - 0.042949, - -0.011423, - 0.012642, - -0.052262, - 0.036528, - 0.041269, - 0.032598, - -0.11698, - -0.023482, - 0.046735, - -0.030123, - -0.0089157, - 0.064511, - -0.029954, - 0.042007, - -0.10061, - 0.049099, - 0.030302, - -0.064076, - -0.019084, - 0.085958, - 0.063457, - 0.063311, - -0.095499, - -0.037471, - 0.032844, - 0.037773, - -0.059083, - -0.037385, - -0.034717, - 0.024935, - 0.067371, - 0.083831, - -0.067112, - -0.061661, - 0.03501, - -0.014858, - -0.00033226, - -0.03362, - -0.034275, - 0.057835, - 0.021828, - -0.039404, - -0.018219, - 0.033374, - -0.022464, - 0.043802, - -0.036157, - 0.012512, - 0.10712, - -0.025111, - 0.10657, - 0.0049828, - -0.0097233, - -0.0075744, - 0.038986, - -0.0063695, - -0.010773, - 0.038748, - 0.012536, - 0.065461, - -0.06511, - -0.078792, - -0.04717, - -0.019268, - -0.072972, - -0.043613, - 0.11262, - -0.019854, - -0.015464, - 0.033276, - 0.0074853, - -0.01972, - 0.019808, - -0.0027081, - 0.022008, - -0.0036497, - 0.056493, - -0.018268, - 0.014527, - -0.14598, - 0.1283, - -0.036237, - -0.022643, - -0.022574, - 0.000125, - -0.01854, - 0.0048088, - -0.046198, - -0.050802, - 0.13081, - -0.016246, - 0.0084028, - 0.064786, - -0.030988, - -0.012629, - -0.020339, - 0.0039637, - 0.019802, - 0.035046, - 0.11251, - 0.053542, - -0.053337, - 0.10516, - 0.0034523, - -0.11605, - 0.010295, - 0.089384, - 0.012425, - -0.052328, - -0.014731, - -0.08483, - -0.048659, - -0.11421, - 0.035004, - 0.031119, - 0.099052, - 0.020313, - -0.079017, - -0.041894, - 0.049079, - -0.064934, - 0.099211, - -0.053295, - -0.019652, - 0.03081, - 0.016106, - -0.007595, - -0.0359, - -0.0094141, - -0.0063155, - -0.010916, - -0.15992, - -0.042484, - 0.03938, - -0.081797, - 0.015675, - -0.014484, - -0.089752, - 0.0012986, - -0.0088901, - 0.0063057, - -0.094759, - -0.045587, - 0.042474, - 0.0081513, - -0.061166, - -0.00392, - -0.012054, - 0.045144, - -0.083933, - 0.1154, - -0.1016, - -0.058069, - -0.013548, - -0.064364, - -0.020295, - 0.08009, - 0.078297, - 0.052412, - 0.09114, - 0.023798, - 0.029956, - 0.03015, - -0.041439, - -0.071992, - -0.13106, - -0.010737, - 0.0060124, - 0.032524, - -0.050225, - 0.0099669, - -0.098252, - 0.01913, - 0.025928, - 0.053579, - -0.064257, - -0.0054651, - 0.068765, - -0.035908 - ], - "livestock": [ - 0.0079461, - -0.0071394, - -0.016372, - -0.0052877, - -0.003821, - -0.0044801, - -0.047783, - -0.070264, - 0.041749, - 0.0099081, - -0.0011601, - -0.037111, - 0.056586, - -0.035056, - 0.024767, - -0.014441, - 0.062338, - -0.0055869, - 0.020522, - 0.014068, - 0.050661, - -0.10928, - 0.045046, - 0.029032, - 0.030506, - 0.0052405, - -0.053081, - 0.052354, - 0.0031808, - 0.022441, - 0.056042, - -0.0091058, - 0.040088, - 0.00096432, - 0.049479, - 0.033253, - -0.010601, - -0.019368, - 0.021955, - 0.060013, - -0.00099813, - -0.10299, - 0.044737, - 0.029978, - -0.014232, - -0.05066, - 0.0025458, - 0.013237, - -0.023712, - -0.038379, - 0.031418, - 0.029261, - 0.018923, - -0.067005, - -0.061482, - 0.031986, - -0.0018018, - 0.045717, - -0.02308, - -0.063771, - -0.010117, - 0.041649, - 0.11803, - 0.05542, - 0.048055, - -0.0011594, - 0.047333, - -0.025631, - 0.012629, - -0.011344, - 0.025061, - -0.028007, - 0.079347, - -0.016673, - -0.0385, - 0.10555, - -0.044902, - 0.0028524, - 0.048469, - 0.0064171, - -0.0094985, - -0.035038, - -0.02223, - 0.043503, - 0.022513, - -0.023525, - -0.0011504, - -0.01474, - 0.011608, - -0.0113, - -0.041606, - 0.052267, - -0.085239, - -0.00489, - -0.05501, - 0.05126, - -0.029642, - 0.034323, - 0.062796, - -0.029805, - -0.030498, - -0.056302, - -0.015474, - 0.017473, - 0.047628, - -0.07469, - -0.070884, - 0.0051465, - -0.0078397, - 0.0070309, - 0.024363, - 0.036218, - 0.056359, - 0.061179, - 0.016197, - 0.0034589, - -0.0042774, - -0.015645, - -0.045729, - -0.014132, - -0.085529, - 0.041416, - 0.01727, - -0.032576, - 0.060115, - 0.057262, - -0.021114, - -0.095874, - -0.041372, - 0.074991, - 0.070885, - 0.022398, - -0.020395, - -0.016924, - 0.078521, - 0.0043347, - -0.064125, - 0.040289, - 0.020425, - 0.038064, - -0.099771, - -0.025925, - -0.012063, - 0.038435, - 0.069021, - -0.053407, - 0.0051039, - -0.0052682, - -0.019087, - -0.092057, - 0.0171, - 0.080171, - 0.008891, - -0.085138, - 0.065819, - -0.002316, - 0.039344, - 0.036932, - -0.053915, - -0.018784, - 0.042673, - -0.037886, - -0.052355, - 0.087763, - 0.036281, - -0.0036663, - 0.018826, - 0.03539, - 0.0093669, - 0.030721, - 0.022407, - -0.041691, - 0.052282, - 0.022769, - -0.031192, - 0.067499, - 0.040994, - 0.055032, - -0.050368, - 0.0058474, - 0.0048289, - 0.043912, - -0.0059937, - -0.0062302, - -0.038429, - -0.087833, - 0.042516, - 0.10032, - -0.046496, - -0.07869, - -0.030525, - 0.021921, - -0.033538, - -0.0045031, - 0.01307, - -0.02996, - 0.044266, - 0.026589, - 0.024213, - 0.0050387, - -0.15199, - 0.086604, - -0.0054447, - -0.075921, - -0.035831, - -0.0061093, - -0.0518, - 0.0029536, - 0.018354, - -0.014589, - 0.085461, - -0.018388, - 0.033559, - 0.014342, - -0.018827, - 0.091686, - 0.0084045, - -0.0022056, - 0.0005695, - 0.01755, - -0.024704, - -0.03214, - 0.001711, - 0.090166, - 0.020775, - -0.050158, - -0.027075, - 0.054016, - 0.011137, - -0.062337, - 0.055906, - -0.002744, - -0.072531, - -0.071358, - 0.023117, - 0.044213, - 0.017282, - 0.032258, - -0.018452, - -0.082122, - 0.010132, - 0.074331, - 0.030267, - -0.013478, - -0.011143, - 0.082854, - -0.019861, - -0.039225, - 0.076622, - 0.019531, - -0.025424, - -0.024592, - 0.032478, - 0.047367, - -0.0058306, - -0.01219, - 0.00088684, - -0.021221, - 0.018776, - 0.043016, - 0.013008, - -0.016345, - 0.0023084, - -0.033053, - 0.037877, - -0.017825, - 0.040428, - 0.023125, - -0.0092344, - -0.0099045, - -0.061471, - 0.061072, - -0.10278, - -0.043347, - -0.027982, - -0.030225, - -0.027654, - -0.032368, - -0.038719, - -0.068621, - 0.074939, - 0.043853, - -0.013179, - 0.027986, - 0.024761, - 0.026613, - 0.050449, - 0.0076531, - 0.024459, - -0.001374, - 0.028395, - 0.080948, - -0.08231, - 0.02088, - -0.021129, - -0.021217, - -0.037166, - 0.040471, - -0.00087514, - -0.025967 - ], - "matrimonial": [ - -0.0037468, - -0.02335, - 0.054575, - -0.030388, - 0.015888, - -0.0069795, - 0.011919, - -0.059985, - 0.04878, - 0.014593, - 0.042606, - -0.050001, - 0.029266, - -0.0031467, - -0.038228, - 0.0060552, - 0.099185, - -0.034352, - 0.0083846, - 0.045797, - -0.060398, - 0.042066, - 0.016125, - 0.059826, - 0.041508, - -0.032373, - -0.020901, - -0.00029148, - 0.0067888, - -0.062685, - -0.012583, - 0.002967, - -0.072201, - -0.087905, - 0.062039, - 0.032501, - -0.038611, - 0.06352, - -0.027185, - 0.036478, - 0.054454, - -0.067096, - 0.012288, - -0.020578, - -0.028607, - 0.0047093, - 0.014983, - -0.012454, - -0.030832, - -0.051612, - -0.02937, - -0.015249, - -0.00030004, - 0.018368, - -0.0035949, - -0.073959, - -0.050658, - -0.0348, - -0.025811, - -0.028181, - 0.011944, - 0.070614, - 0.095946, - -0.024414, - 0.049072, - -0.015069, - -0.012077, - 0.056272, - -0.020483, - -0.041085, - 0.010915, - -0.065746, - 0.01478, - -0.071729, - -0.0030806, - -0.013351, - -0.049238, - 0.019905, - 0.047461, - -0.012438, - 0.011837, - 0.0033438, - -0.04336, - 0.028283, - -0.03835, - -0.033252, - 0.048389, - -0.065038, - -0.064501, - -0.010237, - -0.027944, - 0.0016349, - -0.051423, - 0.03782, - 0.030973, - 0.03492, - -0.050203, - 0.028965, - 0.010518, - -0.014215, - -0.03294, - 0.064484, - -0.072948, - -0.077997, - 0.03206, - -0.082839, - 0.053701, - -0.018861, - 0.010328, - -0.065503, - 0.023183, - 0.029194, - 0.023298, - 0.0088078, - 0.0015833, - -0.0064931, - 0.060342, - 0.025913, - -0.051805, - 0.029421, - 0.038999, - 0.013786, - 0.061999, - 0.016394, - 0.096903, - 0.015433, - 0.052638, - -0.0053761, - 0.0059727, - 0.10012, - 0.031384, - -0.039704, - -0.025981, - -0.046082, - -0.082907, - 0.039213, - -0.04932, - 0.044982, - -0.022432, - -0.019273, - 0.020943, - -0.032347, - -0.015593, - 0.03479, - -0.03148, - 0.040755, - -0.032985, - 0.021676, - -0.035672, - -0.028677, - 0.017328, - 0.10854, - 0.048364, - -0.023433, - 0.067823, - -0.02306, - -0.018333, - 0.015067, - 0.045679, - -0.018169, - 0.0070838, - 0.02727, - -0.068525, - 0.004809, - -0.010401, - 0.038237, - 0.041288, - 0.046457, - -0.026859, - 0.034104, - -0.025308, - -0.025885, - -0.034625, - -0.052011, - -0.043911, - 0.043296, - -0.023985, - 0.0080845, - -0.023359, - -0.044335, - 0.0081373, - -0.071089, - 0.0022219, - -0.011023, - -0.011702, - -0.0040226, - -0.010535, - 0.10148, - 0.020248, - 0.014595, - -0.059539, - 0.034849, - 0.062075, - 0.039704, - -0.029253, - 0.0058236, - 0.062674, - 0.057725, - -0.046198, - 0.010174, - -0.12691, - 0.044609, - 0.024774, - 0.024809, - -0.0038596, - 0.030765, - 0.035553, - -0.045062, - 0.029455, - 0.043561, - 0.14565, - 0.0048582, - -0.013841, - -0.040096, - 0.047655, - 0.0050238, - -0.005898, - -0.021593, - 0.0002376, - -0.04172, - 0.032815, - -0.086705, - -0.033702, - 0.054402, - -0.023108, - -0.078334, - 0.0096648, - 0.052091, - -0.022366, - 0.007487, - 0.014638, - -0.042767, - -0.019417, - -0.057618, - 0.0029315, - -0.023344, - -0.035145, - 0.00051883, - -0.044792, - -0.006462, - 0.042804, - -0.051391, - -0.055744, - 0.022189, - -0.11196, - 0.055485, - -0.060273, - 0.018631, - -0.0076235, - 0.035948, - 0.0086377, - -0.016422, - 0.01998, - -0.0098631, - -0.031815, - 0.016185, - -0.0090812, - 0.010076, - 0.044222, - 0.018866, - 0.0079941, - 0.026388, - -0.0035845, - -0.010347, - 0.013534, - -0.025781, - 0.02581, - 0.015257, - -0.014697, - 0.034221, - -0.0069338, - 0.075449, - -0.068615, - -0.018507, - 0.029595, - -0.079187, - -0.015236, - 0.013665, - -0.014973, - -0.028549, - 0.15592, - -0.0095901, - 0.02681, - -0.037348, - 0.020117, - 0.079482, - -0.028178, - 0.031024, - -0.043053, - 0.064844, - -0.013144, - -0.023634, - 0.000036674, - 0.034025, - -0.0077637, - -0.017748, - -0.005234, - 0.027614, - 0.023137, - 0.050902 - ], - "videogames": [ - 0.010488, - -0.083464, - -0.0091794, - 0.019846, - 0.011541, - -0.030747, - 0.0061479, - -0.080343, - 0.038813, - 0.062067, - 0.01724, - -0.046332, - -0.03199, - -0.025524, - 0.038138, - 0.029901, - 0.080983, - 0.039267, - 0.026689, - -0.068804, - 0.0090497, - -0.035185, - 0.028197, - 0.046638, - -0.026214, - 0.0062534, - 0.054772, - -0.0095116, - 0.069947, - -0.024953, - -0.055557, - -0.048001, - 0.023355, - -0.024855, - 0.059268, - -0.0010229, - 0.0051729, - -0.057282, - -0.011489, - 0.0058276, - -0.056677, - -0.072607, - -0.015872, - -0.0099159, - 0.009961, - -0.0058594, - 0.021847, - -0.0057434, - 0.032077, - 0.00053856, - -0.0062718, - -0.020845, - 0.030922, - -0.018988, - -0.073596, - 0.082454, - 0.06414, - -0.011262, - -0.025559, - 0.025359, - -0.054585, - -0.082018, - 0.078076, - 0.072707, - 0.051672, - -0.017139, - 0.0055284, - -0.0047911, - 0.02667, - 0.0072095, - 0.012007, - -0.021598, - 0.020267, - 0.089644, - -0.028254, - -0.023478, - 0.027109, - -0.037822, - 0.02982, - -0.015358, - 0.0055437, - -0.0038748, - -0.065559, - 0.02856, - -0.025857, - 0.0031566, - 0.021639, - 0.01363, - -0.0075338, - 0.033361, - 0.041115, - 0.0062394, - -0.075941, - 0.021059, - 0.04, - 0.044329, - -0.0018409, - -0.066479, - 0.030581, - -0.017207, - 0.0085603, - 0.015444, - -0.0040156, - -0.046564, - 0.029446, - -0.045501, - -0.055001, - 0.050412, - -0.036368, - 0.011594, - -0.057165, - 0.046714, - 0.039558, - -0.0076656, - 0.041086, - 0.020484, - -0.10751, - -0.013083, - -0.039592, - -0.029888, - -0.05547, - 0.069552, - 0.012072, - -0.042574, - 0.048227, - 0.026274, - -0.017963, - -0.027539, - 0.0159, - 0.087184, - 0.0064814, - 0.055383, - -0.012937, - 0.0074049, - 0.088881, - -0.040579, - 0.032617, - 0.0094788, - 0.017718, - -0.042015, - 0.084245, - 0.015175, - 0.091922, - 0.024958, - 0.02319, - -0.041747, - -0.056545, - -0.069795, - 0.067253, - -0.00026412, - 0.029082, - 0.087579, - -0.053148, - -0.044053, - -0.045625, - 0.023076, - -0.016805, - 0.094201, - 0.075972, - -0.035206, - -0.023888, - -0.014815, - -0.0074255, - -0.02969, - -0.043389, - -0.010953, - -0.025872, - 0.0025745, - 0.017141, - -0.077194, - -0.003944, - -0.03246, - 0.040893, - -0.011663, - -0.0090636, - 0.054889, - 0.013215, - 0.028279, - -0.037348, - -0.028405, - 0.076997, - -0.024353, - -0.059187, - -0.029599, - 0.010547, - 0.019812, - -0.0021589, - 0.070259, - 0.0056716, - -0.036025, - -0.06609, - 0.093664, - -0.067073, - -0.0075169, - -0.029617, - 0.02361, - -0.032074, - -0.00074873, - 0.0067292, - -0.0040122, - -0.14696, - 0.037227, - -0.057132, - -0.056477, - 0.038173, - 0.091627, - 0.039232, - 0.032475, - -0.0038143, - -0.031186, - 0.069047, - 0.0000026359, - 0.02897, - 0.0066173, - 0.026297, - 0.032116, - -0.044353, - 0.0025472, - -0.015748, - -0.023482, - 0.042051, - 0.0014447, - 0.006045, - 0.076602, - -0.016632, - -0.085301, - 0.042357, - 0.078253, - -0.060121, - 0.009711, - -0.063719, - -0.016704, - -0.059015, - 0.010152, - 0.016527, - -0.010322, - -0.029637, - -0.00044932, - 0.05329, - -0.040999, - -0.003222, - 0.018155, - 0.035251, - -0.0173, - 0.018747, - 0.02996, - -0.031997, - 0.011687, - -0.032747, - 0.0026876, - 0.036902, - -0.010382, - -0.017291, - 0.032202, - -0.053899, - 0.012169, - -0.05527, - -0.0045797, - 0.042042, - -0.017992, - 0.051249, - 0.0073653, - 0.031891, - -0.025894, - 0.0027177, - 0.042135, - -0.0026791, - -0.025153, - 0.042494, - -0.016251, - 0.026814, - 0.081026, - -0.079208, - 0.002644, - -0.052243, - -0.012523, - 0.031872, - 0.082537, - 0.0054657, - 0.023827, - 0.028825, - 0.10521, - 0.031045, - -0.064203, - -0.017776, - -0.0046369, - -0.0050177, - -0.014734, - -0.02854, - -0.031364, - -0.034736, - -0.013141, - -0.035024, - 0.0099347, - 0.068938, - 0.0019618, - -0.022273, - 0.042241, - 0.064734, - -0.028885 - ], - "cell-phone": [ - -0.057446, - -0.00073866, - 0.0030493, - -0.0034134, - -0.014911, - -0.023043, - 0.038011, - -0.063418, - 0.073793, - 0.055859, - 0.015344, - -0.03401, - -0.0186, - -0.009953, - -0.072993, - -0.026009, - 0.05856, - 0.019087, - 0.035343, - -0.0034545, - 0.066321, - -0.059286, - 0.041951, - 0.05304, - 0.031979, - 0.00030611, - 0.091911, - 0.041804, - -0.017699, - -0.010404, - -0.052087, - 0.053951, - 0.03347, - -0.037756, - 0.04348, - -0.019526, - -0.0067407, - 0.047916, - 0.036805, - -0.027242, - -0.062432, - -0.12849, - -0.030118, - 0.019454, - 0.083755, - 0.0025744, - -0.014883, - -0.0026539, - -0.053462, - -0.0039086, - 0.03121, - -0.042132, - 0.0057447, - -0.020706, - 0.0035351, - 0.044037, - -0.043944, - -0.012058, - 0.025514, - 0.042003, - -0.042479, - -0.0045622, - 0.098553, - 0.047287, - 0.014708, - 0.017025, - 0.046714, - -0.0040999, - -0.056238, - -0.0010393, - -0.032333, - -0.013494, - 0.038557, - -0.034399, - -0.069655, - 0.011507, - 0.044291, - -0.043083, - -0.011336, - -0.036837, - -0.028044, - -0.066011, - -0.032406, - 0.0090095, - -0.014309, - -0.080737, - -0.0073445, - 0.0052196, - -0.040262, - 0.033626, - -0.011194, - 0.048891, - -0.060078, - 0.0014294, - 0.010302, - 0.072879, - -0.0096934, - -0.078254, - 0.035625, - 0.021664, - 0.013734, - 0.033279, - -0.01746, - 0.0069305, - 0.020473, - -0.067347, - -0.0071652, - 0.00060926, - 0.092323, - -0.021305, - 0.0066021, - 0.043952, - 0.048143, - 0.067405, - -0.03474, - -0.01664, - -0.015189, - 0.028332, - -0.068475, - -0.034831, - -0.045965, - 0.063496, - 0.041875, - 0.014219, - 0.071637, - -0.0086191, - 0.025682, - -0.034112, - 0.037348, - 0.09132, - -0.0017714, - 0.012095, - -0.07113, - -0.0073943, - 0.040892, - -0.0078164, - 0.060935, - 0.009075, - -0.032579, - -0.012036, - 0.086036, - 0.047157, - 0.023733, - 0.017546, - -0.015289, - -0.0018282, - -0.033361, - 0.02896, - 0.023364, - -0.074526, - 0.010694, - 0.082476, - -0.027949, - -0.0029968, - -0.031756, - 0.025157, - -0.024231, - -0.007498, - 0.048146, - 0.031366, - 0.042099, - 0.0073763, - -0.041247, - -0.0045498, - -0.011811, - -0.036843, - 0.0023044, - -0.028996, - 0.030219, - 0.023842, - -0.049295, - 0.12503, - 0.036589, - 0.071788, - -0.064704, - 0.049138, - -0.0080035, - 0.005109, - -0.0090948, - -0.005834, - 0.055753, - -0.026764, - 0.020081, - -0.0033271, - -0.0099171, - -0.10595, - -0.022686, - 0.11727, - 0.056719, - 0.026616, - -0.00061655, - 0.045117, - 0.044975, - 0.033577, - 0.022899, - 0.0027502, - 0.0067583, - 0.033403, - 0.019793, - 0.030617, - -0.11456, - 0.06966, - -0.025441, - 0.016369, - 0.010445, - 0.077513, - -0.007347, - 0.022235, - -0.072835, - -0.0036215, - 0.13076, - 0.016656, - 0.031895, - 0.061732, - -0.013386, - -0.048657, - -0.01839, - -0.03068, - 0.029845, - -0.019231, - -0.0059257, - -0.01095, - 0.01509, - 0.067495, - 0.013645, - -0.024847, - 0.020956, - -0.019941, - -0.026718, - 0.0006373, - -0.0025378, - -0.04938, - -0.029746, - 0.0027493, - 0.047598, - 0.022624, - 0.049279, - 0.035482, - 0.053989, - -0.031957, - 0.031813, - -0.064951, - 0.062088, - -0.01477, - -0.048294, - -0.049498, - 0.023296, - 0.055184, - -0.017679, - -0.024745, - 0.029916, - -0.0041303, - -0.12524, - -0.015859, - 0.033199, - -0.0048601, - -0.015689, - 0.0081235, - -0.021044, - 0.018778, - 0.0058901, - -0.000032132, - 0.017899, - -0.04967, - -0.0039277, - 0.0053289, - -0.021705, - 0.03823, - 0.054043, - 0.058807, - -0.089022, - 0.074896, - -0.063871, - -0.022839, - -0.03603, - -0.041609, - -0.035837, - 0.029935, - 0.059348, - -0.01128, - 0.1377, - -0.039793, - -0.050571, - 0.035693, - -0.038883, - -0.039105, - -0.15348, - -0.005841, - 0.005368, - -0.0074951, - 0.059857, - -0.014227, - -0.089593, - 0.01759, - 0.028071, - -0.034181, - -0.0088158, - 0.0051363, - 0.035675, - -0.046371 - ], - "civilized": [ - -0.008125, - -0.01392, - 0.052392, - -0.0087942, - -0.047606, - 0.026879, - -0.01691, - -0.064735, - -0.045745, - 0.089806, - -0.042081, - -0.025848, - 0.041746, - 0.015097, - -0.051238, - -0.029453, - 0.082994, - -0.018134, - 0.037818, - 0.071001, - -0.018985, - -0.028898, - 0.016733, - 0.072291, - -0.053827, - 0.012203, - 0.016103, - 0.0060705, - 0.05924, - 0.014036, - -0.044888, - -0.0052215, - 0.056921, - -0.0085863, - 0.051231, - 0.015218, - 0.052948, - 0.078223, - -0.0075622, - 0.086892, - -0.030942, - -0.093991, - 0.040621, - 0.012353, - -0.024715, - -0.094556, - 0.026944, - 0.016209, - 0.018725, - -0.0062546, - 0.01454, - 0.025258, - 0.013309, - -0.071481, - -0.057296, - 0.0063588, - 0.083869, - -0.064574, - -0.026492, - -0.0030262, - 0.051131, - -0.0185, - 0.16001, - 0.015541, - 0.018701, - -0.012899, - 0.022212, - 0.043039, - 0.057705, - -0.031147, - 0.04873, - -0.019575, - 0.02647, - -0.0033999, - -0.00084266, - 0.013484, - -0.024739, - -0.012395, - 0.0041616, - 0.044376, - 0.0217, - 0.054316, - 0.039319, - 0.057747, - 0.020206, - -0.043952, - -0.0090018, - -0.018764, - -0.023289, - 0.014519, - -0.055124, - 0.021523, - -0.076479, - -0.01617, - -0.014994, - 0.077031, - 0.027903, - -0.033719, - 0.022482, - -0.014848, - 0.043409, - 0.058912, - -0.0016961, - -0.033962, - -0.021183, - -0.10134, - 0.048728, - 0.034006, - -0.028452, - -0.067292, - 0.010373, - 0.064073, - 0.0099638, - 0.012267, - -0.072302, - -0.052024, - -0.030812, - -0.018387, - -0.054916, - -0.0090988, - 0.025687, - -0.02227, - -0.063572, - 0.060464, - 0.035495, - 0.027605, - 0.0057674, - -0.010915, - -0.0051836, - 0.029077, - 0.0023681, - 0.056764, - -0.00015762, - 0.034741, - 0.014698, - -0.089532, - -0.0064591, - 0.019333, - -0.021017, - -0.032843, - 0.0080083, - -0.064642, - -0.0045129, - -0.042989, - 0.081492, - 0.040389, - 0.044031, - -0.001511, - 0.029079, - -0.039901, - 0.067743, - 0.053735, - -0.060798, - -0.044772, - -0.026571, - 0.009351, - 0.020979, - 0.01541, - 0.028123, - -0.08494, - 0.057065, - -0.027109, - -0.01325, - 0.00424, - -0.034792, - 0.053866, - 0.0094343, - 0.021746, - -0.0032423, - -0.037929, - 0.01, - -0.010267, - 0.02987, - 0.051485, - -0.002996, - 0.054467, - 0.0098055, - 0.099445, - 0.0050039, - 0.019417, - 0.0055776, - 0.061266, - -0.010289, - 0.044765, - -0.016844, - 0.011027, - 0.015554, - 0.080695, - 0.0036044, - -0.0047643, - 0.076194, - 0.056869, - 0.023249, - -0.021706, - 0.0056419, - -0.0010741, - -0.033705, - -0.0049289, - -0.028371, - 0.052481, - -0.10157, - 0.022452, - 0.02908, - -0.014025, - -0.009934, - 0.021274, - 0.01031, - -0.011198, - 0.03327, - -0.0096862, - 0.037709, - -0.033174, - 0.016606, - 0.01269, - -0.016809, - 0.0051298, - 0.03273, - -0.032774, - -0.037703, - 0.001201, - -0.038484, - 0.031338, - -0.010948, - 0.077264, - -0.10123, - 0.065076, - -0.008305, - 0.070985, - -0.035135, - -0.076733, - 0.017069, - -0.013643, - -0.051504, - 0.012819, - 0.03733, - -0.033291, - -0.045075, - 0.054733, - 0.024094, - -0.030109, - 0.10203, - 0.031571, - 0.0090877, - 0.040403, - -0.10473, - 0.029407, - -0.00029379, - -0.0012863, - -0.067748, - -0.11098, - 0.074889, - -0.01073, - -0.01398, - -0.015748, - -0.016039, - 0.060394, - -0.0044751, - 0.053564, - 0.0083416, - -0.0083239, - -0.035698, - 0.040509, - 0.030908, - 0.0054164, - -0.053431, - -0.0092677, - 0.09909, - 0.00028956, - 0.012447, - 0.036728, - -0.041484, - 0.047584, - -0.092053, - -0.028037, - -0.012285, - -0.033374, - -0.040243, - 0.016631, - 0.010411, - -0.067319, - 0.042289, - -0.0011399, - -0.050387, - -0.04175, - -0.049176, - 0.084069, - 0.043943, - -0.097488, - 0.03681, - 0.085125, - -0.016198, - 0.0033962, - -0.015426, - -0.061055, - -0.014567, - 0.0011514, - 0.049733, - 0.072278, - -0.12386, - -0.029587 - ], - "spooks": [ - -0.011688, - -0.079022, - -0.081593, - 0.04986, - -0.073769, - -0.1175, - 0.016662, - -0.088989, - 0.04878, - 0.018025, - -0.0036159, - 0.0084296, - 0.036252, - -0.072603, - -0.044733, - -0.00045593, - 0.082276, - -0.0093295, - 0.079162, - -0.066555, - 0.054725, - -0.038335, - 0.097016, - 0.054528, - 0.030307, - 0.025927, - 0.10634, - 0.013095, - 0.095341, - 0.039806, - -0.021005, - -0.11746, - -0.07715, - 0.033788, - 0.02455, - -0.018366, - -0.035896, - 0.039184, - 0.018297, - -0.022346, - -0.035701, - -0.06147, - -0.10506, - 0.01467, - 0.043704, - 0.025146, - -0.0030231, - -0.013011, - 0.022657, - -0.046323, - 0.016483, - 0.056268, - 0.055526, - -0.040012, - -0.017341, - 0.069412, - -0.032785, - -0.023513, - -0.036353, - -0.017134, - -0.016048, - -0.029386, - 0.080422, - -0.037867, - -0.046463, - 0.023415, - -0.035407, - -0.030948, - 0.0014352, - 0.068419, - 0.031279, - -0.003265, - 0.11331, - 0.04913, - -0.051831, - 0.023464, - 0.11017, - -0.014131, - 0.016311, - -0.042406, - -0.058532, - 0.034703, - 0.029929, - 0.14829, - 0.035847, - -0.016198, - 0.031047, - -0.022112, - 0.071488, - 0.061397, - -0.018926, - -0.095831, - -0.10863, - -0.061756, - 0.053236, - 0.043644, - -0.029687, - -0.076653, - 0.021112, - 0.032799, - -0.0065746, - 0.038608, - -0.0069929, - -0.018033, - 0.089942, - -0.12252, - 0.10474, - -0.048635, - 0.072121, - 0.037027, - -0.017788, - 0.081572, - 0.068668, - 0.044048, - -0.054638, - -0.015519, - -0.095089, - 0.048728, - -0.09824, - -0.0023104, - 0.093273, - 0.042586, - -0.024878, - -0.028808, - 0.14881, - 0.037369, - 0.015374, - -0.057525, - -0.0671, - 0.078854, - -0.020668, - 0.12675, - 0.046474, - 0.044459, - 0.10697, - -0.12983, - -0.045364, - 0.12294, - -0.084938, - 0.10518, - -0.020941, - -0.035156, - -0.015702, - 0.034554, - -0.022942, - -0.041998, - -0.017443, - 0.006719, - -0.0257, - -0.096193, - 0.081966, - 0.11792, - -0.016165, - -0.023572, - -0.024551, - -0.052632, - -0.08183, - -0.033272, - -0.006742, - -0.03565, - 0.075231, - 0.017144, - 0.0076535, - -0.00076275, - -0.076802, - -0.053828, - -0.013536, - 0.066288, - 0.061475, - 0.012789, - -0.03045, - -0.060725, - -0.079191, - -0.032415, - 0.053103, - 0.065145, - 0.051265, - 0.095197, - 0.052807, - 0.022238, - 0.028788, - 0.0058581, - -0.018307, - -0.063035, - -0.072296, - -0.011421, - 0.024883, - 0.080719, - 0.080967, - 0.046859, - -0.050558, - 0.062844, - -0.14373, - -0.032324, - 0.02999, - 0.040156, - 0.027812, - 0.085359, - -0.046745, - 0.094442, - -0.16784, - 0.0641, - -0.050437, - 0.060892, - 0.043273, - -0.040904, - 0.0065481, - 0.011403, - -0.067026, - -0.022723, - 0.052419, - 0.013644, - 0.085554, - 0.06017, - -0.04665, - 0.0021598, - -0.14169, - 0.0029001, - -0.0082744, - 0.015304, - 0.051562, - -0.0058104, - -0.076868, - 0.10149, - 0.078349, - -0.015149, - 0.04733, - 0.041094, - 0.027319, - -0.027152, - 0.0069976, - -0.034467, - -0.096805, - -0.046676, - 0.055526, - -0.10179, - 0.017247, - 0.063765, - 0.015666, - -0.027719, - 0.06819, - 0.028814, - 0.081012, - -0.014849, - -0.066592, - 0.01132, - -0.054358, - -0.031433, - -0.070929, - -0.021543, - 0.026004, - -0.05772, - -0.079885, - 0.016464, - 0.0063675, - 0.030395, - -0.0044431, - -0.013357, - -0.049955, - 0.039256, - 0.073235, - -0.068769, - -0.042232, - -0.028401, - -0.10093, - -0.066593, - 0.068531, - 0.038945, - 0.016135, - -0.015362, - -0.048034, - 0.07737, - -0.14375, - -0.017424, - 0.032343, - -0.066164, - 0.16403, - -0.071675, - -0.043159, - -0.046384, - -0.039355, - -0.0068914, - 0.060116, - 0.098609, - 0.057925, - -0.018815, - 0.047814, - -0.061575, - -0.053954, - 0.022444, - -0.00444, - 0.058867, - -0.022497, - 0.061114, - -0.060507, - 0.0092896, - 0.0058239, - 0.024377, - -0.072262, - 0.037678 - ], - "vocational": [ - -0.0052889, - -0.090581, - -0.005147, - -0.044581, - 0.000061434, - -0.039625, - -0.010691, - -0.056804, - 0.028192, - -0.018639, - 0.0048489, - -0.069633, - -0.063852, - 0.018849, - 0.0088068, - -0.017255, - 0.035294, - 0.06788, - 0.019774, - 0.043334, - 0.015346, - 0.0063524, - 0.060137, - 0.086699, - -0.08856, - 0.018648, - -0.037124, - 0.037426, - 0.0045561, - -0.0029071, - 0.0047602, - -0.040116, - -0.047601, - -0.10025, - 0.035667, - 0.079081, - 0.070856, - 0.014821, - -0.024712, - 0.027044, - 0.032924, - -0.096662, - 0.018546, - 0.066868, - 0.0226, - -0.031088, - -0.035734, - -0.015621, - -0.019358, - 0.0334, - -0.056478, - 0.013202, - -0.032139, - 0.03442, - 0.0022773, - -0.014829, - -0.01071, - -0.05868, - 0.0091843, - -0.027302, - -0.048267, - 0.045959, - 0.12619, - 0.049421, - 0.083915, - -0.078635, - -0.036558, - -0.071252, - -0.01839, - -0.01872, - 0.022738, - -0.014943, - 0.01815, - 0.0053209, - -0.0012566, - -0.027424, - -0.016588, - -0.03167, - 0.10018, - -0.040043, - -0.0087397, - -0.0068431, - -0.014827, - 0.026785, - -0.09119, - -0.0020575, - -0.022887, - 0.011772, - -0.034104, - -0.045852, - 0.049273, - -0.023152, - -0.065848, - 0.0098021, - -0.00072034, - 0.052493, - -0.0024395, - 0.016426, - -0.04442, - 0.059022, - 0.052541, - 0.027531, - 0.024305, - -0.0015846, - 0.038972, - -0.063458, - 0.080047, - 0.015229, - -0.046966, - 0.036083, - 0.015451, - 0.063798, - 0.044639, - 0.065766, - 0.010106, - 0.00083457, - -0.017258, - -0.009151, - -0.010179, - 0.013941, - -0.034503, - 0.021833, - -0.024432, - -0.027028, - 0.10069, - -0.0023294, - -0.047643, - -0.0074132, - 0.037043, - 0.028816, - -0.0053609, - -0.043253, - 0.008101, - -0.025551, - -0.066509, - 0.0432, - -0.0049822, - 0.050708, - 0.058413, - -0.017883, - -0.013118, - -0.0083208, - -0.028342, - 0.059583, - -0.054736, - -0.027594, - -0.01914, - -0.042431, - -0.013516, - 0.060125, - 0.022137, - 0.091611, - 0.0070711, - -0.044872, - 0.018298, - 0.022057, - -0.07402, - 0.016024, - -0.015114, - -0.03211, - 0.015829, - 0.0035266, - -0.05759, - 0.038396, - 0.015431, - -0.023051, - 0.027746, - 0.051538, - -0.029899, - 0.0096873, - 0.080436, - 0.0077286, - 0.050351, - 0.088823, - 0.019998, - 0.057112, - 0.03998, - 0.046092, - -0.054554, - 0.01633, - 0.016623, - -0.03308, - -0.08395, - 0.015739, - 0.014585, - -0.057226, - -0.034587, - 0.11862, - -0.018864, - 0.028316, - -0.0040601, - 0.027551, - 0.067881, - -0.026941, - 0.0071572, - -0.01325, - -0.03655, - 0.014875, - 0.048005, - 0.0333, - -0.12555, - -0.0016814, - 0.021406, - -0.014216, - -0.037005, - -0.0017566, - 0.0070143, - -0.040009, - 0.019934, - 0.01016, - 0.12468, - -0.015661, - -0.00065596, - -0.04587, - -0.041035, - 0.046497, - 0.0015314, - -0.033086, - -0.066123, - 0.011638, - -0.053795, - -0.028612, - -0.053175, - 0.066268, - 0.023238, - -0.069992, - 0.017926, - 0.040823, - 0.046923, - 0.017995, - 0.0073453, - -0.029349, - -0.031216, - -0.046592, - -0.012625, - 0.026439, - 0.057375, - -0.024282, - -0.04231, - 0.059761, - 0.060426, - 0.02586, - 0.044201, - -0.025575, - -0.15648, - -0.02044, - -0.027444, - -0.029438, - 0.037232, - 0.034713, - 0.032561, - 0.047513, - 0.013998, - -0.076015, - -0.07021, - 0.011689, - -0.019427, - 0.0029167, - 0.003079, - -0.016471, - 0.01927, - -0.032471, - 0.046341, - 0.010493, - 0.0046729, - 0.013212, - -0.017527, - -0.018136, - 0.04372, - -0.024865, - 0.04179, - 0.043575, - -0.08182, - -0.025641, - 0.017808, - -0.050284, - -0.00065725, - 0.077121, - 0.014805, - 0.024966, - 0.12275, - 0.030905, - 0.030614, - -0.00052932, - 0.035199, - 0.04787, - 0.027085, - 0.035725, - -0.007656, - -0.0026043, - 0.0011162, - -0.029476, - -0.0035807, - 0.055199, - -0.059097, - 0.061612, - 0.00037488, - 0.026314, - 0.012745, - -0.035878 - ], - "human": [ - -0.026057, - -0.051817, - 0.048055, - -0.01001, - -0.026234, - -0.054729, - -0.043958, - -0.097721, - 0.12611, - 0.050761, - 0.035045, - -0.020438, - -0.019552, - -0.030743, - 0.013083, - -0.04516, - 0.070883, - 0.028633, - 0.064584, - 0.070106, - 0.026698, - -0.015728, - 0.091502, - 0.11125, - -0.024844, - -0.051455, - -0.018475, - 0.055568, - 0.053806, - -0.0073185, - -0.049962, - 0.016363, - 0.045911, - -0.01207, - 0.021091, - 0.036855, - 0.078542, - -0.070403, - 0.063732, - 0.011727, - -0.033218, - -0.11333, - -0.07751, - 0.035984, - 0.031582, - -0.090067, - 0.061639, - 0.01243, - -0.0079591, - -0.071199, - 0.05613, - 0.046722, - 0.031403, - -0.034853, - 0.047401, - 0.045097, - 0.04303, - -0.039654, - -0.04499, - 0.0084957, - -0.0139, - -0.011707, - 0.15501, - -0.02517, - 0.071083, - 0.0039919, - 0.06405, - 0.026086, - 0.030505, - -0.00089281, - 0.0070935, - 0.022277, - 0.098249, - -0.015991, - -0.052857, - 0.0086737, - 0.023161, - -0.034139, - 0.026656, - -0.011931, - -0.026567, - 0.035156, - -0.043229, - 0.078789, - 0.078851, - -0.03235, - -0.0019422, - -0.012553, - 0.055902, - 0.048901, - -0.02008, - 0.10035, - -0.13941, - -0.043113, - -0.014043, - 0.072095, - 0.12837, - -0.018149, - 0.077782, - 0.019469, - -0.054406, - -0.034345, - -0.015107, - -0.069284, - 0.029972, - -0.12697, - 0.013444, - -0.0065499, - -0.017474, - -0.065384, - -0.033854, - 0.089957, - 0.078865, - -0.085873, - -0.011116, - 0.073781, - -0.056486, - -0.004573, - -0.075314, - 0.019708, - -0.033526, - -0.015597, - -0.0331, - 0.030788, - 0.044671, - 0.044803, - 0.041593, - -0.16409, - 0.063149, - 0.10121, - -0.013218, - 0.006663, - -0.0066355, - 0.013174, - -0.0095562, - -0.023333, - 0.045374, - 0.014879, - 0.0094935, - 0.0052159, - -0.050625, - -0.016941, - 0.0027388, - 0.01853, - 0.026168, - -0.0004973, - -0.016939, - -0.029782, - -0.0083382, - -0.012412, - 0.044274, - 0.16478, - 0.017292, - -0.11853, - -0.011076, - -0.07666, - -0.0073417, - -0.077958, - 0.020849, - -0.087078, - 0.048987, - -0.0015682, - -0.12211, - 0.0061194, - -0.017876, - 0.0194, - -0.027958, - 0.048604, - 0.0088508, - 0.024368, - 0.0040282, - -0.066532, - 0.024721, - 0.014772, - 0.008248, - 0.11684, - 0.043279, - 0.062159, - -0.00035923, - 0.054015, - 0.058312, - 0.019298, - -0.02553, - 0.04289, - -0.058716, - -0.13704, - 0.071852, - 0.15063, - -0.032309, - -0.0068726, - 0.035821, - 0.047282, - 0.052008, - -0.076276, - -0.035754, - 0.024357, - -0.080667, - 0.049023, - 0.0032458, - 0.046186, - -0.18073, - 0.032755, - -0.012207, - -0.066969, - -0.076439, - -0.0037854, - -0.051988, - -0.04534, - 0.03272, - 0.0089834, - 0.17228, - -0.014411, - -0.056767, - 0.0050014, - 0.042578, - -0.0057417, - 0.042568, - -0.037969, - -0.021403, - 0.021981, - -0.063069, - -0.0054109, - -0.06358, - 0.10796, - -0.010814, - -0.0039678, - 0.033125, - 0.083887, - 0.048576, - -0.083275, - -0.033853, - -0.0020228, - -0.16289, - -0.083465, - -0.0034321, - -0.05861, - -0.0084051, - -0.0016231, - -0.023996, - -0.11112, - 0.028658, - 0.0727, - -0.0207, - 0.054978, - -0.084474, - 0.020396, - 0.0075514, - -0.0088471, - -0.044483, - -0.093004, - -0.028998, - -0.0034061, - -0.047168, - -0.059308, - 0.077017, - 0.047619, - 0.063525, - 0.032757, - 0.10811, - -0.022435, - -0.088557, - -0.086081, - -0.037421, - 0.0075678, - 0.075281, - -0.032774, - 0.028769, - 0.071537, - 0.047465, - 0.032008, - 0.0016445, - 0.095042, - -0.13087, - -0.032406, - 0.056486, - -0.083177, - -0.022671, - -0.036211, - 0.024675, - -0.065702, - 0.18485, - 0.0082914, - -0.046768, - -0.031735, - 0.024226, - 0.0041771, - -0.10442, - -0.067826, - 0.0070428, - 0.06043, - -0.0024978, - 0.020618, - -0.12323, - -0.087267, - -0.016149, - 0.050561, - 0.024825, - 0.046628, - -0.046604, - -0.0075528 - ], - "industry-leading": [ - -0.038345, - 0.0084312, - -0.010785, - 0.0062055, - -0.041519, - -0.03277, - -0.0064528, - -0.051151, - -0.001687, - 0.029127, - 0.021166, - -0.038357, - -0.0030703, - 0.033913, - 0.0068719, - 0.019732, - 0.044642, - 0.018121, - 0.063797, - -0.016111, - 0.0048748, - 0.0048035, - -0.004685, - 0.043673, - -0.0087368, - 0.00020276, - 0.0097111, - -0.012609, - 0.071714, - 0.023261, - 0.027792, - 0.019356, - 0.0050735, - -0.034546, - 0.027189, - 0.044642, - -0.014314, - 0.025251, - -0.014386, - 0.015163, - 0.0051377, - 0.0073658, - 0.0087816, - -0.009387, - -0.008097, - -0.0017218, - -0.00022005, - 0.009405, - -0.018698, - -0.00065186, - -0.012838, - -0.00082424, - -0.022757, - 0.0075434, - 0.022163, - -0.020129, - -0.0069016, - 0.035346, - 0.019404, - 0.016997, - -0.018588, - -0.0083829, - 0.035343, - 0.005118, - 0.0029886, - 0.018066, - -0.0070453, - 0.00013572, - 0.042317, - -0.035062, - 0.014473, - 0.0127, - 0.036667, - 0.034828, - 0.0097597, - -0.0042442, - -0.0027656, - -0.026596, - 0.010955, - -0.046952, - 0.019733, - -0.017784, - 0.017553, - 0.024108, - 0.026301, - 0.013585, - 0.010436, - 0.0010627, - -0.023154, - -0.032995, - 0.0090878, - 0.00026524, - -0.063466, - 0.00068791, - -0.021922, - 0.038794, - 0.0048206, - -0.0072411, - 0.011345, - -0.034426, - -0.006767, - -0.003061, - 0.00026944, - -0.025682, - -0.019548, - -0.058567, - 0.018451, - -0.011888, - -0.012015, - -0.0011795, - -0.011872, - 0.093337, - -0.0078234, - -0.015007, - -0.0059041, - 0.0032343, - -0.0029123, - 0.0071393, - -0.015537, - -0.028627, - -0.013558, - -0.0022239, - 0.0077006, - -0.027421, - 0.019401, - 0.020648, - -0.0067697, - -0.021822, - 0.017068, - 0.029896, - 0.045034, - 0.021049, - -0.032923, - -0.081418, - 0.033743, - -0.022903, - 0.019765, - 0.018428, - -0.056723, - -0.013274, - -0.0039705, - 0.02477, - -0.019105, - -0.013559, - -0.038733, - 0.013183, - 0.0042158, - -0.031457, - 0.0099764, - 0.011377, - 0.034933, - 0.046645, - 0.018221, - -0.009258, - 0.017519, - 0.016413, - 0.023027, - -0.0069855, - -0.0078536, - 0.022475, - 0.051155, - 0.035515, - -0.022009, - 0.0084892, - 0.0079106, - 0.00067368, - -0.056624, - 0.0096111, - -0.026475, - -0.013824, - 0.017368, - 0.034759, - -0.0033059, - 0.039586, - 0.0000093585, - 0.029129, - -0.015676, - 0.012199, - -0.036343, - 0.023644, - 0.010583, - -0.045036, - -0.0054418, - 0.024765, - -0.016908, - 0.026691, - -0.02078, - 0.094494, - -0.030265, - 0.0032774, - -0.028697, - 0.054097, - 0.019286, - -0.03896, - 0.0069676, - -0.02079, - 0.012078, - -0.029651, - 0.05077, - -0.063748, - -0.06802, - -0.010556, - -0.033768, - -0.018645, - -0.001435, - -0.027307, - -0.021199, - 0.0062924, - -0.039149, - 0.022098, - 0.088881, - -0.00087075, - 0.017971, - -0.017138, - -0.038977, - 0.0082998, - 0.036094, - -0.031541, - -0.0032482, - 0.017078, - 0.0073468, - -0.00016357, - 0.041583, - 0.046657, - 0.023036, - -0.03861, - 0.0062229, - 0.0048245, - 0.0034287, - -0.040368, - 0.033222, - -0.0056172, - 0.0024432, - 0.019935, - 0.024548, - -0.0027629, - -0.018449, - -0.032032, - 0.0069254, - 0.0026617, - 0.021733, - 0.0027727, - 0.008538, - -0.022351, - -0.095422, - -0.018399, - 0.028205, - -0.034399, - 0.028936, - -0.0079935, - 0.0082544, - -0.035417, - -0.0072168, - -0.0088024, - 0.021408, - 0.0036903, - 0.011139, - -0.035024, - 0.04167, - 0.010264, - 0.016274, - 0.068089, - -0.035571, - 0.019418, - -0.012848, - -0.0072341, - 0.039733, - 0.013036, - 0.016184, - 0.0072209, - -0.02664, - 0.034328, - -0.058181, - -0.0012183, - 0.0077134, - -0.017881, - -0.0092591, - 0.078917, - -0.028746, - 0.018013, - 0.085107, - 0.021864, - -0.003818, - 0.041656, - -0.0042529, - -0.038273, - -0.042941, - -0.014468, - 0.0052019, - 0.0015563, - -0.00039095, - 0.0070334, - 0.0003714, - -0.03091, - 0.012149, - 0.017673, - 0.012466, - -0.016586, - -0.0057947, - -0.0066023 - ], - "decrypted": [ - 0.030194, - 0.041066, - -0.043504, - 0.081065, - 0.074871, - 0.022564, - -0.01381, - -0.067883, - -0.034106, - 0.025895, - 0.01529, - -0.0033266, - -0.068454, - 0.0077977, - -0.085341, - -0.0039972, - 0.049857, - -0.028534, - 0.042703, - 0.043635, - 0.0082014, - 0.042803, - -0.020395, - 0.047984, - -0.050558, - 0.063096, - 0.017651, - 0.0038178, - 0.12954, - 0.0091146, - -0.020192, - 0.0077688, - -0.011303, - -0.010045, - 0.044422, - -0.037791, - -0.032974, - 0.013223, - 0.040488, - -0.071432, - -0.024429, - -0.051517, - 0.019857, - -0.041952, - 0.029538, - 0.047626, - -0.0036175, - -0.011932, - 0.08584, - 0.028736, - 0.0087718, - -0.071454, - 0.02703, - -0.014739, - -0.058242, - -0.0024053, - 0.0066846, - 0.029, - 0.0099234, - -0.043622, - -0.053387, - -0.069608, - 0.1935, - -0.037001, - -0.023962, - -0.0067065, - 0.048058, - 0.074711, - -0.011392, - 0.033669, - -0.042493, - 0.024055, - 0.052031, - 0.056995, - -0.033288, - -0.036437, - -0.006463, - 0.040084, - 0.017922, - -0.030499, - 0.038707, - -0.018507, - 0.04851, - 0.0048816, - -0.029313, - 0.039196, - 0.078595, - 0.0020245, - 0.095951, - 0.0047257, - -0.010949, - -0.018257, - -0.050254, - 0.0061558, - -0.0095221, - 0.018556, - 0.038513, - -0.042575, - -0.035371, - 0.091308, - -0.002257, - 0.01219, - 0.054178, - 0.073919, - -0.0045551, - -0.064934, - 0.052015, - 0.043524, - 0.022618, - 0.013953, - -0.011216, - 0.094498, - 0.060493, - 0.0099293, - -0.02084, - -0.027885, - 0.089035, - 0.059083, - -0.035535, - 0.028684, - 0.12972, - -0.021784, - -0.044331, - 0.039969, - 0.033705, - -0.046245, - 0.0041609, - -0.0066006, - 0.005503, - -0.00086546, - -0.05588, - -0.024196, - 0.056524, - 0.0063985, - 0.040151, - -0.061213, - 0.014092, - 0.039817, - 0.011852, - -0.009988, - 0.025217, - 0.074924, - -0.014516, - -0.026505, - -0.049872, - -0.024564, - -0.12024, - -0.086232, - -0.026532, - -0.036458, - 0.036327, - 0.01985, - 0.014579, - -0.0080535, - 0.042653, - -0.031889, - -0.070077, - -0.027645, - 0.01589, - 0.03319, - 0.077568, - -0.073763, - -0.024584, - 0.030575, - 0.038643, - -0.11223, - -0.018425, - 0.078425, - 0.062186, - -0.0082, - 0.045338, - 0.040887, - -0.05058, - 0.014625, - -0.027539, - 0.031078, - 0.037364, - -0.051997, - -0.024519, - 0.046941, - -0.038252, - -0.033823, - -0.022238, - -0.024751, - 0.010131, - 0.019059, - -0.085255, - 0.075955, - 0.045017, - 0.07714, - 0.076211, - 0.027683, - -0.062814, - -0.017391, - 0.012509, - 0.095046, - -0.030587, - 0.0071968, - -0.077118, - 0.018355, - -0.076283, - 0.020598, - -0.073822, - 0.083115, - -0.015758, - -0.01263, - 0.07662, - 0.021807, - -0.032415, - -0.062905, - 0.053345, - 0.044185, - 0.0049186, - 0.027281, - 0.026014, - 0.028911, - -0.070931, - 0.027704, - -0.01994, - 0.037432, - 0.084078, - 0.010947, - -0.011791, - 0.094816, - 0.0076777, - -0.028248, - 0.043357, - 0.040577, - -0.016238, - -0.021789, - 0.019742, - -0.079849, - -0.080802, - -0.078086, - 0.016647, - -0.099617, - -0.013076, - 0.035369, - 0.0090169, - 0.02713, - 0.18789, - -0.024409, - 0.016222, - -0.00026327, - -0.16061, - 0.054904, - 0.0058314, - 0.00057872, - -0.0028732, - 0.042677, - 0.061622, - -0.026784, - 0.0013011, - 0.026466, - -0.040031, - 0.016972, - -0.0028311, - -0.04657, - -0.056609, - -0.04429, - -0.022653, - -0.01175, - 0.0077138, - 0.012794, - 0.049278, - -0.064361, - 0.049541, - -0.012159, - 0.023678, - -0.003103, - 0.074118, - 0.068264, - -0.066124, - -0.034714, - -0.059387, - -0.064654, - 0.054796, - -0.064757, - 0.022386, - -0.024034, - -0.070057, - -0.032312, - -0.032273, - -0.021422, - 0.022854, - -0.024066, - -0.069203, - 0.0016402, - 0.0060092, - 0.02848, - -0.021603, - 0.0098126, - -0.037406, - 0.041948, - 0.052588, - -0.037438, - -0.010544, - -0.10567, - -0.060169, - 0.0042044 - ], - "graduate": [ - -0.061362, - -0.011555, - 0.030812, - 0.00063824, - 0.081647, - -0.055881, - -0.016331, - -0.10267, - 0.071879, - -0.034887, - -0.00046475, - -0.0065723, - -0.01061, - 0.022363, - -0.031112, - -0.0045895, - 0.042031, - 0.019007, - 0.014653, - 0.067399, - 0.049237, - 0.02324, - -0.049216, - 0.047263, - -0.034986, - -0.043353, - -0.02192, - 0.03221, - -0.003861, - -0.0097932, - -0.013161, - 0.028346, - -0.0041346, - -0.0018974, - 0.00099837, - 0.048558, - 0.055169, - 0.0030159, - 0.01896, - -0.041175, - -0.02233, - -0.059504, - 0.040253, - -0.024162, - -0.0034467, - 0.035725, - -0.02643, - -0.043214, - 0.012671, - 0.048305, - -0.016905, - 0.011077, - -0.0016321, - 0.050506, - -0.037452, - -0.02397, - -0.082755, - 0.055425, - -0.033324, - 0.0026674, - 0.073399, - 0.034585, - 0.12717, - 0.09889, - 0.026898, - -0.034156, - -0.003352, - -0.041523, - -0.0064811, - 0.014614, - 0.0212, - -0.021169, - 0.11532, - 0.031299, - 0.042966, - -0.03258, - -0.039241, - -0.0018499, - 0.05433, - 0.0077907, - 0.020408, - 0.04575, - 0.01646, - 0.054968, - -0.066536, - 0.0033248, - -0.021785, - -0.010905, - -0.018115, - 0.022216, - 0.063918, - 0.014315, - -0.11071, - -0.02383, - 0.023819, - 0.060007, - 0.01008, - -0.0051303, - 0.029874, - -0.0048833, - 0.09899, - -0.0095743, - 0.017577, - -0.0072341, - -0.010906, - -0.085544, - -0.0013995, - 0.0022101, - 0.013785, - 0.022711, - -0.038354, - 0.030319, - 0.016837, - 0.029148, - 0.021083, - 0.0099489, - -0.033886, - -0.013989, - -0.016835, - 0.020193, - -0.035009, - -0.023765, - -0.0082759, - 0.0324, - 0.034584, - 0.038915, - -0.034789, - -0.080452, - -0.030422, - 0.032992, - -0.016362, - 0.075572, - -0.011903, - -0.0068497, - 0.00051023, - 0.05375, - 0.0023181, - 0.0017059, - -0.029422, - -0.05408, - 0.033226, - -0.011955, - -0.038624, - -0.048064, - 0.011011, - -0.044998, - -0.056018, - 0.001402, - -0.016333, - 0.018893, - 0.018337, - 0.084515, - 0.012696, - -0.063799, - 0.039762, - 0.0074381, - 0.016025, - 0.066675, - 0.052114, - -0.026761, - 0.056933, - 0.034139, - 0.011731, - 0.0034507, - -0.028752, - -0.074424, - -0.052953, - -0.028548, - 0.024521, - 0.020543, - 0.065978, - -0.019859, - -0.053193, - -0.0057194, - 0.016432, - 0.037948, - 0.038974, - 0.011266, - -0.0066555, - -0.028632, - -0.011234, - -0.0081287, - -0.012188, - 0.011103, - 0.03135, - -0.06185, - -0.025362, - 0.060162, - 0.034474, - 0.040039, - -0.058252, - 0.08374, - -0.026929, - -0.016304, - 0.027258, - 0.030706, - 0.057682, - -0.031134, - -0.027555, - -0.05188, - -0.13125, - 0.096665, - 0.012095, - 0.017358, - -0.04075, - 0.0069308, - -0.04338, - -0.050169, - -0.027642, - -0.05419, - 0.10685, - -0.031045, - -0.020954, - -0.029106, - -0.11297, - -0.016835, - 0.046133, - -0.032217, - 0.018292, - -0.0073364, - -0.021331, - -0.019275, - -0.03635, - 0.098888, - 0.0044576, - 0.0072823, - -0.0078297, - 0.06387, - 0.0081282, - -0.024657, - 0.042218, - -0.074248, - -0.0079151, - -0.0085284, - -0.00025056, - -0.021426, - 0.023039, - -0.028414, - -0.039832, - 0.046547, - 0.098971, - 0.010948, - 0.049282, - 0.058282, - -0.032, - 0.014374, - -0.051625, - -0.039242, - -0.010247, - 0.014626, - 0.051413, - 0.029551, - -0.019211, - -0.071194, - 0.020942, - -0.021524, - -0.030781, - 0.051078, - 0.086357, - -0.016649, - -0.020389, - -0.0028881, - 0.0059032, - -0.046534, - -0.023946, - 0.010598, - -0.010727, - -0.004299, - -0.0036561, - 0.041173, - 0.018066, - 0.04633, - -0.13372, - -0.050944, - -0.069071, - 0.017514, - -0.015786, - -0.0069677, - 0.010221, - 0.0087335, - 0.018087, - 0.053127, - 0.060016, - -0.017711, - -0.00044785, - -0.0035604, - -0.028136, - -0.061124, - -0.017171, - -0.025639, - 0.0013364, - -0.0015544, - -0.021753, - -0.012352, - -0.017424, - 0.017294, - -0.018561, - -0.012246, - 0.0016529, - 0.011826 - ], - "rains": [ - 0.073433, - 0.080614, - -0.03475, - -0.063338, - 0.11745, - -0.063415, - -0.028105, - -0.090968, - 0.04942, - -0.0086035, - -0.011584, - 0.017208, - -0.0076134, - 0.041727, - 0.0098779, - -0.017224, - 0.10739, - 0.042122, - 0.049686, - -0.038365, - 0.03267, - -0.03858, - -0.16152, - 0.074751, - 0.16864, - -0.065941, - 0.042218, - 0.034735, - 0.1695, - -0.020475, - 0.11923, - 0.032607, - 0.087761, - -0.01582, - 0.020729, - 0.079551, - -0.010825, - -0.021882, - -0.03523, - -0.077764, - 0.035728, - -0.034769, - -0.0049633, - 0.049187, - 0.0012127, - 0.065902, - 0.02117, - -0.064591, - -0.0012996, - 0.024854, - 0.055728, - -0.019139, - 0.0044184, - -0.014842, - -0.064452, - -0.018565, - 0.15886, - -0.085105, - -0.021057, - 0.066637, - -0.030518, - 0.050917, - 0.10577, - -0.02343, - -0.1425, - -0.080357, - 0.075129, - -0.087231, - -0.013976, - 0.026683, - 0.052213, - 0.08472, - 0.014472, - 0.077871, - -0.11355, - -0.0099071, - -0.034569, - 0.077393, - -0.046177, - 0.06808, - -0.079813, - -0.045189, - 0.076276, - 0.042844, - 0.13185, - -0.048686, - 0.075591, - -0.001533, - -0.055675, - -0.011015, - -0.048735, - -0.12729, - -0.098603, - -0.010145, - 0.0051447, - 0.084304, - 0.016436, - 0.023227, - -0.028696, - -0.10422, - 0.049105, - -0.12622, - 0.054162, - -0.01092, - 0.075476, - -0.060772, - 0.034009, - 0.0054583, - 0.14206, - 0.030224, - 0.029117, - 0.020077, - 0.072576, - 0.013474, - -0.060871, - -0.037123, - -0.0047682, - 0.023188, - -0.033405, - 0.018998, - 0.025665, - -0.0031829, - 0.1237, - 0.15198, - 0.13584, - 0.032748, - 0.0051028, - -0.00016529, - -0.11506, - 0.062246, - 0.0095186, - -0.0038879, - -0.075405, - 0.0017023, - 0.063911, - 0.046393, - -0.00013762, - 0.10677, - 0.036108, - 0.088985, - 0.075738, - -0.11998, - 0.072223, - -0.10052, - 0.080875, - -0.037064, - 0.027799, - 0.05587, - -0.097962, - 0.026018, - 0.049265, - 0.10844, - -0.00018669, - -0.073176, - 0.026435, - 0.04119, - 0.058936, - -0.02067, - -0.014578, - -0.019007, - 0.10731, - -0.090993, - -0.029933, - 0.052656, - 0.051282, - -0.03895, - -0.045191, - 0.089468, - 0.039991, - 0.17136, - 0.090391, - -0.046108, - 0.10928, - 0.047977, - 0.11429, - 0.08817, - 0.08275, - -0.095788, - -0.046807, - -0.046312, - -0.072062, - 0.1186, - 0.0031284, - -0.13655, - -0.067031, - -0.020661, - 0.063853, - 0.21044, - -0.066221, - -0.11542, - 0.040282, - -0.040175, - -0.098347, - -0.04046, - -0.02258, - -0.017587, - -0.0060198, - 0.023639, - 0.059013, - -0.052149, - -0.17604, - 0.0062217, - -0.086273, - -0.0042769, - 0.069222, - 0.069091, - 0.010922, - 0.02988, - 0.11388, - -0.13517, - 0.068096, - -0.052416, - 0.045806, - -0.0075312, - 0.065642, - -0.082522, - -0.021915, - -0.04222, - -0.0068426, - -0.19103, - 0.024719, - -0.066737, - -0.030381, - 0.068811, - 0.095474, - -0.029612, - -0.077945, - 0.079054, - -0.034343, - 0.040785, - -0.013971, - -0.10864, - -0.048104, - -0.041709, - 0.12924, - 0.11034, - -0.011749, - -0.034163, - 0.043617, - -0.1941, - 0.013094, - 0.060058, - 0.044651, - -0.074963, - -0.043285, - 0.060133, - 0.032228, - -0.04028, - -0.0094133, - -0.053782, - 0.07404, - -0.05373, - 0.1024, - 0.024544, - -0.088276, - 0.090488, - 0.044271, - -0.060329, - 0.061523, - 0.086629, - 0.057929, - 0.043722, - -0.064186, - -0.024194, - -0.0027391, - 0.030514, - -0.068889, - 0.056938, - -0.024135, - 0.015832, - 0.018077, - 0.086185, - -0.15261, - -0.015235, - -0.050404, - -0.081719, - -0.033001, - -0.059631, - -0.085916, - 0.038752, - 0.026282, - -0.0052916, - 0.0080551, - -0.022426, - -0.0065323, - 0.12181, - 0.077172, - 0.068566, - 0.025986, - 0.092772, - -0.044522, - -0.0093959, - -0.029282, - 0.034369, - 0.044516, - -0.062991, - -0.01775, - 0.036178, - 0.038273, - -0.013599 - ], - "profitable": [ - 0.00066986, - -0.041424, - -0.019508, - -0.039986, - -0.05197, - 0.026052, - -0.00072273, - -0.072978, - -0.013582, - 0.017963, - 0.019159, - 0.0086859, - -0.034082, - -0.068051, - -0.039091, - -0.029683, - 0.083242, - -0.038834, - 0.049071, - 0.015893, - 0.02452, - 0.0039813, - -0.022556, - 0.046206, - -0.0084701, - -0.00312, - 0.022107, - 0.039567, - 0.071635, - 0.035015, - -0.035699, - -0.0096519, - -0.045119, - -0.049316, - 0.053978, - 0.015605, - 0.0025878, - 0.0045269, - 0.032008, - 0.01882, - 0.025801, - -0.076906, - -0.029148, - 0.0077308, - -0.027138, - -0.06985, - 0.03444, - -0.034799, - 0.00024283, - 0.0037206, - -0.00038378, - 0.0063518, - -0.038386, - -0.011303, - -0.061725, - -0.022115, - -0.059055, - 0.04308, - -0.0028505, - 0.037412, - -0.020171, - 0.022053, - 0.10834, - 0.024449, - 0.048089, - -0.037422, - 0.055025, - -0.0041541, - 0.04151, - -0.082745, - 0.011659, - -0.0079128, - -0.00064854, - 0.067205, - 0.07178, - 0.023465, - -0.0063656, - -0.014626, - -0.018375, - -0.051652, - 0.04793, - 0.018491, - -0.020697, - 0.081736, - -0.00012901, - 0.0027287, - 0.028255, - 0.020723, - -0.052828, - -0.022966, - -0.0045014, - -0.011583, - -0.089106, - 0.023517, - -0.0097968, - 0.03576, - -0.02791, - -0.044116, - 0.038223, - -0.0031835, - -0.069298, - -0.029547, - -0.042906, - -0.029091, - -0.047228, - -0.062836, - -0.0013825, - -0.013794, - 0.00516, - 0.001907, - -0.0055483, - 0.08292, - 0.059148, - 0.035447, - -0.0088266, - -0.03165, - 0.0086927, - 0.014333, - -0.042674, - -0.0097769, - -0.042772, - -0.040431, - -0.020577, - 0.04549, - 0.076639, - 0.03382, - -0.027945, - -0.037346, - 0.045918, - -0.051583, - 0.018669, - 0.035211, - 0.0046292, - -0.033855, - 0.022376, - -0.026276, - 0.014618, - 0.019232, - -0.010243, - 0.044885, - -0.0079428, - 0.001185, - -0.073721, - -0.037252, - 0.0459, - -0.054742, - 0.019256, - -0.042141, - -0.0041029, - -0.0321, - 0.043117, - 0.040885, - -0.020722, - -0.072742, - 0.020132, - -0.026625, - 0.0046555, - -0.01017, - -0.01503, - 0.022353, - 0.071814, - 0.015709, - 0.010712, - 0.064329, - 0.043962, - -0.0082975, - 0.014283, - 0.0018814, - 0.0011228, - 0.045801, - 0.037732, - -0.0050804, - 0.016326, - 0.018353, - -0.015001, - 0.046589, - -0.02622, - 0.035441, - -0.028898, - 0.048439, - -0.036229, - -0.017405, - -0.012695, - -0.030705, - -0.0051995, - -0.013008, - 0.026536, - 0.075366, - -0.050098, - -0.0075525, - -0.013993, - 0.041276, - 0.046317, - 0.050894, - -0.032441, - -0.041347, - -0.047358, - 0.011001, - -0.0000096579, - 0.016147, - -0.14528, - 0.11659, - -0.024157, - -0.035363, - 0.02608, - 0.04578, - -0.013566, - -0.0042062, - -0.0022227, - -0.03144, - 0.031293, - -0.020487, - -0.0088395, - -0.009817, - 0.044494, - 0.0043286, - 0.023639, - -0.061207, - -0.038222, - -0.03385, - 0.06067, - -0.0066724, - 0.034281, - 0.090466, - -0.031279, - -0.048511, - 0.016217, - 0.037837, - -0.023419, - -0.021359, - 0.038457, - -0.068134, - -0.062149, - 0.012195, - 0.073409, - 0.024976, - -0.01375, - -0.011625, - 0.013949, - 0.016112, - 0.10893, - 0.015683, - 0.017164, - 0.035455, - -0.10796, - 0.021083, - -0.0075643, - -0.04472, - 0.034935, - -0.025615, - -0.02843, - -0.024851, - 0.013985, - 0.02494, - -0.065338, - 0.012202, - -0.041367, - 0.014743, - 0.00052048, - 0.060826, - 0.018335, - 0.037255, - 0.024523, - -0.011034, - -0.021859, - 0.081312, - 0.0058781, - -0.027814, - -0.020204, - 0.080336, - 0.011414, - 0.061798, - -0.0868, - -0.059466, - -0.0030921, - -0.083579, - 0.0097702, - 0.047436, - -0.050079, - 0.0028546, - 0.020217, - 0.037866, - -0.041568, - -0.031318, - -0.057943, - -0.0057849, - -0.015215, - -0.038557, - -0.024211, - 0.045351, - -0.0080031, - 0.04387, - 0.0094619, - 0.0015352, - -0.015318, - -0.041341, - 0.0023299, - 0.0023454, - -0.037829, - -0.012488 - ], - "cryptography": [ - -0.033923, - -0.0387, - -0.053173, - 0.0025551, - -0.0086682, - -0.013311, - 0.058927, - -0.082001, - 0.0071984, - 0.022467, - 0.015119, - -0.023266, - -0.061817, - 0.034607, - -0.038353, - 0.029745, - 0.066927, - -0.025286, - 0.020043, - -0.0072949, - -0.000010833, - 0.034439, - 0.044031, - 0.041768, - 0.0051489, - 0.035535, - 0.006507, - -0.039535, - 0.002689, - -0.048766, - 0.01302, - -0.063147, - -0.022677, - -0.034334, - 0.037967, - -0.013166, - 0.010323, - -0.012651, - 0.025866, - -0.035875, - -0.030199, - -0.089024, - -0.0055112, - -0.04298, - -0.02387, - -0.047385, - -0.056114, - -0.0076897, - 0.0066566, - 0.032958, - -0.0419, - -0.030037, - 0.038506, - -0.011747, - -0.058827, - -0.011314, - 0.0074506, - 0.046319, - 0.0042372, - -0.0010797, - -0.032596, - -0.085277, - 0.043793, - 0.027152, - -0.035885, - -0.0083556, - 0.0016909, - -0.021986, - 0.022693, - 0.027, - -0.01346, - 0.026479, - -0.023791, - 0.039875, - -0.017002, - -0.04197, - 0.015545, - -0.026523, - 0.0654, - -0.027765, - -0.027513, - 0.0031489, - -0.043514, - -0.0039842, - -0.02892, - 0.017626, - 0.011099, - -0.027735, - 0.039288, - 0.061253, - 0.053064, - 0.017402, - -0.068382, - 0.019679, - 0.014267, - 0.065064, - 0.0046931, - -0.075468, - 0.034326, - 0.068043, - -0.0091637, - 0.041197, - -0.032101, - -0.020205, - -0.0025004, - -0.052182, - 0.04924, - 0.071166, - 0.043248, - 0.00073177, - -0.024968, - 0.050189, - 0.019284, - 0.014839, - -0.017828, - 0.045674, - 0.041831, - 0.094945, - -0.021525, - 0.0016726, - 0.065752, - 0.03153, - -0.069024, - -0.041698, - 0.042463, - -0.024775, - -0.062842, - -0.0336, - -0.088865, - 0.091032, - -0.0011515, - -0.014517, - -0.01627, - 0.050092, - 0.009767, - -0.06102, - 0.022958, - 0.0064525, - 0.0041287, - 0.024208, - 0.096042, - 0.070621, - -0.020438, - 0.019641, - 0.00020893, - -0.0429, - -0.093231, - -0.072106, - 0.0015389, - -0.07238, - 0.039645, - 0.036818, - 0.033845, - -0.061034, - 0.044673, - 0.054247, - 0.020073, - 0.047249, - 0.063959, - 0.021824, - 0.011926, - 0.0049059, - -0.066232, - 0.015166, - -0.011486, - -0.11284, - 0.024298, - -0.0028246, - 0.056073, - -0.023945, - 0.042458, - 0.056581, - 0.016454, - 0.04488, - -0.012333, - 0.025412, - -0.011, - 0.053395, - -0.038558, - 0.009683, - -0.0069668, - 0.017018, - 0.02151, - -0.014019, - 0.035082, - -0.01958, - -0.032531, - 0.070952, - 0.045502, - 0.019607, - -0.011757, - 0.027301, - -0.039183, - -0.037097, - 0.022023, - 0.02146, - -0.040764, - -0.05201, - -0.050988, - 0.01033, - -0.11041, - -0.025453, - -0.012185, - 0.053306, - -0.018483, - -0.039249, - 0.054607, - -0.032424, - -0.0093615, - 0.013275, - 0.070959, - 0.017703, - -0.0037041, - 0.014619, - 0.037173, - 0.10958, - -0.019267, - -0.014516, - -0.040802, - -0.025095, - 0.038412, - -0.060611, - -0.068034, - 0.078104, - -0.019304, - -0.015539, - 0.017155, - 0.031779, - 0.041697, - -0.010781, - -0.025771, - -0.022978, - -0.042802, - -0.075891, - 0.009385, - -0.113, - -0.04819, - 0.038122, - 0.0028096, - -0.022199, - 0.011867, - -0.067403, - 0.06286, - -0.036745, - 0.021213, - 0.039541, - -0.051752, - -0.0038952, - 0.032938, - 0.024392, - 0.02098, - 0.025365, - -0.040728, - -0.027581, - 0.0012179, - 0.031147, - 0.013034, - 0.019536, - -0.0046335, - -0.0038103, - 0.037395, - 0.021567, - 0.0043109, - 0.0060151, - -0.0026625, - -0.10234, - 0.043173, - 0.006641, - 0.039528, - -0.023993, - 0.025438, - 0.070807, - -0.062039, - -0.0037384, - -0.033137, - -0.01991, - 0.089289, - -0.0056348, - 0.029809, - -0.031726, - 0.067173, - -0.031098, - -0.037042, - 0.0133, - -0.023599, - -0.066116, - 0.022702, - 0.013829, - -0.068164, - -0.010806, - -0.10236, - -0.021612, - -0.01054, - -0.014566, - 0.033487, - 0.0037203, - 0.004329, - -0.016309, - -0.080172, - 0.018841 - ], - "law-enforcement": [ - -0.0046374, - -0.073201, - 0.010416, - 0.015704, - -0.04031, - -0.035864, - 0.022848, - -0.053923, - 0.058643, - 0.06724, - 0.0013408, - -0.026967, - -0.031053, - -0.012572, - -0.0070292, - 0.018145, - 0.048004, - 0.022833, - 0.028282, - 0.053785, - 0.024082, - -0.048563, - 0.010516, - 0.04793, - 0.027718, - 0.034265, - 0.034561, - 0.031798, - -0.022135, - 0.05684, - -0.0054927, - -0.047995, - -0.029863, - -0.062902, - 0.066606, - 0.063548, - -0.015764, - 0.031928, - 0.0031354, - -0.026496, - -0.025812, - -0.091317, - 0.058138, - 0.014554, - 0.064748, - -0.014, - 0.024314, - 0.041043, - -0.011047, - -0.000033298, - -0.032598, - 0.0086891, - 0.002475, - -0.0060136, - 0.015496, - -0.0064243, - 0.0033061, - -0.01035, - 0.011664, - 0.0059964, - 0.0088684, - 0.0093049, - 0.077226, - -0.011893, - -0.020445, - -0.030843, - 0.001686, - -0.025727, - 0.02972, - 0.027697, - -0.0076878, - -0.0060967, - 0.025789, - -0.042323, - -0.0017061, - 0.01929, - 0.01874, - 0.0062251, - 0.042875, - -0.022504, - -0.01291, - 0.018446, - -0.026361, - 0.012445, - 0.017416, - -0.0048699, - 0.048917, - -0.025404, - 0.027082, - 0.043139, - -0.012018, - 0.047028, - -0.069453, - -0.014194, - 0.0065997, - 0.036007, - -0.025104, - -0.045997, - 0.023712, - 0.019017, - -0.027254, - -0.029356, - -0.02112, - -0.049968, - 0.011983, - -0.047612, - -0.0038028, - -0.03104, - -0.0084046, - -0.012516, - 0.0026418, - 0.068103, - 0.025136, - -0.0043501, - -0.0014615, - 0.0041655, - 0.020018, - -0.024787, - -0.019926, - 0.020703, - 0.00045061, - 0.0084426, - 0.0018418, - 0.015344, - 0.055962, - 0.002654, - 0.0041858, - -0.021359, - -0.0094796, - 0.06525, - -0.033221, - 0.038559, - 0.02517, - 0.023434, - 0.036325, - -0.052557, - 0.012553, - 0.038318, - -0.0067941, - 0.039956, - 0.020511, - -0.003975, - -0.025655, - 0.0078055, - -0.044982, - 0.0033997, - -0.0028233, - -0.01057, - 0.015291, - -0.016247, - 0.049362, - 0.084854, - -0.015507, - -0.03442, - 0.0014551, - 0.011674, - -0.049341, - -0.012086, - -0.0065775, - -0.011283, - 0.035266, - 0.0124, - -0.027492, - 0.032332, - -0.0067804, - -0.00046643, - 0.045275, - 0.023522, - -0.028078, - -0.0063412, - 0.034695, - 0.016088, - -0.0026555, - 0.033001, - 0.014989, - 0.031627, - -0.020989, - 0.02554, - -0.03378, - -0.036897, - -0.044093, - -0.019214, - 0.040807, - 0.0059976, - 0.0087525, - -0.042207, - 0.030234, - 0.085069, - 0.03204, - 0.032483, - -0.023422, - 0.06044, - 0.052737, - -0.010724, - 0.0073893, - -0.022205, - 0.030698, - 0.033327, - -0.031138, - 0.0042756, - -0.08764, - -0.031809, - -0.035992, - 0.050704, - 0.008303, - -0.022352, - 0.022454, - 0.031063, - 0.01277, - 0.0032479, - 0.075893, - 0.0022917, - 0.0091462, - 0.0044699, - -0.056136, - -0.000058769, - -0.025169, - 0.0059087, - -0.024954, - -0.0033724, - -0.023563, - -0.064711, - -0.017981, - 0.05695, - 0.027962, - -0.044783, - 0.013693, - 0.023268, - -0.019348, - -0.013456, - -0.035057, - -0.033607, - -0.010506, - -0.023061, - 0.0074488, - -0.035724, - -0.022692, - 0.0027352, - -0.027781, - -0.019796, - 0.011005, - -0.023468, - 0.018578, - -0.0052001, - -0.036236, - -0.0055684, - -0.016603, - -0.024656, - -0.024032, - 0.013452, - 0.010585, - 0.033388, - -0.018056, - -0.014316, - -0.0019441, - 0.020571, - 0.030863, - 0.019323, - 0.00015469, - 0.0061134, - -0.017679, - 0.018712, - -0.018547, - 0.007368, - -0.037045, - -0.011835, - 0.024785, - 0.047121, - 0.017798, - -0.001503, - -0.065364, - 0.026623, - -0.066318, - -0.046746, - 0.02741, - -0.0063152, - -0.025916, - 0.039046, - 0.017974, - -0.0077088, - 0.082397, - -0.0093525, - -0.02811, - 0.0018325, - 0.02715, - 0.00068979, - 0.0078966, - -0.03964, - -0.0045041, - -0.032166, - -0.0049533, - -0.018566, - -0.010103, - 0.021734, - -0.041963, - 0.01228, - -0.010873, - -0.011992, - -0.015547, - -0.019499 - ], - "retirement": [ - 0.073299, - 0.0060832, - -0.014261, - -0.033208, - 0.01058, - 0.022623, - -0.00081488, - -0.076362, - 0.067799, - 0.025725, - -0.03534, - -0.031753, - -0.041301, - 0.040271, - -0.038983, - 0.034678, - 0.049678, - 0.045577, - 0.0064284, - 0.010761, - -0.026023, - 0.053775, - -0.067974, - 0.044809, - 0.057986, - -0.044001, - -0.032914, - -0.014562, - 0.0019435, - -0.029276, - 0.027763, - -0.051161, - -0.06104, - -0.060056, - -0.031883, - 0.020408, - -0.019835, - -0.043069, - 0.049486, - 0.0091791, - 0.049791, - -0.12636, - 0.02388, - -0.010625, - -0.001684, - 0.046748, - 0.02069, - -0.091736, - -0.048517, - 0.054468, - 0.021399, - -0.00001386, - 0.016694, - 0.0084671, - -0.066618, - -0.025413, - -0.050791, - 0.0044073, - -0.054404, - -0.099286, - 0.034666, - 0.0092198, - 0.11344, - 0.058175, - 0.1014, - -0.010015, - -0.099751, - -0.056577, - 0.032315, - -0.016772, - 0.026293, - 0.010241, - 0.0074196, - -0.0049459, - 0.077555, - 0.045854, - -0.0014358, - -0.01309, - -0.00066984, - -0.015612, - 0.0041067, - -0.029034, - 0.0339, - 0.047261, - -0.04313, - -0.011346, - 0.024477, - 0.0013395, - -0.03932, - -0.020495, - 0.004851, - -0.06611, - -0.078034, - -0.0070686, - -0.0044741, - 0.073575, - -0.030854, - 0.053587, - -0.030284, - 0.057339, - -0.051297, - -0.037877, - 0.052599, - -0.016367, - 0.01277, - -0.025639, - -0.023769, - -0.0019334, - -0.056246, - -0.016698, - -0.022195, - -0.016085, - 0.053062, - 0.039109, - 0.0048803, - -0.036554, - 0.02913, - -0.021007, - -0.024387, - -0.017864, - 0.0034794, - -0.007926, - 0.021486, - 0.043278, - 0.010165, - 0.070647, - -0.015867, - -0.062361, - 0.01336, - 0.065326, - -0.01709, - -0.030657, - 0.021263, - -0.017188, - -0.01908, - 0.016886, - 0.0030252, - 0.018588, - -0.014048, - 0.011532, - 0.015293, - 0.01186, - 0.025, - 0.09128, - 0.057913, - -0.024514, - 0.016824, - 0.03332, - 0.040422, - 0.022482, - -0.016564, - 0.0075461, - -0.058775, - -0.070198, - 0.0373, - 0.022616, - 0.026169, - 0.04725, - 0.013617, - -0.076622, - 0.022498, - 0.055105, - -0.017966, - -0.011853, - -0.016177, - 0.027769, - -0.019952, - -0.073116, - -0.033953, - -0.022873, - 0.045591, - -0.028987, - -0.015942, - -0.010176, - -0.0097439, - 0.025536, - 0.032194, - -0.00080994, - -0.035082, - -0.024482, - -0.0094171, - -0.02299, - 0.030836, - 0.0055081, - -0.028316, - -0.051048, - 0.016593, - 0.064878, - 0.0026464, - 0.043823, - 0.0083591, - 0.013172, - -0.012645, - 0.016947, - -0.0021848, - -0.055042, - -0.0039726, - -0.061076, - 0.036298, - 0.015663, - -0.13166, - 0.10587, - 0.013923, - 0.0071302, - -0.029015, - -0.030513, - 0.034852, - -0.010432, - -0.05008, - -0.024281, - 0.12334, - 0.015532, - 0.0084018, - 0.020032, - -0.019584, - 0.047156, - -0.015094, - -0.052383, - -0.015854, - -0.066376, - -0.022752, - -0.043183, - -0.0051861, - 0.071833, - 0.041433, - -0.01852, - -0.0079941, - 0.070902, - -0.019688, - 0.022374, - 0.069468, - -0.076768, - -0.018065, - -0.041681, - 0.015859, - -0.032988, - -0.05418, - 0.01927, - 0.023223, - 0.013297, - 0.064514, - 0.032854, - 0.045787, - -0.0021586, - -0.036161, - 0.070047, - 0.02075, - -0.055086, - 0.053283, - 0.028037, - 0.050239, - -0.011766, - 0.041889, - -0.028963, - 0.051571, - -0.02315, - 0.048679, - 0.024166, - 0.041788, - -0.01817, - -0.0044084, - -0.0087296, - -0.03068, - -0.016231, - 0.0059819, - -0.00028799, - -0.022208, - -0.039292, - 0.054295, - -0.045729, - -0.037003, - 0.071821, - -0.10079, - -0.03195, - 0.0075142, - -0.057145, - 0.044492, - 0.0022811, - 0.076102, - -0.020764, - 0.077154, - 0.0034287, - -0.0083097, - -0.013987, - 0.01004, - -0.039952, - 0.019856, - -0.044012, - -0.081258, - 0.030617, - 0.072556, - -0.0070509, - -0.012297, - -0.010098, - 0.034142, - 0.0032583, - -0.012155, - 0.008421, - 0.00080881, - 0.0065826 - ], - "morals": [ - -0.018228, - -0.073435, - 0.096972, - 0.0078365, - -0.046022, - -0.044646, - -0.030469, - -0.093665, - 0.10485, - 0.10983, - -0.010481, - -0.091516, - 0.069604, - -0.055755, - -0.048466, - -0.076785, - 0.098661, - -0.048027, - 0.026844, - 0.036338, - 0.027637, - -0.02046, - 0.048569, - 0.075907, - -0.043691, - 0.035964, - 0.03779, - -0.027453, - 0.14396, - -0.0032146, - -0.020425, - -0.043859, - -0.044281, - -0.016494, - 0.019149, - 0.066736, - 0.028173, - 0.0058616, - 0.022474, - 0.058596, - 0.042322, - -0.11009, - 0.023364, - 0.035272, - 0.00073433, - -0.081144, - -0.0035765, - -0.038856, - -0.0058596, - -0.094762, - 0.017643, - -0.010285, - 0.11039, - 0.02298, - -0.061428, - 0.066011, - 0.037103, - -0.043256, - -0.073781, - 0.0097391, - -0.026445, - -0.096473, - 0.14615, - 0.01473, - 0.06833, - 0.088208, - -0.012801, - 0.012007, - 0.14833, - -0.013443, - 0.078336, - -0.014267, - 0.068929, - 0.039342, - -0.027118, - 0.067109, - 0.040785, - -0.070529, - 0.00095313, - 0.012994, - -0.010824, - 0.020897, - -0.024614, - 0.10326, - -0.04716, - -0.02541, - 0.030264, - -0.026127, - -0.018227, - 0.04626, - 0.092599, - -0.0091557, - -0.11557, - 0.0059762, - -0.017585, - 0.047985, - 0.07557, - -0.068587, - 0.030059, - 0.055878, - 0.022419, - 0.079403, - -0.01613, - -0.071309, - 0.036057, - -0.045898, - 0.15356, - 0.019735, - 0.0075823, - 0.0052625, - -0.017863, - 0.11179, - 0.087171, - -0.056935, - 0.0030959, - -0.037766, - 0.039186, - -0.01537, - -0.065664, - -0.042319, - 0.0015981, - -0.031344, - 0.010773, - -0.09333, - 0.1166, - 0.062942, - -0.062903, - -0.099561, - -0.0098828, - 0.15195, - 0.056489, - 0.021542, - 0.096779, - 0.084402, - -0.08063, - -0.028329, - 0.04666, - 0.057091, - -0.013497, - -0.013874, - 0.02916, - 0.022549, - -0.025416, - 0.023087, - 0.065074, - -0.074407, - 0.027112, - -0.02878, - 0.011227, - -0.084498, - 0.077783, - 0.10982, - -0.030164, - -0.010491, - -0.037211, - 0.1085, - -0.036671, - 0.01571, - 0.076991, - -0.008343, - 0.10333, - 0.05198, - -0.11148, - -0.0055854, - -0.019407, - -0.038531, - 0.038319, - 0.11329, - 0.035445, - -0.010815, - -0.061327, - -0.064466, - 0.067185, - -0.0036238, - -0.015662, - 0.086186, - 0.045849, - 0.13651, - 0.04287, - -0.068682, - -0.0079874, - 0.013235, - -0.019664, - -0.04555, - 0.022109, - -0.087371, - 0.12406, - 0.14253, - 0.048868, - -0.069076, - -0.00082517, - 0.14467, - -0.022986, - -0.068675, - 0.039476, - -0.031678, - -0.00054268, - -0.021427, - 0.007561, - 0.034274, - -0.15949, - -0.043119, - 0.11968, - -0.045198, - 0.047045, - 0.043319, - 0.11047, - -0.11801, - 0.060916, - -0.011732, - 0.067273, - -0.012671, - 0.012883, - 0.036369, - 0.0032194, - 0.0075662, - -0.014145, - 0.057722, - -0.12614, - 0.01228, - -0.038533, - 0.028026, - -0.045888, - 0.10488, - 0.12988, - -0.027635, - 0.034473, - 0.052091, - -0.064666, - -0.074649, - 0.020462, - 0.0067588, - -0.1759, - 0.0056136, - 0.029358, - 0.090639, - 0.0084111, - -0.0030412, - 0.034458, - 0.054534, - -0.056476, - -0.022489, - 0.0073027, - -0.02838, - -0.038233, - 0.013394, - 0.0087898, - -0.094563, - -0.077465, - 0.027097, - 0.081252, - 0.016983, - -0.022699, - -0.016206, - 0.025447, - -0.033643, - -0.0093483, - 0.064664, - 0.020172, - -0.022478, - -0.066586, - -0.036902, - 0.036663, - -0.034994, - -0.0032694, - 0.070631, - 0.018248, - 0.13063, - 0.044086, - 0.0029439, - 0.02104, - 0.068113, - -0.095416, - -0.04962, - 0.017835, - -0.0028334, - -0.0068561, - -0.015857, - 0.037472, - -0.064661, - 0.076993, - 0.021624, - -0.081096, - -0.12148, - 0.080372, - 0.085407, - 0.057236, - 0.069796, - 0.061708, - 0.090145, - 0.015237, - 0.062581, - -0.0035253, - 0.0098478, - -0.0025719, - 0.010965, - -0.0021338, - 0.045057, - -0.12001, - 0.0074844 - ], - "motorsport": [ - 0.028395, - -0.10524, - 0.062085, - 0.051027, - -0.027521, - -0.0018168, - -0.081857, - -0.059305, - 0.080874, - -0.042827, - 0.020849, - -0.076869, - 0.013774, - 0.043654, - 0.05773, - 0.069381, - 0.092041, - 0.021573, - 0.063247, - 0.026417, - 0.022296, - -0.025343, - 0.073014, - 0.044443, - 0.040305, - 0.017515, - -0.035231, - 0.00014186, - -0.0075701, - 0.015342, - 0.050259, - 0.056066, - 0.10337, - -0.052197, - 0.085951, - 0.021613, - -0.012709, - -0.021981, - 0.066978, - -0.017598, - 0.034983, - -0.14249, - -0.012291, - 0.027513, - -0.039471, - -0.051995, - -0.058569, - -0.030834, - -0.027915, - -0.018774, - -0.019211, - -0.023518, - 0.038579, - 0.059725, - -0.033034, - -0.05973, - 0.0073303, - -0.039455, - -0.050062, - 0.048396, - 0.036471, - 0.07315, - 0.070362, - 0.047316, - 0.039375, - -0.024736, - -0.055701, - -0.036906, - 0.096926, - -0.00109, - 0.064577, - -0.035509, - 0.043183, - 0.067748, - 0.039011, - 0.038676, - -0.015857, - -0.012376, - -0.032878, - 0.016017, - -0.014257, - 0.054887, - -0.035404, - 0.058277, - -0.015037, - -0.08204, - 0.046266, - 0.011343, - 0.014173, - -0.037651, - 0.060542, - 0.094545, - -0.086881, - 0.021623, - 0.01847, - 0.10494, - -0.024002, - -0.013898, - 0.03769, - -0.029264, - -0.059041, - -0.06877, - -0.032119, - -0.017455, - 0.019214, - -0.059653, - -0.059318, - 0.026597, - -0.010686, - 0.034445, - 0.053734, - 0.044874, - 0.037287, - 0.022142, - 0.0055209, - -0.048441, - -0.019664, - -0.048502, - -0.014021, - -0.011286, - -0.016848, - 0.014598, - -0.027776, - -0.015306, - 0.064201, - 0.048987, - -0.10349, - -0.05261, - -0.029225, - 0.083567, - -0.052, - 0.014201, - 0.064642, - -0.043334, - -0.0008187, - -0.020402, - 0.065784, - 0.015545, - -0.0087775, - -0.02798, - -0.042018, - 0.017338, - 0.11324, - 0.07442, - -0.019938, - 0.020209, - 0.017853, - -0.10337, - 0.0020313, - -0.023123, - 0.078894, - 0.09718, - -0.014014, - -0.020032, - 0.050273, - 0.0088066, - 0.0028571, - 0.097102, - 0.036166, - 0.009004, - -0.023686, - -0.056615, - -0.057936, - 0.075493, - -0.017793, - 0.011254, - -0.053136, - -0.00030701, - -0.017112, - -0.039427, - 0.027289, - -0.057585, - 0.015044, - 0.012799, - 0.022572, - 0.02897, - -0.037452, - -0.0013231, - -0.057544, - -0.038447, - 0.01411, - -0.11664, - -0.060796, - -0.025695, - 0.000039724, - -0.045336, - 0.019039, - 0.086615, - 0.082407, - 0.031866, - -0.05994, - 0.085961, - 0.014206, - -0.015694, - -0.0081972, - 0.054996, - -0.014117, - -0.036185, - 0.0053751, - 0.03464, - -0.17334, - 0.026311, - -0.092064, - -0.11324, - -0.074668, - 0.000015385, - -0.0043948, - -0.0049726, - -0.058389, - -0.0023346, - 0.12547, - 0.016024, - -0.0030733, - 0.018946, - -0.04498, - 0.011393, - -0.11038, - -0.027597, - 0.034663, - -0.026962, - -0.015849, - -0.069378, - -0.029812, - 0.10772, - -0.069432, - -0.019389, - -0.0032345, - 0.11, - 0.025418, - -0.036815, - 0.040449, - -0.019802, - -0.067753, - 0.03876, - -0.021706, - -0.01825, - 0.025948, - 0.031505, - -0.028095, - -0.051893, - 0.020142, - 0.014165, - -0.024595, - -0.021779, - -0.017081, - -0.037026, - 0.022678, - 0.0010012, - 0.026708, - -0.040678, - 0.034594, - 0.042532, - 0.019117, - 0.016234, - -0.0020031, - -0.007933, - -0.063789, - 0.0146, - 0.058231, - 0.048675, - 0.066469, - 0.036937, - -0.009697, - -0.0050941, - 0.012613, - -0.038741, - -0.0021549, - 0.024795, - 0.087991, - -0.092744, - 0.026343, - 0.091672, - -0.099681, - -0.0050794, - -0.038952, - -0.046471, - 0.054144, - 0.025533, - -0.057528, - 0.058062, - 0.095101, - 0.034832, - -0.054436, - 0.10039, - -0.03884, - -0.072635, - 0.0091611, - -0.065647, - 0.013812, - 0.11672, - 0.070754, - -0.039623, - -0.0099356, - -0.031712, - -0.055852, - -0.052918, - 0.0018812, - 0.050897, - 0.0079046, - -0.056438 - ], - "nasties": [ - -0.044227, - 0.016979, - -0.015142, - 0.026803, - 0.023864, - -0.075647, - -0.014881, - -0.066618, - 0.042509, - 0.010075, - -0.016131, - -0.035901, - -0.0040487, - -0.031547, - -0.067367, - -0.083904, - 0.062753, - 0.046319, - 0.072467, - -0.0032018, - 0.032307, - 0.038433, - 0.015804, - 0.019431, - 0.010674, - -0.0403, - 0.11194, - -0.0083934, - 0.12601, - 0.029887, - 0.037575, - -0.050476, - -0.054521, - 0.0030231, - 0.085977, - -0.056574, - -0.044949, - -0.046066, - 0.023794, - 0.0091466, - -0.013148, - -0.059805, - -0.075806, - 0.01855, - 0.028019, - -0.025847, - -0.028245, - 0.0072408, - 0.026179, - -0.053861, - -0.034455, - 0.029558, - 0.06619, - -0.12228, - 0.035162, - 0.029502, - -0.0016943, - -0.062589, - -0.031332, - 0.0073395, - 0.052927, - -0.058828, - 0.13992, - 0.012646, - -0.017333, - 0.022791, - 0.029535, - 0.024321, - 0.032192, - 0.06437, - 0.075096, - 0.014789, - 0.061776, - 0.035405, - -0.025085, - 0.0016314, - 0.055063, - -0.051539, - -0.0053512, - -0.015173, - -0.022434, - 0.024032, - 0.00082099, - 0.18165, - 0.076615, - 0.067201, - 0.0054242, - 0.050851, - 0.017382, - -0.006613, - 0.012764, - -0.022064, - -0.076468, - -0.0005178, - 0.0065323, - 0.072099, - -0.0026049, - 0.039485, - 0.023266, - -0.017923, - -0.029125, - 0.059259, - 0.020581, - 0.032505, - 0.11046, - -0.045148, - 0.056475, - -0.095487, - 0.037613, - 0.030672, - -0.045885, - 0.025621, - 0.065661, - -0.0093144, - -0.021719, - -0.00242, - -0.0011731, - -0.022132, - -0.12492, - -0.0021368, - -0.01034, - 0.024678, - -0.0024118, - -0.081703, - 0.1102, - -0.0049166, - -0.056388, - -0.037188, - -0.049692, - 0.097475, - -0.013053, - 0.089827, - 0.0070811, - 0.029873, - 0.029565, - -0.019796, - -0.030744, - 0.11728, - -0.030876, - 0.028435, - 0.012581, - 0.04005, - 0.032418, - -0.026075, - 0.0085895, - 0.024672, - 0.0046907, - -0.0017332, - 0.0098078, - -0.05774, - 0.0036421, - 0.17859, - 0.0056727, - 0.031452, - 0.026424, - -0.063141, - -0.043961, - -0.00038303, - 0.0070243, - 0.00022137, - 0.06815, - -0.036358, - -0.011124, - -0.098937, - -0.04302, - -0.065137, - 0.039691, - 0.0057896, - -0.010337, - -0.047531, - 0.0075994, - 0.029342, - -0.033326, - -0.010728, - -0.0271, - 0.026748, - -0.0088489, - -0.00085186, - 0.028975, - -0.0061131, - 0.011994, - -0.015389, - 0.0051088, - -0.033038, - 0.02607, - -0.0071712, - -0.006497, - 0.049026, - -0.01194, - -0.013112, - -0.046877, - 0.040655, - -0.076522, - -0.009383, - 0.017475, - -0.004803, - 0.015332, - 0.016737, - -0.047006, - 0.0206, - -0.10204, - 0.045344, - -0.03056, - -0.011478, - 0.037038, - -0.0026964, - -0.01763, - -0.000017358, - -0.017068, - -0.021292, - 0.10863, - 0.034467, - 0.080605, - -0.049459, - 0.055182, - -0.0076809, - -0.052229, - 0.06649, - 0.027272, - -0.11272, - 0.03326, - 0.00080383, - 0.0030395, - 0.051063, - 0.082436, - 0.041913, - 0.062645, - 0.075289, - 0.01502, - -0.066575, - 0.022749, - 0.011924, - -0.067433, - -0.016042, - 0.018507, - -0.082238, - -0.064178, - -0.046753, - 0.038589, - -0.058862, - 0.005623, - -0.03294, - 0.055417, - 0.035691, - -0.079689, - 0.080452, - -0.031109, - -0.045389, - -0.060247, - 0.015019, - 0.029883, - -0.065643, - -0.036353, - 0.037331, - -0.099563, - -0.0011513, - 0.0014876, - 0.013619, - 0.066462, - 0.00064007, - 0.085074, - 0.02578, - -0.028077, - -0.041343, - -0.077325, - -0.020297, - -0.013053, - 0.069225, - 0.044231, - -0.033944, - -0.086084, - 0.10192, - -0.095396, - -0.064437, - 0.10423, - -0.10564, - 0.072177, - 0.061284, - -0.041261, - -0.012597, - -0.020116, - 0.057029, - 0.042446, - 0.049889, - -0.014323, - 0.048025, - 0.08127, - -0.022679, - 0.071481, - 0.015041, - 0.01041, - 0.031824, - -0.11, - 0.028439, - -0.0034917, - -0.078863, - -0.010521, - 0.080899, - -0.025689, - -0.0069196 - ], - "advancement": [ - -0.026796, - -0.047541, - 0.034855, - -0.022854, - -0.049226, - 0.0096838, - -0.012603, - -0.048737, - 0.033727, - 0.0029707, - -0.0070242, - -0.024509, - 0.015556, - 0.013271, - -0.015834, - 0.024815, - 0.026925, - 0.030353, - 0.048143, - -0.017142, - 0.013737, - 0.022821, - -0.002438, - 0.055563, - -0.061526, - -0.010033, - -0.029647, - -0.0216, - 0.011616, - -0.043982, - -0.016509, - -0.0081884, - -0.024818, - -0.12147, - -0.033013, - 0.0050758, - 0.02771, - 0.01018, - 0.0088013, - -0.03513, - 0.0091902, - -0.047796, - 0.0067928, - -0.021402, - -0.016537, - -0.0018668, - 0.015111, - -0.036141, - -0.026369, - 0.033272, - -0.0086968, - 0.024294, - -0.056463, - -0.0058553, - -0.066825, - 0.048279, - 0.0087528, - 0.0032079, - -0.0074646, - 0.052431, - 0.01242, - 0.050231, - -0.011983, - 0.034955, - 0.070133, - -0.026507, - -0.049753, - -0.03131, - 0.070505, - -0.041155, - -0.010169, - -0.011429, - -0.010863, - -0.0094355, - -0.030994, - 0.055794, - -0.015372, - -0.034143, - 0.029159, - 0.0318, - 0.003491, - 0.018685, - -0.067838, - 0.055141, - -0.045639, - -0.019774, - 0.012648, - -0.017127, - -0.012749, - 0.0074855, - 0.010453, - -0.039651, - -0.054011, - 0.0091724, - -0.006912, - 0.012735, - 0.0022638, - -0.0093946, - -0.062973, - 0.036826, - -0.02205, - -0.009022, - 0.058375, - -0.010578, - -0.021958, - -0.030857, - 0.054893, - -0.0031479, - 0.00010997, - 0.013893, - -0.046224, - 0.065827, - 0.045964, - 0.031528, - 0.01262, - 0.013281, - -0.0074264, - -0.038459, - -0.021041, - -0.0084895, - 0.0015346, - -0.036271, - 0.0025698, - 0.030426, - 0.025425, - 0.026202, - -0.011569, - -0.059728, - 0.011752, - 0.095188, - 0.059452, - -0.0070145, - 0.0078196, - 0.0046489, - -0.028672, - -0.029664, - 0.020747, - 0.039069, - -0.0030522, - -0.01398, - 0.00016695, - -0.014176, - -0.0025823, - -0.0098349, - -0.019125, - 0.051282, - -0.030654, - -0.010945, - 0.027022, - 0.036736, - 0.099765, - 0.054409, - -0.00021562, - -0.094984, - 0.068795, - -0.012541, - 0.048519, - 0.015623, - 0.010838, - -0.0044585, - 0.048211, - -0.000054865, - -0.04795, - -0.049338, - -0.013228, - 0.0042744, - -0.053315, - -0.0067071, - 0.014136, - 0.0081757, - 0.052765, - 0.016216, - -0.031098, - 0.034872, - -0.008169, - 0.056015, - -0.01736, - 0.074911, - -0.026674, - 0.016288, - -0.056386, - 0.038308, - 0.0080812, - -0.015641, - -0.067383, - -0.032739, - -0.033719, - 0.11697, - -0.014437, - 0.043074, - -0.014793, - 0.025494, - 0.035527, - -0.024239, - -0.025288, - 0.018737, - -0.018995, - -0.046553, - -0.026193, - 0.023627, - -0.076272, - 0.031497, - 0.059738, - -0.021962, - 0.0014442, - -0.0084246, - 0.035497, - -0.012944, - 0.026181, - 0.0090494, - 0.08017, - 0.011298, - 0.013705, - 0.0059393, - 0.049994, - 0.017792, - 0.025569, - -0.0046149, - -0.025355, - -0.029904, - -0.039694, - 0.014585, - -0.0008097, - 0.041747, - 0.056032, - -0.024553, - 0.029224, - 0.068442, - -0.010023, - -0.030662, - -0.0013309, - -0.016435, - 0.000062237, - -0.028286, - 0.069147, - -0.015632, - -0.01454, - -0.0016257, - -0.036974, - 0.020594, - 0.024675, - 0.03422, - 0.016775, - -0.0055038, - -0.043977, - 0.032834, - -0.02061, - -0.086536, - 0.018749, - 0.008606, - -0.0034571, - 0.053238, - 0.042537, - 0.0065711, - 0.036505, - 0.011342, - -0.0213, - 0.068766, - 0.098298, - -0.034462, - -0.013097, - 0.035632, - -0.0042222, - -0.026776, - 0.082574, - 0.0030581, - 0.0091444, - 0.016196, - -0.019516, - 0.052878, - -0.0044547, - 0.059208, - -0.088779, - -0.066187, - -0.027598, - -0.035886, - 0.0008829, - 0.023313, - 0.024631, - -0.024706, - 0.097091, - -0.0044574, - -0.00094098, - -0.016566, - 0.026686, - -0.00024043, - -0.014959, - 0.064558, - -0.028747, - 0.010915, - 0.013482, - -0.0048713, - -0.031273, - -0.027969, - 0.017166, - 0.014374, - -0.0569, - -0.0010164, - 0.022601, - 0.024132 - ], - "pharmacy": [ - -0.062617, - -0.061917, - -0.013323, - -0.040855, - 0.020637, - -0.078327, - 0.018031, - -0.093877, - 0.062276, - 0.019765, - -0.030999, - -0.054328, - 0.042694, - 0.021061, - -0.008851, - 0.018623, - 0.13759, - 0.028426, - 0.049407, - 0.020381, - 0.014105, - 0.059416, - 0.0049884, - 0.049611, - -0.026713, - -0.062569, - -0.018994, - -0.030877, - -0.047016, - 0.072657, - 0.035058, - -0.031256, - 0.026107, - -0.041443, - 0.0276, - 0.066936, - 0.047996, - 0.045464, - 0.04433, - -0.01438, - 0.0042195, - -0.15148, - 0.031009, - -0.034133, - 0.064024, - -0.0030483, - 0.0026641, - 0.035469, - -0.013195, - 0.049849, - -0.047219, - -0.08432, - 0.014216, - -0.009548, - -0.056181, - 0.0074945, - -0.033212, - 0.16928, - -0.011834, - -0.065884, - 0.030146, - 0.047254, - 0.073691, - 0.10056, - 0.006581, - 0.045751, - 0.021741, - -0.0053106, - -0.03375, - -0.0052635, - -0.000451, - 0.015993, - 0.021385, - -0.038419, - 0.0027123, - -0.032412, - 0.0089893, - -0.0079826, - -0.044446, - 0.02105, - -0.035499, - 0.0097181, - -0.098772, - 0.018926, - -0.12911, - -0.02223, - 0.081842, - -0.04229, - -0.0087907, - -0.074411, - 0.077732, - 0.03808, - -0.091405, - 0.0061475, - -0.0081082, - 0.096846, - 0.10773, - 0.02098, - -0.0091485, - 0.012228, - 0.012904, - 0.047818, - -0.01984, - -0.045659, - 0.039443, - -0.072131, - 0.021579, - 0.040964, - 0.00011731, - 0.090847, - -0.020188, - 0.11256, - 0.045113, - 0.024942, - 0.028169, - 0.018692, - -0.032029, - -0.023833, - -0.02871, - 0.016209, - -0.070936, - 0.049347, - -0.052778, - -0.0092402, - 0.044817, - 0.044675, - -0.067493, - -0.088836, - 0.088191, - 0.10351, - 0.010728, - 0.026075, - -0.044084, - -0.014342, - 0.077904, - 0.012779, - 0.028954, - -0.013291, - 0.031677, - -0.14558, - 0.042491, - -0.0061709, - -0.073625, - 0.017546, - -0.043161, - -0.044282, - -0.0037369, - 0.0079824, - 0.029221, - -0.018155, - 0.027399, - 0.063772, - 0.10019, - -0.042206, - 0.075413, - 0.0076393, - -0.0073603, - -0.029939, - 0.087169, - 0.056728, - 0.023803, - 0.074825, - -0.045629, - 0.071667, - 0.023255, - -0.028855, - -0.019682, - -0.042023, - 0.00137, - -0.040915, - 0.016389, - 0.0096627, - -0.043897, - -0.0085537, - -0.0034384, - 0.041323, - -0.065116, - 0.0094628, - -0.04883, - -0.040425, - 0.0090452, - -0.065547, - -0.058848, - -0.039718, - -0.044102, - -0.037956, - 0.05047, - 0.093141, - 0.011181, - -0.07983, - 0.026765, - 0.070584, - -0.022422, - -0.02303, - 0.036982, - -0.071454, - -0.032563, - -0.000037363, - -0.0015537, - -0.031424, - -0.16345, - 0.043808, - -0.020941, - 0.027747, - -0.019081, - -0.01303, - 0.01089, - -0.086151, - -0.011004, - 0.0028613, - 0.12158, - -0.0018856, - 0.0093615, - 0.079447, - -0.012575, - -0.017918, - -0.024621, - -0.0016365, - 0.040226, - 0.0060274, - 0.1002, - 0.0396, - -0.047226, - 0.10389, - -0.0028193, - 0.033556, - 0.0076463, - 0.036836, - 0.062481, - -0.017129, - 0.01293, - -0.024138, - -0.032696, - -0.030888, - 0.0048002, - -0.0036977, - -0.0091466, - -0.0038629, - 0.018562, - 0.04914, - 0.033553, - 0.0024696, - 0.06503, - 0.02228, - 0.020343, - 0.0076879, - -0.072271, - -0.022082, - -0.027779, - 0.053616, - -0.031963, - 0.0030926, - 0.060553, - -0.0085794, - -0.0053657, - -0.015573, - -0.039184, - 0.050161, - 0.013267, - -0.0019952, - 0.0013312, - -0.015813, - -0.033022, - 0.0031431, - 0.025354, - -0.030381, - 0.012323, - -0.0010699, - -0.031479, - 0.038216, - -0.10005, - 0.069054, - -0.10347, - -0.032236, - -0.0010969, - 0.021872, - -0.067525, - 0.0031156, - -0.059795, - 0.021645, - 0.10754, - -0.047379, - -0.086381, - -0.014407, - -0.032493, - 0.051794, - -0.050274, - -0.040894, - 0.030044, - -0.10073, - 0.020136, - 0.051077, - -0.0062239, - -0.011306, - -0.11207, - 0.01932, - 0.011242, - 0.047982, - -0.019228, - -0.045286 - ], - "beagle": [ - -0.043438, - -0.0082597, - 0.047684, - -0.061586, - -0.096367, - 0.014288, - 0.090571, - -0.10994, - 0.0079967, - 0.012733, - -0.016095, - -0.01902, - 0.060875, - -0.036454, - -0.0093806, - 0.034797, - 0.028019, - -0.041986, - 0.037757, - 0.02873, - 0.055441, - -0.069873, - 0.05993, - 0.042357, - 0.062572, - 0.082397, - 0.029598, - 0.032623, - -0.049224, - 0.001782, - -0.051559, - -0.041445, - 0.068474, - 0.083885, - -0.06045, - 0.046108, - 0.0083581, - -0.11571, - 0.065537, - -0.076069, - 0.010711, - -0.094772, - 0.063627, - -0.015311, - 0.10128, - 0.057786, - 0.028907, - -0.0077255, - -0.0399, - 0.020248, - 0.073988, - 0.13508, - 0.089971, - -0.092062, - 0.03493, - -0.053202, - -0.0050721, - 0.064546, - -0.066776, - 0.016408, - -0.023097, - -0.12969, - 0.083698, - -0.0095804, - 0.049373, - 0.090276, - 0.010184, - -0.015234, - -0.043595, - -0.054799, - 0.058187, - -0.045659, - 0.039413, - -0.052881, - -0.018087, - 0.052397, - -0.1107, - 0.009986, - -0.023246, - -0.027176, - 0.044321, - -0.00059641, - 0.092353, - 0.015811, - 0.064013, - -0.032781, - -0.042899, - 0.029768, - 0.035689, - 0.035867, - 0.052584, - 0.002618, - -0.074564, - -0.02035, - 0.118, - 0.14279, - 0.043279, - 0.044346, - 0.028646, - 0.065044, - 0.018999, - 0.050075, - 0.059043, - 0.018919, - -0.043277, - -0.16153, - -0.083671, - 0.0022806, - 0.067115, - 0.013775, - -0.029448, - 0.059263, - 0.014907, - 0.057837, - 0.027579, - 0.034167, - -0.026628, - -0.0079185, - -0.029974, - 0.044721, - 0.014399, - 0.013923, - 0.050499, - -0.08208, - 0.1121, - 0.030175, - 0.067446, - -0.085024, - -0.04341, - 0.063182, - -0.0026276, - 0.0054045, - -0.058725, - 0.011668, - -0.0091083, - -0.12852, - -0.0072354, - 0.10155, - 0.035644, - -0.047828, - -0.003946, - 0.022978, - -0.065206, - -0.069957, - -0.00050308, - 0.010665, - 0.092316, - -0.04695, - -0.049223, - -0.20167, - -0.032336, - -0.013619, - 0.003058, - -0.054157, - -0.030819, - -0.013912, - 0.038285, - -0.025046, - 0.0085993, - -0.061598, - 0.026371, - 0.005035, - -0.05387, - -0.037898, - 0.057527, - -0.014948, - -0.061347, - 0.022113, - -0.1294, - 0.073743, - -0.019887, - 0.071947, - -0.030859, - -0.058335, - -0.064004, - 0.062723, - 0.026344, - -0.022568, - -0.015763, - 0.0039616, - 0.039209, - -0.15129, - -0.04822, - -0.057135, - 0.03898, - -0.088022, - 0.0016672, - 0.14773, - 0.063223, - -0.1061, - 0.021772, - 0.040119, - -0.069279, - -0.046045, - -0.023166, - -0.014266, - -0.041404, - 0.086316, - 0.084638, - 0.0053079, - -0.17467, - 0.089828, - 0.011435, - -0.046411, - -0.021602, - -0.088133, - -0.076688, - 0.0096469, - -0.022167, - -0.068101, - 0.19522, - 0.016713, - -0.033811, - -0.023656, - 0.065501, - -0.050095, - -0.030709, - -0.10616, - 0.023765, - -0.025349, - -0.014765, - 0.034002, - 0.073659, - 0.10064, - 0.052257, - 0.0078719, - -0.017496, - 0.072447, - -0.0075336, - 0.013895, - -0.012766, - 0.0045324, - -0.013449, - -0.04171, - -0.0069209, - -0.027117, - 0.090764, - -0.01951, - -0.0422, - 0.0038371, - 0.046096, - 0.078054, - 0.076904, - -0.10326, - 0.02151, - 0.1247, - 0.064215, - 0.060942, - 0.010109, - -0.002349, - -0.017447, - -0.046111, - -0.03582, - 0.035152, - 0.062063, - -0.026053, - 0.031353, - -0.042543, - 0.045682, - -0.014799, - 0.0065464, - -0.084934, - 0.0070284, - -0.061383, - 0.011751, - -0.064483, - -0.040461, - 0.013765, - 0.020914, - 0.001855, - -0.017651, - 0.094179, - -0.12019, - -0.0091487, - 0.046855, - -0.062129, - -0.086515, - 0.031012, - 0.084731, - -0.078616, - 0.1438, - 0.067908, - 0.087856, - 0.015917, - -0.034731, - -0.0061275, - -0.083057, - -0.050337, - -0.043518, - -0.05509, - 0.025677, - -0.026324, - -0.054044, - -0.11321, - -0.043415, - -0.012004, - 0.0022015, - 0.053482, - -0.002876, - 0.11697 - ], - "governmental": [ - 0.018699, - -0.056611, - -0.0034294, - 0.018543, - -0.031285, - -0.039968, - 0.020631, - -0.060863, - 0.072552, - 0.050807, - 0.015344, - -0.047063, - -0.011058, - -0.0023401, - -0.017452, - 0.039532, - 0.042027, - -0.021316, - 0.026127, - 0.035019, - -0.0031637, - -0.0049089, - 0.042713, - 0.060945, - -0.026737, - 0.0051653, - -0.0083716, - 0.02805, - 0.0087392, - 0.0067911, - 0.0012883, - -0.065164, - -0.04442, - -0.064956, - 0.044321, - 0.065896, - -0.024387, - -0.0034171, - 0.034054, - 0.020315, - -0.008573, - -0.089714, - 0.012173, - 0.040093, - 0.028422, - 0.017759, - -0.0305, - 0.016471, - -0.022535, - -0.019483, - 0.0062751, - -0.0074594, - 0.0072798, - -0.0014189, - 0.030341, - 0.02012, - 0.022351, - 0.011264, - -0.013491, - 0.0077799, - 0.045741, - 0.015674, - 0.054638, - -0.0075354, - 0.032469, - -0.016875, - 0.0092023, - -0.04569, - 0.042656, - 0.020677, - 0.019917, - -0.0059022, - 0.058757, - -0.003175, - -0.0058132, - -0.026064, - -0.023276, - -0.03177, - 0.024683, - -0.0097643, - -0.040082, - 0.030017, - -0.044838, - 0.020077, - 0.0075205, - 0.018822, - -0.032605, - -0.00078158, - 0.020604, - 0.034455, - -0.025398, - 0.026556, - -0.074255, - -0.023884, - -0.000047035, - 0.054496, - 0.022264, - -0.033238, - 0.043774, - 0.013472, - 0.011554, - -0.027032, - -0.020021, - -0.047465, - 0.043736, - -0.073628, - 0.038988, - -0.021839, - 0.0023354, - -0.01711, - 0.0078047, - 0.069179, - 0.037418, - 0.033121, - -0.0040378, - 0.006181, - 0.015373, - -0.011159, - -0.014831, - 0.0046292, - -0.011695, - -0.0081614, - -0.0093963, - 0.0076843, - 0.062313, - 0.0007619, - -0.0088861, - -0.024507, - 0.0047303, - 0.071629, - -0.039452, - 0.034744, - 0.04747, - 0.0070551, - -0.030178, - -0.0042448, - -0.035279, - 0.019272, - 0.013205, - 0.01615, - 0.0045351, - -0.059633, - -0.018695, - 0.032494, - -0.026337, - -0.031225, - -0.029074, - -0.013941, - 0.029541, - -0.0036926, - 0.034044, - 0.14224, - 0.024203, - -0.026596, - 0.021362, - 0.020156, - -0.02306, - -0.014737, - -0.039234, - 0.0055949, - 0.015965, - -0.0027959, - -0.049677, - 0.014986, - -0.021274, - 0.048651, - 0.019278, - -0.0091317, - 0.035094, - 0.016413, - 0.020028, - 0.022883, - 0.0047237, - 0.020161, - -0.031126, - 0.052422, - -0.020954, - 0.036307, - -0.023767, - -0.0031552, - -0.047281, - -0.020235, - 0.0096997, - 0.021378, - -0.0055895, - -0.027413, - -0.010441, - 0.1066, - 0.034586, - -0.037759, - -0.0035176, - 0.018733, - 0.083696, - -0.014599, - -0.0010665, - 0.0043509, - -0.0020285, - -0.015521, - -0.016646, - -0.00087683, - -0.1131, - -0.015509, - -0.0081927, - -0.00676, - -0.00062301, - -0.024423, - -0.01455, - 0.0052654, - -0.0099573, - -0.0028331, - 0.10047, - 0.0076166, - -0.025408, - 0.015676, - -0.043921, - 0.010361, - 0.016772, - -0.033154, - 0.0032359, - -0.02532, - -0.0032568, - -0.035554, - -0.06007, - 0.064614, - 0.022878, - 0.035798, - 0.028294, - 0.015666, - 0.0017325, - -0.085023, - -0.026702, - -0.017512, - -0.031737, - -0.0048347, - -0.01968, - 0.01042, - -0.0090082, - -0.0038341, - -0.014068, - -0.016316, - 0.013075, - 0.0070873, - 0.00628, - 0.014094, - -0.075743, - 0.0014031, - 0.0085498, - -0.02309, - -0.00259, - -0.02809, - -0.025548, - -0.022847, - 0.001145, - -0.036328, - -0.015951, - 0.031687, - 0.013359, - 0.0099355, - -0.02273, - -0.0174, - 0.0097811, - -0.0085795, - -0.022719, - 0.02159, - 0.019869, - 0.012639, - -0.00147, - 0.040873, - -0.016273, - 0.036684, - 0.0023393, - 0.037225, - -0.06407, - -0.02063, - 0.021798, - -0.055369, - 0.00012996, - 0.031379, - -0.023442, - 0.0083864, - 0.12062, - -0.026128, - 0.0097021, - 0.013133, - 0.013864, - 0.034325, - -0.010652, - -0.030893, - -0.023432, - 0.024706, - 0.0022504, - 0.006229, - 0.014196, - 0.033414, - -0.0080677, - 0.048791, - -0.051463, - -0.013194, - -0.01715, - -0.0042095 - ], - "subjects": [ - -0.012274, - -0.065858, - 0.048741, - -0.019367, - 0.022729, - -0.032985, - 0.037075, - -0.091993, - 0.040992, - 0.013177, - -0.017726, - -0.056237, - 0.032054, - -0.034585, - 0.047522, - 0.043464, - 0.034689, - 0.044788, - 0.059794, - -0.004644, - -0.01285, - 0.019747, - 0.075162, - 0.062954, - -0.024927, - 0.018814, - -0.0243, - 0.021411, - 0.14186, - -0.00086296, - 0.011703, - -0.018331, - -0.016851, - 0.0062197, - 0.043734, - 0.019105, - 0.042152, - -0.014383, - -0.043897, - 0.046922, - -0.038697, - -0.028907, - -0.024896, - 0.04912, - 0.014755, - -0.045966, - 0.0082965, - 0.0036631, - 0.01484, - -0.021435, - -0.0055695, - -0.015479, - -0.053745, - 0.011836, - -0.047961, - 0.00067648, - -0.049246, - 0.0071416, - -0.037639, - -0.018846, - 0.039149, - -0.045623, - 0.18228, - 0.041276, - 0.035472, - -0.017087, - -0.014907, - 0.016256, - -0.0084326, - 0.030268, - 0.0067755, - 0.021214, - 0.052356, - 0.01831, - 0.0092172, - -0.02324, - 0.092203, - -0.033345, - 0.0069353, - -0.052853, - -0.020546, - 0.02777, - 0.014346, - 0.058952, - -0.014362, - 0.01477, - 0.035443, - -0.0064545, - 0.0095977, - 0.01813, - 0.038829, - -0.0067278, - -0.061085, - 0.046018, - 0.020356, - 0.046837, - -0.0628, - 0.061443, - -0.0088779, - 0.011143, - 0.033055, - -0.0049614, - -0.037344, - 0.021915, - 0.043967, - -0.058683, - -0.0085271, - 0.0055201, - 0.051683, - 0.056357, - -0.0004739, - 0.0429, - 0.056527, - -0.030918, - -0.020932, - 0.051602, - -0.018389, - 0.018324, - -0.078605, - -0.034254, - 0.027867, - 0.051287, - -0.033409, - -0.067326, - 0.14081, - 0.022162, - -0.03351, - -0.087891, - -0.018177, - 0.054955, - -0.031637, - 0.057531, - -0.042138, - -0.0045919, - 0.0073563, - 0.038452, - 0.0097375, - 0.075524, - 0.02889, - 0.032518, - 0.0042841, - -0.0031687, - -0.035663, - -0.040684, - -0.00089275, - -0.05192, - -0.056877, - -0.018729, - 0.022892, - -0.035008, - 0.056386, - 0.065606, - 0.0027373, - -0.066221, - 0.0076036, - -0.0060564, - -0.017868, - 0.012274, - -0.00158, - 0.0019059, - 0.0028998, - 0.0076845, - 0.016568, - 0.012855, - 0.028216, - 0.00082544, - 0.065219, - -0.043123, - 0.0062084, - -0.017001, - -0.0015512, - -0.040271, - 0.030822, - 0.017937, - -0.024735, - 0.056069, - -0.011116, - 0.017124, - -0.029195, - 0.02869, - 0.086227, - -0.011097, - 0.0018701, - 0.057268, - 0.043927, - -0.069804, - 0.031428, - 0.056423, - 0.028675, - 0.010659, - 0.016493, - 0.06486, - -0.094369, - -0.051845, - 0.0077376, - 0.031396, - -0.0039389, - 0.022386, - 0.00070815, - 0.013805, - -0.12758, - 0.058824, - -0.0029992, - -0.10931, - -0.0075914, - -0.024348, - 0.016692, - 0.024179, - 0.018656, - -0.041699, - 0.059547, - 0.021479, - 0.035208, - 0.057396, - 0.0080338, - 0.020604, - 0.041895, - -0.0093859, - -0.045602, - -0.0016689, - -0.0075678, - 0.012715, - -0.076419, - 0.098814, - 0.0021778, - -0.017008, - 0.09227, - 0.1067, - -0.036465, - 0.0035917, - -0.075135, - -0.010741, - -0.11154, - -0.034605, - 0.047939, - 0.034807, - -0.0040419, - 0.0013354, - -0.040953, - -0.029502, - -0.035342, - -0.037272, - -0.03768, - 0.038639, - -0.043891, - 0.027863, - 0.041181, - -0.025157, - 0.018583, - -0.028885, - 0.066309, - 0.011202, - 0.0096554, - -0.0063661, - -0.037723, - 0.0075703, - -0.023559, - 0.041338, - 0.10406, - -0.019406, - -0.045927, - -0.02862, - 0.05972, - -0.0034084, - -0.010199, - -0.037764, - 0.0045112, - 0.042746, - 0.032386, - 0.0025997, - 0.039014, - 0.10033, - -0.060524, - -0.043742, - 0.040627, - -0.04882, - 0.038963, - 0.009842, - -0.011858, - 0.01822, - -0.0051302, - -0.0093561, - 0.05769, - -0.044986, - 0.013777, - -0.01109, - 0.00048645, - -0.014091, - -0.010465, - 0.067938, - -0.025079, - -0.0023949, - -0.025612, - -0.050296, - -0.051522, - 0.054073, - -0.012419, - 0.008148, - -0.033225, - 0.030733 - ], - "parents": [ - 0.0095194, - 0.0023089, - 0.038294, - 0.028887, - -0.051544, - 0.0013837, - -0.00068304, - -0.094429, - 0.04317, - 0.0097696, - 0.020117, - 0.0012022, - 0.02418, - 0.019907, - -0.03603, - -0.013658, - 0.077987, - 0.0010846, - 0.040039, - 0.059056, - -0.012737, - -0.020322, - 0.011419, - 0.035448, - -0.032192, - 0.037822, - -0.0055804, - 0.018468, - 0.080615, - 0.0049041, - 0.010773, - -0.02934, - 0.0023922, - 0.020655, - -0.05567, - 0.094775, - -0.093665, - -0.082068, - 0.035048, - -0.044397, - -0.013227, - -0.040583, - -0.023919, - -0.032051, - 0.018965, - 0.0072817, - 0.0053102, - 0.04822, - -0.027924, - -0.016969, - 0.0060456, - -0.0072043, - -0.0003323, - 0.0067288, - -0.015128, - -0.017728, - -0.010948, - -0.079836, - -0.05876, - -0.042674, - 0.0038138, - -0.026715, - 0.09957, - 0.081456, - 0.023136, - -0.026998, - 0.015506, - -0.077821, - -0.022341, - -0.041389, - -0.019895, - -0.032553, - 0.14233, - 0.051345, - 0.0011689, - -0.017894, - 0.030194, - -0.025606, - 0.032223, - -0.03306, - -0.027263, - 0.079412, - 0.058441, - 0.045628, - -0.041262, - -0.037472, - -0.0063544, - 0.0095986, - -0.060847, - 0.0012241, - -0.020614, - -0.01112, - -0.10802, - -0.01896, - 0.0049563, - 0.060004, - 0.019401, - 0.059947, - 0.013564, - 0.0096107, - 0.046493, - -0.019174, - 0.036635, - -0.042771, - 0.049535, - -0.072767, - 0.0023675, - -0.0081754, - 0.021991, - 0.035525, - -0.01939, - 0.11952, - 0.024765, - -0.0010616, - -0.0077088, - -0.061613, - -0.034476, - 0.0053345, - -0.0056244, - 0.023828, - -0.025595, - -0.016592, - 0.077532, - -0.037483, - 0.079826, - -0.051763, - 0.016384, - -0.055932, - 0.032481, - 0.066576, - -0.015583, - 0.13634, - 0.049694, - 0.0077044, - -0.002509, - 0.0093308, - -0.015912, - 0.090005, - -0.013477, - 0.02519, - 0.037527, - -0.0028125, - -0.018603, - 0.025658, - -0.02001, - 0.014353, - -0.010534, - 0.026553, - -0.071115, - -0.033941, - 0.035791, - 0.095679, - -0.039492, - -0.021467, - 0.055287, - -0.040463, - 0.069736, - 0.054929, - 0.087406, - -0.05499, - 0.043097, - 0.024946, - 0.074585, - -0.0058663, - 0.054184, - 0.041803, - 0.062864, - 0.066702, - 0.02258, - -0.083225, - -0.057309, - -0.024502, - -0.034408, - 0.0010863, - -0.00094749, - 0.027829, - 0.017462, - 0.044062, - -0.028631, - -0.069455, - 0.052243, - -0.094551, - -0.020788, - -0.0085356, - 0.020644, - -0.094754, - -0.022424, - 0.081786, - 0.041887, - -0.049651, - -0.049632, - 0.13356, - -0.11318, - -0.029699, - 0.022638, - -0.0023369, - 0.0745, - 0.025298, - 0.03488, - -0.018763, - -0.1183, - 0.063276, - 0.017842, - -0.015931, - 0.021844, - 0.068908, - -0.032856, - -0.044955, - -0.025621, - -0.041564, - 0.046426, - 0.008376, - 0.10559, - 0.084142, - -0.082591, - -0.01489, - -0.040178, - -0.0096457, - -0.030047, - -0.020424, - 0.052087, - 0.00014625, - -0.00708, - 0.097925, - 0.11148, - -0.052587, - 0.010973, - 0.036085, - -0.012172, - -0.050536, - 0.025759, - 0.016832, - -0.079297, - 0.0057875, - 0.077487, - 0.049913, - 0.050427, - 0.046186, - -0.051435, - -0.0071277, - 0.01581, - -0.067106, - -0.0081043, - -0.031746, - -0.00038331, - -0.0070403, - -0.008647, - -0.078293, - -0.0087314, - -0.012239, - 0.087346, - -0.0093961, - 0.03626, - -0.020241, - 0.0269, - -0.049475, - -0.0263, - 0.0018204, - -0.037148, - -0.015412, - -0.027124, - -0.031559, - -0.017772, - -0.00048631, - 0.010358, - 0.021583, - -0.023687, - 0.036779, - 0.02751, - 0.037939, - -0.034422, - 0.04377, - -0.12006, - -0.036598, - 0.049618, - 0.0076554, - -0.0074616, - 0.0074114, - 0.016292, - 0.034179, - 0.022078, - -0.032076, - 0.04344, - -0.047315, - 0.032985, - 0.074039, - -0.035785, - -0.09266, - -0.012318, - 0.0029532, - -0.0017845, - 0.019887, - -0.051311, - 0.029854, - -0.024414, - 0.014951, - 0.079434, - -0.0035984, - 0.0096512, - 0.0090922 - ], - "exhibition": [ - -0.027813, - -0.0067326, - 0.040061, - -0.0072981, - -0.01841, - 0.0038796, - 0.00467, - -0.071543, - 0.01555, - -0.016703, - 0.02925, - -0.090184, - 0.038363, - 0.023292, - 0.015654, - -0.035281, - 0.050824, - 0.020911, - 0.011375, - -0.06949, - -0.016622, - 0.0040025, - -0.010164, - 0.038083, - 0.0023496, - 0.0048093, - -0.025943, - 0.019803, - -0.012228, - 0.070681, - -0.0032934, - 0.023813, - 0.06, - -0.079122, - 0.022275, - 0.018958, - 0.022624, - 0.021653, - -0.027833, - 0.039328, - -0.028885, - -0.074023, - -0.013071, - 0.00967, - 0.015887, - 0.049648, - -0.0026862, - 0.026241, - -0.014141, - -0.042229, - -0.0047978, - -0.030478, - -0.029995, - 0.014632, - -0.057578, - 0.0001573, - 0.0035775, - -0.010153, - -0.054819, - 0.00093746, - 0.031591, - 0.0013082, - 0.10711, - -0.018499, - 0.039745, - 0.01333, - -0.052949, - -0.029205, - 0.052327, - 0.084712, - 0.016509, - -0.0087546, - -0.023063, - 0.025426, - 0.017559, - 0.055214, - -0.034136, - -0.026547, - 0.065696, - 0.059219, - 0.0028365, - -0.019629, - -0.0080888, - 0.039252, - 0.0037987, - -0.072324, - -0.0034199, - -0.034853, - -0.014773, - 0.016811, - -0.057152, - 0.054912, - -0.049365, - -0.0087116, - 0.031525, - 0.037969, - 0.020725, - 0.04655, - 0.030344, - 0.016327, - 0.024111, - 0.041996, - 0.015966, - 0.022599, - -0.0037839, - -0.0557, - -0.055481, - 0.018831, - -0.022686, - 0.046925, - 0.0017235, - 0.045504, - 0.030174, - 0.043449, - 0.07219, - 0.010885, - 0.000066095, - -0.0057925, - -0.021622, - 0.020551, - -0.0014698, - 0.042786, - -0.035932, - 0.050446, - 0.044752, - -0.02454, - 0.0083332, - -0.048238, - 0.067106, - 0.065493, - 0.0098841, - -0.01521, - -0.0043093, - 0.011535, - 0.03563, - -0.011038, - -0.030712, - 0.029798, - -0.012132, - -0.0041445, - 0.020936, - 0.020519, - -0.030569, - -0.044906, - -0.015725, - -0.0075268, - -0.070414, - 0.032621, - 0.01989, - 0.01285, - 0.015698, - 0.029337, - -0.04936, - -0.094267, - -0.064729, - -0.0011117, - -0.0297, - 0.057421, - -0.032065, - -0.013421, - 0.029017, - -0.025256, - -0.034522, - 0.065998, - -0.025638, - -0.0010296, - 0.053387, - -0.03178, - 0.030234, - 0.0037782, - 0.051909, - 0.040478, - -0.04787, - 0.029282, - -0.011599, - 0.027052, - -0.049314, - -0.017225, - -0.034478, - 0.0078028, - 0.0032614, - 0.009767, - -0.0010675, - 0.014633, - -0.024328, - 0.015082, - 0.010347, - 0.069713, - -0.020751, - 0.0041536, - 0.033288, - 0.034499, - -0.026835, - -0.088646, - -0.072082, - 0.047607, - 0.042525, - -0.0056926, - 0.026462, - -0.014424, - -0.11759, - 0.14418, - 0.027477, - -0.032726, - 0.0077623, - 0.042885, - -0.074287, - -0.022463, - 0.011462, - -0.039052, - 0.097807, - 0.0023517, - -0.019118, - -0.030288, - -0.0041129, - 0.022887, - 0.034606, - 0.027206, - 0.0037143, - -0.01831, - 0.0065183, - -0.094052, - -0.016609, - 0.080931, - -0.021159, - 0.041955, - 0.05218, - 0.039171, - -0.017247, - 0.0075799, - -0.021815, - -0.071627, - -0.0032554, - -0.015467, - 0.0022167, - 0.029436, - 0.016311, - -0.004095, - 0.017876, - -0.030511, - 0.058744, - -0.022812, - 0.0067335, - -0.025782, - -0.026654, - 0.01394, - -0.054727, - -0.0026293, - 0.0051424, - -0.00046411, - 0.029715, - -0.035329, - 0.055058, - -0.012541, - -0.013028, - 0.014813, - -0.026337, - 0.020403, - 0.015279, - 0.03141, - 0.040157, - -0.0080046, - -0.0096623, - -0.055429, - 0.067047, - -0.031062, - 0.047365, - -0.017172, - -0.0056994, - -0.035405, - 0.06753, - 0.059448, - -0.097626, - -0.0048635, - -0.02641, - -0.008335, - 0.019351, - 0.086982, - -0.017834, - 0.0071133, - 0.037808, - -0.00070176, - 0.025631, - -0.046425, - 0.0074687, - 0.0027778, - -0.007866, - 0.02636, - 0.00739, - 0.036209, - -0.03865, - 0.067517, - 0.011113, - -0.0092332, - -0.0010839, - -0.039747, - -0.063258, - 0.039165, - -0.00020292, - 0.029317 - ], - "homeland": [ - 0.014732, - -0.059769, - 0.000048646, - -0.027188, - 0.028769, - 0.032062, - 0.040174, - -0.069775, - 0.044113, - 0.074916, - -0.080313, - -0.044493, - -0.071137, - 0.0040086, - -0.016548, - -0.043755, - 0.12227, - -0.041201, - 0.050666, - 0.04605, - -0.030166, - 0.0034573, - 0.059433, - 0.03379, - 0.082535, - 0.05488, - -0.013618, - 0.02186, - 0.011013, - -0.036298, - 0.036129, - -0.11141, - 0.0018711, - -0.01215, - 0.0076116, - 0.034038, - -0.022483, - -0.0078426, - 0.040885, - -0.023814, - -0.068367, - -0.10247, - 0.034487, - -0.041954, - 0.0034312, - -0.045913, - -0.045558, - 0.0030096, - -0.044048, - -0.026486, - -0.0021038, - 0.032623, - -0.046688, - -0.012081, - -0.0828, - 0.0030229, - 0.0151, - -0.030479, - -0.026388, - -0.010771, - -0.0052311, - -0.068636, - 0.083303, - 0.0056946, - 0.064362, - -0.066612, - 0.021981, - -0.063144, - 0.033066, - 0.006171, - 0.012355, - -0.0059564, - 0.025839, - -0.02587, - 0.018621, - 0.044032, - 0.072159, - 0.0030997, - 0.079573, - -0.012799, - 0.0082573, - 0.061521, - 0.0060058, - 0.060423, - -0.031739, - -0.035756, - -0.018402, - -0.049512, - -0.029066, - -0.0049343, - -0.032042, - 0.027023, - -0.092527, - 0.048045, - 0.018394, - 0.098367, - -0.054039, - -0.034098, - 0.038176, - 0.0010413, - 0.11985, - -0.020599, - 0.063032, - -0.039585, - 0.019547, - -0.089383, - -0.096812, - 0.048206, - 0.0096242, - -0.049928, - 0.037881, - 0.10516, - 0.047082, - 0.010529, - -0.005467, - 0.075758, - -0.0046561, - -0.033312, - -0.019614, - 0.040328, - -0.061686, - -0.044558, - -0.10024, - -0.039289, - -0.0014869, - -0.0058553, - 0.0097244, - -0.12471, - -0.066411, - 0.063624, - 0.01816, - -0.011124, - 0.014787, - 0.0061223, - -0.026381, - -0.026593, - 0.039498, - -0.00074149, - -0.034916, - 0.051601, - 0.01779, - -0.028943, - -0.011555, - 0.040596, - -0.036922, - 0.028524, - -0.012225, - 0.019144, - -0.027655, - -0.051802, - 0.026894, - 0.05927, - 0.0085205, - -0.022334, - 0.042596, - -0.041237, - 0.001694, - -0.033018, - -0.060789, - -0.065704, - 0.024082, - -0.033153, - -0.060168, - -0.0095712, - -0.0099463, - 0.046039, - -0.036847, - -0.0034249, - 0.013496, - 0.026692, - 0.016739, - -0.0024983, - -0.084512, - 0.018418, - -0.0093206, - 0.048633, - 0.0010901, - 0.013726, - 0.0021668, - -0.014598, - 0.020139, - 0.04463, - 0.040473, - -0.0046379, - -0.022734, - -0.027586, - -0.0092315, - 0.099063, - -0.043769, - 0.018698, - 0.027118, - 0.10388, - 0.0060444, - 0.016022, - -0.017817, - 0.062492, - 0.038912, - 0.0069876, - 0.022525, - -0.00078328, - -0.11846, - 0.024069, - 0.000092614, - -0.020748, - -0.066886, - -0.077714, - 0.057004, - 0.00082867, - -0.027317, - 0.013715, - 0.09899, - -0.058394, - -0.031531, - 0.032745, - 0.0011684, - 0.029678, - 0.088839, - -0.018269, - 0.014034, - -0.0060507, - -0.032821, - -0.054858, - 0.032558, - 0.097908, - -0.029178, - -0.040476, - 0.0060522, - 0.054891, - -0.0067414, - -0.091448, - 0.012259, - -0.010564, - -0.10863, - -0.06344, - 0.043762, - -0.042997, - -0.011952, - 0.060167, - -0.0096957, - -0.038624, - 0.029299, - -0.027469, - 0.019036, - -0.012562, - 0.001162, - -0.030141, - -0.0040804, - -0.052453, - -0.069601, - 0.059384, - 0.082857, - -0.062052, - -0.0013567, - 0.010514, - 0.028848, - 0.063817, - -0.025639, - 0.052437, - 0.049998, - -0.014346, - -0.040548, - 0.024073, - -0.045369, - -0.0087768, - 0.063418, - -0.014037, - 0.0042809, - 0.016821, - 0.050748, - -0.066567, - -0.011655, - 0.064088, - -0.11505, - -0.032314, - 0.00097008, - -0.034438, - 0.0070945, - 0.015715, - -0.0096371, - 0.038074, - 0.076132, - -0.053259, - -0.040893, - 0.03067, - 0.031276, - 0.015394, - 0.076308, - -0.017276, - -0.047878, - -0.050101, - 0.085019, - 0.064323, - 0.0021717, - 0.0105, - 0.018631, - 0.010853, - 0.041412, - 0.082148, - -0.064554, - -0.013112 - ], - "technological": [ - -0.047897, - -0.019105, - -0.014795, - 0.0097494, - -0.036434, - -0.0067403, - 0.014739, - -0.044576, - 0.0081818, - 0.034024, - 0.0039352, - -0.023779, - -0.011087, - 0.0047132, - 0.010232, - 0.026897, - 0.053668, - 0.011082, - 0.018753, - 0.026656, - 0.0074989, - 0.029011, - 0.0017932, - 0.07804, - -0.047891, - -0.00068162, - -0.0088434, - -0.0043484, - 0.046009, - 0.009433, - -0.013339, - -0.032173, - -0.0032915, - -0.079142, - 0.041766, - 0.036301, - 0.031402, - 0.0040531, - 0.023147, - 0.0037397, - -0.034842, - -0.080417, - -0.011289, - 0.025962, - 0.01861, - -0.02513, - -0.0052478, - -0.013463, - -0.028185, - -0.0068649, - 0.0041866, - -0.01054, - -0.031845, - 0.027063, - 0.03314, - 0.043637, - 0.05342, - -0.013924, - 0.0106, - 0.031319, - 0.041172, - 0.036541, - 0.062317, - 0.014658, - 0.07447, - 0.010609, - -0.010655, - -0.020376, - 0.031776, - -0.0028953, - 0.036454, - -0.0016671, - -0.011449, - -0.0025041, - -0.02752, - 0.02404, - -0.027757, - -0.072345, - 0.013466, - -0.0084603, - -0.031769, - 0.032782, - -0.041224, - 0.014147, - -0.0051567, - 0.0068583, - -0.043278, - 0.0079089, - -0.0083278, - -0.0099406, - 0.0094801, - -0.02708, - -0.067879, - -0.0019991, - 0.011745, - 0.019499, - 0.022452, - -0.072619, - -0.034607, - 0.041159, - 0.0018486, - -0.019649, - 0.0038531, - -0.046965, - 0.0098606, - -0.072202, - 0.043072, - 0.017637, - 0.028208, - -0.024902, - -0.0068038, - 0.055608, - 0.032809, - 0.020609, - -0.0468, - 0.0048655, - -0.045926, - 0.0061659, - -0.013442, - 0.026284, - -0.047574, - -0.011566, - -0.01838, - 0.014207, - 0.098833, - 0.011266, - -0.018534, - -0.033039, - 0.006129, - 0.056538, - 0.025096, - -0.020365, - -0.012057, - -0.021634, - 0.0081037, - -0.029191, - 0.034578, - 0.044746, - 0.003407, - 0.058005, - 0.025829, - -0.010539, - 0.013793, - 0.027622, - -0.04212, - -0.0093441, - -0.0055984, - 0.0029245, - 0.006619, - 0.046268, - 0.016303, - 0.14754, - 0.011986, - -0.03274, - 0.042105, - -0.0050917, - 0.0038503, - -0.0096483, - 0.014675, - -0.015576, - 0.038732, - -0.011972, - -0.070932, - 0.0035506, - 0.025879, - 0.059346, - 0.00019601, - -0.016706, - 0.029645, - -0.028376, - 0.03494, - 0.043491, - -0.0092062, - 0.0029046, - 0.000142, - 0.060137, - 0.0014537, - 0.043244, - -0.047614, - 0.036908, - 0.0081344, - 0.012052, - -0.022904, - -0.034101, - -0.035838, - -0.031207, - -0.032717, - 0.095846, - 0.0038676, - 0.015184, - 0.0053139, - 0.015901, - 0.088168, - -0.046987, - -0.0064552, - 0.018337, - -0.028745, - 0.007603, - -0.0058556, - 0.033054, - -0.092036, - -0.040863, - 0.0015534, - 0.0091201, - -0.008591, - -0.00016296, - -0.011457, - 0.028365, - -0.0020942, - 0.0082712, - 0.08859, - 0.010335, - -0.010287, - -0.0018159, - 0.024761, - 0.015211, - 0.000633, - 0.018296, - -0.052199, - -0.039418, - -0.010469, - 0.012976, - -0.019167, - 0.049239, - 0.019686, - -0.012869, - 0.052894, - 0.032371, - 0.0011984, - -0.0093781, - -0.01869, - -0.044727, - -0.048367, - -0.033754, - -0.010325, - -0.0037978, - 0.020682, - -0.0070512, - -0.00020232, - 0.021525, - 0.020428, - 0.024198, - 0.028136, - 0.025252, - -0.13135, - 0.018939, - -0.025573, - 0.024749, - -0.019507, - 0.011882, - 0.006899, - -0.011055, - -0.000091521, - -0.033036, - -0.03427, - 0.061389, - 0.015531, - 0.043339, - 0.023711, - 0.011583, - 0.014271, - 0.0020019, - -0.01387, - -0.010591, - 0.048514, - -0.021976, - 0.031159, - 0.018818, - 0.030566, - 0.025331, - -0.011029, - 0.038359, - -0.056399, - -0.021808, - 0.03605, - -0.10094, - 0.013007, - 0.05467, - 0.011356, - -0.044666, - 0.12755, - -0.012334, - -0.013378, - -0.021467, - 0.022149, - -0.01004, - 0.0067736, - 0.0064458, - 0.00803, - 0.0055058, - -0.050716, - 0.013899, - -0.03445, - 0.00068646, - -0.0046372, - 0.0012306, - 0.0010845, - 0.009558, - 0.029104, - -0.021819 - ], - "basketball": [ - 0.011382, - -0.087382, - 0.019786, - -0.018169, - -0.008468, - -0.053177, - -0.044881, - -0.07604, - 0.044606, - 0.013568, - 0.0067479, - -0.015266, - 0.017279, - 0.062647, - 0.022269, - -0.037019, - 0.070717, - 0.0031658, - 0.020973, - 0.031109, - 0.033276, - -0.013866, - -0.028301, - 0.053644, - -0.032016, - 0.0077214, - 0.007151, - -0.076647, - -0.023473, - 0.041244, - -0.022607, - -0.049484, - -0.000084965, - -0.034695, - 0.049284, - -0.0082558, - 0.05535, - -0.018819, - 0.015984, - -0.0060369, - 0.041047, - -0.086649, - -0.0059746, - -0.012675, - 0.014792, - 0.016179, - 0.0042818, - -0.027757, - -0.019095, - 0.018756, - 0.025066, - -0.026728, - 0.063715, - 0.016414, - -0.039866, - 0.011575, - 0.027702, - 0.0091925, - -0.039779, - -0.032961, - 0.0088567, - -0.0077677, - 0.074307, - 0.022774, - -0.017504, - -0.047676, - 0.10467, - 0.0090793, - 0.005487, - -0.0086646, - 0.015265, - -0.026511, - 0.051933, - -0.061301, - 0.035753, - 0.073784, - 0.010124, - 0.0090465, - 0.0024345, - -0.00029512, - 0.0034169, - -0.0027642, - -0.076708, - -0.0025791, - -0.0030241, - -0.015563, - -0.026758, - -0.022759, - -0.011352, - -0.055041, - 0.0092413, - 0.065781, - -0.069423, - 0.025068, - 0.042822, - 0.093752, - -0.062491, - 0.03146, - 0.043433, - -0.023734, - 0.074857, - 0.041053, - -0.011379, - -0.025678, - 0.019155, - -0.065732, - -0.088925, - 0.013887, - 0.00093057, - 0.010211, - -0.02873, - 0.031494, - 0.031809, - 0.030768, - 0.05638, - 0.0011004, - -0.053388, - -0.032322, - -0.015977, - 0.071596, - 0.033959, - 0.032977, - -0.015218, - -0.030236, - 0.042383, - -0.033211, - -0.026732, - -0.039226, - -0.064661, - 0.060129, - -0.016182, - -0.015429, - -0.011545, - -0.0046321, - -0.0035948, - -0.016871, - 0.0085837, - 0.0021764, - -0.028364, - -0.10539, - 0.013019, - -0.010737, - 0.044871, - -0.015681, - -0.037974, - 0.022868, - 0.0003687, - 0.012293, - 0.014876, - 0.022403, - 0.031821, - 0.08032, - -0.00075268, - -0.019982, - -0.03806, - -0.039002, - -0.02681, - -0.030959, - 0.011099, - -0.00737, - -0.0043715, - 0.0071262, - -0.05905, - 0.0069885, - 0.013273, - -0.050366, - -0.017971, - -0.0052661, - -0.031761, - -0.055035, - 0.043122, - 0.060387, - 0.0030328, - 0.026546, - 0.084245, - 0.035617, - 0.018321, - 0.040209, - -0.00056406, - 0.028594, - 0.047834, - -0.026877, - 0.0052192, - -0.038916, - 0.0077428, - -0.031773, - 0.0030476, - 0.083551, - 0.10448, - -0.013314, - 0.013349, - 0.050636, - 0.0037995, - -0.021633, - 0.023771, - -0.085006, - -0.021573, - -0.0094927, - 0.05485, - -0.020188, - -0.11854, - 0.038829, - -0.019546, - -0.10089, - 0.012502, - 0.05808, - -0.01376, - -0.0011463, - 0.021789, - -0.019429, - 0.12287, - -0.027776, - 0.013948, - 0.027443, - -0.031025, - -0.023527, - 0.014153, - 0.00064687, - -0.000046656, - -0.019658, - -0.018411, - 0.018658, - -0.050064, - 0.063912, - -0.045249, - -0.039947, - 0.017946, - 0.052738, - -0.019184, - 0.0090508, - -0.00092556, - -0.04071, - -0.01801, - 0.034578, - -0.044532, - 0.042332, - -0.051921, - -0.017178, - -0.040308, - 0.029575, - 0.034481, - -0.015593, - 0.042208, - -0.036441, - -0.014789, - -0.00051736, - -0.044491, - -0.0059763, - 0.010384, - -0.011301, - 0.051351, - 0.039164, - -0.02701, - -0.0075563, - 0.0071671, - 0.021443, - -0.074395, - -0.00059165, - -0.0020249, - 0.04226, - -0.032165, - -0.010534, - 0.072968, - 0.018343, - 0.021975, - 0.064421, - -0.06225, - 0.0015481, - 0.031823, - -0.045253, - 0.014094, - 0.058935, - -0.090116, - 0.00069406, - -0.024898, - -0.04612, - -0.068658, - 0.0048233, - 0.0020514, - 0.023346, - 0.063909, - -0.007996, - -0.0010901, - -0.00017659, - 0.016552, - -0.02839, - 0.058255, - -0.019111, - -0.057545, - 0.059738, - 0.027618, - -0.070601, - -0.030292, - 0.020112, - 0.024764, - -0.045303, - -0.015273, - -0.0027015, - 0.10989, - 0.010748 - ], - "regionalism": [ - 0.036987, - -0.047589, - 0.027099, - -0.061952, - -0.043545, - 0.041098, - 0.044868, - -0.057202, - 0.013464, - 0.026995, - 0.0025808, - -0.022239, - -0.031221, - 0.021174, - 0.056514, - -0.041834, - 0.070523, - 0.0085653, - 0.012865, - 0.026232, - -0.044498, - -0.039427, - 0.032175, - 0.049533, - 0.00056759, - -0.013144, - -0.051116, - 0.012891, - 0.055121, - 0.030044, - 0.033396, - -0.0013011, - -0.013603, - -0.017692, - -0.01506, - 0.033557, - 0.06225, - 0.091056, - 0.016406, - 0.0062386, - -0.0074592, - -0.06784, - -0.013001, - 0.005978, - 0.045571, - -0.027665, - -0.025546, - -0.0056583, - -0.0070509, - -0.026509, - -0.025197, - -0.0088328, - -0.00041262, - 0.013117, - -0.012854, - 0.023314, - 0.067969, - 0.023286, - -0.021853, - 0.037188, - 0.00020789, - -0.015573, - 0.0039144, - -0.049059, - 0.042296, - -0.056005, - -0.052024, - 0.024872, - 0.019617, - -0.0070473, - 0.018501, - -0.028631, - -0.035818, - -0.064335, - 0.049918, - 0.029682, - -0.044276, - -0.036777, - 0.0091891, - 0.025837, - -0.042613, - 0.028299, - -0.033294, - 0.067101, - 0.0054572, - -0.065072, - -0.031724, - 0.024876, - -0.004129, - 0.063871, - -0.02159, - 0.026513, - -0.059399, - 0.010547, - 0.029946, - 0.040784, - 0.0063923, - 0.0075415, - -0.052109, - -0.016636, - 0.024551, - -0.028432, - -0.051118, - -0.032678, - -0.024967, - -0.044082, - -0.010587, - 0.01398, - -0.029639, - 0.028807, - 0.012602, - 0.085324, - 0.028799, - -0.010109, - -0.02238, - 0.0034952, - 0.0081015, - -0.014701, - -0.040944, - 0.11539, - -0.03298, - -0.063547, - -0.0030082, - -0.053818, - 0.061163, - 0.020896, - -0.018981, - -0.040202, - -0.022582, - 0.090255, - -0.021606, - -0.027229, - -0.0047614, - 0.034023, - -0.019034, - 0.0078506, - 0.032351, - 0.027419, - -0.0045456, - 0.016946, - 0.087858, - -0.039764, - 0.046111, - 0.0080517, - 0.010359, - -0.079677, - 0.014475, - 0.051697, - -0.033261, - 0.00070535, - 0.047759, - 0.032958, - 0.0025815, - 0.0059965, - 0.0040154, - 0.039964, - 0.028459, - 0.057937, - -0.059412, - 0.0023343, - 0.022612, - -0.12915, - -0.11198, - -0.074784, - -0.04195, - -0.015889, - -0.0015214, - 0.02366, - -0.053444, - 0.037187, - -0.011092, - 0.046259, - -0.07247, - -0.023599, - -0.011141, - 0.017819, - -0.023379, - -0.0028768, - -0.0034643, - -0.006144, - -0.023577, - 0.016477, - 0.036622, - -0.0017932, - 0.06809, - -0.023176, - 0.019364, - 0.061776, - -0.021096, - -0.037585, - 0.012875, - 0.072256, - -0.062409, - -0.01084, - 0.016573, - 0.012244, - 0.068878, - -0.0043865, - -0.01075, - 0.025783, - -0.12532, - -0.011056, - 0.019764, - -0.054194, - -0.053615, - -0.0096044, - 0.038145, - 0.039546, - -0.0031196, - 0.0061951, - 0.071405, - 0.026436, - -0.00037341, - -0.044874, - 0.068755, - 0.038027, - 0.016651, - -0.039715, - -0.0093711, - -0.099396, - -0.014616, - -0.031045, - -0.028898, - 0.064614, - -0.035493, - 0.042385, - 0.00040591, - 0.069581, - 0.008146, - -0.025441, - -0.019551, - -0.028008, - -0.069702, - -0.010199, - 0.0031836, - 0.034216, - 0.035955, - -0.025994, - 0.044317, - -0.035157, - 0.017574, - 0.026791, - -0.047939, - 0.034039, - -0.011347, - -0.048228, - -0.043196, - 0.013958, - 0.035392, - -0.031715, - 0.029088, - -0.035527, - -0.059392, - 0.047852, - 0.024569, - 0.012889, - 0.0076932, - 0.01067, - 0.010978, - 0.010113, - 0.0061075, - 0.023755, - 0.0097355, - 0.036455, - 0.031748, - 0.046405, - -0.016893, - -0.0038146, - -0.017326, - 0.047153, - -0.064133, - 0.062517, - -0.033424, - 0.00091744, - 0.014252, - -0.059143, - 0.017247, - 0.029406, - -0.04869, - 0.072032, - 0.051341, - -0.0066336, - -0.038215, - 0.011443, - -0.012024, - -0.00315, - 0.06484, - 0.034934, - -0.06658, - -0.015182, - 0.015854, - -0.04466, - 0.028706, - -0.017109, - 0.0061368, - 0.02565, - -0.01435, - 0.015263, - 0.033047, - -0.042991 - ], - "humanity": [ - -0.0066545, - -0.041259, - 0.066158, - -0.01307, - -0.033221, - 0.00697, - -0.029346, - -0.07407, - 0.04672, - 0.018967, - 0.026329, - -0.037782, - -0.0019872, - 0.016318, - 0.0067651, - -0.066516, - 0.059268, - 0.034299, - 0.0093737, - 0.026585, - -0.0089981, - 0.017603, - -0.0057084, - 0.04862, - 0.001866, - -0.0515, - 0.010808, - -0.0043503, - 0.049619, - 0.017949, - -0.0025549, - 0.016361, - 0.014545, - -0.004347, - -0.0085021, - 0.047775, - 0.027361, - -0.022219, - 0.039742, - 0.014583, - -0.097681, - -0.062601, - -0.0046021, - 0.039614, - 0.013016, - -0.057164, - 0.014824, - -0.0085195, - -0.013625, - -0.035536, - 0.035817, - 0.017104, - 0.0013767, - 0.014295, - -0.048182, - 0.040126, - -0.0098613, - -0.032703, - -0.043376, - -0.015397, - -0.010054, - -0.0074513, - 0.05512, - -0.070794, - -0.033536, - -0.04908, - 0.024744, - 0.015701, - 0.032845, - 0.027068, - 0.066052, - 0.0092558, - 0.013199, - -0.0081102, - -0.029716, - 0.025523, - -0.007389, - -0.0000025753, - 0.061071, - 0.051879, - -0.026348, - 0.045498, - 0.0043971, - 0.080979, - 0.0071386, - 0.0087114, - -0.0057039, - -0.044229, - -0.0078783, - 0.024404, - 0.0053969, - 0.041144, - -0.092098, - -0.0037644, - 0.00031089, - 0.018761, - 0.071052, - -0.039241, - 0.049328, - 0.040587, - -0.025792, - 0.0064805, - 0.031135, - -0.051678, - -0.012581, - -0.077641, - 0.021339, - 0.034971, - -0.00309, - -0.015217, - -0.016291, - 0.11329, - 0.046696, - -0.024098, - -0.045021, - 0.054547, - -0.04996, - -0.026907, - -0.052987, - 0.028326, - -0.039243, - -0.048587, - -0.016495, - -0.047757, - -0.035046, - 0.0287, - 0.022883, - -0.15391, - 0.036687, - 0.10495, - -0.011597, - -0.012915, - -0.0018342, - 0.026035, - 0.071055, - 0.01789, - 0.036055, - 0.047094, - 0.037233, - -0.0018253, - -0.038385, - -0.045815, - 0.010652, - -0.016705, - -0.0073483, - 0.010286, - -0.0052272, - -0.013862, - -0.016443, - 0.019465, - 0.086142, - 0.058599, - -0.043497, - -0.056103, - 0.012016, - -0.026565, - 0.026783, - -0.012803, - 0.035558, - -0.071247, - 0.070889, - -0.031844, - -0.077778, - 0.036278, - -0.031973, - 0.0055883, - -0.042766, - 0.059822, - -0.042602, - 0.015832, - -0.018059, - -0.019677, - 0.030667, - 0.026886, - 0.016322, - 0.050753, - 0.077363, - 0.070787, - -0.0077386, - 0.0084751, - -0.02262, - 0.0645, - -0.041315, - -0.006524, - -0.02216, - -0.075177, - 0.036625, - 0.099528, - -0.011779, - -0.025103, - 0.056779, - 0.055966, - -0.046894, - -0.055767, - -0.0037648, - 0.014107, - -0.06537, - -0.030043, - -0.010737, - 0.045711, - -0.13415, - 0.03413, - 0.030798, - -0.060914, - -0.052274, - 0.021781, - 0.037607, - -0.046336, - 0.020045, - 0.0039753, - 0.038446, - -0.046467, - 0.019879, - 0.026574, - 0.043884, - -0.0060707, - 0.013316, - 0.012152, - 0.018934, - 0.0052647, - 0.0020028, - 0.024401, - -0.073378, - 0.10765, - 0.017513, - 0.032772, - 0.042549, - 0.072771, - 0.033602, - -0.097938, - 0.0011323, - -0.041843, - -0.12411, - -0.03272, - 0.08637, - -0.027624, - -0.024812, - -0.020395, - 0.013637, - -0.041452, - 0.031696, - 0.052597, - -0.0076418, - 0.038385, - 0.0054696, - -0.0019527, - 0.013509, - -0.043024, - -0.053432, - -0.034989, - 0.032579, - -0.029444, - -0.033112, - -0.038746, - 0.050372, - 0.026766, - 0.021347, - 0.069432, - 0.056466, - -0.0019499, - -0.063826, - 0.0019957, - -0.022422, - -0.022855, - 0.053118, - -0.0043799, - 0.08064, - 0.05081, - 0.084895, - 0.021654, - 0.0076038, - 0.06743, - -0.10728, - -0.037313, - 0.024622, - -0.044551, - 0.0017783, - 0.0076383, - -0.0030898, - -0.0028832, - 0.049901, - 0.020204, - -0.057748, - -0.061264, - 0.030138, - -0.010067, - -0.04487, - 0.014018, - 0.052234, - 0.093728, - -0.0078057, - 0.051935, - -0.017694, - -0.067118, - -0.018203, - 0.0050851, - 0.07463, - 0.024292, - -0.018908, - 0.01161 - ], - "careers": [ - -0.049611, - -0.14143, - 0.048828, - -0.035517, - -0.005316, - 0.021793, - -0.020791, - -0.10379, - 0.06887, - 0.014877, - 0.014593, - -0.072075, - -0.10579, - 0.036443, - 0.014129, - 0.076633, - 0.11809, - 0.057246, - 0.050144, - -0.026017, - 0.03879, - 0.03146, - -0.018923, - 0.07864, - -0.015199, - -0.022045, - -0.045033, - -0.014612, - 0.040388, - 0.03145, - -0.059089, - -0.07689, - -0.063964, - -0.081502, - 0.02578, - 0.077047, - -0.0009095, - -0.01051, - 0.0090958, - 0.023101, - -0.034535, - -0.12667, - 0.023778, - -0.030527, - 0.065699, - -0.038005, - 0.048732, - -0.06111, - -0.044005, - -0.051294, - -0.042093, - 0.00019185, - -0.029615, - 0.0094626, - -0.13229, - -0.017519, - -0.12192, - 0.086395, - -0.067894, - -0.052095, - 0.015489, - 0.055634, - 0.20054, - 0.045209, - 0.16466, - -0.055839, - -0.064769, - -0.047348, - 0.016432, - 0.025259, - 0.00037799, - 0.035028, - 0.054903, - 0.049863, - 0.03898, - 0.031208, - 0.040382, - -0.019864, - 0.03378, - -0.010658, - 0.056032, - -0.015199, - -0.051923, - 0.10294, - -0.066186, - -0.026961, - 0.033481, - -0.0068726, - -0.054839, - 0.0034554, - 0.11885, - 0.042961, - -0.1216, - 0.10713, - 0.022133, - 0.040548, - -0.0052129, - 0.069014, - 0.039509, - -0.010219, - 0.013243, - -0.017927, - 0.062506, - -0.010208, - 0.035838, - 0.0008287, - 0.069492, - 0.016859, - 0.11167, - 0.05166, - -0.029313, - -0.036021, - 0.064311, - 0.032376, - 0.027946, - 0.0068587, - 0.022742, - -0.002097, - -0.048854, - 0.0065852, - 0.026651, - -0.11134, - -0.0075796, - 0.041106, - 0.082642, - 0.022317, - -0.048084, - -0.11861, - -0.0053922, - 0.097592, - -0.0025125, - 0.056114, - 0.022783, - -0.0018701, - -0.10227, - 0.021232, - -0.020368, - 0.033596, - -0.080069, - 0.012258, - -0.0019567, - -0.048257, - -0.0084024, - 0.078705, - 0.00051912, - -0.0007381, - 0.0070011, - -0.077331, - -0.01229, - 0.0074756, - 0.10144, - 0.081188, - -0.034282, - -0.085273, - 0.019741, - -0.01834, - 0.019136, - 0.091654, - 0.037088, - -0.09769, - 0.049464, - 0.078678, - -0.0059164, - 0.056653, - -0.0059217, - 0.026689, - -0.071816, - 0.040952, - -0.038687, - -0.014006, - 0.069068, - -0.012132, - 0.018878, - 0.019344, - 0.02809, - 0.031562, - -0.020433, - 0.11914, - -0.033132, - 0.033178, - -0.0052364, - -0.036112, - -0.018773, - -0.017331, - 0.0518, - -0.11504, - 0.0095119, - 0.10029, - -0.0058669, - 0.092227, - -0.056636, - 0.040007, - -0.061411, - 0.01266, - 0.0047684, - -0.0077228, - 0.022288, - -0.026108, - 0.026424, - -0.0081741, - -0.17157, - 0.13931, - -0.024142, - 0.0047813, - -0.039772, - 0.042477, - 0.044218, - -0.024981, - 0.053031, - -0.025764, - 0.080961, - 0.012379, - 0.084093, - 0.030214, - -0.010792, - 0.023623, - -0.027351, - -0.016191, - -0.052044, - -0.026051, - -0.031473, - -0.045736, - -0.041645, - 0.097725, - 0.039003, - -0.035713, - 0.054889, - 0.088534, - 0.00017545, - -0.036924, - 0.047277, - -0.03402, - -0.083387, - 0.021221, - 0.053753, - 0.00017654, - 0.0044617, - -0.038022, - -0.025809, - 0.016861, - -0.052573, - 0.021694, - 0.032383, - -0.036076, - 0.010913, - -0.039044, - -0.078727, - -0.16881, - 0.041704, - 0.0096049, - 0.060458, - 0.10552, - 0.072709, - -0.025276, - -0.027972, - 0.02596, - -0.031567, - 0.022775, - 0.099844, - 0.020044, - 0.024079, - 0.01653, - 0.0759, - -0.0075416, - 0.023932, - 0.049944, - -0.029319, - 0.029889, - 0.028226, - -0.071987, - -0.0020458, - 0.093877, - -0.13536, - -0.068823, - 0.022983, - 0.028874, - 0.00016576, - 0.052921, - 0.074788, - 0.0028138, - 0.045348, - 0.038046, - 0.032192, - -0.066922, - 0.015933, - 0.03179, - -0.054742, - -0.018957, - -0.020085, - -0.029623, - 0.027921, - 0.024777, - -0.073284, - 0.034443, - -0.02373, - 0.033451, - -0.015763, - 0.05833, - 0.068159, - 0.033324 - ], - "real": [ - 0.049134, - -0.0021088, - 0.047292, - 0.054991, - -0.042844, - -0.030665, - 0.0013347, - -0.11494, - 0.056926, - 0.0028402, - -0.043603, - -0.013743, - 0.012738, - -0.033633, - -0.0002065, - -0.055455, - 0.08694, - 0.015987, - 0.083978, - 0.012057, - -0.051745, - 0.013029, - 0.073262, - 0.080013, - -0.010271, - 0.0094369, - 0.040044, - 0.043442, - 0.10434, - 0.029479, - -0.029084, - -0.034268, - -0.0060269, - -0.10699, - 0.012069, - -0.005253, - -0.063953, - -0.0045409, - -0.066289, - 0.058709, - -0.0015566, - -0.037416, - -0.037435, - -0.0056879, - -0.017203, - -0.076074, - 0.028389, - 0.026552, - 0.021229, - 0.017613, - 0.0052063, - -0.028395, - -0.025685, - -0.023799, - 0.024143, - 0.022023, - -0.096302, - -0.016159, - -0.092402, - -0.11055, - -0.018607, - -0.007054, - 0.18042, - -0.020904, - 0.021683, - 0.021421, - -0.027477, - -0.023924, - -0.0047859, - -0.01492, - -0.025426, - -0.014358, - 0.014472, - 0.023365, - 0.011794, - 0.022526, - -0.041717, - -0.077448, - -0.015319, - -0.066011, - 0.035771, - 0.079954, - 0.001814, - 0.14276, - -0.0062809, - -0.0072204, - -0.044079, - -0.004357, - 0.043592, - 0.0086751, - -0.020849, - -0.022944, - -0.15027, - -0.070301, - 0.070602, - 0.04413, - 0.036773, - -0.0799, - 0.062309, - -0.029708, - 0.0069277, - -0.021945, - -0.063308, - 0.036994, - -0.00024268, - -0.19463, - 0.027078, - -0.030772, - -0.022894, - 0.040191, - -0.034494, - 0.090716, - 0.055433, - 0.011653, - 0.026486, - 0.036864, - -0.074549, - -0.073288, - -0.073758, - -0.089402, - -0.030452, - -0.032736, - -0.0029883, - 0.022624, - 0.07878, - -0.0011213, - 0.027142, - -0.154, - -0.058908, - 0.052138, - -0.00051269, - -0.036114, - 0.045645, - 0.0036531, - 0.025719, - -0.01404, - 0.078164, - 0.11486, - -0.047155, - -0.000096676, - 0.049745, - -0.074285, - 0.057743, - 0.038626, - 0.011124, - 0.0064079, - -0.034155, - -0.035984, - -0.03159, - 0.019324, - 0.019117, - 0.09582, - 0.0099237, - -0.10889, - -0.060113, - -0.076904, - -0.043257, - 0.034936, - -0.0046361, - -0.036496, - -0.0033965, - 0.046559, - -0.072694, - -0.049063, - -0.0095361, - -0.026865, - -0.012138, - 0.06254, - 0.07326, - 0.046165, - -0.035134, - -0.045142, - -0.025131, - -0.026535, - -0.03979, - 0.092412, - -0.050857, - 0.016817, - 0.057017, - 0.025907, - 0.1116, - 0.02875, - -0.03112, - -0.090567, - 0.025767, - -0.063817, - -0.045365, - 0.1312, - 0.054831, - -0.047738, - 0.036809, - 0.15733, - 0.059175, - -0.05013, - 0.0073918, - -0.036838, - -0.071221, - 0.06931, - -0.02503, - 0.073128, - -0.183, - 0.16599, - -0.0038775, - -0.025035, - 0.039636, - -0.0017736, - 0.040855, - 0.024738, - -0.011928, - -0.032498, - 0.10639, - -0.05129, - -0.066306, - -0.070155, - 0.048798, - 0.0014936, - -0.010474, - -0.017553, - -0.023609, - -0.066513, - 0.047914, - -0.021511, - -0.0519, - 0.14207, - 0.086707, - -0.011209, - 0.065094, - 0.1273, - -0.052645, - -0.087352, - 0.00039164, - -0.064977, - -0.17391, - -0.017626, - 0.0027222, - -0.059911, - -0.011481, - -0.040709, - -0.030024, - -0.018699, - 0.17833, - 0.0040809, - 0.005054, - 0.039887, - -0.2963, - 0.076588, - -0.056528, - 0.032393, - 0.004813, - -0.053998, - 0.015333, - -0.0051121, - 0.021666, - 0.038911, - -0.0201, - 0.051185, - 0.015117, - 0.12066, - 0.035669, - -0.0012632, - 0.010464, - -0.018236, - 0.046605, - -0.058507, - 0.014717, - 0.021902, - 0.061767, - 0.032587, - 0.055068, - -0.019214, - -0.083372, - 0.12772, - -0.16982, - -0.072524, - 0.14925, - -0.14326, - 0.022602, - 0.0081746, - 0.021993, - -0.021374, - 0.15179, - 0.019961, - -0.0044631, - 0.023726, - -0.023582, - -0.080923, - 0.0022367, - 0.048959, - -0.079063, - 0.0014129, - -0.017623, - -0.011113, - -0.076575, - 0.059897, - -0.021326, - 0.049564, - -0.0022225, - 0.0037984, - -0.061729, - -0.019417 - ], - "astrology": [ - -0.042227, - -0.064099, - -0.044448, - -0.080206, - -0.017951, - -0.13308, - 0.042067, - -0.10277, - 0.0025473, - 0.013316, - 0.031397, - -0.036865, - 0.044497, - 0.040705, - -0.023328, - -0.01413, - 0.10435, - -0.023066, - 0.0012897, - 0.035907, - -0.043153, - 0.026252, - 0.027733, - 0.015492, - 0.0015076, - -0.039106, - 0.031804, - -0.04007, - 0.034187, - 0.032524, - -0.024559, - 0.0016747, - 0.067689, - -0.042529, - 0.039553, - 0.013136, - 0.0066723, - -0.086159, - 0.043198, - 0.024067, - -0.04683, - -0.081689, - 0.023603, - 0.035455, - -0.016495, - -0.025216, - -0.08242, - 0.0016083, - 0.0028308, - -0.020915, - -0.022146, - -0.0093675, - -0.0048798, - 0.011383, - -0.033819, - 0.0063359, - 0.045733, - 0.027262, - -0.0022546, - -0.018751, - 0.087871, - -0.040491, - 0.038773, - -0.0456, - 0.0040617, - 0.023577, - -0.015819, - 0.055662, - 0.087423, - -0.073868, - -0.013227, - 0.01766, - -0.0091475, - 0.0070741, - -0.013879, - 0.0098597, - 0.085032, - -0.01011, - -0.051943, - -0.029281, - -0.021564, - 0.028409, - -0.08644, - 0.040628, - -0.076355, - -0.046093, - 0.044537, - -0.033527, - 0.012939, - -0.053816, - 0.033892, - 0.06712, - -0.065603, - 0.027286, - 0.022439, - 0.037699, - 0.0048676, - 0.067302, - -0.033235, - 0.034459, - -0.10377, - 0.065645, - 0.029377, - -0.068137, - -0.015241, - -0.05412, - 0.11009, - 0.10078, - 0.070713, - -0.0064978, - -0.011122, - 0.08747, - 0.017003, - -0.013466, - 0.021855, - -0.013534, - -0.031169, - -0.016158, - -0.032976, - -0.029322, - 0.0057187, - 0.045273, - -0.049769, - -0.060563, - 0.044153, - 0.0013629, - -0.06176, - -0.053331, - -0.010154, - 0.14586, - 0.0058836, - 0.010538, - -0.047114, - 0.0080622, - -0.029932, - -0.01286, - 0.013197, - -0.00034704, - 0.069481, - 0.0050768, - 0.058447, - -0.075699, - -0.084387, - 0.079111, - -0.022749, - -0.037074, - -0.025239, - 0.013652, - -0.067486, - -0.013734, - 0.069569, - 0.053352, - -0.030654, - -0.068677, - -0.01025, - 0.07086, - -0.013012, - 0.00014436, - 0.013274, - -0.0053453, - 0.016969, - 0.043503, - -0.089977, - 0.036032, - -0.015819, - -0.0081312, - -0.039312, - -0.008023, - 0.0091706, - 0.10382, - 0.0068993, - -0.067451, - 0.035861, - 0.029099, - 0.070726, - 0.032698, - -0.03367, - 0.014704, - -0.019397, - 0.014753, - -0.012522, - 0.065017, - -0.0020112, - 0.0034916, - 0.080774, - 0.00074774, - 0.039824, - 0.10205, - -0.03299, - 0.042594, - -0.049386, - 0.062388, - -0.058038, - -0.084712, - 0.059365, - 0.023598, - -0.086904, - 0.053787, - -0.027762, - 0.034452, - -0.15146, - 0.027473, - -0.034692, - -0.033895, - 0.0229, - 0.07743, - 0.09141, - -0.077377, - -0.010949, - 0.0020029, - 0.084638, - 0.02972, - 0.030793, - -0.031343, - 0.041482, - 0.031395, - -0.043745, - -0.033019, - -0.0081916, - 0.017757, - -0.030868, - 0.068773, - -0.0039408, - 0.083951, - -0.029754, - 0.083902, - 0.049571, - 0.067716, - 0.061599, - -0.0020544, - -0.0089472, - -0.044358, - -0.068826, - -0.0065388, - 0.039575, - 0.034943, - -0.033203, - 0.033784, - 0.0084696, - -0.0039146, - 0.02159, - -0.092153, - -0.074618, - -0.029028, - 0.010642, - 0.083439, - -0.072044, - -0.036202, - 0.010255, - -0.0040174, - 0.07164, - 0.030589, - -0.032272, - 0.035086, - -0.029883, - -0.016767, - -0.059666, - -0.0077469, - -0.035681, - -0.0030232, - 0.12595, - 0.085947, - 0.012037, - 0.013285, - 0.024819, - -0.063766, - 0.015697, - 0.016872, - 0.066829, - 0.043975, - -0.012839, - 0.093404, - -0.068679, - -0.008253, - -0.017353, - -0.042438, - -0.0057035, - 0.016279, - -0.042467, - -0.039181, - 0.090807, - -0.055348, - 0.031923, - -0.068733, - -0.036351, - 0.0065498, - -0.020208, - -0.0079116, - -0.086795, - 0.0046327, - 0.01672, - -0.08408, - -0.0025459, - 0.029642, - -0.034193, - 0.1033, - -0.017466, - 0.014803, - 0.016519, - 0.044177 - ], - "petrochemical": [ - -0.014339, - -0.013266, - 0.016969, - 0.01847, - -0.036676, - 0.00040008, - 0.0092716, - -0.064242, - 0.055255, - 0.022385, - 0.032722, - 0.0028698, - -0.0024625, - 0.055889, - 0.045419, - -0.015676, - 0.065515, - 0.087081, - 0.037322, - 0.021065, - 0.021286, - 0.027031, - 0.034756, - 0.041805, - 0.0012978, - -0.065148, - 0.013413, - 0.023675, - 0.036969, - 0.017146, - 0.015727, - -0.022679, - 0.0044634, - -0.012329, - 0.059928, - 0.02367, - -0.010934, - 0.045396, - 0.032268, - 0.041792, - 0.0056646, - -0.10999, - 0.03091, - 0.0027983, - 0.0076547, - -0.0071528, - -0.043792, - -0.0029449, - -0.020955, - 0.030012, - -0.030306, - -0.0065991, - -0.0041446, - 0.040158, - 0.0025714, - -0.0022372, - 0.0063973, - 0.0081079, - -0.022169, - 0.013291, - -0.029627, - 0.034738, - 0.059031, - 0.038937, - 0.038418, - 0.051375, - 0.015559, - -0.078503, - 0.073691, - -0.082801, - 0.060928, - -0.030899, - 0.041081, - -0.0050849, - -0.014255, - -0.071835, - -0.019151, - -0.0098167, - 0.015095, - -0.046963, - -0.051826, - -0.010924, - -0.092936, - 0.040205, - -0.056716, - -0.0050132, - 0.0095634, - -0.010146, - 0.016584, - -0.066527, - -0.012452, - -0.014939, - -0.072874, - -0.020958, - 0.0079154, - 0.058992, - 0.031434, - -0.014055, - -0.002293, - -0.020583, - 0.0096252, - -0.0087479, - -0.041084, - 0.023082, - 0.0076667, - -0.097667, - -0.047239, - -0.045001, - 0.0078975, - -0.0043095, - -0.018388, - 0.060933, - 0.057509, - -0.032399, - -0.0096056, - -0.0065421, - 0.023877, - -0.013783, - -0.013552, - 0.00051463, - -0.039898, - -0.007121, - -0.036169, - -0.036131, - 0.061456, - 0.033078, - -0.044048, - -0.046148, - -0.015884, - 0.044999, - 0.030273, - 0.018584, - -0.0045271, - -0.042943, - 0.013478, - 0.022384, - 0.023897, - 0.053166, - 0.0063584, - 0.040659, - -0.039957, - 0.015302, - -0.013791, - 0.077247, - 0.0025455, - 0.0083853, - 0.041137, - -0.015941, - -0.00020829, - 0.0049428, - 0.044452, - 0.11033, - 0.011809, - -0.0061354, - -0.0046467, - -0.059758, - -0.0018723, - -0.0093863, - -0.0034564, - 0.03711, - 0.029947, - -0.036743, - -0.079537, - -0.012548, - -0.012754, - 0.014968, - -0.058838, - -0.016617, - 0.050075, - -0.019302, - 0.047722, - 0.040783, - 0.018287, - 0.0163, - 0.01753, - 0.034144, - -0.025386, - 0.019164, - -0.013526, - 0.042894, - 0.031763, - 0.023065, - 0.027043, - 0.022568, - 0.020269, - -0.043212, - -0.021103, - 0.10528, - -0.0084396, - -0.012554, - 0.00051577, - 0.044504, - 0.064753, - 0.022718, - -0.019256, - 0.0060546, - -0.036665, - -0.00075987, - -0.024468, - -0.031211, - -0.095855, - -0.016491, - -0.012595, - -0.018737, - 0.014347, - 0.017017, - -0.022331, - -0.033065, - 0.028208, - 0.016644, - 0.13116, - 0.0061163, - 0.02683, - 0.004939, - 0.031252, - 0.037955, - 0.001412, - -0.038, - 0.019065, - -0.010385, - -0.033048, - -0.032007, - -0.059231, - 0.047162, - -0.023788, - 0.10459, - -0.016509, - 0.015107, - 0.0068777, - -0.030361, - 0.016805, - -0.03247, - -0.040402, - 0.019235, - 0.052376, - -0.027519, - 0.012953, - -0.00151, - 0.038815, - -0.060638, - 0.027258, - -0.0063979, - 0.045028, - 0.027563, - -0.073637, - -0.01167, - -0.0028229, - 0.023667, - 0.016214, - 0.029604, - -0.052539, - -0.040677, - -0.015248, - -0.034591, - -0.055037, - 0.018633, - 0.012192, - -0.00043612, - 0.0047261, - -0.0022012, - 0.0056143, - 0.0065237, - -0.028297, - 0.0063851, - 0.019565, - -0.010541, - -0.078977, - -0.011392, - 0.0096769, - -0.017896, - -0.026898, - 0.051915, - -0.043399, - 0.005311, - 0.0045678, - -0.084792, - 0.026228, - 0.049291, - 0.00042659, - 0.01456, - 0.095491, - 0.021887, - -0.017078, - -0.01803, - -0.018352, - 0.0091403, - -0.026648, - -0.041172, - 0.010497, - 0.0012236, - -0.0068814, - 0.068207, - -0.027986, - 0.037484, - -0.018617, - -0.040916, - -0.0083685, - -0.040302, - 0.031999, - 0.012653 - ], - "aspects": [ - 0.041906, - -0.096349, - 0.031341, - -0.019234, - -0.032677, - -0.045457, - 0.040234, - -0.093518, - 0.008254, - -0.031741, - -0.0025915, - -0.083664, - 0.01609, - 0.024949, - 0.026119, - 0.0042688, - 0.043527, - 0.030637, - 0.099188, - 0.074858, - -0.030077, - -0.00032524, - 0.097498, - 0.056197, - 0.0057821, - 0.019269, - -0.028413, - 0.029636, - 0.14275, - 0.0080868, - -0.061305, - -0.092704, - 0.014654, - -0.10286, - 0.0024787, - 0.0049529, - -0.013548, - -0.0028328, - -0.022357, - -0.0091983, - -0.0057431, - -0.12915, - 0.0087367, - -0.0083212, - -0.027421, - -0.085629, - -0.0093734, - -0.06894, - -0.019372, - -0.042755, - -0.035395, - -0.036991, - -0.0094077, - -0.037344, - -0.047457, - 0.027386, - -0.053284, - -0.066151, - -0.0049499, - 0.033523, - 0.044256, - -0.023831, - 0.21995, - -0.0118, - 0.050293, - -0.034517, - 0.028257, - 0.050558, - 0.013684, - 0.047425, - 0.022067, - -0.017231, - -0.014014, - -0.00070382, - 0.016877, - -0.032654, - 0.009594, - 0.00066931, - -0.013231, - -0.018825, - -0.033884, - 0.025512, - -0.041693, - 0.098729, - 0.020099, - -0.0069698, - 0.021764, - -0.018203, - -0.00096977, - -0.022219, - 0.042732, - -0.0086922, - -0.074933, - 0.075419, - -0.046757, - 0.012703, - 0.00039697, - 0.011858, - -0.034313, - 0.029988, - -0.015, - 0.0072326, - -0.032815, - 0.0045236, - 0.0075486, - -0.03979, - 0.02142, - 0.040136, - 0.027338, - 0.015948, - -0.0071836, - 0.069788, - 0.068724, - -0.047241, - -0.021034, - -0.028449, - -0.05784, - 0.031161, - -0.044157, - 0.017838, - -0.01768, - 0.0059246, - 0.0032987, - -0.017687, - 0.18265, - 0.030973, - -0.025797, - -0.061914, - 0.054252, - 0.12089, - 0.019618, - 0.048132, - -0.035356, - 0.011229, - -0.024732, - -0.0030615, - 0.044992, - 0.023567, - 0.0079422, - 0.031879, - -0.012699, - -0.0032114, - 0.010968, - 0.054916, - 0.022537, - 0.0045999, - -0.028406, - -0.0012666, - 0.011637, - 0.010167, - 0.078574, - 0.077395, - 0.039087, - -0.10156, - -0.047079, - 0.032738, - -0.0028877, - -0.0029355, - 0.030397, - 0.014831, - 0.032605, - 0.032422, - -0.039111, - 0.011678, - 0.00041287, - -0.014072, - 0.03958, - -0.021481, - 0.013932, - -0.019774, - 0.043839, - 0.0053269, - -0.025711, - -0.015765, - 0.014874, - 0.084513, - -0.010818, - 0.056064, - -0.049756, - -0.046967, - -0.017636, - 0.025719, - 0.0050898, - -0.0073794, - 0.039396, - -0.13087, - 0.042545, - 0.11552, - -0.016109, - 0.0017658, - 0.0030694, - 0.043946, - -0.1182, - -0.052501, - 0.008558, - 0.015017, - 0.017744, - -0.0052644, - -0.037811, - -0.022178, - -0.15876, - 0.014526, - -0.029671, - -0.079116, - -0.028519, - 0.022238, - -0.036846, - -0.0037536, - 0.022702, - 0.017295, - 0.090043, - 0.045902, - 0.060697, - -0.030647, - 0.049617, - 0.028655, - 0.023238, - 0.053078, - -0.14919, - -0.041347, - -0.0030171, - -0.038377, - -0.047782, - 0.092764, - 0.027699, - -0.020153, - 0.0045277, - 0.11584, - 0.025407, - 0.068754, - -0.054256, - -0.041174, - -0.14864, - -0.020811, - 0.05957, - 0.02887, - -0.014893, - 0.014024, - 0.027609, - 0.002981, - -0.08937, - 0.045778, - -0.02793, - 0.014671, - -0.066599, - 0.047064, - -0.040944, - 0.0061879, - 0.027038, - 0.017029, - 0.034242, - 0.019377, - -0.0068686, - 0.034444, - -0.070664, - 0.015906, - -0.01522, - 0.070386, - 0.026596, - -0.030438, - 0.0047236, - 0.0070238, - -0.020852, - -0.11561, - 0.076355, - -0.032854, - -0.012792, - 0.026326, - -0.0070654, - 0.0078193, - 0.0045247, - 0.091176, - -0.093395, - -0.059447, - 0.10378, - -0.032968, - 0.022667, - 0.027602, - 0.027381, - -0.012739, - 0.078607, - 0.011291, - 0.036995, - -0.039065, - 0.0036657, - -0.020366, - -0.03495, - 0.018921, - -0.035612, - 0.0204, - -0.010429, - 0.0050417, - -0.0066382, - -0.060015, - 0.017351, - 0.0036869, - -0.0052851, - 0.083886, - 0.0028824, - -0.024225 - ], - "drug-induced": [ - -0.038389, - 0.011192, - 0.012627, - 0.035306, - 0.014391, - -0.022763, - 0.02937, - -0.058927, - 0.0065357, - 0.0050173, - -0.0062244, - -0.010011, - 0.029749, - 0.0063701, - -0.0033528, - 0.015835, - 0.026091, - -0.013519, - 0.040762, - 0.031877, - 0.016052, - 0.0038516, - -0.020938, - 0.088486, - -0.015355, - -0.052859, - -0.020068, - 0.035912, - 0.089552, - 0.040187, - -0.002603, - -0.0081235, - 0.011732, - -0.013088, - 0.019918, - 0.053929, - -0.044668, - -0.048307, - 0.010674, - 0.0491, - -0.02376, - -0.024771, - -0.01607, - 0.019743, - 0.016845, - 0.026877, - 0.056377, - 0.033524, - 0.03321, - 0.0043917, - -0.000092807, - 0.034487, - -0.012278, - -0.02073, - -0.040948, - -0.032424, - -0.021179, - -0.020095, - -0.025945, - 0.049655, - 0.0082709, - -0.0080857, - 0.062707, - -0.015466, - 0.00083792, - -0.029914, - 0.057472, - -0.027403, - -0.00033765, - 0.016349, - 0.014974, - 0.089086, - -0.00053247, - -0.015701, - -0.043326, - -0.0277, - -0.029576, - -0.065928, - -0.022411, - -0.0076876, - -0.0039824, - 0.015637, - -0.0043366, - -0.0047926, - 0.001723, - -0.054687, - 0.052857, - 0.046173, - 0.038372, - 0.017767, - 0.011198, - 0.012795, - -0.077455, - 0.0064926, - -0.025002, - 0.041924, - 0.011061, - -0.06031, - 0.043186, - 0.062994, - 0.031021, - -0.015494, - -0.033787, - -0.021038, - 0.089487, - -0.050632, - 0.0080243, - -0.051407, - -0.011471, - 0.013839, - 0.03428, - 0.0032843, - 0.01966, - 0.0029223, - 0.006058, - 0.021054, - 0.050576, - -0.032227, - -0.028406, - 0.020139, - -0.014268, - 0.022397, - -0.041835, - 0.0013022, - 0.10666, - -0.012749, - 0.035339, - 0.0080823, - 0.013853, - 0.037031, - 0.046716, - -0.075484, - -0.013266, - -0.012577, - -0.0031237, - -0.0099051, - 0.031482, - 0.035963, - 0.022106, - -0.035826, - 0.057403, - 0.020467, - -0.0020901, - 0.016631, - -0.0007496, - -0.06967, - 0.0024217, - -0.0032769, - 0.0368, - 0.064317, - 0.060958, - 0.10768, - 0.018023, - -0.0058477, - 0.018848, - 0.0029055, - -0.050787, - 0.032881, - 0.038917, - -0.02594, - 0.016255, - 0.072494, - -0.060072, - -0.025249, - -0.04119, - -0.020066, - 0.018626, - -0.017577, - 0.010128, - -0.027195, - -0.015397, - -0.020548, - 0.03371, - -0.033548, - 0.031755, - 0.050022, - 0.028038, - -0.044143, - -0.039998, - -0.049354, - 0.051871, - 0.011776, - -0.015516, - 0.0030204, - 0.04734, - -0.016412, - 0.032046, - 0.070477, - 0.056899, - 0.0035436, - 0.071171, - -0.023819, - -0.0020345, - 0.049859, - 0.02324, - 0.008785, - -0.0065587, - 0.045237, - -0.0011043, - 0.011633, - -0.084858, - -0.0048075, - -0.052087, - -0.028006, - 0.015899, - 0.052266, - 0.0022353, - 0.032446, - 0.0019687, - 0.018813, - 0.10546, - 0.030443, - 0.030576, - 0.021882, - 0.11502, - -0.022857, - -0.036735, - 0.032601, - 0.040498, - -0.066038, - -0.066602, - -0.036437, - -0.010795, - 0.048377, - -0.051145, - 0.032453, - -0.0099696, - 0.063422, - -0.01019, - -0.051843, - -0.053429, - -0.016677, - -0.04047, - -0.042026, - 0.041694, - -0.024452, - -0.005538, - -0.033116, - 0.020599, - 0.024115, - 0.058337, - -0.0070794, - -0.050077, - -0.014783, - -0.13675, - -0.041164, - -0.015772, - 0.0033261, - 0.00027015, - 0.036218, - 0.025954, - -0.000053656, - 0.029138, - -0.073376, - 0.029744, - 0.0011656, - 0.035838, - -0.026551, - 0.090423, - -0.010834, - 0.033367, - -0.0090196, - 0.0043715, - -0.013986, - 0.0077603, - -0.020802, - -0.0047796, - 0.021681, - 0.050401, - 0.002369, - -0.060049, - 0.047555, - -0.053139, - 0.001064, - -0.00025871, - -0.10236, - 0.0038944, - -0.0032865, - -0.053198, - 0.0011326, - 0.086034, - 0.0038281, - -0.043716, - -0.0073428, - -0.05245, - -0.00088939, - 0.021612, - -0.039684, - -0.0045314, - -0.046283, - 0.060231, - -0.013228, - -0.023427, - -0.014509, - -0.077819, - 0.011423, - 0.050024, - 0.041619, - 0.0082282, - 0.069222 - ], - "myth": [ - -0.037631, - 0.012974, - 0.031064, - 0.048092, - -0.17137, - -0.038506, - -0.023255, - -0.13465, - 0.020717, - 0.024309, - 0.014013, - -0.016351, - 0.018398, - 0.024044, - 0.0038805, - -0.07395, - 0.19428, - -0.13613, - 0.047955, - 0.11544, - -0.066762, - 0.1719, - 0.012258, - 0.069132, - 0.070681, - -0.081605, - 0.053979, - 0.049284, - 0.10299, - 0.054987, - -0.029738, - 0.0050215, - -0.011898, - -0.031744, - -0.0093454, - -0.032313, - -0.0040034, - -0.13723, - -0.035558, - -0.019051, - 0.013067, - -0.17126, - 0.048987, - 0.15772, - 0.036932, - 0.033759, - 0.021622, - 0.041617, - -0.011842, - -0.026889, - 0.0028322, - 0.095074, - -0.033815, - -0.087398, - -0.0076204, - 0.096381, - 0.061143, - 0.0013324, - -0.083814, - 0.031257, - -0.055298, - -0.026845, - 0.11215, - -0.053761, - 0.14767, - -0.0009811, - -0.10185, - 0.1042, - 0.071729, - -0.024843, - 0.0054361, - 0.0064552, - -0.089269, - -0.043629, - -0.023685, - 0.012312, - 0.012908, - -0.020305, - 0.042749, - -0.064802, - 0.0020072, - 0.032831, - -0.11738, - 0.16206, - -0.010478, - 0.068122, - -0.078488, - -0.02606, - 0.039819, - 0.0044569, - -0.070483, - 0.0086763, - -0.11875, - -0.051869, - 0.010742, - 0.095695, - -0.029335, - -0.042045, - -0.003895, - 0.02913, - 0.027518, - -0.026343, - 0.062863, - -0.011255, - -0.14266, - -0.13167, - 0.001222, - 0.056892, - -0.081405, - 0.048446, - 0.025677, - 0.044172, - 0.035526, - -0.080503, - -0.017338, - 0.056343, - 0.0098174, - 0.0674, - -0.099431, - 0.061682, - -0.039213, - -0.036764, - -0.10627, - -0.13116, - 0.089032, - 0.06603, - 0.07446, - 0.00067659, - -0.047531, - 0.20007, - -0.011366, - -0.085498, - 0.030127, - 0.021015, - 0.076995, - -0.046194, - -0.13883, - 0.088434, - 0.014588, - -0.0927, - 0.051819, - -0.096106, - 0.043951, - 0.12798, - -0.043385, - -0.12778, - -0.028624, - 0.033824, - -0.070706, - -0.071583, - 0.055126, - 0.031269, - -0.018482, - -0.0042091, - -0.0097746, - 0.033209, - 0.014254, - -0.0019414, - 0.010079, - -0.022841, - 0.013419, - 0.066542, - -0.16274, - -0.0058121, - 0.093556, - -0.14762, - 0.041188, - 0.14428, - 0.0035992, - -0.037125, - -0.13391, - -0.11189, - -0.092361, - -0.03652, - 0.051177, - 0.071133, - 0.06458, - 0.044003, - 0.053234, - 0.056451, - -0.068794, - 0.18921, - -0.0031979, - -0.049666, - 0.0049426, - -0.00019963, - -0.052158, - 0.1443, - 0.11493, - 0.025902, - 0.11133, - 0.12112, - -0.10872, - -0.040888, - -0.0059924, - 0.039573, - -0.0020161, - -0.10037, - -0.081095, - 0.023483, - -0.20634, - 0.073013, - -0.076218, - -0.14297, - 0.12592, - 0.06285, - -0.016618, - 0.02574, - -0.02318, - -0.028558, - 0.14053, - 0.004477, - -0.046029, - -0.015576, - 0.078641, - 0.0079931, - -0.0008919, - -0.10492, - 0.011047, - -0.036096, - 0.039406, - -0.070163, - 0.041722, - 0.15592, - -0.0019417, - -0.079557, - 0.053551, - 0.071158, - 0.041441, - 0.0026044, - -0.024711, - -0.10985, - -0.048617, - -0.023951, - 0.03813, - 0.051998, - -0.054811, - 0.0056233, - 0.07753, - -0.092771, - 0.10707, - 0.029391, - -0.05867, - -0.029232, - -0.029516, - 0.021659, - -0.11814, - 0.013483, - -0.072893, - 0.0056882, - 0.084021, - 0.074472, - -0.064549, - 0.070551, - 0.03633, - 0.087204, - -0.01943, - 0.0422, - 0.16924, - 0.03355, - 0.11447, - -0.011961, - 0.10293, - -0.0087215, - 0.088143, - 0.047616, - 0.044878, - -0.014583, - 0.055743, - -0.0055176, - -0.047097, - 0.11454, - -0.14222, - -0.026885, - 0.13512, - -0.082634, - 0.040893, - 0.0028999, - -0.0018283, - 0.023051, - 0.15135, - -0.098495, - 0.0039693, - 0.011851, - -0.047212, - 0.056912, - 0.02782, - 0.035514, - -0.017003, - -0.081352, - 0.083006, - -0.023983, - 0.023023, - -0.065304, - 0.0018925, - 0.0014093, - 0.10789, - -0.033342, - 0.033492, - -0.0057042 - ], - "government": [ - 0.015353, - -0.027404, - -0.014712, - 0.0049185, - 0.0074095, - -0.044507, - 0.029876, - -0.069643, - 0.050378, - 0.053482, - 0.015486, - -0.02741, - -0.020909, - 0.010181, - -0.014882, - 0.038818, - 0.077187, - -0.012793, - 0.041798, - 0.027727, - -0.0024106, - -0.015283, - 0.01617, - 0.051828, - -0.030039, - -0.001148, - 0.013609, - -0.00026091, - -0.01775, - -0.0054559, - 0.016394, - -0.04485, - -0.041158, - -0.020954, - 0.00048269, - 0.044792, - -0.015169, - -0.017076, - 0.0091537, - 0.014615, - -0.048684, - -0.081232, - -0.0061691, - 0.036647, - 0.019203, - 0.02177, - -0.025251, - 0.026217, - -0.026781, - -0.00096675, - 0.01072, - -0.00024181, - 0.0022782, - 0.0065663, - -0.022648, - -0.0013266, - -0.011976, - -0.0071348, - -0.025552, - 0.022801, - 0.019086, - 0.0050014, - 0.056689, - 0.0032827, - -0.0044614, - -0.021969, - 0.010538, - -0.04567, - 0.040677, - 0.018157, - 0.0094206, - -0.010254, - 0.045776, - 0.0030795, - -0.0035945, - -0.02083, - 0.010676, - 0.0087756, - 0.024047, - -0.0052583, - -0.036974, - 0.050125, - -0.03584, - 0.05852, - -0.016472, - 0.0077444, - -0.04715, - -0.027028, - -0.0034491, - 0.028941, - -0.0065096, - 0.027692, - -0.082943, - -0.038622, - -0.006069, - 0.051942, - 0.0251, - -0.027078, - 0.038112, - -0.0070694, - 0.02646, - -0.023245, - 0.011778, - -0.040723, - 0.012816, - -0.073009, - 0.046387, - -0.0038228, - 0.0052848, - -0.026696, - -0.0043404, - 0.076642, - 0.056319, - 0.024972, - 0.016683, - 0.0089917, - 0.033327, - -0.0054464, - -0.032329, - 0.022113, - 0.0046892, - -0.012077, - -0.0037157, - -0.0033498, - 0.029446, - 0.023127, - -0.010731, - -0.069708, - -0.0073136, - 0.09591, - -0.028634, - 0.051284, - 0.041209, - 0.016207, - 0.017111, - 0.0031111, - -0.039625, - 0.025785, - 0.0026908, - 0.03871, - 0.019807, - -0.047915, - -0.0095707, - 0.015053, - -0.030209, - -0.017143, - -0.027918, - 0.0049405, - 0.024537, - -0.060017, - 0.050821, - 0.056919, - 0.018458, - -0.033911, - -0.0086031, - 0.025023, - -0.028875, - -0.019772, - -0.039895, - -0.014248, - 0.027496, - -0.00084827, - -0.0023281, - 0.021099, - -0.010247, - 0.013611, - 0.022877, - 0.0073425, - 0.027775, - 0.024323, - 0.018997, - -0.022573, - -0.0048851, - 0.01645, - -0.017132, - 0.028787, - -0.032738, - 0.037407, - -0.036668, - 0.0036201, - -0.042742, - -0.0079002, - -0.0023651, - 0.0040653, - -0.0053203, - -0.039495, - 0.0024866, - 0.073707, - 0.0028142, - -0.059714, - -0.036154, - 0.062299, - -0.0061862, - -0.0017261, - 0.0017838, - -0.0040828, - -0.0052719, - -0.036248, - -0.026521, - 0.0030666, - -0.10755, - 0.0063253, - 0.0037264, - -0.0040978, - -0.023869, - -0.0041813, - 0.00063417, - -0.0054222, - -0.029753, - -0.019813, - 0.067654, - 0.010826, - 0.015535, - 0.031992, - -0.057768, - -0.008681, - 0.011189, - -0.022819, - 0.020518, - -0.029795, - 0.016524, - -0.039523, - -0.012417, - 0.075288, - 0.012367, - 0.032131, - -0.0088814, - 0.0077373, - -0.0029557, - -0.034068, - -0.020802, - -0.020083, - -0.041844, - -0.020396, - 0.0064412, - 0.012226, - -0.023771, - -0.019494, - -0.0065348, - -0.031854, - 0.057741, - -0.0072211, - 0.035074, - 0.039581, - 0.0062757, - -0.0057928, - 0.015087, - -0.045768, - 0.023616, - -0.013815, - 0.029261, - -0.025637, - 0.020854, - -0.028455, - 0.026727, - 0.010248, - -0.018399, - 0.033101, - -0.025926, - 0.0064462, - -0.014236, - 0.0033651, - -0.019526, - 0.0088428, - -0.025482, - 0.032962, - -0.00051683, - 0.0442, - -0.0083472, - 0.035542, - -0.016388, - 0.022256, - -0.091042, - -0.014553, - -0.0024291, - -0.0070526, - 0.028747, - 0.023765, - -0.01875, - 0.018483, - 0.036287, - -0.02784, - 0.017199, - 0.0384, - 0.0086858, - 0.039523, - 0.0046511, - -0.053251, - -0.012478, - 0.026421, - 0.0048195, - 0.021459, - 0.054941, - 0.015342, - -0.020329, - 0.019397, - -0.050915, - -0.034028, - -0.021285, - -0.0022055 - ], - "rules": [ - 0.019515, - -0.053905, - -0.01534, - -0.013193, - -0.011522, - -0.065725, - 0.00039158, - -0.12371, - -0.050234, - 0.0054288, - -0.021781, - -0.11318, - 0.0047766, - -0.0071606, - 0.050958, - 0.076156, - 0.10107, - 0.0095453, - 0.10718, - 0.048572, - 0.000075457, - 0.024856, - 0.10819, - 0.1062, - 0.019378, - 0.011275, - -0.039284, - -0.026497, - 0.12395, - -0.079755, - -0.076411, - 0.0032643, - -0.072745, - -0.10866, - 0.044394, - -0.03383, - -0.010255, - 0.10216, - 0.042577, - 0.0080328, - -0.020803, - -0.16866, - -0.051733, - 0.02424, - -0.059981, - -0.030883, - 0.035567, - -0.051911, - 0.029108, - -0.022485, - -0.01591, - 0.0070207, - 0.11924, - -0.014683, - -0.10419, - -0.013612, - 0.11462, - 0.0053309, - -0.066703, - -0.048903, - 0.030347, - -0.056067, - 0.22991, - 0.070122, - 0.021069, - 0.0020383, - -0.004858, - -0.00043223, - 0.10093, - 0.0065327, - 0.02136, - -0.077906, - -0.025457, - -0.027568, - 0.06669, - 0.039861, - -0.022593, - -0.10005, - -0.16838, - 0.011683, - 0.020483, - -0.017713, - -0.0064177, - 0.095084, - -0.012103, - -0.052283, - 0.012309, - -0.049942, - 0.13461, - 0.0044979, - 0.047676, - -0.078257, - -0.073209, - 0.014348, - -0.021453, - 0.0066524, - 0.021762, - 0.03175, - 0.032684, - 0.0046018, - 0.061163, - 0.011002, - -0.060723, - -0.030162, - -0.0056612, - -0.055257, - 0.019599, - -0.017205, - -0.046492, - 0.0069677, - -0.021659, - -0.017986, - 0.095931, - -0.09349, - -0.0026889, - -0.024875, - -0.049909, - -0.0066644, - -0.058715, - -0.086231, - 0.024811, - 0.038019, - 0.03117, - 0.0048132, - 0.12832, - -0.062094, - 0.000070588, - 0.011245, - 0.0041053, - 0.24356, - -0.047318, - 0.04779, - -0.013867, - 0.08319, - -0.0096599, - -0.046924, - -0.025635, - 0.050235, - -0.016213, - -0.014638, - 0.040307, - -0.014673, - 0.03835, - 0.029491, - 0.014237, - -0.0045354, - 0.028751, - -0.02347, - 0.022671, - -0.053306, - 0.0064151, - 0.087284, - -0.0072684, - -0.080222, - 0.11519, - 0.10277, - 0.067927, - 0.00054642, - 0.048692, - -0.004979, - 0.043384, - -0.002205, - -0.035931, - -0.018276, - 0.056018, - -0.05841, - 0.10353, - -0.04304, - -0.055329, - -0.019548, - -0.055632, - -0.0002604, - -0.00099854, - -0.0069951, - -0.090558, - 0.061049, - -0.076248, - 0.095587, - -0.014177, - -0.049705, - 0.02189, - 0.0292, - -0.025654, - 0.035023, - 0.020922, - 0.038627, - 0.050933, - 0.12749, - 0.055763, - 0.017318, - -0.082497, - 0.14159, - -0.12494, - -0.013613, - 0.00058918, - 0.015078, - -0.038243, - 0.0073534, - -0.02339, - 0.032625, - -0.18588, - -0.013837, - 0.022324, - -0.015987, - 0.028838, - 0.085474, - 0.024824, - -0.043825, - 0.056476, - -0.033833, - 0.11216, - 0.071334, - 0.080965, - 0.077679, - -0.052159, - -0.019729, - 0.040855, - 0.034072, - -0.1397, - -0.11226, - 0.037328, - -0.088093, - -0.08053, - 0.12493, - 0.13353, - -0.0065132, - -0.023108, - 0.092556, - -0.073738, - 0.024581, - 0.016189, - -0.088778, - -0.091315, - 0.031693, - 0.025261, - -0.024383, - -0.013759, - 0.0043769, - 0.051403, - 0.16303, - 0.028993, - -0.017948, - 0.10409, - 0.047941, - -0.025948, - 0.018714, - -0.015215, - -0.061052, - -0.015766, - 0.032922, - 0.022952, - -0.012686, - 0.075237, - 0.078137, - 0.026557, - 0.077334, - 0.092306, - 0.03532, - -0.085816, - 0.07039, - -0.046862, - 0.0073839, - 0.071794, - -0.074856, - 0.048881, - 0.05454, - 0.00073498, - 0.064521, - 0.014431, - -0.065739, - 0.03288, - 0.10503, - -0.1515, - -0.072275, - 0.044739, - 0.00065006, - -0.020386, - -0.030274, - 0.032765, - -0.070723, - 0.083554, - -0.028857, - -0.01196, - -0.0089366, - 0.011995, - -0.0062259, - -0.060047, - 0.076122, - 0.032013, - 0.027204, - 0.034252, - -0.067151, - 0.092851, - -0.11066, - 0.021334, - -0.091341, - -0.016302, - -0.044906, - -0.026048, - 0.013002 - ], - "mobile-phone": [ - -0.014557, - 0.011316, - -0.01077, - -0.020848, - -0.031733, - -0.027691, - 0.027981, - -0.083367, - 0.05577, - 0.037934, - 0.016525, - -0.029048, - -0.043483, - -0.017208, - -0.0073497, - 0.01412, - 0.062174, - 0.0054408, - 0.027878, - -0.012623, - 0.036053, - -0.060643, - -0.0054905, - 0.05831, - 0.029343, - -0.0043216, - 0.054533, - -0.0065597, - 0.029819, - -0.062853, - -0.030714, - 0.032437, - 0.0032155, - -0.012857, - 0.066166, - 0.0057227, - 0.0015056, - 0.0134, - 0.018641, - -0.0049457, - -0.044767, - -0.091323, - -0.019297, - 0.022558, - 0.040281, - 0.00232, - -0.045478, - -0.031918, - 0.033304, - -0.012016, - 0.022238, - -0.038449, - -0.0044672, - -0.027766, - -0.0012981, - 0.042049, - -0.0047284, - -0.013609, - -0.040466, - 0.044956, - -0.021857, - 0.016309, - 0.046888, - 0.033689, - -0.001041, - 0.015731, - 0.023476, - -0.019417, - -0.044817, - -0.012972, - -0.058025, - -0.022077, - 0.058983, - -0.018534, - -0.051916, - 0.0076267, - 0.027186, - -0.0089296, - -0.036721, - -0.046516, - -0.024131, - -0.025846, - -0.067343, - 0.0080883, - -0.015537, - -0.042364, - -0.018811, - 0.023914, - -0.029719, - 0.0043567, - 0.010762, - 0.02616, - -0.068926, - 0.0092308, - -0.0018192, - 0.06509, - -0.014064, - -0.062947, - 0.011869, - 0.01808, - -0.011046, - 0.019101, - -0.029537, - -0.0014021, - 0.0021923, - -0.073709, - -0.0165, - 0.029047, - 0.054384, - 0.0038387, - 0.0015098, - 0.096529, - 0.043264, - 0.066577, - -0.02846, - 0.0036227, - -0.015573, - 0.034166, - -0.045913, - -0.025204, - -0.0092847, - 0.055536, - 0.033539, - -0.0022208, - 0.075501, - 0.01719, - 0.011531, - -0.042118, - 0.031228, - 0.053639, - -0.010382, - -0.0000060198, - -0.088736, - -0.043937, - 0.075493, - 0.021226, - 0.066496, - 0.0025128, - -0.0033023, - 0.027879, - 0.028162, - 0.025419, - 0.035666, - 0.023213, - -0.0056558, - -0.032982, - -0.047186, - 0.039121, - 0.020077, - -0.079909, - 0.032291, - 0.10409, - -0.0024426, - 0.0054798, - -0.017242, - 0.0099383, - -0.040771, - 0.017238, - 0.039692, - 0.017458, - 0.020258, - -0.028886, - -0.068113, - 0.023211, - -0.03303, - -0.004409, - 0.057684, - 0.0085147, - 0.011931, - 0.04955, - -0.037589, - 0.09321, - 0.01197, - 0.080223, - -0.038234, - 0.04348, - -0.04037, - -0.017899, - -0.026138, - -0.019596, - 0.048167, - -0.01783, - -0.033442, - -0.0097722, - -0.017007, - -0.037549, - -0.022505, - 0.096655, - 0.022131, - 0.016238, - 0.018581, - 0.047429, - 0.046863, - 0.0080908, - 0.006608, - 0.02658, - 0.013835, - -0.0089713, - 0.0091217, - 0.034616, - -0.10645, - 0.023999, - -0.032621, - 0.01985, - -0.021237, - 0.079053, - 0.011637, - -0.0027476, - -0.052974, - -0.0065475, - 0.12453, - -0.0013046, - 0.034713, - 0.022394, - -0.024338, - -0.042369, - -0.047734, - -0.035447, - 0.023868, - 0.0024288, - 0.019895, - -0.03819, - 0.029456, - 0.086087, - -0.019741, - -0.037571, - 0.01483, - 0.0041252, - -0.0092551, - -0.022644, - 0.021581, - -0.048943, - -0.037772, - 0.0027779, - 0.069234, - 0.057297, - 0.0284, - -0.026964, - 0.055629, - -0.017976, - -0.0099355, - -0.03421, - 0.03298, - -0.012546, - -0.0466, - -0.034336, - -0.027203, - 0.031888, - -0.041046, - 0.0044327, - -0.011573, - -0.0087726, - -0.10353, - -0.0080608, - 0.010014, - 0.0482, - -0.027143, - -0.0039563, - -0.0093366, - 0.014185, - -0.012717, - 0.044496, - 0.018852, - -0.0087633, - 0.003062, - 0.021319, - -0.0074559, - 0.046696, - 0.05259, - 0.03237, - -0.046481, - 0.059363, - -0.066887, - 0.010143, - -0.061591, - -0.044611, - 0.015549, - 0.028935, - 0.013292, - -0.010787, - 0.10052, - -0.026849, - -0.050992, - 0.049003, - -0.057454, - -0.034779, - -0.13043, - -0.039265, - 0.054447, - 0.014597, - 0.020488, - 0.0010373, - -0.059087, - 0.013001, - 0.032726, - -0.015407, - -0.023137, - 0.025257, - 0.046649, - 0.0042511 - ], - "pre-school": [ - -0.00077716, - -0.060899, - -0.030514, - 0.0087121, - 0.0020598, - -0.021504, - 0.012784, - -0.075331, - 0.040284, - -0.030146, - 0.050298, - -0.068047, - 0.015766, - 0.019514, - -0.014647, - 0.0053132, - 0.062013, - 0.074784, - 0.033122, - 0.0068778, - 0.0041943, - 0.020686, - 0.0094388, - 0.052747, - -0.035869, - 0.066496, - 0.0083517, - 0.02154, - -0.018528, - 0.03206, - 0.022991, - -0.019164, - -0.012801, - -0.065975, - 0.029411, - 0.04642, - 0.029039, - -0.04127, - 0.0058704, - -0.062199, - 0.0030454, - -0.10909, - -0.0056107, - -0.014214, - 0.06236, - -0.026467, - -0.059309, - 0.062377, - -0.0101, - 0.045999, - -0.012445, - 0.022658, - 0.019539, - -0.050759, - -0.030139, - -0.019987, - 0.012156, - -0.10328, - -0.032039, - -0.03688, - -0.049996, - -0.042695, - 0.092855, - 0.07014, - 0.056238, - -0.015814, - 0.0090303, - -0.047543, - -0.065842, - -0.025514, - -0.02609, - -0.074428, - 0.035626, - 0.076677, - -0.08088, - -0.006674, - 0.020554, - -0.00064337, - 0.057893, - -0.011051, - 0.010614, - -0.007046, - 0.013587, - 0.044003, - -0.038023, - 0.03116, - -0.09395, - -0.016013, - -0.041734, - 0.0076517, - 0.016776, - 0.042259, - -0.075968, - 0.0080298, - 0.032694, - 0.066315, - 0.037654, - 0.065142, - -0.02528, - -0.0006277, - 0.065704, - -0.0094277, - -0.0074409, - -0.0051356, - 0.026959, - -0.058288, - 0.056373, - 0.013266, - -0.047922, - 0.0075672, - 0.0062959, - 0.046696, - 0.037572, - 0.097141, - 0.028226, - -0.054999, - -0.047767, - 0.01808, - -0.0064151, - -0.014591, - -0.0451, - 0.056933, - 0.001525, - 0.0017972, - -0.00954, - -0.051816, - -0.0083856, - -0.07936, - -0.027589, - 0.011968, - -0.00058395, - 0.050904, - -0.03358, - -0.017502, - -0.07067, - -0.0099455, - -0.010587, - 0.0087051, - 0.038255, - -0.010571, - -0.013883, - 0.019752, - 0.021994, - 0.023257, - 0.015289, - -0.038509, - 0.024904, - 0.011179, - -0.027356, - 0.034808, - 0.072306, - 0.060678, - -0.034166, - -0.011183, - 0.019002, - 0.036473, - -0.013965, - 0.053096, - 0.0057134, - -0.0034209, - 0.026515, - -0.047529, - 0.011215, - -0.004989, - -0.027265, - 0.0022771, - 0.037377, - -0.016263, - 0.00041269, - -0.024779, - -0.0039133, - -0.0067974, - 0.027542, - 0.0083553, - 0.0051811, - 0.028952, - -0.0030658, - 0.0040975, - -0.011149, - 0.019255, - -0.011288, - -0.049586, - -0.011424, - 0.051779, - 0.024378, - -0.024752, - 0.054353, - 0.10114, - 0.025628, - -0.023935, - 0.014531, - 0.046817, - 0.032355, - -0.046523, - 0.067122, - -0.030677, - 0.018519, - 0.048139, - 0.043113, - -0.033395, - -0.12127, - 0.089489, - -0.0050546, - 0.015652, - -0.016335, - 0.048276, - 0.02867, - -0.073615, - -0.02814, - -0.0063064, - 0.099645, - -0.043874, - -0.030084, - 0.035897, - -0.055977, - -0.019717, - -0.031105, - -0.020441, - 0.0049614, - -0.045062, - 0.02518, - 0.043176, - -0.027748, - 0.081229, - -0.023625, - -0.015354, - 0.027342, - 0.039229, - -0.012107, - -0.035448, - 0.065576, - -0.049853, - -0.027339, - 0.024198, - 0.031516, - 0.064036, - -0.022188, - -0.0048843, - -0.053901, - -0.046341, - 0.07028, - -0.023406, - 0.069466, - -0.022952, - -0.060817, - 0.024943, - -0.020439, - -0.022126, - -0.04529, - 0.02857, - 0.0075797, - -0.0031562, - -0.0032055, - -0.012341, - 0.0083203, - 0.0065616, - -0.02302, - 0.03643, - -0.0031771, - -0.00082693, - 0.049682, - -0.067783, - 0.025042, - -0.049303, - 0.021634, - 0.054651, - -0.049526, - 0.025356, - 0.066427, - 0.052263, - 0.025069, - 0.059597, - -0.091431, - -0.022413, - 0.0032585, - -0.016283, - 0.033935, - 0.021553, - 0.0016508, - 0.035943, - 0.063732, - -0.019154, - 0.096166, - 0.02508, - 0.011305, - 0.039034, - 0.018456, - -0.032835, - 0.0076944, - 0.017243, - -0.0074707, - 0.040697, - -0.051617, - -0.02498, - -0.019784, - 0.046961, - 0.021961, - -0.0061659, - 0.019289, - -0.022758 - ], - "Drug": [ - -0.098945, - -0.044385, - -0.0072509, - 0.12292, - -0.091655, - 0.021278, - 0.0026776, - -0.037997, - 0.10046, - 0.085195, - 0.032762, - -0.057562, - 0.041626, - -0.038645, - -0.011294, - -0.035045, - 0.073796, - 0.07704, - 0.13054, - 0.0061252, - 0.077813, - 0.010686, - 0.097569, - 0.051099, - 0.055692, - -0.07867, - 0.046598, - 0.025684, - 0.025756, - 0.11915, - 0.0078426, - 0.012801, - -0.013313, - -0.016114, - 0.21827, - 0.017065, - -0.0056478, - -0.027169, - 0.020216, - 0.073096, - -0.042545, - 0.10669, - 0.018121, - -0.035312, - 0.1031, - 0.044534, - 0.059632, - 0.14994, - 0.062852, - -0.0118, - -0.024094, - 0.0020599, - 0.082259, - -0.16874, - -0.041554, - 0.040289, - 0.033261, - 0.059029, - -0.14395, - -0.046815, - -0.017957, - 0.049138, - -0.22157, - 0.045051, - -0.18072, - 0.048553, - 0.098987, - -0.11441, - 0.10476, - 0.041894, - -0.023835, - 0.083058, - -0.17759, - -0.12976, - 0.0014671, - -0.076239, - 0.029094, - -0.23154, - 0.059375, - -0.10641, - -0.039939, - -0.0043303, - -0.11624, - -0.095283, - -0.019061, - -0.020024, - 0.035898, - -0.10259, - 0.082975, - -0.0061485, - 0.0096696, - 0.065169, - -0.091627, - -0.067818, - -0.12893, - 0.19031, - 0.016303, - -0.037362, - 0.034261, - 0.086795, - 0.039062, - 0.0048819, - -0.056591, - -0.034289, - -0.077483, - -0.23188, - -0.022823, - -0.053436, - 0.12504, - 0.12361, - 0.0059066, - 0.062882, - 0.078771, - -0.032971, - 0.0052412, - -0.050562, - 0.066515, - -0.16065, - 0.1336, - 0.15481, - 0.046147, - 0.01286, - -0.014368, - -0.10575, - 0.16023, - 0.010461, - -0.11223, - -0.20069, - 0.11177, - 0.4746, - -0.047775, - 0.077704, - 0.025927, - -0.068696, - 0.081328, - -0.034618, - -0.081622, - -0.039136, - 0.039608, - -0.030095, - 0.14822, - 0.066514, - -0.047032, - -0.067644, - -0.019653, - -0.081885, - 0.078783, - 0.045922, - 0.15539, - -0.038978, - 0.12214, - 0.28562, - 0.078201, - -0.029742, - 0.023104, - 0.041479, - -0.071505, - -0.099015, - 0.11516, - 0.074367, - 0.048838, - 0.12335, - -0.29397, - 0.088705, - -0.041152, - -0.053921, - 0.04298, - -0.022208, - 0.049557, - -0.1148, - -0.053945, - -0.022344, - 0.13899, - -0.019734, - -0.078999, - 0.013697, - -0.13531, - 0.051924, - 0.0029312, - -0.049439, - -0.084417, - -0.10742, - -0.11178, - 0.054194, - 0.0013856, - 0.28836, - 0.099092, - 0.29666, - -0.0023595, - -0.017424, - 0.11425, - 0.10271, - -0.030412, - 0.051094, - 0.068013, - -0.064597, - -0.069704, - 0.13626, - 0.048119, - -0.034581, - 0.050525, - 0.24482, - -0.08304, - -0.018058, - 0.013952, - 0.00074021, - 0.031303, - 0.00079465, - 0.034477, - 0.068034, - 0.31096, - 0.088377, - 0.044337, - 0.073646, - 0.10305, - -0.13241, - -0.03509, - 0.068321, - 0.066766, - -0.052701, - 0.001442, - -0.098923, - -0.066661, - 0.11717, - -0.015781, - 0.040355, - 0.085881, - 0.015683, - -0.005205, - -0.041901, - -0.033568, - -0.11735, - 0.020498, - -0.065327, - 0.075823, - -0.057839, - -0.067645, - -0.1122, - 0.03046, - 0.022499, - 0.034186, - 0.03839, - -0.034596, - -0.042571, - 0.16588, - 0.008353, - -0.060013, - -0.12016, - 0.076935, - -0.021785, - -0.081271, - 0.034757, - 0.13773, - -0.064637, - 0.0043274, - -0.073855, - 0.017568, - 0.021151, - 0.1377, - -0.028459, - -0.009657, - -0.0028304, - 0.048821, - -0.031104, - 0.012959, - -0.1155, - -0.042203, - 0.041875, - -0.024253, - 0.095378, - -0.012839, - 0.1357, - -0.01619, - 0.024948, - -0.01458, - -0.18704, - -0.0053111, - 0.04841, - -0.15666, - 0.055081, - 0.12732, - -0.038293, - -0.11808, - -0.029555, - 0.13322, - 0.033828, - 0.0049407, - 0.041697, - 0.076143, - -0.18631, - 0.026159, - -0.013029, - 0.023097, - 0.028381, - -0.12348, - -0.061343, - 0.056619, - 0.017589, - -0.019697, - -0.079708 - ], - "time-travel": [ - -0.075312, - 0.0028466, - -0.022868, - 0.038029, - -0.04461, - -0.02636, - -0.029767, - -0.049775, - 0.027679, - 0.051434, - 0.0023336, - -0.090096, - -0.0076049, - 0.00087095, - -0.044893, - -0.033534, - 0.083959, - -0.030061, - 0.01837, - 0.056503, - 0.015908, - 0.014556, - -0.03689, - 0.048107, - 0.0466, - 0.0048552, - 0.013335, - 0.043552, - -0.040129, - 0.02624, - -0.021485, - -0.011578, - 0.036975, - -0.087796, - 0.058829, - -0.021133, - 0.0090073, - -0.034176, - -0.011375, - -0.0038691, - -0.057341, - -0.092694, - 0.030441, - 0.017193, - -0.025088, - -0.00067921, - 0.044472, - -0.00025692, - -0.053197, - -0.029406, - -0.014311, - 0.023714, - -0.016012, - 0.0040107, - -0.059115, - 0.01518, - 0.05339, - 0.0075446, - -0.027172, - 0.036165, - 0.063354, - 0.031606, - 0.066158, - -0.019552, - 0.050524, - 0.0044012, - 0.014801, - -0.01431, - -0.041653, - 0.081541, - -0.0032345, - -0.0098531, - -0.020547, - 0.017922, - 0.055345, - 0.040985, - 0.048655, - -0.011757, - -0.040556, - 0.011388, - -0.028967, - -0.025262, - -0.0077132, - 0.037572, - -0.0097596, - -0.0033596, - 0.023017, - 0.001471, - 0.015379, - -0.03452, - 0.064659, - 0.040201, - -0.043042, - 0.029869, - 0.0070426, - 0.012483, - 0.017801, - -0.020653, - -0.016492, - 0.04067, - 0.0052865, - 0.030477, - -0.040077, - -0.064912, - -0.041753, - -0.051433, - 0.061833, - 0.0015178, - 0.014313, - -0.026163, - -0.0049529, - -0.01695, - 0.063038, - 0.028163, - -0.06194, - 0.074785, - -0.045739, - -0.010466, - -0.034665, - 0.056412, - 0.037495, - -0.0055206, - -0.034811, - 0.0089362, - 0.073537, - -0.01264, - 0.018793, - -0.0311, - -0.03259, - 0.05347, - -0.016181, - 0.027206, - -0.043255, - -0.038363, - 0.042476, - -0.034974, - 0.035007, - -0.003164, - 0.049937, - -0.036388, - 0.047958, - -0.014589, - 0.011296, - 0.073154, - -0.012096, - -0.0021911, - -0.02124, - 0.013013, - -0.042327, - 0.014321, - 0.027743, - 0.098306, - -0.050433, - -0.032959, - -0.017462, - 0.016334, - -0.0096031, - 0.012125, - -0.0266, - -0.019445, - 0.051557, - 0.017739, - -0.038585, - -0.024035, - -0.015668, - 0.015745, - -0.028569, - 0.01225, - 0.069787, - -0.030595, - 0.026726, - -0.0096866, - -0.08621, - -0.07288, - 0.010951, - 0.038287, - -0.017531, - 0.015928, - -0.041183, - 0.045733, - 0.048028, - -0.0059695, - 0.041845, - -0.033439, - 0.0044789, - -0.065032, - 0.025339, - 0.086084, - 0.047541, - -0.006484, - 0.036622, - 0.044277, - 0.023395, - -0.013404, - -0.012988, - 0.050275, - -0.022932, - -0.0022866, - -0.001374, - 0.067447, - -0.083926, - 0.062272, - 0.0012206, - 0.040965, - -0.026567, - -0.027077, - -0.034419, - 0.028117, - 0.031142, - -0.0036237, - 0.070815, - 0.00184, - -0.0035256, - 0.0036123, - 0.03819, - 0.027452, - -0.0072836, - 0.033509, - -0.035873, - -0.015355, - 0.036718, - 0.04852, - -0.039777, - 0.065756, - 0.0076364, - -0.07711, - 0.05793, - 0.047443, - -0.056029, - 0.029925, - -0.039989, - -0.051603, - -0.011861, - -0.014721, - 0.0029681, - -0.075744, - 0.062692, - 0.04341, - 0.040837, - 0.0030178, - 0.048806, - 0.074519, - 0.00892, - -0.02477, - -0.063942, - -0.014868, - 0.028122, - -0.0080465, - -0.043906, - 0.021138, - -0.00051036, - -0.0032583, - 0.0076602, - 0.017773, - 0.0022347, - 0.03204, - -0.0066181, - 0.005725, - 0.033454, - 0.053417, - 0.051972, - 0.0016102, - -0.073565, - -0.08843, - -0.008873, - 0.020841, - -0.021071, - 0.022721, - 0.080107, - -0.0040643, - -0.0019027, - 0.051071, - -0.078302, - -0.0086349, - -0.0098736, - -0.016222, - 0.017157, - -0.031174, - -0.0095057, - 0.03087, - 0.075519, - -0.0386, - -0.0056755, - -0.017214, - -0.047244, - 0.0050039, - 0.0058001, - -0.049804, - 0.011131, - 0.016097, - 0.053129, - 0.011919, - -0.019889, - -0.038023, - 0.027136, - 0.022063, - 0.03674, - -0.0075737, - 0.012805, - -0.011638 - ], - "matters": [ - 0.0044835, - -0.081289, - 0.049822, - -0.024404, - -0.0063741, - -0.010743, - -0.011482, - -0.082913, - 0.030868, - 0.033313, - -0.047125, - -0.084931, - -0.0010831, - -0.0071259, - 0.022838, - 0.012949, - 0.12333, - 0.025263, - 0.071835, - 0.062656, - -0.018173, - 0.037783, - 0.15741, - 0.095364, - -0.021239, - 0.050539, - -0.012386, - -0.025737, - 0.1124, - -0.058007, - 0.026127, - -0.0076993, - -0.043633, - -0.049988, - 0.046047, - -0.036181, - -0.050379, - 0.037815, - -0.029497, - 0.0058189, - -0.015153, - -0.095071, - -0.019001, - 0.037973, - -0.018742, - -0.08962, - -0.0089802, - -0.029045, - -0.016052, - -0.017991, - -0.014602, - -0.0088145, - 0.044662, - 0.051109, - -0.051314, - 0.065989, - -0.079327, - 0.0015216, - -0.046179, - -0.046071, - 0.021152, - 0.010706, - 0.10078, - -0.013767, - 0.044962, - -0.020955, - -0.012051, - -0.02601, - -0.00045566, - -0.00087449, - 0.03936, - -0.031284, - -0.0056024, - -0.014575, - -0.02948, - 0.011763, - 0.018051, - -0.024465, - 0.043889, - -0.010041, - -0.051704, - 0.044656, - -0.037211, - 0.066765, - -0.052686, - 0.01087, - 0.047065, - -0.014675, - 0.066666, - -0.045091, - 0.091314, - -0.020379, - -0.07239, - 0.048231, - -0.032843, - -0.032381, - -0.022714, - 0.001552, - -0.033115, - 0.0012946, - -0.010959, - 0.035658, - -0.00068423, - 0.0011106, - 0.04443, - -0.036321, - 0.026465, - -0.0015349, - 0.044666, - -0.015177, - -0.030587, - 0.092856, - 0.073108, - -0.018793, - -0.01488, - -0.0029574, - 0.0040976, - -0.018824, - -0.062837, - -0.012112, - 0.03402, - 0.010989, - -0.011192, - 0.0052501, - 0.13821, - -0.011157, - -0.06101, - -0.13685, - -0.012159, - 0.0961, - -0.0090651, - 0.042839, - 0.008268, - 0.047988, - -0.053388, - -0.033953, - -0.0050339, - 0.037635, - -0.041599, - 0.024338, - 0.05777, - -0.0057957, - 0.00071142, - 0.045036, - -0.033677, - -0.0084988, - 0.017071, - -0.026934, - -0.061087, - -0.029863, - 0.039745, - 0.078384, - 0.016165, - -0.10115, - -0.03276, - 0.056279, - -0.0040929, - -0.031679, - -0.034241, - 0.0071515, - 0.048726, - 0.011269, - -0.033724, - 0.00023345, - 0.011582, - 0.050743, - 0.010812, - 0.0078812, - -0.045379, - -0.0046743, - -0.0043795, - 0.013346, - 0.015421, - 0.010824, - -0.00078076, - 0.066324, - -0.014766, - 0.074392, - -0.015457, - -0.0098006, - 0.0060314, - 0.0041066, - 0.018543, - 0.0071118, - 0.017759, - -0.045042, - 0.0066184, - 0.11492, - 0.11142, - 0.0049969, - -0.024832, - 0.047567, - -0.098596, - -0.057002, - 0.010564, - 0.0077366, - 0.028466, - 0.0097249, - -0.020868, - 0.034192, - -0.12707, - 0.036543, - 0.022109, - -0.02961, - -0.041302, - -0.013137, - -0.051506, - -0.019523, - 0.019819, - -0.049573, - 0.015837, - -0.027023, - -0.032679, - -0.0050871, - 0.078773, - -0.044582, - 0.048528, - -0.041494, - -0.13751, - -0.045705, - -0.0044514, - -0.022026, - -0.017982, - 0.092254, - 0.017053, - -0.0007615, - 0.047693, - 0.09883, - -0.031174, - 0.0068674, - -0.024835, - -0.05954, - -0.11567, - 0.023975, - 0.046755, - 0.0081151, - -0.048639, - 0.0006469, - 0.044542, - -0.078204, - -0.052177, - -0.025066, - -0.044337, - -0.00073149, - -0.027987, - 0.018691, - -0.013615, - -0.0066653, - -0.0049207, - -0.0057828, - 0.011507, - 0.028347, - 0.0041154, - 0.019618, - -0.0012373, - -0.040523, - -0.0099314, - 0.080379, - 0.011007, - -0.026753, - -0.054208, - -0.038749, - -0.022018, - -0.080498, - 0.0038072, - 0.028503, - -0.0065578, - 0.038214, - -0.045904, - 0.0064436, - -0.026678, - 0.10624, - -0.11098, - -0.030787, - 0.090599, - -0.053746, - 0.0058502, - 0.02687, - -0.030313, - -0.059962, - 0.028272, - 0.024785, - 0.034191, - -0.049336, - 0.039946, - 0.043597, - 0.076115, - 0.034859, - -0.055398, - 0.057431, - 0.0071318, - -0.024674, - -0.061045, - -0.0049228, - -0.0028791, - -0.024854, - -0.047238, - 0.040169, - 0.03117, - 0.035013 - ], - "historic": [ - 0.014243, - -0.052796, - 0.039589, - 0.067229, - -0.012463, - -0.0047784, - 0.016338, - -0.083644, - 0.04168, - 0.0015436, - -0.0050685, - -0.084533, - 0.0057014, - 0.03091, - 0.040679, - 0.001218, - 0.053024, - -0.046619, - 0.05791, - -0.028817, - -0.0072113, - -0.0037267, - 0.0074433, - 0.086411, - -0.0070902, - 0.0015376, - -0.033847, - 0.043042, - 0.069049, - 0.027426, - 0.0036243, - 0.011711, - 0.010096, - -0.087485, - 0.011046, - 0.029795, - 0.020891, - 0.03922, - -0.02521, - 0.043769, - 0.021133, - -0.08383, - 0.0076303, - 0.030363, - 0.048973, - 0.031028, - -0.046245, - 0.036474, - -0.021121, - 0.034232, - -0.031693, - 0.019819, - -0.071592, - 0.023628, - 0.0243, - -0.0093715, - 0.033557, - -0.0020837, - -0.041101, - -0.019433, - 0.046261, - 0.024049, - 0.12838, - -0.091174, - 0.079054, - -0.026596, - -0.049124, - 0.056841, - 0.046399, - 0.035352, - 0.016805, - -0.003617, - 0.025872, - -0.029636, - 0.059818, - 0.011282, - -0.033676, - -0.05478, - 0.033169, - 0.038259, - 0.0010504, - 0.030303, - -0.026793, - 0.051388, - -0.033128, - -0.0034492, - -0.022044, - -0.030662, - 0.019596, - -0.016195, - -0.028644, - -0.015063, - -0.084304, - 0.0055633, - 0.035123, - 0.049576, - -0.026208, - 0.033613, - 0.06679, - -0.0033066, - 0.050731, - -0.025774, - -0.0308, - -0.0096969, - 0.0085715, - -0.12087, - 0.026199, - 0.031274, - -0.039637, - 0.02661, - 0.047379, - 0.04222, - 0.032936, - 0.036062, - -0.044502, - 0.0074228, - -0.0062134, - 0.017791, - -0.048458, - 0.033434, - -0.019899, - -0.04333, - 0.0051221, - -0.015938, - 0.027565, - 0.016825, - 0.0094104, - -0.04185, - 0.023117, - 0.069131, - 0.022311, - 0.00050518, - -0.0078365, - 0.054601, - -0.038375, - 0.015267, - 0.0099254, - 0.061464, - -0.03238, - -0.0475, - -0.023484, - 0.0012704, - -0.011876, - 0.046979, - -0.013906, - -0.027084, - 0.058134, - 0.020248, - -0.0022831, - 0.0090152, - -0.0030524, - 0.09827, - 0.042696, - -0.02617, - 0.02489, - 0.010505, - 0.031051, - 0.019892, - -0.0096819, - 0.036108, - -0.0098164, - 0.022963, - -0.035189, - 0.00054431, - -0.01715, - 0.049617, - 0.01797, - 0.0070542, - -0.0023776, - -0.0023519, - 0.041729, - -0.025079, - 0.036754, - 0.0053982, - 0.013694, - 0.037458, - 0.0062614, - 0.0061706, - -0.021235, - 0.042672, - 0.0048783, - 0.0039995, - 0.022447, - -0.034437, - 0.0084737, - -0.01911, - -0.017956, - 0.075067, - 0.023439, - -0.051155, - 0.029501, - 0.052183, - 0.040194, - -0.0024796, - -0.043345, - -0.010619, - 0.005521, - 0.015959, - 0.0026715, - -0.01456, - -0.12309, - 0.083968, - -0.043733, - -0.041957, - -0.0094594, - -0.06016, - -0.0079699, - 0.020696, - -0.020432, - -0.00091014, - 0.13484, - -0.0093827, - -0.024687, - 0.012448, - 0.040204, - 0.025901, - 0.020849, - 0.013548, - -0.042908, - -0.078418, - 0.023334, - 0.0089162, - 0.013311, - 0.085189, - 0.0055444, - -0.018354, - -0.0056361, - 0.071148, - -0.07095, - -0.059705, - -0.024585, - -0.073356, - -0.053139, - 0.018867, - 0.0029547, - -0.017602, - -0.021778, - 0.048155, - 0.033783, - 0.073441, - 0.058089, - 0.051606, - -0.0041314, - -0.011028, - -0.17253, - 0.018592, - -0.027617, - -0.0038765, - -0.0027109, - -0.013054, - -0.0088547, - -0.049769, - -0.0022212, - 0.013822, - -0.0371, - 0.041478, - -0.049971, - 0.0079559, - 0.042743, - 0.033501, - 0.012357, - -0.0045326, - -0.013733, - -0.047557, - 0.056985, - -0.026642, - 0.037497, - -0.024635, - 0.057216, - -0.015155, - 0.037798, - 0.075297, - -0.10602, - -0.03831, - 0.080676, - -0.11041, - 0.012626, - 0.02903, - -0.032317, - -0.045269, - 0.15471, - -0.020117, - -0.024895, - 0.011747, - 0.017346, - -0.034685, - -0.03672, - 0.0020138, - -0.017098, - 0.020279, - -0.0081828, - 0.065307, - 0.037187, - 0.013819, - 0.027539, - 0.0085236, - 0.018076, - -0.019462, - -0.01907, - 0.0091278 - ], - "snowfall": [ - 0.083747, - 0.030534, - -0.046572, - -0.057178, - 0.025185, - -0.06642, - -0.072077, - -0.069423, - 0.084573, - -0.015657, - 0.038268, - -0.030198, - 0.0082961, - 0.016397, - 0.0072166, - 0.040923, - 0.01336, - 0.0036739, - 0.038027, - 0.00092806, - 0.029248, - -0.095054, - -0.14568, - 0.095435, - 0.096024, - -0.019873, - -0.0083867, - 0.069758, - 0.056423, - 0.057589, - 0.029636, - -0.037559, - 0.039936, - -0.11382, - -0.0060356, - 0.056155, - -0.025622, - 0.068182, - -0.077558, - -0.05114, - 0.0523, - -0.078386, - 0.0068935, - -0.0020823, - 0.035109, - 0.056819, - 0.041669, - -0.038815, - -0.045825, - 0.070671, - 0.041468, - -0.01144, - -0.022331, - 0.037058, - -0.042133, - 0.036905, - 0.13412, - -0.0116, - -0.0038731, - -0.045283, - 0.037024, - -0.0091873, - 0.067744, - -0.0097758, - -0.022568, - -0.049452, - 0.053648, - 0.028931, - -0.025979, - 0.052482, - 0.0042174, - 0.03619, - 0.0058873, - 0.021906, - -0.060308, - -0.0074534, - -0.044727, - -0.0047225, - -0.019237, - 0.022226, - -0.021245, - -0.013965, - -0.034599, - 0.020267, - 0.028369, - 0.02478, - 0.0075243, - -0.019674, - 0.017886, - -0.089659, - -0.095886, - -0.028846, - -0.10369, - -0.015599, - -0.046769, - 0.040519, - 0.0048966, - 0.14576, - 0.064239, - 0.012731, - 0.060724, - -0.052361, - -0.037097, - 0.030825, - 0.025485, - -0.018351, - -0.048485, - 0.062777, - -0.018742, - 0.00041586, - 0.0074364, - 0.049623, - 0.069299, - 0.090674, - -0.023332, - -0.071025, - 0.061269, - 0.070722, - -0.041117, - 0.01861, - 0.01878, - -0.015444, - 0.0784, - 0.014518, - 0.063986, - -0.0041739, - 0.0036512, - -0.053711, - -0.066258, - 0.065206, - 0.040825, - -0.038604, - 0.00987, - 0.068989, - 0.059491, - -0.01426, - 0.064846, - 0.06784, - -0.050843, - -0.021279, - 0.082943, - -0.12513, - 0.013935, - -0.097642, - -0.0075282, - 0.046662, - -0.024949, - -0.053757, - -0.022329, - -0.023021, - 0.038436, - 0.055578, - 0.0074653, - -0.064136, - 0.0029938, - 0.011937, - 0.0097226, - 0.040266, - -0.074164, - 0.0045181, - 0.043018, - -0.031454, - -0.092567, - 0.018636, - -0.059412, - 0.028916, - 0.043759, - 0.080652, - 0.03339, - 0.099738, - 0.023422, - 0.011508, - 0.031306, - 0.01039, - 0.15893, - 0.061106, - 0.042333, - -0.058337, - -0.081609, - -0.020214, - -0.014521, - 0.031604, - 0.03518, - -0.086926, - -0.058822, - -0.0842, - -0.023961, - 0.094536, - 0.0068702, - -0.018653, - 0.075621, - -0.011615, - -0.023604, - -0.045187, - -0.033522, - -0.03863, - -0.088715, - -0.053892, - 0.012231, - -0.030507, - -0.15956, - -0.0064385, - -0.10102, - 0.027725, - 0.040168, - 0.12264, - -0.0036043, - 0.095551, - -0.083109, - -0.055419, - 0.086854, - -0.048306, - -0.057135, - 0.0019596, - 0.11927, - -0.022202, - 0.029536, - -0.10296, - 0.0093869, - -0.078258, - 0.030621, - -0.0060228, - 0.023533, - 0.08092, - 0.063571, - 0.11603, - -0.10758, - 0.059509, - -0.064768, - -0.033351, - 0.027278, - -0.082376, - -0.056936, - -0.020864, - -0.0055732, - 0.01373, - 0.16334, - -0.011554, - -0.010921, - -0.084724, - 0.065602, - 0.075069, - 0.017051, - -0.080527, - -0.058978, - 0.075297, - 0.089341, - -0.071697, - -0.048171, - -0.11044, - -0.027485, - 0.020801, - -0.00048361, - 0.084575, - 0.016596, - 0.055223, - 0.023597, - -0.012697, - 0.072765, - 0.094305, - 0.023995, - 0.019045, - -0.094556, - -0.065519, - -0.033578, - -0.035459, - -0.0089972, - 0.0036583, - 0.045329, - -0.067811, - -0.056003, - 0.076765, - -0.11451, - -0.0043007, - -0.022695, - -0.055984, - -0.094971, - -0.075825, - 0.0075929, - -0.052478, - 0.097856, - 0.015562, - 0.018889, - -0.049153, - 0.0012916, - 0.0095872, - -0.019738, - 0.096343, - -0.10835, - 0.0094636, - -0.085822, - -0.058851, - 0.025144, - -0.057527, - 0.041887, - -0.054372, - 0.040207, - -0.012094, - 0.058585, - -0.039883 - ], - "aerospace": [ - 0.027973, - -0.10043, - 0.047997, - -0.061985, - -0.022426, - 0.012709, - 0.015475, - -0.086779, - 0.10218, - 0.028742, - 0.020463, - -0.02283, - 0.027171, - 0.1068, - 0.029554, - 0.016114, - 0.06278, - 0.073866, - 0.033375, - 0.03992, - 0.050574, - 0.036998, - 0.033131, - 0.057971, - -0.022303, - -0.058293, - -0.0076779, - 0.029937, - -0.022233, - 0.0054189, - 0.068707, - -0.051042, - 0.073945, - -0.03661, - 0.056637, - 0.059604, - -0.049602, - 0.033408, - 0.065913, - 0.071448, - -0.092551, - -0.13499, - 0.078414, - -0.035509, - -0.078906, - -0.015469, - 0.0089979, - -0.01863, - -0.035404, - -0.0026797, - -0.016915, - 0.062486, - 0.027915, - -0.0018398, - -0.011219, - -0.036444, - -0.026982, - 0.000038694, - 0.0071622, - 0.036688, - 0.017529, - 0.044531, - 0.075771, - 0.019128, - 0.10934, - 0.025923, - -0.048761, - -0.042759, - 0.053282, - -0.020476, - 0.080732, - -0.0042234, - 0.078952, - 0.019695, - 0.0061081, - -0.047662, - 0.020523, - 0.0052125, - 0.041426, - -0.056771, - -0.018713, - 0.018277, - -0.064712, - -0.0041097, - -0.060711, - -0.012985, - -0.050955, - -0.0008476, - -0.008491, - -0.041793, - 0.023184, - 0.08529, - -0.088307, - -0.0050755, - -0.00057896, - 0.082287, - -0.053215, - -0.013027, - -0.0053175, - 0.013853, - -0.015482, - 0.032775, - 0.073001, - -0.067648, - 0.021475, - -0.076881, - -0.016699, - 0.08111, - 0.13273, - 0.025234, - 0.021021, - 0.1038, - 0.019805, - 0.076206, - 0.084031, - -0.025876, - -0.063179, - -0.01766, - 0.0026153, - 0.031703, - -0.0068974, - 0.012162, - -0.16973, - -0.030996, - 0.040746, - -0.0086205, - -0.009124, - -0.050736, - 0.0064066, - 0.069122, - -0.0095685, - 0.041731, - -0.012263, - -0.029265, - 0.038379, - -0.020488, - 0.059936, - 0.00085981, - -0.080408, - 0.067468, - 0.031833, - -0.011897, - -0.05863, - 0.057531, - -0.039683, - 0.01627, - -0.0032162, - -0.079951, - 0.015268, - -0.035065, - 0.10235, - 0.084278, - 0.0070837, - -0.049737, - 0.046858, - -0.010405, - -0.04018, - 0.0091186, - -0.0090666, - -0.019934, - 0.05626, - 0.00030612, - -0.075493, - -0.059021, - -0.076655, - -0.0077414, - -0.048592, - -0.024372, - 0.028605, - -0.059324, - 0.036701, - -0.040529, - -0.043703, - 0.0025779, - 0.0049069, - 0.043708, - -0.001629, - 0.027519, - -0.052907, - 0.070895, - 0.013205, - -0.034146, - -0.045764, - -0.018357, - 0.060547, - -0.025532, - -0.0055781, - 0.15011, - -0.010179, - -0.0087342, - -0.10986, - 0.04087, - 0.030097, - 0.0019831, - -0.0076671, - -0.023296, - -0.11137, - -0.0070075, - 0.044971, - -0.053482, - -0.12563, - -0.030338, - -0.0068512, - -0.025372, - 0.031154, - -0.0084498, - -0.039128, - 0.035591, - 0.038043, - 0.0017119, - 0.13121, - -0.0037974, - -0.039029, - -0.029272, - -0.030861, - 0.075932, - 0.0083112, - -0.026041, - -0.019438, - 0.010489, - 0.00065014, - -0.044688, - 0.012448, - 0.055821, - -0.074513, - 0.048744, - -0.015711, - 0.098428, - 0.0086535, - -0.0007333, - 0.016103, - 0.021523, - -0.032193, - -0.0052742, - 0.028221, - -0.048425, - -0.034298, - -0.02532, - -0.0063782, - -0.056131, - 0.013226, - -0.016864, - 0.033964, - -0.0042601, - -0.022342, - -0.033546, - -0.025332, - -0.026486, - 0.01079, - 0.02701, - 0.05387, - 0.03944, - -0.015501, - -0.020897, - -0.029482, - 0.066152, - 0.053703, - 0.029911, - -0.015241, - -0.055688, - 0.033516, - -0.00062273, - -0.038389, - 0.02079, - 0.038982, - -0.041655, - 0.067631, - 0.0036897, - 0.014775, - -0.061787, - 0.022211, - 0.060695, - -0.087952, - -0.022202, - 0.00057097, - -0.01916, - 0.047703, - 0.020802, - -0.017223, - -0.049372, - 0.12994, - 0.0030852, - 0.0016009, - 0.0079726, - -0.067327, - -0.067007, - -0.034677, - -0.055481, - -0.062879, - -0.04843, - 0.0042839, - 0.02402, - -0.0040516, - 0.013724, - -0.01879, - -0.038014, - -0.0075383, - 0.00076806, - 0.031045, - -0.026026 - ], - "pilgrimage": [ - -0.07057, - -0.024419, - 0.046683, - -0.043163, - -0.050784, - -0.042899, - -0.08586, - -0.078939, - 0.00041666, - -0.036995, - 0.014114, - -0.081178, - 0.0026435, - -0.021166, - -0.0039407, - -0.012212, - 0.11615, - -0.036879, - 0.0033271, - -0.0045428, - -0.051032, - 0.045784, - 0.0082394, - 0.063629, - 0.096772, - 0.022885, - -0.026815, - 0.041098, - -0.038402, - -0.026574, - -0.024655, - 0.060867, - -0.012256, - -0.055731, - -0.015098, - 0.057839, - 0.029011, - 0.051419, - 0.02219, - -0.00081579, - 0.043324, - -0.097674, - -0.0067488, - 0.041799, - 0.044859, - 0.019685, - -0.02689, - -0.043174, - -0.04474, - 0.043495, - 0.0048822, - -0.038162, - -0.091898, - -0.031882, - -0.070989, - -0.010255, - -0.0090962, - 0.023894, - -0.036109, - -0.055443, - 0.0092169, - 0.017581, - 0.068297, - 0.020151, - -0.0070456, - -0.020662, - 0.010521, - -0.029186, - 0.03734, - -0.00015698, - -0.012807, - 0.025704, - -0.036631, - 0.00045746, - -0.0095761, - -0.0067069, - 0.03629, - -0.036239, - 0.037247, - 0.00089578, - -0.045254, - 0.0079228, - -0.021573, - 0.011436, - -0.085759, - -0.013921, - 0.064962, - 0.0065682, - -0.011063, - -0.010247, - -0.0065565, - 0.10919, - -0.07132, - 0.0060418, - 0.02291, - 0.014655, - -0.033902, - 0.0061318, - 0.052377, - -0.0079065, - 0.012897, - 0.0063553, - 0.018494, - -0.040309, - -0.0059417, - -0.081078, - 0.0057145, - -0.015989, - -0.048175, - 0.043217, - 0.070592, - 0.0064414, - 0.067554, - -0.029108, - -0.0023501, - 0.041429, - 0.036155, - 0.033352, - -0.035088, - 0.018462, - -0.011641, - 0.022488, - -0.017817, - 0.044298, - 0.06228, - -0.0027222, - -0.019218, - -0.078776, - 0.058183, - 0.069512, - 0.037082, - 0.034433, - -0.088233, - 0.025825, - -0.012592, - 0.027339, - -0.048701, - 0.013543, - 0.021561, - -0.023723, - 0.033507, - -0.043005, - 0.034555, - 0.054237, - 0.03081, - 0.039484, - 0.015994, - 0.037153, - -0.02418, - -0.010494, - 0.015752, - 0.021815, - -0.08014, - -0.10489, - 0.075516, - 0.03355, - -0.088363, - 0.071786, - -0.040136, - -0.044829, - 0.011895, - -0.047883, - -0.012036, - -0.02288, - -0.039704, - 0.035563, - 0.09082, - 0.019483, - 0.039497, - 0.064988, - 0.0055138, - -0.000050612, - -0.030933, - 0.010195, - 0.074734, - 0.035253, - 0.008453, - -0.04825, - -0.079714, - 0.014189, - 0.05426, - -0.011058, - 0.00062931, - -0.011082, - -0.088627, - -0.034318, - 0.041859, - 0.073537, - -0.025235, - -0.10785, - 0.030617, - 0.040559, - -0.019974, - 0.10279, - -0.030862, - 0.059284, - -0.0093829, - 0.044492, - -0.0024676, - -0.0058589, - -0.12476, - 0.11778, - 0.043976, - -0.01645, - 0.018265, - 0.022325, - -0.073375, - 0.013284, - 0.096321, - 0.00069499, - 0.095045, - -0.033044, - -0.0090132, - -0.0029632, - 0.028285, - -0.023529, - 0.021909, - 0.028281, - -0.024556, - -0.045548, - -0.091204, - -0.068501, - 0.010156, - 0.082242, - -0.0032277, - -0.0076815, - 0.0075113, - 0.091431, - -0.040579, - -0.02401, - -0.023402, - -0.039386, - -0.011513, - -0.023218, - 0.024088, - -0.014643, - -0.0090511, - 0.030985, - 0.038677, - 0.013321, - 0.051442, - 0.0077765, - -0.029863, - -0.079124, - -0.00032937, - -0.0038196, - 0.025799, - -0.043466, - -0.056003, - 0.028734, - 0.037637, - -0.0051259, - -0.049987, - -0.041499, - -0.0023672, - 0.033311, - -0.04995, - -0.0098061, - 0.051665, - 0.09266, - 0.013825, - 0.021969, - -0.012867, - -0.012224, - 0.019032, - -0.05429, - 0.014475, - 0.021516, - 0.032535, - -0.040045, - 0.08605, - 0.08525, - -0.09462, - -0.024667, - -0.00355, - -0.027593, - 0.022211, - -0.031271, - -0.049463, - -0.019043, - 0.083813, - -0.026543, - -0.06428, - 0.016145, - -0.015781, - -0.030644, - -0.0070446, - -0.036853, - -0.055101, - 0.036656, - 0.068511, - 0.085783, - -0.048496, - 0.0081921, - 0.022272, - 0.051655, - 0.10378, - 0.037376, - -0.014301, - -0.0058733 - ], - "traveled": [ - -0.047138, - 0.051016, - 0.019297, - 0.024055, - 0.026884, - -0.013213, - -0.048324, - -0.10529, - 0.012894, - 0.0046715, - -0.040474, - -0.1608, - -0.038128, - -0.017571, - -0.0020335, - 0.01497, - 0.020224, - -0.041204, - 0.0070742, - 0.012406, - -0.020952, - 0.027809, - -0.00086982, - 0.084586, - -0.030578, - 0.069205, - 0.0022504, - 0.047072, - 0.047293, - 0.01104, - -0.079053, - 0.054632, - 0.043758, - 0.08506, - -0.013996, - -0.0094732, - 0.026723, - 0.032705, - -0.01064, - -0.029524, - -0.017151, - -0.014145, - 0.023987, - -0.046666, - 0.0010894, - -0.0077296, - 0.0361, - -0.030956, - 0.074125, - 0.046839, - 0.070614, - 0.052743, - -0.023299, - 0.013642, - -0.15407, - 0.009186, - 0.015112, - 0.0096922, - -0.042785, - -0.033601, - 0.014511, - 0.00041061, - 0.22758, - 0.020759, - -0.0081745, - 0.0063919, - 0.0024472, - -0.074672, - -0.050065, - 0.022536, - -0.012768, - -0.0062026, - 0.10507, - 0.0053202, - 0.044995, - 0.075807, - -0.022546, - 0.059067, - 0.011067, - -0.054672, - -0.019942, - 0.0030925, - -0.0080254, - 0.04728, - -0.0024336, - -0.067882, - 0.066537, - 0.036222, - 0.021653, - -0.019292, - -0.0000039995, - 0.040644, - -0.097032, - -0.029446, - 0.038884, - 0.050353, - -0.040551, - 0.01095, - 0.013714, - -0.008833, - 0.099895, - -0.022432, - 0.03811, - -0.016211, - 0.085457, - -0.14927, - -0.0015542, - -0.033224, - 0.056404, - 0.057772, - 0.071579, - 0.036124, - 0.050228, - -0.011315, - -0.024589, - 0.044033, - 0.06803, - 0.000084074, - 0.034274, - 0.016617, - 0.017192, - -0.0271, - -0.050338, - 0.0086966, - 0.039242, - -0.013932, - -0.039222, - -0.073781, - 0.038359, - -0.010444, - 0.052554, - -0.0081688, - 0.024448, - -0.038077, - -0.0085129, - 0.014543, - -0.0019763, - 0.16056, - 0.039023, - -0.004617, - -0.019598, - -0.050163, - -0.029377, - 0.016253, - -0.040212, - 0.048215, - -0.026822, - 0.017727, - -0.016046, - -0.10158, - 0.082037, - -0.018679, - -0.076691, - -0.053107, - 0.0077741, - 0.0069047, - -0.040578, - 0.023563, - -0.035078, - -0.056537, - 0.055542, - 0.026916, - 0.032249, - 0.0082538, - 0.01071, - 0.015616, - 0.04127, - -0.05807, - 0.062885, - -0.020893, - 0.019142, - -0.0037341, - -0.030775, - 0.032556, - 0.010703, - 0.019847, - 0.012987, - -0.0042074, - -0.035186, - 0.10258, - 0.00089294, - 0.029993, - 0.017737, - 0.013297, - -0.050419, - 0.0041597, - -0.0065746, - 0.14258, - 0.015446, - -0.03283, - 0.076612, - 0.018545, - -0.042651, - 0.028267, - -0.01214, - 0.056874, - 0.022698, - 0.05211, - 0.031665, - -0.021296, - -0.045806, - 0.0068229, - 0.072254, - 0.017361, - 0.033765, - -0.0082528, - -0.033355, - 0.012032, - 0.077084, - -0.086332, - 0.03071, - -0.064859, - 0.049306, - -0.011655, - -0.030093, - 0.0087717, - 0.03591, - -0.10036, - 0.042586, - -0.047752, - -0.047618, - -0.018604, - -0.025877, - 0.10505, - -0.036743, - 0.035754, - 0.0021204, - 0.11154, - -0.04011, - -0.021632, - -0.013991, - -0.025953, - -0.061928, - -0.039345, - -0.061516, - -0.0025338, - 0.031757, - 0.030539, - -0.042788, - 0.034478, - 0.20084, - 0.0078782, - 0.063123, - -0.072808, - -0.054383, - 0.0038216, - 0.080021, - -0.027521, - 0.017656, - -0.019439, - 0.084139, - 0.0062895, - 0.01538, - 0.018129, - -0.077443, - -0.001273, - -0.070578, - 0.021695, - -0.022034, - 0.031754, - 0.0086599, - 0.033208, - -0.06888, - 0.036671, - 0.029779, - -0.0010345, - 0.063464, - 0.033865, - -0.0198, - 0.012607, - -0.050944, - 0.057863, - -0.11219, - 0.020765, - -0.040489, - -0.027377, - -0.07343, - -0.05518, - -0.032473, - 0.042626, - -0.13125, - 0.018261, - -0.059041, - -0.034274, - -0.0073262, - -0.028631, - -0.022917, - -0.088059, - -0.045447, - 0.033561, - 0.04864, - 0.024086, - -0.047182, - -0.05387, - 0.035463, - 0.0097547, - 0.038688, - 0.0012283, - 0.053667, - -0.088693 - ], - "world": [ - -0.0047459, - -0.092961, - 0.052777, - 0.011516, - -0.039468, - -0.033147, - -0.023106, - -0.087627, - 0.024206, - -0.016763, - -0.022554, - -0.06548, - 0.022516, - 0.0044563, - 0.054897, - -0.0034568, - 0.15428, - -0.027899, - 0.072612, - -0.036677, - -0.0383, - 0.045982, - 0.064977, - 0.1047, - -0.0072832, - 0.0030149, - 0.020841, - -0.0091374, - -0.057005, - 0.0010511, - -0.02876, - 0.075473, - -0.008821, - -0.050192, - 0.042246, - -0.0010239, - -0.0062379, - -0.0098673, - 0.0018559, - -0.0255, - -0.066317, - -0.11061, - -0.024841, - 0.00012896, - 0.0016791, - -0.074101, - -0.028676, - 0.00043262, - -0.042598, - -0.001745, - -0.030063, - -0.027274, - -0.013, - 0.033078, - -0.042045, - 0.047461, - 0.024615, - -0.014365, - -0.046395, - -0.035466, - -0.023313, - -0.013696, - 0.16008, - -0.00061047, - 0.038365, - -0.038766, - -0.02622, - 0.022786, - 0.067729, - -0.0011194, - 0.025718, - -0.0083876, - -0.0032259, - -0.019828, - 0.0082707, - 0.0068607, - 0.013704, - -0.024771, - 0.027432, - 0.010881, - -0.0092195, - 0.048034, - -0.065769, - 0.10353, - 0.032786, - -0.032276, - -0.027723, - -0.06313, - -0.0090827, - 0.024343, - -0.016062, - 0.10755, - -0.096337, - 0.058347, - -0.0087769, - 0.091181, - 0.070674, - -0.085684, - 0.066696, - 0.011445, - 0.014666, - 0.0023464, - 0.012027, - -0.060069, - 0.032292, - -0.12801, - -0.02867, - 0.060913, - 0.010563, - -0.0046, - -0.026312, - 0.056528, - 0.049817, - 0.067828, - -0.041955, - -0.016508, - -0.044009, - -0.028091, - -0.071259, - -0.0037985, - -0.0053435, - -0.051636, - -0.067259, - 0.037539, - 0.025366, - -0.034459, - -0.045358, - -0.16021, - 0.010402, - 0.079293, - -0.048838, - 0.027884, - 0.0065728, - -0.0066548, - 0.023531, - -0.049734, - 0.00059009, - 0.032802, - -0.027176, - 0.017613, - -0.0059133, - -0.037224, - 0.044602, - 0.062501, - 0.040561, - 0.043509, - -0.011594, - -0.044847, - 0.032987, - -0.01928, - 0.072658, - 0.09762, - -0.066108, - -0.0012422, - -0.020487, - -0.037905, - -0.005412, - 0.054791, - 0.059143, - -0.076133, - 0.048817, - -0.015362, - -0.0049689, - 0.033309, - -0.035559, - 0.014217, - -0.042018, - -0.014454, - 0.018942, - 0.018028, - -0.13435, - 0.03932, - -0.052764, - 0.021355, - -0.050885, - 0.11134, - -0.021699, - 0.05696, - 0.0021976, - 0.079497, - 0.034488, - 0.051502, - 0.000787, - -0.067267, - -0.043308, - -0.056176, - 0.0113, - 0.11958, - 0.0015138, - 0.023544, - 0.0021026, - 0.041203, - -0.022238, - -0.042957, - -0.016336, - -0.011652, - -0.057411, - 0.032993, - 0.0026972, - 0.050245, - -0.16174, - 0.03387, - -0.022341, - -0.0082196, - -0.010138, - 0.02374, - 0.044575, - -0.083707, - 0.045156, - 0.016026, - 0.092064, - -0.091529, - -0.038513, - -0.017758, - 0.010752, - -0.068232, - 0.028376, - -0.079225, - 0.049179, - -0.062113, - -0.026689, - -0.022253, - -0.073449, - 0.12953, - -0.097765, - 0.037213, - 0.043031, - 0.059838, - -0.015159, - -0.075483, - -0.018332, - -0.054296, - -0.15682, - 0.00095701, - -0.029218, - 0.0048363, - 0.0025993, - -0.0051995, - 0.072192, - -0.05591, - 0.072027, - 0.036569, - 0.058034, - 0.041876, - 0.019816, - 0.012152, - -0.0059431, - 0.028012, - 0.019574, - -0.081952, - 0.086474, - -0.016176, - 0.016697, - 0.025059, - -0.010003, - 0.11312, - -0.032294, - 0.053844, - 0.034959, - 0.022346, - 0.0052616, - 0.02, - 0.052205, - -0.13243, - -0.062931, - -0.00058479, - 0.096934, - 0.033708, - 0.085685, - 0.0032118, - -0.029933, - 0.088778, - -0.11982, - -0.035707, - 0.081766, - -0.043926, - -0.015376, - -0.028442, - 0.0097539, - 0.0049926, - 0.025477, - 0.040956, - 0.00096569, - -0.047978, - -0.043981, - -0.061701, - -0.05147, - -0.11152, - 0.0067209, - 0.070325, - 0.023125, - 0.041836, - -0.029888, - -0.041372, - -0.035772, - -0.0081928, - 0.08436, - 0.06977, - -0.0092536, - 0.018958 - ], - "precipitation": [ - 0.013794, - 0.03322, - -0.01683, - -0.055531, - 0.056205, - -0.040551, - -0.0063949, - -0.034043, - 0.010419, - -0.0078985, - -0.00028082, - 0.0094903, - -0.003009, - 0.01889, - 0.040482, - -0.00077279, - 0.01925, - 0.026979, - 0.00418, - 0.0059116, - 0.029787, - -0.020422, - -0.037016, - 0.068125, - 0.023806, - -0.039536, - -0.020332, - -0.021996, - 0.029375, - 0.029243, - 0.03685, - 0.0067177, - 0.024626, - -0.046909, - -0.0081784, - 0.039605, - -0.026272, - 0.017989, - -0.030608, - 0.015238, - 0.034802, - -0.069351, - 0.012976, - -0.012739, - -0.0075356, - -0.016906, - 0.057892, - -0.0027228, - -0.022291, - 0.017942, - -0.0073052, - 0.019574, - 0.00533, - 0.0065899, - -0.048558, - 0.0028944, - 0.08242, - -0.00034248, - 0.028754, - 0.0040297, - 0.029124, - 0.037532, - 0.028169, - -0.044499, - -0.020725, - -0.048832, - 0.063383, - 0.039564, - 0.029493, - 0.034663, - 0.0046073, - 0.040402, - 0.006862, - -0.0053082, - -0.04479, - -0.055754, - -0.031196, - -0.0044949, - -0.0014144, - -0.00032338, - -0.049698, - -0.031279, - 0.0064617, - 0.030887, - 0.029276, - -0.007632, - 0.031024, - 0.0048448, - -0.016113, - -0.013353, - -0.027799, - -0.01369, - -0.051177, - -0.0065299, - -0.062615, - 0.034015, - 0.013184, - 0.030846, - -0.01731, - 0.0049926, - 0.026067, - -0.058433, - 0.0059704, - -0.026111, - 0.040106, - -0.025952, - 0.0075631, - -0.0014218, - -0.0047939, - 0.01604, - 0.028657, - 0.02329, - 0.023229, - -0.021453, - -0.0032361, - -0.069981, - 0.037826, - 0.016707, - -0.0087994, - 0.014908, - 0.0012456, - 0.020999, - 0.072286, - -0.028301, - 0.052497, - -0.0078094, - -0.012226, - -0.042925, - -0.078395, - 0.035802, - 0.024678, - -0.040367, - -0.019749, - 0.021137, - 0.019207, - 0.053302, - 0.055373, - 0.016188, - 0.014899, - -0.016318, - 0.049009, - -0.050102, - -0.0074785, - -0.032128, - -0.012945, - 0.033376, - -0.025133, - -0.0077663, - -0.023903, - -0.0024907, - 0.014803, - 0.016271, - 0.023468, - -0.051121, - 0.0050712, - 0.03064, - -0.049963, - 0.010228, - -0.026969, - 0.024862, - 0.0082964, - -0.0014576, - -0.039902, - -0.011848, - -0.023152, - 0.01416, - -0.037976, - 0.031511, - 0.01746, - 0.041462, - 0.0091593, - 0.02601, - 0.017412, - -0.025092, - 0.041234, - 0.063251, - 0.01148, - -0.024976, - -0.030768, - -0.0061971, - -0.004082, - 0.01141, - 0.020694, - -0.0337, - -0.03161, - -0.052847, - 0.019152, - 0.076269, - 0.0077107, - -0.012059, - 0.046858, - -0.016335, - -0.02045, - -0.0010566, - -0.019284, - -0.024468, - -0.0063024, - -0.0056892, - 0.001401, - -0.0029458, - -0.10621, - -0.0018899, - -0.040784, - 0.01275, - 0.017933, - 0.07085, - -0.01011, - 0.053195, - -0.036204, - -0.0090471, - 0.051843, - -0.055748, - -0.0066446, - -0.019899, - 0.041577, - 0.012498, - 0.0044636, - -0.027991, - -0.00095823, - -0.069239, - -0.039804, - -0.0054908, - -0.0028964, - 0.041864, - 0.035077, - 0.068104, - 0.020757, - 0.032387, - 0.031862, - -0.033645, - 0.040947, - -0.032202, - -0.036999, - -0.02755, - 0.021138, - 0.061673, - 0.050576, - 0.0050649, - 0.0047684, - -0.050109, - 0.038057, - 0.026194, - 0.016785, - -0.011071, - -0.05319, - -0.02112, - 0.023376, - -0.018895, - 0.022363, - -0.0499, - 0.028578, - -0.042422, - 0.064478, - 0.038814, - 0.0093207, - 0.031873, - 0.029758, - 0.0023679, - 0.040969, - 0.0033883, - 0.014876, - 0.04561, - -0.028501, - -0.031304, - 0.0047994, - -0.068972, - -0.028783, - 0.0097313, - -0.010356, - -0.0091722, - -0.016064, - 0.034981, - -0.076197, - -0.0091808, - -0.034905, - -0.012465, - -0.035735, - -0.030699, - -0.010184, - -0.042375, - 0.050155, - -0.018913, - -0.0053964, - 0.0013242, - -0.013617, - 0.0054167, - -0.0021771, - 0.05935, - -0.031032, - 0.016258, - -0.041087, - 0.013947, - -0.011829, - -0.0071723, - 0.015125, - -0.034305, - -0.033402, - -0.011986, - 0.0343, - -0.00076198 - ], - "sightseeing": [ - 0.020184, - -0.023887, - 0.039897, - 0.033316, - 0.0024431, - -0.011584, - -0.012718, - -0.071971, - 0.010293, - 0.028182, - 0.0059272, - -0.040341, - -0.016386, - -0.0062194, - 0.010031, - -0.0098482, - -0.0060952, - -0.060975, - -0.0030794, - -0.01252, - -0.019973, - 0.0081103, - -0.042797, - 0.056602, - 0.028408, - 0.061458, - -0.0060039, - 0.041494, - -0.014061, - -0.025887, - -0.031894, - -0.0040633, - -0.0079676, - -0.076835, - 0.055279, - 0.0085987, - 0.011284, - 0.034743, - 0.041315, - -0.02286, - 0.034041, - -0.069271, - 0.013696, - 0.032489, - 0.069694, - -0.021385, - 0.020833, - -0.012003, - -0.019847, - 0.047369, - -0.016527, - -0.028222, - -0.034272, - -0.062007, - -0.030156, - -0.030002, - -0.0088878, - -0.019924, - -0.011565, - -0.0062493, - 0.030064, - 0.042374, - 0.063781, - 0.020191, - -0.017544, - 0.0055359, - -0.078923, - 0.0076258, - -0.021982, - 0.030261, - 0.053433, - 0.016402, - 0.074039, - 0.052911, - 0.00034232, - -0.050816, - 0.007669, - -0.04377, - -0.049195, - 0.0028137, - -0.026951, - -0.027677, - 0.016129, - 0.015964, - -0.034944, - -0.05192, - 0.070123, - 0.016081, - 0.026713, - -0.007346, - -0.011813, - 0.019494, - -0.074102, - -0.0066947, - 0.054061, - 0.027696, - -0.0034137, - 0.024139, - 0.0044959, - -0.019534, - 0.069668, - 0.054963, - -0.017538, - 0.0029662, - 0.035358, - -0.042073, - 0.022255, - 0.0075365, - -0.027875, - -0.0051992, - 0.050313, - 0.049764, - 0.045493, - 0.093462, - 0.020279, - 0.024768, - -0.049201, - 0.0090304, - -0.035854, - 0.066446, - 0.043174, - 0.014412, - -0.052446, - -0.014797, - 0.046358, - -0.037288, - 0.026986, - -0.017982, - -0.026799, - 0.093667, - 0.024299, - 0.0308, - -0.0088157, - 0.020765, - -0.073245, - 0.029606, - -0.005987, - 0.020333, - -0.035046, - 0.015669, - 0.00054065, - -0.0082392, - -0.020881, - 0.076224, - 0.028991, - 0.043395, - 0.010594, - -0.048701, - 0.010226, - -0.03081, - 0.028773, - 0.047437, - -0.050363, - -0.058802, - 0.00067307, - 0.069846, - -0.061759, - 0.057714, - -0.022479, - -0.046698, - 0.046973, - 0.0046726, - -0.035436, - 0.03273, - 0.012723, - 0.091248, - 0.042293, - -0.067807, - -0.0005789, - 0.053684, - 0.042952, - 0.032895, - 0.022092, - 0.040076, - 0.018408, - 0.04901, - -0.049321, - 0.002784, - -0.08234, - 0.036137, - -0.000043881, - -0.032784, - 0.016992, - -0.088681, - 0.038638, - -0.045665, - -0.011776, - 0.076871, - 0.011502, - -0.037719, - 0.017905, - 0.033706, - 0.0029851, - 0.028678, - -0.025834, - 0.044108, - -0.018996, - -0.0063364, - 0.035537, - -0.028488, - -0.11522, - 0.083035, - -0.028914, - -0.050757, - 0.042594, - 0.047295, - -0.1134, - 0.036274, - 0.054665, - -0.0052127, - 0.058016, - -0.0023597, - 0.012734, - -0.054003, - -0.018626, - 0.0078821, - -0.01578, - -0.054434, - -0.015349, - -0.05595, - -0.016023, - -0.0088994, - -0.036414, - 0.059611, - 0.042003, - 0.029553, - -0.014546, - 0.066215, - 0.0026098, - 0.0054486, - -0.042091, - -0.03897, - 0.0010327, - 0.03907, - 0.0042005, - -0.020053, - 0.0077883, - 0.0015864, - 0.0026352, - 0.0017605, - 0.035848, - 0.0020236, - 0.006732, - -0.08083, - -0.060324, - 0.020561, - 0.035979, - -0.011161, - -0.0079572, - 0.025863, - 0.040487, - -0.011034, - -0.066881, - 0.035373, - 0.0052885, - -0.020947, - -0.014954, - 0.038433, - -0.028537, - 0.1245, - -0.010878, - 0.064052, - -0.016345, - 0.050247, - -0.012532, - 0.034475, - -0.036652, - 0.023877, - 0.029721, - 0.045459, - 0.018489, - 0.048905, - -0.086667, - -0.039826, - 0.0097017, - -0.05205, - 0.0077252, - 0.0060154, - 0.00034655, - -0.069958, - 0.0595, - -0.0082846, - -0.00047467, - 0.038832, - 0.020926, - -0.015424, - 0.015999, - -0.010772, - -0.0073991, - -0.017369, - -0.0030374, - 0.078855, - -0.020004, - -0.022882, - 0.05739, - 0.045507, - 0.040286, - 0.035467, - 0.0039912, - -0.025533 - ], - "parent-child": [ - -0.012641, - -0.00041116, - -0.0071697, - 0.031659, - -0.070922, - 0.072403, - 0.02788, - -0.058763, - 0.039906, - 0.022122, - 0.046127, - -0.031863, - 0.04096, - 0.028895, - -0.062457, - -0.015184, - 0.063881, - -0.0047336, - 0.046426, - -0.0078632, - -0.032516, - -0.030092, - 0.014773, - 0.063204, - 0.034984, - 0.024636, - -0.024621, - 0.040313, - -0.023274, - -0.017601, - -0.01966, - -0.0057345, - 0.0053914, - -0.065737, - 0.04159, - 0.012976, - -0.012855, - -0.063967, - 0.072571, - -0.017436, - -0.020555, - -0.10308, - -0.0029151, - -0.023703, - -0.018657, - -0.036273, - 0.010876, - 0.065286, - -0.011007, - -0.031597, - 0.015942, - 0.025983, - 0.047865, - 0.013103, - 0.022992, - -0.064442, - -0.033498, - -0.051902, - -0.029683, - -0.05363, - -0.037562, - -0.093576, - 0.041605, - -0.027518, - 0.045572, - -0.032873, - 0.041398, - -0.010252, - -0.0028992, - -0.033621, - -0.036551, - -0.015454, - -0.001861, - 0.0035991, - 0.038618, - -0.046046, - 0.02933, - -0.041208, - 0.042531, - -0.037448, - 0.003141, - -0.010294, - -0.05526, - 0.022898, - -0.037282, - -0.056749, - 0.04422, - -0.0044577, - -0.0095382, - 0.0053791, - 0.04378, - 0.049498, - -0.069221, - 0.028772, - -0.0081509, - 0.044959, - 0.022578, - 0.069336, - 0.040382, - -0.0042127, - 0.057938, - -0.017015, - -0.059016, - -0.065554, - -0.027255, - -0.0087542, - 0.020923, - 0.009149, - 0.0048584, - -0.043604, - 0.0073242, - 0.0277, - 0.005006, - 0.0062628, - -0.044051, - -0.03862, - -0.029153, - 0.034283, - -0.035087, - 0.037722, - -0.0060518, - 0.038841, - 0.1236, - 0.03656, - 0.034914, - -0.041042, - 0.03688, - -0.042889, - 0.01032, - 0.021695, - 0.0022982, - -0.013856, - -0.032296, - -0.016167, - -0.042747, - 0.032352, - -0.040951, - -0.015003, - 0.017799, - 0.0042221, - 0.025379, - -0.00032622, - -0.021806, - -0.011063, - 0.026742, - -0.0097466, - -0.0052741, - -0.0093988, - -0.010281, - 0.0089581, - 0.029278, - 0.082346, - -0.0026591, - -0.026317, - -0.025634, - 0.042607, - 0.04885, - 0.06552, - 0.10507, - 0.044162, - 0.02125, - 0.029492, - -0.066171, - 0.0038056, - 0.0030057, - 0.069536, - 0.047096, - 0.050748, - -0.004969, - -0.092624, - 0.0026484, - -0.009901, - -0.066254, - 0.035177, - -0.022158, - 0.029465, - 0.015135, - 0.055288, - -0.017983, - -0.064124, - 0.054254, - -0.09782, - -0.00094605, - 0.0098335, - 0.033393, - -0.046237, - 0.0069763, - 0.12533, - 0.061177, - 0.0084119, - -0.023529, - -0.0063732, - -0.011008, - -0.040118, - -0.012114, - -0.040415, - 0.044352, - 0.044487, - 0.001401, - -0.032677, - -0.093801, - 0.022888, - -0.030941, - -0.029093, - 0.0082505, - 0.05526, - -0.027483, - -0.047834, - 0.029631, - 0.0057479, - 0.092892, - 0.019984, - -0.016939, - 0.012786, - 0.0371, - 0.007915, - -0.049895, - -0.016518, - -0.0046196, - -0.053702, - 0.053844, - 0.019507, - 0.01437, - 0.060945, - -0.02673, - -0.044659, - -0.003599, - 0.004427, - 0.0086343, - -0.09938, - 0.025743, - -0.020831, - -0.016101, - -0.0094416, - -0.044934, - 0.083106, - 0.0011141, - 0.0076963, - -0.052714, - -0.014815, - 0.01979, - -0.027199, - -0.0085835, - -0.04428, - -0.039412, - 0.03716, - 0.013149, - -0.043692, - 0.0056382, - 0.0091176, - -0.010853, - -0.033169, - -0.015334, - -0.019904, - -0.0036017, - -0.031008, - -0.018681, - -0.013788, - 0.029768, - -0.013214, - 0.027888, - 0.025088, - 0.042888, - -0.036032, - 0.011058, - -0.0059512, - 0.024519, - 0.046188, - 0.010407, - 0.035537, - 0.034502, - 0.071061, - -0.088918, - -0.022226, - -0.0030423, - -0.033896, - -0.013351, - -0.022402, - 0.0075253, - 0.060056, - 0.14053, - -0.097325, - 0.038757, - -0.023018, - -0.027693, - 0.067028, - -0.064569, - 0.014511, - -0.030419, - -0.0059808, - 0.013174, - -0.024192, - -0.026732, - -0.051168, - 0.011499, - 0.017359, - 0.067536, - 0.044132, - 0.017407, - 0.028553 - ], - "money-making": [ - 0.031003, - -0.022368, - -0.0012995, - -0.016517, - -0.11155, - 0.002789, - -0.017986, - -0.044577, - 0.0030074, - 0.010466, - -0.010021, - -0.0057605, - -0.030979, - -0.05087, - -0.048373, - 0.00056362, - 0.037759, - -0.041972, - 0.00031632, - 0.019291, - 0.01017, - 0.053983, - -0.005933, - 0.012232, - 0.017101, - -0.0094, - 0.078371, - 0.02226, - 0.010122, - 0.011004, - -0.037428, - -0.075804, - -0.065219, - -0.065503, - 0.050268, - 0.017077, - 0.023757, - -0.038406, - 0.0096018, - 0.01279, - -0.0069179, - -0.086566, - -0.0068542, - 0.018214, - 0.013806, - -0.035939, - 0.073538, - -0.0099016, - -0.025242, - -0.012976, - -0.019864, - 0.015899, - -0.011343, - -0.030388, - -0.0032951, - 0.042415, - -0.05691, - -0.0073161, - 0.018283, - -0.0093053, - -0.0067225, - 0.042097, - 0.1057, - 0.019841, - -0.027053, - -0.0080053, - 0.030079, - 0.026697, - 0.020557, - -0.030836, - 0.0076977, - -0.0015751, - -0.0073174, - 0.015943, - 0.024111, - 0.036054, - 0.0236, - 0.00048785, - -0.014336, - -0.0043226, - 0.0044537, - 0.00044136, - -0.079021, - 0.067689, - -0.021251, - -0.021823, - -0.0025316, - 0.032517, - 0.01739, - -0.0051966, - -0.019193, - 0.029568, - -0.062587, - 0.018852, - 0.022254, - 0.022884, - -0.017091, - -0.025503, - 0.00095437, - 0.051969, - -0.055481, - 0.0070047, - -0.030323, - -0.035248, - -0.03556, - -0.046616, - 0.015924, - -0.014063, - -0.019343, - 0.010426, - 0.0082946, - 0.047716, - 0.046734, - 0.031233, - 0.018838, - 0.01131, - -0.0013092, - -0.021684, - -0.038856, - -0.0095377, - -0.041879, - -0.02917, - -0.030833, - -0.023966, - 0.11096, - 0.0011359, - -0.0080849, - -0.069348, - -0.017289, - 0.067943, - 0.0064308, - -0.012555, - 0.025946, - -0.0083272, - 0.017728, - -0.048275, - -0.0028514, - 0.027222, - 0.00012288, - 0.036536, - 0.0092557, - -0.030558, - -0.018314, - 0.021394, - 0.022435, - -0.0031862, - 0.040257, - -0.043307, - -0.032129, - 0.015603, - 0.050185, - 0.063241, - -0.042692, - -0.082962, - -0.0066292, - 0.0013141, - 0.02471, - 0.044046, - 0.0073967, - -0.00027163, - 0.054707, - 0.0093476, - -0.065002, - 0.081742, - 0.000041181, - 0.021395, - 0.029431, - 0.013718, - -0.031088, - 0.048945, - 0.049227, - 0.0059555, - -0.014806, - 0.025351, - 0.00074158, - 0.053314, - -0.034782, - 0.011588, - -0.018654, - 0.0023446, - 0.015663, - -0.043366, - -0.014507, - -0.039365, - -0.028259, - -0.077213, - -0.011799, - 0.10678, - -0.014957, - -0.0018391, - -0.021147, - 0.033878, - 0.041549, - 0.0080888, - -0.00049676, - -0.0012253, - 0.0026613, - 0.013545, - -0.027662, - 0.0076997, - -0.087236, - 0.055726, - 0.021687, - -0.042029, - 0.055613, - 0.039204, - 0.01486, - -0.0087321, - 0.017379, - -0.004723, - 0.10036, - 0.0035935, - 0.0075258, - -0.0010056, - 0.012233, - 0.0097355, - -0.025442, - 0.0035607, - -0.022819, - -0.032759, - -0.015632, - -0.033696, - -0.033172, - 0.047185, - -0.022728, - -0.017855, - 0.022542, - 0.031208, - 0.00075919, - -0.029178, - -0.040361, - -0.037553, - -0.026718, - -0.024984, - 0.027413, - 0.039081, - -0.016082, - -0.066795, - -0.032172, - -0.0077548, - 0.011875, - 0.0038072, - 0.016328, - 0.019757, - -0.10123, - 0.0071194, - -0.0097424, - 0.011281, - -0.009079, - 0.054247, - -0.021008, - 0.0024563, - -0.012477, - 0.013007, - -0.00909, - 0.039426, - -0.070756, - -0.0026963, - 0.031186, - 0.053683, - 0.041764, - 0.049045, - -0.0016744, - 0.0077635, - 0.024807, - 0.10104, - -0.014684, - 0.006144, - 0.016641, - 0.040286, - 0.010943, - 0.031606, - -0.062202, - -0.033963, - 0.043338, - -0.018025, - 0.018739, - 0.020073, - -0.010237, - -0.017278, - 0.11283, - 0.0079649, - 0.012087, - -0.047664, - 0.016201, - 0.014246, - 0.030745, - -0.0048559, - -0.035711, - 0.041926, - 0.0091209, - 0.0020489, - -0.038998, - 0.028933, - -0.030775, - 0.014169, - -0.027048, - 0.000087825, - -0.062938, - -0.0232 - ], - "Fashion": [ - -0.056471, - -0.055272, - 0.021212, - 0.040612, - -0.0071426, - 0.0066133, - 0.036437, - -0.043162, - 0.080477, - -0.044545, - 0.024583, - -0.052546, - -0.11691, - -0.019092, - -0.013337, - 0.030243, - 0.075972, - 0.079584, - 0.047745, - 0.010141, - 0.038234, - -0.0062674, - -0.034859, - 0.036891, - 0.037262, - 0.056499, - 0.03976, - 0.12299, - 0.013351, - -0.018337, - -0.0026949, - -0.07536, - 0.09839, - 0.015379, - 0.097524, - -0.015181, - 0.061616, - 0.068779, - -0.069616, - 0.0644, - -0.028251, - 0.10464, - -0.044942, - -0.024576, - -0.00034443, - 0.036844, - 0.040255, - -0.052669, - -0.02417, - -0.089973, - 0.05236, - -0.088794, - -0.03565, - 0.044224, - -0.030867, - -0.087854, - -0.027112, - -0.013168, - -0.13566, - -0.02647, - -0.032837, - -0.034493, - -0.083094, - -0.013023, - 0.03405, - 0.054094, - -0.017217, - 0.041621, - 0.014647, - -0.023123, - -0.040162, - -0.041565, - -0.081785, - -0.06711, - 0.032106, - -0.014922, - 0.082588, - -0.11028, - 0.017157, - 0.030203, - 0.012027, - 0.01582, - 0.023962, - 0.008937, - 0.030984, - -0.018131, - -0.084409, - -0.11042, - 0.014467, - -0.037043, - 0.069931, - -0.018294, - -0.057675, - 0.00084935, - 0.0025333, - 0.13301, - -0.060387, - -0.028705, - -0.019661, - -0.01713, - 0.012717, - 0.062034, - 0.0089901, - 0.016014, - -0.068696, - -0.18255, - 0.0094504, - 0.014411, - 0.073091, - 0.037997, - -0.019873, - 0.038463, - 0.051551, - -0.0058169, - -0.043739, - -0.089773, - 0.029628, - 0.0078917, - 0.09847, - 0.044566, - -0.011386, - 0.011983, - -0.008843, - -0.026135, - 0.040261, - 0.031962, - -0.063131, - -0.094275, - 0.12189, - 0.23937, - 0.002397, - 0.040823, - 0.071728, - -0.048211, - 0.042325, - 0.083402, - -0.073178, - 0.01431, - 0.030177, - -0.097405, - 0.099892, - -0.03047, - 0.034455, - 0.0045669, - -0.038482, - -0.017287, - -0.056273, - -0.066285, - 0.060974, - -0.03888, - 0.092532, - 0.070914, - -0.02458, - -0.030782, - -0.070378, - 0.026258, - 0.028383, - 0.053944, - -0.0037581, - 0.035236, - -0.0054841, - -0.084183, - -0.092518, - 0.13371, - 0.010978, - 0.0072217, - -0.015018, - -0.072564, - -0.02921, - 0.075643, - 0.083681, - -0.034172, - 0.049247, - -0.13893, - -0.026426, - 0.043556, - -0.045179, - 0.025588, - -0.00062865, - -0.017944, - -0.0030347, - -0.021402, - -0.034179, - -0.013792, - -0.016133, - 0.18031, - -0.043619, - 0.18517, - -0.055932, - 0.065482, - -0.029301, - 0.074037, - -0.050019, - -0.09311, - 0.026263, - 0.067012, - 0.02761, - 0.014725, - 0.095422, - -0.010191, - 0.0038337, - 0.15077, - 0.024798, - -0.021375, - 0.026905, - 0.11443, - -0.031033, - -0.1017, - 0.050224, - 0.035207, - 0.15737, - -0.010774, - -0.062396, - -0.010912, - 0.0463, - -0.0030676, - -0.060395, - 0.003632, - 0.01199, - -0.030915, - -0.088026, - -0.047902, - -0.031582, - 0.086977, - -0.029933, - 0.031579, - 0.0043323, - 0.049381, - 0.016552, - 0.00077093, - 0.016271, - -0.066639, - 0.0012676, - -0.044842, - 0.034107, - 0.0074234, - -0.024004, - -0.076554, - 0.027268, - 0.00033132, - 0.03482, - -0.00586, - -0.0033148, - 0.0019783, - 0.1206, - -0.013664, - -0.036896, - -0.052923, - -0.0089376, - -0.11758, - 0.022079, - 0.0096061, - 0.0048317, - -0.018827, - -0.0032992, - 0.035993, - -0.066359, - 0.03361, - 0.14415, - 0.079979, - 0.011478, - 0.056344, - -0.013445, - -0.042498, - 0.038798, - -0.003322, - 0.013031, - -0.023468, - 0.059743, - 0.0036866, - -0.01764, - 0.12051, - -0.051774, - 0.070502, - 0.0049831, - -0.11989, - -0.055464, - -0.017704, - -0.14605, - -0.0066784, - 0.049043, - 0.073571, - 0.027709, - -0.062469, - 0.065121, - -0.010058, - 0.032842, - 0.020679, - 0.051033, - 0.013784, - -0.12203, - -0.00086035, - -0.0049933, - 0.049803, - -0.072632, - -0.076007, - -0.0056966, - 0.014514, - 0.062362, - -0.03389 - ], - "stylist": [ - -0.063649, - -0.076452, - -0.011127, - 0.064614, - 0.049283, - -0.029572, - -0.014616, - -0.062861, - 0.07822, - -0.0091948, - 0.039027, - 0.095721, - -0.071742, - -0.0075208, - -0.037363, - 0.044988, - 0.11248, - 0.053623, - -0.0055869, - 0.051031, - 0.0017799, - 0.017755, - -0.031517, - 0.063116, - 0.0052312, - 0.01868, - 0.022006, - 0.057564, - -0.038309, - 0.012893, - -0.049985, - -0.0092085, - 0.08711, - -0.089982, - -0.037054, - 0.059482, - 0.017309, - 0.059215, - -0.12476, - 0.045726, - -0.021305, - -0.14848, - -0.0037704, - -0.013426, - -0.014418, - 0.0876, - 0.00058604, - -0.058783, - -0.027969, - -0.0046283, - 0.011575, - -0.083421, - -0.027204, - 0.035318, - 0.067224, - -0.0747, - -0.0081364, - -0.016795, - -0.073376, - -0.0031247, - -0.032148, - -0.079433, - 0.05409, - -0.012858, - -0.02599, - 0.065315, - -0.11187, - -0.068723, - -0.057783, - -0.14199, - 0.052015, - -0.026774, - 0.022117, - -0.097691, - -0.059231, - 0.014722, - 0.022189, - -0.039658, - -0.067456, - -0.032736, - -0.010794, - 0.038754, - 0.012095, - 0.034764, - -0.036901, - -0.07521, - -0.030715, - 0.05093, - 0.13907, - 0.051871, - 0.047406, - -0.014431, - -0.089496, - -0.087021, - -0.0027433, - 0.0934, - -0.056253, - -0.023938, - 0.077655, - 0.0531, - 0.075201, - 0.043358, - -0.018653, - 0.116, - -0.020598, - -0.082154, - 0.037207, - -0.007781, - 0.0119, - -0.012949, - 0.043683, - 0.088349, - 0.062224, - 0.072783, - -0.12038, - -0.046627, - 0.047996, - -0.024847, - 0.0079249, - 0.027066, - 0.048109, - 0.0043171, - -0.058411, - 0.044548, - 0.072293, - -0.044526, - -0.0017289, - -0.045584, - 0.084786, - 0.075564, - 0.045842, - -0.0075175, - -0.019194, - -0.15268, - -0.045449, - 0.040171, - -0.027525, - 0.11738, - -0.0022115, - -0.05711, - 0.048415, - -0.00052446, - 0.099571, - 0.046159, - -0.11072, - -0.057633, - -0.002004, - -0.064379, - 0.018619, - -0.052933, - 0.030817, - 0.10109, - 0.03469, - -0.071267, - -0.035067, - -0.060541, - 0.062774, - 0.038652, - 0.0011731, - 0.04126, - 0.054864, - 0.070279, - -0.056165, - 0.012041, - 0.010202, - 0.062359, - -0.032133, - -0.079257, - -0.064692, - 0.038307, - 0.024246, - -0.036031, - 0.0094119, - -0.071057, - 0.048588, - 0.075106, - -0.011529, - 0.022343, - 0.049865, - 0.035478, - 0.0055441, - -0.023346, - 0.035736, - -0.046191, - 0.044254, - -0.041505, - -0.005469, - 0.11699, - -0.095959, - 0.042667, - 0.015593, - 0.12663, - 0.057674, - -0.086465, - -0.055664, - 0.0074306, - 0.11357, - -0.089262, - 0.010374, - 0.055839, - -0.13946, - 0.058875, - -0.026127, - 0.051633, - 0.019711, - -0.018734, - -0.0028634, - -0.019812, - 0.036978, - -0.0063842, - 0.11271, - 0.0044783, - -0.0061623, - 0.060049, - -0.10488, - -0.0060041, - -0.018268, - 0.020311, - 0.0055195, - 0.098411, - -0.10236, - -0.017845, - 0.044047, - 0.089889, - 0.076784, - 0.019345, - 0.071766, - 0.048597, - 0.067464, - 0.012072, - -0.011496, - -0.071082, - 0.0000074659, - -0.081202, - -0.03088, - 0.005872, - -0.013568, - -0.12269, - 0.016285, - 0.038426, - 0.05158, - -0.059945, - -0.0096894, - 0.00090892, - -0.06616, - -0.02684, - -0.060665, - 0.00095462, - 0.016937, - 0.00056391, - -0.0022578, - -0.028671, - 0.01025, - 0.078557, - 0.054616, - -0.018615, - 0.021227, - 0.04788, - -0.00053145, - 0.063701, - 0.036474, - 0.0039879, - -0.021456, - 0.036176, - -0.016582, - -0.00028669, - -0.018143, - 0.060884, - 0.034934, - -0.040985, - -0.066739, - 0.081193, - -0.11274, - 0.031687, - 0.054259, - -0.055738, - -0.064292, - -0.0036961, - -0.036736, - -0.014058, - 0.045264, - 0.070968, - 0.026226, - -0.076937, - 0.016684, - -0.020113, - -0.0089865, - -0.046475, - 0.034428, - 0.019258, - -0.048686, - -0.09968, - -0.067678, - 0.008331, - -0.014752, - -0.03234, - 0.024195, - 0.097136, - 0.0489, - -0.065247 - ], - "sub-culture": [ - 0.00043242, - -0.065722, - 0.060969, - 0.027655, - -0.057386, - 0.0090708, - 0.020425, - -0.065849, - 0.034497, - -0.0061734, - -0.016757, - -0.048653, - -0.060354, - -0.012233, - 0.0015755, - -0.004995, - 0.058567, - 0.020972, - 0.039914, - 0.039995, - 0.0087951, - 0.032789, - 0.034209, - 0.058194, - -0.032148, - 0.038489, - 0.007142, - 0.0021176, - -0.0094958, - 0.023805, - -0.025325, - -0.016947, - 0.019407, - -0.04631, - 0.011941, - 0.0012863, - 0.059029, - 0.047486, - -0.021285, - 0.0032617, - 0.0025522, - -0.076123, - -0.00032217, - -0.0079413, - 0.043991, - -0.036569, - 0.036799, - -0.013341, - 0.0096558, - 0.0090942, - -0.02862, - 0.0016069, - -0.0077697, - 0.0062333, - 0.0019865, - 0.076595, - 0.030306, - -0.0051955, - -0.040279, - 0.03167, - 0.059363, - -0.055338, - 0.052519, - -0.022654, - 0.014559, - -0.015582, - -0.0035986, - 0.023567, - 0.012904, - -0.050951, - 0.03088, - 0.013865, - -0.016724, - -0.0093213, - 0.013168, - -0.020693, - 0.033757, - -0.022603, - 0.04187, - -0.018548, - -0.0042152, - 0.027482, - -0.024558, - 0.080009, - -0.0040187, - -0.015821, - -0.050191, - 0.00709, - 0.025211, - 0.027074, - 0.0088236, - 0.028084, - -0.05185, - 0.031425, - 0.031594, - 0.062036, - -0.018919, - -0.0437, - 0.042876, - 0.0098496, - 0.012448, - 0.030181, - 0.017843, - -0.027537, - -0.015061, - -0.054816, - 0.0003162, - 0.055878, - 0.035722, - 0.054398, - -0.041755, - 0.072359, - 0.062893, - -0.018694, - -0.031019, - -0.014466, - -0.0045664, - -0.041899, - -0.052752, - 0.061349, - -0.01032, - 0.046408, - -0.0085891, - -0.027386, - 0.075005, - -0.036098, - 0.0075427, - -0.043905, - 0.056982, - 0.073247, - 0.025786, - -0.0061033, - 0.028006, - 0.0022149, - 0.037546, - 0.009433, - -0.055041, - 0.038739, - 0.035705, - -0.023353, - 0.00022474, - 0.0086263, - 0.038398, - 0.0021703, - -0.017538, - -0.031226, - -0.047258, - -0.011211, - -0.0052724, - -0.017701, - 0.060618, - 0.0097049, - -0.048294, - 0.002102, - -0.0021858, - 0.025556, - -0.016159, - 0.055939, - 0.048224, - -0.0038811, - 0.012807, - -0.0009474, - -0.097424, - -0.018782, - 0.0023331, - 0.05047, - 0.036557, - -0.0013025, - -0.033302, - -0.018981, - -0.033719, - 0.016826, - 0.023201, - 0.013294, - -0.020807, - 0.031992, - 0.014434, - 0.06101, - -0.0039846, - -0.058702, - -0.06521, - 0.039574, - -0.071434, - 0.016082, - 0.029407, - -0.029124, - -0.022206, - 0.072352, - -0.01597, - 0.018131, - -0.012076, - 0.036924, - -0.0089692, - 0.0094886, - 0.010339, - 0.023591, - -0.031909, - 0.0032241, - -0.039688, - 0.027431, - -0.13106, - 0.0084356, - -0.034326, - 0.02226, - 0.016043, - 0.073962, - 0.054266, - 0.057943, - 0.042098, - -0.0068558, - 0.057469, - -0.019442, - 0.050735, - -0.036031, - 0.023519, - 0.030355, - -0.061223, - 0.028781, - 0.060535, - -0.0092709, - -0.010483, - -0.076508, - 0.014356, - 0.071118, - -0.059938, - 0.03051, - 0.026772, - 0.04056, - -0.01961, - -0.010845, - -0.024545, - -0.03044, - -0.049972, - 0.055208, - 0.004552, - 0.028461, - 0.058873, - 0.046973, - 0.037331, - -0.0015817, - 0.042358, - -0.01248, - -0.019168, - 0.034782, - 0.016503, - -0.0011698, - -0.027745, - 0.010943, - -0.014144, - -0.039503, - 0.015762, - -0.00061701, - -0.010936, - -0.028105, - -0.039855, - 0.051167, - -0.037906, - 0.030602, - 0.066772, - -0.044834, - 0.025198, - 0.0047041, - 0.041414, - -0.00071432, - 0.025668, - -0.045257, - -0.022098, - -0.0092281, - 0.019046, - 0.05355, - -0.019463, - 0.06481, - -0.075994, - -0.06161, - 0.052865, - -0.029765, - 0.056097, - 0.022963, - -0.10807, - 0.042479, - 0.045984, - 0.08625, - 0.015607, - -0.025501, - -0.046637, - 0.00016391, - 0.040299, - -0.047586, - -0.00067921, - -0.0099217, - 0.029699, - 0.00097659, - -0.012468, - -0.020445, - -0.048353, - 0.0078757, - 0.063511, - 0.041293, - -0.021639, - -0.05543 - ], - "seaside": [ - 0.010673, - -0.021824, - 0.097446, - 0.030121, - -0.012238, - -0.039126, - -0.010355, - -0.12564, - -0.05825, - 0.046836, - -0.040229, - -0.083114, - -0.0081534, - 0.03367, - -0.049278, - -0.0396, - 0.18353, - -0.0086008, - 0.023041, - 0.050685, - -0.0076182, - -0.055195, - -0.031947, - 0.10162, - 0.044874, - 0.002255, - 0.016253, - 0.066631, - -0.096446, - 0.022302, - -0.027982, - -0.056063, - 0.073959, - -0.0093352, - 0.030633, - -0.018256, - 0.086322, - -0.022451, - 0.030563, - -0.036462, - 0.11055, - -0.098827, - -0.016087, - 0.060442, - 0.035574, - -0.036775, - -0.062378, - -0.075811, - -0.04024, - 0.072735, - 0.010282, - 0.0022306, - -0.091222, - 0.059011, - -0.031368, - -0.062524, - 0.037727, - 0.022287, - -0.061396, - -0.066696, - -0.023703, - 0.01307, - 0.24181, - -0.009058, - 0.022847, - 0.083893, - 0.014693, - -0.007748, - -0.01243, - -0.025761, - 0.021414, - 0.05201, - 0.14926, - 0.056899, - -0.015536, - -0.031152, - -0.066787, - -0.037454, - -0.040207, - 0.020546, - 0.0015238, - 0.022989, - 0.062824, - 0.089853, - -0.08847, - 0.0090818, - 0.099495, - -0.053738, - -0.0228, - -0.088065, - -0.042305, - 0.072506, - -0.12945, - 0.022543, - 0.076418, - 0.038853, - 0.032981, - 0.071446, - -0.011299, - 0.0072261, - 0.042834, - 0.037694, - -0.017934, - -0.01423, - 0.056691, - -0.16939, - -0.009006, - -0.01092, - 0.016508, - 0.020184, - -0.024903, - 0.18515, - 0.043751, - 0.051573, - -0.01077, - 0.00325, - 0.030054, - -0.0016657, - -0.0052678, - 0.020557, - -0.050048, - 0.02005, - -0.039516, - -0.026659, - 0.023398, - -0.032914, - -0.01527, - -0.12303, - -0.12236, - 0.010739, - 0.062772, - 0.069698, - -0.010617, - -0.00078584, - -0.0043476, - -0.037231, - 0.025962, - 0.02563, - -0.0076914, - 0.053489, - -0.024528, - 0.030504, - 0.023588, - 0.070661, - 0.07562, - 0.014251, - 0.026633, - -0.023386, - -0.04692, - -0.0146, - -0.019486, - 0.044291, - 0.027563, - 0.053341, - 0.040672, - 0.056301, - -7.1712e-7, - 0.12669, - 0.0228, - -0.0052016, - 0.046601, - -0.062232, - 0.014254, - 0.044471, - -0.078629, - 0.067136, - 0.070388, - -0.026808, - 0.035798, - 0.029019, - -0.011961, - 0.0084135, - -0.043961, - -0.098904, - 0.01742, - 0.067683, - -0.046121, - -0.041385, - -0.043184, - 0.02656, - 0.00028285, - -0.015046, - 0.049044, - -0.055171, - 0.022858, - 0.013387, - -0.020401, - 0.13426, - -0.086207, - -0.032056, - 0.0051517, - 0.03236, - -0.016397, - 0.0034696, - -0.035429, - -0.0022394, - 0.050176, - 0.0035685, - 0.05524, - 0.065115, - -0.20452, - 0.082766, - 0.015016, - -0.0092742, - 0.081964, - 0.017315, - 0.0076402, - -0.034888, - 0.017198, - 0.0084165, - 0.10733, - -0.027686, - 0.014466, - 0.056616, - -0.015256, - -0.041635, - -0.086017, - 0.0056312, - 0.043952, - -0.12302, - 0.011944, - -0.056087, - 0.011348, - 0.10583, - -0.089822, - -0.037693, - -0.0027161, - 0.093273, - -0.027573, - -0.079698, - 0.026679, - -0.043199, - -0.029664, - 0.061349, - -0.0016711, - -0.0034284, - -0.061372, - 0.0047572, - -0.00031647, - 0.026916, - 0.037799, - 0.013033, - 0.027038, - -0.06123, - -0.15483, - 0.0071807, - -0.023034, - 0.046617, - -0.027006, - -0.023683, - -0.038204, - -0.054805, - 0.0083126, - -0.060673, - -0.019578, - 0.015831, - -0.01397, - 0.083398, - 0.017781, - -0.0050044, - 0.017733, - -0.025942, - -0.033908, - -0.050853, - 0.018041, - -0.039582, - -0.03228, - -0.020558, - 0.023925, - -0.0054518, - -0.074012, - 0.081512, - -0.12953, - -0.067337, - 0.054359, - -0.02423, - 0.078921, - 0.056902, - 0.081963, - 0.0044972, - 0.059793, - -0.0067676, - 0.0024436, - -0.038192, - -0.0010709, - 0.059376, - 0.021266, - -0.11653, - -0.004965, - -0.000537, - 0.11567, - 0.048693, - 0.010371, - 0.026773, - 0.020661, - -0.021144, - 0.014842, - 0.088632, - -0.12235, - -0.037045 - ], - "day-care": [ - 0.019168, - -0.058592, - -0.0052423, - -0.073438, - -0.065717, - 0.015245, - 0.029037, - -0.081415, - 0.036361, - 0.0055404, - -0.048277, - -0.034151, - 0.058615, - 0.031467, - -0.087668, - 0.011725, - 0.11891, - 0.07308, - 0.020656, - -0.0050901, - 0.027038, - 0.005076, - -0.0096853, - 0.048471, - 0.025678, - 0.052158, - 0.06259, - 0.084745, - -0.05516, - 0.015657, - 0.0024975, - -0.035279, - -0.054772, - -0.092772, - 0.10662, - 0.064605, - 0.039976, - -0.077393, - 0.090729, - -0.046355, - -0.041164, - -0.18392, - -0.01234, - 0.011683, - 0.076634, - -0.026944, - 0.026434, - 0.081757, - -0.047832, - 0.03113, - -0.050565, - 0.039953, - 0.010069, - 0.024267, - -0.0087476, - -0.060957, - 0.0074381, - -0.062546, - -0.039327, - -0.10605, - -0.067157, - -0.013163, - 0.11371, - 0.053876, - 0.047947, - -0.0032354, - 0.019763, - -0.10283, - -0.013112, - -0.062265, - 0.034648, - 0.041748, - 0.015821, - 0.044014, - -0.033761, - -0.0058036, - 0.021257, - -0.063446, - -0.0095196, - -0.010639, - -0.02768, - 0.030743, - -0.023049, - -0.01634, - -0.062496, - -0.015376, - -0.040135, - 0.0036724, - -0.011487, - -0.015943, - 0.029718, - 0.065924, - -0.12463, - 0.023662, - 0.0034228, - 0.058538, - 0.029777, - 0.046165, - -0.059412, - 0.0085707, - -0.014023, - -0.017487, - -0.066296, - 0.003521, - 0.065518, - -0.1342, - 0.052831, - -0.025801, - 0.012783, - -0.028959, - -0.028721, - 0.11505, - 0.0090842, - 0.085587, - 0.017906, - -0.073392, - -0.036903, - 0.016579, - -0.05385, - -0.00032803, - -0.1283, - 0.067229, - 0.037307, - -0.0009575, - 0.099825, - -0.04004, - 0.044872, - -0.12177, - 0.050491, - 0.041737, - 0.049425, - 0.012708, - 0.011567, - -0.013151, - -0.03865, - 0.00025059, - -0.075475, - 0.042886, - 0.023824, - -0.051437, - 0.031502, - 0.015198, - -0.025677, - 0.046905, - -0.0056526, - -0.018967, - -0.012171, - 0.07888, - 0.025094, - 0.010741, - 0.018941, - 0.091158, - -0.070263, - -0.053191, - 0.06392, - 0.018942, - -0.006014, - 0.033693, - 0.044647, - 0.019168, - 0.059626, - -0.0084352, - -0.055859, - -0.0071911, - -0.016795, - -0.030528, - 0.06514, - -0.0083906, - -0.030678, - -0.044376, - -0.014515, - -0.00098379, - 0.02439, - -0.0253, - 0.04218, - 0.049078, - -0.08708, - 0.030254, - -0.030076, - 0.012727, - 0.019534, - -0.038709, - -0.017322, - 0.041727, - 0.0080208, - -0.053755, - 0.061021, - 0.14422, - 0.030088, - 0.0040195, - 0.027515, - 0.059568, - 0.047433, - -0.019202, - 0.059969, - -0.074062, - 0.02833, - 0.029017, - 0.01828, - -0.052191, - -0.12948, - 0.067125, - -0.016961, - -0.018368, - 0.027867, - 0.01571, - 0.0052103, - -0.10068, - -0.065193, - -0.0074793, - 0.15288, - -0.028946, - -0.013977, - 0.048363, - -0.06139, - 0.021388, - -0.038605, - -0.055788, - 0.020947, - 0.013521, - 0.055864, - -0.028502, - -0.049062, - 0.11858, - 0.016792, - -0.025268, - 0.036199, - 0.046451, - -0.041829, - -0.0099158, - 0.023471, - -0.040833, - -0.004769, - -0.03943, - 0.031157, - 0.08585, - 0.049998, - -0.020124, - -0.0059796, - 0.023409, - 0.043542, - -0.059254, - 0.005201, - -0.07009, - -0.071521, - 0.052874, - 0.035172, - 0.0093072, - 0.012428, - 0.026423, - -0.052926, - 0.04681, - -0.013321, - -0.016925, - -0.054038, - 0.037379, - 0.039241, - 0.0034079, - -0.087641, - -0.0036368, - 0.0010878, - -0.078102, - 0.011808, - -0.073902, - -0.050142, - 0.095643, - -0.062771, - 0.051666, - 0.015533, - 0.026026, - -0.076349, - 0.057035, - -0.10813, - -0.033904, - -0.018025, - -0.020412, - -0.034131, - 0.036878, - 0.062881, - 0.069521, - 0.084756, - -0.022147, - 0.081814, - 0.04454, - 0.0017031, - 0.1141, - -0.0083534, - -0.027427, - -0.02012, - 0.025545, - 0.0419, - 0.007518, - -0.039329, - -0.036953, - 0.028062, - 0.052892, - 0.0024028, - 0.12055, - 0.017001, - -0.047045 - ], - "rainstorms": [ - 0.059878, - -0.0050139, - 0.010598, - -0.017261, - 0.031579, - -0.028864, - 0.0072675, - -0.073025, - 0.064434, - 0.041362, - 0.022219, - -0.015293, - -0.044156, - 0.055137, - -0.008536, - 0.00012336, - 0.058829, - 0.052487, - 0.044726, - -0.0044961, - 0.036803, - -0.036704, - -0.069685, - 0.03493, - 0.098662, - -0.059932, - -0.011646, - 0.03748, - 0.078601, - 0.0052732, - -0.0098858, - -0.0013603, - 0.034406, - -0.067616, - 0.010839, - 0.064239, - -0.001952, - -0.030303, - -0.030269, - -0.042993, - 0.004712, - -0.045774, - 0.0019435, - 0.037451, - -0.017923, - 0.096602, - 0.062187, - 0.00017227, - -0.030193, - -0.0073528, - 0.031629, - -0.034013, - -0.016982, - -0.0062617, - -0.080374, - 0.030428, - 0.10548, - -0.026457, - -0.0038109, - 0.028974, - 0.018531, - 0.016546, - 0.048164, - -0.024087, - -0.076835, - -0.013576, - 0.016863, - -0.014025, - 0.017458, - 0.021441, - 0.068274, - 0.083357, - 0.035577, - 0.043022, - -0.043654, - -0.074764, - 0.00025995, - -0.024922, - -0.0060692, - 0.08888, - -0.047965, - -0.009886, - -0.045209, - 0.0090794, - 0.074801, - -0.036367, - 0.045713, - 0.00099507, - 0.0065421, - -0.015162, - -0.035112, - -0.06661, - -0.095688, - -0.011583, - 0.0077909, - 0.02223, - 0.040018, - 0.023305, - 0.021546, - -0.041113, - 0.040072, - -0.082262, - 0.031797, - -0.042186, - 0.06284, - -0.0033676, - -0.0079112, - 0.0013914, - 0.03279, - 0.00049403, - 0.015709, - 0.02548, - 0.063231, - 0.023421, - -0.032123, - -0.029262, - 0.010172, - 0.062799, - -0.037422, - 0.0038277, - -0.016922, - -0.014731, - 0.068743, - -0.01925, - 0.11729, - 0.016029, - 0.037236, - 0.013417, - -0.10133, - 0.077621, - 0.02664, - 0.074598, - -0.010292, - 0.0071956, - 0.052308, - 0.026952, - 0.052257, - 0.039735, - 0.026428, - 0.047957, - 0.052914, - -0.043229, - 0.020276, - 0.0014482, - 0.034197, - -0.049333, - -0.0014538, - 0.010173, - -0.056576, - 0.00095041, - 0.028948, - 0.061923, - -0.037364, - 0.012669, - 0.037164, - -0.0047551, - -0.0058121, - 0.021336, - -0.024792, - -0.034486, - 0.04691, - -0.019962, - -0.038752, - 0.041017, - 0.025864, - -0.036918, - 0.011962, - 0.011244, - 0.0443, - 0.045185, - 0.0028372, - -0.026225, - 0.04445, - -0.010303, - 0.051263, - 0.013246, - 0.047747, - 0.00026545, - -0.080736, - -0.016707, - 0.0010633, - 0.073358, - -0.011246, - -0.067363, - -0.042406, - -0.045545, - -0.045784, - 0.10758, - -0.029587, - -0.055935, - 0.010889, - 0.0038806, - -0.063492, - -0.029566, - -0.015801, - -0.015971, - 0.036557, - 0.019061, - 0.0054956, - -0.020981, - -0.11447, - -0.017897, - -0.057993, - 0.024153, - 0.055138, - 0.028038, - -0.026083, - 0.049422, - 0.029526, - -0.04077, - 0.079276, - 0.011648, - 0.05891, - 0.00087823, - 0.088619, - -0.015734, - -0.019419, - -0.032296, - -0.02672, - -0.077292, - -0.00039024, - 0.014576, - -0.048028, - 0.086679, - 0.0094892, - -0.0022311, - -0.043558, - 0.073445, - -0.020132, - 0.025391, - 0.0063097, - -0.072841, - -0.03043, - -0.0062452, - 0.044996, - 0.084905, - 0.0073161, - 0.006157, - 0.048068, - -0.037316, - -0.007372, - 0.022221, - 0.0061846, - -0.046017, - -0.032991, - 0.081057, - 0.051415, - -0.011423, - -0.013514, - -0.018895, - -0.0044576, - -0.0031572, - 0.05352, - 0.02273, - -0.061363, - 0.044108, - 0.030872, - -0.033418, - 0.047935, - 0.045773, - 0.049218, - 0.064355, - -0.033895, - -0.021785, - 0.0028869, - -0.045566, - -0.021895, - 0.045265, - 0.011622, - -0.074554, - -0.040631, - 0.091505, - -0.1022, - -0.019826, - -0.020857, - -0.066088, - -0.0227, - -0.0082933, - -0.032668, - 0.036091, - 0.016359, - 0.0038414, - 0.0063276, - -0.016737, - -0.028974, - 0.0049365, - 0.0098011, - 0.019782, - -0.0049432, - 0.015286, - -0.027, - -0.021332, - -0.060042, - 0.017855, - 0.028222, - -0.023177, - -0.038588, - 0.035864, - 0.049603, - -0.038973 - ], - "communications": [ - 0.01949, - -0.015091, - -0.021829, - 0.011446, - 0.0008171, - -0.0066597, - 0.0042771, - -0.063923, - 0.030086, - 0.0015489, - 0.019291, - -0.027745, - -0.054124, - 0.024851, - -0.024474, - 0.014815, - 0.051214, - -0.00046743, - 0.036506, - 0.019084, - -0.028987, - -0.031236, - 0.059591, - 0.036536, - -0.021174, - 0.0091447, - -0.014245, - 0.028924, - 0.030475, - -0.031254, - 0.0079434, - 0.027142, - -0.015192, - -0.03651, - 0.039241, - 0.045456, - 0.012169, - 0.023647, - 0.017669, - -0.03044, - -0.065587, - -0.096604, - 0.02735, - 0.027458, - 0.014618, - -0.031464, - -0.0059808, - -0.02066, - -0.0089435, - -0.016064, - -0.0086314, - -0.02557, - 0.066738, - -0.0054229, - -0.043038, - 0.052492, - -0.041038, - 0.009671, - -0.0068753, - 0.029397, - -0.0024137, - 0.0051332, - 0.091278, - -0.028241, - 0.029462, - 0.017438, - -0.0087232, - -0.0041672, - 0.0015717, - 0.017807, - -0.017414, - 0.0019075, - 0.040607, - 0.024706, - -0.029896, - -0.013536, - 0.028175, - -0.013396, - 0.0043532, - -0.012154, - -0.0082932, - -0.0095453, - -0.05583, - 0.010213, - 0.015173, - -0.0015064, - -0.0066267, - -0.01636, - 0.015104, - -0.022491, - 0.032766, - 0.017968, - -0.060874, - 0.018601, - 0.002174, - 0.051615, - -0.020712, - 0.010715, - -0.042147, - 0.01214, - 0.033546, - 0.020192, - -0.0085438, - -0.012912, - 0.02711, - -0.048575, - 0.012524, - 0.009268, - 0.054824, - -0.0077286, - -0.030985, - 0.040321, - 0.04153, - 0.025656, - -0.016754, - -0.037205, - -0.02581, - 0.012862, - -0.037606, - -0.00705, - 0.018312, - 0.012942, - -0.0046403, - 0.022959, - 0.082551, - -0.012627, - 0.0065624, - -0.026037, - -0.0083783, - 0.086855, - 0.011466, - 0.009689, - 0.00089491, - -0.018257, - 0.035105, - 0.009273, - 0.01861, - 0.019526, - -0.017996, - 0.038805, - 0.034325, - -0.01718, - -0.017103, - 0.0080237, - -0.0048806, - 0.0016444, - -0.030411, - -0.024221, - 0.01465, - -0.0090945, - 0.0082496, - 0.048448, - 0.02357, - -0.054395, - 0.030536, - 0.017859, - 0.00047655, - -0.0056525, - 0.017824, - 0.030311, - 0.031732, - 0.0027798, - -0.049537, - 0.010038, - -0.014301, - -0.029492, - -0.004402, - -0.018602, - -0.00069718, - -0.0024226, - 0.048238, - 0.0047697, - 0.0047675, - 0.024697, - -0.00081993, - 0.01918, - 0.0088719, - 0.057364, - -0.017542, - 0.026912, - 0.014525, - 0.042592, - 0.0040889, - -0.0049011, - -0.016226, - -0.036594, - -0.021611, - 0.046587, - 0.029556, - -0.015869, - -0.032679, - 0.062311, - -0.018517, - -0.01584, - -0.022244, - -0.003367, - 0.0028209, - 0.0022646, - -0.012287, - 0.010552, - -0.095955, - 0.019111, - 0.012812, - 0.047992, - -0.019689, - 0.010837, - -0.022922, - -0.0015055, - 0.0032174, - -0.0069697, - 0.065891, - 0.024339, - -0.010142, - 0.029435, - 0.0082612, - 0.033803, - -0.012138, - -0.030085, - -0.034697, - 0.00091385, - -0.033782, - -0.025324, - 0.0020292, - 0.056237, - 0.030328, - -0.025688, - 0.0068922, - 0.039521, - 0.013307, - 0.005247, - 0.0033531, - -0.0053346, - -0.03095, - -0.015853, - 0.028899, - -0.02205, - 0.019531, - 0.02668, - -0.011578, - -0.009915, - -0.0028069, - 0.0036165, - 0.043048, - 0.013197, - -0.015987, - 0.014877, - -0.014412, - -0.023079, - 0.011965, - 0.018968, - 0.042406, - 0.009842, - 0.0030247, - 0.0019079, - -0.011402, - 0.021744, - -0.011853, - 0.025224, - -0.0067535, - -0.007922, - -0.028664, - 0.018494, - 0.01417, - -0.0059869, - 0.02014, - -0.029727, - 0.030007, - -0.013682, - -0.02028, - 0.031589, - -0.011275, - 0.042416, - -0.059924, - -0.022108, - -0.027203, - 0.018626, - -0.00021967, - 0.02246, - -0.041982, - 0.021326, - 0.046885, - -0.031666, - -0.042935, - -0.013077, - -0.010644, - -0.02376, - -0.06526, - 0.015241, - 0.0032682, - 0.0035164, - -0.0033558, - 0.023858, - -0.062261, - -0.020435, - 0.027608, - 0.011202, - -0.036173, - -0.00098561, - 0.012353, - 0.015826 - ], - "destination": [ - 0.015545, - -0.017705, - -0.022373, - 0.010483, - -0.025619, - -0.044371, - -0.0365, - -0.057058, - 0.0077259, - -0.010931, - -0.010468, - -0.0242, - -0.063812, - 0.0026553, - -0.015199, - -0.0023015, - 0.051621, - -0.030775, - 0.040014, - 0.059623, - 0.04807, - -0.011723, - 0.011874, - 0.057254, - -0.016607, - 0.015886, - -0.010953, - 0.051729, - -0.013247, - 0.03985, - 0.021625, - 0.057598, - -0.00080888, - -0.045205, - -0.010344, - 0.031077, - -0.01477, - 0.013394, - -0.012198, - -0.018797, - -0.0001371, - -0.10556, - -0.043559, - -0.0092153, - -0.035892, - -0.00069318, - 0.034708, - -0.013098, - -0.057338, - 0.038591, - 0.0047677, - -0.0072227, - -0.047248, - -0.023339, - -0.043667, - -0.012227, - 0.01085, - 0.048545, - -0.023096, - -0.026698, - -0.014966, - 0.0066699, - 0.081915, - -0.009808, - 0.044734, - 0.01241, - -0.00019096, - -0.014371, - -0.024414, - 0.011367, - 0.011188, - 0.017306, - -0.013607, - 0.027195, - 0.01335, - -0.010027, - -0.015669, - -0.023956, - -0.040492, - -0.057672, - 0.029159, - 0.048542, - 0.0312, - 0.06509, - -0.065225, - -0.046902, - 0.0092697, - -0.015773, - 0.0051729, - -0.034707, - 0.044308, - -0.011193, - -0.0543, - -0.0012749, - 0.012473, - 0.040296, - 0.0081543, - -0.0064073, - -0.04327, - 0.0063311, - -0.020477, - 0.0072437, - 0.02636, - 0.0031096, - -0.016135, - -0.050371, - -0.041957, - 0.01126, - 0.0080737, - -0.012932, - 0.07268, - 0.061578, - 0.046486, - 0.028766, - 0.0073184, - -0.014141, - 0.00076618, - -0.0045009, - -0.030145, - 0.064911, - 0.06056, - -0.055219, - -0.010635, - 0.018353, - 0.040144, - -0.0077882, - -0.036797, - -0.079113, - 0.037072, - 0.021915, - 0.0032198, - -0.020742, - -0.026528, - -0.051396, - 0.0090869, - -0.02148, - 0.011844, - 0.023399, - 0.0048355, - -0.01277, - -0.025602, - -0.0064096, - -0.0084171, - -0.015416, - -0.00083419, - 0.059924, - -0.042476, - 0.0085141, - -0.067099, - 0.046069, - -0.00075858, - 0.023247, - -0.071148, - -0.043137, - 0.044786, - 0.017832, - -0.091946, - 0.019087, - -0.028306, - 0.028051, - 0.028805, - -0.039924, - -0.019201, - -0.0044506, - 0.011782, - 0.0011579, - 0.045236, - -0.030805, - -0.010087, - 0.03912, - -0.011549, - 0.05828, - -0.026645, - -0.016025, - -0.016573, - 0.042759, - -0.013436, - 0.010498, - -0.0082976, - 0.058445, - 0.058134, - 0.01003, - 0.018459, - -0.047562, - 0.0054263, - -0.014371, - -0.014618, - 0.065295, - -0.039799, - -0.057432, - 0.035368, - 0.056109, - 0.012805, - 0.05455, - -0.0085169, - 0.026576, - 0.02808, - -0.0088903, - 0.017935, - -0.007277, - -0.11515, - 0.096305, - 0.015418, - 0.0072199, - 0.0088595, - 0.019138, - -0.0038799, - -0.023611, - 0.032087, - -0.0042, - 0.054339, - -0.05274, - -0.016875, - -0.019113, - -0.0036177, - -0.0059534, - -0.0008419, - -0.043861, - 0.0091609, - -0.036791, - -0.023054, - -0.033115, - 0.022552, - 0.077641, - -0.0078285, - -0.0049271, - -0.022315, - 0.037453, - -0.015095, - -0.017949, - -0.029487, - -0.051637, - -0.031127, - -0.014482, - 0.018376, - -0.07336, - -0.0071035, - 0.019093, - 0.003195, - 0.010622, - 0.040428, - 0.0029615, - -0.0040777, - -0.042936, - -0.032847, - 0.024463, - 0.059126, - -0.0021146, - 0.0029354, - -0.0061998, - 0.033005, - -0.042816, - -0.021216, - -0.021965, - 0.0080573, - 0.0084519, - -0.09669, - 0.021977, - 0.044994, - 0.029136, - -0.0058321, - -0.011934, - 0.0071539, - -0.037015, - 0.013923, - -0.0024885, - -0.016546, - -0.0050232, - 0.036559, - 0.021538, - 0.0043634, - 0.055339, - -0.089204, - -0.014213, - 0.036432, - 0.003547, - 0.02505, - -0.013828, - -0.036605, - -0.019832, - 0.048513, - -0.024343, - -0.027361, - -0.029834, - 0.033475, - 0.0097443, - -0.015893, - -0.017878, - 0.011719, - -0.058936, - 0.033321, - 0.042809, - -0.04766, - 0.0073401, - 0.034094, - 0.0088078, - 0.074638, - 0.037939, - 0.0092157, - -0.032549 - ], - "blackberry": [ - -0.066099, - -0.037463, - -0.044082, - 0.011128, - -0.036172, - 0.025086, - -0.023256, - -0.060767, - 0.044003, - 0.024972, - -0.05166, - -0.0025548, - -0.024443, - -0.031459, - 0.056586, - -0.034702, - 0.056935, - -0.099135, - 0.024815, - 0.020382, - -0.016731, - 0.0023793, - -0.014433, - 0.036097, - 0.037052, - -0.078989, - -0.005513, - 0.081061, - 0.026072, - 0.013948, - 0.017519, - -0.026081, - 0.015087, - 0.014424, - 0.029344, - -0.017581, - -0.017304, - 0.011638, - -0.0078199, - -0.021246, - -0.04189, - -0.078484, - -0.0058958, - -0.084432, - 0.048376, - 0.00079079, - -0.02167, - -0.02154, - -0.022681, - 0.036002, - 0.008783, - 0.069715, - 0.035506, - -0.066503, - -0.041668, - -0.064075, - -0.039873, - -0.010149, - -0.040918, - 0.0029934, - -0.037004, - -0.016039, - 0.044574, - 0.055807, - -0.021535, - -0.073739, - 0.013245, - 0.047808, - -0.090464, - -0.04398, - -0.025735, - 0.053825, - 0.022123, - 0.015103, - -0.08561, - 0.011206, - -0.067661, - -0.020684, - -0.036111, - 0.0092201, - -0.050068, - -0.056937, - -0.044083, - 0.089259, - 0.030136, - -0.045739, - -0.026509, - 0.0022935, - -0.032214, - -0.021352, - 0.070592, - -0.024764, - -0.083185, - -0.015012, - 0.049249, - 0.066523, - -0.014681, - -0.05666, - 0.014532, - 0.040491, - 0.038254, - 0.066814, - -0.016713, - -0.0051381, - 0.0012866, - -0.10736, - -0.023378, - 0.010311, - 0.02918, - -0.014041, - 0.01366, - 0.069236, - 0.043024, - 0.077139, - -0.10369, - -0.025192, - -0.056039, - 0.050292, - -0.02704, - 0.010947, - -0.017511, - -0.012535, - -0.0084685, - -0.074487, - 0.065424, - 0.067636, - 0.01421, - -0.061894, - -0.043589, - 0.0096474, - 0.02229, - -0.016926, - -0.056006, - 0.0090386, - -0.017982, - -0.070873, - 0.02214, - 0.0042733, - -0.031507, - 0.011245, - 0.030481, - -0.045939, - 0.0021111, - -0.010858, - 0.0053178, - -0.00063771, - 0.025334, - 0.006384, - 0.047128, - -0.086183, - -0.047992, - 0.048875, - 0.10521, - 0.019396, - 0.071706, - 0.033028, - -0.0075524, - -0.043844, - -0.054361, - 0.016976, - 0.0020903, - -0.018971, - -0.042896, - -0.043247, - 0.020376, - -0.014493, - 0.016717, - -0.0052476, - -0.045921, - 0.042912, - -0.059859, - 0.085875, - 0.048512, - 0.019834, - 0.0028624, - 0.051684, - 0.022282, - 0.034046, - 0.027961, - -0.070543, - 0.0037941, - 0.013272, - 0.03589, - -0.05554, - -0.034165, - -0.037364, - 0.020658, - 0.12029, - 0.025811, - 0.042713, - 0.01167, - 0.0082938, - 0.0034226, - 0.008239, - 0.020872, - -0.0015086, - 0.04781, - 0.0062623, - 0.021851, - -0.02992, - -0.13366, - 0.0069319, - -0.052723, - 0.075451, - -0.018922, - 0.06079, - -0.0048276, - 0.049171, - -0.0069956, - -0.039993, - 0.11271, - 0.00027465, - 0.024019, - 0.094329, - 0.021537, - 0.0019689, - -0.017507, - -0.0031609, - 0.031872, - -0.0098322, - 0.032512, - 0.0035468, - 0.011784, - 0.066029, - 0.0024732, - -0.054326, - 0.013301, - -0.0047923, - -0.056216, - 0.0060379, - 0.021986, - -0.03944, - -0.063777, - 0.0014966, - 0.055267, - 0.051887, - 0.02098, - -0.016305, - 0.016047, - -0.0097516, - 0.065762, - 0.012162, - 0.022005, - -0.047841, - -0.024821, - -0.049452, - 0.069902, - 0.044556, - -0.036859, - 0.05361, - -0.059973, - -0.015356, - -0.111, - 0.030124, - 0.014592, - -0.023545, - -0.013704, - -0.050145, - 0.037469, - 0.021696, - -0.031581, - 0.057622, - -0.0069007, - -0.031396, - 0.022324, - -0.079851, - -0.017728, - 0.0047469, - 0.01209, - 0.035156, - -0.068819, - 0.064324, - -0.047631, - -0.0018018, - -0.014627, - -0.032848, - -0.0083874, - 0.045072, - -0.009002, - 0.013792, - 0.08777, - -0.041691, - -0.032549, - -0.00076571, - -0.073928, - -0.056792, - -0.064479, - -0.030211, - -0.015266, - -0.026776, - -0.050617, - -0.031252, - -0.063022, - 0.025944, - 0.049095, - -0.010223, - -0.04668, - -0.036238, - 0.0015831, - 0.040414 - ], - "demography": [ - 0.068789, - -0.088126, - -0.042139, - -0.02832, - 0.038973, - -0.011475, - -0.040308, - -0.059265, - 0.038254, - -0.014122, - -0.00096495, - -0.05526, - 0.017491, - 0.023705, - -0.0099638, - -0.048238, - 0.079605, - -0.022701, - 0.013397, - 0.079486, - 0.0082937, - -0.0037531, - -0.010707, - 0.069774, - 0.0096028, - -0.039084, - -0.046802, - -0.022143, - 0.0086265, - 0.055938, - 0.016008, - 0.057215, - -0.0023201, - -0.048424, - -0.013177, - 0.020479, - -0.019585, - -0.00015031, - -0.045666, - -0.016223, - -0.050756, - -0.13303, - 0.038751, - -0.084332, - 0.010205, - -0.0031911, - -0.072608, - -0.11139, - -0.033979, - 0.013862, - -0.073384, - -0.00017053, - -0.024948, - 0.032353, - -0.023108, - 0.028084, - 0.0044121, - 0.056399, - 0.001825, - -0.0066824, - 0.048905, - -0.0065496, - 0.049926, - 0.011486, - 0.096725, - 0.04215, - -0.02475, - 0.054815, - 0.024681, - -0.015948, - -0.0036642, - -0.0050315, - -0.037996, - -0.11596, - 0.08418, - -0.055489, - 0.021633, - -0.024457, - -0.02336, - -0.030733, - -0.050919, - 0.031191, - -0.058064, - 0.072517, - -0.004221, - -0.013263, - -0.0056999, - -0.034012, - 0.027472, - 0.027958, - 0.02624, - 0.030285, - -0.087959, - 0.027429, - -0.0053062, - 0.052108, - -0.059124, - 0.015355, - 0.028659, - 0.029011, - 0.035036, - -0.031786, - 0.0030223, - -0.056623, - 0.0066458, - -0.046184, - 0.018868, - -0.012019, - 0.027916, - 0.0076078, - -0.049986, - 0.046085, - 0.049577, - -0.0085195, - -0.054029, - -0.0088786, - 0.0011493, - -0.002234, - -0.022979, - 0.080323, - 0.020765, - 0.029758, - 0.048792, - -0.010451, - 0.027919, - 0.022459, - -0.074734, - -0.072346, - 0.024034, - 0.13417, - -0.0026256, - -0.049886, - 0.00067404, - 0.013801, - -0.00074555, - 0.052718, - 0.019453, - 0.010622, - 0.0048409, - 0.0051985, - -0.0071694, - -0.035155, - 0.040375, - 0.035917, - 0.038428, - -0.037263, - -0.023987, - 0.041864, - -0.021382, - -0.0058372, - 0.028486, - 0.042217, - 0.045435, - -0.053359, - 0.025566, - 0.088082, - 0.04537, - 0.0014114, - -0.010758, - -0.019311, - 0.035992, - -0.01935, - -0.11637, - 0.019927, - -0.077925, - 0.057919, - -0.0049668, - -0.053257, - 0.019178, - -0.0017367, - -0.040367, - -0.027993, - 0.0059916, - -0.0025547, - 0.0036192, - 0.067979, - 0.016824, - 0.0021459, - -0.021339, - 0.001172, - -0.04029, - 0.04645, - -0.006947, - -0.043812, - 0.01674, - -0.030686, - 0.026082, - 0.12279, - 0.0098208, - 0.01545, - -0.013215, - 0.03672, - -0.067143, - -0.031462, - 0.059089, - 0.032916, - -0.05604, - 0.0018448, - -0.038772, - -0.017617, - -0.11936, - -0.020109, - 0.033356, - -0.04219, - -0.080859, - 0.042441, - 0.010461, - -0.017857, - 0.0077179, - 0.018446, - 0.071536, - 0.00079222, - 0.02619, - 0.012272, - 0.021377, - 0.057457, - -0.017634, - -0.039701, - -0.0683, - 0.017532, - 0.014177, - -0.036304, - -0.044842, - 0.077288, - -0.0052192, - -0.057906, - 0.056143, - 0.073365, - -0.017936, - -0.0040682, - 0.031219, - -0.022467, - -0.049049, - -0.0048397, - 0.043894, - 0.0047815, - -0.013295, - 0.082203, - -0.0004281, - -0.031437, - 0.013635, - 0.027178, - -0.032684, - 0.028084, - 0.0063263, - 0.0028603, - 0.047866, - -0.036989, - -0.0066212, - -0.0011833, - 0.041396, - -0.034872, - -0.050619, - -0.11969, - 0.0096463, - 0.018329, - -0.040734, - 0.046146, - 0.084712, - -0.013754, - 0.0074631, - -0.068708, - 0.049318, - -0.015009, - 0.031816, - 0.030633, - -0.016438, - 0.034085, - 0.089862, - 0.029844, - -0.0066715, - 0.058489, - -0.11348, - -0.023659, - 0.02783, - 0.014119, - 0.0011301, - 0.022135, - -0.044202, - -0.042139, - 0.073713, - 0.00052081, - -0.00037015, - 0.0136, - 0.00016565, - 0.083266, - -0.0071395, - 0.004686, - -0.045479, - -0.022348, - -0.021347, - 0.016554, - -0.025589, - 0.025958, - 0.013488, - 0.030374, - -0.010743, - 0.030281, - -0.008927, - 0.022496 - ], - "stylish": [ - -0.043323, - -0.033512, - 0.036849, - 0.04127, - 0.039628, - -0.0017072, - -0.035856, - -0.082358, - -0.043057, - 0.06006, - -0.021348, - -0.013113, - -0.047352, - -0.00809, - -0.069035, - -0.014953, - 0.094157, - 0.045046, - 0.053031, - -0.045311, - 0.0077128, - -0.043583, - -0.048266, - 0.080747, - 0.083887, - 0.045283, - 0.018967, - 0.046263, - 0.021892, - 0.016338, - -0.045539, - -0.0873, - 0.067276, - -0.080746, - 0.075725, - 0.021568, - 0.032814, - 0.10524, - -0.034558, - 0.041933, - 0.053723, - -0.093735, - -0.036112, - -0.023683, - -0.015271, - -0.044385, - -0.019714, - -0.02288, - 0.0087547, - -0.0045643, - -0.021554, - -0.05541, - -0.12221, - 0.032478, - 0.004396, - -0.0005406, - 0.011975, - -0.01651, - -0.049239, - 0.011331, - -0.015076, - -0.056835, - 0.1202, - 0.011709, - 0.096601, - 0.052314, - -0.026999, - -0.010457, - -0.023989, - -0.014624, - 0.040792, - -0.0074753, - 0.013185, - -0.035185, - 0.016598, - 0.048597, - -0.044563, - -0.08493, - -0.025239, - 0.00054562, - 0.041996, - -0.031963, - 0.062986, - 0.025047, - 0.0053358, - -0.014925, - -0.024617, - 0.045938, - 0.031904, - 0.02496, - 0.0049378, - -0.08483, - -0.10396, - -0.026204, - 0.046986, - 0.056882, - -0.06203, - -0.0000087571, - 0.078432, - -0.0035367, - 0.01548, - 0.099244, - -0.031744, - 0.023522, - -0.035363, - -0.12026, - 0.0053994, - 0.0067745, - 0.026572, - 0.031832, - 0.0042918, - 0.089701, - -0.0011262, - 0.047629, - -0.10869, - -0.015414, - -0.013502, - -0.012959, - -0.035838, - 0.050194, - 0.029915, - -0.021006, - -0.036061, - -0.072549, - 0.12066, - -0.0027099, - 0.013007, - 0.016259, - 0.024658, - -0.027267, - -0.020126, - 0.084433, - -0.0038413, - -0.11798, - -0.020377, - -0.042747, - -0.0085503, - 0.03418, - -0.087138, - -0.095894, - 0.057996, - 0.023021, - 0.066549, - 0.037458, - 0.0079939, - -0.0014759, - 0.02091, - -0.00045139, - -0.020339, - 0.022403, - 0.0014061, - 0.090653, - 0.04759, - -0.043577, - -0.044246, - 0.020389, - 0.065856, - 0.018377, - 0.032899, - 0.024684, - 0.083605, - 0.0041444, - -0.05137, - 0.041267, - -0.015063, - 0.072975, - -0.018095, - -0.07071, - -0.050653, - 0.06239, - 0.029408, - 0.013438, - 0.016036, - 0.0078038, - 0.017223, - 0.069446, - -0.030688, - 0.059728, - 0.0062214, - -0.0084224, - -0.0089673, - -0.026797, - -0.014067, - -0.070528, - 0.0056717, - -0.051774, - -0.037638, - 0.14391, - -0.036142, - 0.012332, - 0.045133, - 0.07647, - 0.05356, - -0.046956, - -0.021734, - 0.0048737, - 0.051193, - -0.020426, - 0.034178, - 0.046558, - -0.14056, - 0.11816, - -0.0076014, - -0.0030275, - -0.048026, - 0.0061613, - -0.03584, - 0.015878, - -0.062956, - -0.034408, - 0.036556, - -0.055625, - 0.0037971, - 0.065079, - 0.014614, - 0.00804, - -0.058603, - 0.028381, - -0.13655, - 0.026426, - -0.054414, - -0.016219, - 0.085955, - 0.083318, - -0.012956, - -0.019037, - 0.059767, - 0.080779, - 0.037469, - -0.0047782, - 0.034474, - -0.011396, - -0.07811, - -0.013312, - 0.048147, - -0.039094, - -0.047079, - -0.091201, - 0.030693, - 0.021063, - 0.098936, - -0.043212, - -0.027218, - 0.0065615, - -0.20459, - 0.020683, - -0.044885, - -0.019775, - 0.0026956, - -0.10068, - 0.032959, - -0.033536, - -0.092029, - 0.038198, - -0.00047544, - 0.019021, - -0.012957, - 0.048963, - -0.01114, - 0.036429, - -0.00014783, - 0.03099, - -0.016647, - -0.00074048, - -0.0085157, - 0.025413, - 0.017556, - -0.026122, - 0.0060222, - 0.0055294, - -0.048469, - 0.091358, - -0.11008, - -0.0091145, - 0.0071002, - -0.12405, - 0.0007348, - 0.031713, - -0.00033188, - 0.011077, - 0.10812, - 0.061051, - 0.030588, - -0.013272, - -0.095495, - -0.044699, - -0.0017539, - -0.038122, - 0.080071, - 0.0030925, - -0.043088, - -0.011595, - 0.038762, - 0.015681, - -0.0061822, - -0.03563, - 0.044427, - 0.095726, - 0.014668, - -0.0031684 - ], - "security": [ - -0.027598, - -0.075715, - -0.061394, - -0.049695, - -0.052041, - 0.026753, - 0.013613, - -0.08048, - 0.076056, - 0.034797, - -0.013286, - -0.037066, - 0.012971, - 0.049805, - -0.042032, - -0.030243, - 0.086174, - -0.015182, - 0.064362, - 0.032311, - -0.013867, - -0.0073047, - 0.062929, - 0.058385, - 0.011457, - 0.10038, - -0.010442, - -0.025696, - 0.011737, - -0.010212, - 0.050566, - -0.045061, - -0.069226, - -0.081244, - 0.042348, - 0.046222, - 0.012271, - 0.063438, - -0.0084508, - -0.035207, - -0.04868, - -0.1191, - 0.0077556, - 0.0083393, - -0.052051, - -0.053974, - 0.014528, - -0.029488, - -0.029148, - 0.021895, - 0.010586, - -0.02148, - 0.018204, - -0.032974, - -0.028978, - -0.010818, - -0.03092, - -0.008025, - -0.0098873, - -0.022686, - -0.012976, - -0.07048, - 0.076027, - 0.02207, - 0.036531, - 0.017218, - 0.012331, - -0.073741, - 0.03819, - 0.046461, - 0.030258, - 0.044922, - 0.01983, - -0.068315, - -0.0074692, - 0.041043, - 0.047012, - -0.020035, - 0.059681, - -0.016841, - -0.018546, - 0.006041, - -0.019178, - 0.060366, - -0.0022603, - 0.020076, - -0.020337, - -0.058025, - -0.0083789, - 0.0099944, - 0.012422, - 0.033656, - -0.10745, - -0.0001106, - -0.022215, - 0.039998, - -0.0017598, - -0.058301, - 0.023408, - -0.012945, - 0.023774, - 0.030953, - 0.025209, - -0.045883, - 0.024744, - -0.072655, - -0.045854, - 0.029842, - -0.0046415, - -0.037828, - -0.017061, - 0.098148, - 0.05334, - 0.0093193, - -0.010901, - -0.0035233, - 0.00024172, - 0.034226, - -0.052557, - 0.068964, - -0.0094777, - 0.032011, - 0.0070656, - -0.01564, - 0.079467, - 0.032139, - -0.010474, - -0.11387, - -0.04994, - 0.12382, - 0.06139, - -0.043256, - 0.0043252, - 0.02515, - -0.0013882, - -0.025515, - 0.027718, - 0.012643, - -0.065992, - 0.074156, - 0.020854, - 0.019563, - -0.038839, - 0.025304, - -0.050387, - 0.047857, - -0.043121, - -0.013445, - 0.048448, - 0.013803, - 0.069947, - 0.071882, - 0.025346, - -0.065628, - 0.035518, - -0.0013117, - -0.02318, - 0.03216, - -0.05986, - -0.055966, - 0.072303, - -0.050463, - -0.10567, - 0.024341, - 0.011622, - 0.0073565, - 0.023184, - -0.0037625, - 0.016157, - 0.026929, - -0.0024338, - 0.026007, - -0.0074715, - 0.027273, - -0.024992, - 0.041938, - -0.046915, - 0.004642, - -0.058833, - -0.011225, - -0.05224, - 0.028706, - 0.050057, - -0.01719, - -0.049397, - -0.02789, - -0.03441, - 0.091758, - 0.030041, - -0.0003303, - -0.014638, - 0.03273, - 0.04437, - -0.013733, - 0.051445, - 0.022418, - 0.05248, - -0.044978, - -0.017753, - 0.022143, - -0.13444, - -0.015561, - -0.0079324, - 0.0027958, - -0.041981, - -0.071452, - 0.02149, - -0.010679, - -0.011249, - 0.020532, - 0.10365, - -0.010137, - -0.010395, - 0.059418, - -0.0035546, - 0.038697, - -0.01508, - 0.012186, - -0.033929, - -0.009755, - 0.033208, - -0.0043027, - -0.062294, - 0.086848, - 0.048235, - -0.037412, - -0.029909, - 0.043639, - 0.015462, - -0.025692, - -0.042453, - -0.036172, - -0.057717, - -0.051305, - -0.010735, - -0.024103, - -0.019062, - -0.0078079, - 0.014918, - -0.015535, - 0.02955, - -0.026172, - 0.06026, - 0.0016445, - -0.058477, - 0.032343, - -0.027447, - -0.032295, - -0.011948, - 0.00077509, - 0.028614, - -0.0090338, - -0.030792, - 0.015731, - 0.028033, - 0.01366, - 0.032303, - 0.055829, - 0.053981, - -0.04208, - -0.047286, - 0.0077856, - -0.033205, - 0.0029003, - 0.036951, - -0.04882, - 0.030507, - 0.029257, - 0.0095256, - -0.037831, - -0.065068, - 0.068901, - -0.11472, - -0.045321, - 0.0076233, - -0.014627, - 0.038045, - 0.015736, - 0.072601, - -0.035867, - 0.12634, - -0.024863, - -0.023435, - 0.027699, - 0.049197, - -0.026779, - -0.0045769, - 0.061356, - -0.062329, - 0.02426, - 0.0097946, - 0.0050585, - 0.020991, - 0.009434, - -0.010996, - -0.04666, - -0.0043166, - 0.03603, - -0.099243, - -0.041223 - ], - "curriculums": [ - 0.023291, - -0.054056, - -0.0022959, - 0.017619, - 0.024264, - -0.016651, - -0.0052772, - -0.07177, - 0.010355, - 0.0083668, - 0.021372, - -0.09129, - 0.010362, - 0.03103, - 0.052886, - -0.00015575, - 0.091675, - 0.037258, - 0.079571, - 0.01252, - -0.012817, - 0.006798, - 0.026057, - 0.080153, - -0.021794, - 0.0042605, - 0.01128, - 0.015534, - 0.04344, - 0.031036, - 0.034284, - -0.057296, - 0.025088, - -0.027817, - 0.068421, - 0.080858, - 0.02343, - -0.0068099, - -0.013235, - -0.011037, - -0.023344, - -0.12414, - 0.027327, - 0.022407, - 0.01889, - -0.061208, - 0.048151, - 0.0082712, - -0.0075755, - 0.00052945, - -0.067, - 0.010721, - 0.010406, - 0.02496, - -0.092807, - 0.068145, - 0.0094037, - 0.0081348, - -0.00035412, - 0.036859, - -0.0015886, - -0.0055642, - 0.12976, - 0.062314, - 0.031122, - -0.01499, - -0.035813, - -0.029999, - 0.03037, - -0.032436, - -0.028772, - -0.038932, - -0.0076457, - 0.021946, - 0.0034222, - -0.039642, - 0.075878, - -0.057368, - 0.045786, - 0.014749, - 0.0025976, - -0.02178, - -0.033689, - 0.062715, - -0.012059, - 0.038905, - -0.013983, - -0.0074844, - -0.035541, - 0.040498, - 0.048519, - 0.0057277, - -0.067294, - 0.058634, - 0.0070291, - 0.045133, - 0.061947, - 0.028351, - 0.0046973, - 0.0026476, - 0.072735, - 0.0432, - 0.034482, - -0.04558, - 0.019369, - -0.033429, - 0.043401, - 0.029427, - -0.03919, - 0.034078, - 0.015466, - 0.03716, - 0.046938, - 0.038186, - -0.00037178, - 0.0061211, - -0.043303, - 0.018146, - -0.040785, - 0.019175, - -0.00097079, - -0.049377, - -0.013228, - -0.010669, - 0.041145, - 0.055127, - -0.088455, - -0.012038, - -0.0043707, - 0.10819, - -0.0083969, - 0.054672, - 0.0078377, - 0.0017742, - -0.00051299, - 0.0059482, - 0.034323, - 0.019265, - 0.02551, - -0.050369, - -0.006163, - 0.0022589, - -0.03755, - 0.0083139, - 0.0052136, - -0.056086, - -0.030445, - -0.0055542, - -0.018391, - -0.0067768, - 0.050851, - 0.067462, - 0.014376, - -0.014532, - 0.015633, - 0.06012, - 0.016794, - 0.047442, - 0.016001, - -0.011549, - 0.052826, - 0.038398, - -0.021951, - -0.0090128, - 0.017711, - -0.06226, - 0.055011, - 0.0039711, - 0.023322, - -0.060702, - -0.012943, - -0.035131, - -0.0044507, - 0.00888, - -0.0040746, - 0.014407, - -0.031966, - 0.040885, - -0.047783, - -0.0044875, - 0.037753, - -0.014972, - -0.0078266, - 0.0045743, - 0.041185, - 0.024461, - 0.027956, - 0.067046, - 0.001288, - -0.0077229, - -0.034644, - 0.071374, - -0.054526, - -0.051952, - 0.062967, - -0.0093251, - 0.030469, - 0.031116, - 0.023438, - -0.040405, - -0.12463, - -0.022019, - 0.029599, - 0.014858, - 0.014887, - -0.059741, - -0.021828, - -0.031013, - 0.00688, - -0.016283, - 0.052113, - 0.039598, - 0.04975, - 0.051325, - -0.013328, - -0.014836, - 0.014459, - -0.028879, - -0.058766, - -0.026723, - -0.063218, - -0.014768, - 0.019477, - 0.091222, - 0.0065715, - -0.043968, - 0.065826, - 0.0043881, - 0.030951, - -0.0067911, - 0.0031652, - -0.013991, - -0.027031, - 0.019752, - 0.022292, - 0.043958, - 0.049952, - 0.016465, - -0.059389, - 0.0013162, - 0.013523, - 0.0091899, - 0.055292, - -0.0027123, - 0.017465, - 0.080654, - -0.01614, - -0.056135, - -0.017992, - 0.023666, - 0.011026, - -0.047256, - -0.036017, - -0.059485, - -0.045156, - 0.050703, - -0.016487, - 0.013168, - 0.06345, - 0.038403, - 0.012458, - -0.0074827, - 0.033332, - -0.059108, - 0.0036064, - 0.045576, - 0.013234, - 0.0079813, - 0.04796, - 0.06008, - 0.013178, - 0.047842, - -0.098972, - -0.058183, - 0.0006812, - 0.0070489, - -0.058726, - 0.026907, - -0.014107, - 0.038083, - 0.026057, - 0.022873, - 0.076376, - -0.02061, - -0.0085403, - 0.033219, - -0.01006, - 0.019226, - -0.02855, - -0.0013207, - -0.026827, - -0.033433, - 0.017186, - 0.0046329, - -0.021688, - 0.022326, - 0.021584, - -0.0043056, - 0.017596, - -0.013684 - ], - "reform": [ - 0.010751, - -0.033007, - 0.027361, - 0.023721, - -0.050452, - -0.024657, - -0.0057072, - -0.10354, - 0.030724, - -0.0066844, - 0.026322, - -0.044926, - 0.0012364, - -0.023648, - 0.025964, - -0.063021, - 0.13253, - 0.0031784, - 0.087979, - 0.077767, - -0.00061888, - -0.0004604, - 0.0040973, - 0.051667, - -0.0038947, - 0.0082509, - 0.020526, - -0.024553, - -0.025097, - -0.109, - 0.029372, - -0.081137, - -0.09213, - -0.098981, - 0.0098536, - 0.02419, - 0.026914, - 0.017291, - 0.00039031, - -0.0024742, - 0.052398, - -0.15722, - -0.026346, - 0.0077061, - 0.016119, - 0.058179, - -0.057625, - 0.018859, - 0.014911, - 0.02474, - 0.020248, - -0.032178, - -0.0066929, - -0.039699, - -0.11257, - 0.016588, - -0.046447, - -0.042412, - -0.038301, - 0.065155, - 0.055824, - -0.015172, - 0.084988, - 0.0043544, - 0.087989, - 0.036631, - -0.041006, - -0.061691, - 0.036951, - -0.035189, - -0.072505, - -0.041821, - -0.042814, - -0.050239, - 0.004847, - -0.042981, - -0.1127, - -0.015776, - 0.03404, - 0.088496, - -0.024497, - 0.040909, - -0.086345, - 0.10519, - -0.0063382, - 0.031573, - 0.072696, - -0.056935, - 0.046691, - 0.032055, - 0.10317, - -0.021644, - -0.11464, - -0.023759, - -0.036585, - -0.013787, - 0.037331, - -0.00052135, - -0.038266, - 0.019927, - -0.042784, - -0.10487, - 0.094599, - -0.065715, - -0.039249, - -0.057291, - 0.083994, - -0.059169, - -0.068608, - 0.05226, - 0.060006, - 0.072481, - 0.092066, - 0.054067, - 0.0029788, - -0.018991, - 0.047879, - -0.0012569, - -0.037847, - -0.0074339, - -0.02483, - -0.060663, - 0.075495, - 0.020189, - 0.11075, - 0.01119, - -0.04083, - -0.095049, - 0.0064672, - 0.18176, - -0.0033764, - -0.0022624, - 0.040236, - 0.054025, - 0.020654, - -0.0038274, - -0.016252, - -0.016572, - 0.054741, - 0.012226, - 0.10707, - -0.018148, - 0.004878, - 0.057484, - -0.072112, - -0.044502, - 0.046423, - 0.094805, - -0.008898, - 0.00066119, - 0.054082, - 0.083784, - 0.00094233, - -0.14894, - 0.014242, - 0.021961, - -0.020272, - -0.022345, - -0.09257, - -0.06873, - 0.074994, - 0.052446, - -0.09873, - -0.028964, - -0.039292, - -0.046694, - 0.075504, - -0.014578, - 0.016043, - -0.028907, - 0.031073, - 0.00030597, - -0.023176, - 0.088275, - -0.020691, - 0.074514, - -0.10475, - 0.049273, - -0.023596, - -0.014841, - -0.052456, - -0.0045797, - 0.01345, - 0.066615, - 0.00051816, - -0.0091254, - 0.0098895, - 0.10868, - 0.031006, - 0.02356, - -0.03006, - 0.055269, - -0.058329, - -0.042126, - 0.036726, - -0.07456, - -0.063037, - 0.023321, - 0.0017308, - -0.038225, - -0.21304, - 0.059009, - 0.076758, - -0.0031524, - -0.087201, - -0.057704, - 0.071553, - 0.046939, - 0.04452, - 0.0083128, - 0.13023, - 0.03812, - 0.027288, - 0.027939, - 0.058617, - -0.031445, - 0.0059145, - 0.023787, - -0.037661, - -0.12766, - -0.04269, - -0.006702, - -0.031116, - 0.11387, - 0.013475, - -0.020312, - 0.042466, - 0.10758, - 0.0034661, - 0.0081848, - 0.053708, - -0.089652, - -0.052005, - -0.078437, - 0.061697, - -0.035066, - -0.015354, - 0.0074274, - -0.038695, - 0.06189, - 0.10226, - 0.051581, - -0.017155, - 0.020088, - -0.030939, - 0.0045587, - -0.043825, - -0.0037858, - 0.035523, - 0.062945, - 0.086429, - -0.020247, - -0.035895, - 0.014242, - -0.010048, - 0.043208, - -0.039145, - 0.072649, - -0.091335, - 0.057817, - 0.025879, - -0.021246, - 0.098728, - -0.029712, - 0.037196, - 0.069095, - -0.010291, - 0.01146, - 0.010216, - 0.013394, - -0.016191, - 0.085483, - -0.15836, - -0.032547, - -0.11404, - 0.012397, - 0.021864, - -0.013428, - 0.0040509, - 0.051404, - 0.095759, - 0.024687, - 0.01734, - -0.0034472, - -0.022307, - 0.0063987, - -0.014025, - 0.013251, - -0.040192, - 0.028305, - -0.052216, - 0.004968, - 0.034418, - 0.020308, - -0.026471, - 0.0041143, - -0.059912, - 0.041582, - 0.0044635, - -0.076414 - ], - "therapeutic": [ - -0.040503, - -0.011561, - 0.027918, - 0.012107, - -0.029668, - -0.04289, - -0.058802, - -0.050152, - 0.010054, - -0.032833, - -0.015103, - -0.027413, - 0.070072, - -0.04888, - -0.0055288, - -0.053571, - 0.040242, - 0.042916, - 0.024274, - -0.009221, - 0.0043845, - -0.013615, - 0.063012, - 0.035098, - -0.0083006, - -0.010761, - -0.00067482, - 0.037056, - 0.033598, - 0.060241, - -0.027578, - -0.077436, - -0.033442, - -0.078003, - 0.075902, - 0.041175, - 0.043631, - -0.10121, - 0.083494, - 0.023906, - 0.0073242, - -0.087086, - -0.017124, - -0.0063627, - 0.056595, - -0.061067, - 0.026442, - 0.07182, - -0.0077376, - 0.011412, - -0.013229, - 0.025147, - -0.0069341, - -0.011938, - 0.016494, - -0.043342, - 0.011252, - 0.021611, - 0.011395, - 0.036825, - 0.0018727, - -0.015664, - 0.10156, - -0.031937, - 0.0093351, - -0.012454, - 0.052911, - -0.016902, - -0.023479, - -0.045808, - 0.021732, - 0.023183, - -0.0021976, - 0.014977, - -0.059433, - -0.0040002, - -0.031754, - -0.058067, - -0.0032914, - -0.012724, - 0.013108, - -0.0036262, - 0.012483, - -0.010767, - -0.06892, - -0.028682, - 0.057685, - 0.0051108, - 0.0067834, - -0.016978, - 0.025039, - -0.0055374, - -0.070541, - -0.014478, - -0.0086984, - 0.037074, - 0.027619, - -0.0090768, - -0.00077231, - 0.0076841, - 0.017154, - 0.033841, - -0.017485, - -0.011516, - -0.026181, - -0.091804, - 0.028901, - -0.006467, - -0.039728, - -0.039863, - -0.0036693, - 0.059741, - 0.039088, - 0.02927, - 0.010757, - -0.000271, - 0.024721, - -0.01012, - -0.048348, - 0.014424, - -0.049311, - 0.032645, - 0.010354, - -0.0068379, - 0.088997, - -0.025593, - -0.0091094, - -0.061693, - 0.043082, - 0.060839, - 0.039242, - 0.007157, - 0.0010778, - -0.044634, - -0.034597, - -0.014167, - 0.012798, - 0.024286, - 0.029328, - -0.0032696, - -0.020068, - 0.0087786, - -0.04446, - 0.014495, - -0.040777, - -0.070979, - -0.0073816, - -0.027343, - 0.04198, - 0.075137, - 0.029764, - 0.13178, - 0.045704, - -0.050967, - 0.04981, - 0.01629, - -0.013716, - 0.010524, - 0.046158, - 0.022704, - 0.028239, - 0.061103, - -0.071429, - 0.027723, - -0.036256, - 0.028515, - 0.0027089, - -0.0052391, - -0.023083, - -0.10618, - 0.02215, - -0.0054634, - 0.042493, - -0.016513, - -0.01308, - 0.050513, - 0.012206, - 0.01281, - -0.054508, - -0.016209, - -0.016804, - -0.0017482, - -0.030611, - -0.035669, - 0.040141, - -0.015028, - 0.032548, - 0.081062, - 0.0065683, - -0.0086391, - -0.0022779, - 0.048857, - 0.097308, - -0.0093915, - -0.018707, - -0.020511, - -0.030547, - 0.034934, - 0.017425, - 0.043734, - -0.11441, - 0.074037, - 0.021898, - -0.0036421, - 0.027709, - -0.024961, - -0.027044, - -0.043665, - -0.028549, - 0.015604, - 0.09719, - -0.0025209, - 0.032065, - 0.052392, - 0.041751, - 0.037942, - -0.0097363, - -0.033638, - -0.046592, - -0.060174, - -0.056763, - -0.033294, - 0.02696, - 0.063703, - 0.01519, - 0.038606, - 0.026197, - 0.036424, - 0.01539, - 0.005913, - -0.0042149, - -0.050662, - -0.050731, - -0.024475, - 0.001273, - 0.022083, - -0.029104, - -0.027167, - -0.032746, - -0.0017018, - 0.035917, - 0.030291, - 0.00082589, - -0.0086416, - -0.11584, - 0.01927, - -0.046549, - -0.0053312, - 0.025684, - -0.0064134, - 0.0057052, - -0.005341, - -0.0082689, - -0.057001, - -0.040781, - 0.035462, - 0.0020208, - 0.0072643, - -0.0020202, - -0.019357, - 0.04316, - 0.010414, - 0.014383, - -0.017204, - 0.016553, - -0.054918, - -0.003091, - -0.0089786, - 0.0094295, - 0.053964, - 0.016568, - 0.054257, - -0.071098, - -0.024473, - -0.012245, - -0.092605, - 0.057925, - 0.018019, - -0.044292, - 0.019869, - 0.13067, - -0.020838, - -0.064963, - 0.0045907, - 0.037738, - 0.027794, - -0.024791, - 0.0079281, - 0.0034251, - -0.010234, - 0.068721, - -0.0036821, - 0.024895, - 0.0013205, - -0.03442, - 0.029876, - 0.052776, - 0.030554, - -0.004431, - 0.014415 - ], - "opioid": [ - -0.02417, - -0.040663, - 0.015998, - 0.064033, - -0.050141, - -0.011406, - -0.10459, - -0.13144, - 0.0094477, - 0.00080154, - -0.039937, - -0.036346, - 0.0063795, - 0.024498, - 0.10216, - -0.04985, - 0.056881, - -0.0023598, - 0.064094, - 0.004707, - -0.024557, - 0.050816, - 0.090341, - 0.072831, - 0.042523, - -0.013904, - -0.011279, - 0.059736, - -0.013988, - 0.05988, - -0.051417, - 0.050286, - 0.0043337, - -0.032601, - 0.031499, - 0.042868, - -0.0016083, - -0.064487, - 0.00099077, - 0.032659, - -0.075911, - -0.13108, - -0.039771, - 0.031021, - 0.021688, - -0.010119, - 0.015841, - 0.12969, - 0.014271, - 0.12123, - -0.072899, - 0.027016, - 0.079316, - -0.076647, - -0.041354, - -0.11529, - 0.07058, - 0.088567, - 0.051318, - 0.040331, - 0.068212, - -0.032459, - 0.13076, - 0.017535, - -0.10132, - -0.026395, - -0.012042, - -0.03712, - -0.016641, - -0.029275, - -0.023996, - 0.057042, - -0.024893, - -0.0097894, - 0.020207, - -0.036601, - -0.061446, - -0.046284, - 0.055903, - -0.064416, - 0.048231, - -0.0063939, - -0.0052624, - -0.02388, - -0.0027579, - 0.054745, - 0.11593, - -0.027734, - 0.023811, - -0.084073, - 0.069407, - 0.039271, - -0.098473, - -0.028183, - -0.052235, - 0.073125, - 0.030527, - 0.030913, - 0.04727, - 0.030271, - 0.083807, - -0.032696, - -0.14871, - 0.0033921, - 0.027487, - -0.094904, - -0.15874, - -0.16403, - -0.12798, - -0.0048636, - -0.014877, - 0.043151, - 0.0044886, - -0.11148, - 0.04078, - 0.048598, - 0.0052173, - 0.0066812, - -0.059387, - 0.021271, - 0.043207, - 0.063446, - 0.039697, - -0.08451, - 0.13657, - 0.18095, - -0.065871, - -0.013583, - 0.051873, - 0.036542, - 0.033005, - -0.062032, - 0.017657, - 0.0066967, - 0.061201, - -0.069291, - -0.086252, - -0.0091643, - 0.068534, - -0.045593, - 0.039421, - 0.041892, - -0.039995, - -0.071257, - -0.036469, - -0.097949, - 0.033113, - -0.031162, - 0.063165, - 0.058355, - -0.0032204, - 0.085748, - -0.018484, - -0.057694, - -0.044583, - 0.048196, - -0.046875, - -0.00051867, - 0.018101, - 0.040117, - 0.021919, - 0.081878, - -0.098434, - 0.015175, - -0.075343, - -0.08746, - 0.031283, - -0.1009, - 0.032451, - -0.17596, - -0.0063542, - 0.019369, - 0.023147, - -0.054975, - -0.097845, - 0.064892, - -0.022859, - -0.024879, - -0.098196, - -0.11117, - 0.041143, - -0.0060028, - -0.11344, - 0.014307, - 0.051327, - -0.1073, - 0.070559, - 0.16021, - -0.073958, - -0.077989, - 0.11395, - 0.031268, - 0.020809, - 0.058515, - -0.021606, - -0.05315, - -0.10259, - 0.035481, - 0.00097, - -0.039976, - -0.1778, - 0.047289, - -0.10764, - 0.030096, - -0.0086525, - 0.020942, - 0.080697, - -0.023295, - 0.012208, - -0.013038, - 0.1468, - 0.040428, - 0.025631, - 0.072135, - 0.10622, - 0.080285, - 0.026466, - 0.073712, - 0.085237, - -0.017656, - -0.029955, - -0.05383, - -0.042175, - 0.11109, - -0.014767, - 0.037059, - -0.017814, - 0.14167, - 0.054308, - -0.03496, - -0.050115, - -0.014644, - -0.049251, - -0.025464, - 0.11286, - -0.094232, - 0.0080296, - -0.0086871, - 0.048564, - -0.047875, - 0.0097939, - 0.047524, - -0.035628, - -0.0036749, - -0.11642, - -0.12977, - -0.07382, - -0.045842, - 0.038423, - 0.082782, - -0.0085631, - 0.026284, - 0.032817, - -0.052965, - 0.0048452, - -0.0054575, - 0.017778, - 0.034216, - 0.068834, - -0.056999, - -0.1117, - -0.084339, - -0.020487, - 0.025738, - 0.03024, - -0.0028029, - -0.076212, - -0.028134, - 0.054772, - 0.13795, - -0.05679, - 0.08594, - -0.12395, - -0.017996, - -0.0098035, - -0.078389, - -0.075738, - -0.015132, - -0.041269, - 0.0068438, - 0.22745, - -0.030059, - -0.20742, - 0.029677, - -0.069103, - 0.043656, - -0.05257, - 0.084376, - 0.071891, - -0.10736, - -0.035824, - -0.10723, - -0.01781, - -0.059425, - -0.013659, - 0.12491, - 0.062263, - 0.0049353, - 0.085744, - 0.025819 - ], - "battlefield": [ - 0.00028788, - -0.05326, - 0.019454, - 0.018479, - -0.00045815, - -0.029007, - 0.010961, - -0.06891, - 0.056528, - 0.057911, - -0.012, - -0.041668, - 0.018801, - 0.023416, - 0.0013444, - 0.012644, - 0.064806, - -0.0090729, - 0.072292, - 0.0031789, - 0.037491, - -0.027368, - 0.044767, - 0.040234, - -0.04798, - -0.01921, - -0.00076721, - -0.029388, - -0.019511, - -0.04223, - -0.023758, - 0.011713, - -0.0098585, - -0.03714, - 0.032467, - 0.013256, - -0.0038655, - -0.0010378, - 0.048287, - 0.047429, - -0.038496, - -0.06917, - 0.024037, - 0.023864, - 0.0030939, - -0.021151, - 0.039261, - 0.015663, - -0.037243, - 0.0050077, - 0.031721, - 0.02815, - -0.042969, - -0.03567, - -0.060333, - 0.01009, - 0.011397, - 0.035541, - -0.032662, - -0.0052872, - -0.015655, - -0.00064355, - 0.074615, - -0.0037339, - 0.020383, - 0.012512, - -0.023452, - -0.0022586, - -0.027787, - 0.038946, - -0.015792, - -0.033176, - -0.011697, - 0.037877, - -0.007502, - -0.0016493, - 0.0058898, - -0.037753, - -0.0060198, - -0.0036429, - 0.017167, - 0.0058954, - -0.014268, - 0.033402, - -0.022626, - -0.028435, - -0.0034974, - -0.016791, - -0.00093691, - 0.0028179, - 0.0021815, - 0.028928, - -0.062034, - 0.03132, - 0.027001, - 0.043435, - -0.1023, - -0.007062, - 0.0327, - -0.0011418, - 0.04701, - -0.0038486, - 0.036299, - 0.019601, - 0.010206, - -0.048057, - 0.060392, - 0.044362, - -0.031016, - 0.0010654, - -0.012358, - 0.060511, - 0.059606, - -0.015941, - 0.0076275, - 0.012547, - -0.01845, - 0.0074784, - -0.0365, - -0.077818, - -0.042691, - -0.021464, - -0.020231, - 0.009431, - 0.019957, - 0.040814, - -0.0016581, - -0.066661, - 0.064356, - 0.049018, - -0.03864, - -0.0037134, - -0.015337, - 0.050594, - 0.05413, - -0.037762, - 0.0047131, - 0.0031523, - -0.0050203, - -0.025917, - -0.062648, - -0.10339, - 0.0037499, - 0.0046915, - -0.038179, - 0.021408, - 0.064397, - 0.0035622, - 0.020784, - -0.019381, - 0.0048741, - 0.041239, - 0.0039066, - -0.045316, - 0.015548, - 0.035714, - -0.038329, - 0.067926, - 0.067067, - 0.014093, - 0.030752, - -0.058806, - -0.067953, - -0.048799, - -0.060825, - -0.053751, - -0.033816, - -0.00042151, - -0.0015191, - -0.021339, - -0.036288, - 0.0075895, - -0.022688, - 0.027789, - 0.005555, - 0.035906, - 0.020887, - -0.033707, - -0.053851, - -0.021954, - 0.031785, - 0.061604, - -0.027524, - -0.050405, - -0.0028575, - 0.00074007, - -0.00068611, - 0.065755, - 0.015361, - -0.012021, - 0.047435, - 0.04528, - 0.015477, - -0.052744, - -0.036867, - 0.011581, - -0.035244, - 0.051126, - -0.023145, - 0.022216, - -0.12875, - 0.066654, - -0.014237, - -0.0010323, - -0.030435, - -0.029963, - -0.036987, - 0.052042, - 0.024527, - -0.0065485, - 0.092619, - -0.016733, - -0.0020881, - 0.040406, - 0.023454, - 0.012027, - 0.048346, - -0.01534, - -0.0033595, - -0.073873, - 0.022963, - -0.0077567, - 0.027927, - 0.054323, - -0.045166, - -0.051238, - 0.0041475, - 0.062729, - -0.042398, - -0.0093152, - -0.041767, - -0.047144, - -0.022971, - -0.031863, - -0.0013964, - 0.019678, - -0.01462, - 0.066712, - -0.0027016, - -0.053318, - 0.04134, - 0.056119, - 0.017089, - -0.018648, - 0.0053954, - 0.034818, - -0.053557, - 0.011774, - 0.0033452, - 0.030313, - 0.015158, - 0.052033, - 0.0089475, - 0.027408, - -0.0074512, - 0.043421, - 0.031801, - 0.0092311, - 0.017, - 0.028343, - -0.045675, - 0.039841, - -0.077098, - -0.024136, - 0.00011634, - -0.014013, - 0.048936, - 0.010678, - -0.016641, - 0.0061513, - -0.01279, - 0.080754, - -0.089596, - -0.022879, - 0.038274, - -0.039937, - -0.0037811, - 0.043997, - -0.001404, - -0.038884, - 0.072243, - -0.031049, - -0.020037, - 0.0091607, - 0.00055316, - -0.040616, - -0.025264, - -0.032152, - 0.00094841, - -0.022362, - 0.0020424, - 0.0028344, - -0.051198, - 0.044752, - 0.048451, - -0.047294, - 0.053421, - 0.035769, - 0.011671, - -0.033694 - ], - "historiographical": [ - -0.0058625, - -0.028658, - 0.0065174, - 0.031825, - -0.0087164, - 0.0029656, - 0.020284, - -0.048315, - -0.0013553, - 0.00019934, - 0.0075368, - -0.038726, - 0.010606, - 0.0031868, - 0.040366, - -0.0003842, - 0.014397, - -0.054643, - -0.010741, - 0.023842, - -0.02588, - 0.042657, - 0.0059979, - 0.050904, - 0.019921, - 0.018608, - -0.037225, - -0.0011397, - 0.0054887, - 0.0055717, - 0.010155, - 0.0074035, - -0.016366, - -0.084276, - 0.037326, - 0.012767, - 0.034917, - 0.029455, - -0.022051, - 0.027783, - -0.0085774, - -0.056926, - 0.049087, - 0.051108, - 0.018602, - -0.020307, - -0.01542, - -0.0012809, - -0.0089662, - -0.0017189, - 0.012694, - -0.026138, - -0.050889, - 0.043105, - 0.037337, - 0.01287, - 0.008491, - 0.047519, - -0.0050494, - -0.0066364, - 0.055552, - 0.0027094, - 0.071977, - -0.021512, - 0.011488, - -0.017181, - -0.01879, - 0.028346, - 0.029185, - 0.014289, - -0.0090293, - -0.023272, - 0.024023, - -0.002079, - 0.035997, - -0.020587, - 0.0038498, - -0.042949, - 0.068109, - -0.019111, - -0.025843, - -0.0070745, - -0.0162, - 0.0080703, - -0.043607, - -0.009544, - 0.019945, - -0.0028101, - -0.0048327, - 0.022128, - -0.010556, - 0.009884, - -0.022932, - 0.0019191, - 0.0055441, - 0.01262, - -0.033094, - -0.047804, - -0.015326, - -0.019349, - 0.02461, - -0.023362, - 0.0031469, - -0.0043667, - -0.0082651, - -0.045651, - 0.026392, - 0.032943, - -0.033427, - 0.027818, - 0.0036386, - 0.03412, - 0.0080639, - -0.010936, - -0.03548, - 0.022676, - 0.022482, - -0.0061432, - -0.020518, - 0.017767, - 0.0045249, - -0.031926, - 0.0034946, - 0.0091688, - 0.063428, - 0.002742, - -0.013072, - 0.015339, - 0.013566, - 0.077319, - -0.0087145, - 0.013464, - -0.024325, - -0.014438, - 0.000066383, - -0.00057392, - -0.0029639, - 0.039229, - 0.017317, - -0.015957, - 0.012392, - -0.030756, - -0.013246, - 0.0088118, - -0.022077, - -0.055868, - 0.024902, - 0.022517, - 0.017907, - -0.015261, - 0.011173, - 0.087156, - 0.014963, - -0.028704, - 0.018943, - 0.017501, - 0.042328, - -0.017935, - -0.016442, - 0.033315, - 0.011668, - 0.0075125, - -0.05461, - -0.038993, - -0.02767, - 0.023472, - 0.0028586, - -0.012354, - 0.0023166, - -0.043123, - -0.0066073, - -0.025265, - -0.020299, - -0.014797, - 0.0099657, - 0.024191, - -0.0059289, - -0.029396, - -0.0095831, - 0.0052337, - -0.0031722, - 0.033208, - -0.0023229, - -0.0055758, - 0.049635, - -0.013928, - 0.02639, - 0.082372, - 0.0021011, - 0.0020447, - 0.048919, - 0.045839, - 0.073663, - -0.036838, - -0.015258, - 0.038539, - -0.0079386, - -0.022198, - -0.036842, - 0.015878, - -0.061943, - -0.015884, - 0.012321, - -0.021185, - -0.021177, - 0.011025, - -0.0021941, - 0.027796, - -0.044582, - -0.00045033, - 0.062771, - 0.0034228, - 0.0016604, - 0.0079759, - 0.019882, - 0.0546, - 0.0083185, - -0.0093922, - -0.041951, - -0.0051289, - -0.01162, - 0.028387, - 0.024921, - 0.055305, - 0.024515, - -0.016683, - 0.035208, - 0.053553, - -0.01187, - -0.014367, - -0.0085944, - -0.07489, - -0.0031933, - 0.016106, - -0.016809, - 0.01665, - 0.011116, - -0.0026805, - 0.029407, - -0.024565, - 0.028272, - 0.021876, - -0.024204, - 0.001552, - -0.10644, - -0.016737, - -0.06085, - -0.0071039, - -0.024773, - 0.0026035, - 0.018435, - 0.023838, - -0.017322, - 0.032422, - -0.036236, - 0.0063239, - -0.0029179, - 0.013892, - 0.041502, - 0.0079673, - 0.021218, - 0.0037389, - 0.015535, - -0.016049, - 0.0094007, - -0.012937, - -0.010378, - 0.03396, - 0.015334, - -0.017131, - 0.048484, - 0.034172, - -0.022575, - -0.021605, - 0.04627, - -0.064752, - 0.0061318, - 0.02454, - -0.015101, - 0.020673, - 0.092079, - -0.027502, - -0.0070333, - -0.041456, - 0.013462, - 0.017273, - 0.016302, - 0.0086745, - 0.027305, - 0.0094988, - -0.039299, - 0.019721, - 0.0010259, - -0.024343, - 0.023037, - 0.0054114, - -0.017941, - 0.0071811, - -0.0062863, - 0.016593 - ], - "obsessions": [ - 0.0094962, - 0.019153, - 0.014951, - -0.023908, - -0.040211, - -0.00055314, - -0.04332, - -0.056031, - 0.0086924, - 0.0050847, - 0.0032268, - -0.070462, - 0.03583, - -0.028582, - 0.000072648, - -0.065945, - 0.034121, - 0.050125, - 0.064124, - 0.052583, - -0.0098275, - 0.055326, - 0.018491, - 0.056449, - -0.015942, - -0.000058476, - 0.038053, - 0.0096444, - 0.071125, - 0.011265, - 0.0063736, - -0.062537, - -0.0090402, - -0.046672, - 0.00015586, - 0.023917, - -0.030828, - 0.063761, - 0.015933, - 0.0091567, - -0.047693, - -0.092032, - -0.021444, - 0.047382, - 0.042688, - 0.0034759, - 0.028511, - -0.002929, - -0.047237, - -0.050199, - 0.024274, - -0.035587, - -0.011229, - -0.019629, - -0.01687, - 0.004391, - 0.0020386, - 0.020193, - -0.018294, - 0.0014869, - 0.0030927, - -0.071281, - 0.07128, - -0.041579, - 0.057403, - -0.05382, - -0.067664, - 0.033527, - -0.001041, - 0.0074476, - 0.075989, - 0.034639, - 0.039821, - -0.048946, - 0.0042138, - 0.021639, - 0.05228, - -0.040164, - -0.013688, - 0.017719, - -0.0016925, - 0.016225, - -0.092359, - 0.074925, - 0.044923, - -0.011455, - 0.013561, - 0.0079067, - -0.0014619, - -0.027785, - 0.079282, - 0.029702, - -0.058803, - -0.0097455, - 0.037133, - 0.028887, - -0.061075, - -0.014393, - 0.010929, - 0.037575, - -0.015416, - 0.062122, - -0.024526, - -0.034899, - 0.062937, - 0.0046353, - 0.027541, - -0.047429, - -0.007271, - -0.031496, - 0.04777, - 0.018052, - 0.027283, - -0.0068068, - 0.023993, - 0.019973, - -0.016966, - -0.026724, - -0.018461, - -0.012761, - 0.00099881, - 0.020959, - -0.018559, - -0.051622, - 0.13657, - -0.061455, - 0.015578, - -0.013508, - 0.0097413, - 0.10933, - 0.01932, - 0.054117, - 0.031828, - 0.00054792, - 0.049717, - -0.032931, - -0.01208, - 0.043345, - 0.0082068, - 0.015998, - 0.085324, - 0.0066408, - 0.027943, - 0.090922, - -0.01773, - -0.050304, - 0.017031, - -0.034363, - 0.022297, - -0.0016899, - 0.049361, - 0.08847, - -0.037559, - -0.025815, - -0.0058129, - 0.016781, - -0.0017199, - 0.091822, - 0.0097004, - -0.050309, - 0.060894, - 0.02032, - -0.017061, - -0.0020701, - -0.041342, - -0.043312, - -0.01925, - -0.039645, - -0.02124, - -0.032136, - -0.030944, - 0.022487, - -0.016572, - -0.013455, - 0.0094537, - 0.035274, - -0.029824, - 0.024723, - 0.0036476, - -0.024375, - 0.050947, - -0.027354, - -0.033344, - -0.057541, - 0.070966, - -0.033805, - 0.036676, - 0.10597, - 0.012404, - 0.004276, - 0.031292, - 0.05776, - -0.061822, - 0.021936, - -0.0012902, - 0.050398, - -0.039568, - 0.012927, - -0.012971, - 0.044869, - -0.10598, - -0.021119, - -0.029197, - -0.10498, - 0.032557, - -0.0032449, - 0.019383, - 0.0094013, - 0.040055, - -0.003415, - 0.05369, - 0.042266, - 0.024204, - -0.00069854, - 0.0062226, - -0.049154, - -0.032224, - -0.047401, - -0.097916, - -0.065167, - -0.052703, - 0.0080419, - -0.039058, - 0.06907, - 0.073506, - 0.023223, - 0.069552, - 0.09432, - 0.031717, - -0.00083415, - -0.036858, - 0.010354, - -0.094118, - -0.0084035, - 0.070571, - 0.017728, - 0.055838, - -0.0082884, - 0.026392, - -0.001674, - -0.00028911, - -0.023605, - -0.020375, - 0.00013274, - -0.0056616, - 0.0020873, - -0.038244, - -0.11727, - -0.04556, - 0.041238, - -0.011562, - -0.043909, - -0.042492, - 0.033465, - 0.0052664, - -0.0059876, - -0.050274, - 0.0033299, - 0.062533, - -0.0017952, - 0.057905, - -0.027279, - -0.002379, - -0.023806, - 0.0028803, - -0.024588, - -0.037793, - 0.038361, - 0.023439, - -0.023212, - 0.025696, - 0.049931, - -0.085975, - -0.036296, - 0.11304, - -0.051674, - 0.044735, - 0.053929, - -0.016288, - 0.00053736, - 0.085973, - 0.038371, - 0.1137, - -0.031641, - 0.039563, - 0.029052, - -0.029478, - 0.017764, - -0.016809, - 0.010891, - -0.013055, - 0.031402, - -0.06288, - -0.0033524, - -0.015339, - -0.010468, - 0.030835, - 0.062052, - -0.02571, - 0.0045046 - ], - "metabolic": [ - -0.061605, - -0.049622, - -0.037159, - 0.022096, - -0.03055, - 0.0053497, - 0.060857, - -0.056205, - 0.063925, - 0.008932, - -0.0041616, - -0.037655, - -0.027276, - -0.036955, - 0.056198, - 0.001884, - 0.069736, - -0.0013374, - 0.068137, - 0.020585, - 0.00128, - 0.050214, - 0.040964, - 0.084728, - 0.00080379, - -0.085747, - 0.011573, - -0.012098, - 0.015044, - 0.089161, - 0.05286, - -0.0098841, - 0.018776, - -0.068624, - 0.030591, - 0.035489, - 0.015488, - 0.012792, - 0.023967, - 0.041353, - -0.030289, - -0.11824, - -0.010293, - -0.0050569, - 0.046928, - -0.051215, - 0.023288, - 0.029209, - -0.059405, - 0.026032, - 0.010714, - 0.085836, - 0.040432, - -0.045686, - 0.02307, - -0.020662, - 0.0017417, - 0.035668, - -0.0027978, - 0.019426, - 0.098519, - 0.048575, - 0.088492, - -0.011539, - 0.026833, - -0.0083549, - 0.079709, - 0.01824, - -0.033642, - -0.068254, - 0.0032952, - 0.013591, - 0.042772, - -0.082889, - -0.044024, - -0.00087677, - -0.055176, - -0.06626, - -0.013072, - -0.029162, - -0.067604, - 0.015325, - -0.017363, - 0.021856, - 0.052781, - 0.018922, - -0.011112, - 0.011027, - 0.039552, - 0.0019684, - 0.01328, - 0.038576, - -0.092439, - -0.010515, - -0.071265, - 0.031125, - 0.01976, - 0.052152, - 0.028358, - 0.0077466, - 0.045605, - -0.054184, - -0.038602, - 0.040893, - 0.046846, - -0.070748, - -0.055222, - -0.090287, - -0.037599, - 0.022261, - 0.002846, - 0.042618, - 0.038854, - -0.0088389, - 0.027411, - 0.044731, - 0.022515, - 0.051238, - -0.024692, - -0.085064, - 0.0049636, - 0.022004, - 0.000049805, - 0.037854, - 0.18469, - -0.011777, - 0.028756, - -0.094908, - 0.14729, - 0.063309, - -0.00082182, - -0.048759, - 0.056371, - -0.032522, - -0.014105, - 0.018949, - -0.0023902, - 0.045607, - 0.071494, - 0.039158, - 0.050935, - -0.043953, - -0.027453, - 0.037314, - 0.00018472, - -0.053979, - 0.024011, - -0.042248, - -0.000094193, - 0.097293, - -0.042143, - 0.16431, - 0.0043722, - -0.069808, - 0.057942, - 0.04127, - -0.084262, - -0.010825, - 0.050431, - 0.024991, - 0.042389, - 0.0083603, - -0.12233, - 0.010813, - 0.0020058, - 0.021718, - -0.048924, - -0.035898, - 0.018544, - -0.041493, - 0.035035, - -0.019542, - 0.055854, - -0.013978, - -0.017973, - 0.058206, - -0.014567, - -0.010154, - -0.028465, - 0.010566, - -0.023658, - -0.026352, - -0.051752, - -0.0082857, - -0.0044681, - -0.024164, - -0.055696, - 0.13502, - -0.005582, - 0.12046, - 0.040384, - -0.040463, - 0.063752, - -0.0047299, - -0.026667, - -0.03951, - -0.04206, - 0.031511, - 0.017301, - 0.032919, - -0.14325, - 0.0098542, - 0.018047, - -0.043187, - -0.048437, - 0.054331, - -0.052732, - -0.015843, - -0.083351, - 0.019473, - 0.11971, - 0.024215, - 0.052925, - 0.0066176, - 0.012787, - 0.0628, - -0.0071005, - 0.063199, - -0.02299, - -0.049096, - -0.10139, - 0.044998, - 0.006267, - 0.058578, - 0.0083964, - 0.032425, - 0.029946, - 0.094037, - -0.018786, - -0.02542, - -0.080841, - -0.041256, - -0.058423, - 0.000069201, - -0.020963, - -0.04853, - 0.017773, - 0.081465, - -0.048504, - 0.0059547, - 0.034556, - -0.0079283, - -0.032681, - -0.00085289, - -0.097958, - 0.030775, - -0.018738, - 0.034003, - 0.022784, - 0.027215, - 0.007182, - -0.0041597, - -0.022455, - -0.013406, - 0.023225, - 0.053177, - 0.0035144, - 0.020595, - 0.059438, - 0.019621, - 0.020406, - 0.015609, - -0.034173, - -0.020718, - 0.041914, - -0.038062, - -0.0074917, - 0.041301, - 0.015233, - 0.058485, - -0.024953, - 0.053815, - -0.086843, - -0.033751, - 0.05969, - -0.050702, - -0.0022277, - -0.026671, - 0.086561, - -0.043031, - 0.19552, - 0.022118, - 0.029748, - 0.020539, - 0.024529, - 0.046018, - -0.041527, - 0.013061, - 0.03474, - 0.041083, - 0.06541, - 0.040942, - -0.072729, - -0.018596, - -0.023161, - 0.0062334, - 0.015699, - 0.035499, - -0.0031814, - 0.039739 - ], - "journalism": [ - 0.023351, - -0.062365, - 0.052329, - 0.025558, - -0.0029331, - -0.061752, - 0.032206, - -0.066276, - 0.065218, - -0.044202, - 0.038338, - -0.046895, - -0.065113, - 0.023632, - -0.0022141, - 0.053323, - 0.10606, - -0.044951, - 0.013769, - -0.0017833, - 0.051605, - 0.021655, - 0.028314, - 0.042108, - -0.085127, - 0.02754, - 0.0025832, - 0.07617, - -0.0049892, - 0.015198, - -0.0098188, - -0.025795, - -0.021153, - -0.055578, - 0.037728, - 0.055325, - 0.057831, - 0.037504, - 0.018714, - 0.03826, - -0.033803, - -0.1268, - 0.034098, - 0.072061, - 0.045972, - -0.02547, - 0.039945, - -0.0041843, - 0.01413, - -0.042569, - -0.0086667, - 0.0052043, - 0.069986, - -0.010616, - -0.059933, - 0.036873, - -0.01755, - 0.018426, - -0.045713, - 0.036377, - 0.0030245, - 0.037748, - 0.050992, - 0.038954, - 0.04469, - 0.025327, - -0.048613, - 0.015824, - 0.06445, - 0.038995, - -0.0032931, - 0.0050466, - -0.021576, - 0.044213, - 0.048955, - -0.010457, - -0.025731, - -0.016182, - 0.032069, - -0.048264, - -0.052375, - 0.0026882, - -0.048118, - 0.060677, - -0.035702, - -0.033984, - -0.0022231, - 0.0087176, - 0.018688, - 0.040578, - 0.030486, - 0.054831, - -0.064165, - 0.017167, - 0.050357, - 0.046413, - 0.014151, - 0.0062221, - -0.025741, - -0.027648, - 0.041816, - 0.0044144, - -0.0069466, - -0.0078395, - -0.0099086, - -0.039538, - -0.010951, - 0.0411, - 0.048586, - 0.023392, - -0.02439, - 0.072893, - 0.033486, - -0.017717, - -0.074901, - 0.012584, - 0.037275, - 0.016526, - -0.049659, - 0.036883, - -0.0086605, - -0.055625, - -0.013206, - -0.054518, - 0.0444, - 0.01304, - -0.055326, - -0.029821, - -0.0099328, - 0.12033, - 0.01277, - 0.0074782, - 0.017647, - -0.059646, - 0.046426, - 0.05972, - 0.025142, - -0.057147, - 0.001678, - -0.02132, - 0.015208, - -0.091201, - 0.031827, - -0.027738, - 0.00065578, - -0.025555, - -0.050497, - -0.017177, - 0.031029, - -0.1056, - 0.031396, - 0.012148, - 0.020013, - -0.051161, - -0.019633, - 0.049187, - 0.017125, - 0.070922, - 0.016042, - -0.042874, - 0.038609, - 0.077556, - -0.078854, - 0.026661, - -0.079063, - -0.038627, - -0.0311, - 0.0035621, - -0.033173, - -0.015335, - 0.046605, - -0.0020596, - 0.0087669, - 0.011079, - 0.049664, - 0.047176, - -0.015314, - 0.047206, - -0.0092897, - -0.0029543, - -0.024951, - 0.026955, - -0.012842, - -0.032014, - -0.080912, - -0.0312, - 0.12076, - 0.096925, - 0.027537, - -0.042949, - -0.071345, - 0.062878, - -0.038747, - -0.054685, - 0.0077518, - 0.033579, - 0.061431, - -0.0088294, - -0.055879, - 0.0012447, - -0.13254, - 0.023761, - 0.024977, - -0.038077, - -0.068762, - 0.057697, - 0.012146, - -0.0013927, - -0.032489, - -0.00028135, - 0.10046, - 0.01106, - -0.034278, - -0.0086455, - 0.0011562, - 0.029971, - -0.031112, - -0.076464, - -0.045744, - -0.025109, - -0.08821, - 0.00012654, - -0.069011, - 0.064877, - -0.00017466, - -0.032381, - 0.047474, - 0.065589, - 0.010428, - -0.008116, - 0.017531, - -0.012469, - -0.032975, - 0.017728, - 0.03236, - -0.0031502, - -0.0046398, - -0.079746, - 0.018276, - -0.014699, - 0.0091568, - -0.034069, - 0.076371, - 0.038981, - 0.057328, - -0.02709, - -0.023421, - -0.044907, - -0.0077866, - 0.034182, - 0.063184, - 0.041051, - -0.041563, - 0.0512, - 0.02051, - 0.0026039, - -0.043725, - 0.025646, - 0.017067, - 0.010419, - -0.027749, - 0.0028565, - 0.061404, - 0.017067, - -0.021362, - 0.032776, - 0.01866, - 0.0019243, - 0.027956, - 0.031053, - 0.00017081, - 0.063366, - -0.082515, - -0.0078235, - -0.017395, - 0.0086667, - -0.011815, - 0.026935, - 0.0012607, - 0.013542, - 0.10279, - 0.011465, - -0.022302, - -0.0158, - -0.040187, - -0.012989, - 0.0018498, - 0.025724, - -0.032045, - -0.0021316, - 0.0084256, - -0.016471, - -0.029781, - -0.039347, - -0.03821, - 0.030163, - -0.044282, - 0.033239, - 0.0034497, - 0.012258 - ], - "fathers": [ - -0.067923, - -0.11209, - 0.079214, - -0.082932, - -0.036282, - -0.031969, - -0.001005, - -0.073454, - 0.029332, - 0.037727, - -0.031304, - 0.031139, - -0.023948, - -0.015016, - -0.0035232, - 0.017697, - 0.050717, - 0.0092825, - 0.047848, - 0.049986, - -0.0063511, - 0.072391, - -0.039451, - 0.056225, - -0.024647, - 0.014487, - -0.0039368, - -0.0069814, - 0.097261, - 0.00027748, - 0.023483, - -0.051347, - -0.017748, - 0.026906, - -0.049695, - 0.081703, - -0.075644, - -0.10789, - -0.04915, - -0.059089, - -0.089561, - -0.069974, - 0.016107, - -0.046453, - -0.044524, - -0.0063133, - 0.000079473, - 0.045081, - -0.013809, - -0.035877, - 0.025456, - 0.019706, - 0.0049221, - 0.046159, - -0.041491, - -0.038173, - 0.00047327, - -0.12272, - -0.059115, - 0.046362, - -0.01307, - 0.025379, - 0.095883, - 0.010088, - 0.023864, - -0.0063923, - 0.014827, - -0.027621, - -0.0027637, - -0.050132, - -0.025655, - -0.045591, - 0.10371, - -0.017759, - 0.084584, - -0.0015326, - 0.0048152, - -0.020729, - 0.0091508, - -0.010447, - 0.0036601, - 0.075579, - 0.011084, - 0.059968, - -0.048907, - -0.016418, - 0.051181, - -0.043385, - -0.057812, - 0.05133, - 0.0054668, - -0.026818, - -0.094218, - 0.0029426, - 0.049403, - 0.10808, - -0.056601, - -0.0031821, - 0.0095002, - -0.048474, - 0.056309, - -0.14227, - 0.0017478, - -0.072131, - -0.016679, - -0.055629, - 0.070295, - 0.054064, - -0.038255, - 0.045531, - -0.0061106, - 0.076603, - 0.045072, - 0.0032043, - 0.038585, - 0.047326, - -0.040595, - 0.071251, - -0.036085, - 0.0065397, - -0.012197, - 0.018035, - 0.088127, - -0.084298, - 0.10978, - -0.022816, - -0.011607, - -0.071925, - 0.060897, - 0.07376, - -0.011823, - 0.11619, - -0.0197, - 0.05882, - 0.0016165, - 0.033047, - -0.011185, - 0.048006, - -0.0018163, - -0.03731, - 0.028416, - -0.029642, - 0.0048504, - 0.069444, - 0.054278, - 0.047669, - 0.032291, - 0.046258, - -0.043877, - -0.055871, - 0.043569, - 0.054711, - -0.0031514, - -0.059004, - 0.082631, - -0.065056, - 0.031499, - 0.038646, - 0.10397, - -0.0088306, - 0.04101, - 0.022812, - 0.016524, - -0.035421, - -0.0013884, - 0.025425, - 0.031445, - 0.081871, - 0.052415, - -0.03147, - -0.0090937, - -0.025953, - -0.029846, - 0.010809, - 0.063432, - 0.049149, - 0.070863, - 0.079306, - 0.010128, - 0.027691, - 0.050737, - -0.087871, - 0.015751, - 0.017523, - -0.044282, - -0.087947, - -0.019266, - 0.12219, - 0.019058, - -0.00090197, - -0.016423, - 0.092405, - -0.12898, - -0.015692, - 0.0013657, - -0.032426, - 0.0035499, - 0.057754, - 0.020241, - -0.0072931, - -0.11118, - 0.091375, - -0.025563, - -0.033469, - 0.037068, - -0.0025845, - 0.010093, - 0.00067357, - -0.044868, - -0.074638, - 0.083092, - 0.012143, - 0.077613, - -0.0064486, - -0.092093, - 0.051313, - -0.072216, - -0.02187, - -0.039386, - -0.085479, - 0.065949, - -0.061386, - 0.023844, - 0.11656, - 0.067977, - -0.01337, - 0.010116, - 0.056488, - 0.042832, - -0.051351, - 0.038408, - 0.031151, - -0.078232, - 0.041442, - 0.007398, - 0.077522, - 0.024706, - 0.011756, - 0.014215, - 0.011526, - 0.0061626, - -0.046478, - -0.019946, - -0.080206, - 0.070706, - -0.030116, - -0.06461, - -0.11708, - 0.01104, - -0.031562, - 0.023139, - 0.00061646, - 0.050024, - 0.019728, - 0.069806, - -0.032739, - -0.026098, - 0.0083896, - 0.023755, - -0.065298, - -0.085715, - -0.040999, - 0.051207, - 0.015515, - 0.10206, - 0.05461, - 0.0038934, - 0.026254, - 0.019763, - -0.014041, - 0.059948, - 0.083511, - -0.11476, - -0.010984, - 0.02024, - 0.068423, - 0.022329, - 0.035489, - 0.02038, - 0.056928, - 0.052538, - 0.027693, - 0.051498, - -0.090896, - -0.014658, - 0.10819, - -0.083733, - -0.11566, - 0.021483, - 0.036451, - 0.050026, - 0.0024419, - -0.073533, - 0.03016, - 0.0059833, - -0.037482, - 0.12105, - 0.036456, - -0.045634, - 0.0034584 - ], - "lodging": [ - -0.024412, - 0.02579, - 0.028171, - -0.032442, - 0.00033229, - -0.013733, - -0.039239, - -0.065453, - -0.0016013, - 0.006925, - 0.031757, - -0.046331, - -0.029736, - -0.066457, - -0.01021, - -0.065039, - 0.030773, - -0.036364, - 0.028689, - 0.014975, - 0.029459, - -0.028751, - 0.0092211, - 0.039478, - -0.0057599, - 0.053295, - -0.052595, - 0.055139, - 0.032702, - -0.0039089, - 0.0004621, - 0.021256, - -0.02579, - -0.053977, - 0.053629, - 0.068998, - -0.03364, - 0.10845, - -0.021483, - 0.093857, - -0.024751, - -0.092777, - -0.017223, - 0.0014036, - 0.0020209, - -0.037221, - 0.008506, - -0.015198, - -0.05877, - 0.051401, - 0.032253, - 0.046037, - 0.0062985, - -0.011732, - -0.054179, - 0.011598, - -0.043494, - -0.029605, - 0.039832, - -0.039698, - -0.0012314, - 0.044794, - 0.058273, - 0.12436, - 0.10578, - 0.026451, - 0.0090251, - -0.042294, - -0.056455, - -0.000077952, - -0.0026503, - 0.007461, - 0.095231, - 0.020392, - 0.028486, - -0.023411, - -0.045837, - -0.058794, - -0.024163, - -0.064727, - -0.0098681, - -0.060448, - 0.02061, - 0.0014628, - -0.061205, - -0.046913, - 0.084502, - -0.055551, - -0.063842, - -0.034153, - -0.022679, - 0.0083599, - -0.083315, - 0.013731, - -0.11059, - 0.054504, - -0.067781, - 0.026104, - -0.03163, - -0.017559, - 0.052943, - 0.086558, - 0.016966, - 0.014525, - 0.052494, - -0.10731, - -0.029078, - -0.033576, - 0.066434, - 0.0084979, - 0.0036036, - 0.09333, - 0.066615, - 0.090064, - 0.078446, - -0.046932, - -0.042245, - -0.088666, - -0.044931, - 0.028804, - 0.066293, - 0.024178, - -0.039466, - -0.017399, - 0.06292, - -0.035787, - -0.009798, - -0.042783, - 0.011405, - 0.092007, - 0.06654, - -0.031853, - -0.037987, - -0.035565, - -0.050796, - 0.065015, - -0.070297, - 0.04868, - -0.027096, - -0.059031, - -0.0054694, - -0.03, - -0.020549, - -0.061015, - 0.010191, - 0.017799, - 0.040728, - -0.015905, - 0.0088819, - -0.012819, - -0.01771, - 0.02908, - -0.057746, - -0.13038, - 0.12797, - 0.030726, - -0.059355, - 0.012104, - -0.0009754, - 0.02014, - 0.066208, - -0.055403, - -0.06312, - 0.031256, - 0.023665, - 0.066555, - -0.016528, - -0.078398, - 0.023961, - 0.071263, - 0.023905, - -0.035796, - 0.015943, - 0.0078936, - 0.036175, - 0.050319, - -0.045255, - 0.029924, - -0.056595, - -0.0042683, - -0.012429, - 0.053262, - -0.0089273, - -0.054137, - -0.067093, - -0.052482, - 0.0054353, - 0.12241, - -0.048888, - -0.069228, - 0.021093, - 0.027215, - 0.0056112, - 0.030301, - -0.048109, - -0.025952, - 0.042088, - 0.020854, - -0.027271, - -0.060993, - -0.18369, - 0.10192, - 0.0042843, - 0.025434, - 0.036231, - -0.062844, - -0.041842, - 0.033662, - 0.021363, - -0.023625, - 0.070925, - 0.0037638, - 0.0049692, - 0.030887, - -0.039266, - 0.086267, - 0.032874, - -0.013068, - 0.018103, - -0.092411, - 0.015209, - 0.0023438, - 0.019961, - 0.041981, - 0.061096, - 0.0058404, - -0.046368, - 0.058888, - -0.089254, - -0.023238, - 0.040522, - -0.02651, - -0.027877, - 0.012921, - -0.0051668, - -0.04843, - -0.0089501, - -0.017676, - 0.062675, - -0.02614, - 0.076169, - -0.036524, - 0.032803, - -0.073496, - -0.10847, - 0.055357, - 0.089056, - -0.019142, - 0.015546, - 0.026862, - -0.042898, - 0.04201, - -0.025987, - -0.096135, - 0.0045433, - -0.030385, - -0.046031, - 0.025165, - -0.035303, - 0.1777, - -0.031579, - -0.037353, - -0.021968, - 0.030451, - 0.063229, - 0.020959, - 0.0049935, - 0.021448, - -0.082914, - 0.0035431, - -0.077393, - 0.051578, - -0.10647, - -0.059488, - -0.066468, - -0.017703, - 0.086029, - -0.023458, - 0.011592, - 0.036901, - 0.06494, - 0.016793, - 0.040036, - -0.053495, - -0.0078744, - 0.10185, - -0.054379, - 0.033763, - -0.037295, - 0.022547, - 0.071159, - 0.089254, - -0.030891, - -0.04716, - -0.029282, - 0.030749, - -0.030749, - 0.11771, - -0.0557, - -0.05002 - ], - "back": [ - 0.029614, - 0.025284, - -0.05983, - 0.0020684, - 0.096656, - -0.038664, - -0.012077, - -0.12465, - -0.026478, - -0.026872, - -0.078687, - -0.13046, - 0.01593, - -0.0076881, - -0.033728, - -0.01607, - 0.22082, - -0.0085703, - 0.096389, - 0.057592, - 0.021196, - -0.047524, - -0.025055, - 0.041671, - 0.035882, - -0.00036512, - 0.035855, - 0.03976, - -0.10448, - 0.0065645, - 0.0392, - -0.007708, - 0.031919, - 0.007018, - -0.072159, - -0.023379, - 0.0075308, - -0.035452, - 0.0072546, - -0.0040465, - 0.046208, - -0.10106, - 0.011794, - 0.0064971, - -0.025147, - 0.060805, - 0.048406, - -0.0049546, - -0.064947, - 0.010279, - 0.085081, - 0.022965, - 0.0011634, - 0.0025353, - -0.27488, - -0.031994, - 0.023183, - -0.062898, - -0.10542, - 0.0063628, - -0.025075, - -0.0021767, - 0.18889, - 0.00035614, - 0.06512, - 0.0094878, - -0.032272, - -0.056528, - -0.016049, - -0.018779, - -0.02193, - 0.032534, - 0.083942, - 0.013221, - 0.033909, - 0.043345, - 0.04142, - -0.024782, - 0.018219, - -0.061675, - -0.043019, - -0.13619, - 0.009288, - 0.11721, - -0.025254, - -0.005525, - -0.0017749, - -0.095607, - 0.0058735, - -0.041745, - 0.04417, - -0.012053, - -0.12242, - 0.072364, - 0.090682, - 0.027536, - 0.048263, - -0.035107, - -0.030911, - -0.014215, - 0.051117, - -0.01239, - 0.090457, - -0.015751, - 0.059838, - -0.14913, - -0.047566, - 0.00082322, - 0.028583, - 0.015543, - 0.026838, - 0.16067, - 0.089672, - -0.017044, - -0.0062099, - 0.024718, - -0.024537, - -0.033021, - -0.044907, - -0.014411, - 0.058251, - -0.013022, - 0.034187, - 0.046893, - -0.071111, - -0.0039161, - -0.058467, - -0.058191, - 0.025645, - 0.086412, - -0.040732, - 0.039025, - -0.015125, - -0.017253, - 0.031269, - -0.029747, - -0.019078, - 0.21131, - -0.010024, - -0.055372, - 0.036706, - 0.0096626, - 0.019085, - 0.020257, - -0.010586, - -0.00969, - 0.088811, - -0.010906, - -0.012891, - -0.04625, - -0.04518, - 0.028456, - -0.015256, - -0.070913, - -0.051769, - -0.075227, - 0.051954, - -0.096371, - 0.012881, - -0.023024, - 0.040624, - -0.0024811, - 0.050872, - -0.02291, - -0.038368, - -0.061757, - -0.017453, - 0.016447, - 0.023005, - -0.022527, - 0.0064929, - -0.0061331, - -0.0057605, - 0.015252, - 0.039329, - 0.027047, - -0.031115, - -0.12441, - 0.075024, - 0.0045332, - -0.04404, - 0.031388, - 0.015953, - -0.069807, - 0.015532, - 0.039351, - -0.051856, - 0.17821, - -0.00095326, - 0.00011974, - 0.026297, - -0.065784, - -0.052841, - 0.00013817, - 0.03601, - 0.022094, - 0.0030498, - -0.093671, - 0.017481, - 0.056838, - -0.21598, - 0.10655, - 0.046609, - -0.017651, - -0.0059172, - -0.032896, - -0.0057711, - 0.0011463, - 0.010623, - -0.031859, - 0.12972, - -0.077043, - -0.000071829, - 0.0014224, - -0.012603, - 0.0022845, - -0.012381, - 0.082637, - 0.049242, - -0.14674, - 0.034355, - 0.0069633, - 0.037258, - 0.15299, - 0.13233, - -0.0042919, - 0.016879, - 0.13229, - -0.05769, - -0.067479, - 0.028928, - -0.10385, - 0.029154, - -0.06357, - -0.044493, - -0.058869, - 0.013597, - 0.021566, - -0.017676, - 0.066073, - 0.14043, - -0.0043323, - 0.0053556, - 0.025625, - -0.11283, - 0.0051126, - 0.01664, - -0.068848, - -0.0037791, - 0.002337, - 0.1338, - -0.0099921, - 0.046793, - 0.0037322, - 0.057282, - -0.040937, - -0.0057422, - 0.038464, - -0.034727, - 0.016489, - -0.014307, - -0.030246, - 0.0035739, - 0.042791, - -0.025403, - 0.026205, - 0.076323, - 0.13348, - 0.010576, - 0.031718, - -0.036394, - 0.1769, - -0.18634, - -0.063483, - 0.12225, - -0.088813, - 0.015055, - -0.0079684, - -0.052668, - -0.0042388, - 0.020438, - 0.0090718, - 0.027207, - 0.025837, - 0.04412, - -0.04187, - 0.0084914, - -0.03284, - -0.039484, - 0.0011515, - 0.0094194, - 0.026774, - -0.068796, - 0.012855, - 0.019825, - 0.022491, - -0.014098, - 0.032993, - -0.02169, - -0.026968 - ], - "sports-related": [ - -0.02371, - -0.03462, - 0.051077, - -0.0056963, - 0.0073315, - -0.059937, - -0.013977, - -0.0697, - 0.032084, - 0.0087399, - -0.033, - -0.073164, - -0.013845, - 0.0079791, - 0.075724, - 0.036245, - 0.053699, - 0.0083877, - 0.031518, - -0.000039221, - 0.01639, - -0.029446, - 0.0076095, - 0.049752, - 0.030099, - -0.014467, - -0.022418, - 0.0018376, - 0.049333, - -0.0091015, - 0.006656, - -0.0222, - 0.044513, - -0.050569, - 0.095548, - -0.0022589, - 0.020331, - 0.054488, - 0.036467, - 0.030697, - 0.012806, - -0.051664, - -0.026351, - 0.053174, - 0.050542, - -0.0054254, - 0.036355, - -0.017103, - 0.032542, - 0.0066341, - -0.027388, - 0.017617, - 0.023475, - 0.030239, - -0.0037266, - 0.0045728, - -0.0075286, - 0.0014624, - -0.025177, - -0.0021563, - 0.0021189, - -0.00032085, - 0.11247, - 0.026, - 0.064176, - -0.041175, - 0.012456, - 0.025522, - 0.0086948, - -0.0048824, - -0.003025, - -0.01826, - 0.072741, - 0.048821, - 0.01201, - -0.023425, - -0.018552, - -0.025846, - -0.035329, - -0.057644, - -0.0052871, - 0.013898, - -0.057397, - 0.012992, - -0.0097803, - -0.028612, - -0.013479, - 0.019685, - 0.0099339, - -0.024363, - 0.015688, - 0.007953, - -0.059277, - 0.062131, - -0.022455, - 0.013711, - -0.073074, - 0.0054313, - 0.037814, - 0.0080208, - -0.0064734, - 0.00031144, - -0.05391, - -0.055593, - 0.033979, - -0.047862, - -0.055474, - 0.015458, - 0.0033783, - -0.0089251, - -0.03955, - 0.041619, - 0.026105, - 0.026762, - 0.039656, - -0.037765, - -0.032822, - 0.0058662, - -0.038276, - -0.006905, - 0.031911, - 0.0042122, - -0.0325, - -0.028423, - 0.11662, - -0.012749, - -0.026405, - -0.017832, - -0.0063523, - 0.04601, - -0.0060629, - 0.010994, - -0.0065429, - -0.031208, - 0.019207, - 0.065197, - 0.018374, - 0.070002, - 0.063769, - -0.024756, - 0.045885, - -0.01004, - 0.031119, - 0.0064725, - -0.047905, - 0.0038273, - -0.050705, - -0.057255, - 0.034598, - 0.045789, - 0.042845, - 0.10833, - -0.011907, - -0.077744, - -0.017749, - -0.0040571, - 0.00028459, - 0.012757, - 0.037782, - -0.028261, - -0.0036339, - -0.011677, - -0.020212, - 0.036738, - -0.0079243, - -0.011436, - 0.022313, - -0.0067933, - -0.069987, - -0.09459, - 0.048981, - 0.0072271, - 0.043336, - 0.035466, - -0.0039542, - 0.028755, - 0.0000086975, - -0.0084274, - -0.018731, - 0.014343, - 0.014431, - -0.043608, - 0.030702, - -0.013331, - 0.021437, - -0.015823, - -0.0023195, - 0.04655, - 0.02866, - 0.0054892, - -0.060588, - 0.021743, - -0.014235, - -0.0083212, - 0.0085717, - -0.010523, - 0.012559, - -0.0062741, - 0.013413, - -0.039579, - -0.089178, - 0.056598, - -0.0034716, - -0.050244, - 0.014635, - 0.024898, - -0.025374, - 0.04161, - -0.0023436, - 0.0031872, - 0.087956, - 0.046318, - 0.01325, - 0.0063347, - 0.028134, - 0.00061974, - -0.025585, - -0.0083122, - -0.01498, - -0.0016261, - -0.03929, - 0.019793, - -0.041778, - 0.086053, - -0.044801, - -0.010563, - 0.033906, - 0.078525, - 0.00057058, - -0.020803, - 0.0023098, - -0.030478, - -0.049989, - 0.016311, - 0.031008, - 0.030377, - -0.051986, - -0.0020778, - -0.030653, - -0.042881, - -0.0011508, - -0.001045, - 0.039432, - -0.037978, - -0.11772, - -0.012456, - 0.012019, - 0.022676, - -0.024326, - 0.0023986, - 0.0058353, - 0.043927, - 0.016317, - -0.00086772, - -0.023557, - -0.018792, - -0.051538, - -0.012335, - 0.069595, - 0.015568, - 0.012478, - -0.042538, - 0.013428, - -0.026401, - 0.028613, - 0.043156, - -0.014686, - 0.023553, - 0.073976, - -0.010121, - 0.0014696, - 0.067888, - -0.064061, - -0.045018, - 0.0060382, - -0.06526, - -0.060976, - -0.022089, - -0.020459, - -0.016811, - 0.071389, - 0.0047981, - 0.0090649, - 0.018805, - -0.012268, - 0.023033, - 0.020125, - -0.015169, - -0.06099, - 0.000039132, - 0.065563, - -0.026665, - 0.0040795, - 0.031173, - 0.039085, - -0.028208, - -0.019436, - 0.00098057, - 0.017723, - -0.031831 - ], - "Society": [ - 0.039601, - 0.0033347, - 0.096387, - -0.048062, - 0.024968, - 0.018569, - -0.04488, - -0.08902, - 0.04814, - 0.0039159, - 0.042259, - -0.077521, - 0.076682, - 0.0085871, - 0.019555, - 0.017742, - 0.090731, - -0.007956, - 0.04052, - 0.0033079, - -0.07016, - 0.058643, - -0.015671, - 0.078538, - 0.03785, - 0.047057, - 0.0016705, - 0.059683, - -0.00048635, - 0.012382, - 0.0093387, - -0.059822, - 0.025584, - 0.017403, - 0.075983, - 0.035399, - -0.022567, - -0.016681, - -0.066286, - 0.028136, - -0.0093742, - 0.057911, - 0.019463, - -0.027302, - 0.03955, - 0.030594, - -0.04955, - -0.0063639, - -0.053592, - -0.059364, - -0.0067515, - 0.075357, - -0.010296, - 0.0079122, - -0.020132, - 0.057999, - -0.032817, - 0.017932, - -0.041385, - 0.028303, - 0.082385, - 0.011668, - -0.070201, - -0.0040005, - 0.046867, - 0.061354, - -0.016251, - -0.030502, - 0.025363, - -0.041537, - 0.013831, - -0.012306, - -0.023342, - -0.017795, - 0.076327, - 0.0097884, - -0.056237, - -0.0613, - 0.00086135, - 0.005158, - -0.042508, - 0.079788, - -0.0038968, - -0.032067, - -0.0097458, - 0.007958, - -0.018473, - -0.11098, - -0.012172, - -0.0078852, - 0.0052972, - 0.072438, - -0.060028, - 0.017115, - 0.0072931, - 0.14119, - -0.024083, - 0.029144, - 0.11094, - 0.052488, - -0.01082, - 0.00046065, - 0.0091561, - -0.043988, - -0.073422, - -0.089916, - 0.099921, - 0.020795, - 0.030974, - -0.016564, - -0.043034, - 0.08664, - 0.061856, - 0.029611, - -0.02162, - 0.026828, - 0.040336, - -0.068676, - 0.070292, - 0.0065636, - 0.020218, - -0.026635, - 0.022306, - 0.00075977, - 0.0381, - 0.005271, - -0.032702, - -0.09117, - 0.025503, - 0.2498, - -0.028059, - 0.089035, - 0.019579, - 0.015507, - 0.035384, - 0.0047909, - -0.010329, - 0.010639, - 0.066939, - 0.019735, - 0.01207, - -0.016119, - -0.013862, - -0.042996, - -0.047806, - -0.016345, - 0.020196, - -0.017825, - -0.014555, - -0.00010143, - 0.070067, - 0.073027, - -0.064591, - -0.033869, - 0.014494, - 0.10229, - -0.0052304, - -0.0319, - 0.066208, - -0.0025842, - 0.027923, - -0.031374, - -0.09258, - 0.046315, - -0.032512, - -0.083119, - -0.046395, - -0.0029205, - -0.0085755, - -0.006435, - -0.01502, - 0.046079, - 0.039942, - 0.030173, - -0.052745, - -0.0057226, - 0.020167, - 0.02477, - -0.033966, - -0.068494, - -0.094668, - 0.092511, - 0.051449, - 0.063224, - -0.069371, - 0.13133, - -0.017442, - 0.17328, - -0.012365, - -0.071401, - -0.032323, - 0.056867, - -0.092986, - -0.044545, - -0.0012849, - -0.03153, - -0.048489, - 0.015276, - 0.010983, - 0.025351, - -0.050931, - 0.031321, - 0.061559, - -0.004046, - 0.036608, - 0.010185, - -0.086787, - 0.0036839, - -0.034042, - -0.014784, - 0.1433, - 0.0095019, - 0.021946, - 0.0075984, - -0.0063094, - -0.022973, - -0.030756, - 0.032676, - 0.043146, - 0.043434, - 0.01119, - -0.015932, - -0.081699, - 0.097135, - -0.039576, - -0.0073794, - -0.048286, - 0.0024123, - 0.0064646, - -0.043444, - 0.051799, - -0.068775, - 0.017915, - 0.017012, - -0.022086, - -0.030842, - 0.064185, - 0.0027695, - 0.023578, - 0.0081018, - 0.056917, - -0.042376, - 0.0057247, - -0.016778, - 0.1871, - 0.0019083, - -0.03673, - 0.014342, - -0.016441, - -0.13794, - 0.013453, - 0.036574, - 0.013493, - 0.007996, - -0.022263, - -0.016832, - -0.069967, - 0.085625, - 0.027814, - 0.038334, - -0.0074096, - 0.047796, - -0.011829, - -0.062446, - 0.082634, - 0.022307, - 0.032695, - -0.012345, - 0.012947, - 0.1034, - 0.06198, - 0.079155, - -0.063395, - 0.02932, - -0.01259, - -0.052167, - 0.036019, - 0.034167, - -0.038728, - -0.0037909, - -0.01868, - 0.0073964, - -0.018859, - -0.052296, - 0.075598, - -0.027116, - -0.049565, - -0.030102, - 0.0022465, - 0.061691, - -0.02117, - 0.072354, - 0.018816, - -0.04896, - -0.057617, - 0.045207, - -0.038943, - 0.012261, - -0.06042, - 0.03428 - ], - "chronology": [ - -0.01849, - -0.022802, - -0.018341, - 0.05514, - -0.016838, - -0.0059758, - -0.028272, - -0.082221, - -0.032137, - 0.040575, - 0.048961, - -0.053551, - 0.015472, - 0.022351, - 0.066577, - 0.041514, - 0.075215, - -0.024801, - 0.0022088, - 0.027368, - -0.018407, - 0.011645, - -0.0052443, - 0.078705, - 0.010634, - -0.027674, - -0.049334, - 0.0555, - 0.013032, - 0.032573, - 0.019552, - 0.020096, - -0.015839, - -0.076702, - -0.020387, - 0.013441, - -0.022502, - 0.022801, - -0.038472, - -0.03738, - -0.062443, - -0.11334, - 0.044724, - 0.039345, - -0.029621, - -0.019834, - 0.032387, - -0.060877, - -0.002425, - -0.002383, - -0.047918, - -0.051458, - 0.016845, - 0.0046508, - -0.014206, - 0.034595, - -0.0080543, - 0.017821, - -0.0027981, - 0.013784, - -0.020307, - 0.0068376, - 0.083648, - -0.038054, - 0.084162, - -0.014719, - -0.0040703, - -0.0052287, - 0.062772, - 0.05051, - -0.041484, - -0.0021289, - -0.040318, - -0.061558, - 0.051932, - 0.029175, - 0.025108, - -0.030577, - 0.047206, - -0.018217, - 0.0056862, - 0.0023559, - -0.031438, - 0.021012, - -0.06913, - -0.0036983, - 0.056057, - -0.0097841, - 0.035652, - 0.0092246, - 0.039548, - 0.0062793, - -0.020223, - 0.0053377, - 0.015731, - 0.038137, - -0.013712, - 0.045422, - 0.067439, - 0.0041146, - 0.027716, - -0.017864, - 0.0053282, - 0.019702, - -0.046531, - -0.044068, - 0.040371, - -0.0044149, - -0.022394, - 0.062284, - 0.016588, - 0.041474, - 0.038499, - 0.02672, - -0.010684, - -0.028366, - 0.022323, - 0.0012315, - -0.054618, - 0.041342, - 0.017084, - -0.018714, - 0.04472, - 0.036157, - 0.022144, - 0.017577, - -0.058123, - -0.068126, - 0.0057228, - 0.13026, - 0.027374, - -0.037127, - -0.048292, - 0.018709, - -0.020353, - 0.0030264, - -0.0010084, - 0.044151, - 0.026797, - -0.065061, - 0.024648, - 0.013538, - 0.020096, - 0.052315, - -0.00029899, - -0.027208, - 0.00256, - -0.013282, - -0.021898, - -0.0099597, - 0.0097082, - 0.013613, - -0.035692, - -0.022576, - -0.0029429, - 0.057585, - 0.028125, - -0.0034351, - 0.035425, - -0.010031, - -0.016271, - 0.038706, - -0.074619, - -0.0045056, - -0.021091, - 0.036066, - -0.078805, - -0.0075503, - 0.029248, - 0.0095264, - -0.056899, - -0.001946, - 0.072818, - -0.010236, - -0.0081329, - 0.036738, - 0.023821, - -0.026603, - -0.023227, - 0.015706, - 0.033045, - 0.02875, - 0.069359, - 0.0085557, - 0.046307, - 0.02113, - 0.060133, - 0.053879, - 0.0078983, - 0.011523, - 0.037608, - 0.063067, - -0.046865, - -0.057581, - -0.020159, - 0.046872, - -0.061776, - -0.03286, - -0.068072, - 0.06402, - -0.12353, - 0.012138, - -0.0046157, - -0.010951, - -0.029012, - 0.036066, - -0.0038991, - -0.036589, - 0.0059775, - -0.00077774, - 0.08366, - 0.015004, - 0.009438, - -0.0037133, - 0.039474, - 0.028504, - 0.0056949, - 0.048025, - -0.060863, - -0.0018588, - -0.018796, - 0.043379, - 0.0078849, - 0.069417, - 0.028588, - 0.045122, - 0.067335, - 0.063782, - -0.00044739, - 0.0047517, - -0.026866, - -0.081287, - -0.028348, - -0.022987, - 0.019701, - 0.019499, - 0.051653, - -0.00062694, - -0.0097246, - 0.001628, - 0.051372, - 0.043457, - -0.073036, - -0.016429, - -0.034998, - -0.076566, - -0.05572, - -0.023198, - -0.049874, - -0.023419, - 0.014409, - 0.00047531, - 0.026969, - 0.077259, - 0.021432, - -0.0098879, - 0.025889, - 0.008438, - 0.079839, - 0.082954, - 0.071007, - -0.0012314, - 0.019125, - -0.010131, - -0.0016932, - -0.024698, - -0.022536, - 0.012849, - -0.022875, - -0.079283, - 0.059061, - 0.080031, - -0.067912, - -0.026443, - 0.020709, - -0.022846, - -0.0075975, - -0.0066328, - -0.0040319, - 0.046437, - 0.07915, - -0.074743, - 0.047985, - -0.026001, - -0.01632, - 0.029678, - -0.049708, - 0.022034, - -0.042926, - 0.018927, - 0.0011631, - 0.0069124, - -0.0093241, - -0.054048, - 0.04701, - -0.0091728, - 0.032544, - -0.036154, - 0.01468, - 0.021749 - ], - "martial": [ - 0.0073933, - -0.12437, - 0.13955, - -0.031865, - 0.016719, - -0.063187, - 0.065657, - -0.096933, - 0.19603, - 0.07841, - 0.022964, - -0.064988, - 0.035249, - 0.062504, - 0.0073015, - 0.044722, - 0.1012, - 0.00672, - 0.022775, - 0.026349, - 0.030154, - -0.077097, - 0.051255, - 0.080999, - 0.019007, - -0.05048, - 0.039565, - 0.0086437, - 0.050687, - -0.0013289, - 0.044994, - -0.042626, - 0.0012757, - -0.069093, - 0.086788, - 0.044422, - 0.030783, - -0.025627, - 0.015763, - 0.036664, - 0.081503, - -0.16483, - 0.080295, - 0.0049116, - -0.045808, - 0.0014833, - 0.11433, - 0.012363, - -0.0096312, - -0.029897, - -0.075957, - 0.02579, - 0.034707, - 0.0047579, - 0.023514, - 0.01813, - 0.031293, - -0.035836, - -0.056168, - 0.070804, - 0.01776, - -0.028547, - 0.17291, - -0.0084473, - 0.026732, - -0.089074, - -0.027026, - -0.058732, - 0.020718, - 0.018175, - 0.057033, - -0.039133, - 0.034514, - 0.0072766, - 0.034746, - 0.035755, - 0.046759, - -0.043668, - -0.001112, - 0.1037, - 0.058075, - 0.054047, - -0.0048035, - 0.021782, - -0.054591, - -0.037838, - -0.010984, - 0.039072, - -0.04123, - 0.068508, - -0.029401, - 0.0082385, - -0.079762, - -0.012694, - -0.022786, - 0.055686, - -0.10573, - -0.026128, - 0.028696, - 0.077197, - 0.047086, - -0.02489, - 0.12023, - -0.024458, - 0.0011549, - -0.076777, - -0.096, - -0.013831, - -0.027291, - 0.063182, - -0.1403, - 0.066108, - 0.066466, - -0.093416, - -0.023159, - 0.036205, - -0.056068, - 0.04554, - 0.028434, - -0.02176, - 0.0054981, - 0.016293, - -0.041151, - 0.022039, - 0.080308, - 0.08697, - -0.015891, - 0.0090733, - -0.047776, - 0.09982, - -0.065832, - -0.020816, - 0.027464, - 0.07475, - -0.026152, - -0.025636, - -0.015816, - 0.040172, - 0.067768, - -0.03359, - 0.0081788, - -0.066698, - -0.036165, - -0.0041343, - -0.081487, - 0.0053622, - -0.029521, - -0.014436, - -0.062437, - -0.027962, - 0.10455, - 0.18907, - -0.085938, - 0.050637, - -0.0034455, - 0.042878, - -0.0377, - 0.048808, - 0.011068, - -0.037424, - 0.018869, - 0.044824, - -0.097879, - 0.071084, - -0.077225, - 0.038465, - -0.035687, - 0.0088705, - -0.020392, - 0.028186, - 0.10281, - 0.0074296, - 0.022274, - 0.068658, - 0.0024166, - 0.083154, - 0.10333, - 0.006957, - -0.046842, - -0.010978, - 0.044458, - -0.020044, - -0.036427, - -0.049071, - 0.070814, - -0.026011, - 0.030311, - 0.15923, - 0.0036719, - 0.042773, - -0.035659, - 0.037039, - 0.099004, - -0.12334, - -0.040786, - 0.038506, - 0.042294, - 0.045433, - -0.028397, - 0.03564, - -0.12507, - 0.00013449, - 0.029548, - 0.086272, - 0.050167, - 0.075623, - 0.064467, - 0.079573, - 0.054543, - -0.02748, - 0.14334, - 0.05407, - -0.0053812, - 0.071318, - 0.0023474, - 0.009136, - -0.027396, - 0.019821, - -0.027716, - -0.037853, - 0.040754, - -0.034727, - -0.002704, - 0.088553, - -0.037177, - 0.11787, - -0.0086926, - 0.114, - -0.063631, - 0.028903, - 0.008957, - -0.066814, - -0.095051, - -0.05603, - 0.0068511, - 0.0010427, - -0.10361, - -0.010878, - 0.007492, - 0.0052912, - 0.019289, - -0.027622, - -0.0613, - 0.015006, - -0.17568, - 0.049517, - -0.046892, - -0.0070293, - 0.011943, - 0.02983, - 0.085197, - -0.015916, - -0.0040507, - 0.00097984, - 0.023779, - 0.070699, - 0.0066668, - 0.065296, - -0.018776, - 0.0083547, - -0.04028, - 0.019466, - 0.12174, - 0.016729, - -0.056828, - -0.013503, - 0.11067, - -0.011058, - -0.031638, - -0.081645, - 0.030866, - 0.076494, - -0.085773, - 0.00036117, - 0.024054, - -0.067479, - 0.0017115, - 0.0097072, - -0.036337, - 0.045063, - 0.17776, - 0.041452, - 0.017231, - 0.031258, - -0.026375, - 0.018674, - -0.034069, - -0.03727, - -0.0086255, - -0.0087822, - 0.004922, - -0.098615, - 0.14364, - 0.0032496, - -0.0061125, - 0.018586, - -0.011054, - 0.04218, - -0.072608, - -0.0099648 - ], - "couture": [ - 0.003628, - -0.037311, - 0.040658, - -0.067572, - 0.011964, - -0.056755, - 0.028491, - -0.10362, - 0.11563, - -0.10858, - -0.038229, - -0.023688, - -0.12026, - -0.036709, - -0.048185, - 0.051769, - 0.12437, - 0.057395, - 0.043551, - 0.040395, - 0.062797, - 0.00025324, - -0.01077, - 0.10765, - 0.050521, - 0.089719, - 0.076317, - 0.10143, - 0.018405, - 0.049482, - -0.03086, - -0.047785, - 0.11515, - -0.054907, - 0.052736, - 0.027411, - 0.060325, - 0.11167, - -0.029286, - 0.095429, - -0.057802, - -0.11864, - 0.012509, - -0.030938, - -0.073787, - -0.017346, - 0.1066, - 0.085107, - 0.0010306, - -0.12601, - 0.050115, - -0.026122, - -0.062018, - 0.051042, - -0.027713, - -0.095186, - -0.019682, - 0.0047917, - -0.018999, - -0.023657, - 0.012718, - -0.062612, - 0.050025, - -0.058303, - 0.035607, - 0.071536, - -0.02552, - -0.049694, - 0.0099556, - -0.091139, - -0.006896, - -0.015213, - 0.020944, - -0.073445, - -0.0051231, - 0.044878, - 0.063912, - -0.025147, - -0.044501, - 0.077638, - -0.010255, - -0.038449, - 0.11938, - 0.12085, - -0.0074549, - -0.026606, - -0.12721, - -0.003676, - 0.025519, - 0.025778, - 0.0055647, - 0.048908, - -0.1046, - 0.01781, - 0.09036, - 0.10596, - -0.022739, - -0.02476, - -0.0015608, - 0.054233, - 0.013277, - 0.029646, - -0.04271, - 0.067716, - -0.0088699, - -0.12616, - 0.062333, - -0.00033868, - -0.030925, - 0.016028, - 0.020268, - 0.080338, - -0.006522, - 0.050388, - -0.054586, - -0.036841, - 0.019019, - 0.03614, - -0.0094393, - 0.035721, - -0.032804, - 0.015507, - -0.00042097, - -0.020488, - 0.066364, - 0.034166, - 0.014118, - -0.060022, - 0.063808, - 0.080257, - -0.035975, - 0.010911, - 0.060464, - -0.041246, - 0.02548, - -0.010646, - -0.026763, - 0.026922, - 0.010715, - -0.1255, - 0.020192, - -0.017951, - 0.091853, - 0.050706, - -0.020793, - -0.00119, - -0.041924, - -0.0001478, - 0.047688, - -0.015333, - 0.016198, - 0.085152, - -0.015839, - -0.010772, - -0.024741, - 0.031607, - 0.033919, - 0.03376, - 0.031921, - 0.010265, - 0.05247, - -0.056505, - -0.03997, - 0.12968, - -0.073021, - 0.12572, - -0.073224, - -0.037964, - 0.015634, - 0.021198, - -0.015193, - -0.079363, - -0.042284, - -0.094538, - -0.0061285, - 0.074157, - -0.023496, - 0.071019, - -0.026024, - -0.029453, - 0.014142, - -0.084369, - 0.013026, - -0.13761, - 0.026658, - 0.0031957, - -0.054654, - 0.15726, - -0.025386, - 0.035128, - -0.053731, - 0.041737, - 0.031009, - -0.11944, - -0.024504, - 0.065278, - 0.0035093, - 0.038176, - 0.027113, - 0.0055007, - -0.1515, - 0.083992, - -0.017427, - 0.056297, - 0.0097162, - 0.046661, - -0.025894, - -0.10861, - 0.022372, - -0.016438, - 0.11733, - -0.058383, - -0.028178, - -0.047475, - -0.04797, - 0.039843, - 0.0048578, - 0.013713, - -0.01193, - -0.080578, - -0.10346, - -0.058763, - 0.0085845, - 0.083072, - -0.027705, - 0.045447, - 0.0291, - 0.081503, - -0.012513, - -0.0050535, - 0.012748, - -0.055017, - -0.026153, - -0.047995, - 0.017118, - 0.024052, - -0.10252, - -0.041872, - 0.042723, - -0.075062, - 0.062311, - -0.024959, - 0.023743, - -0.059408, - -0.02623, - 0.031897, - -0.0684, - 0.0000055879, - 0.00066962, - -0.036916, - 0.000063208, - -0.0441, - 0.07061, - -0.042425, - 0.047202, - 0.059704, - -0.10507, - -0.042102, - 0.07999, - 0.068515, - 0.068595, - 0.041969, - -0.049636, - -0.036764, - -0.0053267, - -0.0068332, - 0.04086, - 0.018024, - -0.0040741, - -0.044191, - 0.0021523, - 0.059566, - -0.12556, - 0.0037352, - -0.037928, - -0.044312, - -0.068251, - 0.02233, - -0.11329, - -0.032098, - 0.085551, - 0.055625, - 0.010693, - -0.049229, - -0.043729, - -0.052753, - 0.0074357, - -0.012472, - 0.0041578, - 0.022564, - -0.10862, - -0.0052841, - -0.027383, - 0.010703, - -0.09064, - -0.12389, - 0.035601, - 0.057803, - 0.0030904, - -0.052157 - ], - "economic": [ - 0.048364, - -0.09639, - 0.0089018, - 0.012618, - -0.022543, - -0.031936, - 0.0058119, - -0.07505, - 0.071788, - 0.058442, - 0.0074633, - -0.05633, - -0.037165, - -0.041156, - 0.030454, - -0.018227, - 0.064108, - -0.064002, - 0.067473, - 0.039563, - -0.0018611, - 0.027723, - 0.0078322, - 0.12386, - -0.026139, - -0.0012257, - -0.013023, - 0.00098189, - 0.023146, - 0.012827, - -0.00976, - 0.011968, - -0.050776, - -0.12855, - 0.042233, - 0.093157, - 0.034364, - 0.033597, - 0.01209, - -0.00040971, - 0.014448, - -0.098721, - -0.0049211, - 0.022887, - 0.0046819, - -0.0071974, - -0.060766, - -0.01106, - -0.052692, - -0.010006, - -0.031394, - 0.0069705, - -0.034076, - 0.0077354, - 0.041494, - -0.023082, - 0.026968, - -0.0041797, - -0.01833, - 0.019119, - -0.0078493, - 0.025496, - 0.091618, - 0.02597, - 0.12855, - 0.018422, - 0.030292, - -0.013144, - 0.060671, - -0.0078931, - 0.021898, - -0.0039527, - 0.0066177, - -0.027943, - -0.0030351, - 0.015075, - -0.03561, - -0.062455, - 0.014602, - -0.020229, - -0.02117, - 0.066067, - -0.05029, - 0.037102, - -0.0073004, - 0.015651, - -0.0010077, - 0.024625, - 0.022614, - -0.010294, - -0.0020783, - 0.02668, - -0.10637, - 0.028818, - -0.0039771, - 0.015222, - -0.014313, - -0.04643, - 0.04303, - 0.0071879, - 0.043995, - -0.03776, - -0.040399, - -0.083283, - 0.034733, - -0.08744, - 0.019247, - -0.015965, - 0.0099784, - -0.060894, - -0.027301, - 0.095855, - 0.059582, - 0.0099402, - -0.012629, - -0.032703, - 0.0017551, - -0.0032213, - -0.022954, - 0.068603, - -0.0387, - -0.05125, - 0.017046, - 0.038139, - 0.11345, - 0.02908, - -0.022426, - -0.074977, - 0.0014945, - 0.11352, - 0.051192, - -0.043193, - 0.046591, - 0.030803, - -0.017186, - 0.047065, - 0.018901, - 0.057831, - -0.015738, - 0.083935, - 0.030867, - -0.030245, - 0.0055515, - 0.0095735, - -0.029146, - -0.022551, - 0.034113, - 0.020486, - 0.0036787, - 0.032447, - 0.047512, - 0.19183, - 0.011032, - -0.051302, - 0.075083, - 0.016504, - 0.025405, - -0.027464, - -0.0037746, - -0.045337, - 0.065952, - -0.012071, - -0.13065, - 0.022521, - -0.0098793, - 0.056819, - 0.045232, - -0.0020037, - 0.023124, - 0.0059951, - 0.031807, - 0.032902, - -0.020036, - 0.0080237, - -0.038437, - 0.060297, - 0.0041409, - -0.0016583, - -0.019878, - 0.043105, - -0.029936, - 0.025454, - -0.020069, - -0.027735, - 0.0093717, - -0.048766, - -0.063471, - 0.12009, - 0.011486, - -0.0037415, - -0.011676, - 0.017016, - 0.10339, - -0.018194, - 0.0064284, - -0.021352, - -0.037536, - -0.0034596, - -0.011062, - -0.015326, - -0.1305, - -0.039215, - 0.0020464, - -0.033006, - -0.032213, - 0.011568, - 0.01773, - -0.0054446, - 0.040801, - 0.042846, - 0.15675, - 0.0062285, - -0.019629, - -0.019775, - 0.04669, - 0.073061, - 0.029721, - -0.02374, - -0.05613, - -0.036347, - 0.018187, - 0.0078, - -0.052541, - 0.064894, - 0.022115, - 0.023129, - -0.0050845, - 0.068697, - 0.015663, - -0.029567, - -0.013344, - -0.061957, - -0.074509, - -0.030256, - 0.0060794, - 0.0202, - -0.028142, - -0.041298, - -0.015042, - -0.012376, - 0.015203, - 0.082047, - -0.028761, - 0.019048, - -0.16237, - 0.022965, - -0.0045619, - -0.049882, - 0.03533, - -0.0078895, - 0.031953, - -0.029111, - 0.024506, - -0.028291, - -0.046357, - 0.027926, - 0.00033218, - 0.057869, - 0.019206, - -0.014227, - 0.042845, - 0.015477, - 0.029914, - -0.0096438, - 0.06001, - 0.048275, - 0.012257, - 0.056867, - 0.045641, - 0.015397, - -0.02023, - 0.062564, - -0.10501, - -0.025245, - 0.065256, - -0.12716, - 0.013078, - 0.017117, - -0.02555, - -0.037201, - 0.19452, - 0.058529, - -0.026053, - 0.0074703, - 0.047939, - 0.053305, - 0.005583, - 0.01895, - -0.053441, - 0.0019468, - -0.03551, - 0.023505, - -0.037601, - 0.061011, - -0.025571, - 0.032905, - -0.016969, - -0.0096246, - -0.010748, - 0.0056233 - ], - "gymnastics": [ - -0.024108, - -0.037943, - 0.018965, - 0.024837, - -0.021547, - -0.088913, - -0.010858, - -0.082704, - 0.023915, - -0.088759, - 0.0050879, - -0.015184, - 0.080481, - -0.025399, - 0.0012124, - -0.0027802, - 0.12037, - -0.019595, - 0.02894, - -0.0084955, - -0.017364, - -0.042541, - 0.013594, - 0.064834, - -0.05367, - 0.036065, - 0.0099927, - 0.0005237, - -0.022217, - -0.068202, - 0.063615, - -0.064903, - 0.029012, - -0.053441, - 0.042503, - 0.037998, - 0.086289, - -0.069274, - 0.039143, - 0.0051746, - 0.032052, - -0.093681, - 0.032848, - 0.010336, - 0.022496, - 0.00099922, - 0.00036797, - -0.067728, - -0.053919, - 0.026438, - -0.01355, - 0.0037737, - 0.025013, - 0.044037, - -0.050611, - 0.047471, - 0.055629, - -0.032616, - -0.025707, - 0.022637, - 0.023807, - 0.0029653, - 0.041061, - 0.079151, - 0.020228, - -0.051008, - 0.0038994, - -0.044106, - 0.070429, - -0.0081443, - 0.049651, - -0.061789, - 0.023022, - 0.0019991, - 0.063487, - 0.051761, - -0.0030696, - -0.051335, - -0.064805, - -0.054805, - -0.074427, - 0.00090637, - -0.064274, - 0.048045, - -0.019235, - -0.046538, - -0.0045681, - -0.023438, - 0.014912, - 0.027111, - -0.0060726, - 0.043451, - -0.065114, - 0.014586, - 0.040128, - 0.10642, - -0.051496, - -0.0046416, - 0.081569, - 0.07278, - 0.071097, - 0.053432, - -0.038162, - 0.0024558, - 0.0084445, - -0.045103, - -0.012299, - -0.010538, - -0.018748, - -0.0051179, - 0.0229, - 0.054086, - 0.070303, - 0.030696, - 0.062028, - 0.037509, - -0.0041847, - 0.066964, - -0.028136, - 0.009163, - -0.013194, - 0.070274, - -0.047476, - 0.01334, - 0.070906, - -0.032664, - -0.0064277, - -0.047236, - -0.034944, - 0.095229, - -0.019354, - 0.047975, - 0.026253, - -0.040872, - 0.0080708, - -0.038052, - 0.028587, - -0.010952, - -0.0073322, - -0.031977, - 0.022615, - 0.0084533, - -0.08482, - 0.026969, - -0.0094269, - 0.01334, - 0.0046853, - 0.0011877, - 0.072162, - 0.01361, - 0.0082934, - 0.075768, - -0.073537, - -0.058506, - -0.049598, - 0.022808, - 0.0070553, - 0.04204, - -0.015442, - 0.023177, - 0.014583, - 0.0017015, - -0.073726, - 0.041275, - 0.0038608, - 0.013089, - -0.024962, - -0.011793, - -0.058038, - -0.094313, - 0.12032, - 0.004554, - 0.025342, - 0.010365, - 0.097985, - 0.038164, - 0.030648, - 0.042374, - -0.033853, - -0.021199, - 0.021941, - -0.085278, - -0.037303, - -0.027198, - 0.058151, - -0.0036908, - -0.021123, - 0.088846, - 0.023335, - 0.027212, - -0.007695, - 0.034298, - -0.026489, - -0.090639, - 0.050752, - -0.049052, - -0.025957, - -0.00066529, - 0.067762, - -0.0079542, - -0.13028, - 0.01834, - 0.020678, - -0.0062622, - 0.021389, - -0.024698, - -0.023894, - -0.040475, - 0.0011439, - -0.013329, - 0.11769, - 0.04135, - -0.0085242, - 0.0090617, - -0.0098019, - 0.031077, - 0.0096938, - 0.060662, - -0.053303, - -0.014733, - -0.014914, - -0.02774, - -0.076175, - 0.077373, - 0.011204, - 0.070116, - 0.03179, - 0.085197, - -0.030388, - -0.0010742, - 0.027922, - -0.042578, - -0.031999, - -0.03513, - -0.038418, - 0.072427, - 0.0073015, - -0.028691, + "this": [ + 1.0, + 0.5, + 0.7 + ], + "unittest": [ + -0.2, + 0.8, + 1.0 + ], + "simple": [ + 0.7, -0.1, - -0.020414, - 0.010365, - -0.014384, - 0.010975, - -0.015726, - 0.037186, - 0.070933, - -0.069416, - -0.020694, - -0.028214, - 0.045287, - 0.063612, - 0.021571, - -0.070171, - 0.0062626, - -0.0082469, - 0.054939, - -0.040924, - 0.022009, - -0.038092, - 0.075548, - 0.045262, - 0.006375, - 0.11546, - 0.0091558, - 0.03258, - -0.0077428, - -0.017438, - 0.022447, - 0.039986, - -0.013757, - 0.015781, - 0.08688, - -0.078537, - 0.017066, - -0.018927, - -0.041415, - -0.053934, - -0.011232, - 0.06, - -0.013887, - 0.077383, - -0.035828, - 0.028202, - 0.025193, - -0.019647, - 0.035777, - 0.025923, - -0.026201, - -0.037279, - 0.048929, - -0.0029366, - -0.081428, - -0.051443, - -0.034917, - 0.027032, - 0.011905, - 0.019347, - 0.058207, - -0.0020637, - 0.012329 - ], - "specialities": [ - 0.024541, - -0.065356, - 0.021601, - -0.060132, - -0.0044229, - -0.065275, - 0.041962, - -0.077287, - 0.018243, - -0.047807, - -0.027678, - -0.059828, - 0.0050525, - -0.034329, - 0.046382, - 0.006892, - 0.048907, - 0.030312, - 0.049882, - 0.024024, - -0.013947, - 0.013084, - 0.036595, - 0.056266, - 0.020649, - -0.021984, - -0.0096695, - 0.0045482, - 0.087065, - -0.002949, - -0.0058661, - -0.053097, - -0.032819, - -0.047921, - 0.015988, - -0.0050528, - 0.0090976, - 0.049223, - 0.041918, - -0.0092633, - -0.027239, - -0.053926, - 0.011296, - -0.03848, - 0.045371, - -0.056105, - -0.016899, - -0.067211, - 0.00011422, - 0.0080108, - -0.037416, - 0.022174, - -0.012407, - -0.014849, - -0.016397, - 0.040086, - -0.015525, - 0.057623, - -0.025828, - -0.028351, - -0.014905, - -0.0022158, - 0.08977, - 0.0147, - 0.013612, - 0.031343, - -0.058213, - 0.015882, - -0.023395, - -0.020296, - 0.013382, - -0.058242, - 0.031866, - 0.025228, - -0.0031233, - -0.046597, - -0.018341, - -0.025655, - 0.011147, - 0.016407, - -0.0063524, - 0.029924, - 0.0090773, - 0.039757, - -0.030862, - -0.026599, - 0.010056, - -0.00014183, - -0.011173, - 0.0084654, - 0.034278, - -0.0043871, - -0.058226, - 0.019007, - 0.003644, - 0.025869, - -0.0213, - 0.046561, - -0.028196, - -0.00046927, - 0.0034397, - 0.0015213, - -0.039681, - 0.010565, - 0.026005, - -0.045391, - 0.014093, - 0.028095, - -0.028247, - -0.0071756, - 0.0094673, - 0.022897, - 0.022471, - 0.074539, - 0.017234, - 0.036309, - -0.043407, - -0.0071259, - -0.037802, - 0.022592, - 0.025831, - 0.034816, - -0.011322, - -0.058395, - 0.0748, - 0.027418, - -0.027903, - -0.032288, - 0.023258, - 0.095097, - -0.00053113, - 0.050904, - -0.018508, - -0.035093, - -0.035433, - -0.0065163, - -0.00028122, - 0.048963, - 0.011432, - 0.034393, - -0.015688, - -0.038385, - -0.045944, - 0.026395, - -0.020539, - -0.024933, - 0.00027915, - -0.0030485, - -0.015606, - 0.021246, - 0.02701, - 0.05818, - 0.029974, - -0.036557, - 0.059703, - 0.014715, - -0.018595, - 0.02974, - 0.017426, - 0.067514, - 0.035079, - -0.044296, - 0.0034529, - 0.023721, - -0.007913, - 0.027147, - -0.034156, - -0.027077, - -0.038114, - -0.026411, - 0.028243, - -0.023682, - 0.0062192, - -0.0041238, - -0.016288, - 0.021764, - -0.039017, - -0.00028509, - -0.050178, - -0.011344, - -0.0042454, - -0.0086511, - -0.020908, - -0.048869, - 0.049643, - -0.0022086, - 0.050561, - 0.045465, - -0.010961, - 0.017104, - -0.022222, - 0.093047, - -0.048527, - -0.034948, - -0.0019954, - 0.03957, - 0.017273, - -0.030176, - -0.0012156, - 0.00036323, - -0.11501, - -0.012513, - -0.041897, - -0.0059484, - 0.00082197, - -0.036292, - -0.00032847, - -0.018572, - -0.001248, - -0.027044, - 0.079009, - 0.0024165, - 0.019133, - -0.003803, - 0.003137, - -0.00057729, - 0.0073671, - -0.0029463, - -0.090958, - -0.0062538, - 0.0063801, - -0.037555, - -0.046453, - 0.077241, - 0.037432, - -0.010864, - 0.029655, - 0.043915, - 0.021593, - -0.0098588, - -0.034973, - 0.017601, - -0.061981, - -0.0047237, - 0.023114, - 0.0073921, - -0.0050442, - 0.019756, - -0.0044016, - 0.044561, - -0.019975, - -0.014015, - -0.013859, - 0.0092134, - 0.016778, - -0.005715, - -0.037702, - -0.040526, - -0.0011238, - 0.0045616, - -0.0085335, - 0.012059, - -0.0066703, - -0.011487, - -0.031122, - 0.032088, - 0.0058098, - 0.0096343, - 0.027001, - 0.039015, - 0.014587, - -0.0023226, - 0.017927, - -0.043396, - -0.0479, - 0.022172, - -0.0035411, - 0.000032623, - 0.023057, - -0.034733, - 0.0041482, - 0.064908, - -0.055878, - -0.027284, - 0.039843, - -0.0064523, - 0.034052, - 0.026953, - 0.007102, - -0.013733, - 0.028721, - 0.065884, - 0.003269, - -0.0024037, - 0.02893, - 0.019598, - -0.022342, - -0.01425, - -0.0095075, - 0.0073786, - -0.047877, - -0.0047749, - -0.013364, - -0.0413, - 0.0098191, - 0.028097, - -0.0019945, - 0.028974, - -0.0049116, - -0.042171 - ], - "trendy": [ - -0.013348, - -0.023512, - 0.0068713, - 0.069172, - -0.040734, - -0.000318, - 0.037543, - -0.068232, - 0.050911, - -0.027657, - -0.067315, - -0.021115, - -0.07343, - -0.0065628, - -0.029186, - -0.0389, - 0.11839, - 0.072814, - 0.07398, - -0.04295, - 0.051827, - 0.042862, - -0.021713, - 0.061824, - 0.028369, - -0.021533, - 0.035451, - 0.073128, - 0.086129, - -0.048076, - -0.018121, - -0.099791, - 0.055459, - -0.081312, - 0.020676, - 0.067957, - 0.087546, - 0.059601, - -0.034391, - 0.021686, - 0.034455, - -0.17941, - -0.07436, - 0.011364, - 0.052159, - -0.016041, - 0.043376, - -0.024092, - -0.0097729, - 0.012131, - -0.036147, - -0.04654, - -0.1087, - 0.031536, - -0.0051904, - 0.099417, - 0.062046, - -0.0093751, - -0.081243, - 0.044881, - 0.034624, - -0.075763, - 0.14837, - 0.053205, - 0.0558, - 0.10054, - 0.014861, - 0.0060231, - -0.0097986, - -0.1045, - 0.027532, - 0.047043, - 0.017163, - -0.039855, - 0.071172, - 0.020719, - 0.012707, - -0.038951, - 0.027746, - -0.0004872, - 0.011529, - 0.0041713, - -0.028901, - 0.074579, - -0.068061, - 0.028206, - -0.073712, - -0.023487, - -0.016077, - 0.0073666, - 0.034886, - -0.099725, - -0.10484, - -0.030296, - 0.12148, - 0.037602, - -0.046646, - -0.026706, - -0.091685, - 0.055517, - -0.014503, - 0.031051, - -0.018276, - -0.054008, - -0.061459, - -0.16592, - 0.010204, - 0.039265, - 0.060675, - 0.07071, - -0.059626, - 0.10876, - 0.040005, - 0.055663, - -0.075364, - -0.0053081, - -0.042955, - 0.0035134, - -0.055207, - 0.068025, - -0.0057986, - -0.05032, - 0.022759, - -0.10613, - 0.054043, - -0.062928, - -0.013709, - 0.05232, - 0.013005, - 0.027094, - -0.0015531, - 0.10014, - 0.069172, - -0.061038, - -0.030107, - 0.031557, - -0.0314, - 0.036601, - -0.023769, - -0.083665, - 0.088303, - -0.011478, - 0.026106, - 0.10528, - -0.016902, - -0.029854, - 0.051606, - 0.075727, - 0.014062, - 0.029546, - 0.057275, - -0.0050694, - -0.044481, - 0.0091851, - -0.044607, - 0.0035346, - -0.026795, - 0.11268, - -0.010364, - 0.066695, - 0.10613, - 0.0075248, - 0.0069044, - 0.04371, - -0.048, - -0.017852, - -0.027008, - -0.074203, - -0.029521, - 0.054199, - -0.05325, - -0.02102, - 0.061209, - -0.037646, - 0.013524, - 0.085612, - -0.069756, - 0.0506, - -0.029495, - -0.058428, - 0.017894, - -0.022765, - -0.025166, - -0.067682, - 0.089724, - -0.087623, - -0.017434, - 0.16085, - -0.060846, - 0.061256, - -0.023601, - 0.043595, - -0.013652, - -0.019175, - 0.031962, - -0.0059845, - 0.08456, - 0.01402, - 0.018966, - 0.071643, - -0.1096, - 0.094184, - 0.046987, - -0.026562, - 0.010436, - 0.051538, - -0.0046589, - -0.041024, - -0.025238, - -0.055895, - 0.04802, - -0.034371, - 0.040164, - 0.029867, - 0.083502, - -0.017018, - -0.043475, - -0.060965, - -0.14023, - -0.031144, - -0.059589, - -0.025775, - 0.070156, - 0.081435, - -0.0013201, - -0.036645, - 0.026634, - 0.034166, - 0.021383, - 0.014968, - -0.025606, - -0.019495, - -0.049642, - 0.0084789, - 0.096472, - -0.079668, - -0.048413, - -0.012721, - 0.051718, - 0.015101, - 0.12409, - -0.045285, - -0.014359, - -0.0078209, - -0.08696, - 0.095909, - -0.06533, - 0.0014529, - -0.052372, - -0.05006, - -0.084287, - -0.0075396, - -0.083726, - -0.033743, - 0.019022, - 0.0040741, - -0.034148, - 0.036321, - 0.087474, - 0.018174, - 0.084955, - 0.03163, - 0.04621, - 0.0060042, - 0.018333, - 0.086977, - 0.0027925, - -0.04779, - 0.037273, - 0.01798, - -0.070031, - 0.072416, - -0.096264, - -0.044969, - 0.13815, - -0.10271, - 0.027924, - 0.077187, - -0.093173, - -0.0029597, - 0.1646, - 0.057615, - 0.042211, - 0.02194, - -0.087608, - -0.045133, - -0.027892, - -0.013941, - 0.048477, - -0.0094098, - -0.077766, - -0.01269, - 0.064591, - 0.022443, - -0.048377, - -0.06124, - 0.025783, - 0.1015, - -0.045122, - 0.024604 - ], - "home": [ - 0.015336, - -0.057898, - 0.019616, - -0.0082328, - 0.072016, - -0.045188, - 0.020817, - -0.13684, - 0.02321, - 0.020705, - -0.079355, - -0.08456, - -0.032618, - 0.021143, - 0.0040966, - -0.0050407, - 0.18436, - -0.023891, - 0.095756, - -0.0024246, - 0.024079, - -0.03949, - 0.040493, - 0.077584, - 0.047541, - 0.013978, - 0.0024133, - 0.048004, - 0.0078352, - 0.055994, - -0.032818, - -0.0066793, - -0.052236, - -0.034425, - 0.021378, - 0.02464, - -0.0048201, - 0.015571, - 0.049781, - -0.020451, - 0.0067243, - -0.13924, - -0.005323, - -0.022348, - 0.0043172, - -0.012741, - 0.0016067, - 0.012137, - -0.078137, - 0.029223, - 0.024543, - 0.050435, - -0.027081, - 0.038158, - -0.1738, - -0.0022254, - 0.01347, - -0.01462, - -0.068819, - -0.074551, - -0.0090363, - -0.051599, - 0.1699, - 0.057919, - 0.090865, - 0.020165, - -0.063118, - -0.043896, - -0.028372, - -0.041782, - 0.046344, - 0.048322, - 0.036383, - -0.058663, - -0.0066708, - -0.016033, - -0.013508, - -0.016194, - 0.020767, - 0.054627, - -0.018221, - 0.013373, - 0.030697, - 0.058911, - -0.058508, - -0.040169, - -0.0016123, - -0.080495, - -0.0020973, - -0.015659, - -0.0071214, - 0.061949, - -0.15865, - 0.090081, - 0.039475, - 0.11588, - -0.026653, - 0.047239, - 0.038545, - -0.039304, - 0.090481, - 0.00089191, - -0.0041644, - -0.076777, - 0.058038, - -0.17671, - -0.077908, - 0.052409, - 0.04562, - -0.053975, - -0.013303, - 0.1476, - 0.11541, - 0.11755, - -0.016307, - 0.023314, - -0.0076065, - -0.049978, - -0.038796, - -0.024255, - -0.06877, - 0.0070127, - 0.032629, - 0.025973, - -0.0098592, - -0.027291, - -0.044667, - -0.147, - 0.05229, - 0.027756, - 0.035952, - 0.02829, - 0.03322, - -0.037808, - -0.038115, - -0.071972, - 0.037556, - 0.038292, - -0.042523, - -0.048705, - 0.04717, - 0.033508, - 0.028841, - 0.034113, - -0.0014803, - 0.074309, - 0.04498, - 0.031616, - -0.031723, - -0.034674, - -0.011127, - 0.072225, - -0.035917, - -0.071517, - 0.039156, - -0.019243, - 0.037314, - 0.029864, - 0.080643, - -0.040417, - 0.030222, - -0.050875, - 0.040916, - 0.027394, - 0.036749, - -0.039557, - 0.031569, - -0.052978, - -0.03966, - 0.0017587, - -0.021956, - 0.032053, - -0.014521, - 0.029569, - 0.032498, - 0.036098, - 0.041699, - -0.01609, - -0.069275, - 0.035661, - 0.04607, - -0.019639, - -0.053766, - -0.033507, - -0.059551, - 0.0027911, - -0.046675, - 0.092984, - -0.0043064, - -0.081277, - 0.05245, - 0.10948, - 0.019554, - 0.0013504, - -0.01847, - 0.03543, - 0.096543, - 0.0406, - 0.053649, - 0.019818, - -0.22084, - 0.15154, - -0.009284, - -0.082486, - -0.00259, - -0.083791, - -0.010474, - -0.057688, - -0.049904, - -0.04248, - 0.13044, - -0.078509, - -0.014575, - 0.0081948, - -0.078393, - 0.0038148, - -0.046967, - 0.02457, - 0.11386, - -0.10452, - 0.033473, - -0.051073, - 0.021759, - 0.1738, - 0.033512, - -0.084376, - -0.060176, - 0.088633, - -0.067304, - -0.086161, - 0.056611, - -0.047516, - -0.048931, - -0.034187, - -0.020926, - 0.021155, - 0.019989, - 0.037405, - -0.014667, - 0.029994, - 0.12688, - -0.049027, - 0.10214, - -0.057659, - -0.059828, - 0.070299, - -0.0099088, - -0.034672, - -0.026487, - 0.060199, - 0.042991, - -0.07201, - -0.030215, - -0.047671, - -0.0074607, - -0.050795, - -0.045677, - 0.027362, - -0.077986, - -0.054688, - 0.0016676, - -0.025023, - -0.070586, - -0.025292, - 0.078835, - 0.014465, - 0.030681, - -0.017636, - 0.055156, - 0.024859, - -0.099467, - 0.12278, - -0.20259, - -0.078312, - 0.018591, - -0.032458, - 0.042378, - 0.021746, - 0.047592, - 0.086951, - 0.10796, - -0.012999, - -0.038745, - -0.00062493, - 0.043748, - 0.032081, - -0.0058782, - -0.07785, - -0.065179, - -0.0023368, - 0.037619, - 0.10197, - -0.038301, - 0.040424, - 0.0017264, - 0.014575, - 0.031414, - 0.079795, - 0.016029, - 0.047662 - ], - "employment": [ - 0.025631, - -0.012132, - 0.021523, - -0.008416, - -0.012292, - -0.015139, - 0.013672, - -0.082182, - 0.04865, - 0.0089093, - -0.034927, - -0.011164, - -0.06503, - -0.011609, - -0.03346, - 0.015078, - 0.040667, - 0.014729, - 0.040108, - 0.016162, - 0.017505, - 0.027378, - -0.02524, - 0.045473, - -0.064555, - -0.0011507, - -0.051551, - 0.0029934, - 0.011549, - 0.000078265, - -0.011232, - 0.030383, - -0.034123, - -0.063462, - 0.020348, - 0.073447, - 0.0016255, - 0.033125, - 0.039518, - -0.00036107, - 0.03843, - -0.075124, - 0.035222, - -0.0085077, - 0.0080465, - -0.0094573, - 0.018418, - -0.064755, - -0.032118, - 0.030647, - -0.026857, - 0.0045097, - 0.002134, - 0.0065341, - -0.063589, - -0.029815, - -0.04072, - -0.0019935, - -0.049985, - -0.023273, - -0.026404, - 0.043646, - 0.094474, - 0.042317, - 0.040304, - -0.048741, - -0.04494, - -0.075302, - 0.013998, - 0.013613, - -0.005304, - 0.0018077, - 0.032283, - -0.0034155, - 0.017642, - 0.01627, - 0.0096795, - -0.02006, - -0.0092692, - -0.065748, - 0.036148, - 0.0042434, - -0.014249, - 0.042291, - -0.034078, - 0.026556, - 0.0066825, - -0.029085, - -0.04728, - 0.02866, - 0.0083994, - 0.038933, - -0.075424, - 0.014091, - -0.043627, - 0.031747, - -0.022549, - -0.023683, - 0.016731, - 0.0024195, - 0.030304, - -0.032795, - 0.027917, - -0.019383, - 0.02962, - -0.04227, - 0.035357, - 0.0513, - 0.034457, - -0.036563, - -0.025963, - 0.070302, - 0.055129, - 0.043573, - 0.0061221, - -0.0059804, - -0.013481, - -0.010744, - -0.054739, - 0.015731, - -0.015738, - 0.0021824, - -0.012404, - 0.0069558, - 0.039873, - 0.011202, - -0.0051562, - -0.074099, - 0.02841, - 0.076934, - 0.045646, - -0.036086, - -0.034941, - -0.0033143, - -0.065224, - 0.027413, - 0.0030833, - 0.023041, - -0.030032, - 0.00036483, - 0.0013247, - -0.013518, - 0.0045674, - 0.026233, - 0.0017159, - 0.035087, - -0.040608, - -0.023203, - 0.012457, - 0.031093, - 0.036196, - 0.035202, - -0.010701, - -0.080575, - 0.04409, - 0.0044708, - -0.022574, - 0.020822, - -0.011884, - 0.0039366, - 0.059943, - -0.027063, - -0.049125, - 0.0040368, - 0.016766, - -0.020937, - 0.017505, - -0.041027, - -0.01725, - 0.019146, - 0.0082334, - -0.0045808, - 0.0023601, - 0.0025428, - -0.0026139, - 0.046593, - -0.0066826, - 0.044266, - -0.050852, - 0.040878, - 0.00098686, - -0.033536, - -0.030224, - 0.0051085, - 0.015312, - -0.049741, - 0.008137, - 0.072732, - 0.010386, - 0.087505, - -0.026985, - 0.044691, - 0.0080493, - -0.0073955, - 0.032476, - -0.00028565, - -0.0106, - -0.025916, - -0.011328, - -0.051158, - -0.13361, - 0.087448, - -0.035573, - -0.022972, - -0.032659, - 0.049878, - 0.013274, - 0.015941, - 0.01278, - 0.0054784, - 0.10198, - -0.0022363, - -0.0037234, - -0.020034, - 0.010736, - 0.064129, - 0.028056, - -0.025015, - 0.00095339, - -0.070381, - 0.036725, - -0.070365, - -0.016239, - 0.081996, - 0.03612, - -0.021989, - -0.034419, - 0.045531, - -0.0027437, - -0.037705, - 0.047699, - -0.050959, - -0.045577, - -0.053597, - 0.017561, - -0.011613, - 0.021922, - -0.028338, - -0.0056759, - -0.034787, - 0.01588, - 0.048512, - 0.0059191, - -0.0069934, - -0.042293, - -0.016692, - -0.0081361, - -0.084302, - 0.00092309, - -0.013723, - 0.0033314, - -0.0070602, - 0.049388, - -0.061079, - 0.016489, - -0.025411, - 0.003937, - 0.022355, - 0.054376, - -0.026601, - 0.016943, - -0.025118, - 0.036154, - 0.0018982, - -0.0011286, - 0.018828, - 0.017537, - -0.0039691, - -0.036932, - -0.012202, - -0.024477, - 0.049049, - -0.11387, - -0.043274, - -0.036311, - -0.0031266, - 0.042948, - 0.0021972, - -0.019793, - 0.014486, - 0.074645, - 0.014627, - 0.0030775, - -0.008441, - 0.023309, - 0.10225, - -0.030273, - 0.033885, - -0.054211, - 0.038153, - 0.033077, - 0.017815, - -0.015249, - 0.009577, - -0.038091, - 0.06825, - -0.062506, - 0.00060699, - -0.035694, - -0.025039 - ], - "doorstep": [ - 0.047179, - -0.042822, - 0.0036043, - -0.0082709, - 0.035031, - -0.054898, - 0.045149, - -0.13422, - -0.0093763, - 0.027127, - -0.04607, - -0.10256, - 0.055437, - 0.0087904, - -0.044756, - -0.067215, - 0.021764, - 0.011137, - 0.071377, - 0.013845, - 0.017822, - -0.023646, - 0.015687, - 0.016902, - -0.025195, - -0.0051989, - 0.028319, - 0.003608, - -0.058781, - 0.0057237, - 0.033496, - 0.024385, - 0.015369, - -0.086619, - -0.04126, - 0.014469, - -0.048031, - 0.023429, - -0.041318, - -0.026935, - 0.0073358, - -0.14285, - -0.047647, - 0.0092392, - 0.034345, - 0.037545, - 0.0039392, - -0.0017571, - -0.070578, - -0.016106, - 0.084333, - -0.021196, - -0.014462, - 0.017473, - -0.15949, - -0.0021375, - 0.026764, - -0.0028219, - -0.093018, - -0.0373, - -0.020433, - -0.027467, - 0.12958, - 0.04638, - -0.0080285, - 0.02321, - 0.02305, - -0.016343, - -0.062678, - -0.0028965, - 0.032864, - 0.033468, - -0.056243, - -0.028263, - 0.0021699, - 0.0011618, - -0.026501, - -0.080471, - 0.019822, - 0.049676, - 0.0066839, - -0.04879, - 0.011575, - 0.084207, - -0.012045, - -0.023634, - -0.019273, - -0.046708, - 0.086922, - 0.0029516, - -0.11114, - -0.049719, - -0.1099, - 0.03581, - 0.038793, - 0.050044, - 0.037567, - 0.026254, - -0.059149, - -0.041446, - -0.038864, - -0.013094, - -0.0050549, - -0.016142, - 0.034034, - -0.081628, - 0.030655, - -0.0050476, - 0.023912, - -0.095622, - -0.040133, - 0.038891, - 0.083481, - 0.037224, - -0.016332, - -0.02395, - 0.015417, - 0.034814, - -0.051009, - -0.053793, - 0.019025, - -0.053662, - 0.021971, - -0.040186, - -0.0049724, - -0.02316, - 0.013715, - -0.13657, - 0.057725, - 0.036396, - -0.0033545, - -0.030577, - -0.033696, - 0.0093758, - 0.013528, - -0.080096, - -0.027258, - 0.05388, - -0.046964, - -0.052907, - -0.034051, - -0.015468, - 0.03089, - -0.001513, - 0.0049671, - 0.10058, - 0.046885, - 0.059183, - 0.0070945, - -0.018083, - -0.018401, - -0.021165, - -0.013714, - -0.077638, - 0.00084054, - 0.0014822, - 0.076329, - -0.020086, - 0.022147, - -0.0053845, - 0.052892, - -0.027362, - -0.019239, - 0.049231, - -0.028932, - -0.026608, - 0.031821, - -0.061623, - 0.0098421, - 0.023103, - -0.020871, - 0.0434, - -0.054886, - 0.025579, - 0.027437, - -0.0099472, - 0.01336, - -0.030855, - 0.036927, - 0.039613, - 0.025737, - -0.011535, - 0.035278, - -0.094833, - -0.017988, - 0.028943, - -0.046106, - 0.04318, - -0.028685, - -0.072479, - -0.018542, - 0.0076108, - -0.019226, - -0.016735, - 0.069788, - 0.013423, - 0.022239, - 0.0057214, - -0.0060509, - 0.046941, - -0.1749, - 0.092122, - 0.055509, - 0.018137, - -0.035105, - -0.0044918, - 0.066194, - -0.020964, - -0.076259, - -0.039342, - 0.063564, - -0.028291, - 0.05312, - -0.054062, - -0.038452, - -0.024064, - 0.034897, - -0.089825, - 0.034005, - -0.073011, - 0.080181, - -0.032656, - -0.0099, - 0.083119, - -0.015743, - -0.014148, - -0.012966, - 0.030833, - -0.001301, - 0.034924, - -0.042078, - -0.074523, - -0.012299, - -0.04989, - 0.071567, - -0.029552, - 0.014985, - -0.011546, - -0.053723, - -0.010347, - 0.10865, - -0.010851, - 0.020215, - 0.0064018, - -0.026665, - -0.041547, - -0.0045021, - -0.032386, - 0.0084367, - 0.018597, - -0.042358, - -0.010001, - -0.039731, - 0.014172, - 0.054818, - 0.032288, - -0.072203, - 0.049987, - -0.00072705, - 0.025629, - -0.05345, - -0.048789, - -0.068037, - -0.06795, - 0.030769, - -0.019489, - 0.025685, - 0.011232, - 0.028325, - 0.022731, - -0.064076, - 0.10489, - -0.13471, - -0.06525, - 0.14031, - -0.033353, - 0.073618, - 0.064021, - -0.055939, - 0.0096301, - -0.0002998, - 0.059824, - 0.059219, - 0.001541, - 0.034281, - 0.050798, - -0.013207, - -0.024948, - -0.02996, - -0.041602, - 0.036451, - 0.03081, - -0.016716, - 0.019899, - -0.033663, - -0.025038, - 0.029987, - 0.059868, - -0.035455, - 0.014215 - ], - "criminology": [ - 0.034714, - -0.087948, - -0.0037493, - -0.010596, - 0.024562, - -0.034379, - 0.026523, - -0.09557, - 0.050901, - 0.032251, - 0.0071005, - -0.051437, - 0.0027692, - -0.0085417, - 0.016128, - -0.018062, - 0.10262, - 0.026051, - 0.015794, - 0.04286, - -0.0089281, - 0.0013679, - 0.010415, - 0.066349, - 0.049894, - 0.068954, - -0.018393, - 0.045544, - 0.01864, - 0.091205, - 0.038015, - 0.0096041, - -0.066635, - -0.076161, - 0.034547, - 0.0028958, - 0.0394, - 0.026668, - -0.050478, - -0.02775, - -0.0367, - -0.11613, - 0.061743, - -0.031671, - 0.043628, - -0.033001, - 0.055551, - 0.024561, - 0.056916, - 0.022461, - -0.067929, - 0.017805, - 0.0015646, - 0.016607, - -0.016152, - 0.0089717, - -0.0072786, - 0.020684, - -0.054709, - 0.027279, - 0.041467, - -0.050222, - 0.066007, - 0.028176, - -0.01522, - -0.00040529, - 0.015713, - -0.015434, - -0.0057299, - 0.0578, - -0.012861, - -0.0040416, - -0.0081242, - -0.061388, - 0.034222, - -0.064779, - 0.0042891, - -0.023572, - 0.065406, - 0.04062, - -0.038923, - 0.026088, - -0.052141, - 0.0042199, - -0.084681, - -0.012677, - 0.068107, - -0.023096, - 0.04016, - 0.071438, - 0.04024, - 0.045792, - -0.074915, - 0.028962, - 0.050557, - 0.038863, - -0.015243, - -0.025288, - -0.011234, - -0.011822, - 0.0040793, - -0.058081, - -0.023087, - -0.067566, - -0.012653, - -0.046095, - 0.015113, - 0.058439, - 0.052803, - -0.017576, - -0.021181, - 0.061739, - 0.030485, - -0.032687, - -0.00042734, - 0.024545, - -0.050237, - -0.056439, - 0.0015304, - 0.063097, - -0.027572, - 0.024822, - 0.00067929, - -0.046438, - 0.069134, - 0.010197, - -0.053758, - -0.0023378, - -0.042494, - 0.10602, - 0.03432, - 0.02794, - 0.048208, - -0.020426, - 0.023589, - -0.019049, - 0.01435, - 0.037873, - 0.048385, - -0.043976, - 0.0010414, - 0.0045975, - -0.039564, - -0.007369, - -0.012027, - -0.042185, - 0.011052, - 0.030996, - -0.00079567, - -0.057968, - 0.076874, - 0.061636, - 0.0021447, - -0.067051, - -0.013706, - 0.053708, - -0.04963, - -0.0053162, - 0.044347, - 0.020018, - 0.041954, - -0.033573, - -0.08177, - 0.060315, - -0.048954, - -0.061283, - -0.015431, - 0.00040824, - -0.033803, - -0.057011, - -0.011327, - -0.023058, - 0.055076, - -0.011637, - 0.043934, - 0.049723, - 0.0043714, - 0.017192, - -0.014125, - -0.029331, - -0.074974, - 0.016277, - 0.0016762, - -0.024961, - 0.024566, - -0.07039, - -0.027182, - 0.11512, - 0.063633, - 0.099133, - -0.035857, - 0.061571, - -0.041558, - -0.061244, - -0.0048097, - 0.0090321, - -0.0056038, - -0.0066699, - -0.069673, - 0.024965, - -0.10521, - -0.051354, - 0.0073027, - -0.006233, - -0.045424, - 0.026765, - 0.022912, - -0.030672, - -0.058742, - 0.026231, - 0.070601, - 0.039816, - -0.034263, - -0.060431, - 0.012375, - 0.043625, - -0.0067093, - -0.039811, - -0.056133, - -0.054186, - -0.041431, - -0.047429, - -0.062179, - 0.088097, - 0.013456, - -0.05752, - 0.0069646, - 0.055305, - 0.025766, - -0.0057175, - 0.031232, - -0.0075155, - 0.0034757, - -0.028387, - 0.0091499, - 0.018371, - -0.0079104, - -0.031325, - -0.038528, - 0.059559, - -0.014772, - -0.040556, - -0.043112, - 0.036077, - 0.023343, - -0.014102, - -0.0018346, - -0.023485, - -0.060194, - 0.044025, - 0.084382, - 0.058268, - -0.013011, - -0.055567, - -0.011603, - -0.0098352, - 0.012362, - 0.037837, - 0.054624, - -0.025863, - -0.00099287, - -0.00074087, - 0.029159, - -0.017447, - -0.058886, - 0.0060257, - -0.0044522, - 0.030199, - 0.075982, - 0.0056847, - 0.00069311, - 0.056609, - -0.063019, - -0.03812, - 0.0071322, - -0.02492, - 0.039444, - 0.051783, - -0.016272, - 0.0024979, - 0.090908, - 0.053559, - 0.0047844, - -0.059226, - -0.047889, - -0.027122, - -0.028222, - -0.0021909, - -0.026487, - 0.018893, - -0.014941, - -0.021928, - -0.021391, - -0.024461, - -0.049686, - 0.011616, - -0.029979, - 0.049343, - -0.035347, - -0.043563 - ], - "aptitudes": [ - -0.014649, - -0.029493, - 0.046612, - -0.054163, - -0.042753, - -0.000092394, - -0.041932, - -0.065556, - 0.034482, - -0.016197, - 0.023898, - -0.064232, - -0.049766, - 0.049144, - 0.014698, - 0.012412, - 0.018591, - 0.054016, - 0.017892, - 0.040067, - -0.022755, - 0.057594, - 0.012089, - 0.047493, - -0.10312, - -0.0017952, - -0.016785, - -0.018231, - 0.14249, - -0.025394, - -0.012746, - -0.028624, - 0.037504, - -0.072533, - 0.049063, - -0.0070871, - 0.03559, - -0.028308, - 0.0014719, - 0.0081315, - -0.00094774, - 0.0021748, - -0.024418, - -0.024233, - 0.039567, - -0.1059, - -0.051857, - -0.045173, - 0.0048883, - -0.076614, - 0.027327, - 0.061907, - 0.018859, - 0.028831, - -0.044877, - 0.049091, - 0.029725, - -0.00046858, - 0.022701, - 0.012994, - -0.01586, - 0.035324, - 0.063475, - 0.041495, - 0.014903, - -0.059146, - -0.063833, - -0.0087499, - -0.0049023, - 0.013664, - 0.086024, - -0.032982, - 0.059578, - 0.0099915, - -0.035929, - 0.012763, - -0.016421, - -0.055433, - 0.017946, - 0.017163, - -0.011916, - 0.0084682, - 0.071752, - 0.078857, - 0.039298, - -0.052527, - 0.020333, - 0.010646, - -0.059794, - 0.028411, - 0.061855, - -0.021474, - -0.056383, - 0.013442, - -0.04774, - 0.10376, - -0.081614, - -0.020923, - 0.047326, - 0.078573, - 0.060383, - 0.045276, - 0.043069, - -0.023697, - 0.039358, - -0.0088256, - 0.057453, - 0.027522, - 0.00027913, - 0.021732, - -0.033791, - 0.089523, - 0.0080415, - -0.019314, - 0.065698, - -0.010549, - -0.028863, - 0.039617, - -0.037594, - -0.021489, - 0.031991, - -0.015915, - 0.00087691, - -0.085936, - 0.10566, - -0.016796, - 0.035365, - -0.04024, - 0.0098279, - 0.039057, - 0.048778, - -0.098063, - 0.023904, - 0.029706, - -0.06465, - -0.027012, - 0.0022215, - 0.031495, - 0.012867, - 0.059101, - -0.022497, - -0.029486, - -0.011681, - 0.025799, - -0.0026182, - 0.0022156, - -0.016567, - -0.002917, - 0.0029791, - 0.086584, - 0.018163, - 0.1718, - 0.029583, - -0.020415, - -0.025563, - 0.020626, - 0.0026627, - 0.020549, - 0.00086252, - -0.030538, - 0.030866, - -0.036757, - 0.0035731, - -0.047136, - 0.045701, - -0.026355, - -0.011035, - -0.067279, - -0.053854, - -0.0049193, - 0.038269, - -0.020074, - 0.020982, - 0.026948, - -0.036758, - 0.053757, - 0.029789, - 0.053738, - -0.039143, - -0.035844, - 0.056953, - -0.1004, - -0.10107, - -0.017939, - 0.037407, - -0.01759, - 0.02226, - 0.12668, - -0.043861, - 0.070228, - 0.040342, - 0.097696, - -0.001438, - -0.076067, - -0.021349, - 0.064163, - 0.0035092, - 0.041972, - 0.0019797, - 0.047205, - -0.049502, - -0.038073, - 0.043096, - 0.01032, - -0.030022, - 0.047894, - 0.061619, - -0.023221, - 0.0062035, - -0.022024, - 0.043029, - 0.024802, - 0.029051, - -0.02494, - 0.035237, - 0.070688, - -0.080709, - -0.012737, - -0.11916, - 0.10509, - -0.042239, - 0.0087536, - -0.0074819, - 0.068577, - 0.047798, - -0.052821, - 0.062104, - 0.08782, - 0.015145, - 0.00062799, - 0.020383, - -0.021278, - -0.15404, - -0.020483, - 0.051837, - 0.066498, - 0.014867, - -0.026048, - -0.078068, - 0.0844, - -0.028215, - 0.037531, - 0.0203, - 0.034667, - -0.02897, - -0.0046896, - -0.033016, - -0.080645, - -0.015821, - 0.0020837, - 0.0022416, - 0.036406, - -0.0050002, - -0.064455, - -0.024958, - 0.038028, - -0.036831, - 0.028485, - 0.057475, - 0.025657, - -0.020303, - -0.018815, - -0.040357, - 0.016696, - -0.038029, - 0.032633, - -0.058377, - 0.077157, - 0.0041676, - -0.06802, - 0.046963, - 0.04412, - -0.044037, - -0.034757, - 0.14294, - -0.069146, - 0.030679, - -0.019216, - 0.057246, - -0.036165, - -0.0054567, - 0.041451, - 0.082632, - -0.049862, - 0.046159, - 0.057292, - -0.04961, - 0.053911, - 0.0056661, - -0.0070553, - -0.032227, - 0.016902, - -0.077609, - 0.049139, - -0.04204, - 0.056615, - -0.0076304, - -0.050712, - -0.016348, - -0.0026519 - ], - "theatrical": [ - -0.034462, - -0.027997, - 0.02778, - 0.059344, - 0.00050925, - -0.019512, - 0.013926, - -0.064287, - 0.061585, - -0.023299, - 0.019757, - -0.03386, - 0.063819, - -0.048172, - -0.047729, - -0.012061, - 0.037097, - 0.0082232, - -0.0097552, - 0.015005, - -0.03519, - -0.068581, - 0.0094903, - 0.076864, - 0.021481, - 0.03726, - -0.014147, - 0.059804, - 0.037841, - 0.02812, - -0.079608, - -0.040689, - -0.043589, - -0.10061, - 0.046937, - 0.078929, - 0.031146, - 0.0034836, - 0.022962, - 0.0017698, - -0.013047, - -0.1071, - 0.023212, - -0.015203, - 0.0031497, - 0.018272, - 0.064065, - -0.028594, - -0.017189, - -0.036968, - -0.01617, - 0.022064, - -0.0014913, - 0.0078243, - 0.018381, - 0.002538, - 0.042747, - -0.03457, - -0.014756, - -0.021232, - 0.032724, - -0.017922, - 0.097037, - -0.015153, - 0.058054, - 0.048917, - -0.011654, - -0.012991, - 0.045955, - -0.0014631, - 0.006118, - -0.049839, - 0.037758, - 0.023022, - 0.037001, - 0.027415, - -0.014531, - -0.054852, - 0.041548, - 0.03223, - -0.038217, - -0.013005, - -0.05258, - 0.027078, - -0.064788, - -0.020445, - -0.03986, - 0.024104, - -0.038002, - 0.0092622, - -0.022057, - -0.0014846, - -0.089516, - 0.019053, - 0.0057578, - 0.035571, - -0.018435, - 0.02632, - 0.021216, - 0.030909, - 0.040103, - 0.053048, - -0.052252, - 0.028627, - -0.012771, - -0.096153, - -0.0045837, - -0.012043, - -0.062701, - 0.054073, - -0.039169, - 0.046526, - 0.015342, - 0.022943, - 0.020894, - -0.039953, - 0.03863, - 0.023432, - -0.031576, - 0.0137, - -0.0043305, - -0.070188, - -0.062434, - 0.020501, - 0.069258, - 0.032672, - 0.022076, - 0.0028198, - -0.011294, - 0.046042, - 0.0074321, - 0.015651, - -0.028779, - -0.000013302, - -0.0045536, - 0.0091587, - 0.0057144, - 0.024489, - 0.020987, - -0.016308, - -0.019981, - 0.0045383, - -0.0021727, - 0.039464, - -0.016449, - -0.0038578, - -0.033809, - -0.066283, - -0.0023932, - 0.0076533, - 0.029195, - 0.13987, - -0.040828, - -0.02234, - -0.046315, - 0.026322, - 0.019646, - 0.01496, - 0.034995, - 0.016967, - 0.0024766, - 0.0043436, - -0.067748, - 0.0073198, - -0.040003, - 0.050691, - 0.028035, - -0.03965, - -0.024771, - -0.013312, - 0.037134, - 0.0047924, - 0.013115, - 0.020873, - -0.036935, - 0.051056, - 0.0074562, - 0.0020985, - -0.030525, - -0.013866, - -0.013739, - -0.0080828, - -0.0037141, - -0.042908, - -0.026491, - -0.042571, - -0.02961, - 0.085436, - -0.012987, - 0.026058, - 0.036252, - 0.064073, - 0.11619, - -0.095984, - -0.054551, - 0.032409, - -0.00072569, - 0.045755, - 0.0024166, - -0.025918, - -0.13223, - 0.028861, - -0.0023159, - 0.013213, - 0.067635, - 0.014683, - -0.028203, - 0.03455, - -0.040794, - 0.0032865, - 0.14474, - 0.0053458, - -0.010524, - 0.025992, - 0.00025231, - 0.017559, - 0.039404, - -0.0092798, - -0.049815, - -0.022448, - 0.017388, - 0.0079796, - -0.03428, - 0.059584, - -0.0050818, - -0.037896, - 0.056313, - 0.058356, - -0.008494, - -0.031813, - 0.014675, - -0.086443, - -0.042572, - 0.0212, - 0.011955, - -0.063866, - 0.018036, - -0.090168, - -0.0037608, - -0.053496, - 0.047623, - -0.021968, - -0.023744, - 0.050415, - -0.13776, - -0.036382, - -0.071035, - -0.02622, - 0.035975, - -0.0092131, - 0.020499, - -0.049385, - -0.021332, - 0.055997, - -0.046978, - 0.060351, - -0.016058, - -0.008777, - 0.0066979, - -0.0032477, - 0.059265, - 0.01402, - -0.039333, - -0.002189, - 0.0027693, - 0.060798, - 0.022265, - 0.011534, - -0.028293, - -0.018615, - 0.044578, - 0.060778, - -0.078293, - 0.0073205, - 0.0055526, - -0.10237, - -0.0011968, - 0.02113, - -0.0090113, - 0.030072, - 0.12671, - 0.020955, - -0.0011801, - -0.028631, - -0.00072226, - 0.01896, - -0.0089593, - -0.026898, - 0.015957, - 0.030487, - 0.045461, - 0.050114, - 0.015234, - 0.0070893, - -0.003625, - 0.04507, - 0.0207, - 0.033369, - 0.037303, - 0.02031 - ], - "passions": [ - -0.0085374, - 0.023664, - 0.087959, - -0.037717, - -0.002606, - 0.021559, - -0.050387, - -0.063726, - 0.066675, - 0.011523, - 0.0092064, - -0.049456, - 0.0024753, - -0.02342, - -0.0062546, - -0.025102, - 0.030649, - 0.0098669, - 0.016465, - 0.089757, - -0.026182, - 0.021872, - 0.076198, - 0.075837, - 0.01225, - -0.014367, - 0.027021, - 0.0086191, - 0.08584, - -0.076703, - 0.0093625, - -0.044597, - -0.011683, - -0.0394, - -0.0093908, - 0.027933, - 0.0036458, - 0.0013355, - 0.0062277, - 0.053413, - -0.0444, - -0.057303, - -0.025712, - 0.031095, - -0.056417, - -0.02336, - 0.015002, - -0.022333, - 0.010105, - -0.028907, - 0.045362, - 0.026306, - -0.02571, - 0.047685, - -0.068339, - 0.017855, - 0.030824, - 0.0099876, - -0.043016, - 0.058825, - 0.012218, - -0.013708, - 0.12365, - -0.0621, - 0.067362, - -0.088375, - -0.092031, - 0.025631, - 0.026397, - -0.0033481, - 0.071851, - -0.0042573, - 0.030744, - 0.029517, - 0.004074, - -0.0071887, - -0.0096566, - 0.010738, - -0.0386, - -0.0086923, - -0.020889, - -0.011117, - -0.11281, - 0.035634, - 0.068644, - -0.070024, - 0.0072972, - 0.050749, - -0.03991, - -0.007398, - 0.096893, - 0.01212, - -0.082845, - 0.0091428, - -0.0051794, - 0.011235, - -0.010896, - 0.01743, - -0.011836, - 0.029182, - -0.0036742, - 0.032777, - 0.018128, - -0.0012874, - 0.08957, - -0.037637, - -0.034495, - -0.015064, - -0.058357, - -0.024205, - -0.085197, - -0.0010392, - 0.026152, - -0.036656, - 0.046395, - 0.018797, - -0.011588, - -0.0010019, - -0.048524, - 0.034237, - 0.0062425, - -0.024912, - -0.021324, - -0.055613, - 0.11749, - -0.035497, - 0.0062712, - -0.064462, - 0.041191, - 0.11228, - -0.0060623, - 0.052168, - 0.044391, - 0.063682, - 0.10265, - -0.089487, - 0.021231, - 0.11224, - -0.030304, - -0.017116, - 0.026749, - -0.017481, - -0.018596, - 0.040037, - 0.06327, - -0.030674, - 0.0085491, - -0.028373, - -0.017724, - 0.028255, - 0.016254, - 0.094493, - -0.0074224, - 0.01176, - 0.00020832, - 0.01774, - 0.0074927, - 0.10664, - -0.04886, - -0.034784, - 0.061064, - 0.048626, - -0.019191, - 0.026995, - -0.00092762, - -0.063338, - -0.018084, - -0.068395, - -0.038389, - 0.0068258, - -0.040371, - -0.037272, - 0.060053, - 0.0076758, - -0.036071, - 0.065748, - -0.016474, - 0.069006, - -0.023969, - -0.054367, - 0.047268, - -0.033985, - -0.05074, - -0.094191, - 0.0076423, - -0.053967, - 0.064854, - 0.13756, - 0.060655, - -0.03127, - 0.086679, - 0.032202, - -0.064493, - 0.019015, - 0.0086934, - 0.036294, - 0.066363, - 0.04022, - -0.010202, - 0.0084735, - -0.1209, - -0.0031077, - 0.027614, - -0.10028, - -0.012205, - -0.012978, - 0.0059006, - 0.031131, - 0.070325, - -0.019292, - 0.058388, - 0.022173, - 0.057361, - -0.017383, - 0.045328, - -0.000042243, - 0.0068148, - -0.079896, - -0.10368, - -0.039468, - -0.02632, - 0.013929, - -0.058802, - 0.055169, - 0.07048, - 0.0010567, - -0.045859, - 0.10184, - -0.013465, - -0.0044535, - 0.029478, - -0.014505, - -0.05442, - -0.043046, - 0.047665, - 0.0055122, - 0.0027609, - -0.0059505, - -0.047957, - 0.010102, - -0.021214, - -0.033002, - -0.010576, - 0.056914, - -0.029102, - 0.0029335, - -0.08919, - -0.11576, - 0.012077, - 0.0099977, - 0.02805, - -0.0034712, - -0.048527, - -0.019018, - -0.011296, - -0.035653, - -0.060527, - 0.048968, - 0.041907, - 0.042978, - -0.029516, - 0.061392, - -0.0035737, - -0.056043, - -0.074304, - 0.031375, - -0.064502, - 0.035903, - -0.0019285, - -0.034676, - 0.071445, - 0.062412, - -0.096018, - -0.035378, - 0.056726, - -0.03035, - -0.042536, - 0.023209, - 0.021484, - 0.049718, - 0.062465, - 0.032973, - 0.028264, - -0.089912, - 0.04864, - 0.0102, - -0.0092081, - 0.019924, - 0.027874, - 0.090947, - 0.046536, - 0.029761, - -0.12267, - 0.042722, - 0.0072882, - 0.0255, - 0.0044139, - 0.051382, - 0.00032206, - 0.049833 - ], - "sociology": [ - 0.069537, - -0.10225, - -0.028211, - -0.019562, - 0.037252, - -0.041475, - 0.03007, - -0.093037, - 0.040157, - -0.033758, - -0.010098, - -0.039595, - -0.004555, - -0.0017979, - -0.0016336, - -0.033841, - 0.11757, - 0.017958, - 0.042885, - 0.05205, - -0.02746, - 0.010653, - -0.0017775, - 0.060269, - 0.03962, - -0.014739, - -0.026326, - 0.026259, - -0.014337, - 0.039188, - 0.019792, - 0.026039, - -0.035636, - -0.040941, - 0.0099583, - 0.041302, - 0.046732, - 0.040341, - -0.0053186, - -0.046113, - -0.035003, - -0.11656, - 0.02242, - -0.014722, - 0.033572, - 0.015578, - 0.0089873, - -0.029416, - 0.0097581, - -0.0034786, - -0.0048758, - 0.0014896, - 0.040491, - 0.0088619, - -0.016032, - 0.028764, - -0.0062466, - 0.022028, - 0.0067771, - 0.013465, - 0.046944, - -0.033467, - 0.061785, - 0.040564, - 0.029328, - 0.054002, - 0.013217, - 0.029879, - -0.0024428, - 0.035213, - 0.020342, - 0.010387, - 0.023271, - -0.045153, - 0.02548, - -0.052176, - 0.0077947, - -0.017944, - 0.063085, - 0.01259, - -0.052394, - 0.032208, - -0.070191, - 0.02016, - -0.077386, - 0.013424, - 0.011435, - -0.019872, - 0.059589, - 0.11077, - 0.07672, - 0.030058, - -0.063321, - 0.019351, - 0.040268, - 0.077092, - -0.018461, - -0.017077, - 0.016441, - -0.0024709, - 0.0068897, - -0.026844, - -0.053165, - -0.075376, - -0.013971, - -0.052891, - 0.003681, - 0.066527, - 0.070868, - -0.02815, - -0.042147, - 0.064919, - 0.018544, - -0.01278, - -0.0083774, - -0.00088044, - -0.00081835, - -0.022906, - -0.016236, - 0.060573, - -0.02326, - -0.0059289, - 0.035117, - -0.043882, - 0.026908, - 0.007239, - -0.10108, - -0.031875, - 0.019119, - 0.11945, - 0.01824, - 0.0064203, - 0.052666, - 0.020203, - 0.044518, - 0.05312, - -0.00059474, - 0.012671, - 0.019592, - -0.031011, - 0.0028802, - -0.046248, - 0.0045542, - -0.0025295, - 0.01323, - -0.035128, - -0.030566, - 0.047172, - 0.024295, - -0.032932, - 0.042846, - 0.034, - -0.0038322, - -0.055738, - 0.012631, - 0.070347, - -0.0041549, - 0.0059934, - 0.047597, - 0.00039324, - 0.047089, - -0.032227, - -0.082173, - 0.01173, - -0.040315, - 0.0072457, - 0.020008, - 0.016124, - 0.023686, - -0.042435, - 0.050706, - -0.087107, - -0.0034154, - 0.012375, - 0.042924, - 0.061323, - 0.046951, - 0.033345, - 0.0051128, - -0.034406, - -0.050862, - 0.042874, - -0.019874, - -0.045265, - 0.016183, - -0.032602, - -0.034892, - 0.12411, - 0.046494, - -0.0080059, - -0.0072499, - 0.090273, - -0.036814, - -0.078134, - -0.010186, - 0.0042719, - -0.033752, - -0.034264, - 0.0070309, - -0.028269, - -0.11627, - -0.016085, - 0.0028594, - -0.052045, - -0.017445, - 0.02763, - -0.0052769, - -0.042623, - -0.020883, - 0.008196, - 0.12477, - 0.013254, - -0.02539, - -0.025229, - 0.036235, - 0.13018, - -0.036577, - -0.063549, - -0.039399, - -0.0040755, - -0.039997, - -0.046963, - -0.049733, - 0.074565, - -0.016632, - -0.053394, - 0.016629, - 0.091542, - -0.0098046, - -0.050706, - 0.053205, - -0.024009, - -0.02256, - -0.0088943, - 0.015635, - 0.035013, - 0.024802, - -0.021124, - 0.008764, - 0.00121, - 0.027389, - 0.015138, - -0.0070917, - 0.034333, - 0.034994, - 0.0043743, - -0.0053983, - -0.010614, - -0.0048407, - 0.050963, - 0.06161, - 0.0092734, - -0.060095, - -0.032691, - 0.003628, - -0.0019504, - -0.01181, - 0.042906, - 0.091198, - -0.05389, - -0.01468, - 0.056676, - 0.046322, - 0.019295, - -0.030541, - 0.0016336, - -0.015178, - 0.043696, - 0.067822, - 0.041881, - 0.029591, - 0.067882, - -0.081289, - 0.0037735, - -0.020149, - -0.011978, - -0.021499, - 0.0014255, - -0.067079, - -0.010593, - 0.061988, - -0.00065755, - -0.020399, - -0.079593, - -0.04341, - -0.0098714, - -0.033398, - -0.0045141, - -0.0088587, - -0.00032111, - -0.0033395, - -0.037573, - -0.038236, - -0.021319, - -0.049286, - 0.10601, - -0.0083236, - 0.030058, - -0.0045256, - 0.010929 - ], - "combat": [ - -0.017463, - 0.014398, - 0.12396, - -0.030127, - 0.028024, - -0.035761, - -0.029755, - -0.12109, - 0.035924, - 0.098452, - 0.019938, - -0.036275, - -0.027432, - -0.0039383, - -0.0093149, - 0.041191, - 0.14552, - -0.038022, - 0.088619, - 0.026935, - 0.03926, - -0.023482, - 0.011898, - 0.037647, - -0.049567, - -0.02444, - 0.037629, - -0.051848, - -0.051459, - -0.043006, - -0.024817, - 0.028915, - -0.023131, - -0.050156, - 0.036744, - 0.022164, - 0.016929, - -0.013418, - 0.029988, - 0.015185, - 0.023542, - -0.10456, - 0.095438, - -0.021081, - -0.049816, - 0.012303, - 0.04347, - 0.069458, - -0.0040999, - -0.033454, - -0.0064026, - 0.030387, - 0.039261, - -0.045871, - -0.11543, - 0.057429, - -0.0075811, - -0.047683, - -0.022901, - 0.053063, - -0.023362, - -0.11675, - 0.059173, - -0.063998, - -0.056776, - -0.081577, - -0.056054, - -0.027359, - 0.0030033, - 0.053332, - 0.0067474, - -0.0011897, - 0.040179, - 0.083477, - 0.066684, - 0.019697, - -0.025601, - -0.0097131, - -0.038093, - -0.020953, - 0.015318, - 0.026874, - -0.053011, - 0.053034, - -0.014936, - -0.010279, - -0.020867, - 0.0054712, - 0.017293, - 0.0058328, - -0.041925, - -0.0019177, - -0.11858, - 0.019433, - 0.0090624, - -0.014084, - -0.046347, - -0.028664, - 0.048917, - -0.011906, - 0.00032706, - -0.038944, - 0.05215, - -0.01934, - 0.057144, - -0.067199, - -0.015022, - 0.023025, - -0.052347, - 0.024367, - -0.015888, - 0.094634, - 0.081543, - 0.0045907, - 0.028319, - 0.01521, - -0.048717, - 0.0072398, - -0.07064, - -0.036198, - -0.0487, - -0.011542, - -0.028996, - 0.0057313, - 0.10765, - 0.039791, - 0.0231, - -0.11596, - 0.06992, - 0.11695, - -0.038039, - 0.017346, - 0.0036208, - 0.017971, - 0.079337, - -0.026449, - -0.014241, - 0.0087318, - 0.039684, - -0.035048, - 0.016523, - -0.060299, - -0.004464, - 0.04457, - -0.062105, - 0.017593, - -0.0028843, - -0.037788, - 0.01782, - -0.0061565, - 0.028304, - 0.12433, - -0.020473, - -0.082617, - 0.023322, - 0.0022487, - -0.09208, - 0.080579, - 0.016601, - -0.0099745, - 0.036319, - -0.018135, - -0.16466, - -0.040664, - -0.069049, - -0.045971, - -0.0040253, - -0.016504, - -0.01202, - -0.041339, - 0.04619, - -0.012568, - -0.058738, - 0.044454, - -0.037723, - 0.059772, - 0.012335, - -0.079297, - -0.051744, - 0.0020838, - 0.021707, - 0.06771, - -0.070426, - 0.0080751, - 0.026985, - -0.073059, - -0.017224, - 0.065984, - -0.033641, - -0.017454, - -0.010822, - -0.00092883, - -0.046864, - -0.11842, - 0.0041274, - 0.017478, - -0.028326, - 0.0010318, - 0.017088, - 0.023982, - -0.20961, - 0.078355, - -0.052885, - 0.084701, - -0.022554, - 0.024272, - -0.013796, - 0.072499, - 0.039622, - 0.033664, - 0.13202, - 0.0099809, - 0.020193, - 0.034149, - 0.10974, - 0.05725, - 0.020442, - 0.059339, - -0.026933, - -0.11033, - -0.0071327, - -0.01455, - 0.011786, - 0.099951, - -0.029727, - -0.055127, - 0.032447, - 0.11324, - -0.041546, - -0.019064, - -0.025701, - -0.068708, - -0.08058, - -0.053517, - 0.057238, - 0.023659, - -0.088344, - 0.032118, - 0.01488, - -0.053958, - 0.094244, - -0.0026849, - 0.055883, - 0.0063965, - -0.11144, - 0.10039, - -0.049727, - -0.027592, - 0.060081, - 0.012669, - 0.0081057, - 0.076252, - 0.0036407, - -0.0044574, - -0.025344, - 0.023634, - 0.12596, - 0.10315, - 0.086712, - 0.023523, - -0.025197, - 0.043337, - -0.029658, - -0.045288, - -0.052851, - 0.025696, - 0.064745, - 0.064758, - -0.033852, - 0.0054996, - -0.070451, - 0.10419, - -0.093576, - -0.026424, - -0.04455, - -0.10821, - -0.011775, - 0.048616, - 0.0055211, - -0.040399, - 0.091518, - 0.024699, - 0.025637, - -0.011353, - -0.0087769, - -0.03572, - 0.011528, - -0.00018859, - 0.034178, - -0.052077, - 0.0057708, - -0.04483, - -0.085968, - -0.033196, - 0.013306, - -0.044196, - 0.010212, - 0.10041, - -0.017182, - -0.081601 - ], - "jurisprudence": [ - -0.051569, - -0.065369, - 0.025769, - 0.02383, - 0.011939, - -0.057305, - 0.01259, - -0.076391, - 0.012892, - 0.0072746, - 0.057017, - -0.053936, - 0.01718, - 0.00089704, - -0.013331, - 0.069179, - 0.07028, - 0.013695, - 0.014647, - 0.078756, - -0.015513, - 0.0087583, - 0.036203, - 0.062835, - -0.021661, - 0.025147, - 0.008052, - 0.016119, - 0.00041358, - -0.010634, - 0.019148, - -0.016043, - -0.032007, - -0.048824, - 0.024343, - 0.024681, - 0.031368, - 0.010556, - 0.0073671, - -0.0094914, - -0.003938, - -0.075868, - 0.020937, - 0.032608, - 0.0031138, - -0.039691, - -0.016242, - 0.035321, - 0.010087, - -0.016879, - 0.0069757, - -0.0039249, - 0.024774, - 0.01399, - -0.028445, - -0.013333, - -0.0054706, - 0.058846, - -0.0046649, - 0.028569, - -0.0038078, - 0.0069095, - 0.046425, - 0.042636, - 0.00022498, - -0.0093989, - -0.021223, - 0.034771, - 0.0090394, - 0.0066454, - 0.039367, - -0.037775, - 0.00011307, - 0.010944, - -0.0043469, - -0.042618, - 0.022243, - -0.030882, - 0.022194, - 0.0053613, - 0.017666, - 0.026648, - 0.0055199, - 0.03136, - -0.024914, - 0.038652, - 0.040037, - -0.0066661, - -0.0029341, - 0.075736, - 0.044441, - 0.015826, - -0.073704, - 0.015351, - 0.038349, - 0.065472, - -0.0061286, - -0.046012, - 0.0023522, - -0.036688, - 0.030516, - -0.007687, - -0.018099, - -0.057505, - -0.0087324, - -0.038958, - 0.037671, - 0.04583, - -0.024421, - 0.02232, - -0.010917, - 0.076302, - 0.026424, - -0.0014607, - 0.00967, - 0.046464, - 0.056678, - -0.029869, - -0.021457, - 0.028967, - 0.026127, - -0.010558, - 0.02682, - -0.0077087, - 0.0447, - 0.087736, - -0.051152, - -0.011521, - -0.02397, - 0.10709, - 0.020784, - -0.0077703, - -0.0027586, - 0.0018848, - -0.025584, - -0.0016882, - 0.0020707, - 0.025614, - 0.044199, - -0.089121, - 0.033272, - -0.032932, - -0.043656, - 0.02945, - 0.0077085, - -0.018406, - 0.024295, - 0.021364, - 0.014386, - -0.02587, - 0.067728, - 0.053738, - 0.047787, - -0.031066, - 0.020843, - 0.040932, - -0.0022196, - -0.038852, - 0.021094, - 0.0084646, - 0.038527, - -0.010573, - -0.060745, - 0.039977, - -0.0049511, - 0.01662, - 0.073723, - -0.02569, - 0.012761, - -0.020267, - 0.0088743, - -0.0038678, - 0.015153, - -0.0053829, - 0.0069171, - 0.024571, - 0.017631, - 0.0052032, - -0.042925, - -0.035994, - -0.035299, - -0.030439, - -0.0019051, - -0.017751, - 0.02266, - 0.018281, - 0.047745, - 0.047255, - 0.037722, - 0.044742, - -0.01784, - 0.075536, - 0.0023168, - -0.011711, - -0.040804, - -0.020569, - 0.016238, - 0.01606, - -0.032836, - 0.0063629, - -0.10792, - -0.0080341, - 0.022345, - -0.038902, - -0.086426, - -0.017576, - 0.080286, - -0.02799, - 0.016861, - 0.011635, - 0.062338, - 0.013479, - -0.0048393, - -0.034483, - -0.011219, - 0.076843, - 0.02815, - -0.031365, - -0.012871, - -0.072887, - -0.020534, - -0.032861, - -0.0046259, - 0.084675, - 0.032692, - 0.022261, - 0.0081566, - 0.075899, - -0.0087689, - -0.051032, - 0.037106, - -0.064175, - -0.033947, - 0.021329, - 0.019798, - -0.030698, - -0.011197, - 0.0084592, - 0.016279, - 0.0065392, - 0.026749, - -0.023205, - -0.029788, - 0.0098722, - 0.017392, - 0.023326, - -0.028137, - -0.052304, - -0.019701, - -0.014365, - 0.025394, - -0.035093, - -0.021115, - -0.014395, - -0.01377, - 0.026369, - -0.037516, - 0.03321, - -0.015295, - 0.017348, - -0.010264, - -0.027402, - -0.004288, - 0.017081, - -0.00039239, - -0.02093, - 0.006239, - 0.05781, - -0.007214, - 0.012754, - 0.03007, - 0.057611, - -0.068373, - -0.0043036, - 0.0099274, - -0.019643, - -0.02714, - 0.051473, - 0.025097, - -0.080203, - 0.036281, - 0.0086245, - -0.038387, - -0.052727, - -0.036477, - 0.0064148, - -0.030919, - 0.0025413, - 0.011448, - 0.063267, - -0.012503, - -0.046141, - -0.010885, - -0.030413, - -0.007125, - -0.013637, - -0.0036368, - 0.027532, - 0.011681, - 0.021692 - ], - "benzodiazepine": [ - -0.020549, - -0.024031, - -0.035659, - 0.011228, - -0.0068554, - 0.0081101, - -0.0082024, - -0.063044, - 0.01574, - -0.025736, - 0.0034803, - -0.023488, - 0.019321, - 0.027962, - 0.051697, - -0.004897, - 0.060068, - 0.016998, - 0.052898, - -0.023863, - -0.022277, - 0.019042, - 0.026448, - 0.038248, - 0.021781, - -0.02271, - -0.040988, - -0.0035745, - 0.031044, - 0.052609, - 0.01819, - 0.017283, - -0.010919, - -0.011667, - 0.024557, - 0.016748, - -0.035489, - -0.055103, - 0.0084027, - 0.04708, - -0.00029482, - -0.027229, - 0.027831, - 0.0062564, - 0.024269, - 0.0018549, - 0.011195, - 0.068843, - 0.0066701, - 0.025928, - -0.031823, - 0.0072262, - 0.022487, - -0.013771, - -0.049287, - -0.074664, - -0.0064446, - 0.025812, - -0.020189, - 0.019437, - 0.037047, - -0.0056368, - 0.067747, - 0.044639, - -0.059258, - 0.016403, - 0.0040639, - -0.050256, - -0.010622, - -0.0096759, - 0.005358, - 0.024531, - -0.011613, - -0.04398, - -0.023589, - -0.058265, - -0.013564, - -0.015739, - 0.021569, - -0.063683, - 0.030648, - 0.014338, - -0.01086, - 0.0043199, - -0.01386, - 0.012684, - 0.030891, - -0.024313, - 0.02979, - -0.070835, - 0.070203, - 0.021424, - -0.057627, - -0.018481, - -0.023514, - 0.04402, - 0.021189, - 0.0021534, - 0.062446, - -0.0060521, - 0.0037513, - 0.022335, - -0.062473, - 0.0025939, - -0.015909, - -0.045244, - -0.022233, - -0.068347, - -0.035732, - 0.029965, - 0.0082248, - 0.042238, - 0.029477, - -0.025342, - -0.016796, - 0.0099138, - 0.040597, - -0.02731, - -0.044647, - 0.0057275, - 0.034111, - 0.034388, - 0.02084, - -0.060295, - 0.032307, - 0.078659, - -0.010721, - -0.0082758, - -0.0063644, - 0.025504, - 0.026687, - -0.0064691, - -0.01463, - 0.029948, - 0.037298, - 0.016871, - -0.029148, - 0.0041464, - 0.026514, - -0.026312, - 0.051891, - 0.027465, - -0.022937, - -0.049047, - 0.020375, - -0.053725, - 0.022812, - -0.010737, - 0.05739, - 0.02532, - 0.025511, - 0.041845, - 0.011976, - -0.015804, - -0.025166, - 0.03945, - -0.024614, - 0.029399, - 0.036845, - 0.015127, - -0.0061011, - 0.028419, - -0.028715, - -0.011891, - -0.042188, - -0.014568, - 0.035817, - -0.070666, - -0.007407, - -0.037684, - -0.0062364, - -0.060613, - 0.035706, - 0.010249, - -0.038538, - 0.026083, - -0.033301, - -0.020124, - -0.029705, - -0.032393, - 0.034717, - -0.06279, - -0.074389, - 0.016796, - 0.016163, - -0.025636, - 0.034233, - 0.059986, - -0.0079771, - -0.022874, - 0.052507, - 0.060346, - 0.0013874, - 0.0084574, - 0.011483, - 0.028261, - -0.025974, - 0.028468, - 0.00019651, - 0.045358, - -0.081472, - 0.04411, - -0.07725, - -0.044057, - 0.0262, - 0.057284, - 0.0087588, - -0.027432, - -0.056657, - -0.020035, - 0.089739, - -0.0039774, - 0.036015, - 0.028349, - 0.051892, - 0.0017935, - -0.0019811, - 0.038615, - 0.029987, - -0.0049458, - -0.024819, - -0.022286, - -0.00034175, - 0.065999, - -0.011204, - 0.028991, - 0.0074238, - 0.066218, - 0.050327, - -0.033375, - -0.01873, - -0.018703, - -0.054583, - -0.033756, - 0.032132, - -0.077942, - 0.030814, - -0.018299, - 0.010468, - -0.028007, - 0.0245, - 0.019125, - -0.021747, - -0.037481, - 0.001319, - -0.050438, - -0.039724, - 0.032624, - 0.00071137, - 0.044384, - -0.018506, - 0.058441, - 0.012731, - -0.041043, - 0.029291, - -0.037773, - 0.0080733, - 0.050929, - 0.070274, - -0.049261, - -0.0017064, - 0.012777, - 0.007872, - 0.0099141, - -0.012846, - -0.030309, - -0.044509, - -0.02397, - 0.00017543, - 0.019069, - -0.042355, - 0.072466, - -0.066858, - -0.027171, - -0.022108, - -0.0309, - 0.020002, - 0.035008, - -0.0014952, - -0.013577, - 0.063075, - -0.068436, - -0.093694, - -0.0052591, - -0.042935, - 0.018946, - -0.0051423, - 0.028515, - 0.020831, - -0.074455, - -0.0066299, - -0.040289, - 0.0029346, - -0.070509, - -0.053421, - 0.034973, - 0.045251, - 0.02264, - 0.043409, - -0.00020388 - ], - "pet": [ - -0.020904, - -0.083407, - -0.0011731, - -0.038698, - -0.15001, - 0.04052, - 0.12154, - -0.13144, - 0.077739, - 0.037732, - -0.049666, - 0.041248, - 0.021496, - -0.034454, - -0.092159, - -0.082009, - 0.12599, - 0.068694, - 0.093316, - 0.037716, - 0.054143, - -0.04889, - 0.11108, - 0.081249, - 0.11108, - -0.032613, - 0.034586, - 0.08643, - -0.013517, - -0.071794, - -0.052296, - -0.16726, - 0.075425, - 0.023076, - 0.0016359, - 0.016248, - 0.0048432, - -0.15754, - -0.017881, - -0.029842, - -0.01971, - -0.1812, - 0.036555, - 0.079265, - 0.082073, - -0.011865, - -0.028117, - 0.05402, - -0.025549, - 0.0091257, - 0.087028, - 0.11658, - -0.012488, - -0.14801, - -0.025028, - -0.048442, - -0.029088, - 0.10022, - -0.070171, - -0.010619, - 0.028653, - -0.17451, - 0.26929, - 0.0096488, - 0.080907, - 0.087173, - 0.012431, - 0.0099618, - -0.082941, - -0.14223, - 0.036651, - 0.0058185, - 0.10255, - -0.10753, - 0.0069, - 0.063289, - -0.12337, - -0.001533, - 0.016248, - -0.089423, - 0.038881, - -0.012725, - 0.063555, - 0.064115, - -0.058916, - -0.10056, - -0.090072, - 0.02325, - 0.058745, - -0.04812, - 0.09723, - 0.035016, - -0.15221, - -0.033778, - 0.035013, - 0.14803, - 0.039801, - 0.17275, - 0.1153, - -0.023627, - -0.055097, - 0.030526, - -0.057168, - -0.068296, - -0.041768, - -0.26283, - -0.064127, - -0.053211, - 0.012273, - -0.033564, - -0.04658, - 0.036272, - 0.047833, - 0.073359, - -0.019219, - -0.0045145, - 0.04443, - -0.11316, - -0.077769, - -0.018985, - -0.075679, - 0.2689, - -0.017043, - -0.094837, - 0.15502, - 0.057646, - 0.00065757, - -0.10566, - -0.061345, - 0.085975, - -0.015628, - 0.012714, - -0.0044907, - 0.053612, - 0.030502, - 0.016934, - -0.023863, - 0.074575, - 0.096533, - -0.0044429, - -0.10959, - -0.024656, - 0.0079894, - -0.0047627, - -0.022119, - -0.092327, - 0.11924, - -0.034474, - 0.075909, - -0.1835, - 0.013416, - 0.20468, - -0.0090235, - -0.14938, - -0.07632, - -0.099807, - -0.093786, - 0.050564, - -0.038846, - -0.066632, - 0.02892, - 0.001984, - -0.047496, - 0.062396, - 0.062992, - -0.17429, - 0.0022162, - -0.026527, - -0.033749, - 0.046474, - -0.088904, - 0.087702, - -0.086564, - -0.025032, - -0.076817, - 0.095023, - -0.062174, - 0.0084422, - -0.0089068, - 0.015525, - 0.10007, - -0.074961, - -0.020467, - -0.039137, - 0.058469, - -0.098201, - 0.087647, - 0.16696, - -0.049681, - -0.16941, - -0.04379, - 0.096963, - 0.084493, - -0.082258, - 0.010719, - 0.15442, - 0.081339, - 0.026195, - 0.022378, - 0.048052, - -0.20756, - 0.22236, - 0.045951, - -0.14475, - 0.034585, - -0.11953, - -0.082642, - -0.099854, - -0.002779, - -0.022023, - 0.2487, - 0.014803, - -0.024174, - 0.047862, - -0.057724, - -0.0057881, - 0.0043379, - -0.13217, - 0.065454, - -0.072642, - 0.029431, - -0.061529, - 0.053121, - 0.12452, - 0.042386, - -0.0058211, - 0.010093, - 0.15517, - 0.0012696, - -0.027113, - -0.11954, - -0.092856, - -0.11845, - -0.1328, - 0.060561, - -0.033373, - 0.063657, - 0.063298, - -0.045874, - -0.01045, - 0.090079, - 0.012925, - 0.089015, - -0.11202, - -0.10572, - 0.16508, - 0.1331, - 0.075699, - -0.073418, - 0.051369, - -0.053281, - -0.067123, - 0.0090988, - 0.057363, - 0.095003, - -0.13866, - 0.028928, - -0.054299, - -0.019362, - -0.068493, - 0.0044758, - -0.045822, - -0.057022, - -0.066446, - 0.04012, - 0.068808, - 0.0088273, - 0.021564, - 0.13952, - 0.021589, - -0.11306, - 0.17287, - -0.17351, - -0.05376, - 0.025872, - -0.039427, - -0.051915, - 0.03051, - -0.095001, - -0.025086, - 0.22094, - 0.020807, - 0.22485, - -0.033133, - -0.0041462, - 0.014, - -0.10882, - -0.066442, - -0.069294, - -0.045097, - -0.0020094, - 0.090388, - -0.10208, - -0.088079, - -0.063245, - 0.029421, - 0.022213, - 0.16565, - -0.047968, - 0.14882 - ], - "archeology": [ - -0.008614, - -0.052597, - -0.0092992, - 0.011045, - 0.021181, - -0.032748, - -0.0064755, - -0.080077, - 0.040827, - 0.015981, - 0.0037037, - -0.038489, - -0.012728, - 0.018404, - 0.051415, - -0.046953, - 0.072409, - -0.025207, - -0.000019935, - 0.01533, - -0.037202, - 0.04075, - -0.018149, - 0.060587, - 0.04239, - 0.017178, - -0.018927, - 0.087154, - -0.011638, - 0.044368, - 0.029152, - 0.0013239, - 0.06728, - -0.049136, - 0.030016, - 0.048775, - 0.086094, - 0.012675, - 0.00030038, - -0.048097, - -0.03606, - -0.1119, - 0.042122, - 0.045863, - 0.043945, - -0.02706, - -0.021256, - -0.042055, - -0.0018638, - 0.035133, - -0.0067023, - -0.0098088, - 0.0056292, - 0.030411, - -0.036814, - 0.0083891, - -0.012924, - 0.084679, - -0.03168, - 0.065631, - 0.080785, - 0.04431, - 0.055781, - -0.021748, - 0.043281, - 0.032624, - -0.030254, - 0.01354, - 0.050299, - 0.03196, - -0.0026584, - -0.02144, - -0.0040517, - -0.030386, - 0.085119, - 0.018143, - 0.016301, - -0.019555, - 0.082709, - -0.020666, - -0.043946, - 0.040184, - -0.044588, - 0.017386, - -0.081173, - -0.024677, - -0.012746, - -0.018275, - 0.011293, - 0.026302, - -0.024424, - 0.053026, - -0.060796, - 0.0088611, - 0.036589, - 0.060419, - -0.014875, - 0.051319, - 0.015867, - -0.074177, - 0.061144, - 0.0050094, - -0.0019644, - -0.0037275, - -0.001416, - -0.043686, - 0.068712, - 0.062272, - -0.032188, - -0.017854, - -0.030318, - 0.080301, - 0.029229, - 0.059155, - 0.019305, - 0.032846, - -0.045544, - -0.0051962, - -0.039641, - 0.064934, - -0.039587, - -0.0032501, - -0.05609, - -0.030984, - 0.049634, - -0.031086, - -0.075822, - -0.013733, - -0.0095012, - 0.13344, - -0.0055929, - -0.0047407, - -0.080064, - 0.054533, - -0.012849, - 0.01268, - 0.0035307, - 0.0022363, - 0.020123, - -0.059, - -0.056423, - -0.036807, - 0.0068452, - 0.052, - -0.0024991, - -0.02432, - -0.020167, - 0.0078951, - -0.013972, - -0.093011, - 0.070648, - 0.047985, - 0.036519, - -0.05426, - -0.01286, - 0.075075, - 0.053875, - 0.018926, - 0.0051857, - -0.012372, - 0.01752, - -0.0097208, - -0.087464, - 0.0058732, - 0.02792, - -0.017891, - -0.057654, - 0.032088, - 0.034668, - -0.007578, - 0.075139, - -0.068535, - 0.026581, - -0.0018341, - 0.011383, - 0.033831, - 0.042866, - 0.012795, - -0.0058113, - 0.0057869, - -0.040256, - 0.025348, - 0.0059934, - -0.013933, - 0.024736, - -0.0004738, - 0.090367, - 0.08022, - 0.039897, - -0.0032753, - 0.040634, - 0.074044, - -0.052381, - 0.00072829, - -0.057456, - 0.073658, - -0.056771, - 0.012763, - 0.0007095, - 0.017345, - -0.11257, - -0.031145, - -0.027557, - -0.044511, - 0.041784, - 0.048669, - -0.017832, - -0.042164, - -0.010595, - 0.015614, - 0.092782, - 0.020212, - -0.0027408, - 0.0012437, - 0.024816, - 0.014393, - 0.017849, - -0.048954, - -0.043432, - -0.023245, - -0.014499, - -0.0099622, - -0.096062, - 0.076276, - -0.015206, - -0.0050983, - 0.031192, - 0.089014, - -0.083559, - -0.016741, - -0.022244, - -0.013888, - 0.0019202, - -0.04124, - 0.020634, - 0.0053324, - 0.020275, - 0.061928, - -0.025057, - -0.029086, - 0.021562, - 0.013618, - 0.0049235, - -0.024362, - 0.03091, - 0.045623, - -0.081547, - -0.030677, - -0.065842, - 0.028119, - 0.049588, - -0.0046968, - 0.0024253, - -0.015323, - 0.019717, - 0.011373, - -0.04211, - 0.03249, - 0.076748, - -0.0077642, - 0.0070085, - 0.054489, - -0.01056, - -0.0075701, - 0.037363, - -0.037723, - 0.061436, - 0.032583, - 0.031568, - -0.0085475, - 0.042985, - 0.084435, - -0.06869, - -0.0071316, - -0.030049, - -0.00097615, - 0.0046655, - 0.0081894, - -0.014432, - -0.055314, - 0.070686, - -0.010473, - 0.00016292, - 0.0037918, - -0.044638, - 0.024734, - -0.012433, - -0.007853, - -0.06242, - -0.0038741, - -0.013672, - 0.020285, - -0.00030368, - -0.029403, - 0.098174, - 0.013192, - -0.029893, - -0.019432, - -0.03989, - -0.10081 - ], - "companions": [ - -0.028509, - 0.018173, - -0.014703, - 0.020912, - -0.031886, - -0.010364, - -0.024751, - -0.076969, - 0.0074942, - 0.090409, - -0.0076403, - 0.0055109, - 0.00043526, - -0.047932, - 0.00049944, - -0.02755, - 0.027818, - 0.027646, - 0.027708, - -0.010791, - -0.0038017, - -0.010592, - -0.018224, - 0.029993, - 0.027125, - 0.0040828, - -0.013041, - -0.029746, - 0.028137, - -0.015934, - -0.034947, - -0.022876, - -0.018982, - -0.013618, - -0.005831, - 0.037562, - -0.010031, - -0.0057327, - 0.0025387, - -0.0039006, - -0.020328, - -0.052818, - 0.010318, - 0.053622, - -0.003794, - 0.015381, - -0.0035758, - -0.03605, - -0.0032895, - -0.024162, - 0.0070087, - 0.03055, - -0.029194, - -0.037674, - -0.016221, - 0.02795, - -0.055934, - 0.028842, - -0.033539, - -0.052012, - -0.024502, - -0.048766, - 0.10459, - 0.02059, - -0.0041953, - 0.01765, - -0.022284, - -0.04888, - -0.065135, - -0.016598, - 0.049748, - -0.027162, - 0.07692, - 0.00089992, - 0.041332, - 0.041394, - -0.016957, - -0.03909, - 0.038956, - -0.028771, - 0.015899, - 0.04702, - 0.026325, - 0.024061, - 0.01265, - -0.050856, - 0.052285, - 0.033144, - -0.076845, - -0.049377, - 0.071156, - -0.017456, - -0.064715, - 0.012927, - 0.03952, - 0.086981, - 0.015141, - 0.012102, - 0.048956, - 0.004406, - 0.037827, - 0.029782, - 0.034126, - -0.030303, - 0.02445, - -0.064199, - 0.0062791, - -0.03884, - 0.0077507, - -0.010656, - -0.0055447, - 0.049545, - 0.045216, - -0.0090793, - -0.01404, - 0.00010964, - 0.043047, - 0.011528, - -0.033256, - -0.014096, - 0.030402, - 0.041296, - -0.005897, - -0.047274, - 0.13213, - -0.021624, - -0.0015895, - -0.021063, - 0.036862, - 0.047204, - 0.049911, - 0.094705, - -0.073554, - -0.0006082, - -0.0050413, - 0.0021948, - -0.019286, - 0.050336, - 0.056378, - -0.0043616, - -0.029362, - -0.024482, - -0.043497, - -0.045184, - 0.062282, - 0.042835, - -0.00089267, - 0.012491, - -0.026027, - -0.0088621, - 0.016616, - 0.054271, - -0.046693, - -0.035489, - 0.065616, - -0.014167, - -0.047906, - 0.033644, - -0.018807, - -0.03271, - 0.0089071, - -0.0029399, - 0.037571, - 0.024792, - -0.012236, - 0.019269, - -0.025921, - -0.010126, - -0.018502, - 0.0050694, - -0.0027623, - -0.045521, - -0.05741, - 0.0011731, - -0.0066569, - 0.035206, - 0.025954, - 0.043726, - 0.00018702, - -0.030301, - 0.096839, - 0.029706, - 0.0016465, - -0.00037663, - -0.037063, - -0.0068408, - 0.078462, - 0.066858, - 0.0067008, - -0.016911, - -0.015948, - 0.11407, - -0.064276, - -0.0059201, - -0.0033004, - 0.04572, - -0.01748, - 0.017518, - -0.028313, - -0.001506, - -0.1147, - 0.077356, - -0.021013, - 0.011478, - 0.03003, - 0.0071068, - -0.0060196, - 0.029426, - -0.0052951, - -0.037255, - 0.1055, - 0.0096125, - 0.052743, - 0.0024775, - -0.059852, - 0.0083364, - -0.033532, - 0.019469, - -0.030193, - -0.019175, - -0.0029811, - -0.0087377, - 0.029469, - 0.083993, - 0.10018, - -0.023585, - 0.036735, - 0.069648, - -0.0082814, - 0.011147, - 0.0016282, - -0.012402, - -0.05285, - -0.019882, - 0.04853, - -0.0044127, - 0.050877, - -0.029218, - 0.025853, - 0.034002, - 0.010811, - 0.014289, - 0.017914, - -0.041302, - 0.015993, - 0.053571, - 0.019171, - -0.053209, - -0.021045, - -0.022829, - 0.024289, - 0.016867, - -0.0025099, - -0.0030808, - 0.0044969, - -0.07232, - -0.010309, - -0.01526, - 0.027156, - 0.029539, - -0.063305, - 0.03425, - -0.026549, - -0.0092516, - -0.0081727, - 0.0084689, - 0.020367, - 0.024241, - 0.0048986, - 0.0052632, - 0.00011397, - 0.062654, - -0.076732, - -0.020673, - 0.022086, - 0.0087925, - -0.019906, - -0.022336, - 0.0001449, - -0.030301, - 0.022446, - -0.004712, - 0.0098853, - -0.031369, - 0.014234, - -0.023644, - -0.036719, - -0.041196, - 0.030247, - 0.056993, - 0.047265, - 0.030892, - -0.09267, - -0.075474, - 0.040529, - 0.014217, - 0.060242, - 0.063324, - 0.035611, - 0.063865 - ], - "single-family": [ - 0.073191, - -0.010911, - 0.019321, - 0.052682, - -0.019845, - 0.048984, - -0.020667, - -0.062116, - 0.013946, - 0.055479, - -0.029817, - -0.045949, - -0.03287, - 0.00011843, - -0.0062524, - 0.0068278, - 0.054343, - 0.015706, - 0.043669, - -0.01845, - 0.067234, - -0.055703, - -0.010129, - 0.05544, - 0.025508, - -0.014618, - -0.0085704, - 0.052865, - 0.054036, - 0.034988, - -0.060252, - -0.049029, - -0.015885, - -0.014812, - 0.026977, - 0.012102, - 0.023869, - 0.04689, - 0.058165, - -0.011709, - 0.0081229, - -0.082028, - 0.044441, - -0.01586, - -0.064515, - -0.037536, - -0.039242, - 0.017835, - -0.019327, - -0.0032912, - 0.022967, - 0.0034291, - -0.040755, - 0.071755, - -0.019114, - -0.042459, - 0.0066373, - -0.005765, - -0.029378, - -0.025361, - 0.0266, - 0.0068845, - 0.092719, - -0.039374, - 0.055725, - -0.035368, - -0.0065639, - 0.0029137, - 0.0034526, - -0.035322, - -0.0072558, - 0.000024002, - -0.00084492, - -0.075437, - -0.026466, - -0.015334, - -0.039276, - -0.0059745, - -0.013619, - 0.03919, - 0.014412, - -0.050041, - 0.024803, - -0.032625, - -0.03246, - -0.00080695, - 0.040372, - -0.013894, - 0.046698, - 0.015167, - -0.027307, - 0.02317, - -0.082928, - 0.021151, - -0.039811, - 0.062542, - -0.041323, - -0.014996, - 0.017351, - -0.0013086, - 0.0063083, - 0.011659, - -0.036661, - -0.0037518, - 0.0010963, - -0.072392, - 0.021047, - 0.046258, - 0.015682, - -0.0043262, - -0.023792, - 0.076109, - -0.0099744, - 0.062504, - 0.0087102, - -0.046575, - 0.009856, - -0.063903, - 0.011317, - 0.024887, - -0.075742, - 0.037328, - 0.088959, - -0.012863, - 0.013609, - -0.031825, - 0.045224, - -0.041866, - 0.0085473, - -0.034582, - 0.01834, - 0.040166, - 0.057677, - 0.0011866, - -0.027453, - 0.027219, - 0.013482, - 0.0031139, - -0.026519, - -0.050024, - 0.03936, - 0.0080995, - 0.013296, - 0.037637, - 0.033153, - -0.043001, - 0.018307, - 0.013019, - 0.021439, - -0.019331, - 0.057518, - 0.11132, - 0.013579, - -0.0041178, - 0.0059644, - 0.041772, - 0.060075, - -0.0025183, - -0.0054324, - 0.021337, - 0.020582, - 0.019019, - 0.0020792, - -0.028422, - 0.053645, - -0.056467, - -0.023255, - -0.038885, - 0.014523, - 0.031327, - 0.023606, - 0.012894, - 0.039597, - 0.031935, - -0.068867, - 0.038138, - 0.02857, - 0.00084021, - -0.051187, - 0.0036133, - 0.029139, - -0.01329, - -0.0069278, - 0.011304, - -0.0024406, - -0.020823, - -0.0082473, - 0.13476, - 0.034984, - -0.034983, - -0.049137, - 0.025857, - 0.039062, - 0.017896, - 0.0099977, - -0.0027046, - 0.010722, - 0.032477, - 0.046153, - 0.005243, - -0.10385, - 0.023666, - -0.023324, - -0.094751, - 0.03597, - -0.0087992, - 0.019757, - -0.013033, - -0.044758, - -0.020401, - 0.087088, - -0.062629, - -0.021042, - -0.015292, - -0.021256, - 0.02977, - 0.0059843, - 0.022316, - 0.027732, - -0.0014598, - 0.018217, - -0.0035856, - 0.022952, - 0.079851, - -0.050441, - -0.010235, - -0.012361, - 0.016234, - 0.037879, - -0.081908, - 0.018369, - 0.018591, - -0.01209, - 0.031892, - -0.013332, - 0.032418, - -0.0047109, - -0.028882, - 0.011245, - -0.031379, - -0.0010416, - 0.00014571, - 0.038696, - -0.011868, - -0.068653, - 0.03789, - -0.032493, - 0.0040862, - 0.0079872, - -0.0034541, - -0.03147, - -0.037264, - -0.0079242, - -0.026379, - 0.013767, - 0.0044839, - -0.0074558, - -0.037138, - 0.03346, - -0.049395, - 0.052176, - 0.0019105, - -0.023259, - 0.0045642, - 0.023752, - -0.0081868, - 0.040897, - 0.03713, - 0.0062598, - 0.0021644, - -0.058047, - 0.016396, - -0.093171, - -0.027901, - -0.058556, - -0.036222, - 0.014125, - -0.016222, - 0.038607, - 0.047021, - 0.081176, - 0.0016205, - -0.029731, - 0.0474, - -0.02397, - 0.0067809, - 0.014145, - -0.030429, - -0.024087, - -0.053303, - -0.038392, - -0.020362, - 0.035879, - -0.030078, - 0.037328, - 0.0295, - 0.014652, - -0.010942, - -0.037253, - 0.004852 - ], - "legal": [ - -0.044055, - -0.024323, - 0.027655, - 0.076372, - -0.044873, - -0.073274, - 0.05791, - -0.12301, - 0.047724, - 0.026281, - 0.000059927, - -0.035734, - -0.033522, - -0.0032122, - -0.015465, - 0.058251, - 0.086381, - -0.10171, - 0.095653, - 0.047016, - 0.0099202, - 0.038905, - 0.10831, - 0.097592, - -0.049168, - 0.057678, - -0.0079331, - 0.0089151, - 0.067694, - 0.015077, - 0.0069849, - 0.0034316, - -0.11969, - -0.18208, - 0.11624, - 0.10059, - 0.010425, - -0.039057, - 0.0040509, - 0.0069288, - 0.01736, - -0.14037, - 0.036561, - -0.025697, - 0.057143, - -0.035513, - -0.008236, - 0.045667, - 0.00067675, - -0.0062664, - -0.045926, - -0.042051, - 0.030085, - -0.0078412, - 0.010373, - -0.0011607, - -0.011645, - -0.032735, - -0.065364, - -0.033857, - 0.083677, - 0.0019505, - 0.18036, - 0.059473, - 0.076019, - -0.035415, - 0.054998, - -0.063946, - 0.081232, - 0.0032716, - 0.054721, - -0.039048, - 0.042794, - 0.062595, - -0.0064238, - -0.070277, - -0.092008, - -0.083575, - -0.01234, - -0.083199, - -0.012737, - 0.069647, - -0.021102, - 0.074017, - -0.052084, - 0.016533, - 0.029461, - 0.017581, - 0.030445, - 0.063469, - 0.010404, - 0.0058449, - -0.13171, - -0.0078698, - -0.0042999, - 0.043561, - -0.0018429, - -0.049829, - 0.026941, - -0.034917, - -0.057629, - -0.017068, - 0.016668, - -0.10567, - 0.032364, - -0.13718, - 0.014127, - 0.0039884, - -0.0013613, - -0.073534, - -0.0046691, - 0.084395, - 0.06842, - -0.0067253, - -0.025267, - 0.027521, - 0.036132, - -0.082942, - -0.06261, - 0.042695, - 0.073577, - -0.032546, - 0.077737, - 0.01472, - 0.1149, - 0.033797, - 0.0064566, - -0.068149, - -0.071459, - 0.092863, - -0.033683, - 0.0014319, - -0.0097754, - -0.034931, - -0.048193, - -0.0082661, - -0.037645, - 0.079057, - 0.020676, - -0.017645, - 0.035023, - 0.0087135, - -0.073349, - 0.036682, - -0.015437, - 0.0027676, - 0.0068655, - -0.006819, - -0.029324, - -0.032367, - 0.036627, - 0.20066, - 0.036676, - -0.096105, - 0.092541, - 0.013994, - -0.027894, - -0.11716, - 0.11717, - -0.03992, - 0.042742, - 0.076102, - -0.095911, - 0.055493, - -0.016875, - 0.073407, - 0.093222, - 0.0076193, - -0.045476, - 0.030772, - 0.01146, - 0.035923, - 0.063707, - -0.039429, - -0.054125, - 0.082735, - -0.0022008, - 0.040922, - -0.026364, - -0.046192, - 0.0059683, - -0.041768, - -0.024899, - -0.02162, - -0.027615, - -0.044217, - -0.0082293, - 0.10211, - 0.13156, - 0.0081601, - -0.031353, - 0.10172, - 0.15741, - -0.033374, - -0.034234, - 0.011142, - 0.015781, - 0.0027487, - -0.068536, - -0.03197, - -0.17438, - 0.0070263, - -0.017975, - 0.029832, - -0.025632, - -0.047474, - 0.041046, - 0.03761, - 0.045372, - -0.013355, - 0.17228, - -0.0013289, - -0.06402, - 0.020674, - 0.0080053, - -0.019778, - 0.025252, - -0.021596, - -0.08021, - -0.048693, - 0.074125, - -0.058511, - 0.0073446, - 0.12405, - 0.06259, - -0.032751, - 0.037461, - 0.10441, - -0.03412, - -0.011124, - 0.0099559, - -0.11735, - -0.078043, - -0.050816, - -0.043594, - -0.053698, - 0.019435, - 0.026685, - -0.012275, - 0.00144, - 0.11308, - -0.0019671, - -0.022557, - 0.0095068, - -0.21883, - -0.040159, - -0.059712, - -0.010695, - -0.037674, - 0.010831, - -0.0060522, - -0.035465, - 0.022213, - -0.013269, - -0.047433, - 0.041281, - 0.019257, - 0.091721, - 0.002146, - -0.0061958, - 0.041693, - 0.02611, - -0.0089504, - -0.0072603, - 0.045172, - -0.02477, - 0.043826, - 0.052776, - 0.0035017, - -0.011071, - -0.018614, - 0.075085, - -0.13908, - -0.055865, - 0.092771, - -0.12674, - -0.095253, - 0.068086, - 0.018126, - -0.061813, - 0.20053, - 0.075093, - -0.07563, - 0.010654, - 0.021169, - 0.048613, - -0.0048522, - -0.018027, - 0.041257, - 0.010909, - -0.00082819, - -0.093312, - -0.036221, - 0.029332, - -0.054239, - -0.019589, - -0.10846, - 0.051319, - -0.050924, - -0.0015671 - ], - "creative": [ - 0.022065, - -0.03407, - 0.011188, - 0.016746, - -0.051133, - 0.0020673, - -0.00043486, - -0.075899, - -0.018997, - 0.00061502, - -0.017648, - -0.0076607, - 0.0058997, - -0.026257, - -0.00010143, - 0.025787, - 0.03817, - 0.026244, - 0.024632, - -0.020708, - 0.029521, - 0.070405, - -0.027363, - 0.089893, - -0.048931, - 0.029408, - 0.0029091, - 0.03705, - 0.033539, - 0.02285, - -0.053083, - -0.026625, - 0.026027, - -0.097559, - 0.031009, - 0.052785, - 0.062118, - -0.021365, - -0.020158, - 0.024935, - -0.045859, - -0.076775, - -0.015174, - -0.018208, - 0.0069076, - -0.03724, - 0.047346, - 0.020795, - -0.0074717, - -0.036117, - 0.014921, - -0.026185, - -0.007931, - 0.046319, - -0.011022, - 0.058609, - -0.004901, - -0.047824, - -0.033522, - 0.056378, - 0.021098, - -0.038554, - 0.10201, - -0.015309, - 0.07264, - 0.01628, - -0.0084387, - 0.00085885, - 0.01092, - -0.071389, - 0.10386, - -0.02837, - 0.05899, - 0.047664, - 0.031557, - -0.014999, - -0.018562, - -0.053806, - 0.012715, - -0.0084871, - -0.026938, - 0.000020233, - 0.025283, - 0.034895, - 0.034208, - -0.020959, - -0.021783, - 0.031153, - 0.049974, - 0.027375, - 0.029507, - -0.052678, - -0.1084, - -0.012898, - -0.031611, - 0.037214, - 0.034537, - 0.024231, - 0.0065811, - -0.00081846, - 0.036101, - -0.0010008, - 0.0089463, - 0.034055, - -0.016045, - -0.13314, - -0.057789, - 0.046839, - -0.024012, - -0.010129, - -0.0058423, - 0.078849, - 0.042236, - 0.0087828, - -0.03252, - 0.025904, - -0.032212, - -0.02336, - -0.053326, - 0.020962, - -0.071171, - -0.065163, - -0.081204, - 0.03434, - 0.10372, - 0.0029868, - 0.035651, - -0.053706, - 0.01721, - 0.036666, - 0.00095311, - 0.048768, - -0.020645, - -0.026393, - 0.03149, - -0.024768, - -0.0049853, - 0.0016394, - -0.016847, - 0.020065, - 0.065318, - -0.033321, - 0.043479, - 0.03799, - 0.0097128, - -0.019266, - -0.019249, - -0.0060558, - 0.03508, - 0.018693, - 0.022202, - 0.11221, - 0.026499, - -0.097441, - 0.025979, - -0.060039, - 0.045704, - 0.047329, - -0.0048806, - 0.0025684, - 0.035927, - 0.031535, - -0.054096, - 0.0091158, - 0.034113, - -0.012959, - 0.028087, - -0.011882, - -0.011543, - 0.022929, - 0.10412, - 0.045197, - 0.035098, - -0.073041, - -0.018851, - 0.098029, - -0.0060821, - 0.056561, - -0.0093049, - 0.0027305, - -0.047071, - -0.052221, - -0.040476, - 0.0045818, - -0.023818, - -0.071644, - 0.013539, - 0.080626, - -0.01104, - 0.014291, - 0.012453, - 0.027599, - 0.088601, - -0.028326, - -0.068737, - -0.010004, - 0.051986, - -0.013608, - 0.00058308, - 0.00028417, - -0.13777, - 0.1022, - 0.027013, - 0.01776, - -0.012988, - 0.024274, - -0.029605, - 0.045135, - 0.055293, - -0.042501, - 0.068264, - 0.013007, - 0.039622, - 0.044143, - 0.019397, - -0.0034719, - 0.01546, - -0.044706, - -0.095713, - 0.012483, - -0.022742, - -0.012358, - -0.005187, - 0.080929, - 0.005671, - -0.03188, - 0.063047, - 0.06515, - 0.001742, - -0.033723, - 0.055026, - -0.016226, - -0.011973, - -0.068117, - -0.0079132, - -0.019889, - 0.006838, - -0.087349, - -0.049884, - 0.0067467, - 0.077095, - 0.012911, - -0.024508, - 0.041897, - -0.14516, - -0.01677, - -0.044276, - -0.045079, - -0.0097606, - -0.011092, - 0.027638, - -0.021241, - -0.01321, - 0.019141, - -0.021097, - 0.02634, - -0.017272, - 0.058327, - 0.028386, - 0.023951, - 0.046354, - 0.0095478, - 0.003256, - 0.069123, - -0.012693, - 0.040447, - 0.044876, - -0.0015722, - 0.017951, - -0.036802, - 0.013745, - 0.081045, - -0.10697, - -0.031831, - 0.020384, - -0.083313, - 0.0079024, - 0.026145, - -0.043761, - 0.059076, - 0.12792, - -0.02394, - 0.015249, - -0.023982, - -0.042977, - -0.026757, - -0.006167, - -0.016028, - -0.0064278, - 0.00020182, - 0.018756, - -0.01746, - 0.011898, - -0.014362, - -0.010707, - 0.029032, - 0.0047529, - 0.017832, - 0.0016216, - 0.041728 - ], - "competitions": [ - -0.0031677, - -0.066723, - 0.043934, - -0.0024733, - 0.017397, - -0.042681, - -0.0081278, - -0.048493, - 0.025116, - -0.0017639, - 0.094271, - -0.057109, - 0.023279, - -0.0042272, - 0.042165, - 0.10926, - 0.052922, - 0.037824, - 0.015848, - 0.011536, - -0.0061606, - -0.0014705, - 0.033133, - 0.03547, - 0.013696, - -0.025263, - 0.0088138, - -0.035316, - 0.040677, - -0.016544, - -0.0017575, - -0.016919, - -0.013897, - -0.068114, - 0.063695, - -0.00073715, - 0.057184, - -0.01849, - 0.016248, - -0.0028911, - -0.00962, - -0.07816, - -0.038273, - 0.011876, - 0.011427, - 0.0050993, - -0.0041186, - -0.046166, - 0.0036167, - -0.030143, - -0.033124, - 0.0080082, - 0.046271, - 0.036126, - -0.08194, - -0.0019603, - 0.028264, - 0.062964, - -0.029355, - 0.028659, - -0.015563, - 0.034743, - 0.093987, - 0.013468, - 0.024069, - -0.049384, - -0.015409, - -0.00061508, - 0.00049934, - 0.020459, - -0.004113, - -0.057991, - 0.03239, - 0.033103, - 0.055656, - 0.028505, - -0.011315, - -0.0027294, - 0.014332, - 0.028367, - -0.015401, - -0.0022931, - -0.057273, - 0.045015, - 0.033909, - -0.042344, - -0.0041953, - -0.006144, - -0.033358, - -0.0092949, - -0.042365, - 0.017522, - -0.045206, - 0.0293, - 0.030536, - 0.022764, - -0.022075, - -0.024732, - 0.026548, - -0.0040163, - 0.02756, - 0.02051, - -0.0043761, - 0.0045239, - 0.065017, - -0.0083017, - -0.035765, - 0.040737, - 0.0036465, - 0.025619, - 0.0073391, - 0.036376, - 0.047961, - 0.030285, - 0.036612, - -0.065328, - -0.0077953, - -0.012455, - -0.01023, - -0.0051183, - -0.021743, - 0.03187, - -0.070001, - 0.012562, - 0.055646, - -0.044069, - -0.024123, - -0.0032717, - 0.010232, - 0.087773, - -0.029319, - 0.038903, - -0.021746, - -0.019705, - 0.00233, - -0.050553, - 0.02649, - 0.018548, - -0.030282, - 0.0044364, - 0.040578, - 0.014508, - -0.014193, - -0.040546, - 0.045982, - -0.023378, - -0.017672, - -0.019964, - 0.034619, - 0.0062015, - 0.033492, - 0.04586, - -0.027837, - -0.040552, - 0.016617, - 0.008589, - -0.014191, - 0.034826, - -0.0050804, - 0.028005, - 0.0066651, - -0.0049304, - 0.012829, - 0.0087716, - 0.047756, - 0.028723, - 0.013086, - 0.0014977, - -0.022577, - -0.0049804, - 0.052824, - -0.0043772, - 0.018279, - 0.0049326, - -0.025932, - 0.045008, - -0.011624, - 0.024883, - -0.018529, - -0.026412, - 0.055072, - -0.028243, - -0.0095064, - -0.025036, - -0.036405, - -0.0072871, - -0.0089681, - 0.078728, - -0.026931, - 0.030345, - -0.022395, - 0.038807, - -0.075592, - -0.057872, - 0.038591, - 0.039687, - 0.036613, - -0.0036187, - 0.022485, - 0.0070321, - -0.12738, - 0.037827, - 0.039838, - 0.0044745, - -0.035786, - -0.056307, - -0.052964, - 0.025911, - 0.067457, - -0.027242, - 0.08205, - 0.0059683, - 0.0073338, - -0.029888, - 0.024287, - -0.046762, - 0.0031969, - -0.00088283, - -0.026683, - -0.063393, - 0.020273, - -0.063738, - -0.035195, - 0.068529, - 0.024909, - 0.015527, - -0.027173, - 0.025271, - 0.002611, - 0.00073164, - 0.02812, - -0.029337, - -0.035962, - 0.041516, - -0.0088827, - 0.0095093, - -0.0088037, - -0.018833, - -0.010286, - 0.026334, - -0.012101, - 0.012808, - -0.00095296, - -0.0071333, - 0.014711, - 0.058954, - -0.033302, - -0.041454, - 0.0092907, - -0.0074444, - 0.013484, - 0.038411, - 0.022335, - 0.019948, - -0.035196, - 0.041725, - -0.0047101, - 0.0090703, - -0.03011, - 0.025626, - 0.025617, - 0.02607, - 0.024467, - -0.041215, - 0.020259, - 0.018969, - -0.017732, - -0.011725, - 0.04926, - -0.036062, - 0.015601, - 0.049278, - -0.07442, - -0.0069758, - 0.008402, - -0.027439, - -0.00042838, - -0.0066423, - 0.0038672, - -0.01054, - 0.017887, - 0.00045403, - 0.028058, - 0.024974, - 0.0046689, - -0.0012563, - -0.0010618, - 0.014887, - -0.044642, - -0.0077617, - 0.032537, - -0.039923, - -0.030315, - -0.033304, - 0.00086971, - -0.0048532, - -0.069487, - 0.0063311, - -0.01675, - 0.0012396 - ], - "cannabis": [ - -0.11061, - -0.0088135, - -0.046589, - 0.12063, - -0.036145, - -0.054958, - 0.030416, - -0.10396, - 0.040484, - 0.0052842, - -0.058531, - -0.0053662, - 0.025229, - -0.049495, - 0.093254, - 0.024008, - 0.10055, - -0.079078, - 0.038818, - 0.032863, - 0.0012794, - 0.033743, - 0.027303, - 0.026819, - -0.029838, - -0.095923, - 0.0015581, - 0.070154, - 0.087779, - -0.0031704, - 0.014173, - 0.0042134, - -0.029999, - 0.029862, - 0.050851, - 0.011919, - 0.017942, - -0.053518, - -0.038658, - 0.0068599, - 0.044346, - -0.085905, - -0.025752, - -0.046326, - 0.075455, - -0.00806, - -0.052136, - 0.057367, - 0.015288, - 0.0060704, - -0.046456, - 0.020092, - 0.030798, - 0.013021, - -0.11906, - -0.065871, - -0.0070616, - -0.017911, - -0.062299, - -0.022075, - 0.042665, - -0.026283, - 0.098027, - 0.051897, - -0.034592, - -0.045288, - 0.083262, - -0.073797, - -0.0079732, - -0.019733, - 0.054384, - 0.066068, - 0.040127, - -0.053938, - -0.053863, - -0.1322, - -0.0068852, - -0.0009673, - 0.01977, - 0.0034578, - 0.00015324, - -0.010202, - -0.084667, - 0.039192, - -0.059646, - -0.062036, - 0.018122, - -0.028752, - 0.042402, - 0.0051366, - 0.062441, - 0.0096427, - -0.071455, - 0.01176, - -0.028435, - 0.068297, - -0.057268, - -0.0032704, - 0.033649, - 0.054507, - -0.031474, - 0.015288, - -0.0015917, - -0.08462, - 0.01713, - -0.10465, - -0.14538, - 0.036939, - 0.046169, - 0.10042, - -0.0020144, - 0.051146, - 0.07615, - 0.017848, - -0.034945, - 0.01345, - 0.049212, - -0.096718, - -0.040476, - 0.085941, - 0.011885, - 0.015656, - -0.0047977, - -0.069821, - 0.069669, - 0.025978, - -0.053102, - -0.072468, - 0.017842, - 0.068834, - 0.063358, - -0.01068, - 0.032878, - -0.016313, - 0.024487, - -0.09555, - -0.12004, - 0.0024729, - -0.012995, - -0.0030118, - 0.087657, - 0.053725, - -0.080374, - -0.021371, - 0.0081418, - 0.003121, - -0.01355, - 0.013347, - -0.0085784, - -0.055876, - 0.057117, - 0.10085, - 0.028514, - -0.062273, - 0.0039794, - -0.014923, - -0.018445, - 0.0012817, - 0.035321, - 0.023411, - 0.04633, - 0.087301, - -0.072639, - 0.094452, - -0.027319, - -0.069223, - 0.13433, - 0.10511, - 0.012712, - 0.04775, - -0.0050573, - -0.038604, - 0.046943, - 0.035575, - 0.0017868, - 0.039646, - -0.041939, - -0.031495, - -0.022476, - -0.082607, - 0.0057484, - 0.0080713, - -0.045889, - -0.052568, - 0.12165, - -0.03528, - 0.10834, - 0.10506, - -0.0046944, - 0.0028961, - 0.13812, - 0.0075078, - -0.047103, - 0.015191, - -0.056502, - 0.017793, - -0.035589, - 0.056016, - -0.0015473, - -0.02351, - -0.14755, - 0.02872, - -0.044765, - 0.041706, - -0.021204, - 0.034052, - 0.13602, - 0.11116, - 0.012813, - -0.013793, - 0.11168, - 0.021493, - 0.018362, - -0.0061821, - 0.053797, - 0.028186, - -0.033367, - -0.011517, - -0.0082907, - -0.042738, - 0.0020417, - -0.010191, - -0.035377, - 0.09311, - -0.018804, - 0.018753, - -0.030381, - 0.042761, - 0.029879, - -0.013353, - -0.094913, - -0.012935, - -0.099915, - -0.0037788, - -0.0067581, - -0.082266, - 0.059434, - 0.032124, - -0.010751, - -0.074012, - -0.0022463, - 0.019513, - -0.0018146, - 0.0050606, - 0.012445, - -0.0095012, - -0.015646, - 0.0066661, - 0.043067, - -0.054549, - 0.0002151, - 0.040781, - 0.045292, - -0.12141, - -0.019077, - -0.041961, - -0.011223, - -0.0048847, - 0.01701, - -0.055228, - 0.045392, - -0.017701, - -0.03739, - 0.013676, - 0.042981, - -0.072448, - -0.017269, - -0.071351, - -0.012461, - 0.050269, - -0.010489, - 0.078339, - -0.08527, - -0.016143, - -0.073754, - -0.041018, - 0.027671, - 0.048483, - -0.071974, - -0.0077857, - 0.080982, - 0.05366, - -0.064422, - -0.044178, - -0.032597, - 0.015477, - -0.0087762, - 0.040691, - 0.094284, - -0.033871, - 0.043234, - -0.01827, - -0.031569, - 0.025669, - -0.046072, - 0.02663, - 0.030287, - -0.031904, - 0.000025237, - -0.039384 - ], - "civilization": [ - -0.0035324, - -0.04231, - 0.045702, - -0.024865, - 0.013178, - -0.0066078, - -0.011498, - -0.052111, - 0.050027, - 0.066539, - -0.0079736, - -0.021489, - 0.023787, - 0.044637, - -0.014418, - -0.01235, - 0.076672, - -0.011131, - 0.0038203, - 0.02596, - 0.00065006, - 0.00099458, - -0.023373, - 0.039411, - -0.02004, - -0.0080641, - -0.0083621, - 0.015333, - 0.010944, - 0.028111, - -0.016642, - -0.0077126, - 0.036283, - -0.030503, - -0.011859, - 0.017962, - 0.060305, - 0.0326, - 0.016634, - 0.017671, - -0.03385, - -0.072805, - 0.019902, - 0.042771, - 0.014442, - -0.03197, - 0.0095486, - 0.005001, - -0.011371, - -0.027142, - 0.039086, - 0.048757, - -0.015529, - -0.019263, - -0.043775, - 0.045869, - 0.057427, - -0.023111, - -0.021771, - 0.011515, - 0.060664, - 0.000092951, - 0.023409, - -0.0081718, - 0.046697, - 0.0024553, - 0.0036305, - 0.041316, - 0.046416, - -0.024301, - 0.01972, - -0.0068178, - -0.027116, - -0.01139, - -0.0018253, - 0.017278, - 0.0031154, - 0.024675, - 0.01651, - 0.044048, - -0.003057, - 0.02344, - -0.040755, - 0.033391, - -0.028621, - -0.027971, - -0.017984, - -0.023382, - -0.019484, - -0.0029441, - 0.0053419, - 0.037371, - -0.044895, - 0.0046763, - -0.0095933, - 0.036872, - 0.031474, - -0.019062, - -0.0033559, - -0.008255, - 0.052954, - 0.017215, - 0.028189, - -0.050034, - -0.016593, - -0.078257, - 0.02857, - 0.010912, - -0.010091, - -0.070686, - 0.023424, - 0.04981, - 0.03176, - 0.017397, - -0.036897, - 0.014267, - -0.032756, - 0.024702, - -0.028218, - 0.023138, - 0.0021865, - -0.052329, - -0.039201, - 0.014329, - 0.030349, - 0.0055512, - -0.02389, - -0.08402, - 0.011441, - 0.10069, - 0.038853, - -0.0010689, - -0.017263, - 0.041405, - 0.034879, - -0.0088636, - 0.0014183, - 0.033031, - 0.0052928, - -0.025182, - -0.0077193, - -0.032632, - 0.0082259, - -0.0069526, - 0.046912, - 0.021666, - -0.0075092, - -0.0016439, - 0.0076489, - -0.017474, - 0.07176, - 0.041196, - -0.032067, - -0.025546, - 0.0005963, - 0.0069496, - 0.031901, - 0.0016514, - 0.030578, - -0.060118, - 0.032475, - -0.057445, - -0.060138, - -0.012233, - 0.0031469, - 0.01342, - -0.028674, - 0.017932, - 0.039561, - 0.0035785, - 0.026777, - -0.043841, - -0.0032169, - 0.018487, - 0.020369, - 0.029881, - 0.053374, - 0.042537, - 0.00015651, - 0.068696, - -0.018745, - 0.080805, - -0.0075796, - 0.020804, - 0.014147, - -0.023174, - 0.02908, - 0.065128, - -0.020371, - -0.011443, - 0.013905, - 0.057833, - -0.031077, - -0.021219, - 0.0004466, - 0.013881, - -0.039689, - -0.0059818, - -0.019137, - 0.040708, - -0.10845, - 0.025906, - -0.010871, - -0.045228, - 0.0087761, - 0.035831, - 0.082364, - -0.035437, - 0.032609, - 0.01364, - 0.062215, - -0.025667, - -0.0092148, - 0.026441, - 0.02807, - 0.024562, - 0.011458, - 0.025882, - 0.039741, - -0.022816, - -0.02898, - 0.035989, - -0.010104, - 0.071538, - -0.019226, - 0.040585, - 0.011423, - 0.036186, - -0.016076, - -0.045391, - 0.0070339, - -0.021577, - -0.053309, - -0.01468, - 0.031822, - -0.019331, - -0.0094366, - 0.026527, - -0.014991, - -0.012641, - 0.018912, - 0.072921, - 0.008645, - 0.0076703, - 0.011555, - 0.019625, - -0.0016047, - -0.038349, - -0.043734, - -0.034515, - 0.025993, - -0.032618, - -0.029008, - -0.024163, - -0.0052674, - 0.069624, - -0.026148, - 0.040461, - 0.042442, - -0.017798, - -0.014474, - 0.026555, - 0.0043084, - -0.010869, - 0.021165, - -0.024165, - 0.025684, - 0.026877, - 0.044692, - 0.029474, - -0.04055, - 0.040965, - -0.062327, - -0.029879, - -0.0048093, - -0.020724, - -0.0012512, - 0.039921, - -0.0078752, - -0.050173, - 0.064402, - 0.0084015, - -0.011084, - -0.068533, - 0.01188, - 0.035281, - 0.0132, - -0.00049012, - 0.0035092, - 0.03431, - -0.016936, - 0.0014171, - -0.030741, - -0.055161, - 0.016531, - 0.0085852, - 0.046191, - -0.0022898, - -0.042336, - -0.00077838 - ], - "landscape": [ - 0.032402, - -0.04257, - 0.021632, - 0.052873, - -0.0012314, - -0.0028161, - -0.050683, - -0.072599, - 0.020969, - -0.012581, - 0.0072964, - -0.048462, - -0.030765, - 0.058235, - -0.000076706, - -0.011792, - 0.098672, - 0.032205, - 0.059951, - 0.0014075, - -0.033856, - -0.024623, - 0.044978, - 0.06838, - 0.032417, - -0.075163, - 0.004899, - 0.053621, - -0.022851, - 0.051348, - -0.015762, - 0.0098236, - 0.011062, - -0.043913, - 0.038887, - 0.017633, - 0.060041, - -0.012746, - 0.040872, - -0.022981, - 0.009994, - -0.14093, - -0.032019, - -0.031001, - -0.003575, - -0.021516, - -0.028232, - 0.016943, - -0.045491, - -0.0067415, - -0.010744, - -0.043819, - -0.032465, - 0.030729, - -0.046558, - -0.05297, - -0.031341, - 0.042287, - -0.017284, - -0.040257, - 0.025765, - -0.020345, - 0.093879, - -0.032012, - 0.093625, - 0.015031, - -0.018433, - 0.024578, - -0.01777, - 0.050138, - 0.038605, - 0.006715, - -0.023416, - 0.051679, - -0.029795, - -0.016466, - -0.029006, - -0.014221, - -0.030524, - -0.0099898, - -0.013397, - 0.015131, - -0.0027868, - 0.043092, - -0.012127, - -0.044635, - 0.039972, - -0.019356, - 0.035457, - 0.015307, - 0.028382, - 0.067921, - -0.087495, - 0.038871, - -0.007151, - 0.058434, - -0.053087, - 0.00023413, - 0.083694, - 0.024774, - 0.084325, - 0.024035, - 0.062365, - 0.011737, - -0.017302, - -0.064141, - -0.010549, - 0.04486, - -0.0082004, - 0.0016816, - 0.023892, - 0.083019, - 0.036994, - 0.0097571, - -0.054127, - -0.019322, - -0.030994, - 0.040197, - -0.026868, - 0.0068931, - -0.012793, - -0.0078849, - -0.031662, - 0.0049379, - 0.058741, - 0.022608, - -0.028562, - -0.082986, - 0.0039512, - 0.074966, - 0.0094445, - -0.013521, - -0.044597, - 0.047682, - 0.023121, - 0.042606, - 0.0055757, - 0.023702, - 0.0072668, - 0.0041859, - -0.053075, - -0.075808, - -0.010674, - 0.050966, - -0.0029428, - 0.0080518, - 0.027979, - -0.0085771, - 0.0022178, - -0.068865, - 0.047216, - 0.047314, - 0.032663, - -0.042048, - 0.015078, - 0.051609, - 0.022183, - 0.026329, - -0.037347, - -0.0073179, - 0.027823, - -0.04087, - -0.094744, - 0.058411, - -0.023297, - -0.0069394, - 0.031102, - -0.01223, - 0.037858, - 0.072297, - -0.023913, - -0.0010969, - -0.02875, - -0.024558, - 0.0292, - 0.048323, - -0.013444, - 0.042889, - -0.050359, - -0.027677, - -0.021373, - 0.031668, - 0.026238, - -0.034904, - -0.066103, - -0.025627, - 0.057669, - 0.081134, - -0.027392, - 0.022651, - 0.018794, - 0.038605, - -0.0027614, - 0.010451, - -0.039034, - -0.058006, - 0.0036456, - -0.021021, - 0.017966, - -0.0090171, - -0.13535, - -0.030801, - -0.0015786, - -0.099282, - 0.0062468, - 0.021324, - 0.0081935, - 0.065959, - -0.035351, - 0.010574, - 0.089539, - -0.021868, - 0.030891, - -0.011641, - 0.034991, - -0.033696, - 0.058231, - -0.022091, - -0.016355, - -0.064583, - 0.0062381, - -0.010077, - 0.020572, - 0.063236, - -0.029623, - -0.039911, - 0.050443, - 0.046796, - 0.0071029, - 0.019876, - -0.045505, - -0.035929, - -0.052778, - 0.0073929, - 0.0094512, - 0.054617, - 0.079909, - 0.032836, - 0.010162, - -0.029527, - 0.018465, - 0.036331, - -0.021846, - 0.0277, - 0.0034918, - 0.016144, - -0.040723, - -0.0029081, - -0.024944, - -0.0066703, - 0.047946, - -0.079852, - -0.015836, - -0.043539, - -0.029849, - 0.086856, - -0.028169, - 0.039535, - 0.053871, - 0.027683, - 0.020009, - 0.034661, - -0.0099531, - -0.031241, - 0.070132, - -0.053489, - 0.030084, - -0.0045027, - 0.040836, - -0.013101, - -0.070027, - 0.060519, - -0.090965, - -0.03182, - 0.041712, - -0.017022, - 0.028683, - 0.054651, - 0.034911, - 0.0296, - 0.10066, - 0.018725, - 0.0021659, - 0.025675, - 0.0045706, - -0.011381, - -0.022246, - -0.018292, - -0.041791, - -0.0083233, - -0.0075793, - -0.012014, - -0.015171, - 0.023131, - -0.01484, - -0.0029273, - -0.010583, - 0.07493, - 0.01342, - -0.016453 - ], - "innovation": [ - -0.042812, - -0.034234, - -0.026762, - 0.034907, - -0.06468, - 0.023688, - 0.011766, - -0.05975, - 0.013342, - 0.016423, - 0.013957, - -0.010557, - 0.031172, - -0.047508, - 0.03753, - 0.060456, - 0.040571, - 0.025349, - 0.033945, - 0.0099961, - -0.003263, - 0.066886, - 0.0051497, - 0.030461, - -0.034946, - -0.0038763, - 0.0050503, - -0.015385, - 0.048533, - 0.0094153, - -0.015701, - -0.033265, - -0.028355, - -0.083456, - -0.0097987, - 0.00026596, - 0.069357, - -0.0097709, - 0.027801, - 0.025372, - -0.012232, - -0.088547, - -0.030228, - -0.023042, - -0.01741, - -0.0077883, - -0.0075237, - 0.0048615, - -0.018877, - 0.017145, - 0.042728, - 0.019897, - -0.034229, - 0.028691, - -0.033294, - 0.036488, - 0.031558, - 0.025021, - -0.0046891, - 0.072159, - -0.0085123, - -0.0035116, - 0.02975, - -0.014886, - 0.056095, - 0.058731, - -0.0073252, - -0.024525, - 0.038818, - -0.069347, - 0.038247, - -0.01946, - -0.015949, - 0.039536, - 0.019107, - 0.011226, - -0.011454, - -0.0021208, - -0.019883, - 0.015273, - -0.024736, - 0.015916, - -0.022549, - 0.039517, - 0.031891, - -0.0038138, - -0.019133, - 0.007064, - 0.030238, - 0.0031903, - 0.017736, - 0.021217, - -0.082153, - -0.019829, - 0.0094952, - 0.0086603, - 0.075436, - -0.044639, - -0.070427, - 0.015358, - -0.000093394, - -0.057632, - 0.032137, - -0.00062782, - -0.0066117, - -0.026209, - 0.028743, - 0.032187, - -0.0022668, - 0.0149, - 0.013907, - 0.070595, - 0.036482, - 0.047883, - -0.041566, - -0.01036, - -0.04543, - 0.0040021, - -0.037448, - 0.010551, - -0.017907, - -0.061043, - -0.014502, - -0.0069568, - 0.065417, - 0.0070548, - -0.012069, - -0.07601, - 0.034661, - 0.080139, - 0.031879, - -0.046543, - -0.028559, - -0.027869, - 0.071392, - -0.033188, - 0.019447, - 0.032377, - -0.0060696, - 0.0014092, - 0.070553, - -0.030233, - 0.031063, - 0.0033021, - -0.037067, - -0.0072514, - 0.020824, - 0.046574, - 0.05251, - 0.013812, - 0.091682, - 0.054969, - 0.035646, - -0.096897, - 0.042876, - 0.024919, - 0.037253, - 0.03327, - -0.037118, - -0.007639, - 0.044298, - -0.022714, - -0.082572, - -0.0081626, - 0.055182, - 0.03146, - 0.00028516, - -0.01205, - 0.030892, - -0.01326, - 0.074683, - 0.056597, - -0.027608, - 0.0013046, - 0.012717, - 0.044383, - -0.022896, - 0.054542, - -0.064628, - -0.026423, - -0.037856, - -0.026375, - -0.014127, - -0.056406, - -0.043242, - -0.05122, - -0.029644, - 0.073947, - -0.00050782, - 0.012008, - -0.040385, - 0.071354, - 0.0089211, - -0.054136, - -0.0482, - -0.02561, - -0.0016237, - -0.028286, - 0.013905, - -0.031765, - -0.11301, - 0.0583, - 0.048319, - -0.025828, - -0.033092, - -0.00020153, - 0.01006, - 0.0086373, - 0.01111, - -0.010365, - 0.050884, - 0.012713, - -0.0066087, - 0.024447, - 0.051111, - 0.018219, - -0.0086936, - -0.025802, - -0.0122, - -0.052839, - -0.016107, - -0.043512, - 0.043835, - 0.083454, - 0.016214, - -0.012776, - 0.049697, - 0.058162, - 0.016446, - -0.035595, - -0.0018636, - -0.05951, - -0.054171, - -0.015946, - 0.070107, - 0.029314, - 0.0022136, - -0.032416, - 0.0042194, - -0.00021353, - 0.028763, - -0.0024837, - 0.016969, - -0.003805, - -0.051366, - -0.023267, - -0.02314, - -0.055901, - 0.038985, - 0.033112, - 0.050939, - 0.0017393, - 0.0078624, - -0.031668, - 0.013815, - 0.03689, - -0.014085, - 0.033216, - 0.019083, - 0.029533, - 0.021985, - -0.018121, - 0.016111, - 0.0010442, - 0.01627, - 0.039947, - 0.053556, - -0.0079882, - -0.0019082, - -0.0048501, - 0.0040833, - 0.051628, - -0.10739, - -0.035106, - -0.0055081, - -0.061991, - 0.056297, - 0.06439, - -0.026892, - -0.014518, - 0.069627, - -0.054823, - -0.011208, - 0.014827, - -0.00015147, - -0.035942, - -0.015406, - 0.035817, - -0.0099053, - -0.019247, - -0.030372, - -0.0075311, - -0.0025224, - -0.049531, - 0.020475, - -0.0052981, - -0.010754, - 0.027771, - 0.0084645, - -0.015364 - ], - "technology-based": [ - -0.044221, - -0.018467, - -0.0063735, - 0.0076839, - -0.013475, - -0.0051413, - 0.02184, - -0.052634, - 0.0042805, - 0.028118, - 0.015313, - -0.023681, - 0.0059858, - 0.02895, - 0.010466, - 0.043823, - 0.056264, - 0.026505, - 0.030303, - -0.000014091, - -0.0046507, - 0.0090164, - -0.0017321, - 0.052225, - -0.04238, - 0.0055437, - -0.026768, - 0.0044631, - 0.041137, - 0.0054805, - -0.0082402, - -0.010884, - -0.023434, - -0.067352, - 0.057095, - 0.0052494, - -0.0017474, - -0.015626, - 0.021068, - 0.0013907, - -0.030302, - -0.072154, - -0.0041709, - 0.042268, - -0.0042329, - -0.040219, - 0.028354, - 0.040432, - 0.011559, - -0.0012107, - -0.024789, - 0.0031465, - -0.017518, - 0.028025, - -0.000070539, - 0.0074533, - 0.028313, - -0.0098843, - 0.0032251, - -0.013658, - -0.001885, - 0.033393, - 0.072547, - 0.036457, - 0.027824, - -0.0081592, - -0.029913, - 0.00054314, - 0.0074494, - -0.037172, - 0.033152, - -0.0098442, - 0.012759, - 0.030596, - -0.0095049, - 0.0077404, - 0.015872, - -0.016821, - 0.024681, - 0.00078256, - 0.014537, - 0.0056682, - -0.030778, - 0.0025449, - 0.011171, - 0.020319, - -0.039895, - 0.0041608, - -0.012273, - 0.024325, - 0.026915, - -0.00088426, - -0.062102, - 0.015235, - -0.019666, - 0.027925, - 0.036909, - -0.049713, - -0.038426, - 0.021606, - 0.011828, - -0.028736, - 0.035938, - -0.031519, - -0.01029, - -0.041134, - 0.0092373, - 0.0099318, - -0.014713, - -0.03229, - -0.0031383, - 0.031536, - 0.014937, - 0.016431, - -0.039586, - 0.014797, - -0.027864, - -0.001833, - -0.021253, - 0.0073548, - -0.071035, - 0.0087944, - 0.011261, - -0.030665, - 0.06859, - -0.00089958, - -0.02855, - 0.0084871, - -0.014016, - 0.02889, - -0.0071949, - 0.0020284, - -0.032966, - -0.018182, - 0.02042, - 0.0042382, - 0.07176, - -0.0016077, - 0.009419, - -0.00055021, - 0.028522, - -0.0055643, - -0.0039362, - -0.0041009, - -0.023806, - -0.027241, - -0.0086797, - -0.00059571, - -0.010372, - 0.027339, - 0.05852, - 0.074176, - 0.0093217, - -0.053592, - 0.0099408, - 0.032144, - -0.015239, - 0.021357, - -0.0064285, - -0.013459, - 0.031782, - -0.00067575, - -0.033136, - 0.021041, - 0.033553, - 0.009869, - -0.017682, - -0.044426, - 0.0020967, - -0.025979, - 0.0017592, - 0.035811, - -0.0078011, - 0.0061289, - -0.000025809, - 0.040314, - -0.031308, - 0.016623, - -0.038378, - 0.022925, - 0.025291, - -0.0057277, - -0.007241, - -0.0071306, - -0.005336, - -0.029278, - -0.017309, - 0.075527, - -0.020709, - 0.027386, - -0.02504, - 0.034038, - 0.036279, - 0.0012935, - 0.023557, - -0.013692, - 0.016382, - 0.022584, - 0.0093632, - -0.037945, - -0.084307, - 0.01485, - 0.016608, - 0.0055242, - -0.0042892, - 0.035794, - -0.0021913, - 0.023438, - 0.0015842, - 0.00074088, - 0.08114, - 0.010085, - 0.021471, - -0.016172, - -0.0089638, - 0.01944, - 0.03126, - -0.0074593, - -0.019708, - -0.013172, - -0.0042842, - 0.010174, - 0.018732, - 0.033581, - -0.031755, - -0.017269, - -0.0006187, - 0.031138, - -0.0036681, - -0.0062266, - -0.013323, - -0.0044283, - -0.02224, - -0.014071, - 0.033885, - 0.019215, - 0.039889, - -0.0027891, - -0.020755, - 0.003715, - 0.024781, - -0.0045067, - 0.03686, - 0.0019447, - -0.090537, - 0.0039802, - -0.025487, - -0.00094296, - 0.0017739, - 0.015698, - -0.0048105, - 0.001361, - 0.00014201, - -0.035961, - -0.027607, - 0.049403, - -0.024949, - -0.0064824, - 0.0078997, - 0.0054754, - 0.0032513, - 0.03617, - -0.0097856, - 0.014453, - 0.0088413, - -0.0011315, - 0.02511, - -0.0020491, - 0.01712, - 0.017119, - -0.030545, - 0.047743, - -0.054166, - -0.031001, - -0.035441, - -0.049614, - 0.016966, - 0.041183, - -0.019911, - -0.0079922, - 0.078364, - -0.0033133, - 0.004117, - -0.011183, - -0.040824, - -0.022634, - 0.0055384, - -0.0015451, - 0.0063389, - -0.027325, - -0.034702, - 0.014148, - 0.0025246, - 0.0015531, - 0.0201, - 0.0040581, - 0.00092579, - -0.0098439, - 0.0097408, - -0.012242 - ], - "payments": [ - 0.0053308, - 0.043281, - -0.041623, - -0.0076745, - 0.009007, - -0.048, - -0.031645, - -0.10593, - 0.027507, - -0.029747, - -0.001415, - -0.011084, - -0.022882, - -0.031362, - -0.039702, - 0.085108, - 0.056208, - 0.016362, - 0.08609, - 0.002982, - -0.016842, - -0.00045385, - -0.050395, - 0.016351, - 0.032554, - -0.043565, - -0.053135, - 0.041431, - 0.10755, - -0.038568, - 0.011581, - 0.020935, - -0.087938, - -0.054973, - 0.054443, - 0.051148, - -0.022306, - 0.047714, - 0.043851, - -0.035512, - -0.076943, - -0.10774, - 0.008615, - -0.01925, - 0.021822, - 0.0065461, - 0.0088777, - -0.031249, - -0.042794, - 0.016698, - -0.10253, - -0.034334, - 0.018484, - -0.028177, - -0.10629, - -0.010891, - -0.012422, - 0.023897, - -0.0076123, - -0.047654, - 0.051315, - -0.017416, - 0.12726, - 0.083574, - 0.012261, - -0.097732, - -0.000952, - -0.04676, - -0.045976, - 0.02212, - -0.012329, - -0.023203, - 0.070007, - -0.025301, - 0.036781, - 0.061423, - 0.017464, - -0.0020191, - 0.018075, - -0.07026, - -0.02167, - -0.039793, - -0.017198, - 0.07742, - 0.010529, - -0.016235, - 0.030311, - -0.037169, - 0.023546, - -0.051872, - 0.016845, - 0.011043, - -0.07654, - 0.025773, - -0.061195, - 0.011288, - -0.066947, - -0.047888, - -0.040317, - -0.018639, - -0.00051641, - -0.028673, - -0.016843, - -0.03823, - 0.064097, - -0.042166, - 0.00048488, - -0.0014977, - -0.040553, - -0.047822, - 0.038179, - 0.060836, - 0.079626, - 0.045346, - 0.004216, - 0.019668, - 0.01111, - -0.010433, - -0.053585, - -0.014783, - -0.0076876, - 0.030149, - 0.017037, - 0.015797, - 0.12756, - 0.015282, - -0.012073, - -0.072939, - 0.019088, - 0.1053, - -0.020801, - 0.037711, - -0.053569, - -0.0090371, - 0.088097, - 0.054083, - -0.01378, - 0.047764, - -0.064646, - -0.025058, - 0.028816, - -0.017042, - -0.014784, - 0.017019, - 0.029898, - -0.017541, - -0.057791, - 0.0093791, - 0.022004, - -0.046506, - 0.018677, - 0.053349, - 0.011818, - -0.090524, - 0.026047, - 0.002606, - 0.069777, - -0.010181, - -0.023906, - -0.030503, - 0.10637, - 0.020754, - -0.01324, - -0.0096637, - 0.016107, - 0.016463, - 0.02146, - 0.054678, - 0.025422, - 0.018622, - 0.0097498, - -0.0015264, - 0.014469, - 0.0028471, - -0.043841, - 0.028829, - -0.036932, - -0.029758, - -0.036959, - -0.03009, - 0.039374, - 0.036894, - 0.036022, - 0.013476, - -0.091213, - -0.075651, - -0.0088422, - 0.089211, - 0.023657, - -0.044694, - -0.0099666, - 0.037398, - -0.033471, - -0.0065481, - 0.0091054, - -0.088743, - -0.069761, - -0.050624, - -0.01922, - -0.0099161, - -0.18671, - 0.070328, - 0.034011, - -0.0019324, - -0.013266, - 0.03394, - -0.0047811, - -0.099688, - -0.036614, - -0.033129, - 0.085902, - 0.013838, - -0.026429, - 0.02374, - 0.044385, - 0.095926, - -0.017864, - 0.063271, - -0.039044, - -0.068683, - 0.049662, - 0.018071, - 0.03253, - 0.10137, - 0.094879, - 0.036933, - -0.00016649, - 0.012683, - -0.0050409, - 0.016246, - -0.0063429, - -0.028578, - -0.076047, - -0.045225, - 0.092541, - 0.030924, - -0.035549, - 0.0047536, - -0.0070897, - 0.030111, - -0.046066, - 0.010338, - -0.015803, - -0.033312, - -0.040367, - -0.0095117, - -0.015403, - -0.06665, - 0.02892, - -0.006529, - 0.040046, - -0.044059, - 0.08516, - 0.032089, - -0.017317, - -0.02314, - -0.0088227, - 0.012227, - -0.10092, - -0.0095762, - -0.0078041, - 0.00079027, - -0.0064306, - -0.032841, - 0.033866, - -0.027548, - -0.013198, - -0.031535, - 0.025311, - 0.058347, - -0.018441, - 0.061882, - -0.1199, - -0.062979, - -0.062569, - 0.0031515, - 0.049606, - 0.025184, - 0.058405, - 0.043808, - 0.061863, - 0.0060998, - -0.015546, - 0.055072, - 0.025401, - 0.084969, - -0.027004, - 0.11192, - -0.098562, - 0.039007, - 0.027184, - -0.044191, - -0.067967, - 0.011825, - -0.073228, - -0.065918, - -0.015305, - -0.011181, - -0.068551, - -0.022684 - ], - "Interests": [ - 0.036278, - -0.014065, - 0.010813, - -0.058387, - -0.038493, - 0.0053433, - -0.012518, - -0.043943, - 0.032268, - -0.018233, - 0.0020022, - -0.071342, - -0.055255, - -0.030136, - 0.022708, - -0.015863, - 0.033913, - 0.044736, - 0.097429, - -0.03383, - -0.039852, - 0.010699, - 0.049676, - 0.074211, - -0.027419, - -0.019712, - -0.0029444, - -0.0031145, - 0.069986, - -0.06323, - -0.01425, - -0.047381, - -0.0072833, - 0.010357, - 0.060462, - -0.027556, - -0.02883, - -0.0049863, - 0.066715, - 0.012732, - -0.011375, - 0.11374, - -0.040823, - -0.047039, - 0.020399, - -0.023813, - -0.033931, - -0.027496, - -0.010321, - -0.076573, - 0.035219, - 0.063189, - 0.02241, - -0.015691, - 0.012759, - 0.051656, - -0.031325, - 0.055825, - -0.08779, - -0.011972, - -0.0078707, - 0.01291, - 0.045738, - 0.026403, - -0.015865, - -0.028908, - -0.021066, - 0.032919, - 0.054924, - 0.029885, - 0.074721, - 0.010335, - 0.042321, - 0.043102, - 0.052825, - -0.017599, - -0.015354, - -0.084379, - 0.00097238, - -0.007584, - 0.033175, - 0.017197, - -0.031451, - 0.035695, - -0.02024, - -0.034436, - 0.021962, - -0.068493, - 0.037193, - 0.058593, - 0.062907, - 0.039156, - -0.035468, - 0.0076021, - -0.03418, - 0.047837, - -0.075273, - -0.021298, - -0.027487, - -0.001408, - 0.023573, - 0.069194, - -0.064018, - -0.051905, - -0.01114, - -0.057165, - -0.0057466, - 0.017081, - -0.0131, - -0.037251, - -0.076456, - 0.062248, - 0.020118, - 0.051434, - 0.00074718, - 0.0046214, - -0.02089, - -0.036873, - 0.055978, - 0.066264, - 0.031935, - 0.0022957, - -0.034244, - -0.119, - 0.10452, - 0.031708, - -0.06681, - -0.0072362, - 0.027928, - 0.20369, - 0.061534, - 0.054072, - 0.02834, - 0.013102, - -0.047287, - 0.0050976, - 0.021129, - 0.067228, - -0.016619, - 0.071869, - 0.023506, - 0.012599, - 0.0037309, - 0.042877, - 0.050187, - -0.02864, - -0.010928, - -0.067854, - 0.018484, - 0.0056305, - 0.11132, - 0.078659, - 0.035193, - -0.043697, - 0.014449, - 0.034505, - 0.085888, - -0.0014301, - 0.028164, - -0.026299, - 0.043714, - -0.033216, - -0.069541, - -0.029051, - -0.040576, - 0.0309, - -0.011904, - -0.027554, - -0.028985, - -0.025707, - -0.042931, - -0.027439, - 0.08219, - 0.0057876, - -0.073019, - 0.062536, - -0.023477, - 0.032626, - 0.0041947, - -0.052966, - -0.030662, - 0.002184, - 0.0022196, - 0.05801, - -0.017959, - 0.082951, - 0.053372, - 0.15506, - 0.046638, - -0.032079, - -0.02936, - 0.13618, - -0.075077, - -0.00071883, - 0.0057545, - 0.037558, - -0.034209, - -0.0046428, - -0.037789, - 0.034816, - 0.034781, - 0.085366, - 0.014864, - -0.074972, - 0.060012, - 0.031598, - -0.0048723, - -0.01944, - 0.041329, - 0.046954, - 0.086533, - 0.023464, - -0.0081578, - -0.019431, - 0.046683, - 0.019649, - -0.016178, - -0.088459, - -0.081517, - 0.026633, - -0.009271, - -0.010032, - -0.036948, - 0.083742, - 0.052119, - 0.063682, - 0.039017, - 0.089722, - -0.017992, - -0.014636, - -0.010211, - -0.042028, - -0.015193, - -0.083965, - 0.023444, - 0.018712, - 0.019322, - 0.033157, - -0.11802, - -0.013118, - -0.036532, - -0.0063764, - 0.042787, - 0.028023, - 0.10918, - 0.017802, - -0.049602, - -0.094577, - 0.023946, - -0.14274, - -0.0070331, - -0.049873, - -0.030396, - -0.018119, - -0.051864, - -0.043605, - -0.057382, - 0.0018445, - 0.033993, - -0.018138, - -0.062794, - 0.018666, - -0.0076957, - -0.047322, - 0.00819, - 0.0039715, - -0.045803, - -0.0025742, - -0.023516, - -0.044281, - 0.018765, - 0.078987, - -0.031884, - 0.019971, - 0.070266, - -0.051965, - 0.051318, - 0.0058334, - 0.036903, - 0.0031214, - -0.0070376, - -0.028411, - 0.076976, - -0.025914, - 0.097244, - -0.0028812, - -0.03699, - 0.015358, - -0.0092141, - 0.021775, - -0.031512, - -0.0012596, - -0.015755, - 0.015775, - -0.050585, - -0.0081959, - -0.063426, - 0.032785, - -0.012797, - -0.01846 - ], - "methamphetamine": [ - 0.0022933, - -0.0011308, - -0.02868, - 0.026567, - 0.036044, - 0.0038561, - -0.065405, - -0.064173, - 0.027313, - 0.056155, - 0.0012933, - -0.010041, - 0.015263, - 0.0038694, - 0.016376, - -0.038852, - 0.080835, - 0.012315, - 0.01359, - 0.013738, - 0.035235, - 0.06502, - 0.027141, - 0.022413, - -0.0082818, - -0.019144, - -0.02687, - -0.002047, - 0.059198, - 0.06089, - -0.0067673, - 0.030103, - 0.0072729, - 0.023467, - 0.012503, - 0.0074224, - -0.009801, - -0.011225, - -0.0062892, - 0.026141, - -0.0014283, - -0.048576, - 0.023494, - -0.013643, - 0.073626, - 0.0018621, - 0.033762, - 0.085124, - -0.012453, - 0.045262, - -0.020107, - 0.032277, - 0.022085, - -0.011872, - -0.05041, - 0.0053354, - 0.039551, - -0.036611, - -0.030081, - 0.015545, - 0.003914, - -0.034071, - 0.057078, - 0.05047, - -0.054109, - -0.023747, - 0.011188, - -0.023315, - -0.026403, - -0.025947, - 0.022582, - 0.021597, - -0.014912, - -0.099134, - 0.023915, - -0.013397, - -0.016827, - 0.012683, - -0.021647, - 0.0012648, - -0.016344, - -0.018251, - -0.042359, - -0.01503, - -0.022652, - 0.038788, - 0.015222, - -0.004363, - 0.076722, - 0.021335, - -0.0016994, - 0.022031, - -0.050388, - -0.0097577, - -0.0060361, - 0.021372, - -0.015082, - -0.027222, - 0.035684, - 0.049324, - 0.029057, - -0.041382, - -0.029832, - 0.017028, - 0.0091651, - -0.039533, - -0.042868, - -0.012667, - 0.012873, - -0.0098274, - 0.019133, - 0.055858, - 0.051088, - 0.0029909, - -0.030085, - -0.035553, - 0.029335, - -0.083016, - -0.027341, - 0.0234, - -0.026306, - 0.022043, - 0.03652, - -0.070015, - 0.033872, - 0.04316, - -0.022479, - -0.052829, - -0.0045532, - 0.03584, - 0.041612, - -0.034739, - -0.012866, - -0.032574, - 0.032739, - -0.03559, - -0.029329, - 0.0011213, - -0.015154, - 0.0041597, - 0.074282, - 0.071363, - 0.015609, - -0.064741, - -0.014216, - -0.038405, - 0.029588, - -0.051341, - -0.011762, - -0.031878, - 0.0074457, - 0.039916, - 0.0049759, - -0.023268, - 0.0081056, - -0.02225, - -0.064033, - 0.0061546, - -0.019787, - 0.015084, - 0.032158, - 0.056517, - -0.071656, - 0.0013183, - 0.020362, - -0.021345, - 0.021524, - 0.011299, - -0.019178, - -0.094702, - -0.011268, - -0.0039183, - 0.01785, - 0.04534, - 0.0097646, - 0.03173, - 0.032823, - 0.026021, - -0.049698, - -0.011436, - 0.054033, - -0.030265, - -0.0055405, - -0.034073, - 0.0064152, - -0.038348, - 0.018387, - 0.071258, - 0.0032083, - 0.0022555, - 0.074627, - -0.00066902, - -0.025849, - -0.013997, - 0.003917, - 0.00663, - -0.0058404, - 0.063227, - -0.0073913, - -0.023007, - -0.080966, - 0.011487, - -0.053271, - 0.031375, - 0.029571, - 0.013602, - 0.050105, - 0.086764, - -0.026199, - -0.0081892, - 0.066332, - 0.008055, - -0.015013, - -0.031127, - 0.083384, - -0.0049466, - 0.0050144, - 0.064661, - 0.012051, - -0.01448, - -0.009071, - -0.093921, - -0.011007, - 0.06908, - -0.01607, - 0.0097741, - -0.054006, - 0.041897, - -0.0073802, - -0.025074, - -0.054198, - -0.013641, - -0.059633, - -0.029784, - 0.01378, - 0.0034281, - 0.040136, - -0.022231, - -0.029563, - -0.050571, - 0.014939, - -0.024105, - 0.0087071, - -0.039477, - 0.0043609, - 0.001431, - 0.0067535, - 0.021091, - 0.057586, - 0.042556, - -0.012047, - 0.0096399, - 0.036422, - -0.014091, - 0.027727, - 0.027412, - 0.0025125, - 0.011426, - -0.018124, - -0.0015815, - 0.0001007, - 0.0048035, - -0.035649, - -0.0033848, - 0.030624, - -0.0251, - -0.028423, - -0.028516, - 0.019983, - 0.0024871, - -0.068212, - 0.051892, - -0.06441, - 0.0034131, - -0.023132, - -0.038291, - -0.043751, - 0.02957, - -0.039734, - 0.03723, - 0.044302, - 0.016085, - -0.055185, - -0.024753, - -0.034477, - -0.0013596, - -0.001667, - 0.014161, - 0.029127, - -0.055691, - -0.037318, - 0.00017436, - -0.034205, - 0.014917, - -0.084855, - 0.0068593, - 0.060397, - 0.010034, - 0.052086, - -0.047999 - ], - "fables": [ - -0.096673, - -0.09487, - 0.030969, - -0.055126, - -0.010821, - -0.063665, - -0.071248, - -0.071753, - -0.027127, - 0.028421, - 0.024502, - -0.042326, - 0.027351, - -0.083525, - 0.092485, - -0.12933, - 0.054797, - -0.045233, - 0.034958, - 0.046245, - 0.014384, - 0.021807, - -0.025258, - 0.078083, - 0.039764, - 0.037375, - 0.021276, - -0.0067901, - 0.13873, - -0.068063, - -0.045346, - -0.022685, - -0.022195, - -0.044792, - 0.075031, - 0.023798, - -0.050874, - -0.011408, - 0.029388, - -0.029088, - 0.0512, - -0.070543, - 0.012632, - 0.13238, - -0.0028998, - -0.023994, - -0.018214, - 0.02279, - -0.033131, - -0.075748, - 0.011686, - 0.1065, - -0.045802, - -0.017688, - -0.026439, - 0.023012, - 0.014523, - -0.053417, - -0.0017098, - -0.018978, - -0.10789, - -0.15132, - 0.10048, - -0.015273, - 0.16217, - 0.017333, - -0.068921, - 0.10351, - 0.051444, - 0.015432, - -0.0017007, - -0.079843, - -0.0082179, - 0.049576, - 0.0064481, - 0.059438, - 0.022079, - -0.053321, - -0.010577, - -0.087148, - 0.0094932, - -0.024649, - -0.022136, - 0.081339, - 0.043205, - -0.031155, - -0.046028, - 0.030546, - -0.086033, - 0.0058069, - -0.049689, - -0.053436, - -0.071813, - 0.020822, - 0.020947, - 0.094922, - 0.072929, - 0.013501, - -0.036618, - 0.059368, - 0.0059006, - 0.037543, - -0.11518, - 0.040914, - 0.015889, - -0.053849, - 0.029231, - -0.012409, - 0.0077121, - 0.025236, - -0.033953, - 0.028714, - 0.014902, - -0.075425, - -0.010126, - 0.038009, - 0.047807, - 0.08767, - -0.055351, - -0.0053692, - 0.037617, - 0.0087513, - -0.083624, - -0.12553, - 0.13161, - 0.12972, - -0.037901, - 0.076679, - -0.0064068, - 0.1602, - -0.065229, - 0.10109, - -0.00044051, - 0.057273, - 0.056358, - -0.021181, - 0.010646, - 0.06395, - 0.047403, - -0.055895, - 0.029598, - -0.0094947, - 0.024328, - 0.042597, - 0.010091, - -0.075573, - -0.022248, - 0.045752, - -0.058878, - -0.11956, - 0.008719, - 0.085057, - -0.013302, - 0.055718, - 0.028688, - -0.057328, - -0.003371, - 0.035877, - 0.019733, - 0.068973, - 0.066746, - 0.13593, - 0.029702, - 0.024621, - 0.11559, - -0.054288, - 0.033391, - 0.0054236, - 0.004672, - -0.029423, - -0.033153, - -0.071213, - 0.044684, - -0.053044, - -0.024275, - 0.084486, - 0.070526, - -0.019934, - -0.03242, - 0.0606, - 0.10348, - 0.060922, - 0.056823, - -0.018088, - -0.055914, - 0.0047601, - 0.11868, - 0.16562, - 0.066136, - 0.010652, - 0.0012599, - 0.1053, - -0.11421, - -0.053887, - 0.0038875, - 0.047562, - 0.021165, - 0.019458, - -0.0075166, - 0.056329, - -0.1565, - 0.04935, - 0.075376, - -0.062619, - 0.090743, - 0.028626, - 0.039526, - -0.0098934, - 0.0044365, - -0.071392, - 0.13165, - -0.00072635, - -0.029466, - 0.0099877, - 0.052949, - 0.025969, - -0.0052247, - -0.04781, - -0.11764, - 0.0020482, - 0.051023, - 0.035325, - 0.11341, - 0.050587, - 0.075157, - -0.041027, - 0.12355, - 0.064397, - -0.00046391, - 0.03308, - 0.013995, - -0.005812, - -0.072003, - 0.047533, - 0.066295, - 0.048246, - -0.028941, - -0.054353, - 0.092602, - -0.02579, - -0.00093113, - 0.050553, - -0.082154, - -0.010783, - -0.014832, - 0.042931, - -0.017404, - -0.043432, - -0.063375, - 0.031387, - 0.015407, - -0.045024, - 0.047178, - 0.013163, - -0.10107, - 0.090249, - -0.046087, - 0.0041149, - 0.020223, - 0.020698, - 0.07516, - 0.0014529, - -0.0083611, - -0.082011, - 0.0088481, - 0.036315, - 0.068986, - -0.0085365, - 0.030704, - -0.046121, - -0.039518, - 0.072459, - -0.029579, - -0.0023951, - 0.016371, - -0.045565, - 0.021821, - -0.047147, - -0.068153, - -0.017447, - 0.052898, - -0.074417, - 0.0025403, - -0.13469, - -0.010294, - 0.06104, - 0.021332, - 0.034022, - -0.029392, - 0.019859, - 0.0030772, - 0.015941, - -0.0082096, - -0.015855, - 0.009396, - 0.0044098, - 0.15496, - 0.024207, - -0.015707, - 0.011262 - ], - "eating": [ - -0.066057, - -0.01955, - -0.07706, - -0.024575, - 0.038008, - 0.03145, - -0.075299, - -0.10886, - 0.01682, - 0.041166, - -0.067769, - -0.050106, - 0.028039, - -0.021517, - -0.00022179, - -0.04216, - -0.011092, - -0.053643, - 0.01688, - 0.01142, - 0.011226, - 0.077165, - -0.047763, - 0.010198, - -0.1032, - -0.026795, - 0.023966, - 0.058163, - 0.062505, - -0.0049711, - 0.013095, - -0.039495, - 0.0015298, - -0.0029509, - 0.079404, - -0.073786, - -0.0067262, - 0.0018017, - 0.069129, - 0.034144, - 0.0024239, - -0.096944, - -0.023709, - 0.0060185, - 0.054136, - -0.053244, - 0.045924, - -0.10232, - -0.027539, - 0.025149, - 0.03172, - 0.031401, - 0.06896, - -0.07448, - -0.1164, - 0.0028599, - 0.0068748, - -0.077176, - -0.033406, - -0.077945, - -0.032689, - -0.090765, - 0.077043, - 0.051531, - -0.06674, - 0.029595, - 0.073226, - 0.084801, - -0.02732, - -0.078622, - 0.014979, - 0.00019261, - 0.19823, - -0.01287, - -0.016349, - -0.0077591, - -0.01271, - -0.031151, - -0.055746, - 0.014978, - -0.013582, - -0.10554, - 0.057689, - 0.089612, - 0.041365, - 0.0065734, - -0.017949, - -0.0016746, - -0.0014387, - 0.026213, - -0.015723, - 0.052322, - -0.093465, - -0.0074051, - 0.058658, - 0.0019251, - -0.020271, - 0.061837, - 0.11159, - -0.0058517, - -0.047316, - 0.072118, - -0.0085859, - 0.0060643, - 0.077666, - -0.15551, - -0.10471, - 0.020316, - -0.026314, - 0.01495, - -0.051066, - 0.065612, - 0.053094, - 0.082289, - 0.068144, - -0.01495, - -0.058783, - 0.021637, - -0.068334, - -0.036119, - -0.044615, - 0.060458, - -0.047802, - -0.049586, - 0.037695, - -0.058084, - 0.072808, - -0.15551, - 0.023767, - 0.12148, - 0.052847, - -0.015807, - 0.10434, - -0.03015, - -0.02391, - -0.025379, - -0.11396, - 0.023627, - 0.06637, - 0.057809, - 0.10131, - -0.03549, - -0.043887, - 0.075379, - 0.050406, - -0.061654, - 0.059948, - 0.016913, - 0.078081, - 0.0058223, - 0.032454, - -0.010585, - -0.0045737, - -0.10056, - 0.0086949, - 0.013385, - -0.063822, - 0.069043, - 0.011086, - -0.096936, - 0.056638, - 0.03008, - -0.11636, - 0.010513, - 0.01398, - 0.012561, - -0.02285, - 0.0096609, - 0.040459, - 0.0086535, - 0.054632, - -0.078145, - -0.020893, - 0.019163, - 0.020733, - 0.10051, - 0.011396, - -0.012012, - -0.020635, - -0.094565, - 0.011973, - -0.024506, - 0.040633, - -0.075047, - 0.014665, - -0.085192, - 0.027796, - 0.12982, - 0.0020592, - -0.035725, - -0.017126, - -0.0045543, - -0.067066, - 0.016576, - 0.032654, - 0.048095, - -0.022229, - -0.059539, - -0.023963, - -0.0023031, - -0.20469, - 0.1168, - 0.026401, - -0.01639, - -0.045543, - 0.042061, - 0.028984, - 0.03262, - 0.038523, - -0.016833, - 0.057318, - 0.0023704, - 0.044841, - -0.049845, - 0.016076, - 0.0056156, - 0.078873, - 0.0024329, - 0.030366, - -0.055819, - -0.028449, - 0.042076, - -0.042781, - 0.085694, - -0.0863, - 0.045689, - 0.009231, - 0.1175, - -0.069392, - 0.0027029, - -0.055238, - -0.010809, - -0.087342, - 0.024119, - -0.017237, - 0.055259, - 0.084725, - 0.051651, - 0.081796, - -0.011035, - 0.085931, - -0.028746, - -0.036636, - -0.096237, - -0.13651, - 0.16793, - 0.0078035, - 0.016106, - -0.035057, - -0.032633, - -0.019801, - 0.0047756, - -0.097083, - -0.054257, - 0.030549, - 0.0024986, - -0.027101, - -0.083048, - -0.012183, - 0.061132, - 0.023097, - 0.0082786, - 0.041812, - 0.12831, - 0.029476, - 0.083425, - 0.036298, - -0.026415, - -0.028999, - 0.047761, - -0.055961, - 0.082657, - -0.099393, - -0.038723, - -0.047667, - -0.075111, - -0.028038, - -0.01076, - 0.027764, - 0.0022903, - 0.01081, - 0.054275, - 0.041345, - -0.001441, - 0.050139, - 0.047294, - -0.036984, - -0.033346, - 0.078711, - 0.0097367, - 0.065436, - 0.015566, - -0.11233, - -0.094432, - 0.017792, - 0.011121, - 0.0030583, - 0.033429, - -0.0653, - 0.046183 - ], - "scientific": [ - -0.058951, - -0.061859, - -0.019474, - 0.0060837, - -0.054782, - -0.078883, - 0.017907, - -0.070409, - 0.017916, - 0.038287, - -0.027916, - -0.056053, - 0.0010023, - -0.05431, - 0.023835, - -0.0014783, - 0.068656, - 0.01083, - 0.026329, - 0.035401, - -0.028703, - 0.058384, - 0.049299, - 0.088828, - -0.056996, - -0.010657, - -0.0089223, - 0.04991, - 0.03695, - 0.022483, - 0.0022429, - -0.017583, - 0.079775, - -0.11047, - 0.048318, - 0.03472, - -0.0042099, - -0.069032, - 0.028758, - 0.016323, - -0.0054852, - -0.077369, - -0.027516, - 0.029041, - 0.029648, - -0.038753, - -0.066637, - 0.0022095, - -0.020919, - -0.01571, - -0.0060545, - 0.035635, - -0.032423, - 0.02148, - 0.029689, - 0.048908, - 0.00078322, - 0.0197, - 0.0093537, - 0.035272, - 0.045034, - 0.049692, - 0.11385, - -0.048849, - 0.068598, - 0.026893, - -0.0051568, - -0.017349, - 0.036177, - -0.0078196, - 0.073377, - -0.00021904, - 0.046534, - 0.017974, - 0.026698, - 0.03912, - -0.029688, - -0.032605, - 0.057139, - -0.01359, - -0.017607, - 0.044792, - -0.029014, - 0.01832, - -0.039101, - 0.025052, - 0.0044702, - 0.01322, - 0.023303, - 0.00082173, - -0.035275, - 0.017039, - -0.056605, - 0.0068569, - 0.03078, - 0.02846, - 0.027355, - -0.020705, - -0.000056168, - 0.05493, - -0.054634, - -0.0033827, - -0.0099576, - -0.010941, - -0.0087489, - -0.081478, - 0.027299, - 0.036549, - 0.0059095, - 0.0058077, - -0.014094, - 0.07212, - 0.011848, - 0.019637, - -0.018409, - 0.017817, - 0.022936, - -0.022774, - -0.042953, - 0.016648, - 0.0019526, - -0.027806, - -0.062161, - 0.019143, - 0.060764, - -0.0053608, - -0.032247, - -0.0086254, - -0.012763, - 0.075456, - 0.012569, - 0.027748, - -0.0055477, - -0.001897, - 0.0091163, - -0.015224, - -0.0055816, - 0.05507, - 0.0096652, - 0.039093, - 0.0036257, - -0.042098, - -0.022803, - 0.014119, - -0.033936, - -0.02478, - -0.015081, - 0.012561, - 0.00015519, - -0.0043162, - 0.039955, - 0.12687, - 0.0092696, - -0.064167, - 0.084742, - 0.0094962, - 0.012433, - -0.015526, - 0.0052354, - 0.036999, - 0.01215, - 0.025719, - -0.051465, - -0.012846, - 0.012446, - 0.037085, - -0.044624, - 0.020526, - -0.0073447, - -0.025885, - 0.023826, - 0.011343, - 0.03259, - 0.011507, - 0.016889, - 0.063574, - -0.028172, - 0.048841, - -0.021236, - -0.010366, - -0.017183, - 0.035687, - -0.00046082, - -0.00075142, - 0.013342, - -0.041816, - 0.013834, - 0.089817, - -0.00307, - -0.00052815, - 0.0395, - 0.085901, - 0.095215, - -0.085347, - -0.0064002, - -0.0096236, - -0.07648, - 0.0084793, - -0.019772, - 0.023269, - -0.10863, - 0.013824, - -0.0024459, - 0.0025326, - 0.028244, - -0.0026495, - -0.028374, - -0.015598, - -0.038144, - -0.0087674, - 0.10883, - 0.0025975, - -0.04074, - -0.010648, - -0.015947, - 0.013331, - 0.016989, - -0.017303, - -0.05917, - 0.0062365, - -0.037383, - 0.036949, - -0.056987, - 0.076555, - 0.030413, - 0.0046559, - 0.01926, - 0.061778, - 0.025079, - -0.052157, - -0.030711, - -0.059325, - -0.043002, - 0.035508, - -0.023914, - 0.0040549, - -0.0060923, - 0.0047456, - 0.010383, - -0.026127, - 0.038168, - -0.025365, - 0.017604, - -0.0002229, - -0.1341, - 0.052334, - -0.020052, - -0.0064691, - -0.041855, - -0.025533, - 0.045184, - 0.043049, - 0.05459, - -0.051976, - -0.037815, - 0.027984, - 0.020837, - 0.018819, - 0.0010211, - -0.022464, - 0.0042627, - 0.041446, - 0.0019454, - -0.0017211, - 0.01656, - -0.023624, - 0.01548, - 0.055234, - 0.064345, - -0.0073641, - 0.025682, - 0.057501, - -0.0767, - -0.037952, - 0.0098379, - -0.079596, - -0.0089257, - -0.010323, - 0.0060416, - -0.039569, - 0.13545, - -0.0027965, - -0.0089852, - -0.030589, - -0.0086268, - 0.0094524, - -0.0048099, - -0.0084398, - 0.0053659, - -0.0036097, - -0.032678, - 0.035742, - 0.020619, - -0.00080047, - -0.0039892, - 0.014431, - -0.027396, - -0.0025325, - -0.0041097, - 0.0025585 - ], - "business": [ - -0.022481, - -0.045884, - 0.0011983, - -0.022442, - -0.026083, - -0.045911, - -0.0018498, - -0.08883, - 0.077035, - 0.036108, - -0.023785, - -0.068747, - -0.058437, - -0.019894, - -0.02304, - 0.04089, - 0.1052, - -0.027259, - 0.076876, - 0.0073062, - 0.0053062, - 0.0072673, - 0.02224, - 0.072722, - -0.024658, - 0.026593, - -0.010116, - 0.032936, - -0.032024, - 0.017828, - -0.034723, - 0.0094623, - -0.03386, - -0.057617, - 0.039692, - 0.049684, - 0.00028526, - 0.027518, - 0.020424, - -0.004791, - -0.0098191, - -0.10403, - 0.0036239, - 0.01024, - -0.01863, - -0.037266, - 0.0073136, - -0.0027619, - -0.027268, - -0.021215, - 0.016053, - -0.045223, - 0.016922, - 0.028146, - -0.049533, - 0.00029018, - -0.055253, - 0.010941, - -0.06038, - -0.011085, - 0.000060715, - 0.026724, - 0.10393, - 0.021757, - 0.035714, - 0.0076414, - -0.00081933, - -0.00086782, - 0.029398, - -0.038404, - -0.002605, - -0.016556, - 0.037988, - 0.017756, - 0.013726, - -0.013697, - 0.0055685, - -0.011279, - -0.011015, - -0.020154, - -0.0019733, - 0.017297, - -0.054536, - 0.054573, - -0.034912, - -0.060927, - -0.036621, - -0.0095919, - 0.030989, - 0.0089219, - 0.050112, - 0.066272, - -0.097069, - 0.025944, - 0.032787, - 0.043807, - -0.013484, - -0.011498, - 0.028286, - 0.0033982, - 0.0012358, - 0.015491, - -0.031621, - -0.054086, - 0.031779, - -0.079917, - -0.0038285, - 0.03905, - 0.010837, - -0.018057, - -0.042331, - 0.076389, - 0.043897, - 0.027944, - -0.022849, - -0.067584, - -0.04246, - -0.048614, - -0.07063, - -0.014804, - -0.031306, - -0.059713, - 0.011153, - 0.0095342, - 0.052857, - 0.033918, - -0.052266, - -0.101, - 0.036456, - 0.078064, - 0.025323, - 0.042321, - -0.0077647, - -0.020726, - -0.0096538, - 0.024855, - 0.057069, - 0.0076529, - -0.014715, - 0.015228, - 0.040101, - -0.01496, - -0.037418, - -0.0064325, - -0.015838, - -0.026728, - 0.03023, - -0.057298, - -0.027921, - -0.02995, - 0.056521, - 0.078418, - 0.022797, - -0.088082, - 0.032676, - 0.043317, - 0.013363, - 0.016572, - -0.011265, - -0.023062, - 0.044922, - 0.046874, - -0.041287, - 0.074838, - 0.04089, - 0.0052087, - 0.0097491, - -0.028418, - -0.022449, - 0.06405, - 0.025581, - 0.027206, - -0.0095495, - 0.032573, - 0.0044093, - 0.040257, - -0.020977, - 0.056198, - -0.032007, - 0.01679, - -0.011358, - -0.055425, - 0.019053, - -0.01656, - -0.032734, - -0.049343, - -0.025257, - 0.07115, - 0.027373, - -0.00021037, - -0.088558, - 0.066295, - 0.017035, - -0.0096963, - 0.0076548, - -0.0051499, - -0.018134, - -0.022017, - 0.021601, - 0.0029087, - -0.13886, - 0.076036, - 0.012386, - -0.0485, - 0.016935, - -0.0039516, - -0.029474, - -0.037808, - 0.020683, - -0.02479, - 0.09701, - -0.0071465, - -0.0074717, - -0.02517, - -0.017043, - 0.032046, - -0.0018744, - -0.067882, - -0.013749, - -0.031947, - 0.05373, - -0.060147, - -0.00072801, - 0.089429, - -0.024385, - 0.0047618, - 0.019407, - 0.052854, - -0.010525, - -0.030657, - 0.0076102, - -0.029346, - -0.053369, - 0.017858, - 0.016789, - -0.01689, - 0.010344, - -0.021656, - 0.0025227, - -0.020852, - 0.041226, - -0.008576, - 0.054156, - 0.014863, - -0.014986, - -0.011271, - 0.0083061, - -0.028373, - 0.037939, - 0.023456, - 0.020355, - -0.025562, - -0.01367, - 0.015108, - -0.00028576, - -0.0070381, - -0.066359, - 0.033715, - 0.0011517, - 0.026908, - 0.010671, - 0.03634, - -0.0027223, - 0.0013612, - -0.019372, - 0.042526, - -0.0064763, - 0.044076, - -0.0060997, - 0.029209, - -0.030889, - 0.082428, - -0.11908, - -0.029714, - 0.045892, - -0.046212, - 0.045924, - 0.016569, - -0.055166, - 0.00011471, - 0.077578, - 0.016315, - -0.01925, - 0.0072431, - -0.0041575, - 0.0070359, - 0.01431, - -0.047664, - -0.027607, - 0.0027467, - -0.0020595, - 0.052977, - -0.044005, - 0.02186, - -0.06325, - -0.013924, - -0.026478, - 0.0095043, - -0.024917, - -0.030083 - ], - "internship": [ - -0.015462, - -0.038775, - 0.0052741, - 0.017559, - -0.026542, - -0.026187, - 0.0018038, - -0.085432, - 0.016895, - -0.070902, - -0.0057041, - -0.043732, - -0.054464, - 0.063849, - 0.012896, - 0.030834, - 0.065975, - 0.0093452, - 0.012104, - 0.023451, - 0.048415, - 0.018218, - -0.038135, - 0.027299, - -0.022188, - -0.036749, - -0.034187, - 0.034094, - 0.0015756, - 0.019241, - -0.01648, - -0.014264, - -0.039359, - -0.1079, - 0.0082782, - 0.041509, - 0.016352, - 0.027831, - 0.032991, - 0.026578, - -0.050262, - -0.076447, - -0.016002, - -0.020362, - 0.02382, - 0.064701, - 0.011813, - -0.032306, - 0.012569, - 0.027784, - -0.034343, - -0.014526, - -0.027194, - 0.030382, - -0.054103, - -0.054218, - -0.021408, - 0.032484, - -0.02563, - 0.035827, - -0.022624, - 0.059905, - 0.096726, - -0.034039, - -0.014975, - -0.057542, - -0.010179, - -0.016566, - -0.010244, - 0.031082, - -0.049891, - 0.013855, - -0.03506, - 0.069797, - -0.00046475, - -0.072395, - -0.000098685, - 0.022466, - -0.028908, - -0.040679, - -0.021877, - -0.012104, - 0.024258, - 0.037234, - -0.04483, - 0.0081788, - 0.034803, - -0.0099841, - 0.0087259, - 0.081442, - 0.02978, - 0.036704, - -0.081582, - -0.0063953, - -0.0084439, - 0.039302, - 0.041186, - 0.011715, - 0.017642, - -0.040262, - 0.091506, - 0.034004, - -0.038704, - 0.005175, - -0.019147, - -0.025253, - 0.02652, - -0.0018727, - -0.012634, - 0.0072023, - 0.0066672, - 0.028951, - 0.019231, - 0.08608, - 0.014284, - 0.044994, - -0.039253, - -0.11232, - -0.051204, - 0.0012693, - 0.00034616, - -0.082487, - 0.016661, - 0.071573, - 0.035129, - -0.045074, - 0.0056146, - -0.044737, - 0.046803, - 0.069648, - 0.043333, - -0.024063, - -0.012068, - -0.060365, - -0.055339, - 0.060493, - -0.041669, - 0.012218, - -0.033405, - -0.029406, - -0.028105, - -0.05194, - -0.019421, - -0.018488, - -0.062607, - 0.034041, - -0.098527, - -0.074187, - 0.083625, - -0.085298, - 0.031695, - 0.047414, - -0.0042658, - -0.070968, - -0.035284, - 0.007506, - -0.014647, - 0.0089456, - 0.080516, - -0.033103, - 0.080302, - 0.010853, - -0.034525, - -0.012481, - -0.00069552, - 0.0022782, - -0.040075, - -0.050154, - 0.032851, - 0.070446, - 0.072295, - 0.0044093, - -0.032327, - -0.026473, - -0.03481, - 0.036978, - -0.044753, - 0.035017, - 0.032542, - 0.0051928, - -0.010528, - 0.00015045, - -0.070755, - 0.016508, - 0.0060821, - -0.011054, - 0.02782, - 0.0736, - 0.022291, - 0.025507, - -0.035019, - 0.05622, - -0.0087102, - -0.015072, - 0.053096, - 0.04704, - 0.054082, - 0.036163, - -0.00052379, - -0.060651, - -0.1114, - 0.095306, - -0.015847, - -0.028037, - -0.022218, - 0.0022487, - -0.061661, - -0.026427, - -0.024194, - -0.041976, - 0.10046, - -0.0072606, - -0.0096668, - -0.067157, - 0.024807, - 0.025933, - 0.035254, - -0.012543, - -0.0073461, - -0.03597, - 0.0018342, - 0.010283, - -0.065689, - 0.079053, - 0.020494, - -0.010914, - -0.019721, - 0.011666, - 0.051052, - 0.0061323, - 0.0035039, - -0.098091, - 0.0012081, - -0.014539, - -0.0055213, - 0.029041, - 0.052755, - -0.044276, - -0.042496, - 0.0090762, - 0.037553, - 0.03734, - 0.038171, - -0.031484, - -0.039162, - 0.033977, - -0.0090881, - -0.062308, - -0.0093115, - 0.03517, - -0.025589, - 0.035489, - -0.037378, - -0.063161, - -0.0039286, - -0.018861, - -0.010111, - 0.0085719, - 0.0091697, - 0.01069, - 0.040336, - 0.061165, - 0.016857, - -0.03353, - -0.0053738, - -0.012722, - 0.013343, - -0.027989, - -0.027572, - -0.0057285, - 0.036095, - 0.05897, - -0.095689, - -0.03269, - -0.010241, - -0.022347, - -0.082562, - -0.0028853, - -0.058598, - 0.038559, - 0.082467, - 0.0015234, - 0.056478, - -0.056946, - -0.019089, - 0.013725, - -0.052405, - 0.040059, - -0.051316, - -0.042385, - 0.043804, - 0.040786, - 0.02748, - 0.017503, - -0.021606, - 0.066953, - -0.095073, - 0.021137, - -0.058011, - -0.00082424 - ], - "marketing": [ - 0.011571, - -0.038248, - -0.076186, - 0.039618, - -0.018773, - -0.058685, - -0.05417, - -0.083858, - 0.021323, - 0.010281, - 0.00044761, - -0.034827, - -0.046079, - -0.041595, - -0.025412, - 0.022576, - 0.065391, - -0.046576, - 0.021362, - 0.0043278, - 0.02333, - 0.033368, - 0.034094, - 0.037494, - -0.012946, - -0.044147, - -0.012231, - 0.048383, - 0.0065217, - 0.0086523, - -0.045564, - -0.016857, - -0.0010408, - -0.068199, - 0.049544, - 0.035264, - 0.014797, - -0.034725, - -0.010504, - -0.022584, - -0.042834, - -0.087781, - 0.009089, - -0.049578, - 0.047206, - -0.0062439, - 0.016384, - -0.040054, - -0.025835, - -0.0076122, - -0.010922, - -0.058463, - 0.036503, - 0.0046478, - -0.027132, - 0.082836, - -0.039988, - 0.049516, - -0.027837, - 0.029147, - 0.012254, - 0.010007, - 0.094807, - 0.035535, - 0.010049, - -0.0070651, - 0.017119, - -0.024035, - 0.040046, - -0.021444, - -0.046562, - -0.0029184, - 0.026525, - 0.015138, - 0.00024887, - 0.030429, - -0.013027, - -0.018461, - -0.0083563, - -0.029437, - -0.027079, - -0.027983, - -0.082877, - 0.029055, - -0.010466, - -0.012548, - -0.019558, - -0.011681, - 0.010094, - -0.0020337, - 0.000027878, - 0.023515, - -0.085977, - 0.0010565, - 0.0081015, - 0.044585, - -0.002998, - -0.0033571, - 0.0082139, - -0.017922, - -0.039671, - 0.055039, - -0.087733, - 0.000012239, - -0.0065229, - -0.076688, - -0.062201, - 0.017894, - -0.0227, - 0.072582, - -0.026047, - 0.063347, - 0.04794, - 0.016221, - 0.027143, - -0.045722, - -0.074746, - 0.01081, - -0.045947, - 0.01291, - -0.047308, - 0.0087444, - -0.007007, - 0.0014919, - 0.087299, - 0.026909, - -0.023835, - -0.051044, - 0.024861, - 0.12041, - 0.0017216, - -0.015502, - -0.018034, - -0.059915, - -0.0004123, - -0.020123, - 0.018462, - 0.026797, - -0.021445, - 0.016881, - 0.010292, - 0.0071153, - -0.03102, - 0.0094623, - -0.020419, - -0.038483, - 0.0008897, - -0.025744, - -0.012636, - -0.0031795, - 0.038656, - 0.077777, - 0.015034, - -0.11666, - 0.033634, - 0.021473, - 0.025075, - 0.045746, - 0.027061, - 0.042386, - 0.021567, - 0.031986, - -0.091957, - 0.0407, - 0.041049, - 0.0053152, - 0.024851, - -0.047833, - 0.0094438, - 0.013312, - 0.049596, - -0.0058729, - -0.036766, - 0.00198, - -0.0039791, - 0.051568, - 0.0070326, - 0.039265, - -0.028726, - 0.046898, - -0.030419, - -0.024006, - -0.019588, - 0.0060301, - -0.008625, - -0.023955, - -0.0060036, - 0.068803, - 0.017579, - -0.022272, - -0.045094, - 0.054353, - 0.030072, - -0.025242, - 0.0033895, - -0.047785, - 0.058469, - -0.01447, - -0.0025732, - -0.0073708, - -0.14506, - 0.033485, - 0.027957, - 0.01484, - -0.0094611, - 0.040712, - -0.059273, - -0.023347, - 0.013193, - 0.019199, - 0.10801, - 0.026958, - 0.00061116, - -0.022875, - 0.0071282, - 0.060789, - 0.00028666, - -0.065418, - -0.029874, - -0.028945, - -0.046158, - -0.072689, - 0.024564, - 0.082042, - -0.010651, - -0.065934, - 0.066269, - 0.048132, - 0.033142, - -0.017557, - 0.025746, - -0.028259, - 0.0015036, - -0.0020733, - 0.017306, - -0.0097175, - -0.024408, - -0.050339, - 0.0075043, - -0.058995, - 0.041255, - 0.011547, - -0.013093, - -0.0068538, - -0.080006, - -0.027149, - -0.02003, - -0.0036967, - 0.022099, - 0.068069, - 0.016399, - -0.007192, - -0.035964, - 0.057424, - 0.013304, - 0.04484, - -0.051739, - -0.0049559, - 0.077056, - 0.0041458, - 0.057448, - 0.054189, - 0.033372, - 0.028931, - 0.029895, - 0.00664, - 0.01454, - 0.011966, - -0.010592, - 0.049337, - -0.010588, - 0.045925, - -0.094275, - -0.014452, - -0.029776, - -0.020253, - -0.02718, - 0.07487, - -0.12089, - 0.020718, - 0.092988, - 0.014883, - -0.023036, - 0.024712, - 0.013936, - -0.033006, - -0.016107, - 0.0031047, - -0.012977, - -0.037477, - -0.015364, - 0.01138, - -0.020164, - 0.027741, - -0.030673, - -0.023412, - -0.040589, - 0.0015961, - -0.047862, - -0.013696 - ], - "Hobbies": [ - -0.026251, - -0.021962, - -0.0088878, - -0.084571, - -0.013427, - 0.0096277, - -0.046007, - -0.05969, - 0.08977, - 0.0091687, - -0.0023391, - -0.12207, - -0.10995, - -0.052839, - 0.072895, - 0.042118, - 0.059484, - 0.043758, - 0.049126, - -0.13154, - 0.017196, - 0.010348, - -0.0038967, - 0.034304, - 0.075181, - -0.048823, - 0.044956, - -0.0093991, - 0.14676, - -0.018015, - 0.049606, - -0.11537, - 0.06669, - 0.016848, - 0.045748, - -0.033753, - -0.044796, - -0.050086, - 0.048661, - -0.011044, - 0.0063474, - 0.084651, - -0.030218, - -0.02668, - 0.034465, - -0.02157, - -0.018781, - -0.084382, - -0.044267, - -0.024119, - -0.010236, - 0.065966, - 0.064493, - -0.012442, - -0.017883, - 0.0089244, - -0.030509, - 0.027583, - -0.11137, - -0.083872, - -0.028845, - -0.04419, - -0.021036, - 0.093753, - 0.050278, - -0.038098, - -0.10051, - 0.075951, - 0.013319, - 0.044558, - 0.126, - -0.067163, - 0.041117, - 0.0679, - 0.046031, - 0.050744, - -0.026995, - -0.14392, - -0.083706, - -0.02878, - -0.0051899, - 0.010175, - -0.039543, - 0.016531, - -0.0024152, - -0.088241, - 0.04354, - -0.037398, - -0.039503, - 0.046992, - 0.09717, - 0.011202, - -0.083972, - -0.016219, - 0.0087377, - 0.10638, - -0.066245, - 0.040225, - -0.019518, - 0.0018152, - -0.0097914, - 0.070368, - -0.036285, - -0.065083, - 0.019257, - -0.097685, - -0.051737, - 0.024645, - 0.05933, - -0.022698, - -0.10537, - 0.059559, - 0.071516, - 0.092766, - -0.0036546, - -0.022021, - -0.077559, - -0.046099, - 0.069408, - -0.025973, - 0.014991, - 0.078173, - -0.14817, - -0.044737, - 0.034794, - -0.014678, - -0.054766, - -0.02937, - 0.0075445, - 0.22575, - 0.019399, - 0.1202, - 0.013171, - 0.075943, - -0.020573, - -0.046688, - 0.081912, - -0.047806, - -0.041546, - 0.042186, - 0.0053967, - 0.036716, - 0.026475, - 0.077891, - 0.094619, - -0.019929, - -0.032232, - -0.15385, - 0.046538, - -0.0060526, - 0.074376, - 0.060169, - -0.054766, - 0.037839, - -0.079079, - 0.080503, - 0.017651, - 0.086787, - 0.1282, - -0.053037, - 0.02929, - -0.011261, - -0.056069, - 0.042984, - 0.018076, - -0.013099, - -0.018026, - -0.075111, - -0.05129, - -0.018655, - 0.019455, - 0.023342, - 0.11869, - 0.020829, - -0.03991, - 0.038571, - 0.004206, - 0.065044, - -0.050264, - -0.02017, - 0.03159, - -0.099475, - -0.054404, - -0.0091842, - 0.072179, - 0.064786, - 0.089705, - 0.10073, - -0.047331, - -0.046035, - -0.063362, - 0.14969, - -0.066297, - 0.012228, - 0.05366, - 0.068845, - -0.066759, - -0.0034208, - 0.03341, - 0.029487, - -0.0031934, - 0.11406, - 0.017683, - -0.080749, - 0.12886, - 0.12825, - -0.014122, - -0.0070627, - 0.055263, - -0.02568, - 0.14163, - 0.050999, - 0.0042315, - -0.042962, - 0.054191, - 0.0097309, - -0.097697, - -0.042256, - -0.077283, - 0.029149, - 0.072971, - -0.029263, - -0.010738, - 0.080321, - 0.035506, - 0.015376, - 0.011115, - 0.080876, - -0.036283, - -0.027129, - 0.016008, - -0.035136, - -0.079763, - -0.01638, - -0.0078028, - 0.067749, - 0.13045, - 0.054324, - -0.077839, - 0.017593, - -0.056122, - -0.037535, - 0.036097, - 0.0008712, - 0.18339, - 0.05759, - -0.00025081, - -0.070403, - -0.010162, - -0.065505, - 0.0036506, - 0.018134, - -0.045534, - 0.079485, - -0.014951, - -0.037282, - -0.054783, - -0.051545, - 0.040864, - 0.012518, - -0.064728, - 0.031804, - 0.023284, - -0.032518, - -0.018487, - -0.0088181, - -0.030666, - -0.042896, - 0.059292, - -0.018243, - 0.032182, - 0.13815, - -0.0063374, - 0.0010396, - 0.054613, - -0.082726, - 0.0218, - 0.01594, - -0.038839, - 0.04621, - -0.045814, - 0.031962, - 0.1078, - -0.0041494, - 0.067538, - 0.020249, - 0.0025553, - -0.025668, - -0.040385, - 0.031117, - 0.011174, - 0.0023802, - -0.0074861, - 0.0044745, - -0.051469, - 0.042732, - -0.012737, - 0.051627, - 0.0038678, - -0.0078821 - ], - "Crypto": [ - -0.019549, - 0.022769, - -0.062255, - -0.05378, - -0.056001, - 0.030805, - 0.1275, - -0.041929, - 0.0088346, - 0.020128, - -0.025965, - 0.034591, - -0.11597, - -0.012327, - -0.096151, - 0.011257, - 0.063938, - 0.029541, - 0.059391, - -0.042351, - 0.013142, - 0.15425, - 0.066205, - -0.019108, - 0.0071967, - -0.0044598, - 0.053483, - -0.051935, - 0.054757, - 0.0316, - 0.016086, - -0.0034351, - 0.011958, - 0.14917, - 0.074087, - -0.051463, - 0.085448, - -0.030103, - -0.063717, - 0.049199, - -0.050643, - 0.054479, - -0.10085, - 0.021284, - -0.045492, - -0.035226, - -0.10905, - -0.0052496, - 0.058637, - -0.09124, - 0.055731, - -0.015712, - 0.085759, - -0.17932, - 0.011729, - 0.068122, - 0.10058, - -0.054118, - -0.010891, - 0.026703, - 0.0056134, - -0.077339, - -0.1346, - -0.0076296, - -0.052582, - 0.0065863, - 0.0089621, - 0.1109, - 0.087679, - 0.011781, - -0.018426, - 0.089284, - 0.00047344, - 0.087331, - -0.051422, - -0.067299, - -0.0085354, - -0.094134, - 0.091347, - 0.0062177, - 0.02652, - 0.032825, - 0.043906, - 0.039449, - 0.075296, - -0.010825, - -0.0056897, - 0.010265, - -0.0082636, - 0.06504, - 0.056201, - -0.028899, - -0.059856, - 0.0076024, - -0.052679, - 0.12041, - 0.045966, - -0.13992, - 0.0010573, - 0.039381, - -0.024641, - 0.00068982, - 0.0011214, - 0.071637, - -0.053457, - -0.20872, - 0.020775, - -0.0099019, - 0.014483, - 0.027886, - 0.015787, - -0.016482, - 0.045268, - 0.0065299, - -0.0080693, - 0.041254, - -0.028188, - 0.070867, - 0.039267, - 0.010756, - 0.036057, - 0.086556, - -0.010084, - -0.074558, - 0.054859, - -0.11518, - -0.020975, - -0.10592, - -0.10099, - 0.14644, - 0.00045601, - 0.040862, - 0.0015867, - -0.040865, - 0.044751, - -0.066994, - -0.023202, - -0.062014, - -0.042377, - 0.029968, - 0.11663, - 0.10533, - -0.0055314, - -0.042116, - 0.066005, - -0.030153, - -0.052634, - -0.13139, - -0.002059, - -0.22306, - -0.00045998, - -0.03711, - -0.0065716, - 0.0039081, - 0.027884, - 0.051116, - 0.0016302, - -0.032455, - 0.1302, - -0.014951, - 0.022002, - -0.023078, - -0.013106, - 0.063531, - -0.029503, - -0.10639, - -0.035056, - -0.032987, - 0.037691, - -0.013074, - 0.046519, - 0.05826, - 0.046082, - 0.072561, - -0.10236, - 0.022476, - 0.024775, - 0.028735, - -0.030917, - -0.01797, - -0.051615, - 0.027921, - 0.000082009, - 0.013889, - 0.033933, - 0.10877, - -0.021409, - 0.14892, - 0.04117, - -0.064359, - 0.026998, - -0.017715, - -0.080169, - -6.495e-7, - 0.10924, - 0.077987, - -0.073721, - -0.074027, - -0.041875, - 0.057861, - 0.006508, - 0.081059, - -0.017402, - 0.034181, - -0.12683, - -0.13627, - 0.036193, - -0.0022901, - -0.037158, - -0.011169, - 0.16402, - 0.010508, - -0.026161, - -0.033553, - 0.079822, - 0.048578, - -0.096127, - 0.038563, - 0.0098606, - -0.035678, - 0.072249, - -0.054035, - -0.089987, - 0.021526, - 0.017598, - 0.027353, - -0.020185, - 0.076405, - 0.0070166, - -0.037495, - -0.10914, - -0.14188, - 0.014352, - -0.082909, - 0.058485, - -0.17109, - -0.054415, - 0.13174, - -0.030919, - -0.052176, - 0.0089541, - -0.066227, - 0.021494, - -0.031412, - 0.10304, - 0.10611, - -0.0074501, - -0.017902, - -0.088946, - -0.050748, - 0.018267, - -0.054039, - -0.036331, - -0.020046, - -0.048993, - -0.052625, - 0.032251, - -0.0030651, - -0.00009448, - 0.0067654, - 0.045409, - 0.010459, - -0.11277, - -0.045394, - -0.0047719, - -0.14052, - 0.015664, - -0.019875, - 0.054092, - -0.044448, - -0.081437, - 0.11879, - -0.0058898, - 0.070631, - 0.041019, - -0.019016, - 0.1273, - -0.023171, - 0.06938, - -0.078533, - -0.042265, - 0.059037, - 0.031484, - 0.032462, - 0.016555, - -0.068887, - 0.06357, - -0.017526, - -0.0075188, - 0.069662, - -0.022619, - 0.095247, - -0.021282, - -0.0048337, - 0.0056155, - -0.054603, - 0.011733, - 0.0077504, - -0.084681, - -0.049304 - ], - "outdoor": [ - 0.0042188, - -0.036974, - 0.033427, - 0.017001, - -0.0043123, - -0.053997, - -0.032406, - -0.096987, - 0.036555, - -0.013948, - -0.032482, - -0.073344, - 0.044541, - 0.0096432, - 0.032846, - -0.045301, - 0.071796, - 0.064999, - 0.058092, - -0.03032, - 0.025573, - -0.051519, - 0.066018, - 0.081968, - 0.039971, - -0.022895, - -0.012768, - 0.053254, - 0.0012586, - 0.015642, - -0.011328, - -0.05758, - 0.0079735, - -0.1171, - 0.086408, - -0.0091126, - 0.094222, - 0.010572, - 0.0083217, - -0.0040965, - 0.098795, - -0.14115, - -0.010521, - 0.027084, - 0.028741, - 0.0026835, - -0.023242, - -0.011145, - -0.042298, - 0.033446, - -0.019085, - 0.099045, - -0.008432, - 0.0094825, - -0.0037915, - 0.032523, - 0.04013, - -0.010761, - -0.036011, - -0.099806, - 0.02418, - -0.027631, - 0.13174, - -0.04658, - 0.047868, - 0.012083, - 0.021589, - -0.038621, - 0.025443, - 0.070343, - 0.09852, - -0.0068787, - 0.076087, - 0.070926, - 0.012475, - 0.018446, - -0.058693, - -0.03073, - -0.031993, - 0.055617, - -0.036243, - -0.025888, - -0.0052165, - 0.014116, - 0.029875, - -0.0088923, - -0.013119, - -0.0051901, - -0.037231, - 0.041671, - -0.019803, - 0.073813, - -0.103, - 0.025791, - 0.046161, - 0.057855, - -0.063844, - 0.081775, - 0.023361, - -0.0095377, - 0.061933, - 0.041914, - 0.020185, - -0.034052, - 0.083333, - -0.074107, - -0.064787, - 0.014341, - -0.023554, - 0.012449, - -0.040488, - 0.13719, - 0.05646, - 0.049053, - 0.019603, - -0.077631, - 0.011122, - 0.052181, - -0.039075, - 0.0031041, - 0.0032138, - 0.10632, - -0.024447, - -0.016308, - 0.064241, - -0.039285, - 0.0071332, - -0.078416, - 0.056725, - 0.028816, - 0.073054, - 0.022115, - 0.020526, - -0.0038101, - -0.028521, - -0.061808, - 0.066767, - -0.057773, - -0.0724, - -0.076504, - 0.0028192, - -0.0099969, - -0.024877, - -0.013838, - 0.00091935, - 0.052537, - -0.044614, - -0.067927, - 0.021938, - -0.085488, - 0.082713, - 0.14801, - -0.040355, - -0.058445, - -0.010974, - 0.026183, - -0.0054301, - 0.058309, - 0.06704, - -0.014765, - 0.021394, - -0.064976, - -0.070071, - 0.039949, - 0.069143, - -0.0085834, - -0.041691, - -0.027403, - 0.014971, - 0.076016, - 0.046974, - 0.032623, - 0.0072746, - -0.018354, - 0.0087303, - 0.070075, - 0.0044401, - 0.0057947, - -0.05117, - 0.019535, - 0.070735, - 0.012366, - 0.0020784, - -0.050482, - 0.00052365, - -0.018239, - 0.053805, - 0.13323, - -0.038266, - -0.024461, - 0.021031, - 0.044983, - 0.084425, - -0.015277, - -0.026388, - -0.099943, - 0.039853, - 0.047398, - 0.01519, - -0.059023, - -0.14596, - 0.11637, - -0.030129, - 0.0038157, - 0.029114, - 0.058074, - -0.031851, - 0.044472, - -0.048655, - -0.0042009, - 0.1824, - -0.011229, - -0.002612, - 0.0097918, - 0.0099751, - 0.022844, - 0.028928, - -0.069284, - -0.021214, - -0.049739, - 0.0057863, - -0.0039393, - -0.022188, - 0.10226, - -0.085657, - -0.012788, - -0.02584, - 0.079166, - -0.054581, - -0.048891, - -0.030214, - -0.037219, - -0.020659, - -0.0013282, - 0.012507, - 0.062043, - 0.060116, - 0.022223, - -0.031881, - -0.054214, - 0.026406, - 0.038919, - 0.065348, - -0.036558, - -0.10869, - 0.087597, - -0.031195, - -0.0067801, - 0.036828, - -0.044819, - -0.045457, - 0.01783, - -0.05054, - 0.046675, - -0.012015, - 0.041953, - -0.058577, - -0.014074, - 0.0049111, - 0.015899, - 0.068471, - 0.039951, - -0.027532, - -0.0099482, - -0.038813, - -0.0028731, - 0.031768, - -0.022467, - 0.013371, - -0.043954, - 0.022585, - 0.080466, - -0.11394, - -0.039258, - -0.041531, - -0.057817, - 0.0090655, - 0.047885, - -0.050945, - 0.04848, - 0.18465, - -0.019434, - 0.023408, - 0.074448, - -0.048217, - -0.01396, - -0.059309, - -0.035898, - 0.0499, - 0.016581, - 0.079633, - 0.004146, - -0.0079516, - 0.055969, - 0.021877, - 0.028382, - -0.022131, - 0.084354, - 0.046987, - 0.017616 - ], - "architects": [ - 0.044382, - -0.063109, - 0.0065299, - -0.068617, - -0.039847, - -0.024707, - -0.024421, - -0.063184, - 0.055986, - 0.012286, - 0.02182, - 0.058758, - 0.010488, - 0.096032, - 0.036502, - 0.053398, - 0.062115, - 0.053452, - 0.022014, - -0.053878, - -0.027066, - 0.046692, - 0.058547, - 0.044469, - 0.010207, - -0.060752, - 0.0073748, - 0.021004, - 0.063401, - 0.045005, - -0.039525, - -0.041427, - -0.0062534, - 0.013492, - -0.035578, - 0.080673, - 0.0039475, - 0.036341, - 0.014869, - -0.032062, - -0.065101, - -0.047756, - -0.040182, - -0.019451, - -0.089182, - 0.057902, - -0.017498, - 0.031924, - 0.014606, - -0.043839, - -0.027859, - -0.074197, - -0.032354, - 0.064469, - -0.010255, - 0.02491, - -0.035106, - -0.022685, - -0.023486, - -0.037315, - 0.036377, - 0.011222, - 0.073496, - -0.058138, - 0.030427, - 0.097317, - -0.046361, - -0.032362, - -0.024559, - 0.022526, - 0.033836, - -0.03966, - 0.070691, - -0.0031397, - 0.024981, - -0.054825, - -0.04358, - -0.028732, - -0.077546, - 0.016557, - -0.030013, - 0.087543, - 0.055808, - 0.063967, - -0.031696, - -0.05645, - -0.01294, - 0.0011161, - -0.023829, - 0.048148, - -0.01364, - -0.010693, - -0.068046, - -0.011322, - -0.000203, - 0.075651, - -0.0088567, - -0.00076409, - 0.061754, - 0.018119, - 0.066776, - 0.01065, - 0.043925, - 0.042206, - 0.0014138, - -0.039889, - 0.042124, - 0.071605, - -0.018524, - 0.04317, - 0.0032151, - 0.083323, - 0.043636, - 0.039775, - 0.00073313, - -0.038333, - -0.050732, - 0.018017, - 0.0040079, - 0.041842, - 0.011057, - -0.097168, - -0.045309, - 0.016639, - 0.11853, - 0.032337, - -0.017487, - -0.014916, - 0.046481, - 0.075582, - -0.026712, - 0.10159, - 0.040673, - 0.025096, - 0.0040582, - 0.10495, - -0.020688, - 0.03974, - -0.022315, - -0.042994, - 0.04531, - 0.014562, - -0.019696, - 0.016975, - -0.027829, - -0.058344, - 0.0382, - 0.021128, - 0.079685, - -0.049716, - 0.094865, - 0.048828, - -0.0088107, - -0.027304, - 0.041206, - -0.025152, - 0.071916, - 0.015409, - -0.026738, - -0.024426, - 0.0055157, - 0.034746, - 0.041915, - 0.023164, - 0.019001, - 0.014556, - 0.03897, - 0.00085649, - 0.027439, - 0.01024, - 0.018802, - -0.0039708, - -0.0011066, - -0.045894, - 0.006184, - 0.036146, - -0.046193, - 0.015145, - -0.0052509, - 0.047983, - 0.031035, - -0.019851, - 0.011204, - 0.0050503, - -0.049664, - -0.068916, - 0.0085416, - 0.087339, - -0.023938, - 0.022177, - -0.05042, - 0.10096, - -0.11019, - 0.000013865, - -0.0097549, - 0.0040939, - 0.0298, - 0.031093, - 0.04902, - -0.043247, - -0.091363, - 0.035603, - -0.062148, - -0.023897, - 0.026398, - -0.050035, - 0.0063358, - -0.036881, - -0.05621, - -0.036005, - 0.069293, - 0.055988, - 0.10634, - 0.050707, - -0.086794, - 0.023661, - 0.030977, - 0.020437, - -0.014556, - -0.055983, - -0.019228, - -0.027053, - 0.021702, - 0.065818, - 0.055461, - -0.001159, - 0.070138, - 0.041883, - 0.026207, - 0.011391, - -0.03858, - 0.012516, - -0.036961, - 0.0018434, - -0.0093065, - -0.038299, - -0.031796, - -0.0015343, - -0.015635, - 0.059859, - -0.0354, - -0.031571, - -0.0079317, - -0.027061, - 0.028249, - 0.010111, - -0.07869, - -0.036442, - -0.037819, - 0.0092513, - 0.058155, - -0.052077, - -0.031828, - -0.046769, - -0.0055815, - 0.061622, - -0.039244, - 0.038634, - 0.01928, - -0.0096337, - -0.0025719, - 0.034266, - -0.021928, - 0.059774, - 0.033271, - -0.041295, - 0.012627, - 0.0041775, - -0.0059804, - -0.031383, - -0.030005, - 0.061577, - -0.087724, - 0.00024234, - -0.0060755, - 0.0064093, - 0.057883, - -0.001253, - 0.035762, - -0.0020291, - 0.025298, - 0.057662, - -0.039397, - 0.064513, - 0.012523, - -0.02864, - -0.026306, - -0.055918, - 0.014491, - 0.060865, - -0.065593, - -0.018209, - -0.043088, - 0.0060235, - 0.031625, - -0.036481, - 0.0062652, - 0.08098, - -0.032142, - 0.041448 - ], - "architectural": [ - 0.0067616, - -0.009651, - 0.015756, - -0.02238, - -0.0082281, - -0.043827, - -0.018847, - -0.053631, - 0.035775, - 0.00030955, - 0.030559, - -0.021835, - -0.0035878, - 0.086359, - 0.019808, - 0.022967, - 0.029435, - 0.02993, - 0.012086, - -0.013869, - -0.042614, - 0.03471, - 0.043084, - 0.072721, - -0.0045922, - 0.0028555, - -0.018007, - 0.033119, - 0.026721, - 0.039182, - -0.034245, - -0.044213, - -0.011094, - -0.078539, - 0.031679, - 0.049507, - 0.030403, - 0.044425, - 0.035409, - 0.0030466, - -0.0020694, - -0.083017, - 0.0020906, - 0.0014686, - -0.07578, - 0.0030783, - -0.013492, - 0.0016289, - -0.011339, - 0.0027202, - 0.010249, - -0.051969, - -0.042942, - 0.037982, - 0.030313, - -0.0068513, - -0.0090859, - 0.0024835, - -0.017574, - 0.017612, - 0.053191, - 0.027917, - 0.071205, - -0.040166, - 0.083442, - 0.03973, - -0.045654, - 0.018056, - -0.0050561, - 0.016665, - 0.033664, - 0.0078988, - 0.021716, - -0.030334, - 0.020592, - -0.034076, - -0.039161, - -0.0378, - -0.015432, - 0.014196, - -0.035409, - 0.031746, - 0.016608, - 0.004376, - -0.019316, - -0.046791, - -0.016251, - 0.018451, - -0.021615, - 0.032463, - -0.0041719, - 0.015781, - -0.06193, - -0.0045144, - -0.0017817, - 0.032708, - -0.015217, - 0.0015381, - 0.049712, - 0.039045, - 0.055065, - 0.024873, - -0.0037824, - 0.031316, - 0.014024, - -0.066112, - 0.0088504, - 0.061995, - -0.02431, - 0.014879, - 0.0063883, - 0.079455, - 0.017608, - 0.052549, - -0.0087658, - -0.029057, - -0.039613, - 0.040684, - -0.017048, - 0.049547, - 0.0021365, - -0.056115, - -0.046324, - 0.018074, - 0.084616, - 0.020141, - -0.015567, - -0.0024109, - 0.01588, - 0.065995, - -0.0047184, - 0.0019296, - 0.0049068, - 0.0093408, - -0.015619, - 0.065991, - -0.011284, - 0.033509, - 0.0017956, - -0.055078, - 0.032351, - 0.026197, - -0.0094941, - 0.037016, - -0.013498, - -0.048488, - 0.023051, - 0.015236, - 0.036492, - -0.026089, - 0.019978, - 0.11156, - 0.027626, - -0.033763, - 0.010808, - 0.026888, - 0.049992, - 0.021589, - -0.022119, - 0.0077253, - 0.0089725, - -0.020222, - -0.064153, - -0.026387, - 0.0083345, - 0.040376, - 0.027628, - -0.035956, - -0.00030772, - 0.017028, - 0.072865, - 0.010492, - 0.018945, - -0.0014735, - 0.010121, - 0.045848, - 0.0069384, - -0.0024699, - -0.016663, - 0.010064, - -0.007365, - -0.028162, - 0.0030794, - -0.020268, - -0.027207, - -0.0080767, - 0.019693, - 0.073649, - 0.011221, - -0.017602, - -0.020775, - 0.063612, - 0.078042, - 0.0077119, - -0.027436, - 0.013267, - 0.021315, - 0.0065315, - 0.057515, - -0.026453, - -0.089395, - -0.010856, - -0.028292, - -0.034492, - 0.019156, - -0.010901, - -0.0061762, - -0.019802, - -0.022207, - 0.026296, - 0.12433, - 0.030239, - -0.018799, - 0.0031404, - -0.0076895, - 0.027923, - 0.018238, - 0.024396, - -0.05338, - -0.030904, - -0.018965, - -0.0055691, - 0.013289, - 0.046591, - 0.028703, - 0.0049147, - 0.032717, - 0.050099, - -0.026663, - -0.017977, - -0.048533, - -0.024836, - -0.022941, - 0.016287, - -0.011484, - -0.023277, - 0.00886, - -0.016946, - -0.014434, - 0.0011207, - 0.01392, - -0.012892, - 0.0094304, - -0.0091016, - -0.079607, - 0.011413, - -0.067251, - 0.0056527, - -0.015261, - -0.001502, - 0.024808, - -0.061462, - -0.027169, - -0.032421, - -0.018469, - 0.038926, - -0.012239, - 0.037336, - 0.030602, - 0.0088513, - 0.017125, - 0.055236, - -0.039325, - 0.0015305, - 0.067605, - -0.053941, - 0.029988, - 0.00057347, - 0.017901, - -0.0055028, - -0.0078262, - 0.044622, - -0.070175, - -0.011385, - 0.014105, - -0.043078, - 0.061688, - 0.0017585, - 0.015242, - -0.016377, - 0.13051, - 0.03053, - -0.03552, - 0.054383, - 0.0076081, - -0.0029662, - -0.013925, - 0.017788, - -0.0077869, - 0.035363, - -0.044209, - -0.0064297, - -0.0071569, - -0.019724, - 0.044569, - -0.00010404, - -0.001874, - 0.05014, - -0.0091327, - 0.0060139 - ], - "informatics": [ - -0.034531, - -0.077817, - -0.066559, - 0.031015, - -0.014352, - -0.01601, - 0.030084, - -0.080238, - 0.0056722, - -0.074661, - -0.0035805, - -0.041341, - 0.031423, - -0.056457, - 0.021723, - 0.034993, - 0.045577, - 0.063, - 0.035778, - 0.016979, - -0.022681, - 0.015917, - 0.086627, - 0.050255, - 0.0053952, - -0.015501, - -0.0090016, - 0.0058676, - 0.059074, - -0.0099388, - 0.029596, - -0.017716, - 0.020035, - -0.059244, - 0.021723, - 0.016787, - 0.044005, - 0.034144, - 0.026067, - -0.03467, - -0.092093, - -0.09132, - 0.0406, - -0.029463, - 0.014599, - -0.046016, - -0.016737, - -0.027493, - 0.08615, - -0.0027467, - -0.059971, - -0.057534, - -0.025701, - 0.024879, - -0.022594, - 0.039973, - -0.014922, - 0.028332, - 0.020251, - -0.0069405, - 0.00017946, - -0.0068142, - 0.08492, - 0.042918, - -0.0026711, - 0.033062, - 0.010612, - 0.0043332, - 0.020248, - 0.0065886, - -0.017963, - 0.014186, - 0.011321, - -0.04291, - 0.061422, - -0.030654, - -0.020638, - 0.011542, - 0.031323, - 0.026557, - -0.0062006, - 0.03993, - -0.044294, - -0.011978, - -0.051737, - -0.031019, - -0.00051553, - -0.028689, - -0.00067642, - 0.043132, - 0.061569, - 0.0073452, - -0.059033, - -0.0011414, - 0.014707, - 0.035972, - 0.030021, - -0.046229, - -0.046788, - 0.063659, - 0.0012222, - 0.021605, - -0.040678, - -0.010085, - 0.04956, - -0.053988, - 0.0048378, - -0.037631, - 0.059091, - -0.018438, - -0.046887, - 0.10896, - 0.033322, - -0.002782, - 0.0040231, - 0.048092, - -0.06308, - -0.025535, - 0.0065358, - 0.050474, - -0.048537, - 0.055076, - 0.023892, - -0.01096, - 0.08236, - -0.0035477, - -0.026633, - 0.002128, - 0.0048729, - 0.11936, - 0.031854, - -0.0052286, - -0.023322, - -0.029757, - -0.020032, - -0.037712, - 0.018339, - 0.021702, - -0.038186, - 0.041984, - 0.0014355, - 0.0017389, - -0.010385, - 0.061461, - -0.05647, - -0.017363, - -0.010713, - 0.0075036, - 0.0096822, - -0.0011885, - 0.032459, - 0.071223, - 0.065233, - -0.086475, - 0.056531, - 0.050309, - -0.022746, - 0.0024682, - 0.035331, - -0.002027, - 0.0023477, - -0.014658, - -0.095085, - -0.0040238, - -0.018545, - -0.012623, - -0.071942, - -0.011166, - -0.0167, - 0.0003412, - -0.0076918, - -0.009572, - -0.012297, - 0.0053342, - -0.012493, - 0.065858, - -0.0037041, - 0.044161, - -0.053147, - 0.020676, - -0.039954, - 0.011561, - -0.040156, - -0.00928, - -0.049444, - -0.014055, - -0.050866, - 0.10699, - 0.0092912, - 0.014106, - -0.062261, - 0.084342, - -0.01105, - -0.052522, - 0.027453, - -0.012305, - -0.016221, - -0.00040037, - -0.052887, - -0.024677, - -0.11391, - -0.035364, - 0.040893, - 0.056398, - -0.079438, - 0.002147, - -0.020135, - -0.014479, - -0.028439, - 0.029753, - 0.056634, - 0.040488, - -0.075776, - 0.027941, - 0.035693, - 0.04798, - 0.0047386, - -0.019601, - -0.043043, - -0.013066, - -0.0025745, - -0.023256, - -0.020694, - 0.091081, - 0.088764, - 0.0030091, - 0.037746, - 0.075028, - 0.0059729, - 0.038094, - -0.005772, - 0.024623, - -0.055701, - 0.014458, - 0.015056, - 0.017214, - 0.00066784, - 0.014803, - -0.074637, - 0.024921, - 0.0081289, - 0.0057608, - 0.062847, - 0.042571, - -0.019746, - -0.018385, - -0.0065846, - -0.019092, - -0.017364, - 0.057954, - 0.095411, - 0.03473, - 0.0071722, - -0.025327, - -0.035425, - 0.045525, - -0.026857, - 0.027967, - 0.03645, - 0.007898, - -0.0036336, - -0.043511, - -0.019626, - -0.020827, - -0.0049457, - -0.051969, - 0.013194, - -0.00046649, - 0.045617, - -0.011385, - 0.024476, - 0.058776, - -0.064554, - -0.036145, - -0.0012629, - 0.0042792, - 0.032062, - 0.0010704, - -0.0077664, - -0.011562, - 0.046098, - -0.0099824, - 0.0050765, - -0.079093, - -0.036753, - -0.031069, - -0.028231, - 0.016409, - 0.025878, - -0.030742, - -0.020993, - 0.039646, - -0.0211, - -0.00020353, - 0.020951, - -0.01973, - -0.024565, - 0.022154, - 0.018436, - 0.0029255 - ], - "residences": [ - 0.022713, - -0.045695, - 0.056533, - -0.00031378, - -0.013343, - -0.0029013, - -0.00792, - -0.070997, - 0.069341, - 0.023234, - -0.014355, - -0.083986, - -0.0055469, - 0.009507, - -0.020565, - 0.040595, - 0.029049, - 0.011554, - 0.018605, - 0.014781, - 0.027175, - -0.040582, - 0.020192, - 0.093355, - 0.058307, - 0.00091613, - -0.02085, - 0.063786, - 0.046299, - 0.032423, - -0.05976, - -0.040657, - -0.046768, - -0.018405, - -0.0037143, - 0.063001, - 0.031672, - -0.014806, - -0.020195, - 0.01917, - -0.019075, - -0.094286, - 0.031367, - 0.0010282, - -0.014291, - -0.018501, - -0.012905, - 0.013823, - -0.031363, - 0.042061, - -0.037434, - -0.029405, - -0.043408, - 0.017466, - -0.093998, - -0.014716, - -0.034325, - 0.050469, - -0.012596, - -0.085204, - 0.031024, - -0.0007053, - 0.12083, - -0.017703, - 0.053307, - -0.025883, - -0.034809, - -0.020784, - -0.021953, - -0.01223, - 0.036631, - -0.00011781, - 0.052022, - -0.025924, - 0.022213, - -0.042521, - 0.046404, - -0.016385, - -0.01309, - 0.033793, - 0.017616, - -0.0080885, - 0.018459, - 0.021844, - -0.030852, - 0.0035982, - -0.0036327, - -0.0046184, - 0.02407, - -0.0059583, - -0.032179, - -0.011718, - -0.064642, - 0.022971, - 0.012617, - 0.062892, - -0.022801, - 0.023653, - 0.015892, - 0.019205, - 0.067804, - 0.082747, - 0.0098894, - -0.027396, - 0.056733, - -0.048959, - 0.0021033, - -0.020324, - 0.033474, - 0.017115, - -0.011805, - 0.035728, - 0.053986, - 0.066686, - -0.00084123, - -0.051827, - 0.023672, - -0.022165, - -0.038948, - -0.011048, - -0.0056154, - 0.0087729, - 0.06632, - -0.082519, - 0.069992, - 0.012689, - -0.0031305, - -0.053397, - -0.0087339, - 0.063786, - 0.045815, - 0.081703, - 0.054975, - -0.024375, - 0.026946, - 0.070207, - -0.0072967, - 0.019888, - -0.051946, - -0.024824, - 0.026593, - -0.020356, - 0.044242, - 0.035052, - 0.09301, - 0.017193, - 0.039902, - 0.037588, - -0.009896, - -0.012937, - 0.043669, - 0.041732, - 0.019422, - -0.036549, - 0.06596, - 0.0047233, - -0.015758, - 0.046912, - -0.0027735, - 0.043058, - 0.019669, - 0.028794, - 0.042326, - 0.039181, - 0.036331, - 0.0033759, - 0.035445, - -0.029661, - 0.019915, - -0.0071099, - 0.074161, - 0.01611, - 0.067532, - 0.040843, - -0.010719, - 0.050582, - -0.014948, - 0.042126, - -0.052426, - 0.034249, - 0.094824, - 0.031502, - 0.049168, - 0.0042477, - -0.034311, - -0.049451, - -0.027828, - 0.083973, - 0.053972, - -0.029645, - 0.013861, - 0.081836, - -0.088695, - 0.048717, - -0.001836, - -0.0072838, - 0.030513, - 0.050484, - 0.025034, - 0.0013158, - -0.1172, - 0.062082, - -0.048084, - 0.0063663, - -0.0042463, - -0.039335, - -0.0019488, - 0.0090505, - -0.054862, - -0.030385, - 0.09543, - -0.010078, - -0.0059895, - 0.025773, - -0.022659, - 0.024829, - -0.013204, - 0.031608, - -0.018137, - -0.025573, - 0.0066606, - -0.02671, - 0.019079, - 0.076789, - 0.057383, - 0.021082, - -0.04046, - 0.057254, - -0.013074, - 0.020285, - -0.046417, - 0.030713, - -0.048587, - -0.019906, - 0.02977, - 0.038781, - 0.019615, - -0.0065888, - -0.01853, - 0.043207, - -0.0070973, - -0.0093129, - 0.051057, - -0.0031997, - 0.03401, - 0.060162, - -0.019116, - -0.066018, - 0.010231, - -0.022119, - -0.062849, - -0.032848, - -0.010572, - -0.064659, - 0.016779, - -0.0038527, - -0.032986, - -0.012242, - 0.027443, - -0.0298, - 0.012145, - -0.06525, - -0.044589, - -0.020513, - 0.055021, - 0.0015802, - 0.014122, - 0.00015507, - -0.029549, - -0.042974, - -0.053218, - 0.05073, - -0.075021, - -0.04196, - 0.0080283, - 0.024623, - 0.062324, - -0.0323, - 0.025663, - 0.050667, - 0.034591, - -0.0048166, - -0.0084242, - -0.0024078, - 0.0083922, - 0.067677, - -0.051694, - -0.040981, - -0.013515, - 0.00041395, - 0.011694, - 0.017391, - -0.015569, - 0.035254, - -0.0051558, - 0.07696, - -0.035141, - 0.026469, - 0.015228, - 0.0028375 - ], - "manufacturing": [ - -0.0085629, - -0.015204, - -0.020731, - -0.017154, - -0.019125, - -0.033246, - 0.0099857, - -0.058928, - 0.044219, - 0.0019355, - -0.055622, - -0.026817, - -0.0039618, - 0.033493, - 0.000063561, - 0.01543, - 0.039976, - 0.019375, - 0.025664, - -0.031044, - 0.052087, - 0.016534, - -0.0012238, - 0.030065, - -0.024972, - -0.0097167, - -0.0077162, - 0.016001, - 0.0071583, - 0.017574, - -0.031275, - 0.00095904, - 0.014521, - -0.049575, - 0.046905, - 0.031781, - -0.017731, - 0.0020523, - 0.015104, - 0.049449, - -0.021061, - -0.071459, - 0.028534, - -0.040799, - -0.003315, - -0.020637, - -0.013582, - 0.0075391, - -0.01672, - 0.027673, - -0.015218, - 0.018996, - -0.016666, - 0.033669, - -0.047335, - -0.0076832, - -0.0023602, - 0.0032769, - -0.000027293, - 0.0072085, - -0.010536, - 0.011498, - 0.063266, - 0.023776, - 0.051285, - 0.0023552, - -0.015034, - -0.021035, - 0.061587, - -0.01957, - 0.010699, - -0.027031, - 0.064337, - -0.027676, - -0.0079312, - 0.0036137, - 0.0005146, - -0.0052834, - -0.0097756, - -0.023398, - -0.00421, - -0.034372, - -0.071449, - 0.047133, - -0.019529, - 0.0092076, - -0.033153, - -0.0060639, - -0.023165, - -0.029792, - 0.0014084, - 0.015645, - -0.053717, - -0.0032272, - -0.0092685, - 0.02077, - 0.0023691, - -0.045618, - -0.019594, - 0.0048216, - 0.0086137, - -0.028408, - -0.010791, - 0.017313, - 0.035343, - -0.062677, - 0.022858, - 0.037702, - 0.021305, - -0.0115, - 0.0055461, - 0.039988, - 0.042904, - 0.044287, - 0.013119, - -0.031877, - -0.016479, - -0.018054, - -0.025763, - -0.0056523, - -0.037134, - 0.0029966, - -0.052616, - 0.0062366, - 0.044715, - 0.032371, - -0.024385, - -0.081562, - 0.0099158, - 0.072211, - 0.040527, - 0.0079711, - 0.014436, - -0.043331, - 0.025209, - -0.026847, - 0.041044, - -0.0071484, - 0.0048542, - 0.0076127, - 0.019784, - 0.061212, - -0.010019, - 0.024882, - 0.0096618, - -0.013086, - 0.034148, - -0.031792, - 0.0046643, - -0.0079729, - 0.023712, - 0.024977, - 0.038507, - -0.089002, - 0.022364, - 0.037151, - -0.030212, - -0.00038022, - 0.014186, - 0.012521, - 0.031088, - 0.015943, - -0.053277, - 0.012078, - 0.033599, - 0.0064244, - -0.004541, - -0.014063, - 0.049119, - -0.019713, - 0.047798, - 0.051091, - -0.034046, - 0.019728, - 0.0087311, - 0.044581, - 0.0020666, - 0.027424, - -0.047576, - 0.035015, - -0.0060057, - -0.028517, - -0.014584, - 0.0028601, - 0.021107, - -0.023867, - 0.0074861, - 0.064888, - -0.012357, - -0.00010539, - -0.022207, - 0.015825, - -0.0022509, - -0.030496, - 0.037906, - -0.00015753, - -0.042277, - -0.0030128, - 0.02055, - -0.027392, - -0.11254, - 0.044408, - 0.038125, - -0.0037274, - -0.010986, - 0.048395, - -0.029463, - 0.0049701, - 0.045052, - -0.00082424, - 0.073693, - 0.0060577, - 0.0011896, - -0.021366, - 0.002649, - 0.0091119, - 0.0053067, - 0.0063599, - 0.0018433, - -0.010284, - -0.0056131, - -0.049131, - 0.026515, - 0.063599, - -0.058063, - 0.0047413, - -0.039016, - 0.022785, - 0.022453, - -0.015822, - -0.015865, - -0.013995, - -0.057602, - 0.0040064, - 0.004218, - -0.017686, - -0.011594, - -0.017879, - 0.024732, - -0.037265, - 0.032507, - -0.0029867, - 0.0137, - 0.0082382, - -0.063704, - -0.040888, - -0.0031067, - 0.003099, - 0.012674, - 0.0098672, - 0.012034, - -0.015461, - 0.0089694, - 0.0050466, - -0.0045499, - 0.049113, - 0.0031384, - 0.015753, - 0.022477, - -0.015251, - 0.026186, - 0.015409, - 0.0014043, - 0.029924, - -0.000098521, - -0.0069971, - -0.012102, - 0.017796, - -0.06976, - -0.035252, - -0.021359, - 0.040999, - -0.087918, - -0.0076646, - -0.024645, - -0.012347, - 0.0087338, - 0.038439, - -0.048532, - 0.0065917, - 0.035926, - 0.028165, - -0.0422, - 0.015156, - 0.03109, - 0.028559, - -0.021749, - -0.013537, - 0.011936, - 0.025579, - -0.043017, - 0.053199, - -0.021808, - -0.022174, - -0.024388, - -0.02884, - 0.025583, - -0.0069903, - 0.0066677, - -0.043954 - ], - "loans": [ - 0.032725, - -0.010287, - -0.019703, - -0.031188, - 0.0046424, - -0.1406, - -0.042769, - -0.11498, - 0.017156, - -0.032934, - 0.13367, - -0.00019191, - -0.021402, - -0.049753, - -0.025349, - -0.0031991, - 0.081458, - -0.039366, - 0.10072, - -0.069687, - 0.077833, - -0.0036513, - -0.11393, - 0.047922, - -0.024572, - -0.025817, - -0.010354, - 0.04891, - 0.11196, - -0.091127, - 0.034641, - -0.029513, - -0.0084577, - -0.054025, - 0.069293, - 0.068329, - 0.0013801, - 0.069188, - -0.028651, - 0.074872, - 0.0020274, - -0.12857, - 0.069404, - 0.049295, - 0.0051965, - -0.0041849, - 0.0054047, - -0.081112, - -0.032344, - -0.046134, - -0.063744, - -0.012688, - 0.028775, - 0.021996, - -0.14351, - 0.021196, - -0.068524, - -0.017401, - 0.0019243, - 0.0073035, - 0.089737, - 0.046191, - 0.21312, - 0.020726, - -0.0086788, - -0.23071, - -0.058226, - -0.15263, - -0.046945, - 0.022502, - -0.010578, - -0.023111, - 0.10495, - -0.054874, - -0.01644, - 0.0022058, - 0.005987, - -0.051343, - 0.066841, - 0.075785, - 0.0089471, - -0.049191, - -0.0052025, - 0.079513, - -0.043908, - -0.010856, - -0.04379, - -0.040448, - 0.077333, - -0.050441, - -0.033374, - 0.084623, - -0.093627, - 0.044538, - -0.11407, - 0.051553, - -0.09984, - -0.10431, - -0.016763, - -0.14302, - 0.057559, - -0.057915, - -0.013687, - 0.037318, - 0.11844, - -0.045076, - -0.09387, - -0.095752, - 0.051052, - -0.087916, - -0.05723, - 0.078162, - 0.087586, - 0.10054, - -0.030481, - 0.014697, - 0.014442, - -0.015789, - -0.048053, - -0.022135, - -0.087904, - -0.079321, - 0.046652, - -0.048501, - 0.15879, - -0.056747, - -0.087152, - -0.038787, - -0.035928, - 0.092334, - -0.018264, - 0.03363, - -0.0011148, - 0.01283, - -0.022772, - 0.089701, - -0.064021, - 0.024666, - -0.074503, - 0.0066789, - 0.012629, - 0.059165, - -0.055064, - 0.030469, - 0.04443, - -0.088853, - -0.0062058, - 0.065163, - -0.016932, - -0.11371, - 0.014573, - 0.05852, - 0.041246, - -0.12564, - -0.055999, - -0.047701, - 0.043591, - 0.0047031, - -0.012689, - -0.0064763, - 0.090945, - 0.057432, - 0.01551, - 0.051098, - 0.082817, - -0.051426, - 0.02889, - -0.00011705, - 0.05801, - 0.11464, - 0.11534, - -0.057946, - -0.049224, - 0.10921, - -0.08979, - 0.065673, - -0.018895, - -0.013168, - -0.066462, - -0.048686, - 0.066911, - 0.031933, - -0.027889, - 0.059117, - 0.021586, - -0.10187, - -0.08772, - 0.13576, - 0.038416, - 0.00068148, - -0.064434, - 0.064091, - -0.059992, - -0.042325, - -0.0092682, - 0.093769, - -0.0076647, - -0.077256, - 0.006656, - -0.055178, - -0.21293, - 0.15287, - 0.10613, - -0.13847, - 0.086904, - 0.044988, - 0.02292, - -0.12076, - -0.15255, - -0.096417, - 0.14252, - 0.0085283, - 0.023449, - -0.0044016, - 0.069453, - 0.028182, - -0.044484, - 0.0051051, - -0.052603, - -0.049536, - 0.16891, - 0.032961, - 0.013531, - 0.10874, - 0.12764, - 0.077812, - -0.019594, - 0.05232, - 0.054228, - 0.014764, - -0.073072, - -0.013072, - -0.12215, - -0.009099, - 0.12376, - 0.080936, - -0.11093, - -0.021045, - -0.083587, - 0.060408, - -0.043449, - -0.017365, - 0.059674, - -0.0769, - 0.0041172, - 0.03519, - -0.078173, - -0.067319, - -0.0075253, - 0.018319, - 0.033704, - -0.061974, - -0.00039026, - -0.072719, - -0.047156, - -0.022601, - 0.012518, - 0.02454, - -0.021346, - -0.033457, - 0.051489, - -0.071032, - 0.036725, - -0.022314, - 0.056153, - 0.032272, - -0.067372, - -0.057339, - 0.07637, - 0.10882, - -0.033321, - 0.097978, - -0.15957, - -0.029961, - -0.14521, - -0.00056219, - -0.013651, - 0.15322, - 0.00072995, - -0.017012, - 0.085085, - -0.025593, - -0.0076777, - 0.039256, - -0.030317, - 0.089379, - 0.04305, - 0.11734, - -0.039579, - 0.0067468, - -0.00042497, - -0.011374, - -0.028778, - 0.050806, - -0.023832, - 0.035902, - -0.065825, - -0.101, - -0.065136, - -0.092225 - ], - "properties": [ - 0.02259, - -0.0099683, - -0.00034675, - 0.023449, - -0.010982, - -0.017423, - 0.03411, - -0.076075, - 0.049196, - -0.012495, - 0.009388, - -0.07297, - 0.011474, - 0.029716, - 0.012694, - -0.027693, - 0.057355, - 0.013989, - 0.063792, - -0.01585, - 0.02971, - -0.030836, - 0.037639, - 0.051047, - 0.014317, - -0.021802, - -0.03786, - 0.0016944, - 0.09222, - 0.022644, - -0.037752, - -0.027044, - 0.034114, - -0.025875, - 0.032241, - 0.013246, - -0.042968, - -0.036646, - -0.062825, - 0.0010001, - 0.035141, - -0.097164, - -0.023301, - -0.0036863, - -0.047919, - -0.063593, - -0.028442, - 0.035318, - -0.0061496, - -0.0091856, - -0.040213, - -0.0098744, - -0.01828, - -0.0095758, - -0.063395, - -0.018014, - -0.022823, - 0.0050885, - -0.013652, - 0.003218, - 0.085114, - -0.0041889, - 0.16095, - 0.0099118, - 0.044626, - -0.016581, - 0.042898, - -0.0085445, - 0.0081565, - -0.018139, - -0.0015773, - -0.020882, - 0.044703, - -0.012687, - 0.035412, - -0.041308, - -0.033647, - -0.039463, - -0.039479, - -0.0035525, - 0.0090364, - -0.021379, - 0.032803, - 0.057405, - -0.0015384, - -0.005884, - 0.046973, - -0.032652, - 0.035466, - -0.0098052, - 0.0073868, - -0.00036186, - -0.059666, - 0.030804, - -0.018341, - 0.03987, - -0.017606, - 0.030108, - 0.051931, - 0.0057839, - 0.02391, - 0.041303, - -0.039512, - 0.035737, - 0.019869, - -0.053145, - 0.0090593, - 0.0048746, - 0.06558, - -0.020583, - 0.034947, - 0.072704, - 0.061375, - -0.021007, - 0.027139, - -0.036818, - 0.0059442, - -0.0048145, - -0.040492, - 0.038796, - -0.021359, - -0.024806, - -0.0056532, - -0.058455, - 0.11153, - 0.0070871, - -0.000068712, - -0.058515, - 0.0092184, - 0.10731, - 0.074149, - 0.042003, - 0.016549, - 0.0047473, - 0.015444, - 0.030072, - 0.026054, - 0.056886, - -0.015802, - 0.023769, - -0.014336, - 0.026072, - -0.0057447, - 0.040247, - 0.027134, - -0.027262, - 0.02739, - -0.01977, - -0.054408, - 0.043981, - 0.018696, - 0.072938, - 0.04567, - -0.048263, - -0.025164, - 0.018372, - 0.01425, - 0.030243, - 0.022131, - 0.05421, - 0.04663, - -0.000028057, - -0.0051957, - -0.011175, - 0.045042, - 0.021426, - -0.0026431, - -0.001821, - 0.011086, - -0.0053928, - 0.01065, - -0.028179, - -0.025883, - -0.015403, - -0.065422, - 0.034853, - -0.035479, - 0.035211, - -0.050356, - -0.015598, - 0.013633, - -0.042471, - 0.033529, - 0.010312, - 0.010649, - -0.050316, - 0.0395, - 0.057376, - -0.004968, - -0.055692, - 0.014658, - 0.046336, - -0.059084, - 0.045357, - -0.037993, - 0.023628, - 0.046576, - 0.044578, - -0.011367, - 0.012189, - -0.1257, - 0.059669, - -0.023216, - -0.034674, - 0.054358, - -0.044833, - 0.03478, - -0.028743, - -0.033133, - -0.01679, - 0.078428, - 0.018777, - 0.020004, - -0.0287, - 0.028395, - 0.026483, - -0.011556, - 0.042376, - -0.047254, - 0.026994, - 0.013547, - -0.025166, - 0.004885, - 0.094788, - 0.070195, - -0.024449, - -0.015683, - 0.034041, - -0.063327, - -0.014437, - -0.045275, - -0.010046, - -0.12572, - 0.0058628, - 0.016097, - 0.0089033, - -0.057468, - -0.012372, - 0.028873, - 0.0081373, - -0.018672, - -0.020069, - 0.0686, - -0.01127, - -0.026878, - 0.00063191, - -0.0033639, - -0.017783, - -0.0021207, - 0.00092223, - -0.026134, - -0.069169, - 0.037506, - -0.0099327, - -0.027178, - 0.0215, - -0.001511, - 0.0071396, - 0.02424, - -0.010777, - 0.033441, - 0.01315, - -0.026256, - -0.059364, - -0.00602, - -0.023716, - -0.02036, - 0.0017431, - -0.016615, - 0.035364, - -0.032735, - 0.070953, - -0.091306, - -0.053641, - 0.062956, - -0.019894, - 0.054682, - 0.017519, - 0.046514, - -0.045642, - 0.035361, - -0.039049, - -0.043663, - 0.0049797, - 0.028244, - -0.019839, - -0.065027, - 0.030265, - -0.046174, - 0.034574, - -0.056874, - 0.015839, - -0.023107, - -0.00053562, - 0.011527, - 0.025007, - -0.026777, - -0.0035905, - -0.013169, - 0.0050777 - ], - "tours": [ - 0.03806, - -0.037481, - 0.050164, - 0.0033544, - -0.01277, - -0.038431, - 0.058236, - -0.11661, - 0.031039, - 0.049127, - 0.035873, - -0.13318, - 0.049018, - -0.055598, - 0.01344, - 0.064317, - 0.15125, - -0.013088, - 0.0039109, - -0.071605, - -0.030839, - 0.027112, - -0.024179, - 0.10858, - 0.05249, - 0.041283, - -0.0050845, - 0.16095, - -0.0022565, - -0.029348, - -0.036891, - -0.016656, - 0.010529, - -0.073803, - 0.066315, - 0.10482, - -0.061685, - -0.02346, - 0.029296, - -0.078901, - 0.023985, - -0.15414, - -0.022666, - -0.0045001, - 0.065359, - 0.068152, - 0.054843, - -0.060089, - -0.018946, - -0.0052518, - -0.085865, - 0.040978, - 0.01891, - -0.067084, - -0.15901, - 0.0093758, - -0.012614, - 0.040102, - -0.093458, - 0.021097, - -0.040911, - 0.083298, - 0.21014, - 0.014699, - -0.040746, - -0.046304, - -0.097188, - -0.10599, - -0.0079175, - 0.049141, - 0.010776, - 0.0063661, - 0.038625, - -0.042241, - 0.040478, - -0.0076859, - 0.056462, - -0.055631, - 0.014471, - -0.012027, - -0.048019, - -0.045042, - -0.065035, - 0.057941, - -0.09778, - -0.11364, - 0.041903, - -0.019795, - -0.057398, - -0.014737, - -0.11879, - 0.08633, - -0.11009, - 0.048005, - 0.1094, - 0.066989, - 0.042461, - 0.10192, - 0.027847, - -0.10538, - 0.14205, - 0.1328, - -0.016339, - -0.022224, - 0.13635, - -0.066535, - 0.050287, - -0.038625, - -0.10837, - 0.13212, - 0.073571, - -0.0097613, - 0.12117, - 0.093567, - 0.039351, - -0.043481, - 0.043806, - 0.069322, - -0.047248, - 0.1209, - -0.016587, - 0.03335, - -0.057917, - 0.047033, - 0.12936, - 0.017003, - 0.00597, - -0.096197, - 0.033552, - 0.12896, - 0.012527, - 0.093958, - 0.0064419, - 0.062628, - -0.050797, - -0.027885, - -0.02178, - 0.042614, - -0.11324, - -0.015345, - -0.076051, - 0.0061185, - 0.02773, - 0.039437, - 0.085898, - 0.0046673, - 0.027528, - 0.030191, - 0.003947, - -0.029973, - 0.057141, - 0.062032, - -0.10652, - -0.13676, - 0.033095, - 0.056542, - -0.068036, - 0.17462, - 0.020773, - 0.042494, - -0.0029295, - 0.10394, - 0.02275, - 0.030305, - 0.017005, - 0.081036, - 0.049308, - -0.13124, - 0.04478, - 0.016334, - 0.10469, - -0.019929, - 0.012171, - 0.050459, - -0.047516, - 0.065589, - -0.045001, - -0.045904, - -0.058567, - 0.094895, - 0.042534, - 0.067599, - 0.026695, - -0.015692, - 0.055593, - -0.0051684, - -0.0022591, - 0.12946, - 0.037631, - 0.050759, - 0.10311, - 0.0054627, - -0.10786, - -0.0017491, - -0.058371, - -0.021761, - 0.046032, - -0.025298, - 0.055465, - -0.064596, - -0.1975, - 0.12977, - 0.044541, - -0.035114, - 0.028777, - -0.058143, - -0.16183, - 0.037786, - 0.099612, - -0.087772, - 0.17346, - 0.00033416, - 0.053436, - -0.0091934, - 0.012411, - -0.080001, - 0.024201, - -0.057586, - -0.004378, - -0.062057, - 0.065735, - 0.058427, - -0.082325, - 0.12094, - 0.028232, - -0.0238, - 0.024313, - 0.10337, - -0.064084, - 0.010953, - -0.083194, - -0.074148, - -0.011142, - 0.045691, - 0.068219, - 0.059816, - 0.037537, - 0.018754, - -0.0027075, - 0.0635, - 0.032619, - 0.07412, - 0.087165, - -0.17704, - 0.026977, - -0.054829, - 0.022218, - -0.068773, - -0.0041817, - 0.015569, - 0.054012, - 0.057905, - 0.12711, - 0.076709, - -0.03717, - -0.021621, - 0.013969, - 0.054961, - 0.019922, - 0.14754, - 0.079238, - 0.058464, - 0.0016865, - -0.038551, - 0.095994, - 0.0082142, - 0.075915, - -0.0045311, - 0.078537, - -0.055695, - 0.0572, - 0.1393, - -0.16235, - -0.02149, - -0.028277, - 0.015859, - 0.014767, - 0.013739, - -0.016348, - 0.059691, - 0.014732, - 0.069143, - -0.040862, - 0.016694, - -0.02075, - -0.098027, - 0.031375, - 0.027302, - -0.030259, - 0.0061335, - 0.02224, - 0.12554, - -0.025628, - 0.033018, - -0.0014941, - -0.012663, - 0.050788, - 0.083552, - -0.014269, - -0.072727 - ], - "excursions": [ - 0.0195, - -0.01683, - 0.058953, - 0.014489, - 0.016241, - -0.038087, - -0.031134, - -0.069301, - -0.023796, - -0.020319, - -0.010497, - -0.07927, - -0.02823, - -0.0070624, - 0.018177, - -0.037356, - 0.059778, - 0.0092704, - 0.014047, - 0.00072201, - -0.037357, - 0.012565, - -0.035267, - 0.04889, - 0.018618, - 0.073528, - -0.0039941, - 0.022599, - 0.013941, - -0.021159, - 0.035589, - -0.060509, - 0.020279, - -0.065067, - 0.04701, - 0.053831, - 0.029187, - 0.048763, - -0.006073, - 0.0041829, - -0.0041547, - -0.092367, - -0.056347, - 0.011179, - 0.018349, - 0.0075418, - 0.045699, - -0.048815, - -0.035974, - 0.011078, - -0.027259, - 0.057954, - -0.030309, - -0.035802, - -0.10397, - -0.031231, - 0.00022605, - 0.03062, - -0.0066364, - 0.0082646, - 0.018466, - 0.041504, - 0.10141, - 0.020396, - 0.042222, - 0.0084433, - 0.0043229, - -0.032554, - -0.015731, - 0.016578, - 0.029343, - -0.012627, - -0.010778, - 0.076165, - 0.02896, - -0.018038, - 0.011793, - -0.049789, - -0.013667, - 0.0011245, - -0.050899, - -0.019244, - -0.025065, - 0.048173, - -0.02588, - -0.0309, - 0.092694, - 0.012165, - 0.0025574, - -0.058136, - -0.01698, - 0.053117, - -0.058816, - 0.026769, - 0.016231, - 0.0040336, - -0.020188, - 0.036348, - -0.043119, - -0.062889, - 0.056041, - 0.043368, - -0.0088397, - -0.017756, - 0.087389, - -0.016977, - 0.026101, - -0.077789, - -0.030356, - 0.027999, - 0.030858, - 0.019336, - 0.046806, - 0.067136, - -0.0060462, - 0.0054224, - 0.042554, - 0.031873, - -0.039885, - 0.030266, - 0.052018, - 0.040924, - -0.03544, - 0.003489, - 0.095788, - -0.043656, - 0.021065, - 0.0035649, - 0.012013, - 0.077986, - 0.073879, - 0.072697, - -0.048341, - 0.015836, - 0.00061761, - -0.0039342, - 0.054799, - 0.027053, - -0.03724, - 0.0042573, - -0.016969, - -0.027646, - -0.020192, - 0.02339, - 0.086174, - 0.025016, - 0.0050674, - 0.0059463, - -0.047041, - -0.0079815, - -0.013917, - 0.06128, - -0.05061, - -0.057481, - 0.060051, - 0.058518, - -0.075989, - 0.070328, - -0.012783, - -0.0035042, - 0.050299, - 0.0548, - 0.030494, - -0.012335, - -0.01139, - 0.075845, - 0.054885, - -0.033568, - 0.042405, - 0.041119, - 0.056352, - -0.0020174, - 0.004048, - -0.0016102, - -0.005677, - 0.056258, - -0.01119, - -0.0011002, - -0.060217, - 0.062312, - 0.0041967, - 0.016823, - -0.0087507, - -0.049356, - 0.071641, - -0.01772, - -0.012923, - 0.11966, - 0.028179, - -0.014734, - 0.035833, - 0.0012523, - -0.046109, - -0.032426, - -0.013187, - 0.02657, - -0.0048275, - 0.02, - 0.023076, - 0.010667, - -0.12217, - 0.067313, - 0.032716, - -0.056031, - 0.078544, - 0.013039, - -0.12808, - 0.019183, - 0.0024811, - -0.025128, - 0.067653, - 0.0041496, - 0.049729, - -0.048462, - 0.037791, - -0.0015508, - -0.056178, - 0.0073205, - -0.046227, - -0.062976, - -0.003979, - 0.003291, - -0.027404, - 0.036524, - 0.040461, - 0.020835, - 0.025182, - 0.05929, - -0.018308, - 0.045556, - -0.034506, - -0.014436, - -0.013353, - 0.021141, - 0.043714, - 0.05362, - 0.047018, - 0.011771, - -0.023656, - 0.057627, - -0.019115, - 0.044005, - -0.0079214, - -0.076754, - 0.00080464, - 0.035779, - 0.017749, - -0.057952, - -0.025975, - 0.021402, - 0.025349, - -0.022447, - 0.0030238, - -0.010845, - -0.031047, - -0.062774, - 0.00054608, - 0.010573, - 0.01548, - 0.045559, - 0.030156, - 0.0093387, - -0.058731, - -0.051429, - -0.012935, - 0.010104, - -0.019843, - -0.014449, - 0.05088, - 0.055351, - -0.0018041, - 0.053502, - -0.082267, - -0.037927, - -0.010096, - -0.0064213, - 0.013524, - 0.038896, - -0.029245, - 0.0079357, - 0.053136, - -0.017184, - 0.031568, - -0.05339, - 0.00054797, - -0.01137, - 0.015254, - 0.012696, - -0.00154, - 0.036093, - 0.007827, - 0.091187, - -0.043009, - -0.046705, - 0.00066696, - 0.045922, - -0.0054561, - 0.028201, - -0.036051, - -0.010151 - ], - "refreshments": [ - 0.015358, - -0.048071, - 0.018474, - -0.014995, - 0.010439, - 0.016467, - -0.0039187, - -0.062148, - 0.0086487, - 0.030689, - 0.050642, - 0.029642, - 0.01232, - 0.059987, - 0.014454, - -0.00046595, - 0.011808, - -0.0046612, - 0.024668, - -0.048106, - -0.033746, - -0.0067536, - -0.072945, - 0.027391, - -0.017062, - 0.0043763, - -0.032337, - 0.029035, - 0.052996, - -0.03574, - -0.009291, - 0.020915, - -0.010987, - -0.068186, - 0.039376, - 0.022542, - 0.055436, - 0.036966, - 0.035191, - 0.010853, - -0.045946, - -0.076876, - -0.042895, - 0.020009, - 0.055347, - -0.031712, - 0.039025, - -0.06826, - -0.029639, - 0.016633, - -0.049985, - 0.041828, - 0.0141, - -0.053049, - -0.057583, - 0.047563, - -0.054781, - -0.040973, - -0.019264, - -0.051328, - 0.023368, - 0.01108, - 0.080339, - 0.08419, - -0.022647, - 0.045589, - 0.046144, - -0.04961, - -0.012836, - 0.021166, - 0.036063, - -0.050994, - 0.060236, - 0.0020571, - -0.041598, - -0.017165, - -0.054985, - -0.056491, - 0.0041891, - 0.025902, - -0.019719, - -0.064324, - 0.032511, - 0.01446, - -0.065545, - -0.014377, - -0.0036001, - -0.030955, - -0.05766, - -0.043669, - 0.019381, - 0.013992, - -0.068037, - 0.010877, - -0.001577, - 0.019363, - 0.053526, - 0.069544, - -0.023067, - 0.0011829, - 0.069085, - 0.049558, - -0.050886, - -0.019482, - 0.048213, - -0.011157, - -0.041087, - 0.025965, - -0.021474, - 0.0168, - -0.029358, - 0.054409, - 0.083322, - 0.068177, - 0.053586, - -0.04019, - -0.026752, - -0.012182, - -0.03008, - -0.014703, - 0.045528, - 0.021556, - 0.0030263, - -0.039933, - 0.085984, - -0.022825, - -0.0094994, - -0.025087, - 0.024675, - 0.076732, - 0.034432, - 0.0251, - -0.033295, - 0.056237, - 0.0064426, - -0.057525, - -0.0059593, - 0.019591, - -0.023907, - -0.0038036, - 0.054821, - -0.020708, - -0.0010389, - -0.09988, - 0.055669, - -0.0087411, - 0.014863, - -0.003512, - -0.034172, - 0.044965, - 0.057044, - 0.036849, - -0.0179, - -0.048416, - 0.029287, - 0.0066026, - -0.014969, - 0.0041075, - -0.023121, - 0.019009, - 0.042066, - -0.01691, - -0.029158, - 0.066695, - -0.012281, - 0.082131, - -0.043154, - -0.062434, - 0.024192, - -0.0024596, - 0.023554, - 0.021377, - 0.077485, - -0.026147, - 0.071668, - 0.021979, - -0.026539, - 0.072542, - -0.036799, - -0.020095, - -0.078739, - 0.049766, - 0.016888, - -0.078206, - -0.031143, - 0.0024616, - 0.021105, - 0.099953, - 0.064785, - -0.021513, - 0.045862, - 0.039107, - -0.050613, - 0.0097581, - 0.049864, - 0.02304, - -0.024335, - -0.037825, - 0.0022025, - -0.0031623, - -0.089985, - 0.047992, - 0.046861, - 0.012557, - 0.041671, - -0.0036077, - -0.070231, - -0.00051453, - 0.017779, - -0.041619, - 0.058057, - 0.010937, - 0.09798, - 0.056128, - 0.020216, - 0.023481, - -0.016047, - 0.034648, - -0.039315, - -0.029645, - 0.072894, - -0.065268, - -0.026062, - 0.090502, - 0.11292, - -0.021945, - 0.0063304, - 0.0039492, - -0.076352, - 0.0091792, - -0.036915, - -0.013661, - -0.031037, - 0.020295, - 0.0064411, - 0.035456, - -0.044368, - -0.0065313, - -0.038321, - -0.044024, - 0.0044457, - -0.022445, - 0.068196, - -0.062716, - -0.027209, - 0.042074, - 0.026049, - -0.046138, - -0.040453, - -0.010038, - 0.038607, - 0.041123, - -0.030906, - 0.041777, - -0.069122, - -0.047796, - 0.029199, - -0.0060655, - 0.022709, - 0.047737, - 0.061042, - 0.014977, - 0.0058878, - -0.046873, - 0.037208, - -0.046942, - 0.042594, - -0.019996, - -0.048843, - 0.003414, - 0.049986, - 0.042705, - -0.056115, - -0.040275, - -0.072535, - 0.029975, - 0.014886, - 0.029557, - -0.045158, - 0.015096, - 0.0034758, - 0.0062746, - -0.010111, - -0.014617, - -0.0042477, - -0.022271, - -0.043012, - 0.046318, - 0.078837, - 0.028903, - 0.034044, - 0.034958, - -0.038494, - 0.014965, - -0.020048, - 0.0072349, - 0.031982, - -0.0039678, - -0.02864, - 0.046927 - ], - "works": [ - -0.0046745, - -0.034677, - 0.079472, - -0.0093788, - -0.0050475, - -0.033997, - -0.069086, - -0.14322, - 0.026387, - -0.019311, - 0.011056, - -0.057784, - 0.0035513, - -0.072856, - -0.030064, - -0.025507, - 0.1812, - 0.0379, - 0.098589, - -0.017011, - -0.05435, - 0.05705, - -0.014148, - 0.066559, - 0.083848, - 0.037329, - -0.0020475, - 0.0063997, - 0.10865, - 0.050542, - -0.0030832, - 0.023453, - -0.013275, - -0.030522, - 0.05094, - -0.01903, - 0.010598, - -0.022856, - 0.0024759, - -0.066279, - -0.00060587, - -0.14158, - -0.076354, - 0.035744, - -0.031729, - -0.045135, - 0.019483, - 0.042336, - 0.052931, - 0.030243, - -0.039443, - 0.0062208, - 0.0072062, - -0.0095716, - -0.13759, - 0.039359, - -0.011858, - 0.048098, - -0.056332, - -0.0043766, - 0.00020019, - -0.025239, - 0.23311, - -0.018295, - 0.062946, - 0.006916, - -0.04451, - -0.044314, - 0.032366, - 0.011906, - 0.053784, - 0.0077833, - -0.037108, - -0.01306, - -0.045872, - 0.003235, - 0.022246, - 0.0020634, - 0.032878, - -0.018364, - 0.042757, - 0.022229, - -0.01432, - 0.072029, - 0.016436, - -0.029044, - -0.0099435, - 0.01624, - 0.031889, - 0.064566, - -0.0045508, - -0.065803, - -0.12593, - 0.020207, - 0.0073989, - 0.065324, - 0.036751, - 0.023505, - 0.074269, - 0.030378, - 0.027106, - -0.011503, - -0.0013864, - 0.03602, - 0.039259, - -0.098633, - 0.012756, - 0.082599, - -0.0069414, - 0.0095329, - -0.016005, - 0.011167, - 0.083582, - -0.0026048, - -0.0375, - 0.034359, - -0.037611, - -0.0039113, - -0.036094, - -0.024157, - -0.018965, - -0.048397, - -0.070714, - 0.0059625, - 0.17131, - 0.0088492, - -0.010742, - -0.097003, - 0.033328, - 0.1228, - 0.0064191, - 0.079992, - -0.029525, - 0.023265, - 0.017709, - 0.0076362, - 0.035811, - 0.08547, - 0.039039, - 0.0098127, - 0.018591, - -0.0077584, - 0.010254, - 0.049784, - -0.029262, - -0.057109, - -0.070058, - 0.028553, - 0.052191, - -0.058556, - 0.036245, - 0.059402, - 0.040863, - -0.1759, - -0.027612, - -0.01287, - -0.014165, - 0.028688, - -0.014916, - -0.013899, - 0.047204, - -0.020012, - 0.020471, - 0.021297, - -0.0017896, - 0.015438, - 0.0036083, - -0.004024, - 0.040636, - -0.010559, - 0.086499, - 0.055195, - 0.090666, - -0.02039, - -0.018337, - 0.05476, - -0.061884, - -0.016728, - -0.038977, - 0.05863, - 0.081765, - -0.011175, - 0.044545, - 0.019152, - -0.011955, - -0.01162, - 0.065327, - 0.088047, - 0.046205, - 0.045363, - 0.000068211, - 0.10278, - -0.11558, - -0.0486, - -0.035227, - 0.046635, - 0.03239, - -0.039907, - 0.019915, - -0.011224, - -0.20479, - 0.12213, - 0.0019575, - -0.043781, - 0.046164, - -0.055574, - -0.0078372, - 0.013975, - -0.023656, - -0.070846, - 0.13375, - 0.061405, - -0.0060606, - -0.029885, - 0.0024155, - 0.017518, - 0.038199, - 0.048429, - -0.090842, - 0.056214, - 0.04138, - -0.085985, - 0.0042197, - 0.16417, - 0.054359, - -0.00023781, - 0.071409, - 0.12916, - 0.012493, - 0.048007, - 0.017166, - -0.069158, - -0.10424, - -0.034202, - 0.036105, - 0.031119, - 0.04339, - -0.027735, - 0.067177, - 0.058203, - 0.022815, - 0.023291, - -0.0083936, - 0.017814, - -0.013182, - 0.020595, - -0.090262, - -0.056629, - 0.030217, - 0.018881, - 0.023596, - -0.0049351, - -0.0080187, - 0.082732, - -0.0091305, - -0.016445, - -0.00041947, - 0.047853, - -0.021799, - -0.03625, - 0.049508, - 0.042718, - -0.0049105, - -0.034595, - -0.0084604, - -0.0063084, - -0.014244, - -0.076781, - -0.0042534, - 0.033554, - 0.072994, - 0.11604, - -0.11863, - -0.046919, - 0.0015264, - -0.0076625, - 0.010014, - 0.0097342, - 0.037636, - 0.081656, - -0.026672, - -0.042564, - 0.019745, - -0.054716, - -0.039324, - 0.029569, - -0.017142, - -0.024211, - 0.016543, - 0.097001, - -0.037793, - 0.0011274, - -0.022615, - -0.013429, - 0.014117, - 0.0012793, - -0.042938, - -0.043966, - 0.062694, - -0.043301 - ], - "lifestyle": [ - 0.0044507, - -0.0069141, - 0.030641, - 0.0081773, - -0.0402, - 0.0079624, - 0.014052, - -0.048203, - 0.023369, - 0.072381, - -0.036836, - -0.044727, - -0.046992, - -0.063933, - -0.018031, - -0.0084775, - 0.10639, - -0.010383, - 0.03094, - 0.028753, - 0.02501, - -0.013833, - -0.020783, - 0.070219, - -0.031749, - 0.014368, - 0.02121, - 0.062255, - -0.021313, - 0.027461, - -0.025288, - -0.047903, - 0.017097, - -0.072742, - 0.052722, - 0.065417, - 0.0063121, - 0.01021, - 0.013051, - 0.069162, - 0.042337, - -0.12726, - 0.025023, - -0.017209, - 0.008549, - -0.041169, - -0.038505, - -0.05942, - -0.068088, - -0.0083375, - -0.045714, - -0.054361, - -0.021514, - 0.0084458, - -0.023224, - 0.022492, - 0.03012, - -0.0099663, - -0.049575, - -0.0079815, - 0.052199, - -0.00099598, - 0.078577, - 0.027541, - 0.082267, - 0.034416, - -0.0017857, - 0.03726, - -0.0058314, - -0.07441, - 0.0519, - 0.053273, - -0.029081, - -0.055744, - 0.026209, - 0.062041, - 0.060938, - -0.012096, - -0.060651, - 0.0050684, - 0.009673, - 0.016131, - 0.019324, - 0.066329, - -0.013086, - -0.0219, - -0.0046129, - 0.007868, - 0.021216, - -0.021308, - 0.06274, - 0.055726, - -0.096055, - 0.045538, - -0.034581, - 0.068003, - -0.032994, - 0.059451, - 0.016401, - 0.01572, - 0.034012, - 0.037618, - 0.074543, - -0.039989, - -0.039511, - -0.059318, - -0.028487, - 0.00074518, - 0.033135, - -0.011472, - -0.0022355, - 0.026059, - 0.046435, - 0.010871, - -0.0060583, - -0.028271, - -0.022908, - -0.01536, - -0.042902, - 0.0099883, - 0.013584, - 0.020812, - 0.019791, - -0.016, - 0.10912, - -0.0095858, - -0.027997, - -0.0358, - 0.05529, - 0.068617, - 0.063776, - -0.034673, - 0.10784, - -0.078801, - -0.052222, - 0.023067, - -0.0058208, - 0.026983, - -0.011267, - -0.044618, - 0.05807, - -0.040299, - 0.013067, - 0.081375, - -0.040652, - 0.0024435, - 0.017805, - -0.0074661, - 0.047194, - -0.03933, - 0.027762, - 0.072323, - -0.039539, - -0.042759, - -0.016369, - 0.073563, - -0.015587, - 0.1043, - 0.099029, - -0.08115, - 0.061347, - 0.068804, - -0.10452, - 0.040156, - -0.0036899, - 0.059076, - -0.036643, - -0.041975, - -0.050219, - 0.032255, - -0.0169, - -0.024002, - 0.030773, - -0.011021, - -0.0075285, - 0.065563, - -0.019447, - 0.054214, - -0.012203, - -0.013601, - 0.0019542, - 0.0043502, - 0.0095667, - -0.010534, - 0.013173, - -0.068016, - 0.00081822, - 0.086668, - -0.060725, - -0.026046, - 0.0099897, - 0.058433, - 0.026499, - 0.049024, - 0.017446, - -0.018191, - -0.0017656, - -0.011846, - 0.011835, - 0.045521, - -0.14383, - 0.040728, - 0.032601, - -0.087759, - -0.017074, - 0.080475, - 0.040795, - -0.016048, - 0.021067, - 0.0012947, - 0.084886, - -0.012613, - 0.026761, - -0.010355, - 0.032988, - 0.018717, - -0.027517, - 0.010294, - -0.035738, - 0.010087, - -0.077028, - -0.027435, - 0.0090889, - 0.070772, - -0.028569, - 0.00036549, - 0.0094954, - 0.044781, - -0.031108, - 0.0068779, - 0.0072302, - -0.0383, - -0.062603, - -0.014761, - 0.061386, - 0.059159, - -0.012949, - 0.015387, - 0.03974, - 0.00067752, - 0.02033, - 0.017537, - 0.014785, - 0.021206, - -0.018658, - 0.062178, - -0.023369, - -0.07542, - 0.052274, - -0.024155, - 0.053699, - -0.059572, - 0.011529, - -0.063755, - 0.023338, - -0.0029687, - -0.019839, - 0.00076006, - 0.030267, - 0.0076502, - 0.01984, - 0.030999, - -0.016403, - -0.029812, - 0.077229, - -0.024635, - 0.0099267, - 0.0098892, - 0.071987, - 0.048988, - -0.063253, - 0.050331, - -0.086647, - -0.045344, - 0.039207, - -0.044504, - 0.017629, - 0.044267, - -0.035023, - 0.036999, - 0.10141, - 0.039682, - 0.04227, - 0.009407, - -0.018934, - 0.017048, - -0.01406, - 0.018172, - 0.016325, - -0.0067651, - 0.074832, - -0.0030699, - -0.0091432, - -0.0070057, - -0.028627, - 0.018188, - 0.026635, - 0.096803, - -0.081918, - -0.015221 - ], - "snoop": [ - -0.063977, - -0.094816, - -0.073552, - 0.064866, - -0.071754, - -0.00070836, - 0.036771, - -0.10812, - 0.020224, - 0.0054908, - -0.031918, - 0.018618, - -0.05543, - -0.035366, - -0.024657, - 0.043821, - 0.13478, - -0.01194, - 0.13865, - -0.025798, - 0.024571, - -0.089222, - 0.044488, - 0.063015, - -0.014959, - 0.15217, - 0.053672, - -0.049517, - -0.10194, - -0.070311, - 0.023276, - -0.14196, - -0.12404, - 0.070893, - -0.020346, - -0.057006, - 0.045278, - 0.092458, - 0.03043, - -0.077068, - -0.019364, - -0.18092, - -0.047867, - -0.024902, - 0.01061, - 0.0088654, - 0.089845, - -0.034616, - -0.032867, - -0.017734, - 0.03442, - 0.0023896, - 0.083907, - -0.11863, - -0.067838, - -0.041147, - -0.10096, - 0.045041, - 0.0085119, - 0.022392, - 0.055699, - -0.11838, - 0.071777, - -0.10388, - -0.13894, - -0.054799, - 0.067802, - -0.024654, - 0.047382, - 0.065008, - 0.088517, - 0.08965, - 0.079291, - -0.031623, - -0.022419, - -0.0084999, - 0.15176, - 0.0035604, - -0.01881, - -0.048727, - -0.0065897, - -0.05539, - -0.024176, - 0.15432, - 0.050762, - 0.051071, - -0.0069054, - -0.010513, - 0.11313, - 0.090561, - -0.056829, - 0.00082048, - -0.093916, - 0.019635, - 0.11912, - 0.020681, - 0.032263, - 0.028574, - -0.029344, - 0.11715, - 0.082185, - 0.0039607, - 0.026657, - -0.031098, - 0.031646, - -0.1136, - 0.070073, - 0.0095613, - 0.211, - 0.06305, - -0.038757, - 0.075012, - 0.088166, - 0.062126, - -0.030369, - -0.029969, - -0.08983, - 0.052924, - -0.032062, - 0.028742, - 0.084382, - 0.099315, - 0.05917, - -0.014819, - 0.08254, - -0.047352, - 0.021315, - 0.014664, - -0.057513, - 0.12512, - -0.0099411, - 0.03733, - 0.05192, - 0.030336, - 0.084227, - -0.14921, - -0.025791, - 0.086479, - -0.07394, - 0.049586, - 0.0305, - 0.029089, - 0.0085706, - 0.0062686, - -0.038259, - 0.013289, - 0.054235, - -0.037989, - 0.059014, - -0.11624, - -0.00094154, - 0.16175, - 0.041517, - 0.010435, - 0.015416, - -0.083938, - 0.031074, - 0.015646, - 0.032036, - -0.028862, - 0.04977, - 0.02558, - -0.035478, - -0.0095833, - -0.036348, - -0.061841, - 0.071216, - 0.077431, - -0.030234, - 0.041794, - -0.034721, - 0.012587, - -0.089727, - 0.051351, - -0.01706, - 0.071273, - -0.04956, - 0.021528, - 0.032244, - 0.0044092, - 0.039432, - -0.10186, - -0.040047, - -0.03697, - -0.03588, - -0.097858, - 0.0074802, - 0.12842, - 0.049429, - 0.028311, - -0.018282, - -0.010805, - -0.0060077, - 0.036683, - 0.027348, - 0.0026938, - 0.023606, - 0.091982, - -0.076447, - 0.083682, - -0.16989, - 0.10569, - -0.091771, - 0.028042, - -0.045218, - -0.083769, - -0.013872, - -0.025354, - -0.054178, - -0.060741, - 0.045633, - -0.01421, - 0.060794, - 0.025417, - 0.043272, - -0.021138, - -0.1718, - -0.061479, - 0.043397, - 0.044514, - 0.089036, - -0.031306, - 0.032478, - 0.089206, - 0.035306, - -0.00021748, - 0.052866, - 0.11656, - 0.011133, - 0.043973, - -0.087276, - -0.13845, - -0.026776, - -0.079609, - 0.1215, - -0.098504, - 0.093374, - -0.0014812, - 0.043879, - 0.010442, - 0.19203, - -0.07868, - 0.039775, - -0.11066, - -0.027042, - 0.095793, - -0.034652, - 0.044531, - -0.070852, - 0.019572, - -0.0028769, - -0.081021, - -0.16218, - -0.026058, - 0.10917, - -0.048047, - -0.10708, - -0.0053795, - -0.075976, - 0.021474, - -0.0092137, - 0.010639, - 0.0081482, - -0.056619, - -0.052479, - -0.11515, - 0.04244, - 0.098921, - -0.031389, - 0.03902, - -0.097703, - 0.11572, - -0.12281, - -0.025451, - -0.016099, - 0.011682, - 0.085436, - -0.09871, - 0.060416, - 0.060376, - 0.10674, - 0.019368, - 0.051874, - -0.078697, - -0.065365, - -0.05309, - -0.11065, - -0.041272, - -0.0063848, - -0.051098, - -0.061663, - -0.002419, - -0.079669, - 0.013897, - 0.0042891, - 0.074584, - -0.067277, - -0.0055106, - -0.077586, - 0.015608 - ], - "origins": [ - -0.0067065, - -0.077082, - 0.041689, - 0.0058815, - -0.022517, - -0.031027, - 0.032069, - -0.085511, - 0.031665, - 0.034059, - -0.040445, - -0.058104, - -0.031966, - -0.013999, - 0.00088416, - 0.011822, - 0.016008, - -0.02577, - 0.073682, - 0.072497, - 0.0091916, - 0.016295, - 0.093151, - 0.078252, - 0.0077272, - -0.010509, - -0.063597, - 0.039068, - 0.14383, - 0.01768, - -0.00033569, - -0.017794, - 0.031672, - -0.040776, - -0.0063224, - 0.059582, - -0.019714, - -0.0081478, - -0.005314, - 0.008726, - -0.00668, - -0.063728, - 0.04679, - -0.037751, - -0.014808, - 0.012821, - -0.018567, - -0.070396, - 0.025956, - -0.055843, - -0.020684, - 0.038407, - -0.0066487, - -0.037344, - -0.04562, - 0.01834, - 0.042031, - -0.019909, - -0.011491, - 0.010514, - 0.040519, - -0.017551, - 0.14233, - -0.044365, - 0.11522, - -0.042902, - -0.027461, - 0.054274, - -0.010554, - -0.0037589, - -0.023311, - -0.042381, - 0.023325, - -0.03425, - 0.037692, - 0.060328, - -0.015075, - -0.066702, - -0.0078621, - -0.030635, - 0.024271, - 0.052644, - 0.023888, - 0.074289, - -0.037023, - -0.01798, - -0.066428, - -0.02485, - -0.0085098, - 0.06667, - 0.02634, - -0.055865, - -0.047294, - 0.073946, - 0.0046235, - 0.064633, - 0.007837, - -0.035547, - -0.048676, - -0.013428, - -0.031842, - -0.03399, - 0.04505, - -0.035845, - 0.019235, - -0.04789, - -0.035545, - -0.013768, - 0.029292, - 0.052809, - -0.018366, - 0.031695, - 0.068107, - 0.02092, - -0.032697, - 0.046537, - -0.035284, - 0.043043, - -0.036039, - 0.052754, - -0.012091, - -0.096721, - 0.022519, - -0.024489, - 0.13552, - -0.0039701, - -0.039995, - -0.10622, - -0.00065742, - 0.11501, - -0.0099015, - -0.082047, - -0.0091734, - 0.000040316, - 0.032989, - -0.062653, - 0.00084429, - 0.060807, - 0.034744, - -0.037332, - 0.026599, - 0.0084666, - -0.015494, - 0.1323, - 0.07189, - -0.026029, - 0.03238, - 0.017242, - -0.094928, - -0.025739, - -0.049524, - 0.084355, - 0.0078945, - -0.015025, - 0.024129, - 0.019734, - -0.017626, - -0.01927, - -0.0045194, - 0.037667, - -0.01304, - -0.026369, - -0.067998, - -0.03068, - 0.0040331, - 0.029874, - 0.011897, - 0.020537, - 0.037763, - -0.032341, - 0.017937, - -0.024306, - -0.0020007, - -0.019401, - 0.056202, - 0.075045, - 0.039802, - -0.0079711, - -0.024606, - 0.0038009, - 0.00053134, - 0.030734, - 0.022376, - -0.0020013, - 0.036404, - -0.036921, - 0.016972, - 0.095868, - 0.029692, - -0.0095681, - 0.1133, - 0.051731, - -0.056666, - -0.033729, - 0.016809, - 0.08061, - -0.025562, - -0.022376, - -0.013254, - 0.0001933, - -0.11839, - 0.033066, - 0.019312, - -0.049562, - 0.0077624, - 0.013578, - 0.034464, - -0.037089, - -0.010966, - -0.001827, - 0.11995, - 0.041866, - 0.08418, - -0.020764, - 0.040366, - 0.030753, - -0.05386, - -0.0031196, - -0.04116, - 0.0039983, - 0.024433, - -0.084178, - 0.019103, - 0.11152, - 0.0085749, - 0.025594, - 0.049131, - 0.092106, - -0.010061, - -0.0023441, - 0.021491, - -0.048898, - -0.14321, - 0.014341, - 0.059741, - -0.002889, - 0.0033672, - 0.073884, - 0.022725, - 0.063527, - -0.037715, - -0.004754, - -0.027293, - -0.016513, - -0.033533, - -0.038766, - -0.071874, - -0.083043, - -0.081975, - -0.075195, - -0.010541, - -0.034514, - 0.01879, - -0.027668, - -0.02927, - 0.0080867, - -0.050613, - 0.062256, - -0.018226, - -0.0061468, - 0.069977, - -0.015096, - -0.00023791, - -0.0047318, - 0.071203, - -0.038859, - -0.067808, - 0.0043362, - -0.012245, - -0.058108, - 0.0032427, - 0.070536, - -0.10008, - -0.010801, - 0.092616, - -0.0068964, - 0.013534, - 0.0076488, - -0.036834, - 0.021371, - 0.047941, - -0.025557, - 0.058172, - -0.0046206, - 0.074043, - -0.015402, - -0.036596, - -0.0098647, - -0.026054, - -0.021933, - 0.0019979, - 0.054572, - -0.058548, - -0.059732, - -0.013446, - 0.0067709, - 0.062278, - 0.02339, - -0.043408, - -0.024446 - ], - "polity": [ - 0.064792, - -0.15958, - 0.012437, - -0.017273, - 0.047932, - -0.055471, - 0.0084394, - -0.080068, - 0.01584, - 0.090667, - -0.019595, - -0.058438, - 0.015695, - 0.045787, - 0.0085353, - 0.047173, - 0.095029, - -0.047572, - 0.04473, - 0.027988, - -0.0080635, - -0.033458, - 0.056499, - 0.08816, - 0.053809, - 0.056941, - 0.023523, - -0.025287, - -0.0048335, - 0.011426, - 0.00014473, - 0.02885, - -0.09264, - -0.064932, - 0.012844, - -0.00044363, - 0.010092, - 0.048681, - -0.0043999, - 0.045015, - -0.02057, - -0.15352, - -0.085653, - 0.050904, - -0.0079225, - -0.036984, - -0.042414, - -0.037465, - -0.06913, - 0.007002, - 0.0090816, - -0.02697, - -0.02978, - 0.011228, - -0.04193, - -0.023623, - 0.024289, - 0.053032, - -0.011452, - 0.024045, - 0.043372, - -0.016067, - 0.074371, - -0.0028293, - 0.071386, - -0.00068824, - -0.0013029, - 0.10265, - 0.070558, - -0.024724, - 0.045946, - -0.028697, - -0.073787, - -0.076183, - 0.040027, - -0.030594, - -0.034128, - -0.0013557, - 0.036163, - 0.062706, - 0.0069083, - 0.03511, - -0.052401, - 0.094092, - 0.02231, - -0.051828, - -0.0087586, - -0.066967, - -0.0047008, - 0.0039049, - -0.0084874, - 0.055201, - -0.088447, - 0.058994, - -0.058314, - 0.099529, - -0.0040301, - -0.056803, - 0.054711, - -0.004661, - 0.10494, - -0.016142, - 0.086127, - -0.065824, - -0.049067, - -0.096769, - 0.10536, - -0.010059, - -0.0060234, - -0.074439, - -0.0091689, - 0.038475, - 0.004432, - 0.0016239, - -0.012169, - 0.012819, - -0.0040483, - 0.038518, - -0.020549, - 0.12188, - 0.043739, - -0.062233, - 0.083821, - -0.033939, - 0.06173, - -0.0037807, - -0.012497, - -0.092115, - -0.031674, - 0.14943, - -0.023602, - -0.038396, - 0.098517, - 0.015273, - -0.042304, - 0.041618, - -0.022681, - 0.054479, - 0.039896, - -0.046006, - 0.0042834, - -0.095207, - -0.040505, - 0.005964, - 0.063613, - -0.043639, - 0.065216, - 0.047456, - 0.0095519, - -0.0001563, - 0.12047, - 0.10136, - 0.066407, - -0.02508, - 0.037616, - 0.069592, - 0.013189, - -0.040638, - -0.069402, - -0.11494, - -0.015287, - 0.0032744, - -0.10734, - 0.023231, - -0.084277, - 0.076765, - 0.08197, - -0.0027648, - -0.017897, - 0.0025099, - -0.013419, - 0.023894, - -0.092025, - 0.012085, - -0.038279, - 0.049873, - 0.028611, - 0.091791, - 0.010946, - -0.089731, - -0.03922, - 0.047652, - 0.047497, - 0.051555, - 0.073427, - -0.07185, - 0.049257, - 0.14544, - 0.026833, - -0.060306, - 0.072067, - 0.084462, - 0.022056, - -0.0063586, - 0.0066596, - -0.078065, - -0.062076, - 0.069685, - -0.043826, - 0.048943, - -0.15562, - -0.035157, - 0.0026203, - -0.0087428, - -0.089713, - -0.049305, - 0.029052, - 0.046322, - 0.063666, - 0.0057322, - 0.081676, - -0.043107, - -0.037857, - 0.010868, - 0.0035152, - 0.055482, - 0.020066, - 0.0069761, - 0.029423, - 0.093312, - -0.06312, - 0.013209, - -0.10035, - 0.10231, - 0.031328, - -0.0066421, - 0.038496, - 0.028499, - -0.060771, - -0.020817, - -0.014582, - -0.042578, - -0.085757, - 0.028469, - 0.058616, - 0.033346, - 0.01188, - -0.00089338, - -0.021831, - -0.031345, - 0.041575, - 0.042795, - -0.034911, - 0.097072, - 0.026417, - -0.089664, - -0.029909, - -0.074621, - -0.034866, - -0.10137, - 0.043327, - -0.02138, - -0.034622, - 0.0017626, - -0.012926, - 0.055693, - -0.071199, - 0.042741, - 0.011907, - -0.020759, - -0.016449, - -0.035603, - 0.052807, - -0.036354, - 0.051037, - -0.028339, - 0.017462, - 0.029004, - -0.074299, - 0.050556, - 0.0046846, - 0.078287, - -0.094224, - -0.053213, - 0.08454, - -0.030212, - 0.0082052, - 0.017454, - -0.093296, - 0.047914, - 0.12708, - -0.015574, - -0.02582, - 0.0075628, - -0.044405, - 0.040641, - 0.042943, - -0.045295, - -0.029675, - 0.092198, - 0.018551, - -0.028442, - 0.049939, - -0.057969, - 0.0089528, - 0.019361, - 0.026803, - -0.015391, - -0.073924, - 0.0074546 - ], - "industry": [ - -0.029296, - -0.040975, - 0.0027918, - 0.01508, - -0.058171, - -0.021485, - 0.024197, - -0.097351, - 0.062445, - 0.017348, - -0.014576, - -0.065281, - -0.048417, - 0.011344, - 0.012104, - 0.049691, - 0.10555, - 0.029821, - 0.057052, - 0.022276, - 0.043343, - 0.01571, - 0.018003, - 0.078129, - -0.023729, - -0.044505, - 0.0081027, - 0.01243, - -0.0016652, - -0.0014399, - -0.022103, - -0.015819, - 0.0048306, - -0.025376, - 0.042846, - 0.066633, - -0.0033322, - 0.013281, - 0.0055181, - 0.058198, - -0.039015, - -0.091662, - -0.022606, - -0.0055081, - -0.0074289, - -0.0025329, - -0.0061738, - 0.0059723, - -0.019453, - -0.011767, - 0.014742, - -0.010436, - 0.037563, - 0.0097523, - -0.034124, - -0.0025386, - 0.0043765, - 0.062504, - -0.005362, - -0.0049548, - -0.002331, - 0.034049, - 0.081382, - 0.0072071, - 0.044078, - 0.016632, - -0.019781, - -0.047721, - 0.06135, - -0.015208, - 0.011889, - -0.028169, - 0.028801, - 0.010803, - 0.015691, - -0.038624, - -0.034568, - 0.015852, - 0.062284, - -0.079464, - -0.026286, - 0.033866, - -0.074378, - 0.090894, - -0.037965, - -0.0038668, - -0.024048, - -0.035814, - -0.033709, - -0.046628, - 0.0094427, - 0.077176, - -0.079748, - -0.010808, - -0.028156, - 0.062461, - 0.013472, - -0.028991, - 0.054677, - 0.019254, - -0.036559, - -0.03056, - 0.0059354, - -0.0083827, - 0.031178, - -0.10011, - 0.028306, - 0.040753, - 0.032865, - 0.032315, - -0.003638, - 0.1266, - 0.044502, - 0.043123, - -0.02081, - -0.045909, - -0.0036021, - -0.0046429, - -0.053986, - 0.0059767, - -0.062992, - 0.018183, - -0.023308, - -0.011646, - 0.04843, - 0.031152, - -0.071967, - -0.091621, - -0.00089935, - 0.10254, - 0.046639, - 0.046389, - -0.023751, - -0.050348, - 0.013225, - -0.030446, - -0.028499, - 0.030674, - -0.015382, - 0.053762, - 0.036549, - -0.0060359, - 0.012539, - 0.036984, - -0.021972, - -0.022139, - 0.0006879, - -0.096022, - 0.012633, - -0.036329, - 0.065586, - 0.050305, - 0.0058731, - -0.057778, - 0.021522, - 0.0041475, - 0.017811, - 0.021881, - -0.025887, - -0.014983, - 0.03876, - -0.02919, - -0.033733, - 0.029577, - 0.047865, - 0.013086, - -0.053431, - -0.010318, - 0.0063066, - 0.0061084, - 0.021034, - 0.060387, - -0.018032, - 0.041237, - 0.010419, - 0.051656, - -0.082308, - 0.077787, - -0.029662, - 0.036846, - -0.087133, - -0.0017225, - 0.0041669, - -0.00097077, - -0.01076, - -0.020662, - 0.0089329, - 0.074338, - -0.052483, - -0.010618, - -0.10113, - 0.093424, - -0.0014462, - 0.00065055, - 0.031737, - 0.017396, - -0.06251, - -0.028261, - -0.0099884, - -0.035423, - -0.14581, - -0.0088301, - 0.0039728, - -0.027091, - 0.040346, - 0.019957, - 0.0042632, - 0.001303, - -0.0055272, - -0.00888, - 0.090983, - 0.0039863, - 0.016855, - 0.0058323, - -0.038528, - 0.045627, - 0.022705, - -0.010612, - 0.058611, - -0.034463, - -0.0061816, - -0.09983, - -0.0081036, - 0.075234, - -0.040953, - -0.017841, - 0.014051, - 0.037767, - -0.0092985, - -0.021362, - 0.017927, - -0.026485, - -0.065149, - 0.037456, - 0.02506, - -0.021335, - 0.0017181, - 0.010685, - 0.025399, - -0.056657, - 0.048594, - 0.026425, - 0.019695, - 0.014615, - 0.018291, - -0.022148, - -0.011452, - -0.033889, - 0.051805, - 0.0059434, - 0.053752, - -0.019278, - -0.0054107, - -0.012611, - -0.013576, - 0.043513, - -0.02269, - 0.068876, - 0.0066352, - 0.035418, - 0.024165, - 0.017814, - 0.020911, - -0.0013213, - 0.0056846, - 0.037815, - 0.0077726, - 0.045944, - 0.004295, - 0.00054833, - -0.010682, - 0.061216, - -0.12121, - -0.020548, - 0.062072, - -0.026127, - 0.04241, - 0.097393, - -0.029322, - 0.021369, - 0.01675, - 0.066344, - 0.021421, - 0.0039359, - -0.01346, - -0.0054938, - 0.0041183, - -0.065269, - 0.024055, - -0.020572, - 0.0034197, - 0.0474, - -0.02243, - -0.0093963, - -0.016322, - -0.010667, - -0.014841, - -0.0016753, - 0.013682, - -0.030203 - ], - "citizens": [ - 0.011611, - -0.021788, - 0.031818, - 0.030586, - -0.061139, - 0.01079, - -0.0052192, - -0.075498, - 0.082053, - 0.066324, - 0.030865, - -0.040365, - -0.0015156, - -0.017191, - -0.00031011, - 0.083546, - 0.039486, - -0.0035855, - 0.062131, - 0.030769, - 0.016313, - -0.086552, - 0.011354, - 0.053815, - -0.0089829, - 0.004389, - -0.0011434, - -0.0031769, - 0.06259, - -0.012962, - -0.016733, - -0.060177, - -0.030038, - 0.034085, - -0.0096977, - 0.081214, - 0.012286, - 0.012353, - -0.058251, - -0.061831, - -0.016216, - -0.054188, - -0.026671, - -0.0012862, - 0.037809, - -0.027904, - -0.04957, - 0.032239, - -0.031964, - 0.017073, - -0.034643, - -0.0097594, - -0.030026, - -0.012798, - -0.034642, - 0.039336, - 0.026, - -0.01223, - -0.017766, - -0.06438, - 0.0095754, - 0.020231, - 0.092416, - 0.050672, - 0.016184, - -0.032513, - -0.04445, - -0.015431, - 0.058001, - 0.015771, - 0.018448, - -0.025119, - 0.12533, - 0.020869, - 0.019007, - 0.0096572, - 0.006714, - -0.020009, - -0.024334, - -0.043863, - -0.0097444, - 0.080441, - 0.060089, - 0.081016, - 0.0049261, - 0.0047895, - -0.014327, - -0.06024, - -0.0026049, - 0.025702, - -0.017403, - 0.043243, - -0.082222, - -0.010325, - -0.03143, - 0.059068, - 0.049812, - -0.0021876, - 0.043255, - 0.017604, - 0.054784, - -0.060953, - 0.0074594, - -0.023876, - 0.03518, - -0.065744, - 0.051409, - -0.010018, - 0.025139, - -0.0483, - -0.020124, - 0.12735, - 0.069065, - 0.0015208, - 0.0053227, - 0.0092898, - -0.015081, - -0.051942, - -0.030619, - 0.043218, - -0.035667, - -0.022335, - -0.0013313, - -0.037876, - 0.09355, - -0.0010901, - 0.039404, - -0.091825, - -0.03192, - 0.027198, - -0.0029978, - 0.15306, - 0.077195, - 0.037382, - 0.06573, - 0.015906, - 0.042487, - 0.059443, - -0.061847, - -0.00039914, - 0.046882, - -0.095023, - -0.046374, - 0.018272, - 0.031752, - 0.0035191, - -0.010774, - -0.0046359, - 0.00745, - -0.035967, - 0.082182, - 0.067601, - -0.0019425, - -0.0042571, - 0.028483, - -0.024274, - -0.024212, - 0.018951, - -0.010794, - -0.087438, - 0.064489, - 0.0076523, - 0.067419, - 0.040701, - -0.013314, - 0.044183, - 0.068848, - -0.0072785, - 0.046892, - 0.021797, - -0.011034, - -0.019851, - -0.0059291, - 0.010142, - -0.04941, - 0.042779, - 0.04272, - 0.025939, - 0.015842, - 0.0031579, - 0.015558, - 0.028758, - 0.014732, - 0.03796, - -0.024253, - -0.10414, - -0.011349, - 0.097847, - 0.064984, - -0.057644, - 0.018043, - 0.073818, - -0.10011, - -0.00016417, - 0.060558, - -0.0017319, - 0.033814, - -0.013196, - -0.027008, - -0.028923, - -0.12514, - 0.084976, - 0.0089119, - -0.026145, - -0.041523, - -0.04752, - 0.0081762, - 0.039355, - -0.0406, - -0.043425, - 0.028959, - -0.049789, - 0.041362, - 0.079686, - -0.099077, - -0.021289, - 0.03634, - -0.017578, - -0.014519, - 0.028412, - 0.0075575, - -0.016594, - -0.019987, - 0.090967, - 0.033177, - 0.047412, - -0.0091711, - 0.037125, - -0.0024579, - -0.06611, - -0.03197, - 0.042828, - -0.084706, - -0.017561, - 0.046107, - -0.01022, - -0.018653, - 0.027157, - -0.0014892, - -0.075378, - -0.00022559, - -0.017056, - 0.031862, - 0.011094, - 0.036055, - -0.043478, - -0.0095011, - -0.084884, - -0.040689, - -0.072624, - 0.064983, - 0.010981, - -0.012292, - -0.046098, - 0.022268, - -0.015106, - -0.040542, - 0.046731, - 0.0098313, - -0.0053393, - -0.093039, - 0.044912, - 0.0073352, - 0.0055197, - 0.0068161, - -0.0027763, - 0.043821, - 0.032901, - 0.0024682, - 0.030631, - -0.038202, - 0.063984, - -0.11683, - -0.033376, - 0.017656, - -0.019597, - 0.022022, - 0.018625, - -0.00080517, - -0.045781, - 0.0030095, - -0.027039, - -0.058491, - -0.015766, - -0.004181, - 0.051478, - 0.000041174, - -0.11191, - 0.039664, - 0.045174, - 0.022129, - 0.032787, - -0.083517, - 0.034827, - -0.014004, - 0.034167, - -0.036739, - 0.002999, - -0.037231, - 0.018994 - ], - "ideology": [ - 0.046216, - -0.011413, - 0.013821, - -0.013288, - -0.048614, - -0.066334, - 0.02414, - -0.069806, - 0.0030598, - 0.015341, - 0.017802, - -0.044626, - 0.0021246, - -0.0054149, - -0.012843, - -0.058164, - 0.071356, - -0.022086, - 0.036439, - 0.074095, - -0.055563, - 0.061643, - 0.055561, - 0.057692, - -0.051888, - 0.048138, - 0.018158, - -0.035777, - 0.03151, - -0.0039288, - 0.030441, - -0.019051, - -0.030582, - -0.049465, - -0.025892, - 0.026361, - -0.010109, - 0.011729, - 0.032855, - 0.010415, - -0.040856, - -0.11403, - -0.015721, - 0.040764, - 0.051833, - -0.0033361, - 0.0028908, - -0.031943, - -0.02126, - -0.056011, - 0.0094606, - 0.027805, - -0.0094407, - 0.012296, - -0.013242, - 0.058635, - 0.076491, - 0.033481, - -0.047109, - 0.049756, - -0.000015759, - -0.027007, - 0.11857, - -0.03852, - 0.028051, - 0.02875, - 0.00094693, - 0.033429, - 0.039699, - 0.022152, - 0.05988, - 0.0034504, - -0.032109, - -0.00078315, - -0.0040011, - 0.0020777, - 0.017552, - -0.000477, - -0.062034, - 0.050788, - -0.017152, - 0.01008, - -0.065942, - 0.11558, - -0.023396, - -0.068562, - -0.0080331, - 0.012836, - -0.0042613, - 0.054098, - 0.052293, - 0.02922, - -0.087982, - 0.0061002, - 0.054258, - 0.056228, - -0.02338, - -0.093229, - 0.034594, - 0.011603, - 0.056163, - -0.020963, - 0.029745, - -0.041297, - -0.03816, - -0.05339, - 0.062208, - 0.024893, - -0.05032, - 0.0036783, - -0.017716, - 0.081373, - 0.046888, - -0.037917, - -0.044447, - -0.004552, - 0.032236, - -0.056234, - -0.034817, - 0.082038, - -0.0082209, - -0.049703, - 0.019461, - -0.066534, - 0.059983, - -0.0013049, - -0.048995, - -0.035216, - 0.021518, - 0.14896, - -0.0040867, - -0.079195, - 0.12681, - 0.029525, - -0.0058077, - 0.040744, - -0.015115, - 0.056009, - 0.014283, - -0.042353, - 0.0018256, - -0.060567, - 0.036524, - 0.056464, - -0.022038, - -0.071085, - 0.0070479, - 0.058124, - 0.0041873, - -0.024611, - 0.039863, - 0.042091, - -0.034853, - -0.032283, - -0.0058024, - 0.091148, - 0.0055687, - -0.014523, - 0.012667, - -0.0044256, - 0.033843, - -0.051975, - -0.11419, - -0.026273, - -0.010763, - -0.0032555, - -0.0035008, - 0.039615, - -0.007536, - -0.043384, - -0.03535, - -0.021018, - -0.047984, - 0.0080404, - 0.0027928, - 0.066154, - -0.035906, - 0.03788, - 0.0021662, - -0.035848, - -0.050076, - 0.020103, - 0.020599, - 0.011771, - 0.029905, - -0.06438, - -0.00044813, - 0.10214, - 0.0081329, - -0.016507, - 0.045717, - 0.10055, - -0.029065, - 0.020572, - 0.018552, - -0.010658, - 0.0061098, - 0.010558, - -0.038608, - 0.011208, - -0.13241, - 0.03125, - 0.018004, - -0.068006, - -0.044593, - -0.0039199, - 0.038978, - -0.0087322, - 0.02467, - -0.010776, - 0.10777, - 0.017221, - -0.0046384, - 0.0007518, - 0.026712, - 0.06473, - 0.0092951, - -0.0019845, - -0.013373, - -0.033195, - -0.067824, - 0.0071138, - -0.036495, - 0.077037, - 0.021685, - 0.00015051, - 0.062732, - 0.071903, - 0.025801, - -0.044269, - 0.027821, - -0.047048, - -0.072817, - -0.033092, - 0.017472, - 0.039867, - -0.0032206, - -0.045286, - 0.012768, - -0.014201, - 0.04306, - 0.034329, - 0.00074799, - 0.029478, - -0.00071187, - 0.0037468, - -0.062942, - -0.070256, - -0.017538, - 0.0418, - 0.035855, - -0.021996, - -0.038827, - 0.026602, - 0.043394, - 0.01038, - -0.0072281, - 0.01904, - 0.0098095, - -0.016692, - 0.034371, - 0.048833, - 0.035567, - 0.030777, - 0.064833, - 0.016492, - -0.0084753, - 0.035366, - 0.020727, - 0.031716, - 0.020501, - 0.076099, - -0.11174, - -0.047601, - 0.080893, - -0.041634, - -0.017913, - 0.056093, - -0.085326, - -0.0041954, - 0.088949, - 0.003426, - 0.054552, - 0.04345, - 0.0053614, - 0.010034, - 0.035513, - 0.035479, - 0.02373, - -0.0087046, - -0.041376, - -0.016239, - 0.0066946, - -0.015988, - -0.01546, - 0.0015756, - 0.01464, - 0.018631, - -0.015682, - 0.018867 - ], - "higher-education": [ - 0.00761, - -0.034789, - -0.0022561, - 0.0096971, - 0.0054918, - -0.014479, - -0.0080327, - -0.059928, - 0.02113, - 0.012136, - -0.014548, - -0.011677, - -0.0082428, - 0.042249, - -0.017321, - 0.026168, - 0.061276, - -0.0018916, - 0.018682, - 0.01084, - 0.0091857, - 0.031793, - 0.014753, - 0.044241, - -0.014867, - -0.0065217, - 0.03805, - 0.039959, - -0.0030691, - 0.0064636, - 0.024753, - -0.01191, - -0.032249, - -0.072456, - 0.029775, - 0.035902, - 0.035338, - 0.010626, - -0.013443, - 0.022072, - -0.012308, - -0.12641, - -0.03729, - 0.060665, - 0.024806, - 0.010585, - -0.024372, - 0.00017302, - -0.0040349, - 0.010649, - -0.0068516, - -0.00091236, - -0.014572, - 0.0097921, - 0.039402, - 0.018919, - -0.026826, - 0.0054724, - -0.011551, - 0.0056505, - 0.015529, - 0.035151, - 0.024322, - 0.053951, - 0.014176, - -0.036903, - -0.046229, - -0.028372, - 0.015663, - -0.0043484, - -0.0070625, - -0.022765, - 0.035775, - 0.0018577, - 0.005855, - -0.02148, - -0.0089467, - 0.036469, - 0.035566, - 0.0089219, - -0.0072418, - 0.012984, - -0.022113, - -0.0060139, - -0.034694, - 0.0043202, - -0.0215, - 0.0035131, - -0.0071312, - -0.0067594, - 0.026822, - 0.025475, - -0.068529, - 0.03406, - -0.038481, - 0.035376, - 0.01848, - -0.022417, - -0.022051, - 0.042023, - 0.0081199, - -0.015162, - 0.020801, - -0.019165, - 0.014923, - -0.023703, - 0.0033425, - -0.0097418, - -0.015494, - 0.039572, - -0.022209, - 0.064744, - 0.02111, - 0.017335, - -0.0038156, - -0.0033697, - -0.0014059, - -0.004538, - -0.019809, - 0.015147, - 0.0051746, - -0.015207, - 0.010804, - -0.011663, - 0.060895, - 0.013913, - -0.054862, - -0.058182, - -0.0065057, - 0.040687, - -0.011448, - 0.039229, - -0.0029784, - -0.015923, - 0.0073983, - 0.027353, - -0.0063531, - 0.01838, - -0.0019845, - 0.0023635, - 0.031211, - -0.035986, - -0.01309, - 0.0074109, - -0.01139, - -0.010538, - -0.007151, - 0.018687, - -0.043456, - 0.014246, - 0.06668, - 0.074283, - 0.0026879, - -0.016838, - 0.041282, - -0.0087464, - -0.0058148, - 0.052988, - 0.0032514, - -0.0071533, - 0.024024, - 0.016729, - -0.030916, - -0.018943, - -0.004715, - -0.0070895, - 0.0072072, - -0.0012821, - 0.00038437, - -0.036126, - -0.010178, - -0.015985, - -0.036182, - 0.02776, - -0.024298, - 0.010477, - -0.036161, - 0.013804, - -0.031662, - 0.010053, - -0.027734, - 0.019854, - -0.036812, - 0.019168, - -0.011183, - -0.030681, - -0.0081902, - 0.062809, - 0.011169, - 0.022653, - -0.029743, - 0.058292, - 0.015163, - -0.016243, - -0.011139, - -0.0022399, - 0.013422, - -0.013631, - 0.014263, - -0.054925, - -0.10588, - -0.014724, - 0.0076828, - 0.00090293, - -0.022752, - 0.0205, - -0.0060584, - -0.0055694, - -0.0033399, - 0.0067486, - 0.1009, - -0.019452, - 0.024524, - -0.011513, - -0.03148, - -0.0049026, - 0.01529, - -0.030034, - 0.00092566, - -0.018844, - -0.029229, - -0.00089021, - 0.024577, - 0.07003, - -0.016925, - -0.041371, - 0.019926, - 0.020518, - 0.034686, - -0.030983, - 0.026628, - -0.0158, - -0.012299, - 0.0041019, - 0.018521, - -0.0027718, - 0.01854, - -0.012602, - -0.036191, - 0.011909, - 0.017116, - -0.029814, - 0.02049, - -0.0016368, - -0.058199, - 0.0097269, - 0.00067198, - 0.0035796, - 0.01578, - 0.025402, - 0.0012441, - 0.0079372, - -0.03605, - -0.055842, - -0.026558, - 0.036014, - -0.061855, - 0.019663, - 0.016157, - 0.0022688, - 0.0027794, - -0.027138, - 0.016062, - -0.025789, - -0.0064976, - 0.0451, - 0.0084543, - 0.048694, - 0.009373, - 0.017278, - -0.025212, - 0.016738, - -0.065578, - -0.0079315, - 0.018811, - -0.037865, - -0.035506, - 0.031468, - 0.022162, - 0.027533, - 0.094849, - -0.0068739, - 0.026085, - 0.033334, - -0.034808, - -0.002959, - -0.017959, - -0.021953, - -0.030396, - 0.0075682, - -0.026909, - -0.0016642, - 0.014493, - 0.0088529, - -0.0039146, - 0.0031104, - -0.0099437, - 0.010773, - 0.0051276, - -0.025731 - ], - "careerist": [ - 0.013272, - 0.012513, - 0.0042396, - -0.024592, - -0.049995, - -0.042179, - -0.035366, - -0.096167, - 0.018342, - -0.033064, - 0.011176, - 0.065158, - -0.032611, - 0.051632, - -0.069204, - 0.014412, - 0.088436, - 0.04095, - 0.024291, - -0.011217, - 0.013758, - 0.05545, - -0.002466, - 0.037607, - -0.032481, - 0.0030413, - -0.0026506, - 0.011714, - -0.03172, - -0.027967, - -0.019906, - -0.062557, - -0.087011, - -0.068571, - 0.015525, - 0.039872, - -0.014875, - 0.03488, - 0.061391, - 0.024376, - -0.014007, - -0.19473, - -0.0044157, - 0.0093612, - 0.025629, - -0.066849, - 0.034429, - -0.068725, - 0.0021962, - -0.038427, - -0.0042482, - 0.036566, - 0.0045362, - 0.029121, - 0.059182, - -0.013092, - -0.05994, - 0.069257, - -0.10308, - 0.0077886, - 0.027119, - 0.014612, - 0.15807, - 0.0092426, - 0.0038224, - 0.025351, - -0.014805, - -0.00068204, - -0.0081372, - -0.0098177, - 0.025893, - 0.033497, - -0.03599, - 0.0040306, - 0.018389, - 0.016414, - -0.012244, - -0.03852, - 0.04822, - 0.035294, - 0.0027967, - 0.0085517, - -0.012809, - 0.13167, - -0.00078151, - -0.047511, - 0.028757, - 0.097515, - -0.046961, - 0.0037788, - 0.0038579, - 0.052936, - -0.14763, - 0.085366, - 0.053017, - 0.073297, - -0.048952, - -0.041495, - -0.0082512, - 0.056218, - 0.0097372, - 0.025805, - 0.021344, - 0.025408, - -0.031828, - -0.031108, - 0.07997, - -0.025381, - 0.007846, - 0.060511, - -0.023089, - -0.060887, - 0.038122, - -0.038581, - 0.0050444, - -0.0064004, - 0.0036881, - -0.0086648, - -0.032993, - 0.033089, - 0.029473, - -0.09327, - -0.0029637, - -0.066258, - 0.17444, - -0.037032, - 0.0095168, - -0.024179, - 0.032324, - 0.09291, - -0.054612, - 0.039796, - 0.090438, - 0.0084576, - -0.044865, - -0.0050952, - -0.026646, - 0.072599, - -0.034071, - -0.025964, - -0.011359, - -0.053665, - -0.0067373, - -0.014681, - -0.02721, - -0.024027, - 0.0031052, - 0.0071885, - -0.0077664, - -0.011926, - 0.098579, - 0.065912, - -0.041083, - 0.0011007, - -0.011606, - -0.021616, - -0.018871, - 0.057258, - 0.0045954, - -0.098962, - 0.097038, - 0.024817, - -0.10489, - -0.01413, - -0.010386, - 0.025722, - -0.045674, - 0.052044, - -0.030175, - 0.025559, - -0.031291, - 0.032749, - -0.020071, - -0.0024854, - 0.043444, - 0.023581, - -0.0022858, - 0.053995, - 0.037674, - -0.02603, - -0.066915, - -0.0079752, - -0.036676, - -0.023937, - 0.019389, - -0.12699, - 0.0024014, - 0.086673, - 0.0007061, - 0.073202, - 0.0070535, - 0.069463, - -0.046383, - 0.025215, - -0.0098803, - -0.0039132, - 0.000022281, - 0.023344, - 0.014864, - 0.035676, - -0.125, - 0.095355, - 0.02576, - -0.054173, - -0.068152, - 0.0047148, - -0.019231, - -0.030042, - -0.025794, - -0.043843, - 0.11645, - -0.0085746, - 0.043518, - 0.0089908, - 0.016779, - 0.031103, - -0.03805, - -0.054501, - 0.0012569, - -0.021037, - -0.073385, - 0.0036761, - -0.054538, - 0.09708, - 0.031777, - 0.015442, - 0.085918, - 0.077688, - 0.0093898, - -0.018234, - 0.0091111, - 0.021064, - 0.013723, - 0.021944, - 0.000044378, - 0.012624, - 0.04452, - -0.12917, - -0.03592, - -0.010014, - 0.044032, - 0.057031, - 0.016759, - 0.10002, - -0.041168, - -0.031134, - -0.080338, - -0.087601, - 0.0047207, - 0.030441, - -0.024408, - 0.053668, - -0.010108, - -0.015239, - 0.081784, - -0.0028163, - -0.0058832, - 0.0047365, - 0.12804, - 0.027448, - -0.01498, - 0.02372, - 0.0050839, - -0.044619, - 0.007303, - 0.042601, - -0.059443, - -0.049404, - -0.042199, - 0.0088702, - -0.036299, - 0.065781, - -0.065376, - -0.058514, - 0.11143, - -0.053002, - 0.055716, - 0.04192, - 0.036477, - 0.011418, - 0.072153, - 0.054235, - 0.054532, - -0.0159, - -0.011266, - 0.03138, - -0.0076593, - -0.072396, - 0.010102, - -0.055598, - 0.02063, - -0.013209, - 0.03428, - 0.040777, - -0.033507, - 0.067898, - -0.07221, - 0.059884, - -0.012389, - -0.039766 - ], - "militarization": [ - 0.026972, - -0.0023419, - 0.0096251, - -0.015058, - -0.019075, - 0.053294, - 0.035094, - -0.059079, - 0.038447, - 0.051522, - 0.020503, - -0.046063, - -0.021189, - 0.050031, - -0.0085819, - -0.0087692, - 0.047866, - 0.0093969, - 0.0022535, - 0.0059901, - 0.03799, - -0.060105, - -0.011918, - 0.039359, - -0.019443, - 0.036601, - 0.0072809, - -0.012176, - 0.018776, - 0.023396, - 0.013412, - -0.042337, - -0.0071583, - -0.044051, - -0.015633, - 0.021102, - 0.016246, - 0.048622, - 0.028838, - -0.014772, - -0.0067135, - -0.074608, - -0.0072025, - 0.013534, - 0.026486, - -0.019212, - 0.0375, - -0.016793, - -0.031226, - -0.018418, - 0.023315, - 0.0064268, - -0.006966, - -0.0037903, - -0.0046072, - 0.011693, - -0.0088844, - -0.011232, - -0.03006, - 0.051946, - 0.017106, - 0.0035461, - -0.012006, - -0.020702, - 0.016199, - -0.050163, - 0.043043, - -0.043688, - 0.070797, - 0.011495, - 0.0044633, - -0.040255, - -0.021702, - -0.027654, - 0.026587, - -0.047796, - 0.04957, - 0.0047443, - 0.023919, - -0.013248, - 0.010132, - -0.0001003, - -0.075379, - 0.041984, - 0.01482, - 0.0050116, - -0.00079107, - -0.011991, - -0.0092516, - 0.034163, - -0.024423, - 0.013834, - -0.047679, - 0.0098292, - 0.010129, - 0.030457, - -0.04038, - -0.095079, - -0.02534, - -0.0033624, - 0.0073784, - -0.052352, - 0.045615, - -0.071387, - 0.008253, - -0.021964, - 0.016865, - -0.0032323, - -0.036831, - -0.00072715, - 0.0029946, - 0.032385, - 0.031747, - 0.0044207, - 0.018937, - 0.017376, - -0.0050966, - 0.0014663, - -0.024015, - 0.026405, - -0.049965, - -0.019252, - -0.020056, - 0.037279, - 0.03752, - 0.040706, - 0.0054953, - -0.068193, - 0.015774, - 0.078251, - -0.0029706, - -0.016161, - 0.040864, - 0.035888, - 0.050489, - -0.031809, - -0.0016517, - 0.047063, - -0.026715, - 0.026884, - 0.011208, - -0.034005, - 0.0036653, - 0.051099, - -0.025712, - 0.015213, - 0.0083908, - 0.062733, - 0.019303, - -0.0093789, - 0.051897, - 0.041139, - -0.017319, - -0.041772, - 0.0087036, - 0.04863, - -0.01211, - 0.030614, - 0.0064617, - -0.01119, - 0.043247, - -0.011907, - -0.087292, - -0.003043, - -0.065647, - 0.018091, - 0.019559, - 0.029042, - 0.046038, - -0.049243, - 0.038082, - -0.031149, - -0.036377, - -0.04345, - -0.019919, - 0.03204, - -0.057295, - 0.0075956, - 0.021853, - 0.013206, - -0.037898, - 0.05041, - 0.034827, - 0.063903, - 0.012455, - -0.016401, - 0.012728, - 0.076889, - 0.016592, - -0.017849, - 0.041172, - 0.028095, - -0.014071, - -0.035491, - 0.0025153, - 0.008349, - -0.0014334, - 0.0083763, - -0.024668, - 0.029834, - -0.1171, - -0.02899, - 0.0087661, - 0.014778, - 0.014814, - -0.027217, - 0.0097693, - 0.038407, - 0.037415, - -0.0073183, - 0.050154, - 0.013071, - 0.0065367, - 0.0052416, - 0.029365, - 0.014694, - 0.03497, - -0.0022371, - 0.026701, - -0.05475, - -0.014079, - -0.039753, - -0.04188, - 0.073425, - -0.0060939, - 0.023499, - -0.030627, - 0.033741, - 0.0024911, - -0.049933, - -0.043336, - -0.030575, - -0.03193, - -0.046516, - 0.033255, - -0.013944, - -0.018204, - 0.0051557, - 0.015667, - -0.073802, - 0.020802, - 0.011155, - 0.0063039, - -0.034895, - -0.024773, - 0.0011085, - -0.0030836, - -0.04048, - 0.034213, - 0.00051412, - 0.020937, - -0.034392, - -0.029686, - -0.002535, - 0.0037447, - -0.0088151, - 0.029729, - 0.030749, - 0.069622, - -0.028585, - -0.019687, - -0.01479, - 0.015295, - -0.018481, - 0.029934, - -0.013181, - 0.030062, - 0.027041, - 0.00046866, - -0.024132, - -0.036803, - 0.047338, - -0.061658, - -0.018283, - -0.02202, - -0.040354, - -0.043324, - 0.0080356, - -0.0041103, - -0.0099239, - 0.067175, - 0.0070004, - -0.0076891, - 0.013474, - 0.006859, - 0.015171, - -0.020054, - 0.029124, - -0.014103, - -0.031421, - -0.049531, - -0.011174, - -0.0056228, - 0.010023, - -0.034971, - 0.024645, - 0.0025689, - 0.021969, - -0.021605, - 0.0051483 - ], - "policymaking": [ - 0.00098696, - -0.091979, - -0.053745, - 0.05125, - -0.01014, - -0.051499, - -0.042899, - -0.056827, - -0.020492, - 0.040217, - 0.011256, - -0.047206, - -0.03067, - 0.0093352, - -0.015262, - 0.039407, - 0.034986, - 0.0028638, - 0.034559, - 0.012667, - -0.019571, - 0.03711, - 0.026466, - 0.059115, - -0.037808, - 0.011746, - -0.014267, - -0.0044973, - -0.040617, - -0.042856, - 0.0101, - -0.072831, - -0.010036, - -0.084455, - 0.047886, - 0.048819, - 0.00003902, - 0.0048865, - 0.018451, - -0.019913, - -0.032523, - -0.057264, - -0.0354, - 0.007103, - -0.017398, - -0.014545, - -0.039756, - 0.015882, - -0.044178, - -0.0073201, - -0.022479, - 0.0126, - 0.030254, - 0.010846, - -0.064425, - -0.017158, - 0.02692, - 0.04681, - 0.0075422, - 0.037401, - -0.013746, - 0.010002, - 0.030672, - 0.0085202, - -0.0012134, - -0.0068128, - -0.041163, - 0.018267, - 0.0094516, - 0.043103, - 0.025738, - 0.015675, - 0.036183, - -0.027084, - 0.014548, - 0.025879, - -0.026316, - 0.0394, - 0.035519, - -0.023712, - -0.027236, - 0.0068718, - -0.01788, - 0.04649, - 0.0027172, - 0.033296, - -0.0032459, - 0.01041, - 0.09374, - 0.071333, - 0.029177, - 0.079107, - -0.062517, - -0.0017282, - 0.01136, - 0.017474, - 0.040628, - -0.015004, - 0.001443, - 0.0049319, - 0.017915, - -0.080878, - -0.011983, - -0.021852, - 0.039361, - -0.078885, - 0.043737, - -0.041786, - -0.011165, - -0.039015, - -0.02638, - 0.053851, - -0.017792, - 0.010498, - -0.044877, - -0.0058631, - 0.027665, - -0.020113, - -0.048139, - 0.037193, - -0.011296, - -0.04255, - 0.055331, - 0.040059, - 0.015854, - -0.031023, - 0.011238, - -0.06086, - 0.016022, - 0.13446, - -0.034885, - 0.0041083, - 0.054673, - 0.046229, - -0.02924, - -0.025153, - -0.047892, - 0.038575, - 0.011051, - 0.019072, - 0.036686, - -0.080782, - 0.0014731, - 0.025384, - -0.00026706, - -0.080086, - 0.0011912, - 0.042901, - 0.023228, - -0.0063536, - 0.058161, - 0.032388, - -0.0026346, - -0.072052, - -0.0017855, - 0.032141, - 0.0018097, - -0.0059408, - -0.0052624, - 0.042425, - 0.055446, - 0.027258, - -0.066239, - 0.031652, - -0.05165, - 0.010045, - 0.026135, - -0.023893, - 0.025002, - -0.010708, - -0.000048264, - 0.05506, - -0.052896, - -0.0013707, - -0.023426, - 0.037082, - -0.0097708, - 0.060108, - -0.057395, - -0.028925, - -0.065387, - 0.011568, - 0.0074499, - -0.032089, - 0.0069505, - -0.036113, - -0.0083559, - 0.076887, - 0.071764, - 0.026178, - -0.035031, - 0.027972, - 0.016194, - -0.03007, - 0.028168, - -0.04183, - 0.0068014, - 0.045727, - -0.044082, - -0.045728, - -0.13399, - 0.02633, - -0.0023031, - -0.030026, - -0.067039, - -0.0086736, - -0.043651, - 0.033303, - -0.0048269, - 0.020478, - 0.023966, - 0.006608, - -0.014201, - 0.031827, - -0.027591, - 0.0052519, - 0.026762, - -0.050856, - -0.04095, - -0.030089, - -0.061447, - 0.018635, - -0.035484, - 0.070014, - -0.023074, - 0.022239, - 0.0045121, - 0.061814, - 0.0044019, - -0.026398, - 0.007692, - -0.031417, - -0.038028, - -0.0023953, - 0.015084, - -0.003103, - -0.0080634, - 0.00016879, - -0.0093203, - -0.051352, - 0.03624, - 0.01088, - -0.024145, - 0.0078502, - -0.037999, - 0.040706, - -0.0050895, - -0.056119, - 0.061779, - -0.043919, - 0.038285, - 0.038887, - -0.0017884, - -0.023184, - 0.012345, - 0.017074, - -0.0048551, - 0.041706, - -0.032217, - 0.017658, - 0.011354, - -0.0057911, - 0.00064037, - 0.042628, - -0.00079288, - 0.048615, - -0.019497, - 0.073041, - -0.011576, - -0.02621, - -0.015961, - 0.03834, - -0.077751, - -0.064604, - 0.029084, - -0.037359, - -0.0042688, - -0.006954, - -0.021756, - -0.0074111, - 0.01327, - -0.0084456, - 0.0017454, - 0.0055898, - 0.03739, - -0.013724, - 0.042957, - -0.015679, - -0.025716, - -0.0073968, - -0.034624, - -0.0044737, - -0.0042337, - 0.013627, - 0.0088313, - 0.053884, - -0.018312, - 0.000041643, - 0.0019722, - 0.019191 - ], - "puppies": [ - 0.015274, - 0.015829, - 0.0058129, - -0.12996, - -0.016262, - 0.034223, - 0.016742, - -0.10267, - 0.0095874, - 0.007668, - -0.012617, - -0.0034943, - 0.026893, - -0.040269, - -0.066963, - -0.040522, - 0.046512, - -0.019223, - 0.021254, - 0.001384, - 0.012567, - -0.056251, - -0.032892, - 0.024848, - 0.068049, - 0.049713, - 0.033653, - 0.020996, - 0.14128, - -0.038718, - -0.09904, - -0.057507, - -0.00032441, - 0.048863, - 0.0065933, - -0.023196, - 0.040448, - -0.12415, - 0.0024548, - -0.054628, - -0.063445, - -0.04124, - 0.013082, - -0.020056, - 0.1329, - 0.016897, - -0.00014275, - 0.036187, - 0.009019, - 0.021267, - 0.031515, - 0.028096, - 0.0018472, - -0.081568, - -0.044384, - -0.020617, - 0.050821, - 0.0069389, - -0.067091, - -0.018377, - 0.0030999, - -0.10387, - 0.10694, - 0.039589, - 0.010955, - 0.072451, - 0.02508, - -0.071813, - -0.043071, - -0.05993, - -0.037465, - -0.028721, - 0.10757, - 0.010609, - -0.033127, - 0.096375, - -0.055507, - -0.016815, - -0.11709, - -0.050213, - 0.011625, - -0.045837, - 0.038559, - 0.06105, - 0.043035, - -0.052333, - -0.0077648, - -0.017868, - 0.084739, - -0.01307, - -0.0342, - -0.019177, - -0.097128, - 0.0010639, - 0.07178, - 0.034171, - 0.03634, - 0.096168, - 0.053883, - 0.094963, - 0.0044034, - -0.018187, - -0.037064, - 0.0030036, - 0.055646, - -0.065553, - -0.0017915, - -0.016485, - -0.021678, - -0.018875, - -0.054359, - 0.073847, - 0.048716, - 0.0044485, - 0.012097, - -0.0021086, - 0.0045546, - -0.028257, - -0.048039, - 0.018274, - -0.086149, - 0.085138, - 0.11941, - -0.1464, - 0.12148, - 0.07376, - 0.034275, - -0.08682, - -0.027526, - 0.0096934, - 0.017101, - 0.089677, - 0.027716, - 0.012482, - 0.031779, - -0.067644, - -0.033895, - 0.093408, - 0.058178, - 0.0091256, - -0.039052, - -0.025995, - -0.026887, - -0.059017, - 0.12448, - 0.03457, - -0.0011642, - -0.084301, - -0.037717, - -0.070372, - 0.007592, - 0.060319, - -0.0075047, - 0.010939, - -0.10141, - -0.044615, - -0.01554, - -0.0069744, - 0.038796, - -0.041808, - 0.052473, - -0.064183, - 0.037085, - -0.027942, - 0.039465, - -0.040478, - 0.047316, - 0.045589, - -0.06431, - -0.0062114, - 0.01811, - 0.076202, - 0.0082217, - -0.061002, - 0.0040045, - 0.051253, - 0.071147, - 0.046886, - 0.014996, - -0.071047, - 0.027451, - -0.053107, - -0.086644, - -0.042883, - 0.043093, - -0.036325, - 0.08503, - 0.11442, - 0.0059134, - -0.064437, - -0.0045325, - 0.05767, - -0.12233, - -0.10233, - 0.052921, - 0.020719, - 0.082299, - 0.069603, - 0.020323, - 0.0015492, - -0.15288, - 0.12639, - 0.038701, - -0.059644, - 0.043209, - -0.085453, - -0.030377, - -0.022534, - -0.050085, - -0.058796, - 0.076289, - -0.024562, - 0.059306, - -0.028566, - 0.0067193, - -0.038829, - -0.0017242, - -0.046599, - -0.0298, - -0.076334, - 0.055477, - 0.0088463, - 0.045301, - 0.065596, - 0.060573, - 0.02934, - -0.0099211, - 0.077433, - -0.035337, - -0.022121, - -0.038344, - -0.028712, - -0.075589, - -0.013436, - 0.071964, - 0.036217, - 0.026519, - -0.074379, - -0.034477, - -0.074356, - 0.0040179, - -0.011964, - 0.087709, - -0.082005, - 0.0018387, - 0.062502, - -0.00475, - 0.038063, - 0.031657, - 0.05373, - 0.019261, - 0.045831, - -0.009411, - 0.0027981, - -0.030931, - -0.00035012, - 0.058549, - -0.025851, - 0.062045, - -0.014094, - -0.025329, - -0.036379, - 0.097415, - -0.012604, - 0.097254, - 0.0043834, - -0.027365, - 0.015062, - 0.0075823, - -0.018751, - -0.037443, - 0.081789, - -0.096081, - -0.039891, - -0.036126, - -0.0045844, - -0.035781, - 0.04578, - -0.020936, - -0.046212, - 0.0091487, - 0.07585, - 0.11616, - 0.011153, - -0.0032656, - 0.026091, - -0.018253, - 0.033277, - 0.032555, - 0.012636, - -0.0022186, - -0.062463, - -0.11785, - -0.073039, - -0.043369, - -0.058219, - 0.078047, - 0.016022, - -0.050556, - 0.10738 - ], - "windy": [ - -0.063413, - -0.15199, - 0.014193, - 0.018611, - 0.024436, - -0.076066, - 0.024158, - -0.04168, - -0.020936, - 0.027296, - -0.037261, - -0.084027, - 0.043426, - 0.010876, - -0.024572, - -0.025296, - 0.12871, - 0.028616, - -0.045349, - 0.017347, - 0.027505, - 0.0078214, - -0.067217, - 0.061841, - 0.10488, - 0.026317, - 0.018883, - 0.082964, - 0.041477, - -0.022099, - 0.025831, - 0.065589, - -0.014108, - -0.064547, - -0.028133, - 0.026826, - 0.080737, - -0.095087, - 0.035228, - -0.050221, - 0.014607, - -0.1368, - 0.034733, - -0.041383, - -0.034824, - 0.029273, - -0.060599, - -0.029514, - -0.078412, - -0.019568, - 0.0089493, - 0.0097075, - -0.028131, - 0.049805, - -0.11077, - -0.0080984, - 0.038701, - -0.062037, - -0.081898, - -0.031275, - -0.033834, - 0.051927, - 0.14055, - -0.12473, - -0.075615, - -0.015067, - 0.028679, - -0.010805, - 0.037284, - -0.0091296, - 0.11782, - 0.090054, - 0.003473, - 0.084337, - -0.017826, - -0.11921, - -0.11997, - 0.073618, - -0.13497, - 0.10864, - -0.052512, - -0.070454, - 0.10005, - 0.05794, - 0.091216, - -0.013444, - -0.0089734, - 0.0066724, - 0.027648, - -0.035429, - 0.0094443, - -0.079715, - -0.14155, - -0.028512, - 0.059838, - 0.055671, - -0.012466, - 0.0029715, - 0.0002457, - -0.083054, - 0.08234, - -0.048056, - -0.033593, - 0.064681, - -0.033781, - -0.20249, - -0.038629, - 0.021644, - 0.11152, - 0.095675, - -0.03715, - 0.10503, - 0.091666, - 0.087533, - 0.033293, - -0.042882, - -0.052882, - 0.12576, - -0.0041035, - 0.026187, - 0.046609, - -0.026746, - -0.007449, - -0.088766, - 0.042376, - -0.052798, - -0.060436, - 0.075294, - -0.047629, - -0.033877, - 0.019078, - 0.078813, - -0.053873, - 0.039798, - -0.021362, - 0.049982, - 0.090776, - 0.035708, - -0.12233, - -0.0061949, - 0.0013419, - -0.05618, - 0.04352, - -0.091165, - 0.062645, - 0.053541, - 0.019697, - 0.021162, - -0.072932, - -0.11615, - -0.063807, - -0.04769, - -0.0023338, - 0.092647, - 0.11169, - 0.10779, - 0.077298, - -0.02914, - -0.0096705, - 0.08659, - 0.11993, - -0.057189, - 0.014399, - 0.0083877, - -0.038767, - -0.1207, - 0.063445, - -0.02202, - -0.030141, - 0.11922, - -0.18126, - -0.033873, - 0.053636, - 0.00042553, - 0.1274, - 0.1203, - 0.10925, - -0.058705, - -0.017057, - 0.061289, - -0.0035901, - -0.017051, - -0.040208, - -0.10841, - 0.00038993, - -0.083031, - -0.060629, - 0.22506, - 0.0029673, - -0.02659, - 0.05244, - -0.096012, - 0.032416, - 0.021999, - -0.087283, - 0.0087657, - 0.036209, - 0.093053, - 0.072242, - 0.050241, - -0.094409, - 0.031838, - -0.025251, - -0.070387, - 0.10833, - 0.058489, - -0.078564, - 0.091937, - -0.0084029, - -0.11992, - 0.016705, - -0.056641, - 0.037881, - 0.034168, - 0.16393, - 0.031215, - 0.040222, - -0.1341, - -0.16561, - -0.18615, - 0.040926, - 0.00014068, - 0.053467, - 0.042218, - -0.06772, - 0.075319, - -0.10453, - 0.040988, - 0.0051226, - 0.11173, - 0.0056134, - -0.12412, - -0.023534, - 0.14504, - 0.10928, - 0.068419, - 0.0045187, - 0.0033883, - 0.10944, - -0.085792, - 0.090733, - -0.024342, - -0.0079733, - -0.06011, - -0.065261, - 0.056163, - -0.057818, - -0.03448, - 0.054886, - -0.016703, - -0.059945, - -0.00086692, - 0.041551, - 0.012741, - -0.077457, - 0.037015, - 0.041706, - -0.060793, - -0.025012, - 0.013209, - 0.04315, - 0.0057496, - 0.036093, - 0.017962, - 0.045708, - -0.068643, - 0.0037976, - -0.037928, - -0.023291, - -0.11595, - -0.088388, - 0.066245, - -0.13069, - -0.015957, - 0.17365, - -0.18049, - -0.035173, - -0.039516, - 0.0084424, - -0.011114, - 0.13689, - 0.049485, - 0.071484, - -0.0083693, - -0.10682, - -0.0039784, - 0.040555, - -0.068415, - 0.014722, - -0.0031269, - 0.13511, - -0.088156, - 0.037108, - 0.028721, - 0.014814, - -0.04182, - -0.051988, - 0.036909, - -0.081309, - -0.028845 - ], - "hospital": [ - -0.0053172, - -0.06288, - 0.019808, - 0.019801, - 0.036828, - -0.046676, - 0.046943, - -0.090458, - 0.043888, - -0.026013, - -0.050264, - -0.084536, - 0.081843, - -0.02103, - -0.082309, - 0.029687, - 0.14752, - 0.0044983, - 0.040365, - 0.047985, - 0.00092341, - -0.016181, - 0.010228, - 0.065476, - -0.016543, - -0.021779, - -0.013443, - -0.00061862, - -0.032486, - 0.028003, - 0.00036994, - 0.044866, - -0.044801, - -0.021123, - 0.0097932, - 0.051225, - -0.020971, - -0.013707, - 0.090451, - 0.024499, - 0.018569, - -0.11966, - 0.040158, - 0.065712, - 0.023022, - 0.0035533, - 0.051113, - 0.01423, - -0.052654, - 0.033854, - 0.020219, - 0.00043028, - -0.011608, - 0.032396, - -0.061739, - 0.06589, - -0.013391, - 0.040778, - -0.053291, - -0.028466, - -0.017726, - -0.045891, - 0.079583, - -0.021433, - 0.022084, - 0.050377, - 0.019161, - -0.075741, - -0.089467, - -0.034158, - -0.039363, - -0.028535, - 0.034794, - -0.047532, - -0.010245, - -0.018414, - 0.021172, - -0.0075018, - -0.022037, - -0.0056532, - -0.016907, - 0.010085, - -0.018361, - 0.044221, - -0.086606, - 0.0069892, - 0.033786, - -0.055368, - -0.0079482, - -0.027067, - 0.0040779, - 0.040428, - -0.090767, - 0.016365, - 0.0049777, - 0.10225, - 0.033869, - -0.0032297, - -0.0087608, - 0.030945, - 0.07784, - 0.024877, - -0.015676, - 0.024435, - 0.059047, - -0.1063, - 0.060899, - -0.039607, - -0.063347, - 0.097741, - -0.021831, - 0.10786, - 0.080043, - 0.099962, - 0.039952, - 0.080405, - -0.031184, - -0.041826, - -0.024906, - -0.023309, - -0.057368, - 0.0015898, - 0.059444, - 0.028218, - 0.0093095, - 0.022667, - 0.024231, - -0.097338, - 0.00031584, - 0.046615, - 0.0022869, - 0.031724, - -0.02216, - -0.082804, - -0.0267, - 0.023592, - 0.016053, - 0.032133, - 0.053419, - -0.01046, - 0.028003, - -0.048429, - -0.030704, - 0.030545, - -0.042308, - 0.019956, - 0.017772, - 0.034487, - 0.013841, - 0.019603, - 0.012411, - 0.072069, - 0.026158, - -0.04931, - 0.013292, - -0.010645, - -0.033239, - -0.0054318, - 0.06419, - 0.012176, - 0.0251, - -0.042773, - -0.024516, - 0.034706, - -0.036966, - -0.033652, - 0.028596, - -0.01369, - -0.062782, - 0.027713, - 0.0095701, - -0.016027, - -0.025346, - -0.0049612, - 0.046912, - 0.013875, - -0.051229, - -0.049905, - -0.065375, - -0.001428, - 0.013296, - -0.02495, - -0.039037, - 0.0021122, - -0.071827, - 0.011264, - 0.025581, - 0.059396, - 0.023511, - -0.085581, - 0.0041711, - 0.024558, - 0.026091, - -0.039457, - 0.012023, - 0.0033089, - -0.033212, - -0.01145, - -0.006366, - -0.085519, - -0.13892, - 0.062052, - -0.044017, - 0.024943, - -0.028002, - -0.027358, - -0.064255, - -0.062498, - -0.057026, - -0.01652, - 0.086901, - -0.021504, - -0.0061775, - 0.07531, - -0.04454, - -0.0028815, - -0.0053423, - 0.0053643, - 0.079756, - -0.038768, - 0.031733, - -0.015223, - -0.054368, - 0.079078, - -0.029694, - 0.033758, - -0.065181, - 0.045901, - -0.0065922, - -0.022123, - -0.04736, - -0.074205, - -0.019199, - -0.035013, - -0.0097138, - 0.0088277, - -0.0040478, - 0.07978, - 0.0092886, - -0.018314, - 0.084778, - -0.011739, - 0.0069683, - 0.015484, - -0.02137, - 0.012516, - -0.0017385, - -0.0089828, - -0.044572, - 0.02534, - -0.040023, - 0.030634, - 0.0051972, - -0.041868, - -0.044538, - -0.041293, - 0.0018057, - 0.012546, - -0.023879, - 0.054627, - -0.04019, - -0.047394, - -0.043023, - -0.0042987, - 0.0041753, - 0.037447, - -0.0042483, - 0.03041, - 0.03625, - 0.047864, - -0.034045, - 0.058048, - -0.11689, - -0.0051715, - 0.0031149, - -0.053255, - 0.0082384, - 0.024846, - 0.018373, - 0.032548, - 0.04156, - -0.016606, - -0.063125, - 0.062956, - 0.016572, - 0.03337, - -0.0032848, - -0.076481, - -0.013588, - 0.046117, - 0.018809, - 0.062381, - 0.022412, - 0.02641, - -0.028552, - -0.0059985, - 0.058604, - 0.013896, - 0.025634, - -0.024869 - ], - "software": [ - -0.013769, - -0.016293, - -0.024767, - -0.010499, - -0.036829, - -0.0107, - 0.032095, - -0.091242, - 0.015906, - -0.02614, - -0.0010102, - -0.020807, - -0.050257, - -0.013248, - -0.011405, - 0.035578, - 0.098999, - 0.011606, - 0.049143, - -0.012971, - -0.048669, - 0.0058361, - -0.000067907, - 0.037154, - -0.027012, - 0.052378, - -0.012499, - 0.024538, - 0.051898, - 0.024365, - -0.054718, - -0.023026, - -0.00011871, - -0.03635, - 0.073215, - 0.018221, - 0.022165, - -0.069835, - 0.046335, - -0.032493, - -0.071203, - -0.12015, - -0.077232, - -0.0046456, - -0.033687, - -0.030397, - 0.023468, - -0.04492, - 0.024315, - -0.0072169, - -0.039874, - -0.014974, - 0.010115, - -0.014285, - -0.050009, - 0.035312, - 0.040772, - 0.017646, - -0.0074735, - 0.0083364, - 0.056647, - -0.034361, - 0.10848, - 0.0777, - 0.022453, - -0.0029758, - 0.014528, - -0.00071095, - 0.034657, - -0.023969, - -0.004835, - 0.017788, - -0.019955, - -0.0034962, - -0.031197, - -0.046047, - 0.023061, - -0.041026, - -0.020202, - -0.029779, - -0.011051, - -0.0042308, - -0.067795, - 0.022092, - -0.017004, - -0.052991, - -0.029368, - -0.030624, - -0.038999, - -0.050394, - 0.050304, - 0.018476, - -0.089272, - 0.0020804, - -0.03875, - 0.075891, - 0.06783, - -0.068088, - 0.037466, - 0.031102, - 0.012446, - 0.036885, - 0.0074529, - -0.013136, - -0.027527, - -0.097928, - 0.026707, - 0.097592, - -0.037475, - -0.047737, - -0.044679, - 0.071655, - 0.032514, - 0.0099699, - 0.036988, - 0.0030715, - -0.023118, - 0.020228, - -0.063891, - 0.002187, - -0.019155, - -0.023007, - 0.020163, - -0.0047862, - 0.096729, - 0.011019, - -0.040347, - -0.03542, - -0.069028, - 0.10621, - -0.0097014, - -0.013474, - -0.016247, - -0.0080269, - 0.076584, - -0.015628, - 0.046934, - 0.02932, - -0.014019, - 0.04542, - 0.0039154, - 0.077405, - -0.0026397, - -0.01819, - -0.06205, - -0.015505, - -0.039542, - -0.030298, - 0.020453, - -0.014616, - 0.040395, - 0.066861, - 0.072255, - -0.10727, - 0.039598, - 0.0027594, - -0.045314, - 0.026233, - -0.019164, - -0.0052212, - 0.029978, - 0.061926, - -0.055834, - -0.044737, - -0.013305, - -0.0084656, - 0.019153, - -0.033667, - 0.0070753, - 0.036169, - 0.020744, - 0.040553, - 0.049255, - 0.022554, - -0.0044094, - 0.028626, - -0.036977, - 0.040148, - -0.030874, - -0.0176, - 0.020854, - -0.048591, - -0.058215, - -0.016468, - -0.040852, - -0.014242, - -0.049209, - 0.057174, - -0.037582, - -0.01157, - -0.073496, - 0.080736, - -0.015618, - -0.027844, - 0.021225, - -0.021625, - -0.02497, - -0.028289, - -0.024816, - -0.017702, - -0.13408, - 0.0083361, - -0.025723, - -0.006239, - 0.013257, - -0.013755, - 0.00048953, - -0.02458, - -0.038271, - -0.052927, - 0.1053, - 0.040336, - 0.014104, - -0.0040156, - 0.0055347, - -0.0070849, - -0.043438, - 0.046305, - -0.016777, - 0.0048627, - 0.027306, - 0.0075065, - 0.043698, - 0.1035, - 0.022276, - -0.065309, - 0.046247, - 0.029389, - 0.010493, - 0.0096702, - -0.023807, - -0.034087, - -0.06875, - 0.0060427, - 0.0025688, - -0.034433, - 0.02214, - -0.0081752, - -0.023202, - -0.029655, - 0.023252, - -0.00043439, - 0.055351, - -0.030531, - 0.0034531, - 0.025009, - 0.025408, - 0.027169, - -0.036025, - 0.030998, - 0.0163, - -0.014649, - -0.04034, - 0.0021665, - 0.0080873, - 0.012785, - 0.011238, - 0.025727, - -0.025399, - -0.023947, - 0.041828, - 0.047299, - -0.070785, - 0.0054189, - -0.018008, - -0.072711, - -0.01431, - 0.006676, - 0.0074049, - 0.0038388, - 0.028794, - 0.083201, - -0.086464, - -0.024538, - -0.03261, - -0.048668, - 0.0028778, - 0.026919, - -0.014962, - 0.0054341, - 0.059237, - 0.02795, - 0.022028, - 0.013617, - -0.037093, - -0.059732, - -0.038904, - 0.017268, - -0.032151, - 0.0062269, - -0.076979, - -0.032301, - -0.020089, - 0.00090843, - 0.037594, - -0.038572, - -0.019203, - -0.043969, - 0.0082854, - 0.0083563 - ], - "trafficker": [ - 0.013389, - -0.0042205, - -0.013997, - -0.0065168, - -0.02743, - -0.014301, - -0.082686, - -0.058579, - 0.022441, - 0.053923, - 0.054234, - 0.065272, - -0.061569, - -0.048782, - 0.00092284, - -0.04217, - 0.10482, - -0.032075, - 0.020405, - 0.10688, - 0.043987, - -0.018399, - 0.037423, - 0.0021045, - 0.021101, - 0.01061, - -0.050485, - 0.0038969, - -0.017124, - 0.028595, - -0.00026925, - 0.043265, - -0.060543, - 0.040128, - -0.014267, - 0.046721, - 0.019406, - 0.01287, - 0.010824, - 0.017091, - -0.047765, - -0.10819, - 0.050502, - 0.027353, - 0.06687, - 0.047203, - 0.093757, - 0.020951, - 0.017805, - 0.0057412, - 0.0051188, - -0.0077285, - -0.014699, - -0.035648, - -0.01662, - -0.063716, - 0.046709, - 0.014689, - -0.055644, - -0.0032627, - -0.086475, - -0.013318, - 0.08147, - 0.041852, - -0.065048, - -0.019748, - 0.076662, - -0.077324, - 0.048636, - -0.0027721, - -0.0036835, - 0.087768, - 0.01773, - -0.072784, - 0.021759, - 0.029109, - 0.041322, - 0.0076806, - 0.02646, - -0.01696, - 0.015853, - 0.011853, - -0.085847, - 0.032209, - -0.0019099, - -0.084759, - -0.006423, - 0.054249, - 0.055542, - -0.001773, - -0.04141, - 0.068101, - -0.098256, - -0.043778, - -0.061601, - 0.084134, - 0.0047745, - -0.023009, - 0.023026, - -0.027407, - 0.0083358, - -0.054113, - -0.0053325, - -0.0061276, - 0.0094467, - -0.052378, - -0.044745, - 0.0018871, - 0.0020273, - 0.026898, - 0.038067, - 0.056119, - 0.068547, - -0.04603, - -0.034182, - 0.023049, - 0.014268, - -0.041665, - -0.017119, - 0.061938, - 0.09182, - -0.010567, - 0.016841, - -0.037141, - 0.11219, - 0.016021, - 0.045154, - -0.063716, - 0.030871, - 0.043873, - -0.024724, - -0.0044128, - -0.0045637, - -0.093144, - 0.04794, - -0.025027, - 0.0037554, - 0.026085, - 0.0068281, - 0.030431, - -0.04598, - 0.065831, - -0.057112, - -0.091621, - 0.014928, - 0.001528, - -0.050773, - -0.042969, - 0.0051054, - -0.038928, - 0.028918, - 0.064279, - 0.0042026, - -0.076192, - -0.04056, - -0.07694, - -0.041264, - -0.049286, - 0.050501, - -0.0015637, - 0.052528, - 0.041639, - -0.046165, - 0.050225, - -0.045936, - -0.027242, - 0.07052, - 0.017057, - -0.0097535, - 0.029331, - -0.023708, - -0.0045333, - 0.023876, - -0.045283, - 0.011607, - 0.028878, - -0.034466, - 0.032898, - -0.026092, - 0.007732, - 0.0020467, - 0.011313, - 0.045736, - -0.014938, - -0.045346, - -0.12064, - -0.012778, - 0.083863, - 0.008916, - -0.011831, - 0.029864, - 0.075071, - -0.014169, - 0.024657, - -0.027024, - 0.0070933, - 0.012559, - 0.071065, - 0.016292, - 0.021049, - -0.12279, - 0.068083, - -0.034771, - -0.0090922, - 0.040145, - 0.00076615, - 0.023843, - -0.031628, - 0.075456, - -0.02718, - 0.10186, - -0.013509, - 0.025072, - -0.063267, - 0.044583, - -0.031161, - 0.00033678, - 0.024156, - 0.062682, - 0.015077, - 0.013506, - -0.12306, - 0.037642, - 0.072511, - 0.018472, - -0.068246, - -0.001764, - 0.0060505, - 0.0034076, - 0.0032618, - -0.075428, - -0.030714, - -0.030063, - -0.12074, - -0.01292, - -0.075002, - -0.053492, - -0.037728, - -0.040912, - -0.0096674, - 0.012279, - -0.012148, - -0.022331, - 0.034914, - 0.037373, - -0.013569, - -0.029091, - 0.020405, - 0.03142, - 0.019669, - -0.016018, - -0.011063, - 0.030586, - -0.044999, - 0.06536, - -0.018068, - -0.020856, - 0.065131, - 0.0032941, - 0.0095437, - -0.042156, - 0.014272, - -0.0080349, - -0.010575, - 0.013196, - -0.033327, - -0.08431, - -0.014187, - 0.032707, - 0.029767, - -0.058529, - 0.054475, - -0.084278, - -0.037864, - 0.03538, - -0.030353, - -0.016643, - 0.0050471, - -0.044385, - 0.036419, - 0.070513, - 0.06283, - -0.029471, - -0.03441, - -0.015089, - 0.061765, - -0.041423, - -0.030191, - 0.050629, - -0.040751, - -0.042242, - -0.0025355, - -0.021306, - -0.0072485, - -0.061606, - -0.03324, - 0.045067, - 0.033038, - -0.0011404, - -0.15538 - ], - "computational": [ - -0.029491, - -0.017543, - -0.033606, - -0.019682, - -0.0055833, - -0.0077069, - 0.023933, - -0.047685, - 0.0035782, - -0.028406, - 0.040367, - -0.03008, - -0.029559, - 0.021692, - -0.017994, - -0.028876, - 0.055126, - 0.043039, - 0.021291, - 0.031314, - -0.018079, - 0.041907, - 0.028585, - 0.07172, - 0.038765, - -0.007825, - -0.024033, - -0.026988, - 0.004813, - 0.0037468, - -0.022943, - -0.003493, - 0.016159, - -0.079436, - 0.040322, - 0.011228, - 0.013415, - -0.026779, - 0.027367, - 0.00010824, - -0.053323, - -0.07696, - -0.013786, - -0.0095191, - -0.016048, - -0.058863, - 0.010745, - -0.0039812, - 0.019876, - -0.0030127, - -0.041316, - 0.010753, - -0.038732, - 0.032896, - 0.028072, - -0.026788, - -0.0037778, - 0.031358, - 0.0085738, - -0.018077, - 0.015763, - 0.020644, - 0.099306, - 0.04097, - 0.0031639, - -0.0090999, - 0.052727, - 0.010411, - -0.027692, - -0.018412, - 0.013894, - -0.0033345, - 0.018059, - -0.005905, - 0.03225, - -0.012697, - -0.0071233, - -0.017278, - 0.037658, - -0.0086141, - -0.063797, - 0.01752, - -0.025022, - -0.022329, - 0.018602, - -0.00079937, - 0.011508, - 0.0066899, - 0.032147, - 0.029008, - 0.016811, - 0.021478, - -0.059845, - -0.013258, - 0.01266, - 0.030887, - -0.0027827, - -0.016444, - -0.000092752, - 0.025594, - 0.0088888, - -0.02085, - -0.040472, - 0.020114, - 0.01287, - -0.066851, - -0.012366, - -0.0077032, - -0.022853, - -0.056104, - -0.013273, - 0.051962, - 0.025002, - -0.017294, - 0.0057835, - 0.006511, - -0.0009524, - 0.023837, - -0.0050064, - -0.019304, - -0.011739, - 0.0080257, - -0.017548, - -0.018115, - 0.065134, - -0.030724, - -0.035421, - -0.050387, - -0.006789, - 0.07815, - -0.0069773, - -0.011361, - -0.0057213, - 0.0063026, - 0.051961, - -0.0052286, - 0.050408, - 0.041074, - -0.0015744, - 0.023505, - 0.02769, - 0.049499, - 0.060515, - 0.0089783, - -0.026668, - -0.032777, - -0.017109, - -0.038781, - -0.020829, - 0.0060044, - 0.041986, - 0.11304, - 0.033775, - -0.041527, - 0.031849, - 0.02039, - 0.011835, - 0.0033108, - 0.0014123, - -0.015273, - 0.017, - 0.0024996, - -0.079856, - -0.052337, - -0.002799, - -0.0036333, - -0.027917, - 0.01509, - -0.0019369, - 0.015012, - 0.02838, - -0.040997, - 0.024588, - 0.00054772, - 0.041893, - 0.044683, - -0.024796, - 0.027825, - -0.036657, - -0.019344, - -0.0041425, - -0.0059449, - -0.031168, - -0.02965, - 0.024495, - -0.031296, - -0.06633, - 0.090323, - 0.018305, - 0.034599, - 0.047738, - 0.036306, - 0.065578, - -0.012719, - 0.010651, - -0.0064301, - -0.048197, - 0.045112, - -0.02151, - -0.010361, - -0.069079, - -0.043654, - 0.024127, - 0.039291, - 0.0037097, - -0.012706, - -0.022014, - -0.036866, - 0.0042134, - 0.021843, - 0.09322, - -0.00015286, - -0.032118, - -0.027948, - 0.034054, - 0.03492, - 0.031259, - 0.017155, - -0.064517, - -0.00085798, - -0.036666, - 0.0084605, - -0.028925, - 0.047094, - 0.0075834, - -0.018777, - 0.0048595, - 0.067302, - 0.01335, - -0.014888, - -0.031941, - -0.022693, - -0.035635, - -0.0055509, - -0.027674, - -0.04089, - 0.010152, - -0.013035, - -0.044923, - 0.0092908, - 0.034987, - -0.026168, - 0.020818, - 0.010093, - -0.12125, - -0.002517, - -0.029412, - -0.012475, - 0.00056075, - 0.0054547, - 0.012151, - 0.025192, - 0.028646, - -0.026494, - -0.002451, - 0.031909, - 0.017806, - 0.02764, - 0.0027726, - 0.016106, - 0.0055515, - 0.0033912, - -0.028598, - 0.015902, - 0.0077476, - -0.047267, - 0.011718, - 0.012869, - 0.030062, - 0.028089, - 0.0033694, - 0.035648, - -0.063968, - -0.019185, - 0.017154, - -0.056444, - 0.027769, - 0.021082, - 0.012105, - -0.0052712, - 0.12188, - 0.026336, - -0.030291, - -0.0071853, - 0.03276, - -0.042995, - -0.018772, - 0.0077571, - -0.021646, - 0.0045571, - -0.053265, - 0.012497, - -0.0085889, - -0.010244, - 0.073726, - 0.021721, - -0.0042302, - 0.0025512, - -0.0054021, - 0.060006 - ], - "legalism": [ - -0.0016462, - -0.0017322, - 0.047727, - -0.034559, - -0.075606, - 0.026242, - -0.022444, - -0.1215, - -0.017464, - 0.034475, - 0.0068226, - -0.022205, - 0.014602, - 0.00065505, - 0.0077294, - 0.00019533, - 0.086563, - -0.008723, - 0.036973, - 0.017255, - 0.0093384, - -0.0081672, - -0.019138, - 0.041092, - 0.00096495, - 0.016696, - 0.02303, - 0.05531, - 0.090741, - -0.020609, - -0.0091973, - -0.015119, - -0.086202, - -0.063916, - -0.02162, - 0.051401, - 0.022146, - 0.00095997, - -0.0021859, - 0.020117, - 0.0066639, - -0.11886, - -0.051913, - 0.05006, - 0.0052487, - -0.0026844, - -0.027636, - -0.037248, - 0.022978, - -0.083784, - -0.0023745, - -0.041622, - 0.017865, - 0.0043763, - -0.058568, - 0.015301, - 0.069377, - 0.019593, - -0.04814, - -0.0051477, - 0.075823, - -0.00089597, - -0.0048007, - 0.0066583, - -0.041804, - -0.023418, - 0.044507, - -0.021146, - 0.084114, - 0.0094875, - 0.042067, - 0.029759, - -0.0047685, - 0.0061377, - -0.0051943, - -0.10179, - -0.0032082, - -0.052017, - 0.021833, - 0.039407, - -0.078249, - -0.026735, - -0.028881, - 0.078596, - 0.021819, - -0.050139, - 0.023173, - 0.044931, - 0.031667, - 0.062248, - -0.014551, - -0.015512, - -0.069052, - -0.002581, - 0.063685, - 0.026976, - -0.048536, - -0.049761, - -0.028785, - -0.021342, - 0.0087551, - -0.010536, - -0.024689, - -0.053068, - -0.052677, - -0.040275, - 0.11654, - -0.0039867, - -0.045251, - -0.021621, - 0.0058968, - 0.072595, - 0.053192, - -0.049116, - -0.032721, - 0.059945, - 0.015774, - 0.0015859, - -0.08368, - -0.017357, - -0.0096391, - -0.066416, - 0.069944, - -0.074488, - 0.089037, - -0.0026298, - -0.0042296, - -0.020373, - -0.013855, - 0.16859, - -0.078896, - -0.014505, - 0.0080034, - 0.036376, - 0.0083776, - -0.02957, - -0.023281, - 0.038387, - 0.066147, - -0.1029, - 0.084379, - -0.047874, - -0.060991, - 0.06142, - -0.050678, - -0.034742, - 0.063745, - 0.0094426, - 0.012187, - -0.079677, - 0.072432, - 0.066841, - -0.011256, - -0.0093706, - -0.01668, - 0.06476, - -0.034202, - -0.073496, - 0.081915, - -0.037256, - 0.062386, - 0.043222, - -0.14168, - -0.029557, - 0.0068349, - 0.039821, - 0.096042, - 0.084767, - -0.015679, - -0.021137, - -0.064559, - 0.0090127, - -0.0032019, - -0.025668, - -0.0062596, - 0.020421, - 0.051829, - 0.041213, - 0.00010676, - -0.031459, - -0.063388, - -0.020075, - -0.023199, - -0.007723, - 0.041331, - -0.039661, - 0.081387, - 0.055282, - -0.003103, - -0.08917, - 0.011613, - 0.064504, - -0.056827, - -0.030757, - 0.014391, - -0.0014452, - 0.051313, - 0.010328, - -0.049962, - 0.031, - -0.17559, - -0.067364, - 0.043623, - -0.054018, - -0.057116, - 0.010385, - 0.052721, - 0.016869, - 0.056275, - 0.014958, - 0.12372, - 0.043025, - -0.0093942, - 0.013216, - 0.076598, - 0.03037, - 0.02825, - 0.0076844, - -0.0075297, - -0.096629, - -0.018128, - -0.08377, - -0.051613, - 0.093292, - 0.041758, - 0.021179, - -0.0043101, - 0.1074, - 0.032458, - -0.051296, - 0.012781, - -0.068628, - -0.022781, - 0.00026039, - 0.027044, - -0.055096, - -0.032126, - -0.082043, - -0.0039236, - -0.0043074, - 0.035187, - 0.014839, - -0.02021, - 0.049105, - -0.040198, - -0.0085339, - -0.045034, - -0.080727, - 0.0037187, - 0.0082006, - -0.047171, - -0.041926, - -0.066179, - 0.032334, - 0.049792, - 0.0038246, - 0.0555, - 0.019854, - -0.017925, - 0.027108, - 0.0030091, - 0.012284, - 0.048694, - 0.035678, - 0.044746, - 0.030814, - 0.059348, - -0.012498, - -0.055626, - -0.050141, - -0.018451, - 0.093213, - -0.056641, - -0.010555, - 0.025934, - -0.090892, - -0.021279, - 0.02493, - -0.033327, - -0.040304, - 0.090104, - 0.035318, - -0.056318, - -0.010689, - -0.016617, - 0.01605, - 0.0093759, - 0.043502, - -0.00074193, - 0.031501, - 0.042386, - -0.098668, - 0.066102, - -0.039612, - -0.026498, - -0.010974, - -0.024049, - 0.045637, - -0.060525, - 0.030405 - ], - "e-business": [ - -0.047899, - -0.056282, - -0.04994, - -0.071324, - -0.049026, - 0.020294, - 0.031834, - -0.071214, - 0.0024087, - 0.052418, - 0.0025694, - -0.06457, - -0.052463, - -0.023937, - -0.019412, - 0.077341, - 0.079082, - -0.054243, - 0.090789, - -0.0020507, - -0.069507, - 0.049603, - 0.045734, - 0.047094, - -0.014823, - 0.024069, - -0.016062, - 0.048159, - -0.0072358, - -0.0019307, - 0.040675, - -0.012966, - -0.058701, - -0.049815, - 0.033526, - 0.039959, - 0.0079917, - 0.045023, - 0.052341, - -0.017286, - -0.077323, - -0.052396, - 0.0021963, - -0.01944, - -0.060342, - -0.037352, - -0.012225, - 0.026583, - 0.000070878, - -0.023841, - -0.0056224, - -0.12148, - -0.011989, - 0.046779, - -0.021378, - 0.0070613, - -0.01601, - 0.0060633, - 0.015613, - 0.0010604, - -0.0075666, - 0.043818, - 0.052233, - 0.0056466, - 0.0033744, - 0.058711, - 0.033378, - -0.026322, - 0.025041, - -0.029931, - -0.066172, - 0.0057505, - 0.021067, - 0.028792, - -0.023126, - -0.040359, - 0.0030528, - -0.002864, - -0.023145, - -0.019017, - 0.013832, - 0.01712, - -0.066975, - -0.030566, - 0.01955, - -0.058531, - -0.068458, - -0.0075112, - 0.023433, - 0.0052397, - 0.036985, - 0.054384, - -0.059675, - 0.025219, - -0.0053413, - 0.036444, - 0.027839, - -0.047009, - -0.047022, - -0.049063, - -0.04564, - 0.010349, - -0.040582, - -0.014643, - -0.0065532, - -0.056364, - 0.016326, - 0.049947, - -0.0029434, - -0.022741, - 0.01731, - 0.067212, - 0.0045766, - -0.053712, - 0.0033909, - -0.012794, - -0.055097, - 0.013489, - -0.045901, - 0.018946, - -0.056342, - -0.01745, - 0.047023, - 0.0008482, - 0.028762, - -0.01355, - -0.049717, - -0.054422, - -0.028293, - 0.071143, - 0.0199, - -0.0035889, - -0.026661, - -0.030522, - 0.00887, - 0.035386, - 0.097184, - 0.0051057, - -0.010941, - 0.0095569, - 0.031124, - -0.027909, - 0.0046543, - -0.015935, - -0.036767, - 0.025836, - 0.0079405, - -0.048477, - -0.036288, - 0.029413, - 0.055745, - 0.085515, - 0.013105, - -0.054399, - 0.010584, - -0.0012193, - -0.01527, - 0.0088301, - 0.075535, - -0.016606, - 0.058842, - 0.016641, - -0.074761, - 0.087552, - 0.050347, - -0.023066, - -0.011078, - -0.064709, - -0.03213, - 0.022895, - -0.0061775, - -0.013149, - -0.059161, - 0.0043012, - -0.008396, - 0.040233, - -0.044244, - 0.016249, - -0.0054814, - -0.0020481, - 0.0051844, - 0.0077596, - -0.046561, - -0.0048067, - -0.027171, - -0.025933, - -0.071158, - 0.10336, - -0.04214, - 0.036814, - -0.05949, - 0.035037, - 0.034443, - -0.019855, - 0.03238, - -0.0011027, - 0.035756, - -0.067385, - 0.040806, - -0.016766, - -0.069601, - 0.036423, - -0.0085338, - 0.0023185, - -0.048188, - 0.025038, - 0.0044559, - -0.035451, - -0.0017646, - 0.013866, - 0.11858, - -0.0053827, - -0.0010402, - -0.046365, - 0.033885, - 0.029852, - -0.0008931, - -0.026826, - -0.0084316, - -0.032415, - 0.045157, - -0.045151, - 0.058866, - 0.061463, - -0.03166, - -0.038899, - 0.0020181, - -0.024244, - -0.039069, - -0.03865, - -0.0050147, - -0.031517, - -0.027578, - -0.0077305, - 0.05013, - -0.027107, - 0.020434, - -0.00462, - -0.0018816, - -0.023479, - -0.0028824, - 0.022212, - 0.049841, - -0.031577, - 0.00018034, - -0.065539, - -0.0092361, - -0.040121, - 0.055457, - 0.038913, - 0.025654, - -0.041673, - -0.027641, - 0.0063827, - 0.014421, - 0.077765, - -0.066129, - 0.023269, - 0.063042, - 0.022969, - -0.010381, - 0.096826, - 0.0016577, - 0.0052674, - -0.028129, - 0.010589, - 0.10137, - 0.030368, - 0.012671, - -0.029614, - -0.014723, - 0.038676, - -0.041389, - -0.031414, - -0.018471, - -0.049239, - 0.062659, - 0.020583, - -0.032428, - -0.022384, - 0.085866, - 0.029208, - -0.0011507, - 0.015778, - -0.0079661, - -0.046476, - -0.018037, - -0.014195, - -0.088338, - -0.015946, - -0.024019, - 0.016785, - -0.0023004, - -0.045814, - -0.021175, - -0.029285, - 0.02138, - 0.0074334, - 0.013658, - -0.0042279 - ], - "facility": [ - -0.0089082, - -0.056378, - -0.0072267, - -0.039852, - -0.020042, - -0.0078142, - 0.024144, - -0.067787, - 0.00064814, - -0.0096858, - -0.047091, - -0.064089, - 0.060472, - 0.046573, - -0.034711, - -0.033867, - 0.13312, - 0.070534, - 0.063016, - 0.025626, - 0.051301, - -0.019338, - 0.017359, - 0.052168, - -0.025287, - 0.010261, - -0.049223, - 0.026094, - -0.033679, - 0.037882, - -0.046351, - 0.02335, - -0.041374, - -0.045542, - 0.0021735, - 0.02664, - 0.028207, - -0.011315, - 0.038657, - -0.039192, - 0.0076032, - -0.12524, - -0.0069554, - -0.00090472, - -0.0057829, - -0.047449, - 0.034625, - 0.023748, - -0.027911, - 0.029161, - 0.02061, - 0.016161, - 0.021685, - 0.059304, - -0.078953, - -0.014936, - 0.0075116, - 0.014681, - 0.0045735, - -0.018161, - 0.022424, - 0.011362, - 0.097156, - 0.0018188, - 0.034919, - -0.03277, - -0.0021746, - -0.029227, - 0.020633, - 0.0039894, - 0.070546, - -0.039136, - -0.0079332, - -0.039017, - 0.015868, - -0.00090113, - -0.0021023, - -0.011132, - -0.020235, - -0.015227, - 0.00094738, - 0.015156, - -0.011306, - 0.042928, - -0.046246, - 0.017113, - -0.048955, - -0.046645, - -0.026627, - -0.041909, - -0.026486, - 0.0016623, - -0.073256, - 0.0078569, - 0.010858, - 0.084153, - 0.031304, - -0.0063747, - 0.0017481, - 0.035278, - 0.057526, - 0.015079, - -0.0091607, - 0.043649, - -0.0093464, - -0.094015, - -0.023364, - -0.020857, - 0.0042563, - 0.012126, - -0.021847, - 0.12188, - 0.079519, - 0.033453, - 0.0076314, - -0.060929, - -0.047928, - -0.057102, - -0.049201, - 0.050098, - -0.019686, - 0.052237, - -0.022072, - 0.010178, - 0.068487, - 0.0058808, - -0.032353, - -0.076163, - 0.030448, - 0.062852, - 0.026829, - -0.070101, - 0.012162, - -0.06653, - 0.028303, - -0.053988, - 0.0068216, - 0.01012, - -0.0109, - 0.0042649, - -0.076081, - 0.027837, - 0.00035812, - -0.029336, - -0.051403, - -0.0004948, - 0.010895, - 0.029003, - -0.029435, - 0.059588, - 0.025851, - 0.027992, - -0.0099923, - -0.11229, - 0.011847, - 0.010703, - -0.025185, - 0.030043, - 0.021426, - 0.018144, - 0.017349, - 0.0095769, - -0.052759, - 0.056708, - 0.055378, - -0.0070398, - 0.021081, - -0.03885, - -0.041331, - 0.024082, - 0.05644, - 0.035962, - 0.0029936, - -0.0099575, - 0.059442, - 0.053215, - -0.0046455, - 0.011217, - -0.09904, - 0.087862, - 0.012198, - -0.0010056, - 0.0033905, - 0.076943, - -0.028683, - -0.013467, - -0.039664, - 0.06225, - 0.0079186, - -0.050425, - 0.022235, - 0.066032, - 0.012662, - -0.025815, - -0.020098, - -0.047028, - -0.017746, - 0.0292, - 0.02716, - -0.061806, - -0.13147, - 0.057107, - -0.046961, - 0.015864, - -0.018512, - -0.047365, - -0.03693, - -0.044579, - -0.059467, - -0.041298, - 0.065784, - -0.026249, - -0.0029248, - 0.063585, - -0.032273, - 0.054055, - 0.0045786, - 0.0093697, - 0.04457, - -0.0038734, - 0.0076194, - 0.022187, - -0.03122, - 0.089838, - 0.0088837, - 0.043023, - -0.043175, - 0.0184, - -0.025004, - 0.03012, - -0.082443, - -0.086793, - -0.040754, - -0.029461, - 0.019534, - 0.013783, - 0.019134, - 0.043951, - 0.017558, - 0.016568, - 0.068242, - -0.018652, - 0.047907, - -0.017653, - 0.009285, - 0.034798, - 0.0090283, - 0.04278, - -0.033948, - 0.041175, - -0.0086135, - 0.0050975, - 0.028989, - -0.038643, - -0.017572, - -0.013501, - 0.017892, - 0.040721, - -0.063308, - 0.059683, - 0.00051455, - -0.081347, - 0.010342, - -0.019126, - 0.00084768, - -0.066668, - -0.0048983, - 0.0070159, - -0.012305, - -0.00067178, - -0.01838, - 0.084853, - -0.12369, - -0.036727, - 0.0078912, - -0.0024753, - -0.0038069, - 0.037923, - -0.0035901, - 0.013326, - 0.032878, - -0.01729, - -0.015102, - 0.045618, - -0.036764, - 0.0074605, - -0.0046181, - 0.0045468, - 0.0076419, - 0.034939, - 0.03774, - 0.093171, - -0.0036938, - 0.001524, - 0.0049709, - -0.036733, - 0.030408, - -0.013181, - -0.038893, - 0.0091482 - ], - "civil": [ - 0.068903, - -0.16898, - 0.059198, - -0.094299, - 0.036129, - 0.11051, - 0.065506, - -0.093428, - 0.11208, - 0.10324, - 0.024446, - 0.0057108, - -0.019595, - 0.048102, - -0.026709, - 0.12266, - 0.20984, - 0.052184, - 0.070194, - 0.076774, - -0.030426, - -0.0035263, - 0.061562, - 0.056232, - -0.054901, - 0.014343, - -0.071435, - -0.0039146, - 0.041046, - -0.0097557, - 0.04445, - -0.087173, - 0.022536, - -0.12451, - 0.07253, - 0.081921, - -0.010117, - 0.15343, - -0.0081653, - 0.030599, - -0.056159, - -0.20631, - 0.087966, - 0.0060591, - -0.062132, - -0.001648, - -0.044266, - 0.049209, - -0.076425, - -0.058339, - -0.027332, - -0.03534, - 0.068829, - -0.067045, - -0.020126, - -0.031459, - -0.073961, - -0.027054, - -0.059739, - 0.014079, - 0.029597, - 0.034749, - 0.12722, - 0.033362, - 0.090472, - 0.016475, - 0.050141, - -0.046192, - 0.029599, - 0.038577, - 0.02443, - -0.077857, - 0.055457, - -0.072038, - -0.0025673, - -0.048828, - -0.078701, - -0.017638, - 0.029965, - 0.050636, - -0.022424, - 0.065108, - -0.04025, - 0.027457, - -0.092138, - 0.024774, - -0.029391, - 0.013372, - -0.091932, - -0.033233, - -0.014958, - 0.097933, - -0.16148, - -0.028495, - 0.0060796, - 0.078009, - -0.00067779, - -0.00017631, - 0.055537, - -0.024869, - 0.055927, - -0.07221, - -0.036965, - -0.086738, - 0.0063903, - -0.13102, - 0.083466, - 0.048277, - 0.065702, - -0.093925, - -0.090269, - 0.096115, - 0.040932, - 0.012883, - 0.031382, - -0.015087, - 0.012155, - 0.0012333, - -0.015448, - -0.043007, - 0.058065, - -0.10453, - 0.014188, - 0.022593, - 0.091083, - 0.060896, - 0.15461, - -0.046991, - -0.02007, - 0.093086, - -0.14838, - 0.051531, - -0.011183, - 0.025852, - 0.015227, - -0.039549, - 0.021536, - 0.046647, - -0.052129, - -0.0094163, - 0.036634, - -0.072733, - 0.014334, - -0.045868, - -0.021985, - -0.022406, - 0.10706, - -0.075899, - 0.014577, - -0.068728, - 0.092003, - 0.23323, - 0.032152, - -0.058591, - 0.0060799, - -0.059991, - -0.053911, - 0.013316, - -0.056055, - -0.097579, - 0.041518, - -0.022806, - -0.15715, - -0.0098957, - -0.10232, - 0.040899, - 0.034272, - 0.099908, - -0.026648, - -0.038679, - 0.045714, - -0.039387, - 0.092118, - 0.02517, - 0.015733, - 0.10794, - 0.02392, - 0.092218, - 0.00021697, - -0.019205, - -0.028147, - 0.0052464, - 0.003734, - 0.095255, - 0.025905, - -0.038973, - 0.066635, - 0.12117, - -0.01087, - -0.045116, - -0.046929, - 0.049399, - 0.064235, - 0.021467, - 0.0079219, - 0.051609, - -0.032414, - 0.019922, - -0.015691, - -0.045354, - -0.20857, - -0.036558, - 0.015924, - 0.025207, - -0.045612, - -0.0070758, - 0.056035, - 0.0019257, - 0.10243, - 0.018569, - 0.17015, - -0.015817, - -0.054903, - 0.076272, - 0.026378, - 0.016696, - 0.046624, - -0.039474, - -0.059075, - -0.096461, - 0.027832, - -0.078312, - 0.0047796, - 0.12285, - -0.021229, - 0.060173, - 0.039658, - 0.15596, - 0.0015578, - -0.077216, - 0.072772, - -0.028585, - -0.07487, - -0.035678, - 0.037674, - -0.0079712, - -0.033204, - -0.0029876, - -0.054417, - 0.0084057, - 0.092609, - 0.02488, - -0.030199, - 0.068274, - -0.16329, - -0.072339, - -0.027717, - -0.054371, - -0.045689, - -0.13394, - 0.049622, - -0.0039098, - -0.069439, - -0.062277, - -0.048583, - 0.020863, - 0.20985, - 0.055561, - -0.037012, - -0.048601, - -0.046839, - 0.019744, - -0.070918, - 0.019321, - -0.082138, - -0.10229, - 0.068879, - 0.14826, - -0.025012, - 0.011528, - 0.053006, - 0.084398, - -0.12454, - -0.01328, - -0.033198, - -0.10202, - -0.01978, - -0.020647, - -0.052627, - -0.09873, - 0.22129, - -0.006207, - -0.01502, - -0.0058656, - -0.09747, - 0.04762, - -0.10425, - -0.082503, - 0.016644, - 0.16039, - -0.0216, - -0.021214, - -0.065087, - 0.041959, - -0.10482, - -0.0015716, - -0.056764, - 0.074755, - 0.026724, - -0.059081 - ], - "communication": [ - 0.0040412, - 0.0023717, - -0.010711, - -0.0043115, - -0.027681, - 0.030882, - -0.0033269, - -0.061861, - 0.011423, - -0.0030961, - 0.020115, - -0.018777, - -0.037677, - 0.021851, - -0.030334, - 0.0037967, - 0.048772, - 0.0073711, - 0.015847, - 0.016719, - -0.059965, - -0.042174, - 0.070547, - 0.042551, - -0.044162, - 0.0087123, - -0.022176, - 0.034591, - -0.01903, - -0.021801, - 0.0047162, - 0.048055, - -0.0038028, - -0.048271, - 0.041257, - 0.03406, - 0.010579, - 0.0030302, - 0.018774, - -0.012105, - -0.04967, - -0.094873, - 0.01792, - 0.01476, - 0.016224, - -0.039564, - 0.0060382, - -0.021635, - -0.018338, - 0.00045622, - 0.011105, - -0.032738, - 0.065809, - -0.021279, - -0.025573, - 0.038822, - -0.016955, - 0.0026734, - -0.0030562, - 0.023734, - -0.0042621, - -0.0084974, - 0.056279, - -0.02679, - 0.017831, - 0.024239, - 0.012224, - 0.0031153, - -0.0027273, - 0.0035116, - -0.017318, - -0.0038167, - 0.0060494, - 0.026507, - -0.0046879, - -0.0078654, - 0.010928, - -0.014668, - -0.0032044, - -0.024727, - -0.027033, - -0.0093874, - -0.033866, - 0.020055, - 0.038922, - -0.024821, - -0.018222, - -0.0024328, - -0.010046, - -0.018918, - 0.016046, - 0.027067, - -0.060359, - -0.017614, - 0.0031692, - 0.048812, - -0.00060435, - 0.017927, - -0.027783, - 0.021556, - 0.031179, - 0.016007, - -0.0092377, - 0.014724, - 0.0012888, - -0.054923, - 0.0059742, - 0.014073, - 0.037538, - -0.022182, - -0.018866, - 0.043868, - 0.037591, - 0.030171, - -0.02008, - -0.053418, - -0.032552, - 0.012754, - -0.042149, - -0.0091488, - 0.022242, - 0.010342, - -0.0011438, - 0.021712, - 0.046486, - -0.018318, - -0.00447, - -0.042708, - 0.0084025, - 0.072791, - 0.009149, - -0.035979, - 0.0011426, - -0.016326, - 0.039532, - 0.020338, - 0.011636, - 0.020091, - 0.019443, - 0.030478, - 0.041198, - -0.016809, - 0.0041762, - 0.0099402, - -0.017651, - -0.0067783, - -0.039624, - -0.034903, - 0.02784, - -0.0037455, - 0.022624, - 0.03125, - 0.027698, - -0.064421, - 0.022923, - 0.030181, - 0.011468, - -0.001996, - 0.020375, - 0.029848, - 0.03351, - 0.0076868, - -0.064785, - 0.0082829, - -0.010508, - -0.017596, - 0.010556, - 0.0015378, - 0.02114, - 0.0053053, - 0.045514, - 0.014515, - -0.0035328, - 0.018676, - 0.010696, - 0.032472, - 0.02417, - 0.059225, - -0.025671, - -0.0010391, - 0.0046592, - 0.027652, - 0.0031628, - 0.0044473, - -0.013534, - -0.04066, - -0.041529, - 0.05962, - 0.02206, - -0.021015, - -0.013236, - 0.034235, - 0.0055221, - -0.013537, - -0.045867, - 0.00015021, - 0.013377, - 0.007593, - -0.022655, - 0.015941, - -0.099938, - 0.036502, - 0.003951, - 0.056113, - -0.016125, - 0.016832, - -0.03104, - -0.012066, - 0.0087882, - -0.0013817, - 0.059105, - 0.0035393, - -0.016856, - 0.021203, - 0.015907, - 0.027267, - -0.0047637, - -0.039601, - -0.02232, - -0.014468, - -0.044431, - -0.021493, - -0.00026291, - 0.059172, - 0.012277, - -0.035813, - 0.0054015, - 0.050082, - 0.030089, - -0.014374, - 0.0057728, - -0.027569, - -0.018363, - -0.026819, - 0.019806, - -0.0013565, - 0.022982, - 0.033826, - -0.020684, - -0.016379, - 0.047782, - 0.0093553, - 0.029353, - 0.010479, - -0.035291, - 0.0093094, - -0.022945, - -0.016518, - 0.0026542, - 0.020687, - 0.040109, - 0.023921, - 0.0078604, - -0.0073986, - 0.024062, - 0.0039284, - -0.010966, - 0.039143, - -0.0070882, - -0.026317, - -0.035264, - 0.025581, - 0.021943, - 0.00824, - 0.0073591, - -0.022936, - 0.044835, - 0.011199, - -0.025278, - 0.030121, - 0.0057413, - 0.030052, - -0.065634, - -0.022588, - -0.024482, - -0.0048, - 0.0059526, - 0.023375, - -0.046536, - 0.021937, - 0.053556, - -0.03012, - -0.049068, - -0.036048, - 0.00079581, - -0.0011737, - -0.042624, - 0.027917, - 0.0061598, - -0.0040009, - -0.0065521, - 0.020936, - -0.052986, - -0.046091, - 0.029006, - 0.042022, - -0.01072, - -0.020403, - 0.010464, - 0.021696 - ], - "public-health": [ - 0.011953, - -0.081338, - -0.01949, - 0.079824, - -0.019733, - -0.016637, - 0.001474, - -0.074922, - 0.05227, - 0.05967, - -0.02345, - 0.0010595, - 0.030405, - -0.048838, - -0.027638, - -0.0039009, - 0.076937, - 0.0022558, - 0.02925, - 0.0052842, - 0.055859, - 0.019266, - 0.018665, - 0.041675, - 0.01387, - -0.053148, - 0.02611, - 0.059194, - -0.033651, - -0.0037878, - -0.00091396, - -0.045984, - 0.010424, - -0.090995, - 0.065424, - 0.069121, - -0.033349, - -0.022772, - 0.039559, - -0.029796, - -0.017822, - -0.10156, - -0.0058081, - 0.058068, - 0.041507, - -0.020926, - -0.0089581, - 0.042363, - -0.018551, - 0.0059125, - -0.0082303, - -0.003981, - 0.00047536, - -0.027175, - 0.054092, - 0.048436, - -0.031069, - 0.047313, - 0.0051861, - -0.023958, - 0.0089877, - -0.016333, - 0.063277, - -0.026414, - 0.0047536, - 0.017324, - -0.011599, - -0.020907, - 0.029778, - 0.03679, - 0.0087331, - 0.02456, - 0.030032, - -0.0013446, - -0.009924, - 0.020887, - 0.016528, - -0.021208, - 0.017281, - 0.020278, - -0.0049637, - 0.064886, - -0.053665, - 0.024444, - -0.039822, - 0.033441, - -0.021234, - 0.0084884, - -0.0208, - 0.05189, - 0.021888, - 0.027236, - -0.082984, - 0.018846, - -0.018788, - 0.014449, - -0.0015463, - 0.017645, - 0.011212, - 0.021706, - -0.06222, - -0.031747, - -0.030005, - -0.019422, - -0.0047392, - -0.061154, - 0.044832, - -0.042298, - -0.0054628, - 0.011374, - -0.016617, - 0.061267, - -0.010021, - 0.01897, - 0.00036517, - 0.020143, - 0.013726, - -0.013434, - -0.0077117, - -0.003452, - -0.018364, - -0.018937, - -0.0059788, - 0.0094025, - 0.086859, - -0.028456, - -0.020745, - -0.031693, - 0.046005, - 0.06629, - -0.019318, - 0.045705, - -0.015781, - -0.03726, - 0.0035726, - -0.027922, - -0.0056474, - 0.072758, - 0.032372, - 0.036557, - 0.10104, - -0.00062996, - -0.018355, - 0.028191, - -0.051765, - -0.046183, - -0.0092128, - 0.060126, - 0.022292, - -0.050938, - 0.046303, - 0.12911, - -0.0081986, - -0.05481, - 0.049714, - -0.0095569, - -0.00084046, - 0.0070612, - 0.042596, - -0.017563, - 0.023528, - -0.016311, - -0.087567, - 0.027807, - -0.039726, - 0.0087521, - -0.004994, - -0.00038031, - 0.00085491, - -0.03347, - 0.0005231, - 0.024388, - 0.002406, - 0.011824, - -0.00075323, - 0.028009, - -0.033461, - -0.010491, - -0.039821, - 0.026929, - -0.032927, - -0.0017899, - 0.063393, - -0.037372, - -0.01056, - -0.044229, - 0.023172, - 0.090829, - -0.016559, - -0.027495, - 0.0033279, - 0.042589, - 0.075625, - -0.048443, - 0.039664, - -0.030602, - 0.04399, - 0.033763, - -0.028944, - -0.059496, - -0.10276, - -0.01444, - 0.0025576, - 0.045537, - -0.032521, - 0.017791, - 0.025413, - -0.0096848, - -0.025591, - -0.0043572, - 0.082265, - -0.0097036, - -0.029308, - 0.023967, - -0.013572, - 0.006602, - 0.0095813, - -0.030346, - -0.03321, - -0.042524, - -0.055598, - -0.015022, - -0.053281, - 0.067535, - 0.030764, - 0.021108, - 0.018297, - 0.073008, - 0.034276, - -0.026335, - -0.020705, - -0.056837, - -0.0028317, - -0.017403, - -0.011669, - 0.021364, - -0.0036917, - 0.0043245, - -0.012258, - -0.0071886, - 0.0058956, - 0.0016316, - -0.0040594, - 0.01561, - -0.079032, - 0.049772, - -0.0067155, - -0.0045507, - -0.01025, - 0.022435, - 0.0044307, - 0.013042, - -0.0080672, - -0.076989, - -0.041273, - 0.065379, - 0.023123, - 0.042407, - 0.051874, - -0.034297, - -0.031647, - -0.0084554, - -0.020343, - -0.012029, - 0.017794, - 0.024621, - 0.011115, - 0.080888, - 0.014728, - 0.051626, - -0.050066, - 0.042945, - -0.060729, - -0.01455, - 0.050309, - -0.048005, - -0.062219, - 0.014935, - 0.014421, - -0.03594, - 0.13084, - -0.010389, - -0.066753, - -0.00020515, - 0.011515, - 0.054591, - -0.02157, - -0.039206, - 0.048916, - 0.0039639, - 0.047689, - 0.0026423, - -0.0045109, - 0.075169, - 0.0033352, - 0.012458, - -0.020868, - 0.051477, - -0.0024041, - -0.020264 - ], - "profession": [ - 0.0099404, - -0.028382, - 0.060503, - -0.034067, - -0.02347, - -0.046706, - 0.021075, - -0.068096, - 0.033968, - -0.035772, - -0.034986, - -0.018245, - -0.045493, - -0.0027343, - 0.012824, - 0.089624, - 0.077304, - 0.01921, - 0.0031264, - -0.0077222, - 0.019996, - 0.0088988, - 0.0314, - 0.032945, - -0.040028, - 0.0050995, - -0.021676, - 0.027538, - -0.035784, - -0.010736, - -0.014766, - 0.019821, - -0.012198, - -0.032704, - -0.028082, - 0.029073, - 0.014618, - 0.011025, - -0.016891, - -0.018028, - 0.039101, - -0.072489, - 0.023573, - -0.05912, - 0.019343, - -0.017402, - -0.0077572, - -0.022168, - -0.016887, - 0.001709, - -0.0093483, - -0.027833, - 0.017938, - -0.0079683, - -0.045379, - 0.016061, - -0.028994, - 0.076234, - -0.0078702, - -0.035836, - 0.047321, - -0.0024398, - 0.080808, - 0.005166, - -0.008585, - 0.039399, - -0.07196, - -0.010731, - 0.039192, - -0.058988, - 0.046633, - -0.021839, - 0.018352, - -0.0025998, - 0.050813, - -0.0060864, - -0.027924, - 0.023294, - 0.018568, - -0.0059437, - -0.0018754, - 0.041028, - -0.019315, - 0.034294, - -0.069443, - -0.035309, - 0.0042484, - -0.0039089, - -0.032351, - 0.0095832, - 0.074193, - 0.02935, - -0.060829, - -0.02038, - -0.0065087, - 0.065158, - 0.011826, - -0.0023778, - 0.059096, - 0.0080352, - -0.04842, - -0.022851, - 0.067981, - -0.019847, - -0.0044865, - -0.055837, - 0.080174, - 0.017597, - 0.0020752, - 0.0022902, - -0.022404, - 0.058914, - 0.011691, - 0.015102, - -0.0073929, - 0.010601, - -0.030552, - -0.033336, - -0.026214, - -0.0011962, - 0.014219, - -0.039638, - -0.0029111, - 0.000059357, - 0.024444, - 0.035398, - -0.017633, - -0.095394, - 0.0055662, - 0.080514, - 0.0031434, - 0.0088801, - -0.026664, - -0.014331, - -0.030194, - 0.0037006, - -0.014416, - 0.014129, - 0.035035, - -0.019061, - -0.012863, - -0.038308, - -0.043927, - 0.0088537, - -0.017815, - -0.019321, - -0.038538, - -0.062141, - 0.033991, - -0.01552, - 0.060227, - 0.021168, - -0.021963, - -0.089534, - 0.014304, - 0.013984, - 0.014406, - 0.034539, - 0.0024492, - -0.048263, - 0.035728, - 0.069737, - -0.052723, - 0.024532, - -0.026197, - -0.045122, - -0.026603, - -0.017715, - -0.024386, - -0.013993, - 0.012722, - -0.0023711, - 0.011973, - 0.018991, - 0.045929, - 0.038767, - -0.0012587, - 0.090449, - -0.0092974, - -0.03778, - -0.033242, - -0.030673, - 0.012101, - -0.023565, - -0.032896, - -0.03296, - 0.041108, - 0.058301, - -0.018748, - 0.017538, - -0.069037, - 0.082127, - -0.013226, - -0.012946, - 0.021855, - 0.011027, - -0.0094126, - 0.020618, - -0.017725, - -0.018407, - -0.12885, - 0.018468, - 0.0037313, - -0.009724, - 0.01627, - 0.034899, - 0.031148, - -0.015493, - 0.011556, - -0.0044491, - 0.081736, - 0.0068013, - -0.0058429, - 0.019979, - -0.033872, - 0.031973, - 0.029813, - -0.038299, - -0.0095483, - -0.024274, - -0.055792, - -0.044386, - -0.05218, - 0.07931, - -0.0018476, - -0.02482, - 0.027962, - 0.061292, - 0.028353, - -0.0041597, - 0.041936, - -0.028803, - -0.052446, - 0.0042334, - 0.00272, - 0.008248, - 0.0083033, - 0.012335, - -0.016385, - 0.0028187, - 0.059745, - -0.020852, - 0.0199, - 0.042101, - 0.020701, - -0.035365, - -0.075468, - -0.046141, - 0.012637, - 0.0072951, - 0.025523, - 0.022282, - 0.024568, - -0.017444, - 0.012013, - -0.011684, - -0.018355, - 0.058954, - 0.033115, - 0.028642, - -0.034657, - 0.023813, - 0.0015394, - -0.001416, - 0.032681, - 0.045278, - 0.034777, - 0.026262, - -0.0029257, - -0.019099, - -0.0069466, - 0.037204, - -0.0814, - -0.025947, - 0.03763, - -0.007773, - 0.0055252, - 0.031298, - 0.045704, - -0.017164, - 0.046704, - 0.057987, - -0.041095, - -0.036355, - -0.0040621, - 0.015196, - -0.0081404, - -0.058035, - -0.024685, - 0.01914, - 0.017001, - -0.010547, - -0.011668, - 0.0010801, - -0.038149, - 0.016359, - 0.010111, - 0.036631, - -0.00098085, - -0.01095 - ], - "landlines": [ - 0.059566, - 0.015885, - -0.02939, - -0.031402, - 0.0061511, - 0.025216, - 0.010456, - -0.049116, - 0.054884, - -0.051595, - -0.016248, - -0.10916, - -0.14345, - -0.012884, - 0.0086216, - -0.022687, - 0.062558, - -0.027547, - 0.039432, - 0.01488, - 0.033614, - -0.046827, - 0.037951, - 0.0019824, - 0.070279, - -0.027, - -0.0034845, - 0.029022, - 0.06624, - 0.012528, - -0.047532, - 0.087929, - -0.035361, - 0.011057, - 0.025919, - -0.015072, - 0.033711, - 0.030187, - -0.0039085, - -0.0025675, - -0.047725, - -0.017454, - -0.0065865, - 0.040673, - -0.016864, - -0.096308, - -0.022092, - -0.040909, - -0.032184, - -0.0027177, - -0.029166, - -0.047098, - 0.058622, - 0.025465, - -0.10077, - 0.092186, - 0.0013826, - 0.043681, - -0.052599, - 0.015043, - -0.043319, - 0.026133, - 0.15977, - -0.029602, - 0.0032995, - -0.00010158, - -0.03995, - -0.019195, - -0.033757, - 0.010525, - -0.0029183, - 0.024252, - 0.059575, - -0.0053686, - -0.053798, - 0.0084634, - 0.048577, - -0.030941, - 0.011872, - 0.0092776, - 0.0054045, - -0.051147, - 0.029308, - 0.082187, - 0.0061809, - -0.032599, - -0.030112, - -0.034708, - -0.089857, - -0.0065408, - -0.052774, - -0.073673, - -0.054618, - 0.076047, - 0.0086029, - 0.024344, - -0.035571, - -0.0014426, - -0.031276, - -0.033795, - 0.049166, - -0.0080046, - -0.058724, - 0.0039255, - 0.020693, - -0.034113, - 0.0012796, - 0.041437, - 0.14651, - -0.075879, - 0.011035, - 0.016166, - 0.07204, - 0.086932, - -0.12046, - 0.00012404, - -0.01406, - 0.017892, - -0.043873, - -0.059985, - 0.023647, - 0.10291, - 0.020549, - -0.0085953, - 0.071069, - 0.020329, - 0.0033408, - -0.020413, - 0.0074874, - 0.079745, - -0.0018244, - 0.038388, - -0.033175, - 0.014292, - 0.028843, - -0.023562, - 0.048543, - -0.014568, - -0.01748, - 0.070428, - 0.042313, - -0.055212, - 0.011928, - 0.047593, - 0.02944, - -0.013966, - 0.014049, - 0.12507, - -0.017318, - -0.095663, - 0.032259, - 0.052245, - -0.030499, - -0.013141, - 0.0088307, - 0.053309, - -0.043193, - -0.017751, - -0.033688, - 0.017692, - 0.049607, - 0.019594, - -0.0024113, - -0.010317, - -0.027255, - 0.0025156, - 0.038939, - 0.06042, - 0.023119, - 0.00061542, - -0.015527, - 0.059029, - 0.044414, - 0.085157, - -0.064149, - 0.049623, - 0.020674, - 0.037676, - -0.031134, - 0.036346, - 0.059994, - 0.015974, - 0.020774, - 0.001348, - 0.014956, - -0.075527, - -0.020414, - 0.10815, - 0.02119, - -0.043806, - 0.00495, - 0.039758, - -0.10611, - 0.029108, - 0.0049934, - -0.018014, - 0.0001746, - 0.021941, - 0.018692, - 0.055828, - -0.16431, - -0.0031158, - -0.039829, - 0.066778, - 0.025523, - 0.059533, - 0.048501, - -0.048392, - -0.10197, - -0.035396, - 0.042071, - -0.0077213, - 0.033078, - 0.051513, - -0.028979, - -0.06917, - -0.0062715, - -0.0076293, - -0.0030037, - -0.053382, - 0.06098, - -0.048736, - 0.047493, - 0.073812, - 0.0069465, - -0.042986, - 0.026718, - 0.017266, - 0.0031133, - 0.017495, - 0.018997, - 0.019033, - -0.097184, - 0.020999, - 0.047445, - 0.052035, - 0.010052, - 0.080004, - 0.011442, - -0.025217, - -0.020967, - -0.0063096, - 0.08822, - -0.0053621, - -0.050248, - -0.0070641, - 0.021614, - -0.0026207, - 0.0070808, - -0.014756, - 0.0046359, - 0.061017, - -0.0036474, - 0.052102, - -0.011681, - 0.064283, - 0.014479, - 0.0049501, - -0.039936, - -0.015715, - -0.0022109, - -0.01526, - 0.031043, - -0.010328, - 0.037777, - 0.025923, - -0.035749, - 0.033424, - 0.024128, - 0.088127, - -0.050418, - 0.065724, - -0.069849, - -0.0054238, - -0.067996, - -0.0078563, - 0.028897, - 0.073153, - 0.072732, - -0.016554, - -0.026757, - -0.069635, - -0.09006, - 0.032089, - -0.029948, - -0.029476, - -0.090972, - 0.051669, - 0.01145, - -0.03799, - 0.03344, - 0.0018712, - -0.040137, - 0.043404, - 0.010662, - 0.001861, - -0.083659, - 0.024432, - 0.020987, - -0.054057 - ], - "skunks": [ - 0.060822, - -0.035414, - 0.019426, - -0.039694, - -0.042854, - 0.049694, - 0.054421, - -0.08182, - 0.00963, - 0.0092399, - -0.042091, - -0.0056215, - 0.034349, - 0.024937, - -0.040757, - -0.059379, - 0.020416, - -0.015836, - 0.027807, - 0.025754, - 0.040405, - -0.09256, - 0.015055, - 0.03097, - 0.022254, - -0.10748, - 0.023542, - 0.01391, - 0.11647, - 0.067689, - -0.037619, - -0.044237, - -0.012338, - 0.075635, - 0.017866, - 0.020779, - -0.053353, - -0.089155, - -0.060875, - -0.095025, - 0.050472, - -0.050838, - 0.046128, - -0.056832, - 0.075192, - 0.00048192, - -0.029944, - 0.022573, - -0.0069133, - 0.0028712, - -0.010554, - 0.092685, - 0.091269, - -0.09534, - -0.047933, - -0.010844, - 0.032806, - 0.02575, - -0.042026, - 0.033366, - -0.0015066, - -0.092769, - 0.047923, - -0.06238, - -0.05835, - 0.038508, - 0.011924, - -0.023967, - -0.0080334, - 0.041725, - 0.10707, - 0.041403, - 0.070737, - 0.027482, - 0.0035546, - -0.0055279, - 0.0021585, - -0.040647, - 0.085777, - 0.02385, - -0.049393, - -0.0042157, - 0.079378, - 0.02109, - 0.040825, - -0.045775, - 0.059847, - -0.023615, - 0.0819, - 0.049815, - 0.0062066, - -0.03837, - -0.087244, - 0.02868, - 0.10729, - 0.12014, - -0.032997, - 0.11459, - 0.065224, - -0.024758, - -0.038618, - 0.11605, - -0.067298, - 0.043491, - 0.061194, - -0.064376, - -0.075812, - -0.011451, - -0.0031223, - 0.0094988, - -0.071228, - 0.046677, - 0.0038364, - 0.04854, - 0.020794, - -0.059613, - 0.0021179, - -0.054721, - -0.018157, - 0.099242, - -0.063287, - 0.1482, - 0.065343, - -0.090056, - 0.12459, - 0.017852, - -0.044897, - 0.023419, - -0.036167, - 0.07137, - 0.056421, - 0.12175, - -0.0037056, - 0.012752, - 0.065876, - -0.014943, - 0.0027217, - 0.054874, - 0.025032, - -0.01326, - 0.0024036, - -0.0072114, - 0.035327, - -0.015114, - 0.086779, - -0.024114, - 0.057292, - 0.068461, - -0.023483, - -0.17029, - 0.021151, - 0.11454, - -0.016242, - 0.0028432, - 0.02343, - -0.0044195, - -0.005308, - -0.076306, - 0.044006, - -0.033768, - 0.0030562, - -0.036151, - -0.037955, - -0.042672, - 0.089876, - -0.055802, - 0.051339, - 0.027611, - 0.0092519, - -0.054867, - -0.031968, - -0.011151, - 0.027651, - 0.036945, - 0.015307, - 0.095138, - 0.027915, - 0.019412, - 0.039065, - -0.047199, - 0.097474, - -0.0076082, - -0.069713, - -0.045233, - 0.039989, - -0.0621, - -0.013314, - 0.18597, - 0.040925, - -0.025931, - 0.046102, - 0.047819, - -0.15998, - 0.023542, - -0.016816, - 0.01597, - 0.049143, - 0.056904, - 0.063772, - -0.07809, - -0.12929, - 0.047345, - -0.055512, - 0.043206, - 0.0044732, - -0.096311, - -0.050395, - 0.077698, - -0.016214, - -0.087122, - 0.073924, - 0.0091365, - 0.094113, - -0.064128, - 0.072616, - -0.030637, - -0.035275, - -0.07357, - -0.013103, - -0.045933, - 0.0050721, - -0.0097353, - 0.0093284, - 0.036767, - 0.048127, - -0.0074778, - 0.0051468, - 0.063797, - 0.015824, - 0.0025798, - -0.062127, - -0.019698, - -0.07504, - -0.031689, - 0.008183, - -0.10079, - 0.11943, - -0.08776, - 0.0032383, - -0.0084023, - -0.00013979, - -0.0085542, - 0.031973, - -0.02927, - 0.047359, - 0.11549, - 0.024047, - 0.0010708, - -0.026999, - 0.0081881, - -0.0093707, - 0.069994, - -0.0042429, - -0.042022, - -0.0065233, - 0.014405, - 0.048883, - -0.033632, - 0.077812, - -0.069115, - 0.068039, - 0.030226, - -0.10124, - -0.054808, - 0.011843, - 0.046128, - 0.064435, - -0.0081789, - -0.067433, - 0.044526, - -0.078337, - 0.045411, - -0.076489, - -0.0076994, - 0.0088839, - -0.03115, - -0.10185, - 0.028619, - -0.023098, - -0.024976, - 0.031887, - 0.034207, - -0.0013071, - -0.059886, - -0.055995, - 0.075595, - 0.07867, - -0.041873, - 0.0039251, - -0.037989, - 0.0057909, - -0.016628, - -0.057717, - -0.03486, - -0.043294, - -0.052278, - -0.041473, - 0.094281, - -0.052559, - 0.03354 - ], - "services": [ - 0.050394, - -0.0224, - 0.026359, - 0.0062878, - 0.023889, - -0.033945, - 0.015787, - -0.083173, - 0.049709, - -0.0015049, - 0.018881, - -0.044542, - -0.034298, - 0.0074143, - 0.0021383, - 0.043684, - 0.09155, - -0.026613, - 0.076159, - -0.00014191, - -0.042887, - -0.01923, - 0.0078346, - 0.04838, - -0.017045, - -0.021081, - -0.034779, - -0.0098328, - 0.075887, - -0.0015132, - 0.00028905, - -0.0094251, - -0.062697, - -0.05549, - 0.067842, - 0.062475, - 0.010454, - 0.031461, - 0.01979, - -0.016729, - -0.0070237, - -0.10877, - -0.006975, - -0.0071065, - -0.029549, - -0.041894, - -0.0091558, - -0.039771, - -0.035806, - -0.013279, - -0.051243, - -0.008382, - 0.020257, - -0.032635, - -0.097587, - 0.023817, - -0.069649, - 0.027016, - 0.0064698, - -0.025895, - -0.02846, - 0.0013871, - 0.16424, - 0.025326, - 0.018183, - -0.008124, - -0.025169, - -0.069802, - -0.027959, - -0.066362, - 0.02166, - -0.036544, - 0.027449, - -0.043291, - -0.034074, - -0.015382, - -0.0002897, - -0.028295, - 0.0019082, - -0.023606, - 0.0027327, - -0.020176, - -0.024587, - 0.073646, - -0.0049186, - 0.004994, - -0.032834, - -0.02665, - -0.065086, - -0.0046602, - -0.0015792, - 0.044755, - -0.076677, - 0.044768, - -0.050935, - 0.063316, - 0.018917, - 0.017328, - -0.0298, - 0.011533, - 0.014669, - 0.016933, - -0.030548, - 0.017594, - 0.045864, - -0.039172, - 0.051043, - 0.015459, - 0.043379, - -0.087643, - -0.031055, - 0.060328, - 0.077538, - 0.067585, - -0.0056946, - -0.022035, - -0.02807, - -0.010167, - -0.036951, - 0.021405, - -0.011837, - 0.012746, - 0.043781, - -0.035787, - 0.12593, - -0.0091331, - -0.0186, - -0.041568, - 0.029411, - 0.11991, - 0.0019862, - 0.034979, - -0.0027946, - -0.015969, - 0.045529, - 0.037749, - -0.034097, - 0.0036232, - -0.031236, - 0.028965, - -0.024399, - 0.0097728, - -0.062195, - 0.01027, - -0.030591, - 0.043879, - -0.020287, - 0.0033207, - 0.0086242, - 0.074327, - 0.026957, - 0.060565, - 0.012098, - -0.12117, - 0.03206, - -0.00086055, - -0.071301, - 0.0068621, - -0.022211, - -0.0066911, - 0.040708, - -0.016951, - -0.010768, - 0.007435, - -0.0016307, - 0.032994, - 0.020061, - -0.033139, - -0.04748, - -0.021244, - 0.048977, - 0.011023, - 0.032257, - 0.016584, - 0.033777, - 0.040953, - -0.041492, - 0.038985, - -0.05564, - 0.000158, - 0.0073333, - -0.025191, - -0.016126, - 0.015612, - -0.030002, - -0.019094, - -0.0088846, - 0.081388, - -0.0022431, - -0.014766, - -0.039578, - 0.09185, - -0.030455, - -0.015986, - 0.052454, - -0.05513, - 0.0057975, - -0.05934, - 0.040176, - -0.033717, - -0.15444, - 0.038931, - -0.023191, - 0.042919, - 0.011821, - 0.031897, - -0.032083, - -0.027724, - -0.033849, - -0.020204, - 0.1258, - 0.017848, - 0.017201, - -0.0070295, - -0.0047497, - 0.010339, - -0.0083299, - -0.013546, - -0.074339, - 0.047735, - -0.0042224, - -0.054902, - 0.044181, - 0.10481, - 0.058246, - -0.0083173, - 0.020593, - 0.038991, - 0.0034672, - 0.022128, - -0.0043191, - -0.0016381, - -0.099689, - -0.033211, - 0.053249, - 0.024933, - -0.016059, - 0.022274, - -0.0022378, - -0.019544, - -0.006384, - 0.0044811, - 0.015481, - -0.079742, - 0.015268, - 0.010191, - -0.00061785, - -0.049561, - 0.0068474, - 0.023998, - 0.040764, - 0.0020059, - 0.02781, - 0.035681, - -0.062851, - 0.058772, - -0.021164, - 0.022388, - -0.029527, - 0.023687, - -0.025669, - 0.020217, - -0.026108, - -0.020089, - 0.029427, - -0.022828, - 0.057803, - -0.033038, - 0.038882, - 0.065586, - 0.012449, - 0.061785, - -0.10603, - -0.044036, - -0.047289, - 0.032303, - 0.03204, - 0.039101, - -0.028883, - -0.0045076, - 0.032602, - -0.016559, - -0.040099, - 0.046797, - 0.00061965, - 0.0050214, - -0.067865, - 0.043104, - -0.022617, - -0.017647, - 0.036133, - 0.049864, - -0.045412, - 0.0099611, - -0.033636, - 0.0243, - -0.013214, - 0.029134, - -0.0028048, - -0.025703 - ], - "bitcoin": [ - 0.011966, - -0.051965, - -0.025608, - 0.013061, - -0.067778, - 0.018267, - 0.000546, - 0.0040726, - 0.035167, - 0.049282, - -0.0021664, - -0.018389, - -0.22658, - -0.018224, - -0.037933, - 0.08263, - 0.10919, - -0.0077271, - 0.029213, - -0.063973, - -0.038968, - 0.05816, - 0.081237, - 0.018738, - 0.060402, - 0.081022, - 0.063396, - -0.0082508, - 0.062041, - -0.017264, - 0.10914, - 0.014284, - -0.15759, - 0.0078986, - 0.025612, - 0.021312, - 0.113, - -0.026587, - -0.1649, - 0.055763, - -0.091811, - -0.073, - 0.02727, - 0.045795, - -0.029839, - 0.036577, - 0.027133, - 0.042389, - 0.067895, - 0.02179, - -0.051478, - -0.037107, - -0.0012326, - -0.017651, - -0.069324, - -0.049272, - 0.083022, - 0.014699, - -0.040489, - -0.01903, - 0.048138, - -0.04803, - 0.064167, - 0.080196, - -0.068713, - -0.0012052, - 0.19428, - 0.022379, - -0.047695, - -0.032719, - -0.058938, - -0.037521, - 0.0041485, - -0.056431, - -0.027735, - 0.011164, - -0.017321, - 0.02534, - -0.039231, - -0.075774, - 0.014636, - -0.0051114, - -0.032881, - 0.029525, - -0.068556, - -0.085517, - -0.030327, - -0.03563, - 0.064083, - -0.037826, - 0.042663, - 0.044311, - -0.086949, - 0.010742, - -0.087436, - 0.039687, - -0.0031186, - -0.17421, - 0.006065, - 0.12603, - -0.12742, - -0.096747, - 0.07027, - -0.046644, - -0.033079, - -0.094527, - -0.070171, - 0.0041864, - -0.053128, - -0.026942, - 0.0097995, - 0.051172, - 0.071467, - 0.016724, - -0.0061036, - 0.081215, - -0.038387, - 0.0070279, - -0.051198, - 0.10412, - -0.049125, - -0.0172, - 0.12109, - -0.020664, - 0.027109, - -0.051904, - -0.057113, - -0.08928, - 0.033113, - 0.022815, - 0.039354, - 0.026505, - -0.061505, - -0.053798, - 0.1302, - -0.01167, - -0.026444, - 0.017421, - -0.042529, - -0.043715, - 0.06132, - 0.043509, - -0.0044182, - 0.030195, - -0.021429, - 0.072058, - -0.093656, - -0.17586, - 0.021427, - -0.070311, - 0.0096509, - 0.059696, - 0.0090145, - -0.067719, - -0.033885, - 0.01491, - 0.030062, - 0.029639, - -0.0096826, - 0.040014, - 0.042141, - 0.1212, - -0.052774, - 0.029347, - 0.0071617, - -0.14816, - 0.064918, - 0.015682, - 0.02758, - 0.063229, - 0.0033713, - 0.092512, - 0.010222, - 0.040616, - -0.0042484, - 0.067043, - -0.059595, - -0.011861, - -0.0090646, - 0.021444, - -0.040877, - 0.03244, - -0.031942, - -0.039594, - -0.010017, - -0.11438, - 0.019721, - 0.12728, - 0.070109, - 0.0040743, - 0.038988, - 0.032868, - -0.027043, - 0.056732, - 0.0559, - -0.18585, - -0.086489, - 0.0034157, - -0.035448, - 0.01786, - -0.21849, - 0.0024387, - -0.037012, - 0.070838, - -0.033077, - -0.015642, - 0.037964, - -0.1042, - -0.05944, - -0.031198, - 0.1008, - 0.0029183, - -0.062, - -0.062312, - 0.057875, - 0.078993, - -0.029974, - 0.048116, - 0.046819, - 0.026854, - 0.083837, - -0.095576, - -0.1102, - 0.093209, - -0.026518, - 0.1768, - 0.015334, - 0.11448, - 0.075007, - -0.048628, - -0.12466, - -0.068631, - -0.08731, - -0.021425, - 0.055766, - -0.054066, - 0.042339, - 0.093066, - 0.03036, - -0.039201, - 0.022413, - 0.019838, - 0.10035, - 0.023554, - -0.024069, - -0.079326, - -0.094517, - 0.041407, - -0.033961, - -0.015155, - 0.017642, - 0.0023393, - 0.041902, - -0.035576, - 0.039187, - 0.0090046, - -0.07041, - -0.038127, - -0.051016, - 0.0036731, - 0.06166, - 0.11201, - -0.0073352, - -0.036603, - 0.01164, - -0.0081637, - 0.049129, - -0.024105, - 0.033315, - 0.014972, - -0.038825, - 0.046723, - -0.12343, - 0.0091525, - -0.036825, - -0.040749, - 0.097243, - -0.055935, - 0.088431, - -0.089767, - 0.11425, - 0.029587, - -0.0055255, - -0.075664, - -0.085018, - -0.14993, - -0.041127, - 0.0055596, - -0.017641, - -0.023763, - -0.16334, - -0.081355, - -0.018245, - 0.037188, - -0.011547, - -0.11412, - 0.099752, - 0.010556, - -0.090676, - -0.066811 - ], - "accomplishments": [ - -0.012011, - -0.042738, - 0.020047, - 0.0014948, - -0.0061528, - -0.0084353, - -0.031276, - -0.05994, - 0.031589, - 0.011969, - -0.006743, - -0.04133, - 0.010781, - 0.048, - 0.0053954, - 0.036095, - 0.023966, - 0.012336, - 0.024622, - 0.029269, - 0.0025422, - 0.012326, - -0.010108, - 0.036695, - -0.046271, - -0.018472, - -0.026643, - -0.008706, - 0.062718, - -0.027488, - 0.0127, - -0.063146, - -0.001054, - -0.042097, - -0.010073, - 0.033818, - -0.040726, - -0.0019791, - -0.021023, - -0.056462, - 0.012742, - -0.031527, - 0.026967, - 0.028318, - 0.023447, - 0.015826, - 0.00066749, - -0.0072329, - 0.0021455, - -0.0094521, - -0.0033855, - 0.014015, - -0.028148, - 0.0035426, - -0.026173, - 0.022771, - -0.050172, - 0.015846, - -0.02382, - 0.00047109, - -0.000058095, - 0.011141, - 0.075322, - -0.048928, - 0.032083, - -0.0092832, - -0.0065728, - 0.012236, - 0.0023199, - -0.0179, - 0.0025392, - -0.033035, - 0.02469, - 0.00092222, - 0.029165, - 0.019213, - -0.012895, - -0.030577, - 0.046876, - 0.070909, - 0.022623, - 0.021951, - -0.010386, - 0.040437, - 0.027458, - -0.029555, - -0.029867, - 0.0016605, - -0.022636, - -0.0021008, - 0.0092072, - -0.017609, - -0.035308, - -0.0074752, - 0.032491, - 0.010256, - -0.0091833, - -0.0090288, - 0.061074, - 0.051405, - 0.025271, - -0.032721, - 0.0073022, - 0.016872, - 0.017817, - 0.0098089, - 0.0059885, - 0.00079962, - 0.00771, - 0.043177, - 0.0075906, - 0.028547, - 0.013894, - 0.00064622, - 0.022024, - 0.0011661, - -0.01468, - -0.0281, - -0.016866, - -0.004139, - -0.028385, - -0.018745, - -0.010447, - 0.0030583, - 0.10179, - 0.020356, - -0.015419, - -0.063078, - 0.034663, - 0.063905, - 0.017169, - 0.031968, - -0.0056201, - 0.012223, - -0.01496, - -0.067293, - 0.051999, - 0.045939, - -0.022756, - 0.014124, - 0.0078188, - -0.02203, - 0.0027108, - -0.004583, - -0.0092406, - 0.02069, - -0.0081703, - -0.016543, - 0.035554, - -0.0020217, - 0.0034515, - 0.026398, - 0.018369, - -0.060202, - -0.0088145, - -0.015515, - 0.068162, - 0.021104, - 0.0037976, - 0.010228, - 0.021806, - 0.059109, - -0.0093129, - -0.020828, - -0.002026, - 0.0020196, - -0.026905, - -0.044972, - -0.02035, - -0.016434, - 0.060723, - 0.016034, - 0.01108, - 0.0031135, - 0.005974, - 0.018943, - -0.019338, - 0.023706, - -0.012391, - 0.014304, - 0.0035719, - 0.0062022, - 0.053969, - -0.03439, - -0.018025, - -0.046583, - -0.0066198, - 0.054342, - -0.0025266, - 0.014568, - 0.012197, - 0.05424, - -0.060331, - -0.016271, - -0.011784, - -0.0083959, - -0.027772, - -0.014877, - -0.040954, - -0.031895, - -0.092386, - 0.0074854, - 0.011703, - -0.056332, - -0.0061452, - -0.0051555, - 0.029877, - 0.029229, - 0.019904, - -0.034646, - 0.038942, - 0.036051, - 0.013506, - 0.0030654, - 0.046562, - 0.0006925, - -0.0017824, - 0.024478, - -0.056307, - -0.0021977, - -0.033887, - -0.022739, - 0.026033, - 0.054289, - 0.025075, - 0.014192, - 0.025475, - 0.055203, - 0.0042519, - -0.0099787, - 0.014036, - -0.036116, - -0.046553, - 0.0044793, - 0.046081, - -0.01792, - 0.02318, - -0.014218, - -0.019138, - 0.039215, - -0.015025, - 0.023374, - 0.016294, - -0.041265, - -0.021983, - 0.018018, - -0.0084484, - -0.057876, - 0.025635, - -0.0081241, - 0.017986, - 0.017514, - 0.03226, - -0.0042849, - 0.00023419, - -0.027117, - 0.0018587, - 0.032848, - 0.039127, - 0.020231, - -0.038597, - -0.001569, - 0.028029, - -0.035838, - 0.033636, - -0.020497, - 0.0045014, - -0.011157, - 0.014338, - -0.014553, - 0.0095032, - 0.050865, - -0.058671, - -0.025365, - 0.032315, - -0.017896, - -0.018911, - -0.014215, - 0.0049157, - 0.015215, - 0.022536, - 0.017973, - 0.019431, - -0.024729, - 0.047882, - 0.0054116, - -0.060861, - 0.0066981, - -0.058052, - 0.013224, - 0.017051, - 0.021666, - -0.035962, - 0.0048285, - 0.0085458, - 0.038907, - -0.0039018, - 0.036447, - -0.030319, - -0.0028328 - ], - "Religion": [ - 0.07103, - -0.016691, - 0.097, - -0.10074, - 0.035802, - -0.0096745, - -0.02213, - -0.041313, - 0.045608, - 0.013018, - -0.010531, - -0.094282, - 0.030322, - -0.031036, - -0.0013999, - -0.03004, - 0.081762, - -0.020708, - 0.063772, - -0.028321, - -0.079429, - 0.022556, - 0.0091248, - 0.041417, - 0.056491, - 0.034244, - 0.00019366, - 0.039257, - 0.030795, - 0.019926, - 0.021076, - 0.0014864, - 0.011532, - 0.030389, - 0.070473, - 0.044395, - 0.025987, - -0.027044, - 0.030599, - 0.035053, - -0.042433, - 0.066118, - -0.020553, - 0.016331, - -0.04037, - -0.0048069, - -0.054364, - -0.0025155, - -0.0089226, - -0.065626, - -0.0015728, - -0.016784, - 0.019255, - -0.05378, - -0.041797, - 0.089142, - -0.009143, - -0.04084, - -0.047798, - 0.0084281, - 0.01705, - 0.0038139, - -0.041887, - -0.00092149, - -0.0069204, - 0.014893, - 0.0062459, - 0.046253, - 0.051586, - -0.01759, - -0.0017801, - 0.033971, - -0.053211, - -0.04396, - -0.053398, - -0.027725, - 0.03071, - -0.10472, - 0.085222, - 0.04292, - 0.02524, - 0.030468, - -0.026588, - 0.01696, - 0.012923, - -0.018209, - 0.0083614, - -0.088807, - -0.0065142, - 0.077733, - 0.059037, - 0.017638, - -0.030074, - 0.011887, - 0.000050528, - 0.10482, - 0.009663, - -0.05221, - 0.080011, - -0.039531, - 0.039533, - 0.019452, - 0.06656, - -0.089739, - -0.052796, - -0.091061, - 0.032744, - 0.033477, - 0.012821, - -0.014456, - 0.0049237, - 0.061624, - 0.038701, - -0.01155, - -0.020643, - 0.010702, - 0.045001, - 0.029314, - 0.041938, - 0.044213, - 0.05647, - 0.0074048, - -0.034123, - -0.071387, - 0.0051265, - 0.059256, - -0.1267, - -0.069697, - 0.01068, - 0.21458, - -0.000090186, - 0.016466, - 0.022593, - 0.004698, - 0.020046, - 0.056496, - -0.021391, - -0.0083454, - 0.013269, - -0.049801, - 0.018712, - -0.086688, - -0.0059792, - -0.0023809, - 0.0052465, - -0.044067, - -0.045823, - -0.034748, - 0.0049725, - -0.024656, - 0.082602, - 0.055171, - -0.039273, - -0.040421, - -0.027049, - 0.10954, - 0.019076, - -0.052014, - -0.0019393, - -0.029389, - 0.021551, - -0.014529, - -0.12858, - 0.028343, - 0.025476, - -0.055971, - 0.028433, - 0.017707, - -0.017449, - -0.024375, - -0.029999, - -0.086597, - 0.029209, - 0.017067, - -0.0095678, - 0.026416, - 0.033402, - 0.029963, - 0.017914, - -0.08606, - -0.0249, - 0.03188, - 0.033417, - 0.061463, - 0.056526, - 0.12068, - 0.080272, - 0.13645, - 0.0073976, - -0.10756, - 0.032782, - 0.10403, - -0.07872, - 0.049178, - 0.032773, - 0.033645, - -0.061088, - -0.00060376, - 0.0010825, - -0.059496, - 0.010132, - 0.10086, - 0.0010863, - -0.0761, - 0.019399, - 0.046812, - 0.020735, - -0.023584, - 0.11495, - 0.022742, - 0.13934, - -0.016408, - -0.014615, - 0.053149, - 0.099675, - 0.036049, - 0.023955, - -0.043464, - 0.0059621, - 0.029203, - -0.030739, - 0.060505, - -0.094391, - 0.082711, - -0.038099, - -0.029191, - 0.036449, - 0.058782, - -0.026179, - -0.062328, - 0.011333, - -0.054583, - 0.0014072, - -0.050657, - -0.0037628, - 0.027692, - 0.008786, - -0.022549, - -0.0058132, - -0.038865, - -0.0019975, - -0.094396, - -0.016366, - 0.0035225, - 0.15499, - -0.011754, - 0.026579, - 0.01234, - -0.012713, - -0.093009, - -0.020792, - -0.035506, - -0.073744, - -0.064121, - 0.0052677, - -0.048833, - 0.00042616, - 0.043206, - 0.054956, - -0.0044266, - 0.043344, - -0.041636, - 0.057485, - 0.026126, - -0.030872, - -0.0042827, - 0.0094071, - -0.015177, - 0.019118, - 0.046609, - 0.1023, - 0.083235, - -0.049541, - 0.044375, - -0.0060894, - -0.051239, - 0.0060277, - 0.00035936, - -0.092461, - -0.040558, - 0.022298, - -0.031446, - 0.015391, - -0.042355, - 0.06139, - 0.013113, - 0.051794, - 0.038382, - -0.056174, - 0.050011, - 0.024776, - 0.0063218, - -0.041463, - 0.040329, - -0.015992, - 0.054072, - 0.027409, - 0.0018607, - 0.0040441, - 0.038083 - ], - "doctrine": [ - 0.013159, - -0.056191, - 0.018132, - -0.032065, - -0.024736, - -0.018915, - -0.0037402, - -0.08325, - 0.0010433, - 0.023075, - 0.010944, - -0.047349, - 0.013933, - -0.05382, - -0.073511, - -0.02084, - 0.082157, - -0.029777, - 0.041471, - 0.0059029, - -0.061543, - 0.012078, - 0.055811, - 0.043711, - -0.036218, - 0.018056, - 0.0081959, - -0.0042195, - 0.025347, - -0.024848, - 0.043292, - 0.061106, - -0.020891, - -0.062385, - 0.014952, - 0.0036502, - -0.025411, - -0.028127, - 0.081162, - 0.005495, - 0.024571, - -0.1133, - 0.023887, - 0.0028868, - -0.017145, - -0.028872, - -0.015466, - -0.045649, - -0.01355, - -0.010699, - 0.0028879, - 0.028467, - 0.025391, - 0.014865, - -0.018016, - 0.08013, - 0.046129, - -0.032625, - -0.033521, - 0.041379, - 0.040997, - 0.042297, - 0.12132, - -0.0078538, - 0.0083542, - -0.042531, - -0.053869, - 0.027416, - 0.0074607, - -0.036331, - 0.030655, - -0.020167, - -0.068585, - 0.023753, - 0.011075, - -0.05896, - 0.060164, - -0.0086591, - 0.014958, - 0.036323, - 0.012997, - 0.015705, - 0.0030853, - 0.051776, - -0.061563, - 0.044697, - 0.010066, - 0.0055311, - 0.073182, - 0.082967, - 0.001999, - -0.0056246, - -0.080685, - 0.0043762, - 0.01349, - 0.054622, - -0.042661, - -0.066912, - -0.0052866, - 0.00011032, - 0.023343, - -0.019774, - 0.063137, - -0.02983, - -0.073491, - -0.091074, - 0.077363, - 0.074365, - -0.080499, - -0.019304, - -0.017221, - 0.03711, - 0.046907, - -0.0096692, - 0.034603, - -0.027254, - 0.027208, - 0.075748, - -0.021125, - 0.070399, - -0.044566, - -0.022326, - -0.0071635, - -0.047988, - 0.080315, - 0.059794, - -0.011656, - -0.01115, - 0.017024, - 0.13495, - -0.0097721, - -0.072978, - 0.0020534, - 0.077123, - -0.019508, - -0.0096707, - 0.022033, - 0.052575, - -0.033036, - -0.061072, - -0.0086972, - -0.039272, - -0.10572, - 0.039758, - -0.025258, - -0.016423, - 0.046824, - 0.065589, - 0.023953, - -0.017945, - 0.046654, - 0.04012, - -0.025307, - -0.043499, - 0.040714, - 0.069983, - -0.03965, - -0.059036, - 0.045404, - 0.03824, - 0.044105, - 0.034338, - -0.1111, - -0.0015405, - 0.024181, - -0.048299, - 0.07334, - 0.024816, - 0.051081, - -0.039276, - -0.035652, - 0.0082585, - -0.015841, - -0.011242, - 0.0026781, - 0.034421, - -0.010529, - 0.024439, - -0.02861, - -0.039554, - -0.03129, - -0.0033548, - 0.0069715, - 0.02773, - 0.037081, - -0.013367, - 0.049594, - 0.096015, - 0.015046, - -0.033615, - 0.028842, - 0.11313, - -0.01149, - -0.071711, - -0.032503, - -0.081924, - 0.047611, - 0.036969, - -0.026078, - 0.058815, - -0.12397, - 0.0059102, - 0.0024935, - 0.037222, - -0.032272, - -0.037839, - 0.073998, - -0.040109, - 0.052187, - -0.0025858, - 0.08339, - 0.032101, - 0.0028421, - 0.036397, - 0.0078867, - 0.089451, - 0.037869, - -0.048147, - -0.0091202, - -0.046052, - -0.036751, - -0.051073, - 0.016099, - 0.091958, - 0.031197, - 0.010048, - 0.010379, - 0.044193, - -0.034813, - 0.006198, - 0.011335, - -0.068151, - -0.073293, - -0.023168, - 0.016987, - 0.025778, - -0.092597, - -0.053117, - 0.059777, - 0.019663, - 0.035053, - 0.012218, - -0.028807, - -0.028805, - -0.000026709, - 0.024954, - -0.011998, - -0.028678, - -0.012874, - 0.048438, - 0.018042, - 0.012636, - 0.01957, - 0.0066916, - 0.026895, - -0.0062649, - 0.063592, - 0.029951, - 0.015769, - 0.030163, - 0.066422, - 0.024196, - -0.0089611, - -0.011871, - 0.046312, - 0.00035565, - 0.033423, - -0.00014558, - -0.056556, - -0.0022669, - 0.018794, - 0.054412, - -0.085638, - -0.025661, - 0.054813, - -0.042603, - -0.023385, - 0.03241, - 0.0073386, - -0.04992, - 0.086229, - -0.01338, - 0.03061, - -0.05694, - -0.015827, - -0.060998, - 0.0090476, - 0.063397, - -0.017589, - 0.12384, - 0.0071266, - -0.042643, - 0.057045, - -0.047148, - 0.042384, - -0.087503, - 0.015919, - -0.027873, - -0.013484, - 0.034095 - ], - "hallucinogenic": [ - -0.065084, - -0.0075078, - -0.014511, - 0.082134, - 0.036689, - -0.036019, - -0.022866, - -0.059957, - 0.011959, - -0.012027, - -0.029405, - 0.0033902, - 0.010363, - 0.020172, - 0.027638, - -0.026091, - 0.049253, - -0.0058698, - 0.023256, - -0.0040053, - -0.01402, - 0.035038, - 0.021517, - 0.024293, - -0.039332, - -0.086663, - 0.0048672, - 0.043104, - 0.040109, - 0.04363, - -0.015237, - -0.0086338, - 0.021057, - -0.031151, - 0.039166, - -0.025239, - -0.0035363, - -0.017068, - -0.0080259, - 0.043745, - 0.016496, - -0.064522, - -0.013784, - -0.021009, - 0.069598, - 0.0077759, - 0.024522, - 0.052748, - -0.0021557, - 0.022567, - -0.019316, - 0.077278, - -0.0012047, - -0.02142, - 0.0040102, - -0.010122, - 0.012219, - -0.075225, - -0.035587, - 0.054714, - -0.010396, - 0.0038237, - 0.070283, - -0.013519, - -0.032128, - 0.0099413, - 0.016233, - -0.036364, - 0.0031775, - 0.027833, - 0.060232, - 0.064906, - 0.03184, - -0.0053049, - -0.054949, - -0.061719, - 0.0069327, - -0.018957, - 0.025343, - -0.017497, - -0.022704, - -0.012359, - -0.018132, - 0.025672, - -0.027737, - -0.059009, - 0.056497, - -0.0059181, - 0.083698, - -0.017778, - 0.030384, - -0.028033, - -0.044033, - 0.014366, - -0.00054133, - 0.032841, - 0.031018, - -0.07632, - 0.080344, - 0.028325, - 0.026499, - 0.062454, - -0.030546, - 0.017783, - -0.0080573, - -0.056546, - -0.023507, - -0.056805, - -0.031099, - 0.034004, - 0.016321, - 0.059889, - 0.05966, - -0.012441, - -0.00081873, - 0.0034708, - 0.020839, - -0.038907, - -0.052386, - 0.033964, - 0.000045222, - 0.016271, - -0.074296, - -0.087683, - 0.095922, - 0.024247, - 0.019504, - -0.030327, - -0.014621, - -0.00083984, - 0.0094761, - -0.033071, - -0.047493, - -0.0083388, - 0.0081222, - -0.0036129, - -0.034979, - 0.043884, - -0.00095108, - 0.0052598, - 0.027085, - -0.010956, - -0.032325, - 0.01681, - 0.048037, - -0.054061, - 0.002827, - -0.014454, - -0.017684, - -0.016437, - 0.053579, - 0.068625, - -0.0052715, - 0.043813, - 0.0086057, - 0.0015655, - -0.047379, - 0.023329, - 0.048286, - -0.0035424, - 0.012359, - 0.032863, - -0.086401, - 0.017911, - -0.020649, - 0.0025948, - 0.021141, - 0.011737, - 0.064519, - -0.024524, - -0.0040021, - -0.039228, - -0.012978, - 0.0087679, - 0.002783, - 0.0308, - 0.017564, - 0.0054943, - -0.017312, - -0.051364, - 0.012701, - 0.011712, - -0.00033616, - -0.04392, - -0.00298, - -0.027909, - 0.025976, - 0.063602, - 0.0024366, - -0.031123, - 0.11516, - -0.00067723, - 0.02019, - 0.012833, - -0.041615, - 0.034778, - -0.042245, - 0.068413, - 0.007462, - -0.0025664, - -0.085735, - 0.041835, - -0.07115, - 0.013105, - 0.012407, - 0.021847, - 0.040194, - 0.058389, - 0.028573, - -0.013682, - 0.10367, - 0.0057635, - 0.062922, - -0.025321, - 0.10356, - -0.018163, - 0.02329, - 0.020332, - -0.014871, - -0.011639, - -0.034608, - 0.005451, - -0.047333, - 0.074304, - 0.0028823, - 0.027311, - 0.030515, - 0.018018, - -0.011846, - -0.0043123, - -0.070226, - -0.023231, - -0.060117, - -0.024709, - 0.0058364, - -0.063785, - 0.035521, - -0.058058, - 0.04531, - -0.037545, - 0.056579, - 0.0038425, - -0.014049, - -0.036006, - -0.083376, - 0.00020465, - -0.048742, - 0.022754, - -0.021291, - 0.015599, - 0.0011453, - -0.040033, - 0.017743, - -0.040032, - -0.016015, - 0.010888, - -0.0079005, - -0.037041, - 0.044572, - -0.044244, - 0.12442, - -0.0069586, - -0.025933, - -0.016392, - 0.015819, - -0.057108, - -0.034763, - -0.032162, - 0.0026838, - -0.0016964, - -0.021226, - 0.0516, - -0.066896, - -0.0065798, - -0.0034361, - -0.085862, - 0.019881, - 0.002449, - -0.061101, - 0.0012471, - 0.09458, - 0.0057548, - -0.059229, - -0.018374, - 0.0045191, - 0.00028832, - 0.0037799, - 0.010523, - 0.013437, - -0.03412, - 0.022435, - -0.002433, - 0.013574, - -0.037434, - -0.039308, - 0.038775, - 0.04362, - 0.031814, - 0.00093602, - 0.020399 - ], - "paganism": [ - -0.015205, - -0.025459, - 0.15409, - -0.045907, - 0.030289, - -0.0026631, - 0.012939, - -0.089356, - 0.031824, - -0.034146, - 0.0057886, - -0.046226, - 0.0051496, - -0.041371, - 0.048725, - 0.020271, - 0.15552, - -0.055489, - 0.0026987, - 0.0034761, - -0.019512, - 0.016841, - -0.0099438, - 0.052121, - 0.07442, - 0.01972, - 0.024323, - 0.03859, - 0.077133, - 0.050017, - 0.069943, - 0.007777, - -0.045857, - 0.023105, - 0.031241, - -0.0077827, - 0.036819, - -0.015812, - 0.0068992, - 0.019918, - -0.026819, - -0.093582, - -0.021683, - 0.038006, - 0.0021752, - -0.0011748, - -0.051136, - -0.014115, - 0.023139, - -0.10627, - 0.008461, - -0.014753, - -0.038061, - -0.025821, - -0.052333, - 0.072668, - 0.0066499, - -0.053102, - -0.038114, - -0.029076, - 0.064199, - -0.061824, - 0.036811, - -0.070471, - 0.012447, - -0.045525, - -0.012339, - 0.0015997, - 0.099665, - -0.081275, - -0.023677, - 0.0795, - 0.01387, - 0.023641, - -0.014463, - -0.0092486, - -0.01613, - 0.0058319, - 0.014324, - 0.079196, - 0.0027738, - 0.065137, - -0.030979, - 0.038861, - 0.035013, - 0.025613, - 0.035403, - 0.016688, - -0.062548, - 0.033733, - -0.051272, - 0.058115, - -0.12913, - 0.011674, - 0.024669, - -0.0016689, - 0.031417, - -0.026145, - -0.03326, - 0.032371, - -0.053558, - 0.041505, - -0.0090854, - 0.0037083, - -0.023452, - -0.030337, - 0.036551, - -0.016425, - -0.043518, - 0.024223, - -0.010902, - 0.12407, - 0.015121, - -0.018091, - -0.034198, - 0.0093921, - 0.089981, - 0.02914, - -0.038966, - -0.037036, - -0.091089, - 0.0147, - -0.1413, - -0.093139, - 0.019211, - -0.039838, - -0.045204, - -0.016318, - 0.03247, - 0.11342, - -0.030267, - 0.0054833, - -0.024585, - 0.056799, - 0.025711, - 0.014202, - -0.00013675, - 0.020054, - -0.0035641, - -0.11371, - 0.0022574, - -0.032604, - -0.050673, - 0.041767, - 0.036852, - -0.028158, - 0.052164, - -0.069333, - -0.038433, - -0.038267, - 0.0756, - 0.029596, - -0.096481, - 0.0098609, - -0.049754, - 0.062708, - 0.019961, - -0.061601, - -0.014917, - 0.019414, - 0.03641, - -0.018683, - -0.10511, - -0.028409, - 0.047373, - 0.013352, - 0.039177, - 0.055245, - 0.015959, - 0.03767, - 0.0255, - -0.12152, - -0.033668, - 0.02254, - 0.037454, - 0.077005, - 0.073051, - 0.015115, - -0.023879, - 0.0057841, - -0.00075027, - 0.014949, - -0.0076169, - -0.0081166, - 0.011143, - -0.063937, - -0.0091315, - 0.12394, - -0.068282, - -0.02935, - 0.063341, - 0.087542, - -0.054851, - 0.026116, - 0.068179, - -0.017875, - -0.0087254, - -0.076813, - -0.038977, - 0.030206, - -0.18637, - -0.0062591, - -0.018125, - -0.064236, - -0.0085372, - 0.16722, - 0.093826, - -0.014606, - 0.0083342, - 0.029606, - 0.068214, - 0.014241, - 0.0073343, - 0.022915, - 0.062315, - 0.094353, - -0.015767, - 0.012641, - 0.028422, - -0.093605, - -0.0084776, - 0.022021, - -0.0041643, - 0.096086, - -0.056231, - -0.034177, - 0.048884, - 0.074206, - 0.029546, - -0.10867, - 0.069874, - 0.0061295, - -0.11855, - -0.038172, - 0.030713, - 0.074201, - -0.027059, - 0.0093439, - 0.037876, - -0.047646, - 0.0023419, - 0.0077107, - -0.017706, - -0.040862, - -0.00055839, - 0.03385, - -0.091629, - 0.023237, - -0.056101, - 0.040107, - 0.074948, - -0.10519, - -0.065064, - 0.0075661, - 0.051396, - -0.013958, - 0.030439, - 0.041212, - -0.0026118, - -0.056017, - 0.058586, - 0.0028065, - 0.047816, - 0.018727, - 0.0082046, - -0.12736, - -0.0064982, - 0.022357, - 0.00057596, - 0.0079372, - -0.050526, - 0.055537, - -0.070934, - -0.052856, - 0.011564, - -0.030362, - 0.062299, - -0.052617, - -0.20878, - -0.052927, - 0.059949, - -0.064064, - 0.024158, - -0.012166, - -0.049085, - 0.0041657, - 0.041783, - -0.035553, - -0.0041357, - 0.046064, - 0.034096, - -0.038277, - 0.012142, - -0.056395, - 0.048694, - 0.0048578, - 0.015451, - 0.12167, - -0.025626, - -0.044994 - ], - "journeying": [ - -0.061352, - 0.013881, - -0.0018294, - 0.0077834, - -0.018513, - -0.044458, - -0.08296, - -0.074008, - 0.0035565, - 0.00051293, - -0.018972, - -0.13153, - -0.078243, - -0.0021876, - 0.0054568, - -0.032595, - 0.024526, - -0.048511, - 0.003623, - -0.012624, - -0.027532, - 0.0097619, - -0.0091929, - 0.027878, - 0.051053, - 0.032088, - 0.011156, - 0.046274, - -0.039515, - -0.028214, - -0.058293, - 0.068191, - -0.016136, - -0.049354, - -0.0060722, - 0.019769, - -0.016928, - 0.027244, - -0.029738, - -0.013796, - 0.056105, - -0.061072, - -0.025447, - 0.0018546, - -0.014521, - 0.0029313, - 0.015332, - -0.033081, - -0.051769, - 0.026353, - 0.033766, - 0.028761, - -0.080765, - -0.022915, - -0.093144, - 0.021555, - -0.0035307, - 0.009773, - -0.017123, - -0.033004, - 0.0048598, - -0.00777, - 0.027924, - -0.0044436, - -0.0039628, - -0.032363, - -0.025779, - -0.080216, - -0.051777, - -0.005114, - 0.019463, - -0.0076782, - 0.0094942, - -0.0037285, - 0.00055177, - 0.035663, - 0.0080347, - -0.030287, - 0.0055603, - -0.019243, - -0.036332, - -0.042197, - -0.00022276, - 0.03802, - -0.020608, - -0.029987, - 0.072177, - -0.011429, - -0.011905, - -0.021407, - 0.0071618, - 0.054012, - -0.054512, - 0.036486, - 0.010343, - 0.014083, - 0.027448, - 0.033984, - -0.023621, - -0.0034793, - 0.042013, - 0.010236, - 0.052994, - -0.02699, - 0.067904, - -0.053843, - -0.014132, - -0.012695, - 0.0024044, - -0.032694, - 0.053901, - -0.014591, - 0.029495, - -0.017594, - -0.0032935, - 0.058775, - 0.024105, - -0.0023133, - -0.023817, - -0.011195, - 0.045998, - -0.015212, - 0.010301, - 0.024214, - 0.019493, - -0.044953, - -0.009714, - -0.085531, - 0.022323, - 0.085878, - 0.025801, - 0.058356, - -0.043515, - -0.033338, - 0.054402, - -0.01601, - 0.0083068, - 0.066674, - 0.065812, - 0.020164, - -0.0091296, - -0.044443, - -0.021989, - 0.023566, - 0.0037582, - 0.018561, - -0.039609, - 0.01373, - -0.05888, - -0.040018, - 0.050929, - 0.00058657, - -0.041077, - -0.042871, - 0.054126, - 0.030754, - -0.026655, - 0.029688, - -0.056428, - -0.031339, - 0.052523, - 0.012934, - -0.013741, - 0.020585, - -0.030124, - 0.019255, - 0.032229, - -0.03008, - 0.027112, - 0.029962, - 0.042292, - -0.032412, - -0.044873, - 0.0063431, - 0.042601, - 0.018772, - 0.019679, - 0.010146, - -0.01905, - -0.0026129, - 0.034463, - -0.0067496, - 0.01185, - -0.021266, - -0.03841, - -0.064281, - 0.043499, - 0.10815, - -0.039486, - -0.03177, - 0.065615, - -0.011489, - -0.079536, - 0.015527, - -0.0048795, - 0.041847, - -0.016483, - 0.049069, - 0.0004928, - 0.022718, - -0.099118, - 0.057283, - 0.061334, - 0.0040748, - 0.022984, - 0.012966, - -0.038834, - 0.03071, - 0.10667, - -0.014318, - 0.045869, - -0.060252, - 0.086917, - -0.040538, - 0.0022683, - 0.010405, - 0.038103, - -0.044209, - 0.065072, - -0.042146, - -0.039836, - 0.0051056, - -0.010759, - 0.076717, - -0.085561, - -0.01742, - 0.024716, - 0.10972, - -0.045826, - -0.0007208, - 0.0124, - 0.025169, - -0.025006, - -0.01843, - 0.033732, - -0.035315, - 0.016194, - 0.02149, - 0.0065041, - 0.040397, - 0.067969, - 0.026235, - -0.0047609, - -0.06497, - -0.06806, - -0.017518, - -0.0069904, - -0.073886, - -0.031405, - 0.031356, - 0.038774, - -0.042076, - 0.0035015, - -0.0041205, - 0.019755, - 0.0026007, - -0.059214, - 0.079494, - 0.038306, - 0.0097652, - -0.020518, - -0.0064233, - -0.040114, - 0.081265, - 0.036277, - -0.013748, - 0.056626, - 0.032345, - 0.021717, - -0.0047929, - -0.018439, - 0.069591, - -0.092898, - -0.020647, - 0.047928, - -0.09493, - 0.017849, - -0.010859, - -0.050214, - 0.025569, - 0.00058354, - -0.032109, - -0.012688, - -0.099136, - 0.041883, - -0.020073, - -0.00054263, - -0.045743, - 0.0067757, - 0.025568, - 0.072408, - 0.039381, - -0.033034, - -0.062972, - 0.0013709, - 0.039951, - 0.043799, - 0.022827, - -0.0072371, - -0.014274 - ], - "travelers": [ - -0.089656, - -0.0095241, - -0.01093, - -0.0050152, - -0.066898, - -0.0075232, - -0.038945, - -0.081548, - 0.011702, - 0.077908, - 0.038504, - -0.049126, - -0.086569, - -0.091095, - -0.021363, - -0.034749, - 0.01678, - -0.034728, - 0.033097, - 0.0071001, - 0.014271, - -0.028682, - -0.021408, - 0.050606, - 0.011085, - 0.011765, - -0.0028175, - 0.047456, - 0.029903, - -0.00055988, - -0.03396, - 0.02275, - 0.0084518, - 0.036317, - -0.0070092, - 0.038721, - 0.037505, - 0.099117, - -0.0091093, - -0.0046552, - -0.0097696, - -0.057871, - -0.05977, - 0.014299, - 0.0055251, - -0.00059867, - 0.052424, - 0.02785, - -0.020752, - -0.0097973, - 0.025898, - 0.01949, - -0.056805, - -0.039168, - -0.049996, - 0.041633, - -0.016421, - 0.051065, - -0.015473, - -0.057956, - 0.068763, - -0.015569, - 0.07412, - 0.029526, - 0.0061003, - -0.0091937, - -0.048145, - -0.01462, - -0.0069475, - 0.072393, - -0.0050079, - 0.00052233, - 0.14979, - -0.0060771, - 0.039848, - 0.04171, - 0.055428, - -0.042114, - 0.0013146, - -0.082004, - -0.020679, - 0.046724, - 0.078643, - 0.043446, - 0.0023879, - -0.049601, - 0.047123, - -0.0030328, - -0.029854, - -0.036124, - -0.0011692, - 0.036827, - -0.073538, - -0.056468, - -0.015079, - 0.041817, - -0.026566, - 0.00036643, - 0.012764, - -0.0216, - 0.059291, - 0.075275, - 0.0038611, - -0.049094, - 0.058817, - -0.048211, - -0.000019472, - -0.028564, - 0.02157, - 0.014429, - 0.025283, - 0.072229, - 0.052914, - 0.050089, - -0.073108, - 0.0073082, - -0.0091973, - 0.0011678, - -0.057008, - 0.072372, - 0.052995, - -0.049373, - -0.025689, - -0.01471, - 0.13171, - -0.028104, - 0.0062901, - -0.046834, - 0.00373, - 0.076574, - 0.0050439, - 0.1352, - -0.050856, - -0.044134, - 0.0043118, - 0.0021905, - 0.055694, - 0.077036, - -0.030988, - 0.013484, - 0.045694, - -0.064589, - -0.036921, - 0.0086558, - 0.034217, - 0.016565, - 0.016681, - 0.0018187, - -0.018955, - -0.034991, - 0.086104, - 0.091523, - -0.04421, - -0.043543, - 0.097179, - -0.024686, - -0.050369, - -0.011544, - -0.052733, - -0.058051, - 0.055673, - -0.0064584, - 0.030603, - 0.0082026, - 0.055291, - 0.036313, - 0.07684, - -0.077927, - 0.072503, - 0.025974, - -0.045542, - -0.020033, - -0.0090849, - 0.0081953, - -0.007038, - 0.043384, - -0.060223, - -0.00050217, - -0.048326, - 0.041463, - -0.006094, - 0.043126, - 0.06085, - -0.023139, - -0.06583, - -0.1151, - 0.056871, - 0.085344, - -0.029969, - -0.083869, - 0.018227, - 0.056256, - -0.11769, - 0.036573, - -0.038692, - 0.029047, - -0.022065, - -0.0084624, - 0.026947, - -0.027397, - -0.11188, - 0.1025, - 0.013171, - 0.011584, - 0.045987, - 0.016582, - -0.030006, - 0.031249, - -0.0039834, - -0.039183, - 0.0096638, - -0.036964, - 0.065352, - 0.036741, - -0.080512, - 0.03697, - -0.0019965, - -0.014829, - -0.020225, - -0.023572, - -0.02898, - -0.032107, - 0.0028308, - 0.081215, - 0.053787, - 0.023823, - -0.044549, - 0.068991, - -0.0032551, - -0.010758, - -0.0061531, - 0.024759, - -0.054271, - -0.04649, - 0.048761, - -0.062472, - 0.019727, - 0.065148, - 0.022116, - -0.032983, - -0.023891, - 0.034443, - 0.033612, - -0.088719, - 0.02357, - 0.03506, - 0.082731, - -0.064466, - -0.036801, - -0.044153, - 0.081298, - 0.043748, - -0.0088544, - 0.016837, - 0.024766, - 0.031415, - -0.044118, - 0.059679, - 0.021132, - 0.043469, - -0.021696, - 0.037098, - -0.056929, - -0.0033535, - 0.029632, - 0.0073613, - 0.037884, - 0.02445, - 0.028007, - 0.022334, - -0.031332, - 0.065313, - -0.11388, - -0.01682, - 0.0034827, - 0.016425, - -0.04484, - -0.052216, - -0.037281, - -0.041203, - -0.011493, - -0.0018139, - -0.041626, - -0.0024161, - 0.012561, - 0.00081539, - -0.033383, - -0.089797, - 0.011115, - -0.018773, - 0.071539, - 0.03085, - -0.069272, - 0.023112, - 0.022774, - 0.028358, - 0.087029, - 0.066536, - -0.036412, - -0.022642 - ], - "pharmaceutical": [ - -0.047685, - -0.026813, - -0.00076257, - 0.0075131, - -0.0096049, - -0.04366, - -0.014612, - -0.066769, - 0.044141, - -0.0044593, - -0.0097794, - 0.0088834, - 0.024545, - -0.0091914, - 0.0077055, - 0.015324, - 0.060363, - 0.011751, - 0.014357, - 0.0091611, - 0.036587, - 0.051922, - 0.036645, - 0.041144, - -0.026198, - -0.063818, - 0.0038993, - 0.011463, - 0.0029313, - 0.021299, - -0.0117, - -0.031003, - -0.0035095, - -0.02178, - 0.062495, - 0.034872, - -0.020707, - -0.032324, - 0.042321, - 0.055603, - -0.038287, - -0.085689, - -0.0043713, - -0.028998, - 0.053427, - -0.0051983, - -0.016336, - 0.037367, - -0.0094358, - 0.025549, - -0.021752, - -0.033575, - -0.0046256, - -0.014016, - 0.012085, - 0.0023813, - -0.015915, - 0.079314, - 0.0020514, - -0.0035794, - 0.0076747, - 0.013962, - 0.062989, - 0.043054, - 0.021934, - 0.0099471, - 0.043042, - -0.043945, - 0.026026, - -0.0074932, - -0.0074226, - 0.035174, - 0.055455, - -0.0073745, - -0.025936, - -0.017921, - -0.015536, - -0.016077, - -0.0094399, - -0.026823, - -0.041523, - 0.0059744, - -0.059074, - 0.0091841, - -0.050374, - -0.0022432, - 0.02347, - -0.0099389, - -0.0083144, - -0.026601, - 0.0050299, - 0.037662, - -0.074997, - -0.027732, - -0.016654, - 0.064498, - 0.048864, - -0.021064, - 0.0042089, - 0.014764, - -0.031779, - 0.019815, - -0.020281, - -0.019185, - 0.014861, - -0.082684, - 0.0032656, - -0.013312, - 0.033106, - 0.048205, - -0.0052664, - 0.051958, - 0.01628, - 0.011715, - 0.0038129, - 0.035385, - -0.011832, - -0.02698, - -0.026843, - -0.027602, - -0.0010513, - 0.015919, - -0.014379, - -0.041521, - 0.049114, - 0.0027797, - -0.027769, - -0.0517, - 0.012578, - 0.050915, - 0.022525, - 0.026764, - -0.053536, - -0.046052, - 0.038924, - -0.0019576, - 0.012538, - 0.040314, - -0.0090707, - 0.021659, - 0.0051579, - 0.010389, - -0.029234, - 0.049362, - -0.041367, - -0.025625, - 0.019487, - 0.006318, - 0.046147, - -0.0055166, - 0.05326, - 0.10175, - 0.067527, - -0.018055, - 0.036786, - -0.015394, - -0.035444, - -0.010304, - 0.054934, - 0.0065741, - 0.017438, - 0.024134, - -0.049776, - -0.0057602, - -0.013792, - 0.016811, - -0.043064, - -0.019704, - 0.0073937, - -0.074294, - 0.012157, - 0.012493, - 0.00001569, - -0.0059425, - -0.0238, - 0.027287, - -0.067401, - 0.014327, - -0.03598, - 0.00081303, - -0.0082863, - -0.030544, - -0.018708, - -0.0038312, - -0.024286, - -0.027265, - 0.027746, - 0.059746, - -0.02508, - 0.0023712, - -0.0016962, - 0.052787, - 0.048982, - -0.021966, - 0.01138, - -0.010104, - -0.044342, - 0.015953, - -0.005191, - -0.030193, - -0.092742, - -0.0055352, - 0.0036095, - -0.010705, - 0.017468, - -0.00092471, - -0.029185, - -0.040221, - -0.0035234, - 0.019553, - 0.10848, - -0.00042853, - -0.011517, - 0.039243, - -0.01326, - 0.0070011, - -0.0034141, - -0.011064, - 0.024091, - -0.0053969, - -0.0036122, - -0.0098182, - -0.021908, - 0.057323, - -0.014174, - 0.02817, - 0.021753, - 0.036584, - 0.025389, - -0.020083, - -0.016438, - -0.025443, - -0.01531, - -0.0076715, - 0.002785, - -0.027581, - -0.056349, - -0.03864, - 0.0079324, - -0.032508, - 0.020799, - 0.030117, - 0.027822, - 0.042739, - -0.066091, - -0.00077166, - -0.024043, - 0.020143, - 0.014872, - 0.013164, - -0.01281, - -0.031719, - 0.019044, - -0.027655, - -0.04772, - 0.035786, - -0.0044294, - 0.023004, - 0.027019, - 0.010386, - 0.02454, - 0.010851, - -0.023462, - 0.01225, - 0.032291, - -0.038208, - -0.038492, - 0.017039, - -0.021168, - 0.013541, - -0.029319, - 0.032377, - -0.056511, - 0.0028286, - -0.01073, - -0.068259, - -0.0017576, - 0.0063995, - -0.04948, - 0.020771, - 0.079809, - -0.014535, - -0.060403, - -0.00546, - -0.0090986, - 0.036083, - -0.010702, - -0.035479, - 0.020239, - -0.031525, - 0.0086475, - 0.023176, - 0.013109, - 0.0063967, - -0.05488, - -0.018558, - -0.013451, - -0.0067388, - -0.014137, - -0.026102 - ], - "infrastructures": [ - 0.026014, - -0.03484, - -0.046595, - -0.032426, - -0.02042, - 0.0032621, - 0.041701, - -0.042803, - -0.00024869, - 0.019177, - 0.013673, - -0.037535, - -0.036371, - 0.010376, - 0.0056354, - 0.0027027, - 0.044335, - 0.010658, - 0.049699, - 0.0088875, - -0.056124, - -0.01405, - 0.044192, - 0.05698, - 0.0060068, - 0.02751, - -0.0027696, - -0.020547, - 0.069807, - 0.024296, - 0.0066187, - -0.01965, - -0.016409, - -0.033744, - 0.040113, - 0.039991, - 0.014663, - 0.0094056, - 0.0037402, - -0.020045, - -0.03247, - -0.08326, - 0.018478, - 0.040672, - -0.029716, - -0.055747, - -0.036412, - -0.0028568, - -0.010458, - 0.0010504, - -0.048422, - -0.035097, - 0.011364, - 0.0059377, - -0.060434, - 0.047556, - -0.00014943, - 0.016302, - -0.003217, - 0.030847, - 0.012069, - 0.0025538, - 0.10313, - -0.016802, - 0.059813, - -0.021447, - 0.014669, - -0.041121, - -0.00081635, - -0.006954, - 0.020654, - -0.0088945, - -0.0095667, - -0.0082885, - -0.035871, - -0.041003, - 0.0089019, - -0.0323, - -0.012448, - 0.015084, - 0.0084263, - -0.023415, - -0.051094, - 0.065349, - 0.042701, - -0.0067671, - -0.028064, - -0.02149, - -0.024387, - -0.022742, - 0.0081155, - 0.0094864, - -0.056687, - 0.042672, - -0.011844, - 0.05841, - 0.026296, - -0.039612, - -0.0051686, - 0.0076692, - 0.027192, - -0.013851, - -0.029047, - -0.025499, - 0.029527, - -0.02415, - 0.00049117, - -0.012671, - 0.014243, - -0.010996, - -0.0050236, - 0.065235, - 0.059377, - 0.023608, - 0.0099804, - -0.037894, - -0.036595, - 0.024988, - -0.022567, - 0.034686, - -0.022532, - -0.0086503, - 0.019354, - -0.0010791, - 0.074923, - 0.023136, - -0.027978, - -0.01189, - -0.015485, - 0.066877, - 0.012779, - 0.0057, - 0.00028553, - -0.0034632, - 0.0020944, - 0.02368, - 0.01777, - 0.0070368, - -0.01388, - 0.052349, - -0.0064643, - -0.021506, - 0.011797, - 0.022939, - 0.043679, - -0.016851, - -0.013668, - 0.011469, - 0.020625, - 0.0050841, - 0.027027, - 0.053109, - 0.042591, - -0.047962, - 0.015846, - 0.020723, - 0.0019557, - 0.02949, - -0.024044, - -0.046483, - 0.046319, - -0.042901, - -0.0028889, - 0.018133, - -0.013562, - -0.021746, - 0.013119, - 0.027627, - 0.041025, - -0.011505, - 0.036636, - 0.026387, - 0.0027116, - 0.015897, - -0.0089134, - 0.040387, - -0.031794, - -0.0030985, - -0.011733, - 0.016712, - 0.024817, - 0.019026, - -0.013808, - -0.00089753, - -0.040245, - -0.011388, - -0.034073, - 0.090175, - -0.027893, - -0.0031781, - -0.022799, - 0.042221, - -0.022219, - -0.00075151, - 0.012291, - -0.010721, - -0.0019432, - -0.01844, - 0.034445, - -0.026024, - -0.086823, - -0.0065902, - -0.012714, - 0.03079, - 0.018731, - 0.001891, - 0.028741, - 0.014388, - -0.020674, - 0.00021667, - 0.040117, - -0.0050469, - 0.012754, - 0.0053535, - 0.0026248, - 0.028576, - 0.0060873, - 0.017419, - -0.042273, - 0.020087, - -0.016886, - -0.011332, - 0.0020781, - 0.057604, - 0.035205, - 0.0094905, - 0.017755, - 0.021145, - -0.024031, - 0.0019983, - -0.043985, - -0.0051777, - -0.063813, - -0.02374, - 0.028153, - -0.0049516, - -0.010524, - 0.065083, - -0.022914, - 0.0001599, - -0.030808, - 0.010088, - 0.049169, - 0.0029154, - 0.022526, - 0.024892, - -0.028035, - -0.032682, - -0.013993, - 0.021402, - -0.020114, - -0.015258, - 0.0054223, - -0.041123, - -0.043919, - 0.08991, - -0.00021967, - -0.0069265, - 0.037053, - 0.046066, - -0.041711, - 0.01287, - -0.016183, - -0.02049, - 0.023696, - -0.0069284, - 0.026538, - 0.02446, - 0.014228, - -0.020335, - -0.017245, - 0.053744, - -0.047194, - -0.030988, - 0.014025, - 0.016895, - 0.010752, - 0.032535, - -0.012553, - -0.015383, - 0.029907, - -0.0035597, - -0.056265, - 0.0055753, - 0.0032318, - 0.013466, - -0.011023, - 0.019238, - -0.020075, - 0.0014644, - 0.0048213, - 0.041919, - -0.043868, - 0.0071133, - 0.035923, - -0.0063531, - 0.011476, - 0.020741, - -0.0036212, - -0.040075 - ], - "computer": [ - -0.089791, - -0.017821, - -0.037268, - -0.013295, - -0.0090625, - -0.03825, - -0.026104, - -0.089276, - 0.051467, - -0.0021857, - -0.0074708, - -0.016283, - -0.056232, - 0.026517, - -0.040413, - 0.011108, - 0.1075, - 0.05117, - 0.038878, - -0.0071759, - -0.027288, - 0.052936, - 0.0048894, - 0.053154, - -0.012498, - -0.0036237, - -0.031653, - 0.0080834, - -0.018473, - 0.048122, - 0.0098432, - -0.014012, - 0.0041448, - -0.039648, - 0.03404, - 0.012708, - 0.02619, - -0.010029, - 0.06783, - -0.028244, - -0.068825, - -0.11998, - -0.034457, - 0.014159, - 0.019905, - -0.045616, - 0.057433, - -0.039549, - -0.002202, - -0.0027748, - -0.012895, - 0.01229, - 0.011554, - 0.017499, - -0.054615, - 0.058455, - 0.033276, - 0.019049, - -0.03536, - -0.034284, - 0.014129, - -0.014776, - 0.11628, - 0.057433, - 0.045229, - -0.0088706, - 0.018039, - 0.023135, - -0.034525, - 0.024178, - 0.012592, - 0.013363, - 0.032109, - 0.016538, - -0.0022877, - -0.027777, - 0.025676, - -0.019492, - 0.025357, - -0.038128, - -0.028559, - -0.011518, - -0.043368, - 0.037497, - -0.022898, - -0.051914, - -0.034729, - -0.019702, - 0.034094, - 0.022832, - 0.034344, - 0.032576, - -0.072017, - -0.0045942, - 0.030146, - 0.076872, - 0.050725, - -0.040963, - 0.025406, - 0.040564, - 0.052325, - -0.0090628, - 0.025757, - -0.066618, - 0.0038035, - -0.11481, - 0.0069563, - 0.053793, - 0.0017904, - -0.060045, - -0.039439, - 0.075231, - 0.045516, - 0.0076306, - 0.035642, - 0.0022663, - -0.044976, - -0.032079, - -0.053972, - 0.0048121, - -0.0021037, - 0.048039, - -0.011026, - -0.0078287, - 0.03605, - 0.015382, - -0.017687, - -0.069547, - -0.051485, - 0.073545, - -0.029692, - -0.0084288, - 0.0052575, - 0.008806, - 0.081943, - -0.053992, - 0.065899, - -0.016523, - -0.009028, - 0.013822, - 0.059475, - 0.087393, - 0.0073438, - -0.0018805, - -0.039636, - -0.011135, - -0.035042, - -0.06162, - 0.0096151, - 0.0085137, - 0.04132, - 0.067992, - 0.02152, - -0.065276, - -0.0018999, - -0.0064729, - -0.013173, - 0.023508, - 0.02984, - -0.028208, - 0.025501, - 0.0022723, - -0.038196, - -0.031813, - 0.002195, - -0.03152, - -0.0065469, - -0.032375, - 0.005915, - 0.073178, - 0.0058703, - -0.0056682, - 0.019146, - 0.024598, - 0.050551, - 0.046779, - -0.024081, - 0.052085, - -0.021388, - 0.044073, - 0.01666, - -0.0030246, - -0.096832, - -0.012947, - -0.038147, - -0.040804, - -0.09654, - 0.077376, - -0.01009, - -0.020218, - -0.010238, - 0.037737, - 0.024175, - -0.00037449, - 0.026212, - -0.023587, - -0.053021, - 0.028012, - -0.039966, - 0.029374, - -0.11269, - 0.041651, - -0.040708, - 0.003206, - -0.010717, - 0.024737, - 0.0077022, - -0.044564, - -0.0425, - -0.020799, - 0.1206, - 0.027633, - 0.0048449, - 0.0052138, - -0.029874, - -0.016569, - 0.0054956, - 0.012359, - -0.0035728, - 0.009852, - 0.047506, - 0.030919, - -0.024069, - 0.072115, - -0.0024783, - -0.05792, - 0.036772, - 0.067592, - 0.0064909, - -0.015237, - 0.0077132, - -0.044224, - -0.051939, - -0.053925, - -0.0012631, - -0.02779, - 0.045007, - 0.02117, - -0.025188, - -0.032471, - 0.051413, - -0.033906, - 0.06015, - 0.024762, - -0.016328, - 0.032362, - 0.015867, - 0.014273, - -0.040641, - 0.015253, - 0.022929, - 0.022105, - -0.0073612, - 0.00869, - 0.001843, - 0.013384, - -0.013135, - 0.010691, - -0.059226, - -0.038205, - 0.0072687, - -0.016767, - -0.017736, - 0.015479, - -0.0057892, - -0.03502, - -0.019997, - 0.0087257, - 0.02489, - 0.020623, - -0.043068, - 0.070631, - -0.083891, - -0.031738, - -0.022192, - -0.024818, - 0.033111, - 0.030611, - 0.042021, - -0.018253, - 0.086557, - 0.016666, - 0.020965, - -0.031061, - -0.013204, - -0.0049876, - -0.05896, - -0.026331, - -0.013875, - 0.03357, - -0.10098, - -0.00090432, - -0.070733, - 0.0083173, - 0.034299, - 0.044272, - -0.035651, - -0.031911, - 0.067389, - -0.0020026 - ], - "legends": [ - -0.064385, - -0.094161, - 0.048268, - 0.040551, - -0.029531, - -0.064621, - -0.044569, - -0.084175, - -0.0072515, - 0.001868, - -0.03753, - -0.04335, - 0.028877, - -0.0088913, - 0.042504, - 0.00049891, - 0.091009, - -0.084686, - 0.017529, - 0.049886, - 0.019727, - 0.07879, - -0.026573, - 0.095438, - 0.049598, - -0.082536, - -0.027576, - -0.018379, - 0.17222, - -0.028165, - -0.053418, - -0.0074516, - 0.030908, - -0.036282, - 0.08879, - 0.025391, - -0.077795, - -0.02343, - -0.043904, - 0.042597, - 0.073533, - -0.10827, - 0.043866, - 0.067244, - 0.025838, - 0.042626, - 0.041772, - 0.038603, - 0.03004, - -0.036597, - -0.047044, - 0.086634, - -0.0098735, - -0.036789, - -0.0398, - 0.12833, - -0.026496, - -0.00020816, - -0.065256, - -0.052353, - -0.013234, - -0.074479, - 0.13217, - -0.033958, - 0.12665, - -0.043578, - -0.056378, - 0.092455, - 0.034964, - 0.017271, - -0.012386, - -0.039326, - 0.025591, - 0.043318, - 0.025567, - 0.07826, - 0.023919, - -0.028967, - -0.036146, - -0.07564, - -0.039506, - 0.029837, - -0.043561, - 0.079896, - 0.029889, - -0.051742, - -0.0078369, - -0.0077312, - -0.0013412, - -0.02383, - -0.098207, - -0.017711, - -0.079375, - -0.025624, - 0.058197, - 0.063934, - 0.027161, - 0.0063687, - -0.014048, - 0.014602, - 0.027654, - -0.041726, - 0.027474, - 0.009088, - 0.04191, - -0.039699, - 0.0045855, - -0.011056, - -0.0033641, - 0.078261, - 0.035508, - 0.018008, - 0.056355, - -0.056821, - -0.023817, - 0.024333, - -0.007881, - 0.060435, - -0.056148, - 0.055103, - 0.010154, - 0.014538, - -0.062373, - -0.08984, - 0.10059, - 0.049176, - -0.025079, - 0.059236, - -0.02555, - 0.17586, - 0.017389, - 0.057643, - -0.054438, - -0.019353, - -0.012747, - 0.022894, - 0.024389, - 0.078724, - -0.0253, - -0.031106, - -0.015472, - -0.019353, - 0.025727, - 0.061792, - 0.0043785, - -0.022641, - 0.0061602, - 0.023671, - -0.075349, - -0.036929, - 0.0089588, - 0.10574, - 0.0094997, - 0.025572, - -0.010419, - -0.021285, - 0.050329, - 0.094936, - 0.0037838, - 0.0061388, - 0.028966, - 0.045787, - -0.0074433, - 0.045755, - 0.034346, - -0.073818, - 0.012976, - -0.022165, - 0.0011422, - 0.017854, - -0.009034, - -0.049367, - 0.00088463, - -0.01891, - 0.037619, - 0.081331, - 0.041701, - 0.0093475, - -0.015945, - 0.016432, - -0.0056845, - 0.041731, - 0.034191, - -0.00556, - -0.024537, - 0.042937, - -0.054752, - 0.11096, - 0.074974, - 0.044084, - 0.033772, - 0.11209, - -0.10497, - 0.033137, - 0.0048545, - 0.021599, - -0.017347, - -0.023591, - 0.024265, - 0.038843, - -0.1625, - 0.0027315, - -0.049187, - -0.043204, - 0.035831, - 0.042897, - 0.046335, - 0.043366, - -0.009658, - -0.0059173, - 0.10583, - 0.058904, - 0.01093, - -0.01781, - -0.036167, - -0.028574, - -0.041205, - -0.0042641, - -0.069899, - 0.0078302, - 0.056832, - -0.071709, - 0.023831, - 0.075242, - 0.064839, - -0.032387, - 0.068634, - 0.062481, - -0.046926, - -0.02153, - -0.039206, - -0.029892, - -0.060775, - 0.023464, - 0.022674, - 0.03442, - -0.076586, - 0.067469, - 0.070125, - 0.030554, - 0.029053, - -0.012077, - -0.071126, - -0.024232, - -0.031907, - -0.0023756, - -0.023865, - -0.0086012, - -0.058754, - -0.030067, - 0.062369, - -0.0022875, - 0.021742, - 0.040387, - -0.058001, - 0.072572, - -0.050931, - -0.0075318, - 0.069239, - 0.049739, - 0.059001, - 0.030742, - 0.053945, - 0.0319, - 0.048747, - -0.006148, - 0.04523, - 0.017647, - 0.02691, - -0.089909, - -0.016889, - 0.067348, - -0.10315, - -0.041627, - 0.045763, - -0.037224, - -0.055485, - -0.052139, - -0.0453, - 0.017254, - 0.02064, - -0.053858, - 0.016337, - -0.023084, - 0.049384, - -0.023811, - 0.068991, - -0.018016, - -0.042419, - -0.013876, - 0.045449, - -0.029989, - 0.0011642, - -0.064312, - 0.033874, - 0.028613, - 0.10518, - 0.073679, - 0.033418, - 0.0024561 - ], - "mythic": [ - -0.057678, - -0.055864, - 0.059046, - 0.055264, - -0.096757, - -0.063544, - -0.1021, - -0.075691, - 0.024464, - 0.045887, - 0.030597, - -0.045997, - 0.010753, - 0.059149, - -0.013426, - -0.04715, - 0.10153, - -0.10075, - 0.031578, - 0.053886, - -0.011941, - 0.077408, - -0.0060449, - 0.097134, - 0.085366, - -0.042138, - 0.041562, - 0.058281, - 0.11146, - 0.066819, - -0.060073, - -0.027929, - 0.032005, - -0.068852, - 0.03714, - 0.051923, - -0.013513, - 0.015792, - 0.0037142, - -0.0084037, - 0.0078587, - -0.14351, - 0.097405, - 0.11736, - 0.044081, - 0.012449, - 0.048215, - 0.040986, - -0.052566, - -0.056398, - 0.015023, - 0.049816, - -0.055821, - -0.046265, - 0.072294, - 0.060611, - 0.067909, - -0.0087833, - -0.011179, - 0.0046452, - -0.019027, - -0.066116, - 0.17296, - -0.081489, - 0.11869, - -0.073966, - -0.048106, - 0.017936, - 0.0010021, - 0.0040622, - 0.031636, - 0.038498, - -0.029676, - -0.011932, - 0.00319, - 0.010769, - -0.015662, - -0.02325, - 0.0066903, - 0.035896, - 0.0097507, - 0.021279, - -0.021342, - 0.017594, - -0.020083, - -0.003684, - -0.030706, - -0.015293, - 0.032209, - -0.025023, - -0.06882, - -0.085849, - -0.10273, - -0.0090135, - -0.018839, - 0.065593, - -0.027773, - -0.072216, - 0.047453, - 0.076027, - 0.063566, - -0.0301, - 0.010249, - 0.0027711, - -0.07069, - -0.10244, - -0.0090144, - 0.016227, - -0.057813, - 0.042109, - 0.052336, - 0.04968, - -0.0079858, - -0.11391, - -0.061558, - 0.077505, - -0.033618, - 0.037944, - -0.063667, - 0.02329, - 0.01084, - 0.030893, - -0.090963, - -0.07626, - 0.081725, - -0.018624, - 0.074511, - -0.0088566, - -0.013474, - 0.059106, - -0.068845, - -0.044926, - -0.094442, - 0.018829, - -0.0018895, - -0.070635, - -0.044837, - 0.063327, - 0.0015099, - -0.059837, - -0.039904, - -0.056578, - 0.036992, - 0.10863, - 0.010342, - -0.078199, - 0.016783, - 0.00034279, - -0.068775, - -0.025441, - -0.024586, - 0.10969, - -0.011915, - 0.00034974, - -0.022357, - 0.0018988, - -0.022054, - -0.0065061, - 0.011762, - 0.007755, - -0.0054384, - 0.058843, - -0.084476, - 0.015155, - -0.011701, - 0.0026086, - -0.0087162, - 0.093288, - -0.011458, - -0.022213, - -0.037643, - -0.1031, - -0.05557, - -0.047166, - 0.005199, - 0.09191, - 0.088801, - 0.021193, - -0.010962, - 0.029621, - -0.015157, - 0.075053, - 0.012704, - -0.020058, - -0.033765, - -0.009882, - -0.042257, - 0.18625, - 0.048763, - -0.012252, - 0.11011, - 0.058955, - 0.058409, - -0.049381, - -0.023597, - 0.018259, - -0.0024076, - 0.0099155, - 0.0071849, - 0.018494, - -0.14749, - 0.042474, - -0.048368, - -0.10131, - 0.083226, - 0.047837, - -0.043307, - 0.0515, - 0.013205, - 0.0060499, - 0.1671, - -0.040485, - -0.048591, - -0.04181, - 0.043095, - 0.030357, - -0.013528, - -0.051625, - -0.08683, - -0.0056444, - 0.018721, - 0.034336, - 0.022223, - 0.076027, - 0.024667, - -0.017739, - 0.11751, - 0.070276, - -0.022115, - -0.022535, - -0.083441, - -0.046555, - -0.10596, - 0.0023552, - -0.044224, - 0.041564, - -0.063806, - -0.024589, - 0.097578, - 0.028493, - 0.097625, - 0.09007, - -0.071952, - -0.01042, - -0.2081, - -0.052398, - -0.13464, - -0.014058, - -0.064171, - -0.012818, - 0.0012684, - -0.076111, - -0.014204, - 0.089811, - -0.013805, - 0.12572, - -0.095994, - 0.013282, - 0.1308, - -0.013706, - 0.063346, - 0.0017229, - 0.033553, - -0.043658, - 0.070993, - 0.0025464, - 0.02865, - -0.045213, - 0.064316, - -0.045971, - -0.07995, - 0.046318, - -0.10102, - -0.049107, - 0.14107, - -0.15011, - -0.041547, - 0.014108, - -0.04163, - 0.032408, - 0.21459, - -0.10334, - -0.028862, - 0.014494, - 0.056745, - -0.0011913, - -0.0025389, - 0.012208, - -0.057481, - -0.045078, - 0.078609, - 0.0032342, - 0.02765, - -0.060255, - 0.019783, - 0.07556, - 0.091422, - 0.046956, - -0.052246, - 0.026535 - ], - "friends": [ - -0.03032, - 0.029071, - 0.034272, - 0.024602, - -0.070406, - 0.0049878, - 0.016192, - -0.072827, - 0.030366, - 0.015221, - -0.031049, - 0.011064, - 0.010672, - -0.033494, - -0.028408, - -0.068258, - 0.056914, - -0.0045034, - 0.048656, - -0.01448, - -0.03303, - 0.079152, - -0.057725, - 0.073219, - 0.0026539, - 0.018278, - 0.0014088, - -0.0036601, - 0.051314, - -0.0248, - -0.036074, - 0.0034473, - -0.033476, - 0.030631, - -0.022139, - 0.067179, - -0.036884, - 0.021048, - -0.053392, - -0.026165, - 0.041232, - -0.062601, - -0.013037, - 0.030172, - 0.025649, - 0.0071792, - -0.014671, - -0.026175, - -0.010655, - 0.030078, - 0.018063, - 0.012816, - 0.050329, - -0.011244, - -0.018613, - -0.046788, - -0.053332, - -0.016445, - -0.055961, - -0.043318, - -0.053635, - -0.040409, - 0.12206, - 0.017752, - 0.015373, - -0.012076, - -0.0097507, - -0.047972, - -0.077894, - 0.0049538, - 0.062824, - 0.006631, - 0.13347, - 0.015622, - 0.0071013, - 0.027861, - 0.052908, - -0.032035, - 0.057208, - -0.014996, - 0.014896, - 0.075636, - 0.05535, - 0.066165, - -0.059483, - -0.095961, - 0.0047345, - 0.011331, - -0.0072213, - -0.00032424, - 0.043869, - -0.030581, - -0.099792, - -0.010926, - 0.094772, - 0.099248, - -0.023368, - 0.046887, - 0.068666, - -0.0025967, - 0.042509, - 0.044295, - 0.0012395, - -0.069717, - 0.041572, - -0.094302, - -0.058249, - -0.054568, - 0.037756, - 0.036927, - -0.069492, - 0.08633, - 0.047468, - 0.040728, - 0.0015343, - -0.0050555, - 0.014932, - -0.056569, - -0.0074577, - -0.045635, - 0.00014424, - -0.009685, - -0.029923, - -0.068007, - 0.1389, - -0.027331, - -0.046143, - 0.0063031, - -0.018101, - 0.079092, - 0.048229, - 0.099146, - 0.029321, - -0.0092247, - 0.022436, - 0.050602, - 0.024749, - 0.082029, - -0.0097279, - 0.068359, - 0.047728, - -0.052959, - 0.0014361, - -0.00838, - 0.043506, - 0.052811, - 0.03057, - -0.022348, - 0.045737, - -0.031274, - 0.011476, - 0.058688, - -0.039664, - -0.011496, - 0.03309, - -0.049596, - 0.012429, - 0.033594, - 0.029928, - -0.086099, - 0.046086, - 0.036299, - 0.054704, - 0.0089295, - -0.052087, - 0.034033, - -0.027046, - 0.034076, - -0.011576, - 0.029884, - -0.023543, - -0.0083808, - 0.011542, - 0.00026544, - -0.045267, - 0.046942, - 0.046231, - 0.069764, - 0.029166, - -0.05508, - 0.081874, - -0.021942, - 0.00025428, - 0.029357, - -0.01927, - -0.060106, - -0.025322, - 0.11581, - 0.083611, - -0.0040048, - -0.03177, - 0.15717, - -0.10287, - -0.0080642, - -0.019867, - 0.041671, - 0.021011, - 0.0061844, - 0.032651, - 0.063528, - -0.10465, - 0.069436, - -0.047946, - 0.023697, - 0.009506, - 0.03136, - -0.023034, - -0.0088171, - 0.011003, - -0.047113, - 0.086337, - 0.033641, - 0.07997, - -0.00095081, - -0.13452, - -0.025717, - -0.028442, - 0.019161, - -0.033792, - -0.095519, - 0.020803, - -0.092589, - 0.016787, - 0.097988, - 0.11797, - 0.0091262, - 0.027739, - 0.12625, - 0.011852, - -0.041257, - 0.0099463, - 0.017289, - -0.056697, - 0.022831, - 0.066938, - -0.0056675, - 0.0061823, - 0.023226, - -0.032595, - 0.067608, - 0.029188, - -0.034311, - 0.055186, - -0.012459, - 0.033987, - 0.046131, - -0.050651, - -0.06117, - -0.039907, - -0.017931, - 0.07187, - -0.0076926, - -0.0084556, - 0.025898, - 0.004433, - -0.071218, - -0.036205, - 0.019855, - -0.035533, - -0.034277, - -0.028095, - 0.03667, - 0.012629, - 0.043889, - 0.050312, - -0.0043992, - -0.031048, - 0.052551, - 0.014226, - 0.014257, - -0.032811, - 0.069386, - -0.10581, - -0.028119, - 0.044902, - -0.0008172, - -0.034718, - -0.0093728, - -0.025998, - 0.042834, - 0.032794, - -0.016302, - -0.023869, - -0.037449, - 0.0054065, - -0.023381, - -0.047689, - -0.08759, - -0.0018723, - 0.0063868, - 0.015243, - 0.034921, - -0.11253, - -0.0083127, - 0.0084808, - 0.01279, - 0.062287, - 0.028231, - 0.0027373, - 0.0064187 - ], - "housing": [ - 0.11217, - -0.049984, - 0.033224, - 0.051909, - 0.0055779, - 0.055109, - 0.01501, - -0.083649, - 0.072694, - 0.020969, - 0.031557, - -0.030956, - -0.019994, - 0.0031895, - -0.012758, - -0.057608, - 0.08473, - 0.035361, - 0.040359, - 0.022152, - 0.099338, - 0.0042128, - -0.00013662, - 0.050983, - 0.042642, - 0.00872, - -0.018123, - 0.047835, - 0.036709, - 0.04116, - -0.042091, - -0.0080148, - -0.029675, - -0.060183, - 0.10172, - 0.091009, - 0.042319, - 0.033099, - 0.022879, - 0.0099802, - 0.018236, - -0.13978, - 0.057983, - 0.026327, - -0.023362, - -0.023606, - -0.055659, - -0.0054731, - -0.050141, - 0.051132, - -0.067009, - 0.017517, - 0.014, - 0.014953, - -0.049393, - 0.006675, - -0.020793, - -0.063674, - -0.038932, - -0.045809, - 0.0071767, - 0.035878, - 0.10093, - -0.0085703, - 0.098887, - -0.03346, - -0.02598, - -0.097199, - 0.01883, - 0.03526, - 0.0045049, - 0.015338, - 0.049718, - -0.094173, - 0.0022721, - 0.014291, - -0.044216, - -0.043855, - -0.028343, - 0.0098067, - 0.022152, - -0.012915, - -0.02326, - 0.064441, - -0.054456, - 0.084658, - 0.012601, - -0.05708, - -0.0039131, - -0.0030795, - 0.0027808, - 0.041426, - -0.087973, - 0.037626, - -0.062372, - 0.083259, - -0.0053586, - 0.0026395, - 0.034728, - -0.013541, - 0.067768, - -0.012391, - 0.011976, - 0.049138, - 0.043474, - -0.092198, - -0.010456, - 0.057806, - 0.10322, - 0.034764, - -0.077656, - 0.11053, - 0.075023, - 0.091721, - 0.10745, - -0.025238, - -0.0035492, - -0.12606, - -0.05962, - 0.028489, - 0.0037043, - 0.039504, - 0.054748, - -0.014775, - 0.080075, - -0.023092, - 0.0055274, - -0.073331, - 0.036839, - 0.10106, - 0.066876, - -0.015883, - 0.1186, - 0.014617, - -0.0095487, - 0.10217, - -0.12362, - 0.0018137, - -0.092096, - -0.039598, - 0.01986, - 0.031007, - 0.076975, - 0.05075, - -0.017091, - -0.01454, - 0.020408, - 0.10128, - -0.01745, - 0.0034577, - 0.026731, - 0.06903, - 0.035861, - -0.10996, - 0.032025, - 0.032995, - 0.019347, - 0.011166, - -0.0072752, - -0.032351, - 0.026857, - -0.024695, - -0.10323, - 0.030911, - -0.00091603, - -0.021684, - 0.027781, - -0.028212, - 0.053421, - 0.067254, - 0.025446, - -0.020858, - 0.017985, - 0.03658, - -0.036227, - 0.047696, - -0.025894, - 0.042365, - -0.043132, - 0.056962, - 0.023941, - 0.0056394, - -0.052884, - -0.010749, - 0.014386, - -0.039526, - -0.013474, - 0.094006, - -0.021532, - -0.05986, - -0.072084, - 0.055074, - 0.00028629, - 0.01518, - 0.014063, - -0.01482, - -0.017156, - 0.011285, - 0.067862, - -0.0271, - -0.17397, - 0.055758, - 0.0095071, - -0.024632, - -0.012415, - -0.041687, - -0.061609, - -0.042083, - -0.052631, - 0.003759, - 0.1216, - -0.012999, - -0.018625, - 0.023716, - -0.020865, - 0.090433, - 0.061359, - 0.053596, - 0.0094375, - -0.013704, - 0.062943, - -0.044639, - 0.020051, - 0.079528, - 0.021417, - -0.012333, - -0.084508, - 0.015433, - -0.0062458, - -0.019977, - -0.015193, - -0.019503, - -0.056469, - -0.065089, - 0.0072013, - 0.010347, - -0.025765, - -0.0066805, - -0.022369, - -0.089289, - 0.014654, - -0.009093, - 0.020059, - -0.012295, - -0.052037, - 0.071029, - -0.0063888, - -0.030306, - -0.01816, - -0.0019856, - -0.0019932, - -0.037825, - -0.039877, - -0.077591, - -0.0136, - -0.0073564, - -0.014633, - 0.032838, - 0.04969, - -0.011831, - 0.0018349, - -0.079904, - -0.028779, - 0.0038705, - -0.0066872, - 0.033369, - 0.061499, - -0.0071086, - -0.0080528, - 0.012806, - -0.035594, - 0.051294, - -0.10506, - -0.035508, - -0.077332, - 0.008524, - 0.059585, - 0.0049709, - 0.035977, - 0.036871, - 0.090871, - 0.037588, - 0.029488, - 0.03436, - 0.006229, - 0.066865, - -0.053651, - 0.027107, - -0.072885, - -0.017942, - 0.015092, - -0.001171, - -0.012847, - -0.050898, - -0.016207, - 0.082651, - -0.019221, - 0.093848, - -0.050011, - -0.008137 - ], - "tennis": [ - 0.023815, - -0.13938, - 0.049489, - 0.0048727, - -0.035437, - -0.0075932, - -0.063113, - -0.084808, - 0.063324, - 0.0022242, - -0.02895, - 0.0030176, - 0.044552, - -0.07168, - 0.06122, - 0.0092697, - 0.10877, - 0.012162, - 0.035645, - -0.023413, - 0.044939, - -0.054529, - -0.018208, - 0.071084, - 0.016262, - 0.0084346, - -0.025417, - 0.062722, - 0.01659, - -0.026882, - 0.00079975, - -0.0052947, - -0.031015, - -0.010239, - 0.082249, - -0.0035468, - 0.048463, - -0.041089, - 0.081711, - 0.001843, - 0.016365, - -0.15196, - -0.0073302, - -0.068967, - 0.010725, - 0.017109, - 0.043926, - -0.039549, - -0.02237, - 0.074087, - -0.059457, - 0.0092593, - 0.047032, - 0.084045, - -0.054197, - -0.038671, - 0.058348, - 0.07326, - -0.054815, - -0.031112, - -0.05581, - 0.088624, - 0.079428, - 0.0016722, - -0.027937, - -0.097598, - 0.061285, - 0.00088162, - -0.033563, - 0.036086, - 0.06238, - -0.052106, - 0.089176, - -0.070083, - 0.023371, - -0.038792, - -0.056556, - 0.0086, - -0.13449, - -0.0064705, - -0.039392, - -0.030566, - -0.09698, - 0.072683, - -0.003688, - -0.12345, - 0.022652, - -0.069103, - -0.037622, - 0.019493, - 0.067357, - 0.010526, - -0.1272, - 0.032316, - 0.085374, - 0.13603, - -0.1421, - 0.042516, - 0.023631, - 0.041993, - 0.011929, - 0.04308, - 0.043199, - -0.054682, - 0.026727, - -0.12798, - 0.013715, - 0.059786, - -0.027763, - 0.021009, - -0.00034722, - 0.045898, - 0.037333, - 0.0079825, - 0.089327, - -0.030749, - -0.040519, - -0.048593, - -0.034117, - 0.054752, - 0.072473, - -0.0095097, - 0.041083, - 0.00071163, - 0.043512, - -0.12757, - -0.011125, - -0.069159, - -0.086802, - 0.045406, - -0.040593, - -0.000069728, - -0.024285, - 0.01199, - -0.092794, - -0.053959, - 0.047495, - 0.019455, - -0.0025569, - -0.17918, - 0.026977, - -0.004279, - 0.13904, - 0.022626, - -0.057591, - 0.0065148, - 0.085966, - -0.018549, - -0.016643, - -0.026541, - 0.031526, - 0.089422, - -0.049335, - -0.0075132, - -0.085155, - -0.035267, - 0.056617, - 0.1019, - 0.055396, - 0.0082581, - 0.0099922, - -0.014914, - -0.059942, - 0.062373, - -0.073889, - -0.066832, - -0.10816, - -0.058703, - 0.015929, - -0.068651, - 0.033001, - 0.061303, - -0.0057297, - -0.054048, - 0.0069209, - 0.087116, - -0.040044, - 0.0064132, - -0.019103, - 0.018734, - 0.068201, - 0.037663, - 0.025021, - -0.12923, - -0.045471, - -0.05964, - -0.061616, - 0.15266, - 0.074675, - 0.05535, - -0.1406, - 0.049864, - -0.0048276, - -0.086547, - -0.00022788, - -0.082095, - -0.024144, - 0.048751, - 0.039201, - -0.0079027, - -0.1583, - 0.068771, - -0.037962, - -0.058613, - 0.030779, - 0.089899, - 0.012281, - -0.020297, - -0.033618, - -0.03972, - 0.18411, - 0.019247, - 0.05683, - 0.05287, - -0.045422, - 0.027024, - -0.073727, - -0.0098811, - -0.048336, - -0.023325, - -0.041899, - -0.023536, - -0.06537, - 0.097965, - -0.018825, - 0.05498, - -0.045521, - 0.089011, - -0.060761, - 0.013548, - 0.029388, - -0.044897, - -0.046301, - 0.038894, - -0.044056, - 0.078899, - -0.12521, - 0.041183, - -0.047749, - -0.023039, - 0.012872, - -0.11158, - 0.058989, - -0.0081203, - -0.00098526, - 0.10236, - 0.024068, - -0.0058917, - 0.011474, - -0.071125, - 0.051705, - 0.033009, - 0.060407, - 0.035607, - -0.00023348, - -0.031862, - -0.12711, - -0.010958, - -0.053149, - 0.14149, - -0.061, - 0.046554, - 0.086787, - 0.014376, - -0.027395, - -0.0088708, - -0.044145, - -0.042397, - 0.041003, - -0.085859, - 0.031486, - 0.066208, - -0.13651, - 0.0006241, - 0.000077423, - -0.074769, - 0.0018892, - 0.10762, - 0.068372, - 0.051247, - 0.11243, - -0.034267, - 0.072463, - -0.023655, - -0.0081117, - 0.013352, - 0.03865, - -0.048896, - 0.014072, - -0.0028551, - -0.034158, - -0.022393, - -0.050189, - 0.01279, - 0.076237, - -0.026506, - 0.0096789, - -0.004842, - 0.069374, - -0.024943 - ], - "legislation": [ - 0.0082071, - -0.0060883, - 0.030924, - 0.0081494, - 0.014817, - -0.00090502, - -0.0032746, - -0.075735, - -0.0058959, - 0.0065953, - -0.0035227, - -0.047558, - -0.036151, - -0.0068076, - 0.0081206, - 0.074303, - 0.0695, - 0.018512, - 0.0082629, - 0.065888, - 0.011723, - -0.025327, - 0.028472, - 0.040746, - -0.0053004, - -0.015087, - 0.0024144, - 0.022454, - 0.022581, - -0.041031, - 0.05104, - -0.065737, - -0.063805, - -0.082618, - 0.039525, - 0.01959, - 0.019255, - -0.056429, - 0.0085778, - 0.015549, - -0.0033717, - -0.10753, - 0.015125, - -0.022799, - 0.0061224, - 0.019299, - -0.035926, - 0.03145, - -0.020744, - 0.012687, - 0.027787, - -0.018301, - 0.041725, - 0.0044603, - -0.056212, - 0.0008687, - 0.033257, - -0.01914, - -0.011378, - 0.00052309, - 0.0061341, - -0.013912, - 0.067131, - 0.00629, - 0.018267, - -0.037591, - -0.032048, - -0.030561, - 0.030235, - 0.031176, - -0.031795, - -0.009692, - -0.058949, - 0.0013596, - -0.026795, - -0.023742, - -0.018921, - -0.018477, - -0.0078922, - 0.021977, - -0.00070346, - 0.012908, - -0.021163, - 0.038879, - -0.0025037, - 0.018914, - 0.01383, - 0.012076, - 0.017868, - 0.0065985, - 0.018493, - 0.0079174, - -0.069079, - -0.01285, - -0.020495, - 0.00013141, - 0.035601, - 0.047003, - 0.021595, - 0.011412, - -0.023706, - -0.029692, - 0.014104, - -0.026654, - -0.033961, - -0.033568, - 0.046359, - -0.0049639, - 0.0014875, - 0.0075822, - 0.0114, - 0.027383, - 0.05818, - -0.003142, - -0.000020222, - 0.042457, - 0.011972, - -0.016774, - -0.030764, - 0.057, - -0.011626, - 0.026254, - 0.025277, - -0.021017, - 0.036662, - 0.032233, - -0.045426, - -0.032076, - -0.0038047, - 0.13606, - -0.01542, - 0.0084011, - 0.010969, - 0.050642, - 0.013678, - -0.006859, - -0.0062439, - 0.023757, - -0.001739, - 0.0033472, - 0.039103, - -0.010755, - -0.0044826, - 0.0215, - -0.050521, - 0.011323, - -0.0080477, - 0.0041899, - 0.038756, - 0.002747, - 0.0253, - 0.038228, - 0.03351, - -0.068137, - 0.032352, - 0.037324, - 0.02302, - -0.054906, - -0.0307, - 0.0011937, - 0.055023, - 0.020878, - -0.032496, - 0.035545, - -0.0025094, - -0.0053827, - 0.040502, - 0.0047243, - -0.0069276, - -0.033608, - 0.004425, - 0.0055452, - -0.0082197, - 0.01025, - -0.045695, - 0.025943, - -0.076847, - 0.027902, - -0.039766, - -0.011071, - -0.035695, - -0.04253, - 0.043959, - 0.016216, - -0.022829, - 0.0099337, - 0.019349, - 0.068592, - 0.042416, - -0.00033261, - -0.057357, - 0.080998, - -0.035376, - -0.011081, - 0.020076, - -0.019651, - -0.0050897, - -0.0070583, - -0.032185, - -0.036925, - -0.10927, - 0.02783, - 0.023281, - -0.017711, - -0.0048759, - -0.024158, - 0.015163, - 0.011969, - -0.01515, - -0.015483, - 0.069401, - 0.022687, - 0.0049941, - -0.022259, - 0.0036298, - 0.034191, - 0.052936, - 0.014267, - -0.032268, - -0.097784, - 0.0041225, - -0.024054, - 0.017302, - 0.081276, - 0.02422, - -0.0163, - -0.0086004, - 0.011636, - -0.011997, - 0.0073879, - -0.0081811, - -0.079044, - -0.025352, - -0.026979, - -0.017862, - -0.044321, - 0.029878, - 0.035389, - 0.0053781, - 0.00050176, - 0.037094, - 0.0027015, - 0.015945, - 0.0073843, - 0.0068643, - 0.041253, - 0.010708, - -0.043462, - 0.0022452, - 0.038599, - 0.072592, - -0.022414, - -0.0063374, - 0.018557, - 0.029364, - 0.043089, - -0.024055, - 0.0068948, - -0.0009308, - -0.012351, - 0.038608, - -0.038227, - -0.045253, - -0.011172, - 0.014096, - 0.022024, - -0.013797, - 0.026551, - 0.018584, - -0.058001, - -0.0013155, - 0.022439, - -0.084111, - 0.0054626, - -0.043563, - -0.016768, - -0.0053354, - 0.087248, - -0.048322, - 0.0052729, - 0.049695, - 0.023135, - -0.0016896, - -0.015075, - -0.0021669, - 0.037694, - -0.019973, - 0.025377, - 0.043697, - -0.0028299, - 0.023669, - -0.020985, - 0.052202, - -0.00081246, - -0.028171, - 0.0084496, - -0.058204, - -0.023666, - -0.031131, - -0.020856 - ], - "styling": [ - -0.015597, - -0.0063451, - -0.00714, - 0.049868, - 0.051303, - -0.024282, - -0.055744, - -0.073338, - -0.019844, - 0.0027259, - 0.020587, - -0.040859, - -0.03437, - 0.014196, - -0.05499, - 0.040549, - 0.041205, - 0.058418, - 0.027321, - 0.016381, - 0.0442, - -0.053989, - 0.047147, - 0.069433, - 0.042769, - 0.050032, - 0.024369, - 0.047118, - 0.051954, - 0.016223, - -0.081271, - -0.091803, - 0.08473, - -0.065869, - 0.048019, - 0.004038, - -0.0013306, - 0.048834, - -0.083583, - 0.010941, - 0.036648, - -0.12596, - -0.048098, - -0.05066, - -0.085695, - 0.01323, - -0.019343, - -0.086172, - -0.020217, - -0.0049522, - -0.012423, - -0.026173, - -0.059112, - 0.10078, - -0.017635, - -0.035619, - 0.015952, - -0.020832, - -0.035192, - 0.040715, - -0.00049998, - -0.0046151, - 0.091646, - 0.027079, - 0.058073, - 0.03976, - -0.026057, - 0.00081217, - -0.02618, - -0.04472, - -0.015452, - 0.025335, - 0.02876, - -0.074395, - 0.035736, - 0.035336, - -0.048482, - -0.019037, - -0.021849, - -0.036842, - -0.027967, - -0.00014026, - 0.049514, - 0.045586, - 0.0054476, - 0.0074193, - -0.0037421, - -0.013509, - 0.075719, - 0.038279, - 0.060421, - -0.032827, - -0.084579, - 0.0085624, - 0.0056825, - 0.051789, - -0.018639, - -0.050654, - 0.052897, - -0.0433, - 0.084317, - 0.092372, - -0.032876, - 0.040585, - -0.015451, - -0.089008, - -0.018272, - -0.0014686, - 0.01814, - 0.010781, - 0.076656, - 0.042877, - 0.042367, - 0.032524, - -0.10842, - -0.12519, - 0.007221, - -0.03993, - -0.050408, - -0.027283, - 0.071222, - 0.023551, - -0.033605, - 0.0071651, - 0.11116, - 0.025506, - -0.026388, - -0.050358, - 0.04679, - 0.12198, - -0.063043, - -0.013896, - 0.011593, - -0.052777, - -0.012186, - 0.016311, - -0.022393, - 0.061836, - -0.011723, - -0.079178, - 0.017168, - -0.0037835, - 0.069966, - 0.10172, - -0.076175, - -0.031652, - 0.062116, - 0.007226, - 0.035772, - 0.0018163, - 0.035088, - 0.080301, - 0.10182, - -0.10873, - -0.0007001, - 0.057299, - 0.1019, - 0.051801, - -0.030022, - 0.034038, - 0.0012224, - 0.021187, - -0.096817, - 0.026858, - 0.056495, - 0.067089, - -0.010876, - -0.046808, - -0.078527, - 0.036399, - 0.062544, - -0.056017, - 0.020605, - 0.025871, - 0.024381, - 0.065408, - 0.022551, - 0.083352, - -0.0045893, - -0.0027427, - 0.013825, - -0.10955, - 0.012286, - -0.028481, - 0.054695, - -0.039613, - -0.04563, - 0.11411, - -0.032215, - -0.0034966, - 0.0032062, - 0.049812, - 0.014359, - -0.056732, - -0.049038, - -0.053558, - 0.032164, - -0.075921, - 0.043075, - 0.07469, - -0.18162, - 0.035742, - 0.0078515, - -0.016129, - -0.014838, - 0.0081134, - 0.0063428, - 0.045665, - -0.0038923, - -0.0057726, - 0.11367, - 0.00001011, - 0.011585, - 0.071214, - 0.010492, - -0.0091411, - -0.045943, - 0.032996, - -0.079039, - -0.026614, - -0.1003, - -0.071875, - 0.061467, - 0.082683, - 0.04792, - 0.066865, - 0.043731, - 0.087322, - 0.036079, - 0.015836, - -0.023836, - -0.045617, - -0.052174, - -0.000073053, - 0.028447, - -0.0016895, - -0.05543, - -0.092042, - 0.052992, - 0.013159, - 0.0063846, - -0.03817, - -0.058251, - -0.034592, - -0.08067, - -0.020359, - -0.016074, - -0.016888, - 0.055913, - -0.0083841, - 0.045525, - 0.020186, - -0.067944, - 0.058028, - 0.024583, - -0.02483, - 0.006895, - 0.013022, - 0.0023738, - 0.052401, - 0.099454, - -0.0071404, - -0.028425, - 0.010006, - 0.078097, - -0.005663, - 0.0474, - 0.01837, - -0.017886, - 0.0095069, - -0.041593, - 0.08412, - -0.11384, - -0.029249, - 0.011258, - -0.049812, - -0.0073964, - 0.086995, - -0.038804, - -0.019416, - 0.082402, - 0.018132, - 0.070225, - 0.025643, - 0.047777, - -0.020014, - -0.01179, - 0.074122, - 0.043476, - 0.034145, - -0.049913, - -0.054918, - -0.0064389, - -0.023232, - -0.01521, - -0.031075, - 0.026125, - 0.070777, - 0.028127, - -0.070149 - ], - "common-law": [ - -0.038107, - -0.0065817, - 0.051471, - 0.045513, - -0.027844, - 0.0093742, - 0.038976, - -0.11883, - 0.014399, - 0.03505, - -0.0074346, - -0.081689, - 0.06916, - -0.053684, - -0.044175, - 0.075383, - 0.081032, - -0.015284, - 0.035203, - 0.022159, - -0.058538, - -0.030104, - -0.0043269, - 0.042419, - 0.02392, - -0.013023, - -0.0093916, - 0.048468, - 0.019449, - -0.0091312, - 0.015906, - 0.0015, - -0.065955, - -0.059915, - 0.027222, - 0.051154, - -0.067921, - -0.02739, - 0.010298, - 0.034875, - 0.031856, - -0.082793, - 0.034406, - 0.00075998, - -0.048228, - -0.0042853, - 0.018186, - 0.058741, - 0.015952, - -0.0047501, - -0.0040907, - 0.049048, - 0.028027, - 0.041566, - 0.027007, - -0.0053173, - 0.057665, - -0.0148, - 0.0006106, - -0.021328, - 0.035454, - 0.04606, - 0.0837, - 0.028334, - -0.025637, - -0.029607, - -0.036237, - 0.019906, - -0.0010942, - -0.0387, - -0.00081077, - 0.034739, - 0.0049111, - -0.022534, - 0.033123, - -0.024466, - -0.01589, - -0.030373, - 0.034262, - 0.039377, - 0.044633, - 0.054293, - 0.024935, - -0.001475, - -0.022705, - 0.031989, - 0.037066, - 0.035391, - -0.019529, - 0.086638, - 0.025789, - -0.033178, - -0.085656, - 0.011408, - 0.046019, - 0.031649, - -0.0029629, - 0.063591, - -0.021225, - -0.010174, - 0.030611, - -0.0098668, - -0.067784, - -0.081566, - -0.039032, - -0.06238, - 0.053021, - 0.10878, - 0.017928, - -0.068737, - 0.014141, - 0.03291, - -0.00085345, - -0.017196, - -0.030461, - -0.013614, - 0.010342, - 0.0083427, - 0.023722, - 0.052074, - 0.025048, - 0.0066779, - 0.040701, - -0.046631, - 0.057162, - 0.058811, - 0.06238, - -0.01754, - -0.06702, - 0.086302, - 0.0023673, - 0.044771, - -0.03273, - -0.031037, - -0.029831, - 0.014507, - 0.020029, - 0.054826, - 0.050468, - -0.095136, - 0.03534, - -0.048637, - -0.045983, - 0.044612, - 0.040335, - 0.027964, - 0.058285, - 0.048891, - 0.036328, - -0.037954, - 0.035107, - 0.11188, - 0.043788, - -0.016858, - 0.027274, - 0.03004, - -0.030447, - 0.0094194, - -0.025115, - -0.031879, - 0.037826, - 0.044359, - -0.018914, - 0.028079, - 0.061633, - 0.018916, - 0.090528, - 0.035105, - -0.0084404, - 0.026649, - -0.034823, - -0.0029636, - 0.0073578, - 0.010359, - -0.054836, - 0.03307, - 0.013998, - 0.019762, - -0.022798, - -0.0024748, - 0.045214, - 0.0048105, - 0.023133, - -0.024667, - -0.020615, - -0.022939, - 0.032967, - 0.1311, - 0.0099944, - 0.042899, - -0.041112, - 0.058642, - 0.05626, - 0.0020816, - -0.053132, - -0.029313, - 0.022592, - -0.013033, - -0.029365, - 0.0066931, - -0.16085, - -0.0018742, - -0.022761, - -0.058203, - -0.046347, - 0.0055687, - 0.076111, - -0.013035, - 0.023443, - 0.0020407, - 0.096304, - 0.0085903, - 0.021021, - -0.066057, - -0.039596, - 0.080056, - -0.039164, - -0.040591, - -0.010361, - -0.00022733, - 0.022558, - -0.081237, - 0.0074989, - 0.090364, - 0.0033873, - 0.0012124, - 0.0058828, - 0.063613, - -0.0022755, - -0.027447, - 0.063027, - -0.03726, - -0.05951, - -0.011248, - 0.040224, - -0.037002, - 0.022805, - 0.006986, - 0.011459, - 0.029766, - 0.051175, - -0.025789, - -0.032187, - 0.039894, - -0.08568, - -0.044625, - -0.027908, - -0.052407, - 0.0094004, - 0.012447, - -0.027976, - -0.00074007, - 0.022545, - 0.004154, - 0.061984, - -0.012331, - 0.044948, - 0.083964, - -0.062126, - -0.011386, - 0.0072719, - 0.031144, - -0.032165, - 0.022949, - -0.016852, - -0.025015, - 0.032264, - 0.012493, - -0.064036, - -0.003178, - -0.037366, - 0.066053, - -0.064219, - -0.017432, - 0.091759, - -0.048669, - -0.04112, - 0.054871, - 0.098615, - -0.012731, - 0.1349, - 0.019346, - -0.010689, - -0.004012, - -0.015842, - -0.0029437, - -0.031793, - -0.042672, - -0.00042922, - 0.06639, - 0.024964, - -0.023454, - -0.0046996, - -0.035074, - -0.013842, - -0.029894, - -0.042262, - -0.0016436, - -0.015961, - 0.036507 - ], - "christianity": [ - -0.00095941, - -0.020923, - 0.052608, - -0.069416, - -0.020505, - -0.020939, - -0.015794, - -0.04247, - 0.013767, - 0.01139, - -0.0083827, - -0.037901, - 0.057704, - -0.054102, - 0.010096, - 0.0028362, - 0.087647, - -0.063309, - 0.0055635, - 0.010761, - -0.061572, - 0.023778, - 0.030325, - 0.025696, - 0.0047865, - -0.027612, - 0.078242, - -0.02297, - 0.039538, - 0.019627, - 0.033107, - 0.022732, - 0.013152, - 0.027835, - 0.036507, - 0.025762, - -0.011015, - -0.023993, - -0.0204, - 0.050704, - -0.038495, - -0.063148, - 0.008489, - -0.018981, - -0.0030055, - -0.014934, - -0.042404, - -0.0080271, - -0.011336, - -0.020676, - 0.000077509, - -0.041224, - -0.0063199, - 0.013483, - -0.032536, - 0.079511, - 0.03918, - -0.039415, - -0.044166, - 0.011099, - -0.012073, - -0.012508, - 0.05521, - -0.015337, - -0.033287, - -0.00045721, - 0.0043071, - 0.0067473, - 0.053458, - -0.041304, - 0.0020615, - -0.025281, - -0.011487, - 0.0066454, - -0.00033087, - -0.035523, - -0.0025607, - 0.025908, - 0.054996, - 0.076149, - 0.00072176, - 0.026378, - -0.051646, - 0.083703, - -0.0050153, - 0.027767, - -0.03067, - -0.0033973, - -0.030673, - 0.031275, - -0.025159, - 0.013769, - -0.045461, - 0.011287, - 0.028239, - 0.021733, - 0.034733, - -0.033511, - -0.031786, - -0.040416, - 0.0058599, - -0.010253, - 0.043601, - -0.026948, - -0.02066, - -0.030955, - 0.040096, - -0.032718, - -0.047997, - 0.061076, - -0.012364, - 0.046431, - 0.0080372, - -0.016267, - 0.0082589, - 0.036381, - 0.0025987, - 0.01125, - -0.023931, - -0.016136, - -0.02237, - -0.0037421, - -0.026779, - -0.033237, - 0.00072309, - 0.017545, - -0.038968, - -0.026925, - -0.047228, - 0.068821, - 0.0083009, - -0.011278, - -0.00094526, - 0.021051, - -0.028103, - 0.00678, - 0.041565, - 0.022201, - 0.019864, - -0.090609, - -0.037678, - -0.012217, - -0.019608, - 0.065737, - -0.02128, - -0.0081216, - 0.018348, - -0.030396, - -0.0021993, - -0.031004, - 0.016856, - 0.040936, - -0.02485, - -0.059969, - -0.020722, - 0.021863, - -0.0079204, - -0.053, - 0.053849, - 0.0083961, - 0.013586, - 0.019999, - -0.05823, - -0.04598, - 0.03082, - 0.0089753, - 0.047691, - 0.020277, - -0.023999, - 0.016178, - -0.014905, - -0.046298, - 0.011902, - 0.00066769, - -0.0025137, - 0.046195, - 0.037435, - 0.010162, - 0.025959, - -0.045175, - -0.0096128, - -0.016253, - -0.055423, - 0.0063808, - 0.031611, - -0.034165, - 0.039415, - 0.098128, - -0.064794, - -0.084963, - 0.014851, - 0.032492, - -0.064177, - 0.0503, - 0.052637, - -0.040465, - -0.070918, - -0.051071, - -0.034036, - 0.042199, - -0.090857, - 0.015809, - 0.011522, - -0.041095, - 0.0055091, - 0.060749, - 0.077325, - -0.052569, - 0.018712, - -0.0043801, - 0.04062, - -0.016138, - 0.0043491, - 0.0047784, - 0.052133, - 0.08667, - -0.016043, - 0.0023446, - 0.0099575, - -0.064683, - 0.00053081, - -0.0018411, - -0.011338, - 0.05462, - -0.013534, - 0.016419, - 0.04166, - 0.059868, - -0.013266, - -0.054692, - 0.015251, - -0.0060207, - -0.048781, - -0.029621, - 0.036335, - 0.015071, - 0.0037401, - 0.000083106, - 0.02627, - -0.015557, - 0.0081864, - -0.015093, - 0.0030853, - -0.043864, - 0.011681, - 0.0029475, - 0.023218, - -0.026064, - -0.016476, - 0.013104, - 0.049215, - -0.013147, - -0.071375, - 0.0058966, - 0.019928, - 0.0070126, - -0.0063959, - -0.020395, - 0.026641, - -0.0071561, - 0.042298, - 0.015494, - 0.086763, - -0.004904, - 0.034932, - -0.069267, - 0.023237, - 0.016379, - 0.03203, - 0.014967, - 0.0040562, - 0.043057, - -0.053742, - -0.0087343, - -0.020374, - -0.0077173, - 0.014494, - -0.043924, - -0.097901, - -0.0046634, - 0.05413, - 0.010594, - 0.023155, - -0.023975, - -0.017621, - -0.0061251, - 0.048657, - 0.0049346, - -0.01211, - 0.038437, - -0.012155, - 0.023319, - 0.0091455, - -0.00038976, - 0.040039, - -0.0038723, - 0.031297, - 0.059994, - 0.0050273, - -0.028235 - ], - "myths": [ - -0.07166, - -0.039269, - 0.059078, - 0.057024, - -0.073105, - -0.028554, - -0.019375, - -0.077194, - 0.0117, - 0.035038, - 0.073279, - -0.091473, - -0.0089144, - -0.0093508, - 0.028802, - -0.087013, - 0.11837, - -0.10454, - 0.052713, - 0.14326, - -0.071834, - 0.17427, - 0.024748, - 0.10424, - 0.026357, - -0.051844, - 0.0017432, - 0.02087, - 0.20169, - 0.015688, - -0.0044636, - -0.025762, - 0.0069893, - -0.043645, - 0.069504, - 0.018838, - -0.070713, - -0.1342, - 0.012174, - -0.025639, - 0.022634, - -0.15554, - 0.092478, - 0.14434, - 0.08674, - 0.02819, - -0.0045669, - 0.071603, - -0.019519, - -0.062667, - -0.072115, - 0.055052, - -0.030092, - -0.073687, - -0.038168, - 0.15545, - 0.036603, - -0.02847, - -0.058084, - 0.047294, - -0.0087367, - -0.078178, - 0.1934, - -0.093779, - 0.1611, - -0.03146, - -0.12299, - 0.15034, - 0.049505, - -0.0091773, - 0.014263, - 0.00010572, - 0.0073496, - -0.05668, - -0.027361, - 0.034987, - 0.040023, - -0.043613, - -0.034499, - -0.051073, - -0.0056963, - 0.011359, - -0.15629, - 0.098778, - 0.04912, - 0.048641, - -0.041433, - -0.045937, - 0.007583, - -0.015129, - -0.066607, - -0.02566, - -0.11986, - 0.032236, - -0.011237, - 0.0051312, - 0.040962, - -0.0028952, - -0.023014, - -0.025905, - 0.046192, - 0.0036609, - -0.022333, - 0.015343, - 0.0014009, - -0.037772, - 0.040453, - 0.023556, - -0.024784, - 0.05698, - 0.014926, - 0.043298, - 0.065227, - -0.046925, - 0.032773, - 0.047147, - -0.0030507, - 0.040197, - -0.06736, - 0.05668, - -0.032473, - -0.0021734, - -0.051897, - -0.1593, - 0.15841, - 0.073301, - 0.008191, - 0.051821, - 0.023353, - 0.24161, - -0.0089508, - 0.10616, - 0.044539, - 0.01064, - 0.046572, - -0.055097, - -0.11125, - 0.12535, - -0.064096, - -0.021221, - 0.086031, - -0.099941, - -0.0020239, - 0.12573, - 0.036801, - -0.12238, - -0.054663, - 0.077492, - -0.049106, - -0.067498, - -0.0011637, - 0.15125, - -0.025604, - 0.049868, - 0.012795, - -0.0077683, - 0.033626, - 0.019844, - 0.065738, - 0.013174, - 0.006536, - 0.083123, - -0.038371, - 0.041193, - 0.078247, - -0.18245, - 0.040225, - 0.038774, - -0.055133, - -0.023462, - -0.12789, - -0.098609, - -0.030836, - -0.073006, - -0.007912, - 0.079809, - 0.059957, - 0.060501, - 0.016455, - 0.059551, - 0.021061, - 0.15844, - -0.0025687, - -0.056773, - 0.026931, - -0.0084418, - 0.020425, - 0.14941, - 0.10615, - 0.024157, - 0.088309, - 0.10803, - -0.19383, - -0.04356, - 0.070527, - 0.065672, - -0.022887, - -0.14632, - -0.072839, - 0.0024324, - -0.16414, - -0.017463, - -0.027882, - -0.13944, - 0.13056, - 0.084085, - 0.040122, - 0.043859, - -0.0078242, - -0.049065, - 0.10579, - 0.085784, - 0.047822, - -0.019641, - 0.06018, - 0.026536, - 0.010187, - -0.081213, - -0.08724, - -0.11953, - 0.039657, - -0.051485, - 0.019076, - 0.097931, - 0.07426, - -0.087698, - 0.01788, - 0.070321, - 0.013, - -0.0021037, - 0.0092639, - -0.011377, - -0.10192, - -0.0022714, - 0.068633, - 0.065955, - -0.060493, - 0.005575, - 0.11153, - -0.051265, - -0.029766, - 0.015892, - -0.033006, - 0.0034385, - -0.020244, - 0.023582, - -0.12266, - -0.040421, - -0.060098, - 0.049763, - 0.022076, - 0.033079, - -0.025214, - 0.043529, - -0.056621, - 0.05854, - -0.062686, - 0.041975, - 0.10835, - 0.0095891, - 0.13149, - 0.0067373, - 0.10547, - -0.050218, - 0.090179, - 0.019317, - 0.057465, - 0.037075, - 0.078943, - -0.071988, - -0.040591, - 0.061395, - -0.1167, - -0.057181, - 0.15011, - -0.075411, - 0.03048, - -0.013621, - -0.035248, - -0.0494, - 0.10579, - -0.096183, - -0.011149, - 0.0033264, - 0.0059389, - 0.016987, - 0.028883, - 0.059352, - -0.071205, - -0.087896, - 0.065515, - 0.0086788, - 0.0067819, - -0.070049, - 0.018047, - 0.022997, - 0.099647, - 0.04792, - 0.0080439, - -0.06752 - ], - "pharmaceuticals": [ - -0.038284, - -0.010429, - 0.0050728, - -0.0018191, - 0.01578, - -0.038805, - 0.00039032, - -0.056975, - 0.043407, - 0.010808, - -0.014111, - -0.0086487, - 0.023227, - -0.011096, - 0.0043697, - 0.0026919, - 0.037154, - 0.011175, - 0.021227, - -0.011348, - 0.039788, - 0.020816, - 0.052641, - 0.015378, - -0.016396, - -0.060133, - 0.0070766, - 0.0055463, - 0.04381, - 0.022884, - 0.0073359, - -0.037028, - -0.012191, - 0.0096108, - 0.033944, - 0.017122, - -0.0098219, - -0.02914, - 0.053138, - 0.051665, - -0.04899, - -0.07008, - 0.0033971, - -0.024862, - 0.051945, - -0.030219, - -0.016583, - 0.042132, - -0.0028262, - 0.0051877, - -0.034707, - -0.024062, - 0.01034, - -0.0091849, - -0.056017, - 0.025577, - -0.023115, - 0.062401, - -0.000082561, - -0.021342, - 0.017825, - -0.01001, - 0.058425, - 0.032321, - 0.037027, - 0.0026652, - 0.040492, - -0.042431, - 0.0039778, - -0.0062072, - 0.0091084, - 0.020929, - 0.054131, - -0.023233, - -0.039216, - -0.0033746, - 0.0056206, - -0.037094, - -0.016904, - -0.034234, - -0.0021156, - -0.025026, - -0.0474, - 0.024161, - -0.023065, - 0.0050297, - 0.03564, - -0.011251, - -0.0044391, - -0.025437, - 0.025873, - 0.0084049, - -0.056407, - 0.0025055, - -0.037208, - 0.069078, - 0.043729, - -0.015619, - -0.017579, - -0.00062612, - -0.024667, - 0.00020187, - -0.028123, - -0.016096, - -0.0054298, - -0.030694, - -0.0048596, - 0.012188, - 0.044169, - 0.020001, - 0.020844, - 0.064335, - 0.029478, - 0.010004, - 0.012969, - 0.042396, - -0.0062913, - -0.027402, - -0.028393, - -0.0071889, - 0.0026092, - 0.042832, - -0.012759, - -0.055364, - 0.043849, - -0.0018156, - -0.038799, - -0.017878, - 0.0034629, - 0.052104, - 0.016447, - 0.04778, - -0.044881, - -0.020645, - 0.041064, - -0.018835, - 0.031538, - -0.010589, - 0.0031096, - 0.035446, - 0.012491, - 0.016319, - -0.020234, - 0.066805, - 0.014173, - -0.033609, - 0.013801, - 0.0086233, - 0.04332, - -0.011708, - 0.023858, - 0.042473, - 0.064996, - -0.041475, - 0.014034, - 0.0014081, - -0.040974, - -0.013698, - 0.060691, - 0.016597, - 0.020684, - 0.0096113, - -0.02851, - 0.011355, - -0.011666, - 0.020237, - -0.035844, - -0.034988, - 0.015137, - -0.057166, - 0.016071, - 0.015473, - 0.0072437, - -0.0043857, - -0.020413, - 0.012976, - -0.047261, - 0.039871, - -0.030038, - 0.011281, - 0.035309, - -0.024356, - -0.009948, - -0.046462, - -0.018551, - -0.02374, - 0.029689, - 0.056616, - -0.017845, - -0.015923, - -0.014157, - 0.062125, - -0.045714, - -0.0076674, - 0.0094142, - -0.025319, - -0.047402, - 0.0078399, - -0.008196, - -0.035606, - -0.084467, - 0.0085213, - 0.010411, - -0.034678, - 0.020592, - 0.017523, - -0.021445, - -0.045113, - 0.0086799, - -0.027714, - 0.060905, - 0.0012811, - 0.023031, - 0.039428, - -0.0028888, - -0.0032184, - -0.020966, - 0.00064904, - -0.033669, - -0.036163, - -0.01351, - -0.017578, - -0.010848, - 0.050499, - 0.020753, - 0.028571, - -0.0064615, - 0.03108, - 0.022744, - -0.015457, - -0.013057, - 0.014096, - -0.038874, - -0.019967, - 0.000061201, - -0.040948, - -0.06577, - -0.006699, - 0.021109, - -0.077465, - -0.018131, - 0.027848, - 0.048334, - 0.0091701, - 0.024672, - 0.0030354, - -0.017713, - -0.0073015, - 0.029419, - 0.022779, - -0.01303, - -0.028499, - -0.0006808, - -0.019995, - -0.034319, - 0.038682, - -0.023378, - -0.0020627, - 0.055151, - -0.017711, - 0.019799, - 0.011799, - -0.025299, - -0.0074042, - 0.013853, - -0.020989, - -0.037408, - -0.025159, - -0.01613, - 0.010347, - -0.023769, - 0.041085, - -0.047745, - -0.019037, - -0.041471, - 0.004231, - 0.012451, - 0.031468, - -0.055211, - 0.0057001, - 0.022172, - -0.0095135, - -0.08663, - 0.0036736, - -0.040752, - 0.040384, - -0.019129, - 0.0026162, - 0.014193, - -0.019466, - 0.0088543, - 0.022696, - -0.0043335, - 0.0047746, - -0.055285, - -0.025318, - 0.0053952, - 0.0070356, - 0.012538, - -0.040995 - ], - "cats": [ - 0.050113, - -0.054834, - 0.031922, - -0.13084, - -0.021383, - 0.092613, - 0.085339, - -0.10985, - 0.06049, - 0.060822, - -0.07618, - -0.038467, - 0.14444, - -0.18786, - -0.018551, - 0.020118, - 0.055603, - -0.04776, - 0.060355, - -0.097124, - 0.058822, - -0.085059, - 0.023793, - 0.085999, - 0.14423, - -0.049526, - 0.040363, - 0.050625, - 0.16437, - 0.033432, - -0.028586, - -0.070103, - 0.071308, - 0.053882, - 0.030595, - -0.0074391, - 0.004448, - -0.21048, - -0.035024, - -0.1279, - -0.067522, - -0.077112, - -0.069588, - -0.009724, - 0.0070165, - 0.0064374, - 0.014924, - 0.066954, - 0.027715, - -0.020578, - 0.0058584, - 0.14282, - 0.05932, - -0.1251, - -0.095796, - -0.052068, - -0.028949, - 0.059567, - -0.069495, - -0.018469, - 0.062744, - -0.23334, - 0.17312, - -0.036935, - 0.10843, - 0.018079, - -0.022178, - 0.013248, - -0.02301, - -0.12282, - 0.028241, - 0.046222, - 0.15452, - -0.064223, - 0.019923, - 0.10184, - -0.04482, - -0.063374, - -0.054686, - 0.0084928, - -0.0061149, - -0.01955, - 0.04305, - 0.0637, - 0.080655, - -0.10248, - -0.0056434, - -0.025821, - 0.15558, - 0.0085502, - -0.010262, - -0.019387, - -0.11161, - 0.011415, - 0.13066, - 0.08137, - -0.02596, - 0.12664, - 0.034469, - 0.075164, - 0.1074, - 0.057002, - 0.0099443, - 0.00022163, - 0.083935, - -0.10598, - -0.13194, - 0.023213, - 0.010078, - -0.045923, - -0.0031295, - 0.094231, - 0.021129, - -0.0041449, - -0.092206, - -0.048559, - 0.039945, - 0.045099, - -0.082975, - 0.057328, - -0.063922, - 0.18846, - 0.048517, - -0.14924, - 0.14423, - 0.11274, - -0.032539, - -0.087489, - -0.1086, - 0.096639, - 0.027744, - 0.14349, - -0.00058725, - 0.038449, - 0.0094706, - 0.037596, - -0.069558, - 0.071014, - 0.028375, - -0.037018, - -0.0066328, - 0.041381, - 0.05873, - -0.014979, - 0.059495, - -0.17955, - -0.028524, - -0.074364, - -0.024194, - -0.1162, - 0.018757, - 0.11546, - 0.042561, - 0.011496, - -0.058856, - -0.052855, - -0.056239, - -0.018577, - -0.048849, - -0.034996, - 0.010076, - -0.0034934, - 0.050985, - 0.068979, - 0.027444, - -0.031354, - 0.020083, - 0.00027731, - -0.045668, - -0.086505, - -0.016661, - 0.053709, - 0.0024848, - 0.051096, - -0.028297, - 0.11952, - 0.01904, - 0.10537, - 0.02672, - -0.0047788, - 0.17035, - -0.11766, - -0.00069964, - -0.055222, - 0.011263, - -0.059722, - 0.057817, - 0.14779, - -0.05851, - -0.17599, - -0.076949, - 0.10827, - -0.19283, - -0.067036, - -0.026503, - 0.1446, - -0.033006, - 0.1098, - 0.028911, - 0.038818, - -0.18365, - 0.11131, - -0.048174, - -0.052001, - 0.031582, - -0.0078823, - 0.026938, - -0.024264, - -0.06836, - -0.11196, - 0.14334, - -0.034435, - 0.056467, - -0.0043544, - 0.0021299, - -0.0076016, - 0.06003, - -0.068793, - -0.03457, - -0.023299, - 0.011312, - 0.037662, - -0.01284, - 0.1334, - 0.070948, - 0.10529, - -0.00014625, - 0.090812, - 0.078188, - -0.013627, - -0.04652, - -0.018113, - -0.12621, - -0.10293, - 0.062982, - -0.071306, - 0.13476, - 0.051754, - -0.051054, - -0.0035756, - -0.033488, - -0.010239, - 0.058592, - -0.032168, - 0.033583, - 0.17866, - -0.022592, - 0.0080183, - -0.042154, - -0.015798, - 0.017271, - -0.013591, - -0.06633, - 0.026839, - -0.022657, - -0.00071187, - 0.02435, - -0.039039, - 0.10826, - 0.030461, - -0.039482, - -0.010448, - 0.070604, - -0.096145, - 0.037226, - 0.00035494, - -0.022609, - -0.011991, - 0.089672, - 0.038362, - -0.11298, - 0.13146, - -0.15378, - -0.033386, - 0.01096, - -0.020207, - 0.0071007, - -0.084374, - -0.0094449, - -0.011055, - 0.0221, - 0.0093383, - 0.061921, - 0.00029351, - -0.023717, - 0.062517, - -0.0039034, - -0.00069783, - -0.0069815, - 0.02366, - 0.051563, - 0.024888, - -0.14852, - -0.074636, - 0.011155, - 0.013065, - 0.010411, - 0.16009, - 0.032311, - 0.12044 - ], - "way": [ - -0.0075136, - 0.086264, - 0.015265, - 0.017324, - 0.020236, - 0.013538, - -0.042187, - -0.19308, - -0.13184, - -0.0074655, - -0.054308, - -0.067747, - 0.028699, - -0.0010178, - -0.016079, - 0.0058085, - 0.18674, - 0.033273, - 0.14548, - 0.02721, - 0.0246, - -0.018707, - 0.0036894, - 0.018303, - -0.052295, - 0.018676, - 0.037892, - 0.072329, - -0.098866, - 0.014415, - -0.038158, - 0.044097, - -0.028643, - -0.29423, - -0.020661, - -0.040453, - 0.013439, - -0.014199, - -0.05448, - -0.038084, - -0.010443, - -0.27542, - -0.062735, - -0.027025, - 0.0072719, - -0.15268, - 0.016254, - -0.043911, - -0.010124, - -0.067818, - 0.083691, - -0.046189, - 0.038848, - 0.021787, - -0.21228, - -0.010631, - 0.028777, - 0.0013405, - -0.091677, - -0.067808, - 0.016322, - -0.0049924, - 0.20634, - -0.06576, - 0.079221, - -0.0039274, - 0.023811, - -0.038575, - 0.030146, - 0.010326, - -0.034757, - 0.0022751, - -0.073459, - -0.031184, - 0.00058801, - -0.0012048, - 0.012048, - -0.10992, - -0.011034, - -0.027092, - -0.043672, - 0.0069911, - -0.026934, - 0.14997, - 0.043766, - -0.028414, - -0.011463, - -0.037637, - 0.046824, - -0.010272, - 0.0091989, - -0.099297, - -0.1447, - 0.0011558, - 0.031363, - 0.017349, - 0.027263, - 0.0038013, - 0.066555, - 0.0030327, - -0.010431, - 0.02204, - 0.011582, - 0.056068, - -0.094192, - -0.087781, - 0.040808, - 0.040686, - 0.041047, - -0.01284, - -0.019183, - 0.16773, - 0.11214, - -0.024929, - 0.0012227, - 0.009782, - -0.0519, - 0.033228, - -0.091023, - 0.0041065, - 0.0056081, - -0.072719, - 0.0074773, - -0.0029442, - 0.027375, - 0.025569, - -0.098963, - -0.21523, - -0.019584, - 0.060008, - -0.044365, - 0.066732, - -0.0069256, - 0.025066, - -0.023612, - -0.015624, - -0.0382, - -0.058665, - 0.020372, - -0.023511, - -0.047577, - -0.08121, - 0.020214, - 0.046251, - -0.056867, - -0.036258, - 0.037348, - 0.024719, - 0.04913, - -0.0099365, - 0.094209, - 0.061135, - -0.013655, - -0.10144, - 0.012525, - 0.0061856, - 0.0054702, - -0.0068298, - 0.00027266, - -0.082913, - 0.022798, - 0.0024331, - 0.085068, - -0.019537, - -0.00092673, - -0.021273, - 0.047053, - -0.021876, - 0.017693, - 0.0045997, - 0.0032239, - -0.019048, - 0.019794, - -0.017779, - 0.00022847, - 0.041082, - -0.065557, - 0.093279, - 0.036468, - -0.036602, - 0.014481, - -0.023432, - 0.018437, - -0.096601, - -0.0091642, - -0.15804, - -0.025906, - 0.16288, - 0.020642, - -0.05507, - 0.021315, - 0.17114, - -0.0023091, - 0.047554, - -0.024883, - 0.040395, - -0.027401, - 0.0041058, - -0.040909, - 0.047381, - -0.24464, - 0.18826, - 0.14163, - 0.0019991, - -0.0074248, - -0.0059784, - 0.023948, - 0.0080075, - 0.015691, - -0.046737, - 0.024164, - -0.048942, - 0.1242, - -0.02556, - 0.042841, - 0.016914, - -0.020507, - -0.016083, - -0.069042, - -0.031106, - 0.01635, - -0.01918, - 0.0035814, - 0.20298, - 0.013639, - -0.012678, - 0.047266, - 0.15177, - 0.037216, - 0.034545, - -0.0048588, - -0.22193, - -0.11259, - -0.034243, - 0.047136, - 0.004631, - -0.030508, - 0.076873, - 0.088961, - 0.10715, - 0.13061, - 0.0026868, - 0.046096, - 0.034013, - -0.15037, - 0.041567, - -0.022968, - -0.021311, - 0.061054, - 0.0015525, - 0.054973, - 0.048867, - -0.0089222, - 0.030028, - -0.019225, - 0.036387, - -0.019096, - 0.15734, - -0.012345, - -0.016029, - 0.0039559, - 0.040506, - 0.016082, - -0.068875, - -0.021987, - -0.0071817, - 0.025972, - 0.046538, - 0.0088304, - 0.13091, - -0.035876, - 0.14638, - -0.2028, - -0.1048, - 0.1762, - -0.13714, - 0.027899, - 0.0014378, - 0.0019459, - 0.058252, - 0.030912, - -0.034783, - 0.03309, - -0.042775, - -0.063478, - -0.014186, - 0.02223, - -0.058028, - 0.028974, - 0.037783, - 0.031068, - 0.0055998, - -0.037325, - -0.072813, - 0.0069622, - 0.012228, - 0.015592, - -0.026292, - 0.039341, - -0.019126 - ], - "heritage": [ - 0.04028, - -0.082214, - 0.072272, - 0.0067163, - -0.043655, - 0.059577, - -0.0019363, - -0.068393, - 0.09116, - -0.027228, - 0.00098253, - -0.057892, - -0.041033, - -0.0027823, - 0.0068931, - -0.007706, - 0.06683, - -0.024137, - 0.034938, - 0.021368, - -0.074944, - -0.040767, - 0.057039, - 0.050938, - 0.040717, - 0.046461, - -0.03201, - 0.026788, - 0.052801, - 0.000049057, - 0.046837, - -0.034722, - 0.02535, - -0.048799, - 0.018949, - 0.037339, - -0.032228, - 0.02504, - -0.084649, - 0.040877, - 0.030737, - -0.11104, - -0.0074659, - -0.011225, - 0.051301, - -0.030268, - -0.033306, - 0.04079, - -0.016809, - -0.015006, - -0.011509, - 0.02895, - -0.00935, - 0.0086966, - -0.026007, - -0.010664, - 0.016487, - -0.03028, - -0.041673, - -0.014019, - 0.050961, - 0.017626, - 0.094672, - -0.077457, - 0.036649, - 0.0023353, - -0.062523, - 0.052817, - 0.036916, - -0.024325, - 0.054068, - -0.046118, - 0.01188, - 0.040643, - 0.046819, - 0.065855, - 0.031493, - 0.000041098, - 0.081391, - 0.0093189, - -0.017884, - -0.0078504, - -0.004877, - 0.090133, - -0.056094, - -0.018287, - -0.023898, - -0.015316, - -0.029795, - 0.019067, - -0.051531, - 0.08547, - -0.076062, - 0.059363, - 0.024235, - 0.075324, - 0.035026, - 0.04065, - 0.049065, - 0.017616, - 0.065471, - -0.024183, - -0.014422, - -0.040955, - -0.03858, - -0.078423, - 0.008557, - 0.047603, - -0.035516, - 0.051178, - 0.019591, - 0.046873, - 0.066639, - 0.039678, - -0.02123, - 0.006977, - -0.073603, - 0.007507, - -0.029319, - 0.045486, - -0.010953, - -0.057811, - -0.033755, - -0.05224, - 0.082746, - 0.033923, - -0.019207, - -0.074776, - 0.031786, - 0.13249, - -0.026214, - -0.028252, - 0.034676, - 0.045687, - -0.041007, - 0.026463, - -0.0017845, - 0.036268, - -0.032806, - -0.045038, - -0.033555, - -0.030948, - -0.039447, - 0.056812, - -0.012372, - -0.019036, - 0.043353, - 0.056245, - -0.078338, - -0.042523, - 0.036798, - 0.067102, - 0.039359, - -0.025398, - 0.046262, - -0.0042476, - 0.054721, - 0.026316, - 0.044042, - -0.02288, - 0.01977, - 0.000064492, - -0.10421, - -0.020355, - -0.016585, - 0.057994, - 0.0054941, - 0.016472, - -0.05302, - 0.043866, - 0.083194, - 0.004118, - -0.026147, - -0.034015, - 0.033308, - 0.071804, - 0.08348, - 0.031757, - -0.044715, - 0.020202, - -0.045169, - -0.049327, - 0.035852, - -0.029831, - 0.042172, - -0.064829, - -0.01667, - 0.083658, - -0.011664, - -0.065385, - -0.025362, - 0.063154, - 0.01191, - 0.031224, - -0.036528, - 0.06352, - 0.03837, - -0.026868, - -0.011481, - -0.039964, - -0.1529, - -0.0007449, - -0.04065, - -0.11521, - -0.017761, - 0.019084, - 0.021464, - -0.021643, - 0.0079275, - 0.0057567, - 0.10429, - -0.0072725, - -0.0076436, - -0.021316, - 0.0049177, - -0.025662, - 0.0092668, - 0.010314, - -0.006505, - 0.013841, - 0.017162, - 0.017336, - 0.089451, - 0.10347, - 0.018662, - 0.019991, - 0.012513, - 0.078355, - -0.011957, - -0.033376, - -0.0077654, - -0.018789, - -0.085965, - -0.037073, - 0.015292, - 0.00039459, - -0.033981, - 0.089578, - 0.0071671, - 0.0090838, - 0.01981, - 0.022742, - 0.070114, - -0.0048038, - -0.020907, - -0.022336, - -0.053858, - -0.056561, - -0.015002, - -0.013023, - 0.02084, - -0.097464, - 0.014345, - -0.049482, - 0.016169, - 0.051102, - -0.059402, - 0.023376, - 0.08203, - 0.079557, - 0.0018305, - 0.0032977, - -0.037695, - -0.0058377, - 0.10939, - -0.073498, - 0.018222, - 0.0051916, - 0.042125, - -0.0468, - 0.03843, - 0.080284, - -0.10414, - -0.061778, - 0.089618, - -0.044576, - 0.072804, - 0.048011, - -0.024957, - -0.046774, - 0.12118, - -0.024701, - 0.0053594, - 0.0051669, - 0.029568, - -0.010968, - -0.029561, - 0.000037453, - 0.068049, - -0.000053389, - 0.0050177, - 0.057341, - -0.014708, - -0.030184, - 0.0086046, - 0.035435, - 0.027482, - 0.010825, - 0.0009723, - -0.030067 - ], - "islam": [ - -0.037307, - 0.00038741, - 0.085981, - -0.079785, - -0.041434, - -0.035449, - 0.018753, - -0.017831, - 0.04266, - 0.036857, - 0.073213, - -0.074109, - 0.058057, - -0.10936, - 0.046381, - -0.053467, - 0.19684, - -0.14392, - 0.017699, - -0.0056649, - 0.027999, - 0.083205, - 0.099679, - 0.052895, - -0.0013688, - 0.017943, - 0.13366, - -0.096102, - 0.036562, - -0.0083535, - 0.083608, - 0.033327, - 0.051644, - 0.026453, - -0.0037265, - 0.034622, - 0.0079527, - 0.01866, - 0.035731, - 0.070408, - -0.083717, - -0.14539, - 0.0001449, - 0.029306, - 0.018639, - 0.004436, - 0.022758, - -0.048506, - -0.00070788, - -0.11907, - 0.044529, - -0.14449, - -0.012163, - -0.093837, - -0.11335, - 0.10519, - -0.034294, - -0.023827, - -0.02945, - -0.021097, - -0.016624, - 0.073389, - 0.08612, - -0.0083607, - -0.10346, - -0.063898, - 0.034557, - 0.024574, - 0.13042, - -0.1462, - 0.10499, - -0.13698, - -0.0044936, - -0.049051, - -0.029035, - -0.048643, - 0.076315, - 0.049065, - -0.002541, - 0.13386, - -0.02848, - 0.051017, - -0.032366, - 0.20474, - 0.0083637, - 0.035719, - -0.073566, - 0.0060542, - -0.12372, - 0.1105, - 0.026938, - 0.096963, - -0.093896, - 0.058535, - 0.08924, - 0.0055382, - 0.063489, - -0.098769, - 0.021026, - -0.16751, - -0.013835, - -0.029867, - 0.15991, - -0.10014, - -0.064368, - -0.14731, - -0.066693, - 0.013546, - -0.093234, - 0.09826, - -0.04863, - 0.15174, - 0.083441, - 0.0054228, - -0.051701, - 0.066826, - 0.038849, - -0.056817, - 0.022254, - 0.063987, - -0.017524, - 0.043391, - -0.046089, - 0.016717, - -0.057227, - 0.086864, - -0.08119, - -0.02869, - -0.1103, - 0.050551, - -0.0058182, - -0.014121, - 0.045409, - 0.12915, - -0.015263, - 0.024264, - 0.05743, - 0.053424, - 0.070985, - -0.19648, - -0.034088, - 0.021185, - 0.025369, - 0.048552, - 0.024921, - 0.0049558, - -0.077224, - -0.00064578, - 0.0365, - -0.042992, - 0.020216, - 0.018194, - -0.0067421, - -0.12496, - 0.0094884, - 0.0090669, - 0.030229, - -0.05053, - 0.050014, - 0.081637, - 0.028172, - -0.026622, - -0.12408, - -0.057227, - -0.048468, - -0.039552, - 0.036662, - 0.054018, - -0.008993, - 0.069986, - -0.090916, - -0.087069, - -0.0065192, - -0.011894, - -0.0014392, - 0.12572, - -0.018832, - -0.0068949, - 0.08757, - -0.030791, - 0.0031535, - 0.10337, - -0.022964, - 0.064263, - -0.034364, - -0.156, - 0.095906, - 0.17903, - -0.066455, - -0.074708, - -0.023258, - 0.036399, - -0.099874, - 0.11612, - -0.022028, - -0.0045625, - -0.048007, - 0.030359, - -0.047304, - -0.039991, - -0.22634, - 0.0035482, - 0.041646, - -0.091672, - -0.072904, - 0.046656, - 0.18378, - -0.0055164, - 0.036611, - -0.019812, - 0.093482, - -0.047437, - 0.050785, - 0.0091049, - 0.11119, - 0.16139, - 0.054498, - 0.0010451, - 0.020622, - -0.080635, - -0.032378, - 0.027466, - -0.10134, - 0.093472, - -0.04466, - 0.00057231, - 0.03054, - 0.071421, - 0.044589, - -0.10488, - 0.015079, - -0.0343, - -0.11122, - -0.056926, - 0.098592, - -0.033862, - 0.07734, - 0.023835, - 0.057996, - 0.020012, - -0.052116, - -0.07774, - 0.04238, - -0.030213, - 0.078337, - 0.097271, - 0.09074, - 0.014866, - -0.0055079, - 0.062625, - 0.10783, - 0.041774, - -0.029371, - -0.0091988, - -0.010359, - -0.024351, - -0.025544, - 0.022993, - -0.026085, - -0.035923, - -0.030543, - 0.078583, - 0.15825, - -0.027485, - 0.02275, - -0.11781, - 0.022751, - 0.065931, - 0.054372, - 0.0027528, - 0.032104, - 0.054133, - -0.071392, - 0.0090157, - -0.047732, - -0.0315, - 0.040569, - 0.027834, - -0.061091, - -0.071664, - 0.067034, - -0.01038, - 0.11461, - 0.02708, - -0.021996, - 0.043305, - 0.12113, - 0.036107, - 0.036133, - 0.023011, - -0.10835, - -0.019587, - -0.010752, - -0.024487, - 0.069641, - 0.0063558, - 0.10938, - 0.15492, - 0.018915, - -0.04778 - ], - "morality": [ - 0.0082344, - -0.062517, - 0.070926, - 0.013335, - -0.025394, - -0.0033084, - -0.0091423, - -0.074261, - 0.060581, - 0.080759, - 0.016742, - -0.031475, - 0.061791, - -0.046986, - -0.049332, - -0.037129, - 0.098096, - -0.046457, - 0.027805, - 0.068576, - 0.022181, - 0.0033528, - 0.080054, - 0.064478, - -0.0097524, - 0.018135, - 0.037283, - 0.0053277, - 0.042156, - 0.019952, - -0.021779, - -0.010572, - -0.036844, - -0.075998, - 0.0083391, - 0.036207, - 0.036962, - -0.021227, - 0.035866, - 0.033742, - -0.012219, - -0.13116, - -0.023214, - 0.048288, - -0.012948, - -0.041513, - -0.025575, - -0.024195, - -0.026446, - -0.030251, - 0.024979, - -0.0013039, - 0.061122, - 0.010849, - -0.037293, - -0.002816, - 0.053798, - -0.023437, - -0.036749, - 0.021465, - -0.045939, - -0.090318, - 0.0188, - 0.023468, - 0.01461, - 0.0057899, - 0.0050309, - -0.00056863, - 0.06325, - 0.0017674, - 0.086827, - -0.00072285, - -0.021127, - 0.031831, - -0.022331, - 0.00019046, - 0.011226, - -0.040275, - 0.0079788, - 0.04606, - -0.028744, - -0.023107, - -0.017015, - 0.086254, - -0.053082, - -0.013664, - 0.017439, - -0.016835, - -0.020453, - 0.059821, - 0.013743, - 0.016215, - -0.10168, - 0.010401, - 0.0094285, - 0.030626, - 0.021541, - -0.076849, - 0.00099068, - 0.049123, - -0.023436, - 0.035265, - -0.01635, - -0.069695, - -0.044062, - -0.042792, - 0.10016, - 0.036449, - 0.00065679, - -0.013429, - 0.0035356, - 0.093476, - 0.062899, - -0.075112, - -0.014136, - 0.029362, - 0.027273, - 0.010443, - -0.04549, - -0.0037157, - 0.011801, - -0.026678, - 0.03209, - -0.085877, - 0.062225, - 0.062382, - -0.045696, - -0.098279, - 0.0091522, - 0.15202, - 0.014798, - -0.07509, - 0.089152, - 0.045853, - -0.017834, - 0.0021538, - 0.014367, - 0.023299, - -0.018808, - -0.033103, - -0.0019981, - 0.0055693, - -0.024957, - 0.019871, - -0.0085725, - -0.074123, - 0.0076273, - 0.0010498, - 0.021507, - -0.025791, - 0.068287, - 0.068448, - -0.026296, - -0.058679, - -0.015483, - 0.087075, - -0.043438, - 0.0079875, - 0.074259, - -0.0061665, - 0.086968, - 0.022351, - -0.14719, - 0.011226, - -0.0050507, - 0.033596, - 0.03987, - 0.1177, - 0.0080285, - -0.032351, - -0.045323, - -0.013036, - 0.022857, - 0.0020941, - -0.011034, - 0.067161, - 0.014525, - 0.064305, - 0.00071049, - -0.046181, - 0.019729, - 0.029609, - 0.016912, - -0.038028, - 0.013274, - -0.085677, - 0.11944, - 0.12053, - 0.029016, - -0.05726, - 0.022609, - 0.08323, - -0.025908, - -0.065908, - 0.068116, - -0.029704, - -0.00070564, - -0.017397, - 0.01634, - 0.018498, - -0.14401, - 0.0040336, - 0.056894, - -0.063828, - 0.016399, - 0.036044, - 0.053454, - -0.069304, - 0.053657, - 0.014597, - 0.08495, - -0.009368, - -0.0036471, - 0.060326, - 0.056043, - 0.041094, - 0.0092249, - 0.022089, - -0.05149, - -0.02597, - -0.025321, - 0.028855, - -0.053204, - 0.091055, - 0.048201, - -0.046232, - 0.030254, - 0.046318, - -0.010356, - -0.058602, - 0.023851, - -0.036292, - -0.089372, - -0.0062418, - 0.027517, - 0.061115, - -0.0013603, - -0.029221, - 0.04255, - 0.023665, - 0.016543, - -0.016926, - -0.019705, - 0.00010743, - -0.016123, - -0.001493, - 0.0071268, - -0.084173, - -0.034188, - 0.0061982, - 0.041663, - 0.010085, - -0.041321, - -0.023424, - 0.06373, - 0.0089333, - 0.0036488, - 0.062749, - 0.020189, - -0.011876, - -0.021254, - -0.032214, - 0.0057027, - -0.032326, - -0.007154, - 0.052609, - 0.040221, - 0.078748, - 0.015439, - -0.017009, - 0.012794, - 0.06704, - -0.086198, - -0.040072, - 0.025121, - -0.029996, - 0.015878, - -0.030952, - 0.025167, - -0.060198, - 0.12686, - 0.041047, - -0.096554, - -0.074702, - 0.051116, - 0.020417, - 0.036898, - 0.08888, - 0.038246, - 0.053525, - 0.016215, - 0.017444, - 0.041415, - -0.012039, - -0.018758, - 0.012951, - 0.016576, - 0.016127, - -0.10364, - 0.038732 - ], - "athlete": [ - -0.036288, - -0.023913, - 0.12352, - 0.053822, - -0.04277, - -0.051187, - -0.045114, - -0.10301, - 0.072504, - -0.023969, - -0.00082557, - 0.028293, - 0.047232, - 0.017467, - 0.061024, - 0.042062, - 0.046963, - -0.022922, - 0.04552, - 0.06619, - 0.083333, - -0.0944, - 0.018871, - 0.090331, - -0.0026929, - -0.034635, - 0.051212, - 0.01372, - -0.044146, - -0.012277, - 0.028596, - 0.023971, - 0.027951, - -0.028663, - -0.013388, - 0.019901, - 0.072401, - -0.036859, - 0.043128, - 0.050896, - 0.065232, - -0.11471, - -0.02821, - 0.013096, - 0.078284, - 0.045031, - 0.037693, - -0.025134, - 0.0028225, - 0.040286, - 0.00020141, - -0.034437, - 0.059844, - -0.0036831, - 0.0030759, - 0.055595, - 0.018051, - 0.042008, - -0.059881, - -0.065177, - 0.026712, - -0.01632, - 0.1158, - 0.0083542, - 0.052292, - -0.13691, - 0.057511, - -0.012094, - 0.025923, - -0.038522, - 0.03443, - -0.02007, - 0.084452, - 0.00033894, - -0.028468, - 0.051892, - -0.0045036, - -0.042407, - -0.027756, - -0.0044171, - 0.068358, - 0.079527, - -0.058338, - 0.03999, - -0.022163, - -0.04419, - -0.091505, - 0.044454, - 0.018563, - -0.06303, - 0.01509, - 0.096108, - -0.10039, - -0.0381, - -0.024176, - 0.10412, - -0.055618, - -0.057174, - 0.11003, - 0.028016, - 0.049026, - 0.043987, - 0.01413, - -0.014129, - -0.065605, - -0.088775, - -0.033782, - 0.045933, - -0.015204, - 0.10608, - -0.047135, - 0.11186, - 0.072089, - -0.038615, - 0.11959, - -0.013969, - -0.06109, - 0.088212, - -0.016996, - -0.045276, - 0.1259, - -0.011731, - -0.011095, - 0.005707, - 0.081202, - -0.073656, - 0.0032424, - -0.083811, - -0.032461, - 0.043969, - -0.028315, - 0.071899, - 0.024489, - -0.080896, - -0.055774, - -0.0040184, - 0.023788, - 0.094971, - -0.0022226, - -0.047473, - 0.056221, - -0.0061847, - -0.024614, - -0.074129, - -0.029578, - 0.055246, - -0.057042, - -0.069541, - 0.059532, - -0.0020818, - 0.081892, - 0.081807, - -0.023854, - -0.087522, - -0.0079494, - -0.0060883, - 0.01851, - 0.01597, - 0.033548, - -0.048144, - -0.005619, - 0.02651, - -0.042465, - 0.051868, - 0.014208, - -0.071988, - -0.038526, - -0.010466, - -0.061363, - -0.10939, - -0.010004, - -0.024944, - -0.0083622, - 0.019268, - 0.066485, - 0.028889, - -0.011427, - -0.0010847, - -0.024372, - -0.025329, - -0.0017745, - -0.061533, - -0.0054512, - -0.058572, - 0.00060423, - -0.10918, - -0.046765, - 0.08961, - -0.029254, - 0.088026, - -0.025783, - 0.070603, - -0.0074261, - -0.023057, - -0.0013782, - -0.096345, - 0.039204, - -0.073363, - 0.059653, - 0.026849, - -0.15249, - 0.070448, - 0.011985, - -0.062658, - -0.019253, - 0.035385, - -0.056878, - -0.0048529, - -0.016149, - -0.050817, - 0.10355, - -0.0014846, - -0.037577, - -0.019829, - -0.064787, - -0.0068551, - 0.048147, - 0.045061, - 0.061582, - 0.096655, - -0.093801, - 0.047077, - -0.087711, - 0.11047, - 0.0064583, - 0.094202, - -0.03883, - 0.066527, - -0.10051, - -0.012177, - -0.043368, - -0.045773, - -0.088681, - -0.073002, - -0.025203, - 0.08603, - -0.034204, - -0.082216, - -0.077892, - -0.014538, - 0.060834, - 0.082065, - 0.062592, - -0.024733, - 0.00070149, - 0.045819, - 0.016315, - -0.05089, - 0.012709, - -0.026849, - 0.033754, - 0.042326, - -0.014886, - 0.0095735, - 0.045376, - -0.025971, - -0.059114, - 0.078109, - 0.046899, - 0.08366, - -0.1066, - -0.039812, - 0.061412, - -0.036183, - 0.019629, - -0.036303, - -0.063051, - 0.011439, - 0.099928, - -0.03546, - -0.0015514, - 0.1065, - -0.11453, - -0.023486, - 0.0055504, - -0.05779, - -0.054647, - -0.039507, - 0.031447, - 0.018272, - 0.069669, - 0.047178, - -0.029807, - 0.027809, - -0.025023, - -0.0043212, - -0.024789, - -0.08451, - -0.047044, - 0.0093401, - 0.11801, - -0.12262, - -0.044644, - 0.0069919, - 0.0065682, - 0.010722, - 0.012496, - 0.030907, - 0.038743, - -0.059169 - ], - "audio-visual": [ - -0.0013202, - -0.034946, - 0.012826, - 0.019798, - 0.0054556, - -0.0084361, - 0.030337, - -0.071238, - 0.032856, - -0.022174, - 0.020974, - -0.020716, - 0.050141, - -0.0031385, - 0.026277, - 0.025153, - 0.049276, - 0.023543, - 0.025869, - -0.010222, - -0.00086677, - -0.033832, - 0.01943, - 0.037537, - -0.030125, - 0.029031, - -0.057362, - 0.053801, - 0.042521, - 0.0092176, - -0.0049582, - 0.01532, - 0.016548, - -0.080165, - 0.066041, - 0.065606, - -0.010025, - 0.046017, - 0.031975, - 0.020621, - -0.047585, - -0.12275, - 0.015616, - 0.051781, - 0.061817, - -0.032628, - -0.0062109, - 0.001867, - -0.037264, - 0.013435, - -0.05071, - -0.0057686, - 0.0074468, - -0.0071521, - 0.0096677, - 0.077156, - -0.026482, - -0.059743, - -0.0058448, - 0.010835, - 0.0018442, - 0.0029222, - 0.089479, - 0.070721, - 0.025152, - 0.030055, - 0.0073197, - -0.011615, - -0.020991, - 0.025328, - 0.058259, - -0.057575, - 0.045439, - 0.017047, - 0.025278, - -0.01306, - 0.057673, - -0.045471, - 0.039975, - -0.0052247, - 0.005124, - -0.015412, - -0.031302, - 0.017927, - -0.0058602, - -0.035481, - -0.043062, - -0.0054747, - -0.040997, - -0.013729, - -0.044003, - 0.05014, - -0.058652, - -0.011167, - -0.018542, - 0.041279, - 0.0028668, - 0.0072396, - 0.034136, - 0.0029429, - 0.033743, - 0.060381, - -0.02976, - -0.02251, - 0.011908, - -0.060862, - 0.016526, - 0.0052653, - -0.018171, - 0.02111, - -0.013027, - 0.13018, - 0.043325, - 0.027005, - -0.0024087, - 0.017074, - -0.0086861, - 0.016669, - -0.013788, - 0.051504, - 0.032962, - 0.050467, - -0.026984, - -0.013922, - 0.084513, - -0.0095935, - -0.000027177, - 0.0093829, - -0.0059471, - 0.046109, - 0.014658, - -0.020201, - -0.034783, - -0.0019236, - 0.029764, - -0.047213, - -0.018817, - 0.040296, - 0.024924, - 0.019836, - -0.023406, - 0.037504, - 0.069426, - 0.013096, - -0.06218, - -0.055542, - -0.078499, - -0.0012247, - -0.0047529, - 0.034438, - 0.050518, - 0.14009, - 0.0087384, - -0.018023, - -0.027991, - 0.011465, - -0.033439, - 0.041783, - 0.026821, - 0.0015593, - 0.033717, - -0.0034782, - -0.064349, - 0.030109, - -0.032136, - 0.02156, - 0.016774, - -0.05638, - -0.011244, - -0.01033, - 0.013492, - 0.03088, - 0.016029, - 0.00086724, - -0.00689, - 0.029367, - -0.013289, - 0.038554, - -0.046732, - 0.046741, - 0.012098, - 0.019056, - -0.023865, - -0.001416, - -0.029475, - -0.0080409, - -0.0027915, - 0.1048, - 0.0070618, - -0.0062528, - -0.025111, - 0.05981, - 0.088675, - -0.065893, - -0.040042, - 0.01954, - 0.021383, - -0.004566, - 0.024732, - 0.0088328, - -0.10425, - 0.028189, - -0.036715, - -0.00072759, - 0.03191, - 0.048085, - -0.017871, - 0.033899, - -0.069174, - 0.00058306, - 0.137, - 0.025703, - -0.00056896, - -0.020098, - 0.0063888, - -0.0086244, - 0.032593, - 0.0056078, - -0.031776, - 0.022711, - 0.025279, - 0.037671, - 0.025663, - 0.093975, - 0.01007, - -0.054305, - 0.027909, - 0.024071, - -0.021741, - -0.0074505, - -0.013299, - -0.047884, - -0.041934, - -0.02244, - -0.019565, - -0.023035, - 0.015371, - -0.0027315, - -0.010752, - -0.047714, - 0.0089957, - 0.032492, - 0.014794, - 0.014152, - -0.086159, - 0.0050667, - 0.010201, - 0.038798, - 0.0094236, - 0.026741, - 0.035785, - -0.0044808, - -0.006582, - 0.022669, - -0.060062, - 0.016428, - -0.026857, - -0.0068016, - 0.007227, - 0.027373, - 0.039321, - -0.01857, - 0.043767, - -0.0018335, - 0.028192, - -0.022921, - 0.064199, - -0.0098136, - -0.015838, - 0.011156, - 0.020154, - 0.052713, - -0.039157, - -0.013249, - -0.038523, - -0.057782, - 0.0055806, - 0.13517, - -0.0024325, - 0.033493, - 0.1165, - -0.012294, - -0.022667, - -0.051725, - -0.033292, - -0.0048132, - -0.014216, - 0.016383, - 0.033506, - 0.039544, - -0.026936, - 0.043035, - -0.025122, - -0.040074, - 0.0041438, - -0.017149, - -0.040386, - -0.032426, - 0.070438, - 0.086295 - ], - "building": [ - 0.033657, - -0.030563, - -0.01796, - -0.026057, - -0.011094, - -0.014103, - 0.0088995, - -0.10475, - 0.017129, - 0.030658, - 0.012418, - -0.08775, - 0.042381, - 0.054012, - 0.0024291, - 0.018116, - 0.085492, - 0.048231, - 0.039429, - -0.018436, - -0.00022942, - 0.014308, - 0.044035, - 0.048496, - 0.01456, - -0.0032445, - -0.009276, - 0.021423, - 0.041448, - 0.024266, - -0.035477, - -0.0093443, - 0.013396, - -0.039043, - 0.019465, - 0.014377, - 0.017315, - 0.0048237, - -0.026385, - -0.037437, - 0.025603, - -0.10439, - 0.014912, - 0.026682, - -0.027763, - -0.038281, - 0.0026878, - 0.010857, - -0.035049, - 0.026705, - 0.013199, - -0.028063, - -0.066358, - 0.057133, - -0.10257, - 0.025868, - 0.014833, - -0.030416, - -0.045922, - -0.0064856, - 0.018512, - 0.025337, - 0.095833, - -0.019094, - 0.071919, - 0.0098624, - 0.023407, - -0.0054446, - -0.00021421, - 0.03753, - 0.066667, - -0.026452, - 0.018117, - -0.029764, - 0.030366, - -0.034075, - -0.04454, - -0.058871, - -0.015263, - 0.039216, - 0.007827, - -0.023907, - -0.034966, - 0.022336, - -0.020337, - -0.02949, - -0.042466, - -0.055459, - -0.028214, - 0.027328, - -0.013309, - 0.0053432, - -0.06796, - 0.012486, - 0.035422, - 0.037812, - 0.027476, - 0.015565, - 0.04235, - 0.0064421, - 0.062533, - 0.017267, - 0.0070232, - 0.044591, - 0.0066391, - -0.11073, - 0.00028877, - 0.027012, - -0.0016803, - 0.026005, - -0.0509, - 0.068165, - 0.049524, - 0.05264, - 0.021242, - -0.070649, - -0.046617, - -0.009842, - -0.037604, - 0.0030884, - -0.00082101, - -0.066822, - -0.0036872, - 0.02097, - 0.032572, - 0.036909, - -0.0011812, - -0.11494, - 0.034934, - 0.08095, - 0.012531, - -0.0077474, - 0.016351, - -0.0042056, - 0.016553, - 0.037833, - -0.025335, - -0.0015939, - -0.028283, - 0.017766, - 0.0030087, - 0.040258, - -0.0010253, - 0.019374, - -0.010662, - -0.034793, - 0.052246, - 0.032362, - 0.074427, - -0.0045821, - 0.046573, - 0.019968, - -0.0019029, - -0.1199, - -0.0024199, - 0.026837, - 0.049233, - -0.012656, - -0.016886, - -0.032202, - 0.0012711, - -0.016746, - -0.046648, - 0.03863, - 0.015802, - -0.021079, - 0.012115, - -0.0064918, - -0.0057197, - 0.054724, - 0.065991, - -0.013929, - 0.033185, - 0.0077666, - -0.00062766, - 0.0091181, - -0.0035414, - 0.021044, - -0.030325, - 0.046325, - -0.017096, - -0.026351, - 0.0033666, - 0.013328, - -0.051656, - -0.024461, - 0.0064495, - 0.0643, - 0.034355, - -0.031231, - -0.017371, - 0.012833, - -0.014737, - 0.047757, - 0.026173, - 0.0018167, - -0.018703, - 0.0096985, - 0.044478, - -0.0067454, - -0.16314, - 0.075684, - -0.035999, - 0.024155, - 0.025153, - -0.028481, - 0.028271, - -0.015405, - -0.020352, - -0.034026, - 0.084811, - -0.017384, - 0.0081279, - 0.015656, - -0.026095, - 0.014831, - 0.030852, - 0.0531, - 0.062303, - -0.013547, - 0.007705, - 0.02789, - 0.01105, - 0.080614, - -0.060603, - -0.00006998, - -0.0047424, - 0.056872, - -0.013962, - -0.014584, - -0.0049257, - -0.029884, - -0.046954, - 0.0079907, - -0.0049441, - -0.020101, - 0.001569, - 0.010863, - -0.024405, - 0.0048226, - 0.071464, - -0.0027058, - 0.066815, - 0.023785, - -0.060935, - 0.072667, - -0.045019, - 0.052721, - -0.015482, - 0.03311, - -0.0065271, - 0.0012825, - -0.031231, - -0.036601, - -0.007729, - 0.012687, - -0.061896, - 0.039708, - 0.008866, - 0.01687, - -0.010138, - -0.033937, - -0.009454, - 0.026769, - -0.000060036, - -0.012445, - 0.04423, - 0.003703, - 0.0039503, - -0.015936, - -0.022679, - 0.054248, - -0.087254, - -0.035687, - -0.047107, - -0.0091769, - 0.0074934, - -0.0055058, - 0.028581, - -0.033225, - 0.035158, - -0.012636, - -0.036514, - 0.045617, - 0.033395, - -0.005088, - -0.030925, - -0.017327, - -0.0071832, - 0.061838, - 0.0064696, - 0.071637, - 0.026455, - 0.00017196, - -0.019963, - -0.020335, - -0.002278, - -0.0019736, - -0.011193, - -0.02306 - ], - "cricket": [ - -0.056223, - -0.13269, - 0.080792, - 0.0048387, - -0.07278, - -0.11366, - 0.032758, - -0.10579, - 0.055781, - 0.081121, - -0.026884, - -0.056836, - 0.034722, - -0.018339, - 0.024359, - 0.05474, - 0.12844, - -0.011079, - 0.045804, - 0.003451, - -0.0082912, - -0.013103, - 0.064645, - 0.061126, - 0.09101, - -0.070568, - 0.032366, - -0.02502, - 0.0094346, - -0.057183, - 0.052997, - 0.046864, - 0.049109, - -0.033272, - 0.057041, - 0.0022314, - -0.018304, - -0.0042963, - 0.042639, - -0.075454, - -0.050088, - -0.12924, - -0.044175, - -0.077405, - 0.0047315, - -0.022751, - 0.082874, - -0.12767, - -0.030402, - 0.076816, - -0.00012038, - -0.022981, - 0.10717, - -0.083321, - -0.059552, - -0.030353, - 0.023399, - 0.009711, - -0.11167, - 0.021441, - 0.049749, - -0.047759, - 0.093138, - 0.0045799, - 0.010022, - -0.10357, - -0.051326, - -0.0052696, - -0.0025817, - 0.014886, - -0.0023062, - -0.070232, - 0.011274, - -0.035021, - 0.014308, - -0.0022612, - -0.087538, - -0.023851, - -0.026008, - 0.0088544, - -0.018424, - 0.022569, - -0.083862, - 0.086204, - -0.0349, - -0.10612, - 0.017735, - -0.041286, - -0.087749, - 0.0013651, - -0.027065, - 0.055786, - -0.10348, - 0.040044, - 0.050471, - 0.091805, - -0.055934, - 0.09985, - 0.049357, - -0.082915, - 0.00027197, - 0.10414, - -0.022135, - -0.052627, - 0.0053343, - -0.12802, - -0.032335, - 0.034162, - 0.033403, - 0.008873, - -0.067203, - 0.06655, - 0.051468, - 0.012027, - -0.022898, - 0.009314, - 0.053977, - 0.055322, - -0.043287, - -0.010585, - 0.094051, - -0.028868, - -0.011151, - -0.018509, - 0.06474, - -0.050242, - -0.05254, - -0.068864, - -0.066978, - 0.12222, - -0.012835, - 0.024561, - 0.0021228, - 0.12751, - -0.017544, - -0.048172, - 0.097709, - 0.022615, - -0.0045197, - 0.0051635, - -0.0051989, - 0.033489, - 0.15691, - -0.051057, - -0.00077587, - -0.062172, - 0.048491, - -0.015902, - -0.0070723, - -0.025539, - 0.042857, - 0.0921, - -0.082789, - -0.062008, - -0.072736, - -0.022256, - 0.03557, - 0.10454, - 0.10968, - -0.026046, - 0.012697, - 0.031596, - -0.063536, - 0.070923, - 0.043172, - -0.017355, - 0.033869, - -0.015877, - -0.012578, - -0.065711, - -0.0017072, - 0.070585, - -0.025351, - 0.051899, - 0.087724, - 0.057029, - -0.052897, - -0.030736, - -0.022654, - -0.068326, - 0.0011082, - 0.038555, - -0.066652, - -0.0683, - -0.078327, - -0.028607, - 0.063876, - 0.11342, - 0.0045733, - -0.075027, - -0.021609, - 0.054657, - -0.012753, - -0.08035, - -0.0098915, - -0.18245, - 0.028181, - 0.046423, - -0.014719, - -0.0086475, - -0.17615, - 0.071566, - -0.041985, - -0.048938, - -0.11055, - -0.022786, - 0.045736, - 0.0062825, - 0.007301, - -0.012132, - 0.14439, - 0.0077186, - 0.021353, - 0.014284, - 0.0074769, - 0.016671, - -0.12661, - 0.025639, - 0.0032771, - -0.042018, - -0.0010103, - 0.04071, - -0.013316, - 0.1033, - -0.058162, - -0.091343, - 0.04681, - 0.088264, - 0.004643, - -0.011038, - -0.0091799, - -0.057536, - -0.040628, - 0.038178, - -0.0074733, - 0.046105, - -0.052715, - 0.054897, - -0.0033467, - -0.056993, - 0.029826, - -0.06714, - 0.013697, - -0.00092832, - 0.0044002, - 0.10691, - 0.033762, - 0.012902, - -0.056826, - -0.0054292, - 0.060756, - -0.026679, - 0.029786, - 0.0017893, - 0.00083046, - 0.068271, - -0.028118, - -0.011156, - 0.05947, - 0.14329, - -0.039467, - 0.049237, - 0.04457, - -0.016485, - 0.052343, - 0.059286, - -0.053043, - 0.025074, - 0.047974, - -0.016221, - 0.056871, - 0.098023, - -0.12, - 0.016424, - -0.032622, - -0.063527, - 0.14032, - -0.12514, - 0.0083137, - 0.020893, - 0.11146, - 0.022451, - 0.010519, - 0.053167, - -0.00049936, - 0.00084452, - 0.058767, - -0.035063, - 0.023304, - 0.038967, - 0.039772, - -0.027112, - -0.047859, - 0.013284, - -0.082636, - -0.01707, - -0.025697, - -0.020387, - 0.079304, - -0.010058 - ], - "religion": [ - 0.023526, - -0.065182, - 0.10718, - -0.094835, - -0.0010757, - -0.030687, - -0.0019184, - -0.072645, - 0.076626, - 0.015801, - 0.0040141, - -0.036567, - 0.034997, - -0.046965, - -0.0059149, - -0.0091213, - 0.12532, - -0.052107, - 0.013607, - 0.037456, - -0.064677, - 0.0007714, - 0.0845, - 0.037213, - -0.0069684, - 0.01504, - -0.0065931, - 0.016391, - 0.033894, - 0.038961, - 0.0096712, - 0.02288, - 0.007929, - 0.0012552, - -0.0064282, - 0.039757, - 0.028308, - -0.025503, - 0.013474, - 0.020444, - -0.026224, - -0.095954, - 0.00032493, - 0.019148, - -0.021408, - -0.029783, - -0.046006, - -0.021748, - -0.0052959, - -0.033261, - -0.007819, - -0.0016758, - 0.04152, - 0.0013215, - -0.056911, - 0.080656, - 0.0079374, - -0.053939, - -0.043021, - -0.0051365, - 0.010276, - 0.00099966, - 0.084769, - 0.0061779, - 0.031351, - -0.0084231, - -0.012607, - 0.054818, - 0.068664, - -0.020977, - 0.020776, - 0.019358, - -0.0024002, - -0.034971, - -0.037726, - 0.025495, - 0.040831, - 0.011465, - 0.079278, - 0.034431, - -0.0042045, - 0.039211, - -0.047902, - 0.058686, - -0.066361, - -0.03349, - 0.0035031, - -0.0098126, - -0.015965, - 0.046888, - 0.035303, - 0.030847, - -0.082106, - 0.0070544, - 0.043706, - 0.049694, - 0.0031954, - -0.034253, - 0.037011, - -0.023861, - 0.029757, - -0.0040173, - 0.060812, - -0.080194, - -0.029047, - -0.067985, - 0.02904, - 0.025087, - -0.0085514, - -0.019667, - -0.011495, - 0.080109, - 0.045477, - -0.013747, - -0.000058345, - -0.00071362, - 0.052094, - 0.01654, - -0.028967, - 0.045644, - 0.018418, - 0.013877, - -0.051834, - -0.037914, - 0.027976, - 0.033356, - -0.09223, - -0.071117, - -0.013065, - 0.1043, - -0.007932, - -0.041033, - 0.027112, - 0.030859, - -0.023313, - 0.039957, - 0.022638, - 0.01869, - 0.0114, - -0.075997, - 0.033269, - -0.063783, - -0.0093788, - 0.055755, - 0.012925, - -0.022422, - -0.030958, - -0.0097003, - -0.0038349, - -0.026577, - 0.044351, - 0.027628, - -0.050893, - -0.056366, - 0.0068355, - 0.061827, - 0.003552, - -0.017555, - -0.012108, - 0.001495, - 0.028646, - -0.0065733, - -0.09836, - 0.005416, - 0.014707, - -0.018468, - 0.031575, - 0.039658, - -0.020078, - -0.030623, - 0.0095212, - -0.085335, - 0.00075353, - 0.030129, - 0.021887, - 0.064418, - 0.031678, - 0.085528, - 0.0062234, - -0.07031, - 0.00041611, - 0.0061411, - 0.01595, - 0.028702, - 0.054988, - -0.066275, - 0.060496, - 0.091009, - -0.036354, - -0.093775, - -0.008003, - 0.088688, - -0.036905, - 0.036792, - 0.020309, - 0.016132, - -0.061448, - -0.0032047, - -0.0039094, - -0.050146, - -0.1374, - 0.037379, - 0.018368, - -0.086119, - 0.0060274, - 0.065066, - 0.078711, - -0.044067, - 0.088196, - -0.012555, - 0.095509, - -0.003052, - -0.0022718, - 0.048847, - 0.026043, - 0.043287, - 0.027067, - -0.044421, - -0.0025173, - -0.02568, - -0.012789, - 0.021972, - -0.076815, - 0.089044, - -0.030508, - -0.019828, - 0.064227, - 0.057935, - -0.025055, - -0.092941, - -0.0072996, - -0.027143, - -0.082659, - -0.081662, - 0.012708, - 0.033606, - -0.0078727, - 0.0067828, - 0.01752, - -0.039147, - 0.038114, - -0.092159, - 0.013142, - 0.0043344, - 0.012615, - -0.029285, - 0.047187, - -0.0091916, - -0.035895, - -0.01219, - 0.045077, - -0.048036, - -0.074363, - -0.038309, - 0.033272, - -0.028955, - -0.013057, - 0.034577, - -0.000084598, - -0.044374, - 0.032483, - 0.000061065, - 0.041171, - 0.023562, - 0.0031062, - -0.019894, - -0.014397, - 0.01696, - 0.018668, - 0.073705, - 0.036398, - 0.069646, - -0.086205, - -0.024793, - 0.017607, - -0.0079035, - 0.041365, - -0.019748, - -0.10285, - -0.0528, - 0.079608, - -0.041391, - 0.0070392, - 0.0012175, - -0.0073027, - 0.021743, - 0.029845, - 0.017176, - -0.059574, - 0.050877, - 0.032698, - -0.024221, - -0.033815, - -0.0032732, - -0.01568, - 0.053491, - 0.045645, - 0.036484, - 0.0017696, - 0.019651 - ], - "motives": [ - 0.029176, - -0.011978, - 0.033874, - 0.024259, - -0.042701, - -0.02408, - -0.033014, - -0.099578, - -0.020581, - 0.057316, - 0.020196, - 0.010237, - 0.042488, - -0.028712, - -0.015656, - 0.046087, - 0.0042866, - -0.0059287, - 0.041854, - 0.045553, - -0.04148, - 0.068521, - 0.052876, - 0.06063, - -0.059635, - 0.047785, - 0.016148, - 0.011826, - 0.14099, - -0.023696, - 0.00091358, - -0.081005, - -0.066684, - -0.026964, - 0.0018033, - 0.02412, - -0.062424, - 0.07147, - 0.0088165, - 0.035075, - 0.0093026, - -0.1032, - 0.0050662, - -0.030381, - -0.0139, - -0.053459, - -0.028799, - -0.048314, - 0.013533, - -0.091433, - 0.0083761, - -0.016304, - -0.01697, - 0.026317, - -0.013804, - -0.002369, - 0.041462, - 0.026838, - -0.06436, - 0.027585, - -0.036319, - -0.00078286, - 0.15, - -0.086067, - 0.099686, - -0.050702, - 0.056803, - -0.0083897, - 0.0017206, - 0.052575, - 0.034456, - -0.016698, - 0.052673, - -0.043246, - 0.064756, - 0.034878, - 0.0072052, - -0.10577, - -0.073904, - -0.031195, - -0.039547, - 0.040786, - -0.023293, - 0.058694, - 0.020723, - -0.077663, - 0.034183, - 0.027299, - -0.067087, - 0.0073831, - 0.035098, - -0.051665, - -0.093504, - 0.031657, - -0.030277, - 0.065341, - -0.0089653, - -0.058664, - -0.027764, - -0.015039, - -0.073827, - 0.00077125, - 0.062503, - 0.052073, - -0.0095001, - -0.01597, - -0.005079, - -0.030079, - 0.013396, - 0.013631, - -0.025156, - 0.066716, - 0.068385, - -0.031416, - -0.02982, - 0.0062956, - -0.032971, - -0.052785, - -0.015562, - -0.052906, - -0.0023915, - -0.017757, - 0.035351, - -0.090914, - 0.16435, - 0.033534, - 0.048415, - -0.069467, - -0.014394, - 0.11919, - 0.0057319, - 0.0083433, - 0.089111, - 0.087012, - 0.0019905, - -0.0514, - 0.035736, - 0.068966, - -0.043576, - -0.025352, - -0.027127, - -0.035811, - -0.036803, - 0.010322, - 0.053945, - -0.032458, - 0.026967, - -0.051332, - 0.044665, - 0.044744, - 0.046286, - 0.12148, - -0.057151, - -0.056708, - 0.041849, - 0.026816, - 0.029599, - -0.033284, - -0.023174, - 0.056073, - 0.052113, - -0.025429, - -0.016262, - -0.0039679, - -0.048201, - 0.051017, - 0.028524, - 0.060332, - -0.009254, - -0.019089, - 0.021844, - -0.031572, - -0.037213, - 0.01331, - 0.017878, - 0.08319, - -0.047968, - 0.036817, - -0.009594, - 0.0012384, - 0.039194, - -0.036456, - 0.001699, - -0.042889, - -0.0019971, - -0.12894, - 0.13331, - 0.13985, - 0.027197, - 0.022227, - 0.069502, - 0.1109, - -0.07036, - 0.014062, - 0.046097, - 0.070827, - -0.0003075, - -0.030849, - 0.012384, - 0.035445, - -0.10924, - 0.019925, - -0.0086381, - -0.095042, - 0.069394, - 0.011314, - 0.03612, - -0.039965, - 0.017481, - -0.0091328, - 0.071781, - 0.07587, - 0.07862, - -0.030579, - -0.051437, - 0.0095828, - -0.051043, - -0.03792, - -0.14283, - -0.046073, - -0.084891, - -0.04264, - -0.1159, - 0.11641, - 0.10027, - -0.032331, - 0.012922, - 0.088247, - 0.018978, - -0.051685, - 0.0022494, - -0.039873, - -0.16971, - -0.078847, - 0.051202, - 0.040738, - -0.0024442, - -0.067518, - -0.016366, - 0.045076, - -0.040283, - -0.0088427, - -0.035783, - 0.027179, - -0.018722, - 0.0073157, - -0.068852, - -0.084857, - -0.026262, - 0.065686, - 0.00014211, - 0.015074, - -0.055146, - -0.068198, - 0.013934, - -0.032754, - -0.083882, - 0.076599, - -0.058453, - -0.00299, - -0.00082108, - -0.0038855, - -0.053743, - -0.00084862, - -0.00081351, - 0.037528, - -0.092914, - 0.075837, - -0.021823, - -0.048924, - 0.01734, - 0.092043, - -0.098001, - -0.046738, - 0.14991, - -0.05584, - 0.029678, - 0.020455, - -0.0058735, - 0.039523, - 0.044389, - 0.018039, - -0.041037, - -0.045265, - 0.10213, - 0.015761, - -0.012351, - -0.0069419, - -0.00094894, - 0.035579, - -0.026832, - 0.03811, - -0.033648, - 0.076091, - -0.026085, - 0.039279, - 0.037506, - -0.018602, - -0.088487, - 0.048751 - ], - "statute": [ - 0.009096, - -0.041432, - 0.048471, - 0.03524, - 0.033656, - -0.039863, - 0.035745, - -0.1164, - -0.029287, - 0.019654, - 0.024515, - -0.071351, - 0.033711, - -0.016961, - -0.058201, - 0.08408, - 0.076162, - -0.00315, - 0.024787, - -0.033202, - -0.029384, - -0.11185, - 0.052718, - 0.05892, - 0.049158, - -0.0015174, - -0.027785, - 0.024135, - 0.045108, - -0.033681, - 0.059713, - -0.037053, - -0.067085, - -0.13095, - 0.058488, - -0.01681, - 0.033717, - -0.0067652, - 0.022938, - -0.010797, - 0.028827, - -0.11618, - 0.091497, - 0.0041862, - 0.05787, - 0.050296, - 0.051527, - 0.016915, - 0.004133, - 0.055217, - 0.041346, - 0.029517, - 0.023404, - 0.030136, - -0.035046, - 0.020099, - 0.028766, - 0.014476, - -0.0029166, - -0.053033, - 0.011231, - 0.042589, - 0.093211, - -0.049527, - 0.005106, - -0.025896, - -0.013026, - -0.0059596, - 0.040515, - -0.0054875, - -0.00081653, - -0.0061668, - -0.09674, - 0.011503, - -0.015623, - 0.024996, - -0.094658, - -0.035002, - -0.065862, - 0.003965, - 0.012911, - -0.0043385, - -0.019249, - 0.077954, - -0.032927, - 0.065558, - 0.059993, - 0.018839, - -0.01384, - 0.042933, - 0.058594, - -0.021959, - -0.087153, - -0.049049, - 0.024712, - 0.021448, - -0.02662, - 0.023302, - 0.023375, - 0.034368, - 0.022333, - -0.0375, - -0.02573, - -0.0088489, - -0.071529, - -0.024524, - 0.069169, - 0.070401, - -0.054761, - -0.063991, - -0.0062159, - -0.0005276, - 0.043137, - -0.0213, - -0.036354, - 0.10087, - 0.017105, - -0.044189, - -0.028751, - 0.071581, - -0.038117, - 0.056952, - -0.003141, - 0.050753, - 0.02079, - 0.026875, - 0.011478, - -0.041837, - 0.034145, - 0.14007, - -0.094387, - 0.033288, - -0.052375, - 0.039852, - -0.034405, - -0.010446, - -0.0061442, - 0.036279, - 0.034772, - -0.082461, - 0.049627, - -0.060704, - -0.053961, - -0.022336, - -0.087655, - 0.011168, - -0.021761, - -0.052752, - -0.0012706, - 0.0088965, - -0.025138, - 0.028528, - 0.093861, - -0.076737, - 0.085277, - 0.077561, - 0.02349, - -0.059562, - -0.027011, - -0.018666, - 0.06343, - 0.053387, - -0.041275, - 0.03982, - 0.070156, - -0.047778, - 0.079516, - -0.011237, - -0.0010237, - -0.033649, - -0.028126, - -0.02916, - 0.021711, - 0.0025284, - -0.032446, - 0.056684, - -0.0046037, - 0.026435, - -0.034788, - -0.0254, - -0.01418, - -0.06481, - 0.014951, - -0.018555, - -0.026188, - 0.080203, - -0.018489, - 0.11886, - 0.085774, - 0.035928, - 0.036737, - 0.11203, - -0.059161, - -0.0010753, - 0.015689, - -0.056348, - 0.01844, - 0.062563, - -0.060431, - -0.01431, - -0.16801, - -0.028134, - 0.018003, - -0.035351, - 0.0052635, - 0.046769, - 0.061798, - -0.065957, - 0.0083572, - -0.032964, - 0.11143, - 0.018069, - -0.0046202, - -0.00087674, - -0.070206, - 0.043894, - 0.0064249, - -0.016302, - 0.012813, - -0.090746, - -0.0075782, - -0.062415, - 0.043864, - 0.1048, - 0.018116, - -0.033874, - 0.05014, - -0.0063218, - -0.015145, - -0.014994, - -0.048361, - -0.11095, - -0.0084265, - -0.038112, - -0.0077067, - -0.092491, - 0.025709, - -0.013258, - 0.0019703, - 0.046367, - 0.062293, - -0.049929, - -0.032504, - -0.01226, - -0.015468, - -0.0024668, - 0.012612, - 0.0039896, - -0.04172, - -0.0012105, - 0.014187, - -0.016974, - 0.0062107, - -0.022505, - 0.03479, - 0.039393, - 0.054725, - 0.054574, - -0.11662, - 0.072421, - 0.029223, - -0.03756, - -0.060289, - -0.055425, - 0.0064117, - 0.013061, - -0.012768, - 0.018142, - -0.03425, - 0.0014287, - 0.053783, - 0.078461, - -0.13652, - -0.026722, - 0.037244, - -0.054125, - 0.031099, - 0.063003, - -0.052186, - -0.05913, - 0.060232, - 0.037437, - 0.023101, - -0.0024831, - 0.0017737, - 0.049391, - -0.050879, - 0.038043, - 0.019953, - 0.022117, - 0.047165, - 0.010021, - 0.072521, - -0.039471, - 0.0087048, - 0.0054348, - -0.018176, - -0.13579, - -0.046126, - -0.018998 - ], - "funds": [ - 0.12473, - 0.0081027, - -0.087221, - -0.020279, - 0.00081621, - -0.012388, - -0.018459, - -0.11938, - 0.043153, - 0.031471, - -0.046212, - -0.0081419, - 0.0047474, - 0.0037066, - 0.0072022, - 0.043752, - 0.10156, - 0.021323, - 0.090595, - -0.0095036, - 0.011841, - 0.087793, - -0.060964, - 0.06637, - 0.016342, - 0.032342, - -0.054919, - 0.0098036, - 0.10163, - -0.0064127, - -0.011979, - 0.0063062, - -0.11201, - -0.027852, - 0.049347, - 0.021052, - -0.0060422, - -0.061834, - -0.0085919, - 0.020062, - 0.027369, - -0.1096, - 0.026808, - 0.094086, - 0.016081, - -0.077533, - 0.01455, - -0.027722, - 0.038214, - 0.0080726, - -0.048079, - 0.051287, - 0.0025168, - 0.064371, - -0.16263, - 0.041325, - -0.034552, - -0.037219, - 0.026443, - 0.017869, - 0.025018, - -0.0069512, - 0.24832, - 0.061776, - 0.016329, - -0.15886, - 0.022731, - -0.16648, - -0.048157, - 0.012489, - 0.036169, - -0.02269, - 0.072762, - 0.02723, - -0.016919, - 0.089301, - 0.028444, - -0.01902, - 0.0094418, - -0.010514, - -0.087256, - -0.017665, - -0.020251, - 0.1194, - -0.013741, - 0.030685, - -0.0036092, - -0.08382, - -0.032049, - -0.061777, - -0.097912, - -0.034173, - -0.10047, - 0.026074, - -0.054707, - 0.011001, - -0.023494, - -0.0087673, - -0.049732, - 0.021136, - -0.030598, - -0.094793, - 0.018851, - -0.0084588, - 0.10087, - -0.082025, - -0.014094, - -0.05026, - -0.080505, - 0.056612, - -0.011516, - 0.11569, - 0.10663, - 0.014417, - 0.013462, - -0.077365, - -0.036119, - -0.09962, - -0.047142, - 0.041916, - -0.0090587, - -0.05496, - -0.057749, - -0.057626, - 0.15338, - -0.046144, - -0.075813, - -0.085499, - -0.010191, - 0.11347, - -0.067247, - 0.022164, - -0.022678, - 0.060127, - 0.056218, - 0.03955, - -0.069015, - 0.03156, - -0.0040015, - -0.0056948, - -0.040997, - 0.0045567, - 0.021818, - 0.034778, - -0.025596, - -0.11705, - -0.0011048, - 0.018911, - 0.056284, - -0.05038, - 0.056437, - 0.081928, - 0.023351, - -0.15557, - 0.032404, - 0.0041702, - 0.049145, - -0.022999, - -0.062137, - -0.023742, - 0.14393, - -0.0038886, - -0.011273, - 0.0041494, - 0.011598, - 0.11801, - -0.073069, - -0.056338, - -0.056807, - 0.00068381, - 0.011679, - -0.075545, - 0.023934, - -0.0096264, - -0.071512, - 0.051817, - -0.077026, - -0.023896, - -0.061265, - -0.047464, - 0.034378, - 0.072811, - 0.035985, - -0.0060894, - -0.089361, - -0.066356, - -0.031382, - 0.15387, - 0.031551, - -0.04222, - 0.017194, - 0.099949, - -0.046627, - -0.012111, - 0.019615, - -0.062051, - 0.046485, - 0.018275, - 0.019158, - -0.054329, - -0.18082, - 0.048216, - 0.035154, - 0.06038, - 0.058931, - -0.045192, - -0.057873, - -0.071068, - -0.0036178, - -0.086652, - 0.10046, - 0.042575, - -0.036532, - 0.053023, - -0.00027667, - -0.034262, - -0.058558, - 0.059382, - -0.0076892, - 0.013939, - -0.0044079, - -0.028928, - 0.001604, - 0.098722, - 0.20447, - 0.018492, - -0.018628, - 0.0233, - 0.034207, - -0.0034069, - -0.042095, - -0.050185, - -0.17483, - -0.11011, - 0.046942, - -0.044965, - -0.029076, - 0.05113, - -0.13888, - -0.079159, - 0.0071453, - -0.079908, - 0.041329, - -0.014844, - -0.0074993, - 0.021286, - -0.032129, - -0.047222, - 0.014851, - 0.038774, - 0.013852, - -0.00031077, - 0.0092711, - -0.0094903, - -0.012013, - 0.041819, - 0.0077455, - 0.054437, - -0.02861, - 0.079566, - -0.0042078, - -0.051735, - -0.059494, - -0.067995, - 0.04255, - 0.013722, - -0.065127, - -0.022924, - 0.057381, - 0.124, - 0.068595, - 0.057832, - -0.14479, - -0.077474, - -0.10943, - 0.019138, - 0.035861, - 0.023568, - -0.02603, - -0.067757, - 0.027396, - -0.093835, - -0.01098, - -0.041745, - -0.036341, - 0.054738, - -0.028509, - 0.11373, - -0.056866, - -0.010141, - 0.083825, - 0.021782, - -0.050212, - 0.052243, - 0.0066974, - -0.062966, - -0.022086, - -0.095224, - -0.10643, - -0.024995 - ], - "frost": [ - -0.039036, - 0.02889, - 0.027714, - -0.042265, - -0.030565, - -0.064814, - -0.05094, - -0.10118, - 0.15763, - -0.042295, - 0.0088372, - -0.015268, - 0.046768, - 0.0015971, - 0.055779, - -0.083573, - 0.049367, - 0.0082724, - 0.027472, - 0.089852, - -0.040977, - 0.018293, - 0.049518, - 0.044714, - 0.15575, - -0.078081, - -0.011486, - 0.047787, - 0.07106, - -0.0031382, - 0.009083, - -0.044251, - 0.0043266, - -0.065157, - -0.0099003, - 0.0080131, - 0.012995, - 0.036371, - -0.0018991, - 0.093904, - -0.0051805, - -0.13091, - -0.044616, - -0.066938, - -0.02439, - 0.043709, - 0.011259, - 0.05552, - -0.027385, - -0.044134, - 0.1118, - 0.04588, - -0.022326, - -0.09553, - -0.050835, - 0.021723, - 0.10111, - -0.0070982, - -0.082851, - -0.071812, - 0.017763, - 0.024944, - 0.020093, - -0.060946, - -0.063784, - -0.012958, - -0.071158, - -0.040251, - -0.029378, - 0.01435, - -0.0051309, - 0.11122, - 0.018922, - 0.10012, - -0.1454, - -0.076023, - -0.081376, - -0.0079619, - -0.14425, - -0.0020291, - 0.00863, - -0.013888, - 0.024007, - 0.08196, - 0.095599, - 0.053326, - 0.077041, - 0.036704, - -0.037373, - -0.014599, - -0.066318, - -0.038053, - -0.11045, - -0.014399, - 0.073256, - 0.052996, - -0.02277, - 0.18003, - 0.01223, - -0.04101, - 0.042945, - -0.051067, - -0.0076263, - 0.07735, - 0.028266, - -0.097547, - -0.035373, - 0.051439, - 0.048759, - -0.015434, - -0.077311, - 0.01699, - 0.063957, - 0.060158, - 0.014905, - -0.18516, - 0.016903, - 0.067191, - -0.029331, - 0.055992, - -0.058911, - -0.0067011, - -0.059982, - 0.042776, - 0.073782, - -0.024421, - 0.1301, - -0.082408, - -0.044575, - 0.08983, - 0.071566, - -0.037207, - -0.099647, - 0.055126, - 0.019864, - 0.035152, - 0.052079, - 0.058119, - -0.068549, - 0.08655, - 0.065444, - -0.059459, - -0.075898, - -0.11228, - 0.064841, - -0.036115, - 0.059133, - -0.0069694, - -0.012173, - -0.10126, - -0.0055269, - 0.062107, - 0.055611, - -0.017553, - 0.077242, - -0.04627, - 0.054166, - -0.0016889, - -0.088783, - -0.023374, - 0.013579, - -0.16032, - -0.11497, - 0.042898, - -0.015994, - -0.0018949, - -0.054771, - 0.13091, - 0.06882, - 0.13483, - -0.0080241, - -0.019085, - -0.059658, - -0.010082, - 0.1317, - 0.12507, - 0.14121, - -0.0084447, - -0.021095, - -0.10492, - -0.031904, - 0.083387, - -0.0032911, - -0.066696, - -0.076038, - -0.065121, - -0.021953, - 0.16732, - 0.012748, - 0.02497, - -0.039199, - -0.061907, - -0.06676, - -0.058428, - -0.017932, - -0.028197, - 0.036944, - -0.12277, - 0.0012488, - 0.043832, - -0.22362, - 0.01081, - -0.092588, - 0.024093, - -0.0339, - 0.096534, - 0.11011, - 0.073604, - -0.0079322, - -0.070727, - 0.14113, - 0.021863, - 0.050408, - 0.02615, - 0.11331, - 0.03347, - -0.0095095, - -0.034427, - 0.022304, - -0.24965, - 0.090463, - 0.064895, - 0.057904, - 0.070649, - 0.050682, - -0.023008, - 0.021517, - 0.080352, - -0.07563, - -0.035159, - 0.048995, - -0.098925, - -0.029722, - -0.0092525, - 0.02969, - -0.061449, - 0.064381, - -0.085827, - 0.047543, - -0.079699, - 0.09227, - 0.079203, - 0.073201, - -0.047348, - -0.087329, - -0.084459, - 0.033359, - 0.04551, - -0.011168, - -0.10893, - 0.0020143, - -0.020878, - -0.034276, - 0.020631, - 0.020833, - -0.035873, - 0.1261, - 0.029065, - 0.072515, - 0.011851, - 0.030262, - 0.070304, - -0.081406, - 0.0044017, - -0.01346, - -0.060862, - -0.010737, - 0.038605, - -0.015165, - -0.0882, - -0.072365, - 0.087407, - -0.12801, - -0.048037, - 0.014503, - -0.13944, - -0.02102, - -0.092483, - 0.031782, - -0.03538, - 0.11788, - -0.036827, - 0.090092, - -0.024489, - -0.039737, - 0.050609, - 0.017922, - 0.097517, - -0.095248, - 0.016556, - -0.10033, - -0.089887, - -0.089762, - -0.057648, - -0.057776, - -0.10907, - -0.0049454, - -0.017495, - 0.038868, - -0.049888 - ], - "politicans": [ - 0.059945, - -0.09022, - 0.0045924, - -0.0089363, - -0.061179, - -0.025396, - 0.016919, - -0.083299, - 0.10777, - 0.017806, - 0.01606, - -0.042071, - -0.01841, - 0.00094121, - 0.018931, - 0.02001, - 0.076224, - -0.030326, - 0.067152, - -0.040584, - 0.028794, - -0.011661, - 0.0077888, - 0.054342, - -0.015195, - -0.00087057, - 0.096949, - 0.019658, - 0.071901, - -0.012033, - -0.00037657, - -0.021161, - -0.060894, - 0.0012134, - 0.02856, - 0.047306, - 0.0047733, - -0.0054676, - -0.0086246, - 0.03849, - -0.052113, - -0.070609, - -0.0025173, - 0.0052845, - 0.070408, - 0.0092141, - -0.043084, - -0.0036348, - -0.011538, - -0.0043145, - -0.04555, - -0.02252, - 0.03787, - -0.021919, - -0.026877, - 0.020793, - 0.015205, - 0.025155, - -0.0083616, - -0.051566, - -0.076277, - -0.052895, - 0.072962, - -0.0079946, - 0.0087062, - 0.053864, - -0.021315, - -0.015953, - 0.028241, - 0.013394, - -0.019899, - 0.007648, - 0.12109, - 0.038333, - -0.0021036, - -0.01776, - 0.0070845, - -0.019791, - -0.045691, - 0.044208, - -0.024678, - 0.066295, - 0.041341, - 0.1082, - 0.030671, - -0.0064873, - -0.046415, - -0.006554, - 0.0026126, - -0.020886, - -0.027659, - 0.018439, - -0.061598, - -0.0032431, - 0.041349, - 0.014696, - -0.0041065, - -0.011691, - 0.029521, - -0.030154, - 0.034874, - -0.045677, - 0.013187, - -0.05553, - 0.033364, - -0.058392, - 0.048764, - -0.049158, - 0.018433, - 0.062169, - -0.017871, - 0.097853, - 0.032829, - -0.029385, - 0.0018085, - -0.033666, - 0.027503, - -0.02493, - -0.039634, - 0.053482, - 0.0012759, - -0.050988, - 0.011889, - -0.070708, - 0.099294, - 0.033894, - -0.030236, - -0.04685, - -0.048754, - 0.057919, - -0.013625, - 0.1368, - 0.081292, - 0.044749, - 0.014023, - 0.024841, - -0.029251, - 0.074669, - -0.074506, - 0.018877, - 0.012306, - -0.068733, - 0.026254, - 0.033525, - -0.0046428, - -0.015047, - 0.002143, - 0.029072, - 0.01481, - -0.076113, - 0.089172, - 0.10993, - -0.0013936, - 0.02175, - -0.032358, - -0.014777, - -0.0090636, - -0.010387, - -0.020732, - -0.002055, - 0.054108, - 0.10374, - 0.04508, - -0.016806, - -0.049367, - -0.0026323, - 0.022225, - 0.061179, - -0.01061, - -0.04981, - -0.040625, - -0.023579, - 0.024843, - -0.012729, - -0.0092637, - 0.039389, - -0.065393, - 0.012203, - 0.055497, - -0.020369, - -0.0020751, - -0.021903, - -0.012636, - -0.0054414, - 0.059344, - -0.14621, - 0.0046015, - 0.084093, - 0.053988, - -0.054877, - 0.0014026, - 0.11266, - -0.091127, - 0.039917, - 0.014343, - -0.013629, - -0.028716, - -0.031416, - -0.059428, - 0.00343, - -0.090947, - -0.019824, - -0.0048478, - -0.048887, - -0.011791, - -0.04168, - -0.032765, - 0.033896, - -0.017832, - -0.034051, - 0.016483, - 0.01143, - 0.079531, - 0.031402, - -0.068047, - 0.019346, - -0.021808, - 0.0098162, - -0.010852, - -0.017841, - -0.026444, - 0.019917, - -0.016572, - 0.085671, - 0.064699, - 0.054734, - 0.029188, - 0.038055, - -0.038576, - -0.048399, - -0.012197, - 0.017332, - -0.074409, - -0.0050024, - 0.014149, - -0.006742, - 0.0039727, - -0.000095623, - -0.025461, - -0.012868, - -0.023457, - 0.030211, - -0.024129, - 0.028741, - 0.026767, - -0.021087, - 0.031092, - -0.038208, - -0.020489, - -0.016191, - 0.044038, - 0.019201, - -0.039408, - -0.000052261, - 0.0040963, - -0.012446, - -0.046316, - 0.023691, - 0.040106, - -0.006265, - -0.040505, - 0.027483, - 0.021545, - 0.0087825, - 0.010137, - 0.032638, - -0.037585, - 0.042054, - 0.0026368, - -0.020336, - -0.057049, - 0.060184, - -0.043334, - -0.017772, - 0.025518, - -0.036757, - 0.027085, - 0.04133, - -0.027979, - -0.010573, - 0.015427, - 0.040573, - -0.031046, - 0.005646, - 0.038574, - 0.032499, - 0.031569, - -0.098443, - 0.020957, - 0.023214, - 0.0061738, - -0.015661, - -0.0052077, - 0.055742, - -0.036613, - 0.039555, - -0.036473, - -0.0068397, - -0.033945, - -0.0078071 - ], - "psychoactive": [ - -0.068838, - -0.0080063, - -0.029236, - 0.059442, - 0.018099, - -0.07176, - -0.028577, - -0.070905, - 0.0149, - 0.0067398, - -0.041052, - 0.0073547, - -0.0054598, - 0.0088936, - 0.058546, - 0.018499, - 0.047607, - -0.0081122, - 0.031133, - -0.0016963, - -0.038006, - 0.02449, - 0.081053, - 0.019442, - -0.019759, - -0.059967, - 0.020242, - 0.015022, - 0.040473, - 0.072958, - 0.036113, - -0.014835, - -0.0095312, - -0.017718, - 0.042808, - -0.010708, - -0.014365, - -0.030474, - 0.0005754, - 0.046731, - 0.018913, - -0.066848, - -0.018199, - -0.038573, - 0.080148, - -0.073006, - -0.016356, - 0.060384, - 0.023437, - 0.031923, - -0.068401, - 0.036318, - 0.031912, - -0.016979, - 0.032152, - -0.0066633, - -0.02494, - -0.056127, - -0.013999, - 0.04711, - 0.035073, - -0.045233, - 0.095532, - 0.013724, - -0.07348, - 0.018405, - 0.063853, - -0.019487, - 0.013815, - 0.0062835, - 0.027643, - 0.088446, - 0.04869, - -0.0057417, - -0.090169, - -0.082547, - -0.013162, - -0.015561, - -0.0051533, - -0.01603, - 0.065102, - 0.015194, - -0.010909, - 0.026354, - -0.025596, - -0.045656, - 0.066044, - -0.0096158, - 0.051541, - -0.0030391, - 0.059776, - 0.0001555, - -0.080348, - 0.0083115, - -0.048628, - 0.025333, - 0.0039454, - -0.053032, - 0.048241, - 0.040554, - 0.01749, - 0.060507, - -0.012263, - -0.026286, - 0.010328, - -0.032238, - -0.028136, - 0.013653, - 0.02417, - 0.012606, - 0.02058, - 0.080481, - 0.033645, - -0.044409, - -0.015662, - -0.0042879, - 0.0028827, - -0.047881, - -0.016814, - 0.049146, - -0.0066657, - 0.017026, - -0.05616, - -0.071749, - 0.081142, - 0.065427, - -0.0061657, - -0.040128, - -0.016872, - 0.010849, - 0.0085436, - 0.0067605, - -0.014187, - 0.01405, - 0.029779, - -0.01956, - -0.044004, - 0.032152, - 0.0019417, - 0.017288, - 0.032404, - 0.025812, - -0.013863, - 0.018161, - 0.072822, - 0.0097509, - 0.0063337, - 0.020974, - 0.028515, - 0.028901, - 0.042166, - 0.11635, - -0.032893, - -0.010972, - 0.013069, - 0.015503, - -0.036604, - 0.015368, - 0.022922, - 0.023281, - -0.00057587, - 0.08243, - -0.032888, - 0.028086, - 0.0084555, - -0.009865, - 0.061946, - 0.015894, - 0.044334, - -0.081831, - 0.0050827, - -0.026658, - 0.032285, - 0.0046631, - -0.01448, - 0.048996, - 0.0074089, - 0.026304, - -0.052642, - -0.051855, - 0.0064911, - -0.0019194, - -0.023593, - -0.01304, - 0.031735, - -0.056645, - 0.084526, - 0.10679, - -0.0040604, - -0.0076798, - 0.1066, - 0.021209, - 0.043976, - 0.0057346, - -0.027302, - 0.015248, - -0.054941, - 0.044835, - -0.034557, - -0.000086349, - -0.081108, - 0.0063311, - -0.069199, - 0.0088838, - 0.017541, - 0.015804, - 0.056672, - 0.037107, - 0.018718, - -0.033178, - 0.10894, - 0.010013, - 0.016313, - -0.018223, - 0.065615, - -0.0057768, - 0.01124, - 0.041967, - -0.031955, - -0.024227, - -0.039686, - -0.039129, - -0.039905, - 0.091234, - 0.011169, - -0.047663, - 0.0047712, - 0.023552, - -0.0030599, - -0.033378, - -0.051958, - -0.01971, - -0.049757, - -0.0015198, - 0.0053718, - -0.052047, - 0.0010379, - -0.019593, - 0.032872, - -0.047805, - 0.025462, - 0.024107, - 0.013032, - -0.02788, - -0.065869, - 0.0082955, - -0.03384, - 0.04591, - 0.016093, - 0.01647, - -0.036015, - -0.031007, - 0.018492, - -0.096027, - -0.010515, - 0.0044896, - -0.028256, - -0.014472, - 0.051273, - -0.056831, - 0.095365, - -0.0027697, - -0.039214, - -0.0084362, - 0.0094545, - -0.057533, - -0.037809, - -0.018001, - -0.0083356, - 0.020179, - -0.022686, - 0.039123, - -0.066305, - -0.021042, - 0.0053073, - -0.073422, - 0.012227, - 0.023105, - -0.068914, - 0.010485, - 0.115, - 0.015428, - -0.074234, - -0.054463, - -0.021632, - -0.0082365, - -0.018689, - -0.021943, - 0.012927, - -0.066657, - -0.0064291, - -0.00045436, - 0.016322, - -0.025014, - -0.052143, - 0.056952, - 0.02855, - 0.022448, - 0.018616, - 0.020497 - ], - "educations": [ - -0.010337, - -0.026649, - 0.030898, - -0.016321, - 0.011601, - -0.032161, - -0.020003, - -0.06175, - 0.014222, - 0.029053, - 0.0061274, - -0.059714, - 0.0080218, - 0.0051246, - -0.022915, - 0.0093461, - 0.040785, - 0.030434, - 0.037864, - 0.035582, - -0.024931, - 0.049969, - -0.018278, - 0.047317, - -0.055183, - 0.024936, - 0.018735, - -0.007588, - 0.027526, - -0.0083152, - -0.010345, - -0.052599, - -0.0093962, - -0.07437, - 0.040358, - 0.1067, - 0.025984, - -0.0016267, - -0.022393, - 0.0036597, - -0.025181, - -0.093383, - 0.00030218, - 0.048695, - 0.034686, - -0.072142, - -0.040709, - 0.004842, - -0.015794, - 0.032025, - -0.045922, - -0.0071127, - -0.0079903, - -0.0070078, - -0.063141, - 0.03878, - -0.068571, - -0.0043988, - 0.0095365, - -0.012051, - 0.010106, - -0.0059688, - 0.13797, - 0.08323, - 0.045357, - -0.03919, - -0.039733, - -0.055019, - 0.013536, - -0.0057163, - -0.010382, - -0.060519, - 0.074012, - 0.019121, - 0.0035007, - 0.0030287, - 0.022852, - -0.038348, - 0.04633, - 0.033949, - -0.015373, - 0.0083024, - -0.00077514, - 0.067243, - -0.048202, - 0.018615, - -0.039971, - -0.005233, - -0.059446, - -0.025858, - 0.0294, - 0.0073371, - -0.058306, - 0.051009, - -0.007959, - 0.038858, - 0.04127, - -0.0039179, - -0.016196, - 0.023825, - 0.10238, - -0.032562, - 0.023804, - -0.045969, - 0.085184, - -0.033372, - 0.03988, - -0.010036, - 0.079667, - 0.013892, - -0.031118, - 0.058369, - 0.05415, - 0.071326, - -0.0029889, - -0.028845, - -0.023455, - 0.0067642, - -0.033664, - 0.0095968, - 0.0044053, - -0.063086, - 0.0044362, - -0.015464, - 0.092263, - 0.008142, - -0.049253, - -0.0097733, - -0.017785, - 0.12468, - -0.006712, - 0.044174, - 0.019053, - -0.0027477, - -0.059623, - 0.014911, - -0.020033, - -0.012556, - -0.043752, - -0.022386, - 0.0079258, - -0.037986, - -0.041568, - 0.073183, - 0.030746, - -0.034495, - -0.0491, - 0.017421, - -0.059462, - 0.0083803, - 0.06946, - 0.06677, - -0.024562, - 0.0069321, - 0.035459, - 0.011776, - 0.012807, - 0.036136, - 0.061412, - -0.059778, - 0.042968, - 0.017545, - 0.0048285, - -0.006354, - -0.0067019, - 0.0135, - -0.0080931, - 0.033632, - -0.003745, - -0.027192, - 0.043644, - 0.0030947, - 0.0043518, - 0.0008906, - -0.0034125, - 0.032204, - 0.015666, - 0.083585, - -0.0090985, - -0.0015959, - 0.030135, - 0.041891, - -0.047147, - 0.028544, - -0.024173, - -0.036319, - -0.029259, - 0.10332, - 0.011533, - 0.0089362, - 0.015487, - 0.07806, - -0.000023202, - -0.022301, - -0.0072006, - -0.0068296, - 0.032063, - 0.017249, - 0.0020141, - -0.033624, - -0.12345, - 0.012193, - 0.0028784, - 0.0027085, - 0.016664, - 0.0026552, - 0.039319, - -0.015786, - 0.021309, - -0.0023158, - 0.064535, - 0.035851, - 0.031733, - 0.04637, - -0.0090228, - 0.0082521, - 0.0098241, - -0.044103, - -0.097316, - 0.0011854, - -0.01144, - -0.0010775, - -0.033453, - 0.088884, - 0.058561, - -0.028716, - 0.024514, - 0.084889, - -0.0054223, - 0.027604, - 0.050119, - -0.016041, - -0.092759, - 0.012915, - 0.06431, - -0.0073325, - 0.034076, - 0.023972, - -0.06401, - 0.01123, - -0.032464, - -0.032419, - 0.02854, - -0.037219, - 0.0018541, - 0.037274, - -0.0099436, - -0.12267, - 0.017633, - 0.016563, - 0.0276, - 0.023158, - -0.022246, - -0.026066, - -0.05618, - 0.02316, - -0.051557, - 0.0010499, - 0.058538, - 0.0045174, - -0.024266, - 0.0091891, - -0.0077466, - -0.026654, - 0.03116, - 0.0528, - -0.013955, - 0.01957, - 0.045394, - 0.061888, - 0.0036748, - 0.05417, - -0.069472, - -0.022598, - -0.011373, - 0.027395, - -0.024785, - 0.052576, - 0.027903, - 0.0077883, - 0.046912, - 0.012759, - 0.031244, - -0.035623, - 0.013249, - 0.045508, - -0.0090938, - 0.0089625, - 0.0046871, - 0.041931, - -0.03804, - 0.010629, - -0.07119, - -0.013648, - -0.028979, - 0.012608, - 0.012201, - 0.0012884, - -0.021385, - -0.037116 - ], - "wireless": [ - -0.015818, - -0.017357, - 0.0099931, - 0.022029, - -0.081326, - -0.015789, - 0.087771, - -0.098579, - 0.045378, - 0.03783, - -0.045621, - -0.02697, - -0.038146, - 0.016557, - 0.0099066, - 0.000065957, - 0.097069, - -0.031115, - 0.057376, - -0.028957, - 0.029505, - -0.026413, - 0.052096, - 0.068293, - 0.019867, - -0.0085431, - 0.023776, - -0.02513, - 0.036782, - -0.031851, - -0.0074749, - 0.029232, - -0.0094965, - -0.041717, - 0.075952, - 0.00090587, - 0.027692, - 0.058623, - 0.046103, - -0.096665, - -0.044626, - -0.1292, - 0.032244, - 0.036455, - -0.035603, - -0.056701, - -0.040093, - -0.029548, - -0.033992, - 0.0069192, - 0.019845, - 0.040179, - 0.011448, - -0.030783, - -0.038155, - 0.075407, - -0.035603, - 0.052586, - 0.0037439, - 0.026335, - -0.03871, - -0.0035435, - 0.096824, - 0.018941, - 0.025818, - 0.033622, - -0.013816, - -0.0048808, - -0.10964, - 0.02711, - -0.037416, - -0.008255, - 0.043049, - 0.010376, - -0.032307, - -0.0047784, - 0.0042924, - -0.030057, - -0.00054245, - 0.0032675, - -0.016276, - -0.034553, - -0.031417, - 0.033599, - 0.011688, - 0.026909, - -0.026564, - -0.020251, - -0.042467, - -0.019819, - 0.022584, - 0.0082087, - -0.082568, - -0.029783, - 0.010698, - 0.063478, - -0.018507, - -0.048513, - -0.076813, - 0.042073, - 0.048691, - 0.11612, - 0.025463, - -0.032737, - 0.0056027, - -0.10933, - -0.016547, - 0.016637, - 0.061447, - 0.016945, - -0.007619, - 0.089483, - 0.042195, - 0.055436, - -0.022918, - 0.042915, - -0.039217, - 0.02432, - -0.037005, - -0.017892, - 0.0099575, - 0.0035641, - -0.0039698, - 0.0028686, - 0.053992, - 0.068744, - 0.002351, - -0.062717, - 0.0008136, - 0.04592, - 0.037947, - -0.016594, - -0.024291, - -0.044099, - 0.053751, - -0.011, - 0.06637, - -0.019627, - -0.06686, - -0.0092813, - 0.063989, - 0.038548, - 0.043834, - -0.040196, - -0.06205, - -0.01955, - -0.050784, - -0.021064, - 0.025732, - -0.082818, - 0.057232, - 0.095925, - 0.02116, - -0.037896, - 0.012679, - 0.0041653, - 0.085923, - -0.004244, - 0.0030483, - 0.031253, - 0.048885, - -0.032977, - -0.076653, - 0.023191, - 0.069908, - -0.060656, - -0.037683, - 0.008478, - 0.00274, - 0.039401, - -0.016926, - 0.1358, - -0.028605, - 0.015542, - -0.044776, - 0.058407, - -0.029766, - 0.019759, - -0.0076942, - -0.076813, - 0.049689, - -0.0041557, - -0.047445, - -0.0023127, - -0.031937, - -0.0086471, - -0.024736, - 0.12327, - -0.024347, - -0.0040987, - 0.022133, - 0.025378, - 0.046702, - -0.014044, - 0.036354, - 0.038947, - 0.0035981, - 0.042583, - 0.030503, - 0.0094942, - -0.13885, - 0.048281, - -0.0070052, - 0.044645, - 0.0273, - 0.037405, - -0.0086805, - 0.013664, - -0.12037, - -0.0056563, - 0.12357, - 0.0021668, - 0.039272, - -0.0016285, - 0.012073, - 0.043997, - 0.021283, - -0.021027, - -0.0092796, - 0.0035732, - -0.013827, - -0.035318, - 0.015668, - 0.084276, - -0.025731, - -0.0563, - 0.023616, - 0.025883, - -0.0074337, - -0.026026, - -0.055706, - -0.023154, - -0.050227, - -0.04906, - 0.029369, - 0.032783, - 0.041326, - 0.063101, - 0.021218, - -0.018635, - 0.036106, - -0.0021589, - 0.12028, - -0.037374, - -0.088605, - 0.0252, - -0.0021354, - 0.019653, - 0.034389, - -0.024584, - 0.0043409, - -0.031647, - -0.069961, - 0.015762, - 0.036377, - 0.030433, - -0.01643, - 0.009348, - 0.018206, - 0.050812, - -0.018156, - -0.000038017, - 0.00087183, - 0.019289, - -0.033946, - 0.047113, - 0.047835, - -0.0094797, - 0.038529, - 0.049727, - -0.077938, - 0.046977, - -0.08247, - 0.007693, - -0.053286, - -0.037272, - -0.0044435, - 0.03341, - 0.037014, - 0.017966, - 0.14044, - -0.075464, - -0.069351, - 0.051611, - -0.023535, - -0.092771, - -0.12453, - -0.008026, - 0.00388, - -0.021988, - 0.037783, - -0.015562, - -0.075085, - -0.033797, - 0.0041807, - -0.013784, - -0.05812, - 0.013123, - 0.054849, - 0.02852 - ], - "talents": [ - 0.015213, - -0.08951, - 0.053546, - 0.012431, - -0.06797, - -0.019856, - -0.0161, - -0.074753, - 0.034244, - 0.015592, - 0.022805, - 0.014134, - 0.0066675, - -0.0012957, - 0.019585, - -0.019348, - 0.072954, - 0.032436, - 0.071329, - 0.036883, - 0.027955, - 0.023831, - -0.013047, - 0.070849, - -0.085489, - -0.052141, - 0.036355, - -0.074041, - 0.13636, - -0.072372, - -0.055819, - -0.05789, - -0.0058638, - -0.042108, - 0.0025417, - 0.019203, - 0.0024067, - 0.0057827, - -0.030259, - -0.021076, - -0.013457, - -0.10131, - -0.0073777, - -0.058069, - 0.055537, - -0.061775, - 0.0085245, - -0.019171, - -0.036244, - -0.056747, - -0.031353, - 0.0084541, - -0.0038293, - 0.071749, - -0.043829, - 0.030757, - 0.017767, - 0.017427, - -0.032302, - -0.0075106, - 0.013748, - 0.02114, - 0.16131, - -0.025961, - 0.047454, - -0.0072886, - -0.035028, - -0.020048, - 0.056851, - -0.052328, - 0.12272, - -0.03821, - 0.10322, - 0.02025, - -0.0026082, - 0.090698, - 0.0063785, - -0.0095363, - 0.076918, - -0.033648, - -0.062786, - -0.016731, - 0.070821, - 0.084919, - 0.066102, - -0.11128, - -0.011219, - 0.010357, - -0.052752, - -0.019147, - 0.028025, - -0.016394, - -0.08788, - 0.025883, - -0.039448, - 0.083896, - 0.027263, - 0.026256, - 0.039508, - 0.049542, - 0.076601, - -0.017398, - 0.046654, - -0.01078, - 0.048358, - -0.005365, - 0.031604, - 0.028127, - -0.064619, - -0.010759, - -0.025176, - 0.036002, - 0.037154, - 0.00090151, - 0.092608, - -0.0078673, - -0.016433, - -0.051327, - -0.042229, - -0.0092565, - -0.021652, - -0.094344, - -0.052743, - -0.10708, - 0.14313, - -0.025435, - -0.0072504, - -0.076924, - -0.00083166, - 0.076822, - 0.024522, - 0.041226, - -0.0078692, - -0.053832, - 0.013121, - -0.089109, - 0.040777, - 0.11011, - -0.019881, - 0.022564, - -0.002885, - -0.030011, - -0.012794, - 0.032588, - -0.015603, - -0.010929, - 0.013547, - -0.045448, - 0.0010066, - -0.0042223, - 0.032645, - 0.11382, - 0.0045063, - -0.080192, - -0.04805, - -0.051204, - 0.10647, - 0.080717, - -0.010899, - -0.00011045, - 0.065144, - 0.023874, - 0.016026, - 0.033022, - -0.01645, - 0.011415, - -0.021274, - -0.10627, - -0.12562, - 0.038103, - 0.089917, - -0.0030934, - 0.061758, - -0.0076769, - -0.03839, - 0.052572, - -0.020103, - 0.10675, - 0.018707, - -0.0079122, - 0.024411, - -0.06493, - -0.043579, - -0.052915, - -0.023633, - -0.1318, - 0.039205, - 0.12398, - -0.02312, - 0.087582, - 0.061937, - 0.077016, - -0.031867, - -0.049442, - -0.071966, - 0.040673, - 0.070027, - -0.0048983, - 0.050574, - 0.013515, - -0.1266, - -0.0099609, - -0.030549, - 0.055839, - -0.028154, - 0.0064729, - 0.046266, - -0.036178, - 0.046137, - -0.063126, - 0.08478, - 0.033474, - 0.041555, - -0.0024249, - 0.015185, - 0.021552, - 0.0044435, - 0.032166, - -0.12485, - 0.11663, - -0.011659, - -0.0015509, - -0.026626, - 0.098492, - 0.20123, - -0.0084585, - 0.050954, - 0.072327, - 0.020759, - -0.057914, - 0.0061018, - -0.00043617, - -0.1646, - -0.065191, - 0.04131, - -0.0055685, - -0.0074555, - -0.069752, - -0.086835, - 0.039436, - -0.073385, - -0.020044, - -0.002117, - -0.038811, - -0.044781, - -0.054744, - -0.061266, - -0.10631, - 0.03367, - 0.0099477, - 0.020829, - 0.028739, - 0.0036449, - -0.0070921, - 0.0045014, - 0.063341, - -0.029257, - 0.025974, - 0.052498, - 0.10148, - -0.042133, - -0.017167, - -0.002576, - -0.042625, - -0.015966, - 0.030726, - -0.018729, - 0.014892, - 0.019777, - -0.013746, - -0.0059587, - 0.06123, - -0.097651, - -0.073639, - 0.066612, - -0.024119, - -0.008102, - 0.019866, - -0.031816, - 0.031311, - 0.071668, - 0.046061, - 0.031467, - -0.092482, - 0.04408, - -0.0053032, - -0.0071352, - 0.053084, - -0.055028, - 0.04567, - 0.040669, - 0.0020469, - -0.12845, - 0.041829, - 0.0087884, - 0.046991, - 0.035344, - -0.014755, - 0.014428, - -0.033319 - ], - "courts": [ - 0.0099948, - -0.13845, - 0.059082, - -0.0068864, - -0.053083, - -0.052411, - 0.025034, - -0.10313, - 0.067515, - 0.0134, - 0.089671, - -0.090617, - 0.021858, - 0.0038974, - -0.009907, - 0.094453, - 0.14588, - -0.0010051, - 0.096915, - 0.011072, - -0.036769, - -0.055591, - 0.093008, - 0.082619, - 0.014098, - 0.056369, - -0.0083562, - 0.02983, - 0.011704, - -0.018897, - -0.013973, - -0.057598, - -0.10553, - -0.023652, - 0.0057068, - 0.063921, - 0.051926, - -0.026805, - 0.023959, - 0.0047767, - -0.008631, - -0.091391, - -0.0040056, - 0.036877, - 0.029238, - -0.030873, - 0.02849, - 0.096703, - -0.045887, - 0.038656, - 0.038457, - 0.05363, - 0.045315, - 0.036697, - -0.11658, - 0.0068086, - 0.030189, - -0.0027852, - -0.024724, - -0.01894, - 0.027644, - 0.030995, - 0.088788, - -0.018858, - -0.012943, - -0.053439, - -0.00080012, - -0.098171, - -0.0026708, - 0.047053, - 0.047489, - -0.084545, - 0.064062, - -0.06474, - 0.01646, - -0.023769, - 0.0048055, - -0.026249, - -0.012753, - 0.018221, - -0.069951, - 0.06006, - 0.0014877, - 0.086712, - 0.0074199, - -0.013489, - 0.091339, - -0.099945, - -0.027395, - 0.065916, - -0.067601, - -0.024783, - -0.077506, - -0.011585, - 0.042888, - 0.086407, - -0.076847, - 0.0051213, - -0.0058908, - 0.0091527, - 0.058642, - -0.011204, - 0.021312, - -0.050872, - 0.074556, - -0.090695, - 0.063735, - -0.022714, - 0.0036526, - -0.0093225, - -0.017774, - 0.13125, - 0.084796, - 0.0001835, - 0.030145, - 0.0046782, - 0.056328, - -0.059839, - -0.053146, - 0.066819, - 0.021474, - -0.023273, - 0.075107, - 0.00052625, - 0.055576, - 0.025889, - -0.050063, - -0.09557, - -0.036268, - 0.16214, - -0.084039, - 0.18579, - 0.0055118, - 0.029642, - -0.033348, - -0.098415, - -0.036135, - 0.052257, - -0.015892, - -0.14056, - 0.058782, - -0.084942, - 0.0093468, - 0.03743, - -0.033989, - -0.028547, - 0.029733, - -0.0061038, - -0.027043, - -0.040265, - 0.077878, - 0.095645, - 0.052769, - -0.021709, - -0.012043, - -0.01913, - -0.034906, - -0.063926, - 0.039195, - 0.027893, - 0.055284, - 0.022414, - 0.045122, - 0.078607, - 0.035517, - 0.049913, - 0.084304, - 0.043129, - 0.041877, - -0.034797, - 0.037786, - 0.041137, - 0.076942, - -0.02499, - 0.0013714, - 0.041719, - -0.044058, - 0.039337, - -0.056593, - -0.045387, - 0.047843, - -0.060009, - -0.023183, - -0.06213, - -0.030145, - 0.032013, - -0.015157, - 0.097007, - 0.070567, - 0.05116, - -0.11231, - 0.093435, - -0.12972, - -0.04252, - -0.0049938, - -0.054306, - 0.0069519, - 0.028591, - -0.040792, - -0.0018327, - -0.17022, - 0.0043373, - 0.018202, - -0.005395, - -0.068933, - 0.040414, - 0.074187, - -0.018959, - 0.021275, - -0.041335, - 0.060128, - 0.019527, - 0.12684, - 0.046905, - -0.10271, - -0.028415, - 0.0028859, - -0.0066049, - -0.038609, - -0.070832, - 0.032036, - -0.028224, - -0.016533, - 0.10398, - 0.029817, - -0.0375, - -0.047458, - 0.024565, - -0.064868, - 0.005013, - 0.0063463, - -0.038333, - -0.043839, - 0.030661, - 0.023774, - 0.016733, - -0.061197, - 0.045932, - 0.082866, - -0.048595, - 0.025189, - -0.055074, - -0.042499, - 0.029306, - 0.05863, - 0.049813, - -0.017678, - -0.082784, - -0.0012453, - -0.039298, - -0.016493, - 0.0038032, - 0.014527, - -0.01402, - -0.017156, - 0.079657, - -0.043753, - 0.046185, - -0.11743, - 0.002234, - -0.038217, - 0.026995, - -0.0024281, - -0.029961, - -0.069569, - -0.05094, - 0.035381, - 0.028545, - -0.0064191, - -0.0075006, - -0.015518, - 0.072399, - -0.11564, - -0.01413, - 0.019964, - 0.011629, - -0.035343, - 0.14845, - -0.041171, - 0.014211, - -0.018856, - -0.029222, - -0.018094, - -0.0149, - 0.022292, - 0.072571, - -0.0515, - -0.13023, - -0.015081, - 0.080039, - -0.021726, - -0.096277, - 0.04862, - 0.028427, - 0.010944, - -0.087179, - -0.039984, - 0.016368, - 0.0035713, - 0.030611 - ], - "proclivities": [ - 0.003759, - -0.01265, - 0.0051511, - 0.01534, - -0.0093586, - 0.0046661, - -0.019658, - -0.060404, - 0.0055456, - 0.044904, - -0.011864, - -0.031608, - 0.015418, - 0.026836, - 0.0071742, - -0.013573, - 0.048335, - 0.00054097, - 0.035001, - 0.017756, - 0.032284, - 0.0090292, - 0.013549, - 0.038391, - -0.036638, - 0.0062973, - 0.015773, - 0.012793, - 0.029991, - 0.0021344, - -0.00004678, - -0.020075, - -0.012467, - -0.052043, - -0.009148, - 0.038014, - -0.012193, - 0.014066, - -0.00074961, - 0.0070602, - -0.029636, - -0.069709, - -0.0018337, - -0.016055, - 0.017652, - -0.033786, - 0.010497, - -0.015922, - -0.022967, - -0.070455, - 0.010547, - 0.029362, - 0.012375, - 0.024358, - -0.02741, - -0.0013115, - 0.012871, - 0.017793, - -0.021368, - -0.0066834, - 0.0074309, - -0.010255, - 0.11096, - -0.025524, - 0.039998, - -0.025979, - -0.010761, - 0.024875, - 0.029446, - -0.00086686, - 0.095213, - 0.0054579, - 0.00075823, - -0.0027529, - 0.020196, - 0.011722, - 0.017073, - -0.044895, - 0.015413, - -0.00071427, - -0.03218, - 0.026333, - 0.00024538, - 0.08038, - 0.015571, - -0.053546, - 0.015801, - 0.066145, - -0.015323, - 0.0043394, - 0.041041, - 0.04907, - -0.043671, - 0.040786, - 0.02211, - 0.023191, - -0.049683, - 0.00093585, - 0.0037565, - 0.054097, - 0.020801, - 0.027708, - -0.009402, - -0.0043123, - 0.021635, - -0.015977, - 0.033345, - -0.053141, - -0.0064673, - -0.0070322, - -0.046542, - 0.009209, - 0.016185, - -0.020218, - 0.0042999, - -0.030886, - 0.034207, - 0.042027, - -0.027062, - 0.0097483, - 0.05448, - 0.030334, - 0.029806, - -0.02903, - 0.12264, - -0.0052823, - 0.0041852, - -0.043772, - -0.013639, - 0.11716, - 0.024594, - 0.034395, - 0.036127, - 0.027317, - -0.034597, - -0.025287, - -0.030154, - 0.063757, - 0.037633, - 0.011259, - 0.0038579, - -0.022707, - -0.019118, - 0.046058, - 0.018943, - -0.0056572, - 0.016052, - 0.014403, - 0.025255, - 0.021506, - -0.013933, - 0.080673, - -0.0050649, - 0.0047849, - -0.0049615, - 0.016991, - 0.00053985, - 0.026999, - -0.0011767, - 0.023826, - 0.044466, - 0.032813, - -0.055016, - -0.054308, - -0.0065658, - -0.012383, - 0.016916, - -0.038047, - -0.057022, - -0.0035098, - -0.0071704, - 0.027256, - -0.033018, - -0.0028305, - -0.028121, - 0.020735, - 0.026537, - 0.039959, - -0.01252, - -0.053801, - 0.039411, - 0.0026727, - -0.027391, - -0.015646, - 0.0051855, - -0.047696, - 0.042982, - 0.070371, - -0.012668, - 0.0055789, - 0.036118, - 0.03865, - -0.063965, - 0.0022361, - -0.0087933, - 0.020579, - 0.017033, - 0.00792, - -0.038308, - 0.024694, - -0.097761, - 0.0048595, - 0.0016758, - -0.015855, - -0.0098113, - 0.02062, - 0.014221, - 0.021238, - -0.010645, - 0.012647, - 0.028026, - 0.044368, - 0.087375, - -0.036843, - 0.010238, - 0.0090134, - -0.067449, - -0.0030319, - -0.058161, - 0.017182, - -0.017087, - -0.031438, - -0.0018516, - 0.041107, - 0.041533, - -0.015395, - 0.044868, - 0.046595, - -0.013662, - -0.0033449, - -0.0046536, - 0.0064441, - -0.11154, - -0.028502, - 0.027223, - 0.023709, - -0.0000034621, - -0.0093361, - -0.021047, - 0.035704, - -0.027838, - -0.0087869, - 0.010999, - 0.0031557, - 0.014008, - 0.0017424, - -0.054875, - -0.080386, - -0.064984, - -0.0085812, - 0.0071534, - -0.019821, - -0.0287, - -0.026972, - 0.019916, - 0.001617, - 0.0034117, - 0.040104, - 0.021785, - 0.063654, - 0.04276, - -0.019334, - -0.043433, - -0.044113, - 0.0011282, - -0.0078801, - -0.022817, - 0.016176, - -0.013046, - 0.016931, - -0.014514, - 0.065918, - -0.053644, - -0.023302, - 0.11636, - -0.026887, - -0.0012241, - 0.02745, - -0.034101, - 0.0078477, - 0.027998, - 0.052044, - 0.066531, - -0.053541, - 0.037053, - 0.035217, - -0.026948, - -0.031286, - -0.011791, - 0.017048, - -0.012218, - 0.041742, - -0.03151, - 0.012632, - 0.038441, - 0.032234, - -0.00018957, - 0.018348, - -0.050051, - 0.010157 - ], - "cottage": [ - 0.057897, - -0.027807, - 0.0045126, - 0.0088478, - -0.049453, - -0.027362, - 0.027621, - -0.10121, - -0.068207, - -0.0037032, - 0.018073, - -0.088941, - -0.036719, - -0.094141, - -0.020898, - -0.0046175, - 0.13746, - -0.022862, - 0.015091, - -0.0029681, - -0.028001, - -0.07775, - 0.0065452, - 0.030596, - 0.036318, - -0.036533, - -0.018279, - 0.12398, - -0.007744, - 0.022024, - -0.0062807, - -0.056798, - 0.0016316, - -0.0070933, - 0.0075117, - 0.0038198, - 0.021566, - 0.02688, - 0.049407, - 0.060682, - -0.022607, - -0.15446, - -0.023496, - -0.024002, - -0.0039685, - -0.014989, - -0.044426, - -0.011079, - -0.084104, - 0.076216, - 0.03177, - 0.067793, - -0.016079, - 0.074843, - -0.10033, - -0.08449, - 0.046374, - -0.027757, - -0.067796, - -0.1113, - -0.021371, - 0.036336, - 0.11919, - 0.024225, - 0.077018, - 0.018986, - -0.062925, - -0.048413, - -0.14421, - 0.010186, - -0.0087834, - -0.044409, - 0.0040743, - -0.039144, - -0.061864, - -0.03483, - -0.036365, - -0.019387, - 0.0088423, - -0.029279, - -0.011412, - -0.036383, - 0.014075, - 0.027717, - -0.14347, - 0.015305, - 0.031994, - -0.040542, - -0.055456, - 0.0094743, - -0.059861, - 0.017593, - -0.11294, - 0.007618, - 0.023683, - 0.13407, - 0.01344, - 0.068089, - 0.059468, - 0.026479, - 0.0050895, - 0.073174, - 0.055369, - 0.042362, - 0.054049, - -0.10171, - 0.033013, - 0.072437, - -0.018271, - -0.026429, - -0.051687, - 0.084797, - 0.076263, - 0.10584, - -0.023225, - -0.041791, - -0.011256, - 0.0058066, - -0.01949, - -0.0058564, - -0.045732, - -0.019659, - -0.013955, - -0.064646, - 0.062555, - -0.005767, - -0.0109, - -0.046754, - -0.026462, - 0.060232, - 0.090008, - -0.020033, - 0.023077, - -0.038763, - -0.066463, - -0.079512, - 0.031386, - 0.040035, - -0.037867, - 0.011225, - -0.00078171, - 0.0004015, - 0.092407, - -0.0082604, - 0.014439, - -0.0076753, - 0.085392, - 0.038186, - 0.036206, - -0.06626, - -0.013422, - 0.044152, - 0.047173, - -0.0012567, - 0.078416, - 0.023719, - 0.042306, - 0.014539, - -0.013525, - 0.012988, - 0.023795, - -0.0093729, - -0.032206, - 0.048703, - -0.023633, - -0.046236, - 0.017908, - -0.018589, - -0.0007038, - 0.084309, - 0.028241, - -0.0011623, - -0.078788, - -0.021832, - 0.0044373, - 0.019641, - 0.011904, - 0.037884, - -0.024147, - 0.070213, - -0.049779, - -0.032314, - 0.0079968, - -0.049503, - -0.12454, - 0.0037972, - 0.015049, - 0.10941, - -0.027501, - -0.062423, - 0.0083348, - 0.039044, - -0.0075418, - 0.030543, - -0.015305, - -0.025833, - 0.069426, - 0.060774, - 0.019584, - 0.058553, - -0.13584, - 0.050727, - -0.055294, - -0.050251, - 0.09595, - -0.012998, - -0.01476, - -0.021409, - -0.069606, - -0.028783, - 0.11858, - -0.045399, - 0.015603, - 0.057978, - -0.015723, - 0.033709, - -0.077528, - 0.10426, - 0.079916, - -0.07464, - -0.022766, - -0.05846, - 0.033006, - 0.087248, - -0.053391, - -0.055901, - 0.018002, - 0.041092, - -0.019598, - 0.00046791, - 0.011069, - -0.020105, - -0.014494, - 0.047972, - 0.012546, - -0.046684, - 0.020876, - 0.0055062, - 0.04141, - 0.030681, - 0.055645, - 0.045357, - 0.022693, - -0.028692, - -0.0094978, - -0.0099705, - -0.012069, - 0.039424, - -0.01224, - 0.031913, - -0.040845, - -0.038452, - -0.042036, - -0.0067658, - -0.050614, - -0.062016, - -0.064164, - 0.013184, - 0.0051422, - 0.045366, - 0.022649, - -0.01702, - 0.031626, - -0.0084687, - 0.030503, - -0.073483, - -0.0017503, - -0.012623, - 0.01545, - -0.011642, - -0.078317, - 0.05246, - -0.076669, - -0.029225, - 0.042092, - -0.0065593, - 0.12112, - -0.0041003, - 0.03655, - 0.041138, - 0.099531, - 0.0032421, - 0.018724, - 0.0031781, - -0.037946, - 0.095953, - 0.041638, - -0.022685, - -0.046774, - 0.051523, - -0.000034422, - 0.046657, - 0.00031776, - 0.0019326, - -0.076349, - 0.033797, - 0.042371, - 0.099589, - 0.022827, - -0.010137 - ], - "technologies": [ - -0.036701, - -0.009877, - -0.010435, - 0.0093448, - -0.011502, - 0.023718, - 0.046673, - -0.058678, - 0.0089993, - 0.024534, - 0.018614, - -0.019734, - 0.013658, - -0.0088513, - 0.021158, - 0.029769, - 0.089432, - 0.02166, - 0.046078, - 0.0097515, - -0.011158, - -0.0029214, - 0.033331, - 0.041691, - -0.02023, - -0.0064452, - -0.0081042, - -0.011722, - 0.077972, - 0.00010317, - 0.002873, - -0.04563, - 0.001301, - -0.020121, - 0.044578, - -0.0073857, - 0.010689, - 0.0080284, - 0.042837, - 0.0066876, - -0.053828, - -0.10546, - -0.0057341, - 0.0071273, - -0.0088439, - -0.058945, - 0.0039306, - 0.016629, - 0.0026051, - -0.022313, - -0.049403, - 0.002152, - -0.00002559, - 0.01616, - -0.057555, - 0.047038, - 0.048057, - 0.0092347, - 0.016337, - 0.028804, - 0.048132, - 0.014744, - 0.13784, - -0.0045943, - 0.04664, - 0.0058301, - -0.0099849, - -0.025131, - 0.0032266, - -0.017784, - 0.017961, - 0.017191, - -0.015149, - -0.0049033, - -0.017178, - 0.032003, - 0.00040441, - -0.026359, - 0.0065342, - -0.025198, - 0.00055527, - -0.021378, - -0.028203, - 0.041484, - 0.026564, - -0.0037635, - -0.046054, - -0.0047759, - -0.030652, - 0.0086623, - 0.015171, - -0.014029, - -0.073683, - 0.024708, - -0.021806, - 0.039206, - 0.038067, - -0.060548, - -0.048987, - 0.024667, - -0.0058137, - -0.019471, - 0.0061228, - -0.022254, - -0.016354, - -0.029561, - 0.017619, - 0.022873, - 0.046072, - -0.033319, - -0.013754, - 0.025382, - 0.045228, - 0.017493, - -0.013661, - -0.020324, - -0.039289, - 0.016622, - -0.027911, - 0.031842, - -0.076064, - -0.01067, - 0.003124, - -0.023854, - 0.085804, - 0.01988, - -0.060817, - -0.010874, - -0.014421, - 0.10314, - 0.0087243, - 0.026378, - -0.014696, - -0.040223, - 0.025138, - -0.017868, - 0.036393, - 0.023074, - -0.029445, - 0.058213, - -0.0093367, - 0.013165, - 0.0050513, - 0.039801, - -0.0086276, - -0.00057742, - -0.03297, - 0.018843, - -0.0038802, - 0.015909, - 0.016793, - 0.057061, - 0.025867, - -0.068396, - 0.014101, - 0.020376, - 0.024498, - 0.019108, - 0.016177, - 0.012986, - 0.032085, - -0.0020869, - 0.0066109, - 0.012364, - 0.012957, - -0.02162, - -0.014931, - -0.028737, - 0.02174, - -0.041372, - 0.02586, - 0.03814, - -0.022788, - -0.0040997, - -0.014235, - 0.034824, - -0.033, - 0.027034, - -0.066228, - 0.02312, - 0.050612, - 0.023262, - -0.0072352, - -0.00085554, - -0.035211, - -0.030088, - -0.01505, - 0.078412, - -0.025809, - 0.033306, - -0.0051377, - 0.067871, - -0.056197, - -0.0016398, - 0.00088793, - -0.0046584, - -0.028014, - -0.0054565, - 0.0033903, - 0.011995, - -0.099891, - 0.018524, - 0.016968, - 0.0078567, - 0.0026593, - 0.005707, - 0.0062111, - 0.048328, - -0.013695, - -0.016905, - 0.055199, - 0.032021, - 0.059599, - 0.0041946, - 0.015331, - 0.036515, - 0.024459, - -0.02527, - -0.072932, - -0.021075, - -0.02629, - 0.011683, - 0.022166, - 0.065456, - 0.03614, - -0.016366, - 0.024536, - 0.024074, - -0.037096, - 0.017439, - -0.0026594, - -0.0088877, - -0.07861, - -0.049556, - 0.039375, - 0.026703, - 0.013129, - 0.0013424, - 0.012109, - 0.010936, - -0.045907, - 0.0051169, - 0.027509, - -0.0024689, - 0.021963, - 0.020237, - -0.023703, - 0.0074248, - 0.025124, - 0.032463, - 0.0079207, - -0.0016607, - -0.043534, - -0.035326, - -0.036003, - 0.065069, - 0.015128, - 0.0075655, - 0.01038, - 0.032776, - 0.0059611, - 0.050782, - -0.039157, - -0.013024, - 0.02653, - -0.030974, - 0.046349, - -0.005237, - 0.0038872, - 0.013168, - -0.0081579, - 0.058203, - -0.071605, - -0.040941, - 0.0022499, - -0.017725, - 0.023759, - 0.065619, - -0.039949, - -0.061861, - 0.024263, - -0.0063622, - -0.010605, - -0.0016325, - -0.0071593, - -0.034466, - -0.057107, - 0.032387, - 0.0066045, - -0.0040004, - -0.028492, - 0.0015724, - -0.040576, - -0.053974, - 0.0021868, - -0.0057093, - 0.0055316, - -0.0080018, - 0.0046341, - -0.020204 - ], - "marital": [ - 0.0022925, - -0.021906, - 0.037561, - 0.018057, - 0.013942, - 0.022558, - 0.0063978, - -0.06222, - 0.097103, - 0.071272, - -0.022817, - -0.08248, - 0.037065, - -0.034982, - -0.071069, - 0.045587, - 0.14192, - -0.063046, - -0.0023971, - 0.072801, - -0.015704, - -0.0055289, - 0.018541, - 0.10922, - 0.018225, - 0.0012986, - -0.05719, - 0.0049625, - 0.018227, - -0.064151, - -0.037815, - 0.059147, - -0.077923, - -0.063555, - 0.014142, - 0.073509, - -0.097198, - -0.034932, - -0.063218, - 0.089912, - 0.043412, - -0.11897, - -0.00039671, - 0.026714, - -0.032214, - -0.00065874, - 0.0047154, - -0.049219, - -0.054275, - -0.0090949, - -0.038569, - -0.029697, - -0.0034137, - 0.044233, - 0.042321, - -0.070281, - -0.033045, - -0.080551, - -0.021441, - -0.04427, - 0.010633, - -0.0074107, - 0.080262, - -0.02144, - 0.072143, - -0.024274, - 0.0067036, - 0.043883, - -0.041803, - -0.042324, - 0.050601, - 0.057197, - -0.0030389, - -0.076144, - 0.039509, - 0.0030222, - -0.023066, - -0.079347, - 0.039027, - -0.010181, - -0.0086901, - 0.031019, - -0.037694, - 0.021547, - -0.084977, - 0.012399, - 0.015636, - -0.021447, - -0.10536, - -0.01275, - 0.040782, - 0.012093, - -0.10189, - -0.0044497, - 0.039027, - 0.00051107, - -0.081887, - 0.053, - 0.061011, - 0.04283, - -0.0285, - 0.0097622, - 0.0058683, - -0.1354, - 0.11473, - -0.09226, - 0.02961, - 0.07225, - -0.017715, - -0.1214, - 0.034854, - 0.070047, - 0.011545, - -0.0038826, - -0.0080696, - -0.03225, - -0.01635, - 0.031354, - -0.018264, - 0.030465, - 0.092711, - 0.049651, - 0.12201, - 0.025354, - 0.11562, - 0.037213, - 0.063623, - -0.0623, - -0.049803, - 0.10629, - 0.058144, - -0.11644, - -0.026192, - -0.019954, - -0.085644, - 0.033468, - -0.023173, - -0.012897, - 0.045655, - -0.069279, - 0.041468, - -0.0174, - -0.048619, - 0.084718, - 0.0020358, - 0.0018694, - 0.021662, - 0.027888, - 0.0083637, - 0.030262, - 0.025465, - 0.16109, - 0.040246, - -0.002732, - 0.085324, - -0.008947, - 0.031227, - 0.024076, - 0.10403, - -0.016153, - 0.038751, - 0.076181, - -0.17363, - 0.0030132, - -0.040918, - 0.031377, - 0.020745, - 0.05674, - -0.0055778, - -0.0053431, - 0.009121, - -0.033602, - 0.00525, - -0.0011072, - -0.049992, - 0.096087, - 0.010178, - 0.031432, - -0.04522, - -0.04656, - 0.048319, - -0.0019839, - 0.0062697, - -0.040218, - 0.011664, - -0.0074377, - 0.0073519, - 0.18913, - 0.084815, - 0.076892, - -0.027307, - -0.040095, - 0.11981, - -0.045735, - -0.046872, - 0.040311, - -0.0041607, - 0.03165, - -0.052131, - -0.043967, - -0.18527, - -0.0087927, - -0.024391, - -0.040694, - 0.024954, - -0.042127, - 0.037023, - -0.063413, - 0.025646, - 0.040464, - 0.15934, - 0.032704, - -0.031892, - 0.050575, - 0.076146, - 0.017387, - -0.065499, - -0.014737, - -0.012002, - -0.071015, - 0.058975, - -0.044457, - -0.048348, - 0.060862, - -0.0089512, - -0.10957, - 0.050238, - 0.072731, - -0.012231, - -0.046242, - 0.040363, - -0.066157, - -0.11551, - -0.07151, - -0.0019128, - 0.017518, - 0.029544, - -0.032071, - -0.040702, - -0.0076844, - -0.0012886, - -0.02658, - -0.048171, - -0.022895, - -0.1632, - 0.0020177, - -0.02875, - 0.0079715, - 0.057423, - 0.030387, - -0.010017, - -0.0093202, - -0.029487, - 0.0054285, - -0.032147, - -0.051718, - 0.05703, - 0.046969, - 0.086113, - -0.018843, - 0.0078443, - 0.0053944, - 0.071438, - -0.02467, - -0.005013, - -0.047852, - -0.018796, - 0.060393, - -0.033246, - 0.042769, - -0.013097, - 0.060854, - -0.12447, - -0.032172, - 0.020662, - -0.070801, - -0.024136, - 0.035179, - 0.010489, - 0.013286, - 0.21142, - -0.016168, - 0.018852, - -0.01212, - 0.019882, - 0.08998, - -0.046801, - 0.035667, - -0.10083, - -0.015693, - 0.036874, - 0.0099721, - -0.073863, - 0.01411, - -0.028345, - 0.068143, - 0.022206, - 0.043727, - 0.034107, - 0.028611 - ], - "eat": [ - -0.083439, - 0.01886, - -0.14324, - -0.027124, - 0.025546, - -0.031004, - -0.056285, - -0.13022, - 0.031104, - 0.05654, - -0.13316, - 0.029313, - -0.012555, - -0.060731, - 0.0094017, - -0.048328, - 0.083299, - -0.04815, - 0.093663, - 0.019255, - 0.0039706, - 0.10689, - -0.096107, - 0.066693, - -0.12959, - 0.057444, - 0.036731, - 0.048216, - -0.12073, - -0.023126, - 0.044392, - -0.006037, - 0.005098, - 0.17862, - -0.005135, - -0.18753, - 0.036845, - 0.033786, - 0.12899, - 0.069624, - -0.0064921, - -0.093084, - -0.046839, - -0.0085526, - 0.062415, - -0.042916, - 0.028321, - -0.090014, - 0.022934, - 0.079792, - 0.052971, - 0.13631, - 0.16028, - -0.20212, - -0.25604, - -0.029608, - -0.029119, - -0.045756, - -0.081202, - -0.19457, - -0.074323, - -0.058095, - 0.20561, - 0.11344, - -0.063082, - 0.098468, - 0.09342, - 0.039708, - -0.062758, - -0.14778, - 0.052707, - 0.014602, - 0.23983, - 0.0015558, - -0.096769, - -0.056438, - 0.026055, - 0.024554, - -0.13364, - 0.037983, - -0.1004, - -0.14687, - 0.10952, - 0.13993, - -0.010392, - 0.042336, - -0.036285, - -0.067838, - 0.045401, - 0.092332, - -0.05244, - 0.031572, - -0.16093, - -0.0036528, - 0.088765, - -0.10807, - 0.056487, - 0.11275, - 0.15291, - -0.0093841, - 0.0091419, - 0.043192, - 0.11284, - -0.0091523, - 0.023827, - -0.21188, - -0.14928, - 0.069314, - 0.014158, - 0.051568, - -0.052661, - 0.085717, - 0.10647, - 0.15935, - 0.099229, - 0.019158, - -0.071303, - 0.073804, - -0.025314, - -0.017557, - -0.065871, - 0.12298, - -0.11768, - -0.19829, - 0.11546, - -0.024273, - 0.027176, - -0.045025, - 0.031848, - 0.13818, - -0.025531, - 0.021295, - 0.14121, - -0.062173, - 0.032071, - 0.032807, - -0.12892, - 0.12205, - 0.033596, - 0.1071, - 0.14243, - -0.11787, - -0.0049706, - -0.001806, - 0.028257, - -0.023672, - 0.10774, - 0.026331, - -0.00066196, - -0.048862, - -0.053211, - 0.11499, - -0.10104, - 0.010421, - 0.040535, - -0.11329, - -0.08081, - 0.046962, - -0.0019086, - -0.13982, - 0.11657, - 0.054161, - -0.07307, - 0.059058, - 0.045135, - 0.072546, - -0.071573, - -0.0032441, - 0.077648, - 0.028846, - 0.0069723, - -0.16817, - -0.027895, - 0.0085465, - 0.0034319, - 0.16193, - 0.025843, - 0.011752, - 0.0055555, - -0.11078, - 0.069948, - -0.018644, - 0.018885, - -0.047329, - -0.01709, - -0.16509, - -0.038115, - 0.26712, - -0.028623, - -0.065963, - -0.0019986, - -0.050731, - -0.19811, - 0.037102, - 0.042254, - 0.010125, - -0.023492, - -0.050653, - -0.0096712, - 0.010663, - -0.21853, - 0.11573, - 0.014475, - -0.17414, - -0.037325, - -0.019951, - 0.037947, - 0.0047732, - 0.037775, - -0.05144, - -0.014193, - -0.070149, - 0.091836, - -0.066498, - 0.053739, - -0.0036553, - 0.13397, - 0.085928, - -0.062385, - -0.0053554, - -0.033602, - 0.041853, - -0.064195, - 0.17157, - 0.020381, - 0.041708, - -0.040582, - 0.13899, - -0.084727, - 0.03109, - -0.11433, - -0.11798, - -0.1249, - -0.0030929, - -0.061812, - 0.017637, - -0.017636, - 0.025498, - 0.11071, - -0.08005, - 0.29129, - -0.044545, - -0.01112, - -0.082594, - -0.079828, - 0.18523, - 0.043189, - -0.032565, - 0.019704, - -0.12808, - -0.051412, - -0.020831, - -0.15223, - -0.037862, - 0.0031515, - -0.027177, - -0.024387, - -0.050473, - 0.012387, - 0.063867, - 0.0618, - 0.045006, - -0.028742, - -0.13403, - 0.12216, - 0.15098, - 0.030661, - -0.046464, - -0.032671, - 0.083112, - -0.020473, - 0.1458, - -0.1688, - -0.1295, - -0.073079, - -0.024101, - 0.00013205, - -0.1002, - 0.06598, - -0.056845, - -0.032973, - 0.099866, - 0.018391, - -0.033392, - -0.067662, - 0.11461, - 0.044628, - -0.022102, - 0.10189, - -0.0052173, - 0.000015713, - 0.060216, - -0.11323, - -0.11866, - 0.042327, - -0.089578, - 0.080274, - 0.087241, - -0.091638, - 0.059404 - ], - "football": [ - 0.058532, - -0.085527, - 0.02323, - -0.010487, - -0.018384, - -0.064328, - -0.034776, - -0.098254, - 0.065205, - 0.015438, - -0.021622, - -0.032242, - 0.00053112, - 0.028751, - 0.040839, - 0.026252, - 0.10049, - -0.028934, - 0.014882, - 0.064043, - 0.04343, - -0.058866, - -0.02185, - 0.053267, - 0.019245, - -0.038498, - 0.048145, - -0.038169, - -0.004632, - 0.019294, - 0.026702, - -0.024392, - 0.04582, - -0.034536, - 0.067023, - 0.015942, - 0.06979, - 0.038688, - 0.059236, - -0.0085758, - 0.016726, - -0.10075, - 0.028967, - -0.013723, - 0.0044808, - 0.0018805, - 0.044377, - -0.022174, - -0.0074133, - 0.022403, - 0.018248, - -0.024824, - 0.096224, - -0.021429, - -0.044948, - -0.036732, - 0.017776, - -0.036512, - -0.080833, - -0.014568, - 0.0088861, - 0.013744, - 0.091526, - 0.036812, - 0.016064, - -0.017971, - 0.017649, - -0.0053303, - 0.091757, - -0.019509, - -0.0022428, - -0.054232, - 0.069703, - 0.024405, - 0.051966, - 0.029745, - -0.023697, - 0.0094626, - -0.016713, - -0.021669, - 0.012543, - 0.0078249, - -0.082679, - 0.077684, - -0.016798, - -0.045898, - -0.045522, - -0.038018, - -0.00929, - -0.01834, - 0.0074598, - 0.052851, - -0.09948, - 0.031979, - 0.071782, - 0.093544, - -0.09085, - 0.0045332, - 0.05761, - -0.010593, - 0.033059, - 0.064369, - -0.027777, - -0.038973, - -0.00034463, - -0.089721, - -0.095691, - 0.030407, - -0.0086924, - -0.0017797, - -0.07405, - 0.054295, - 0.036971, - 0.02696, - 0.094131, - 0.0069541, - 0.032761, - 0.040161, - -0.035092, - -0.016506, - -0.0053062, - 0.00026965, - 0.023519, - -0.035457, - 0.066072, - -0.059962, - -0.089305, - -0.079914, - -0.072069, - 0.082448, - -0.031376, - 0.0059114, - 0.0034601, - -0.022223, - -0.028367, - -0.02823, - 0.037248, - 0.008258, - 0.0026219, - -0.037718, - 0.037937, - 0.0050504, - 0.050936, - 0.01098, - -0.027973, - 0.027611, - -0.0099279, - -0.025056, - -0.043643, - -0.011045, - 0.04309, - 0.086295, - -0.013182, - -0.05354, - -0.048027, - -0.035215, - 0.042242, - 0.051723, - 0.023902, - -0.017094, - 0.01576, - -0.025584, - -0.055808, - 0.045019, - -0.0033113, - -0.079113, - 0.084454, - 0.063805, - 0.036362, - -0.0765, - 0.041936, - 0.015907, - -0.00811, - 0.04046, - 0.065587, - 0.042446, - -0.037699, - 0.041823, - 0.009194, - -0.082828, - 0.0091688, - -0.0036356, - -0.0073101, - -0.035222, - 0.026012, - -0.01981, - -0.0074731, - 0.091939, - 0.069368, - -0.034106, - 0.044177, - 0.058813, - -0.0088092, - -0.042818, - -0.0051595, - -0.04186, - -0.038146, - -0.043686, - -0.0018149, - -0.015055, - -0.15473, - 0.060018, - -0.0019892, - -0.067932, - -0.049029, - -0.010264, - 0.012632, - -0.044985, - -0.01714, - -0.0081694, - 0.14591, - -0.012625, - -0.0053804, - 0.051089, - -0.044548, - -0.054579, - -0.002504, - -0.0058113, - 0.004558, - -0.042532, - -0.019446, - -0.0096377, - -0.028395, - 0.07507, - -0.041109, - -0.043986, - -0.0045396, - 0.07714, - -0.013278, - 0.0044386, - 0.019744, - -0.04057, - -0.040547, - 0.030963, - -0.043911, - 0.025056, - -0.050234, - 0.017245, - -0.01788, - -0.0020924, - 0.031058, - -0.0092086, - 0.057931, - 0.0076923, - -0.021425, - -0.040911, - -0.04508, - -0.011174, - -0.056344, - -0.0084693, - 0.069499, - 0.048943, - -0.021396, - -0.00025117, - -0.0015475, - 0.014114, - -0.064517, - 0.0036905, - 0.024185, - 0.031787, - -0.010319, - -0.042072, - 0.065583, - 0.0055161, - 0.054174, - 0.0081388, - -0.098072, - 0.0072823, - 0.0099826, - 0.023899, - 0.0048089, - 0.063006, - -0.10972, - -0.001381, - -0.035821, - -0.060273, - 0.044477, - -0.0104, - 0.0046208, - -0.01735, - 0.090841, - 0.0212, - -0.0015332, - -0.0646, - 0.020489, - -0.078535, - 0.044309, - -0.02256, - -0.040305, - 0.003315, - 0.10662, - -0.016856, - -0.038417, - 0.013667, - 0.021911, - -0.026912, - -0.037163, - 0.016879, - 0.091704, - -0.034466 - ], - "proverbs": [ - -0.015384, - -0.061576, - 0.036895, - -0.038326, - -0.0033477, - 0.053715, - -0.041178, - -0.098661, - 0.030034, - 0.060234, - 0.065235, - -0.066594, - 0.029792, - -0.045453, - 0.044634, - -0.14872, - 0.002692, - -0.010998, - 0.027642, - 0.087628, - -0.065182, - 0.051577, - 0.020713, - 0.055615, - 0.057929, - 0.083632, - -0.0094123, - 0.012061, - 0.093784, - -0.099166, - 0.090407, - -0.065001, - 0.067963, - -0.038625, - 0.10652, - -0.008313, - 0.051889, - 0.049214, - 0.057396, - -0.026676, - 0.018322, - -0.071946, - -0.017565, - 0.078595, - 0.056778, - 0.026449, - -0.0069365, - -0.0091467, - 0.092499, - -0.054678, - -0.078063, - -0.006122, - -0.0028457, - -0.043028, - -0.031013, - 0.0095986, - 0.017422, - 0.026839, - -0.029509, - -0.018288, - -0.097935, - -0.050858, - 0.12582, - -0.0026476, - -0.0092639, - 0.02542, - 0.095791, - 0.17754, - 0.058767, - 0.010527, - 0.023826, - 0.022338, - 0.023558, - -0.085509, - 0.067198, - -0.018594, - 0.024187, - -0.084205, - -0.048801, - -0.035694, - 0.0074332, - -0.039177, - 0.017131, - 0.042555, - 0.020869, - -0.13585, - -0.015303, - -0.01655, - -0.062398, - 0.037762, - -0.018092, - -0.048995, - -0.067377, - -0.02571, - 0.045619, - 0.0014084, - 0.003474, - 0.098086, - 0.074253, - 0.040664, - 0.022745, - -0.061526, - -0.057398, - -0.03262, - 0.03053, - -0.02675, - -0.0057665, - 0.018501, - -0.011441, - 0.056624, - -0.078474, - 0.12234, - 0.073197, - -0.0036614, - -0.0074478, - 0.024161, - -0.025215, - 0.011529, - -0.026173, - -0.03283, - -0.027158, - -0.0042586, - 0.012558, - -0.12324, - 0.13454, - 0.085261, - -0.095377, - -0.0318, - 0.042409, - 0.13294, - -0.073787, - 0.14253, - -0.11085, - 0.0095246, - 0.028633, - 0.016889, - 0.043111, - 0.094003, - 0.045972, - 0.013532, - 0.039351, - -0.069254, - -0.049267, - 0.064825, - 0.025195, - -0.17598, - 0.0050965, - 0.060271, - -0.063438, - -0.099668, - -0.0022944, - 0.053627, - -0.052964, - -0.012343, - 0.019242, - -0.0029799, - -0.044971, - -0.014606, - 0.0311, - 0.13912, - 0.008002, - 0.082628, - -0.015753, - 0.075266, - 0.017338, - -0.1244, - 0.071323, - -0.0015284, - -0.022654, - 0.044078, - -0.030867, - -0.086791, - 0.0080659, - 0.012584, - -0.067501, - 0.031011, - 0.0018997, - 0.054173, - -0.0044948, - 0.015791, - 0.062947, - 0.0064354, - -0.012472, - -0.073401, - -0.0017091, - -0.010275, - 0.054713, - 0.12678, - 0.026549, - -0.018112, - 0.032854, - 0.092766, - -0.12199, - -0.056188, - -0.04511, - 0.014797, - -0.014127, - 0.015153, - 0.01477, - 0.0031567, - -0.15089, - -0.005827, - 0.026812, - 0.016866, - 0.046029, - 0.014098, - 0.024536, - -0.070666, - 0.050719, - -0.038811, - 0.083399, - 0.058352, - 0.0046921, - -0.0060782, - 0.026532, - -0.03491, - 0.0063179, - 0.012042, - -0.083512, - 0.042367, - 0.044696, - -0.034653, - 0.05765, - 0.092195, - 0.071313, - -0.01747, - 0.027317, - 0.043413, - -0.035829, - -0.029056, - 0.050026, - -0.0063163, - -0.10779, - 0.016807, - -0.016739, - 0.043108, - -0.023219, - -0.031853, - 0.035861, - -0.046755, - 0.018526, - 0.046101, - -0.030092, - -0.0098765, - -0.021389, - 0.041548, - -0.0039613, - -0.040419, - 0.010191, - 0.010025, - 0.050344, - 0.015215, - 0.02154, - -0.010769, - -0.017926, - -0.012939, - -0.029219, - -0.00079191, - 0.040602, - 0.029634, - 0.0080876, - -0.059826, - -0.030011, - -0.026494, - 0.066205, - 0.0012414, - 0.067365, - -0.082823, - -0.0084239, - -0.050997, - 0.012363, - 0.071219, - -0.0057306, - -0.032558, - -0.062638, - 0.012593, - 0.047739, - -0.060918, - 0.0025205, - -0.064485, - 0.017903, - -0.015701, - -0.04439, - -0.10781, - 0.014849, - 0.065986, - -0.031909, - -0.013884, - -0.040326, - 0.026171, - 0.036506, - -0.012682, - 0.032047, - -0.026734, - 0.016499, - 0.03273, - 0.15444, - -0.026174, - 0.054733, - -0.035232 - ], - "storied": [ - -0.01366, - -0.15747, - 0.072493, - 0.066635, - -0.01633, - -0.064301, - -0.02608, - -0.10137, - -0.0026528, - 0.054224, - -0.024748, - -0.065516, - 0.0088994, - 0.074669, - -0.014303, - 0.016038, - 0.026576, - -0.044327, - 0.078703, - -0.027601, - 0.026685, - 0.031885, - -0.046281, - 0.079016, - 0.00094524, - -0.017604, - 0.063361, - 0.024433, - 0.10803, - 0.016861, - -0.035451, - -0.051775, - -0.00092875, - -0.037773, - 0.014198, - 0.0031305, - -0.01387, - 0.081979, - -0.028351, - 0.011763, - 0.028667, - -0.053451, - 0.068697, - 0.060905, - 0.017318, - 0.022758, - 0.011741, - 0.0017742, - 0.03584, - -0.052287, - 0.0035178, - 0.055168, - -0.045913, - 0.032438, - -0.11185, - -0.0035465, - 0.026439, - -0.016022, - -0.051943, - -0.02172, - -0.017852, - 0.009743, - 0.32766, - -0.088698, - 0.082865, - 0.016749, - -0.029383, - 0.063532, - 0.015006, - 0.013774, - 0.0091737, - 0.010086, - 0.010293, - 0.020675, - 0.030695, - 0.023113, - -0.026627, - -0.018576, - 0.035919, - -0.012651, - 0.067309, - -0.015464, - -0.028407, - 0.034755, - -0.073827, - -0.031768, - -0.0071728, - -0.064589, - -0.004363, - -0.00029391, - 0.065619, - 0.035408, - -0.089107, - -0.039557, - 0.066973, - 0.070025, - -0.03043, - -0.025894, - -0.0046704, - 0.017107, - 0.0017265, - -0.010694, - 0.0091739, - 0.018783, - 0.009939, - -0.10035, - -0.029707, - 0.0080466, - 0.091619, - 0.082581, - 0.0091576, - 0.0077404, - 0.0037614, - 0.048854, - -0.027913, - 0.059161, - -0.0054615, - 0.067057, - -0.073434, - 0.0092372, - -0.00080062, - -0.080845, - 0.035319, - 0.031813, - 0.031968, - 0.063774, - 0.030691, - -0.048436, - 0.047213, - 0.073932, - 0.029565, - -0.0022999, - -0.017786, - -0.048656, - 0.030659, - -0.084449, - -0.014756, - 0.051267, - -0.051465, - -0.068435, - -0.019827, - 0.010597, - 0.00081971, - 0.046658, - 0.02914, - -0.044849, - 0.048651, - 0.045593, - 0.00078322, - -0.060287, - 0.0089976, - 0.072611, - 0.061784, - -0.064665, - 0.030118, - -0.014897, - 0.036003, - 0.065004, - 0.058771, - -0.033818, - 0.059541, - 0.059852, - -0.013336, - 0.047915, - -0.010533, - 0.026726, - 0.0087251, - -0.052278, - -0.006432, - 0.022199, - 0.073466, - -0.041834, - -0.013389, - 0.022398, - 0.032069, - 0.016364, - 0.026612, - 0.053343, - -0.098787, - 0.032039, - -0.035883, - -0.0029812, - -0.0047916, - -0.0058656, - -0.033426, - 0.0023489, - 0.022763, - 0.094982, - 0.058366, - 0.016572, - -0.014031, - 0.050076, - -0.038022, - 0.050717, - -0.052772, - 0.022042, - 0.017921, - 0.0057608, - -0.019086, - -0.016509, - -0.081081, - 0.074258, - -0.061344, - -0.036393, - 0.024867, - -0.073888, - -0.016649, - 0.016068, - 0.037298, - -0.022059, - 0.084897, - 0.010236, - 0.0053741, - 0.009187, - -0.022132, - -0.020983, - -0.0079857, - 0.015232, - 0.0008496, - -0.0014735, - -0.025242, - 0.025821, - 0.0086529, - 0.097001, - -0.086509, - -0.0046441, - 0.096297, - 0.082535, - -0.076237, - -0.070704, - 0.031709, - -0.032601, - -0.020285, - 0.079918, - 0.051577, - 0.004382, - -0.035649, - 0.0068089, - 0.025535, - 0.068916, - 0.089275, - -0.021732, - 0.073743, - 0.028406, - -0.14885, - 0.0054851, - 0.0024305, - 0.0059894, - -0.015885, - -0.0093609, - -0.053532, - -0.027975, - 0.06752, - 0.056849, - 0.019363, - 0.10638, - -0.095057, - 0.066748, - 0.060162, - 0.048974, - 0.0044013, - -0.0013114, - 0.018794, - 0.00051669, - -0.026165, - -0.0077141, - 0.020955, - -0.074117, - -0.00026336, - -0.084578, - 0.025928, - 0.080805, - -0.15694, - -0.035034, - 0.074331, - -0.010759, - -0.044705, - -0.029145, - -0.0078298, - 0.018914, - 0.12705, - -0.012548, - -0.007129, - -0.032514, - 0.0017507, - -0.0029675, - -0.012231, - -0.073339, - -0.097913, - 0.010022, - 0.022643, - 0.054055, - 0.0371, - -0.044566, - 0.00067636, - 0.020119, - 0.050147, - 0.036474, - 0.0032024, - 0.035791 - ], - "reproductive": [ - -0.0099414, - -0.029516, - 0.0099239, - -0.020145, - -0.018356, - -0.022821, - -0.054518, - -0.049307, - 0.10579, - -0.0070722, - 0.027104, - -0.038312, - 0.025151, - -0.0029533, - -0.031776, - -0.029498, - 0.07038, - 0.0099861, - -0.0089811, - 0.041662, - 0.039662, - 0.027773, - 0.022994, - 0.059678, - -0.050434, - -0.03304, - -0.017235, - -0.006447, - 0.028229, - 0.0078681, - 0.0024323, - -0.013455, - 0.0028834, - -0.056721, - 0.018153, - -0.0013902, - -0.0034156, - -0.046566, - 0.022473, - 0.054792, - -0.004137, - -0.077878, - -0.0065411, - -0.048118, - 0.043894, - -0.032577, - -0.028057, - -0.030783, - -0.015454, - -0.0048964, - -0.012085, - 0.041747, - -0.0037177, - -0.014902, - 0.0031748, - 0.012502, - -0.0082054, - 0.0016843, - -0.0069205, - 0.032959, - -0.027303, - 0.00020409, - 0.094199, - -0.020252, - 0.063911, - 0.019698, - 0.033106, - -0.0033545, - -0.016988, - -0.017587, - 0.0083186, - 0.061819, - 0.037572, - 0.0158, - -0.017983, - 0.037108, - -0.03654, - -0.00025383, - -0.032404, - 0.034066, - -0.009643, - 0.039172, - -0.065315, - 0.013586, - 0.0043026, - 0.017171, - 0.029878, - 0.01962, - -0.058909, - 0.036853, - 0.0073786, - 0.0038416, - -0.081967, - -0.0042569, - 0.0083661, - 0.018292, - 0.01229, - 0.01964, - 0.0010841, - 0.027985, - -0.04627, - -0.012608, - -0.0070612, - 0.04929, - 0.053461, - -0.036615, - 0.014463, - -0.028539, - -0.012666, - -0.035612, - 0.008515, - 0.047529, - 0.039982, - -0.018848, - 0.018572, - 0.053835, - 0.056083, - 0.024648, - 0.0071498, - 0.047664, - -0.0071948, - 0.058296, - 0.061273, - 0.054916, - 0.058082, - 0.032335, - 0.036533, - -0.10146, - 0.035847, - 0.050611, - 0.0097497, - -0.053197, - 0.025638, - -0.017718, - -0.032121, - -0.036891, - -0.048202, - 0.0043237, - -0.017473, - 0.036713, - 0.019366, - 0.039586, - 0.017344, - 0.075943, - 0.0075589, - -0.0049922, - -0.006882, - 0.031727, - -0.013597, - -0.0052284, - 0.053669, - 0.078414, - 0.0049968, - -0.08708, - 0.02324, - 0.0018947, - 0.0032647, - -0.007091, - 0.032378, - -0.053121, - 0.027133, - 0.0074254, - -0.079074, - 0.013851, - -0.0085466, - 0.035073, - -0.019401, - 0.0084004, - 0.010987, - -0.0088594, - 0.030335, - 0.03096, - 0.0059757, - -0.042159, - -0.048103, - 0.07513, - 0.029811, - 0.024637, - -0.023219, - 0.024715, - 0.0026061, - 0.057874, - -0.027188, - 0.031251, - -0.037984, - 0.0020176, - 0.0039337, - 0.12189, - -0.025507, - 0.068884, - -0.012626, - -0.025427, - 0.090689, - -0.041552, - -0.012804, - -0.097134, - 0.054499, - 0.020167, - -0.033362, - -0.023746, - -0.11015, - -0.00020118, - 0.011505, - -0.0069403, - -0.032864, - 0.0099052, - -0.0058839, - -0.0030762, - 0.027402, - 0.035352, - 0.097388, - 0.0070277, - -0.010539, - 0.015295, - -0.0015172, - 0.039857, - 0.027849, - 0.019649, - -0.052163, - 0.0068941, - -0.035703, - 0.015334, - 0.0044265, - 0.0718, - 0.0058596, - -0.077495, - 0.014549, - 0.071512, - 0.038428, - -0.0099602, - 0.03085, - -0.017352, - -0.05083, - -0.041121, - 0.026874, - 0.027866, - 0.041487, - 0.011717, - 0.029772, - -0.010172, - 0.03164, - 0.0025143, - -0.008375, - -0.023007, - -0.10246, - 0.0041104, - 0.0061605, - -0.024814, - 0.027093, - -0.0029083, - 0.029196, - 0.036974, - -0.0049316, - -0.0039019, - -0.0099396, - 0.031967, - -0.029313, - 0.024509, - 0.075501, - -0.0036718, - 0.036585, - -0.0054216, - -0.037348, - 0.0082778, - 0.062552, - 0.00014166, - -0.032937, - 0.02165, - 0.0069829, - -0.0049802, - 0.031253, - 0.026967, - -0.088304, - -0.034772, - -0.005129, - -0.024982, - -0.068757, - 0.008357, - -0.0023859, - -0.038582, - 0.12248, - 0.013342, - 0.0025639, - -0.0031466, - 0.053627, - 0.065829, - -0.0533, - 0.011192, - 0.044617, - 0.023934, - -0.038292, - 0.037995, - -0.065054, - -0.016753, - 0.010718, - -0.023254, - -0.022749, - 0.012944, - 0.010444, - 0.022859 - ], - "science-related": [ - -0.039821, - -0.042811, - -0.0094617, - -0.016372, - 0.014713, - -0.012785, - 0.015751, - -0.063276, - 0.032249, - 0.041541, - -0.019207, - -0.057041, - 0.011239, - 0.020387, - 0.030092, - 0.020957, - 0.050913, - 0.071904, - 0.021121, - -0.018374, - 0.011841, - 0.033291, - 0.033324, - 0.04605, - -0.015363, - -0.0031617, - -0.025317, - 0.027274, - 0.078925, - -0.013971, - 0.014848, - -0.010038, - 0.048067, - -0.050023, - 0.078605, - 0.010465, - 0.0041811, - 0.0016021, - 0.012146, - 0.026132, - -0.030772, - -0.045087, - -0.027677, - 0.0284, - 0.031618, - -0.033865, - -0.037422, - 0.0075984, - 0.018364, - 0.016946, - 0.00049256, - 0.038634, - -0.0021761, - 0.020143, - 0.0030663, - 0.015947, - 0.013398, - 0.026476, - 0.023304, - 0.0082894, - 0.012409, - 0.055171, - 0.10506, - 0.022493, - 0.042477, - -0.017577, - -0.0056163, - 0.00126, - 0.026648, - 0.036225, - 0.032837, - 0.0058054, - 0.036264, - 0.032785, - 0.003981, - 0.046459, - 0.009373, - -0.024876, - 0.027997, - -0.0076138, - 0.0017535, - 0.0015769, - -0.012695, - -0.0005782, - -0.03823, - 0.044275, - 0.0163, - -0.0024342, - 0.038833, - 0.011019, - 0.0037364, - 0.030183, - -0.057645, - 0.064308, - -0.0025193, - -0.0026123, - 0.019403, - 0.019905, - 0.023563, - 0.012072, - -0.022579, - -0.0030593, - -0.01936, - -0.032358, - 0.0075686, - -0.06543, - 0.022002, - 0.048838, - 0.054601, - -0.018771, - -0.039074, - 0.043617, - 0.0081069, - 0.023714, - 0.0055043, - -0.0016332, - -0.0047979, - -0.022652, - -0.037781, - -0.0097578, - -0.0096301, - -0.0062957, - -0.055739, - -0.032122, - 0.0683, - 0.018049, - -0.055351, - -0.023771, - -0.010282, - 0.05404, - -0.038748, - 0.046091, - -0.02719, - 0.004502, - 0.022022, - 0.0042979, - -0.010013, - 0.025498, - 0.0065589, - 0.022929, - 0.026778, - -0.030773, - 0.0057389, - 0.0053597, - -0.046067, - -0.0037484, - -0.04, - 0.010892, - 0.0038234, - -0.02125, - 0.026438, - 0.11605, - -0.034769, - -0.068084, - -0.0077265, - 0.034527, - 0.0063851, - 0.02869, - -0.015129, - 0.0053127, - -0.010723, - 0.014841, - -0.016617, - -0.0037541, - 0.003013, - -0.0041028, - -0.047983, - 0.0058694, - -0.02471, - -0.021081, - 0.023275, - -0.0014983, - 0.017719, - -0.003632, - 0.017624, - 0.023819, - -0.021305, - 0.045195, - -0.011814, - 0.0052623, - 0.012287, - 0.00093137, - -0.0025514, - -0.0011753, - 0.018867, - -0.0061541, - 0.018156, - 0.067258, - -0.00097589, - 0.014936, - -0.013164, - 0.025925, - 0.0099623, - -0.012623, - 0.0088291, - 0.018375, - -0.034377, - -0.001457, - -0.0236, - -0.060757, - -0.088059, - -0.0019197, - 0.0087758, - -0.025517, - -0.012923, - 0.0031103, - -0.013488, - 0.018497, - -0.01827, - 0.026402, - 0.064291, - 0.013265, - 0.0084417, - 0.0052971, - 0.026335, - 0.026385, - -0.0082093, - 0.0014529, - -0.024056, - -0.002833, - -0.020649, - 0.064574, - -0.074749, - 0.071118, - -0.028894, - -0.020826, - 0.034195, - 0.072036, - 0.038027, - -0.032063, - -0.014358, - -0.032725, - -0.040366, - 0.02348, - 0.011297, - 0.019952, - 0.012269, - -0.025608, - -0.0097127, - -0.039675, - -0.023728, - -0.042332, - 0.021258, - 0.0077266, - -0.084415, - 0.026253, - 0.0062372, - 0.017125, - -0.017598, - 0.02875, - 0.013481, - 0.043741, - 0.0076305, - -0.050585, - -0.03191, - -0.0081251, - -0.016673, - -0.0098745, - 0.029443, - -0.013246, - 0.0068757, - 0.001565, - -0.0089614, - -0.019735, - 0.0042753, - 0.011322, - 0.01394, - 0.031603, - 0.062563, - -0.0059074, - 0.020936, - 0.043969, - -0.060153, - -0.026669, - 0.0038501, - -0.07181, - -0.020619, - 0.00063412, - 0.0034459, - -0.03075, - 0.058005, - -0.019336, - 0.031215, - -0.015382, - -0.027885, - -0.0066369, - -0.018379, - -0.020532, - -0.025142, - -0.015957, - -0.039452, - 0.020656, - -0.016376, - 0.015845, - -0.024813, - 0.010274, - -0.040368, - 0.013089, - 0.01688, - -0.00086258 - ], - "businesspeople": [ - -0.013885, - -0.053682, - 0.03776, - -0.037656, - -0.077994, - 0.0085651, - -0.0014381, - -0.069858, - 0.044928, - 0.057309, - 0.0072532, - 0.015035, - -0.055435, - -0.041648, - -0.0068876, - 0.036545, - 0.042267, - 0.0066934, - 0.047436, - -0.044035, - 0.02583, - -0.028204, - 0.021965, - 0.059548, - -0.0065782, - -0.0008726, - 0.046833, - 0.055969, - 0.0096374, - -0.01401, - 0.012404, - -0.0020244, - -0.021098, - 0.010249, - 0.012369, - 0.029714, - -0.014954, - 0.018326, - -0.0034521, - -0.029296, - -0.018761, - -0.062749, - -0.06379, - 0.020003, - 0.035096, - 0.0041665, - -0.0016314, - 0.026119, - 0.010641, - -0.034429, - -0.01442, - -0.026943, - -0.030828, - 0.013225, - -0.012557, - 0.018671, - -0.0037836, - 0.033929, - -0.0073353, - -0.058189, - -0.026629, - -0.02766, - 0.026626, - 0.029846, - 0.034176, - 0.014516, - 0.034762, - -0.04763, - -0.00026713, - -0.0064281, - 0.0063443, - -0.020747, - 0.10855, - 0.042976, - 0.018531, - 0.0085567, - 0.011996, - -0.034085, - -0.023888, - 0.002029, - -0.011565, - 0.033144, - 0.048173, - 0.050182, - -0.0032845, - -0.080897, - -0.024091, - -0.014245, - 0.035336, - -0.019765, - -0.030765, - 0.030424, - -0.086614, - 0.012667, - 0.016421, - 0.063448, - -0.0036757, - -0.013144, - 0.035306, - -0.015447, - 0.007902, - 0.012434, - 0.0079918, - -0.03222, - 0.031144, - -0.025433, - 0.039083, - 0.0096573, - 0.0098738, - 0.00236, - -0.034207, - 0.099142, - 0.041919, - -0.0027732, - -0.011977, - -0.024202, - -0.021515, - -0.025467, - -0.0042159, - 0.015087, - -0.017022, - -0.08028, - 0.03585, - -0.043253, - 0.088037, - 0.013038, - -0.01728, - -0.017984, - 0.015782, - 0.034957, - 0.00054931, - 0.12415, - 0.01397, - -0.019001, - 0.024948, - 0.055216, - 0.023635, - 0.058376, - -0.03497, - 0.041257, - 0.053905, - -0.015822, - -0.010706, - 0.0085454, - -0.0014683, - -0.039347, - -0.012189, - -0.02362, - -0.026498, - -0.038773, - 0.099926, - 0.070957, - -0.018463, - 0.027666, - 0.020349, - -0.009203, - 0.0044378, - 0.0047045, - -0.018075, - -0.025465, - 0.011196, - 0.097284, - 0.031653, - 0.060689, - 0.023979, - 0.031946, - 0.015182, - -0.0051414, - 0.023334, - 0.009511, - -0.018248, - 0.026417, - -0.018431, - 0.062359, - 0.018892, - 0.046385, - -0.056228, - 0.047463, - -0.013164, - 0.057885, - 0.015984, - -0.028301, - 0.049943, - -0.022789, - 0.00051073, - -0.093173, - -0.026506, - 0.090739, - -0.012475, - -0.012544, - -0.088007, - 0.084665, - -0.084962, - 0.014486, - 0.0027632, - 0.010011, - 0.0073951, - -0.012277, - 0.016652, - -0.015875, - -0.078468, - 0.028151, - 0.0065291, - -0.00031075, - 0.012391, - -0.013708, - -0.011489, - 0.0060067, - -0.001617, - -0.039686, - 0.03725, - -0.0086308, - 0.07907, - -0.018395, - -0.066621, - 0.045909, - -0.037949, - -0.027963, - -0.02958, - -0.017631, - 0.0032584, - -0.044377, - -0.023752, - 0.068284, - 0.020945, - 0.026297, - 0.060065, - 0.052351, - 0.0053851, - -0.04095, - 0.0013386, - 0.0221, - -0.036172, - 0.027737, - 0.028838, - 0.013821, - 0.0009947, - 0.006548, - -0.0057313, - -0.016813, - 0.0077365, - -0.0039479, - 0.024793, - 0.021407, - 0.034998, - -0.017848, - 0.011268, - -0.040283, - 0.023975, - -0.037933, - 0.049097, - -0.012805, - -0.032408, - -0.031124, - -0.0032461, - 0.011541, - -0.049829, - 0.019519, - 0.025456, - 0.0086728, - -0.016744, - 0.016918, - 0.030079, - 0.011669, - -0.0096973, - 0.040294, - -0.034244, - 0.019404, - 0.0023263, - -0.0037333, - -0.046265, - 0.065811, - -0.068336, - -0.020185, - 0.040262, - -0.029381, - 0.03853, - -0.017048, - -0.023285, - -0.014791, - -0.020457, - 0.045978, - -0.051514, - 0.030547, - -0.012453, - -0.010813, - -0.011495, - -0.094475, - -0.010646, - 0.0030135, - -0.017401, - 0.0041273, - -0.021465, - 0.032464, - -0.019105, - 0.012558, - -0.017089, - -0.0029258, - -0.012892, - -0.012402 - ], - "computerization": [ - -0.051061, - 0.0097347, - -0.023079, - -0.042532, - -0.0028242, - 0.024012, - 0.036103, - -0.068783, - -0.0045406, - -0.011495, - 0.012547, - -0.013205, - -0.019225, - 0.032209, - -0.013309, - 0.0082214, - 0.049165, - 0.037826, - 0.0079881, - 0.041888, - -0.025828, - 0.020283, - -0.0075048, - 0.031488, - -0.012377, - -0.0086218, - -0.01146, - 0.016227, - -0.0044739, - -0.002483, - 0.031195, - -0.024059, - -0.0030397, - -0.058817, - 0.005467, - 0.041653, - 0.025318, - 0.047503, - 0.035423, - -0.024026, - -0.023995, - -0.064775, - -0.026088, - 0.015514, - 0.015345, - -0.010476, - 0.011124, - -0.011754, - 0.011866, - 0.0057078, - -0.053696, - -0.020589, - -0.025404, - 0.01701, - -0.042512, - 0.049644, - -0.022442, - 0.023341, - 0.024018, - -0.028201, - 0.05128, - 0.020917, - 0.0099855, - 0.024107, - -0.0035447, - -0.00013966, - -0.0028872, - -0.033917, - -0.0037211, - 0.017438, - -0.0053621, - -0.025087, - -0.02542, - -0.018934, - 0.020737, - -0.017756, - -0.0084758, - -0.0084243, - 0.033797, - 0.0090374, - -0.010763, - -0.005206, - -0.054746, - 0.021911, - 0.0025124, - -0.045785, - -0.025312, - -0.0075325, - 0.0018845, - 0.018358, - -0.026062, - -0.001372, - -0.037314, - 0.000032683, - -0.021447, - 0.042573, - -0.029623, - -0.040951, - -0.01334, - 0.045291, - -0.0018897, - -0.040574, - -0.041899, - -0.033716, - 0.010229, - -0.025863, - 0.030523, - -0.0019792, - 0.018645, - -0.018107, - 0.010802, - 0.033902, - 0.019161, - 0.010428, - -0.027564, - 0.01221, - -0.049733, - -0.0089169, - -0.047132, - 0.02349, - -0.033315, - 0.026502, - 0.058005, - 0.036432, - 0.012318, - 0.013191, - -0.020611, - -0.026564, - 0.010068, - 0.09615, - 0.0060481, - -0.027526, - 0.023532, - 0.00030669, - 0.022978, - -0.046501, - 0.036216, - 0.010536, - 0.00039591, - 0.022032, - 0.017799, - 0.029985, - 0.01672, - 0.070234, - -0.02014, - -0.051428, - -0.014399, - 0.004021, - 0.02554, - 0.013054, - 0.071031, - 0.032528, - 0.023072, - -0.047339, - 0.01756, - 0.01902, - -0.033166, - 0.02144, - 0.027891, - -0.0042306, - 0.029665, - 0.021216, - -0.065738, - -0.031578, - -0.026483, - -0.029844, - 0.0059718, - -0.023225, - 0.045953, - 0.021017, - 0.031773, - -0.0082343, - 0.01343, - 0.02805, - 0.0038823, - 0.0069729, - -0.02035, - 0.02002, - -0.022273, - 0.035208, - -0.011818, - 0.020842, - -0.047813, - -0.00046978, - -0.052964, - -0.00094024, - -0.041277, - 0.056061, - -0.025671, - -0.005243, - -0.021567, - 0.0048855, - -0.021906, - -0.032254, - 0.035804, - -0.022404, - -0.06326, - 0.020927, - -0.02711, - -0.011887, - -0.084567, - 0.010773, - -0.01821, - 0.022118, - -0.02506, - 0.014106, - 0.014369, - -0.031152, - -0.026768, - 0.0097601, - 0.052223, - 0.042808, - 0.025948, - -0.0010195, - 0.0062259, - -0.031555, - 0.012455, - -0.010669, - -0.010959, - -0.038589, - -0.014937, - 0.0023094, - -0.043027, - 0.063835, - 0.020752, - -0.027399, - 0.031271, - 0.050835, - 0.018989, - -0.018876, - -0.020292, - -0.039573, - -0.041548, - -0.042878, - 0.038509, - -0.042012, - 0.032205, - 0.019215, - -0.010881, - -0.0048492, - 0.048742, - -0.001245, - 0.019206, - 0.0086389, - -0.056972, - -0.0060163, - -0.011799, - -0.046259, - -0.0079135, - 0.0059375, - 0.041165, - 0.0089375, - 0.010534, - 0.020342, - -0.004779, - 0.02256, - -0.020042, - 0.014462, - 0.01394, - -0.0023972, - -0.0052391, - -0.020729, - -0.0088588, - 0.0080081, - 0.0053176, - -0.036697, - 0.005854, - -0.00078277, - -0.02646, - 0.0079811, - -0.025095, - 0.047099, - -0.04498, - -0.0066235, - -0.04957, - -0.042285, - -0.019699, - 0.066093, - -0.0066867, - -0.030126, - 0.036551, - 0.0071516, - -0.011359, - -0.025968, - 0.003354, - -0.0079904, - -0.022604, - 0.025362, - -0.049819, - 0.021493, - -0.036729, - 0.0018594, - 0.022653, - -0.0098773, - 0.0049746, - 0.032253, - -0.039481, - 0.0091105, - 0.056351, - -0.029649 - ], - "record": [ - -0.0079066, - -0.01356, - -0.0616, - 0.022253, - 0.021628, - -0.056867, - -0.015679, - -0.11854, - 0.013552, - -0.039122, - -0.056062, - -0.043708, - 0.037424, - 0.068201, - 0.046296, - 0.045662, - 0.086662, - -0.051206, - 0.06927, - 0.032729, - 0.040289, - -0.016727, - -0.057427, - 0.062448, - -0.05652, - 0.041015, - -0.061731, - 0.038957, - -0.0098259, - -0.048412, - -0.035848, - 0.025048, - -0.0066388, - -0.083189, - -0.0070048, - 0.011109, - 0.0080807, - 0.077254, - 0.024502, - -0.051577, - 0.03053, - -0.12989, - -0.0069234, - 0.023484, - -0.004411, - 0.024092, - 0.018386, - 0.017423, - 0.0064652, - 0.02977, - -0.013219, - -0.0047458, - 0.028596, - 0.026518, - -0.082085, - 0.12433, - -0.080291, - -0.0038863, - -0.084912, - -0.043069, - 0.034341, - -0.01484, - 0.1292, - -0.091901, - 0.066515, - -0.050305, - 0.042735, - 0.10509, - 0.038669, - 0.046226, - -0.046203, - 0.017144, - 0.023924, - -0.034193, - -0.013381, - 0.050738, - -0.044192, - -0.078683, - 0.078567, - 0.04602, - 0.0032357, - -0.03343, - -0.050374, - 0.056411, - -0.05376, - -0.054288, - 0.04014, - -0.036958, - -0.038411, - -0.054164, - -0.0016333, - 0.025743, - -0.10272, - 0.0042852, - 0.01157, - 0.0056547, - 0.01271, - 0.0053326, - 0.1404, - 0.0054574, - 0.0038695, - -0.13244, - 0.03066, - 0.00077138, - 0.010952, - -0.054128, - 0.0031522, - -0.014995, - 0.08422, - 0.070659, - 0.0050726, - 0.045702, - 0.076728, - -0.0067762, - -0.059736, - 0.031453, - 0.032943, - 0.00051882, - -0.046757, - 0.011608, - 0.0166, - 0.049889, - -0.012313, - 0.011732, - 0.056622, - -0.0075525, - 0.0035559, - -0.068322, - 0.025234, - 0.095792, - 0.01053, - -0.052726, - 0.038776, - 0.0071012, - -0.011308, - -0.12921, - 0.0063293, - 0.022265, - -0.078008, - -0.014216, - -0.0051919, - 0.019948, - 0.029119, - -0.08277, - -0.027745, - -0.050896, - 0.020316, - -0.075838, - -0.0018228, - -0.029625, - -0.016607, - 0.095606, - 0.010928, - -0.096688, - -0.0036211, - 0.012567, - 0.03644, - 0.002414, - 0.0088962, - 0.01721, - 0.027688, - 0.041635, - -0.056076, - 0.0077826, - 0.050679, - -0.0093531, - -0.014196, - 0.013626, - 0.00060636, - 0.00029215, - -0.010727, - 0.03253, - 0.045417, - 0.022707, - -0.0035676, - 0.051531, - 0.011632, - -0.0030092, - -0.0606, - 0.025688, - -0.027496, - -0.023531, - -0.044216, - -0.056666, - 0.022105, - -0.040764, - -0.040193, - 0.055613, - -0.045655, - 0.059021, - -0.018199, - 0.024413, - -0.0084366, - 0.01097, - -0.091215, - -0.032258, - 0.02583, - -0.036035, - 0.0042755, - -0.018928, - -0.15021, - 0.068653, - -0.070709, - -0.028, - -0.03215, - 0.012927, - -0.0055475, - -0.058987, - -0.05012, - -0.050448, - 0.1022, - -0.065372, - -0.037545, - -0.023114, - -0.048243, - -0.072734, - -0.02111, - -0.030565, - -0.021048, - -0.018437, - 0.017195, - 0.053192, - 0.01629, - 0.121, - 0.080214, - 0.065355, - 0.013463, - 0.067136, - -0.071633, - -0.0033112, - 0.083389, - -0.077194, - -0.050602, - -0.039311, - 0.038055, - 0.022476, - 0.028312, - 0.035856, - 0.010814, - 0.051343, - 0.15273, - -0.0067465, - 0.019639, - 0.01983, - -0.089819, - -0.079233, - 0.007733, - -0.018369, - -0.071969, - -0.02797, - 0.069511, - -0.0093914, - 0.051517, - -0.0018649, - 0.00010001, - -0.042718, - 0.023159, - 0.063762, - -0.009501, - 0.069945, - 0.040355, - -0.041792, - 0.037939, - -0.045311, - 0.0040469, - -0.059683, - 0.046805, - 0.030777, - -0.030133, - -0.039783, - 0.04219, - 0.099419, - -0.13108, - -0.045604, - 0.00043961, - 0.019541, - -0.036339, - 0.0098829, - -0.0047639, - 0.014775, - 0.085294, - 0.0072998, - -0.00042045, - -0.044359, - 0.026758, - 0.0060201, - -0.041271, - 0.024822, - -0.026778, - 0.0071482, - 0.065627, - 0.016568, - 0.048251, - -0.016688, - -0.02703, - -0.010916, - -0.060846, - -0.031602, - 0.01342, - 0.024962 - ], - "carmakers": [ - 0.064417, - -0.0408, - 0.031112, - -0.020235, - -0.10246, - -0.0078424, - -0.064881, - -0.084301, - 0.053981, - -0.017289, - 0.043029, - -0.018174, - 0.032696, - 0.048584, - 0.0072148, - 0.10988, - 0.05992, - -0.02245, - 0.10494, - -0.051296, - 0.029381, - 0.016457, - -0.0021976, - 0.095962, - 0.037795, - -0.013624, - 0.077229, - -0.0043892, - 0.059238, - -0.0019656, - -0.013646, - -0.0024755, - 0.046843, - 0.03572, - -0.01453, - 0.031587, - -0.027231, - 0.022393, - 0.031267, - 0.071694, - -0.05375, - -0.045631, - -0.0034016, - 0.051009, - 0.037514, - 0.0079328, - -0.033433, - -0.025523, - -0.016041, - -0.062753, - -0.0064256, - -0.013467, - -0.017983, - 0.028121, - -0.028341, - -0.086281, - -0.033816, - 0.043975, - 0.027783, - 0.016821, - 0.012079, - -0.029949, - 0.055978, - 0.038752, - 0.069985, - -0.055384, - -0.014046, - -0.076752, - 0.060944, - 0.017758, - -0.0055556, - 0.00011679, - 0.085833, - -0.012515, - -0.013866, - 0.049321, - 0.0036855, - -0.055765, - 0.02386, - -0.060524, - -0.014618, - 0.05027, - -0.0026875, - 0.030117, - -0.012158, - -0.035417, - -0.025089, - -0.024697, - 0.032864, - -0.064135, - -0.019077, - 0.030442, - -0.098294, - -0.036632, - 0.0097951, - 0.072838, - 0.020646, - -0.027201, - -0.0112, - -0.0073364, - 0.0040784, - -0.064769, - 0.015709, - 0.076648, - 0.038934, - -0.03092, - -0.0032554, - -0.047964, - 0.0567, - -0.020037, - 0.058208, - 0.10388, - 0.021047, - 0.064405, - 0.031445, - -0.12162, - 0.014595, - 0.084721, - -0.03386, - -0.025654, - -0.018302, - 0.026329, - -0.054185, - -0.0084485, - 0.089232, - 0.04146, - -0.071604, - -0.068837, - 0.057007, - 0.073803, - -0.0086757, - 0.1745, - -0.015082, - 0.018726, - 0.099125, - -0.0086045, - 0.054099, - 0.049655, - 0.011586, - 0.064897, - 0.0062162, - 0.018211, - 0.032491, - 0.077204, - -0.017747, - -0.030962, - 0.050525, - -0.011232, - 0.035562, - -0.037892, - 0.065952, - 0.11183, - 0.019577, - -0.00052431, - 0.0044396, - -0.038601, - 0.01342, - -0.029264, - 0.030749, - -0.0038573, - 0.088067, - -0.041164, - 0.047283, - 0.020007, - 0.13186, - 0.041848, - 0.0036734, - -0.014161, - 0.086177, - 0.0026331, - -0.0063573, - -0.043868, - -0.087994, - 0.092362, - -0.030001, - 0.030109, - -0.087196, - -0.030611, - -0.070646, - -0.019314, - 0.024877, - -0.03519, - -0.041488, - -0.019716, - 0.044393, - -0.083192, - -0.057624, - 0.096898, - 0.010524, - 0.054116, - -0.13602, - 0.089375, - -0.10169, - -0.055185, - 0.053455, - 0.11758, - -0.093057, - -0.056276, - -0.023417, - -0.026698, - -0.1039, - 0.0096512, - -0.047543, - -0.068902, - 0.037702, - 0.0063236, - -0.028271, - 0.041915, - -0.0065374, - -0.058004, - 0.034508, - 0.010544, - 0.054441, - 0.0075096, - -0.071637, - -0.0078365, - -0.030025, - -0.02696, - -0.015278, - -0.050283, - -0.010591, - -0.055289, - 0.055393, - 0.069409, - 0.046407, - 0.024512, - -0.061326, - 0.041494, - 0.036616, - -0.01333, - 0.001493, - 0.013396, - -0.081448, - -0.0045986, - 0.046984, - -0.046981, - 0.021988, - -0.049119, - 0.025155, - -0.0000016079, - -0.0037003, - -0.0024559, - -0.10491, - 0.032208, - 0.060359, - -0.067449, - 0.065451, - -0.031964, - 0.02217, - -0.032161, - 0.0019791, - 0.0073328, - -0.083927, - 0.0099129, - -0.0072121, - 0.044809, - 0.0069803, - 0.0050912, - -0.012989, - 0.044899, - 0.071378, - 0.071118, - -0.030489, - -0.004462, - 0.049848, - 0.09829, - 0.027672, - 0.044958, - 0.0081515, - 0.05053, - -0.023359, - 0.077291, - -0.15636, - 0.044852, - 0.010926, - -0.00036708, - -0.024957, - 0.14782, - -0.025383, - 0.012114, - 0.0085631, - 0.034643, - -0.039073, - -0.024221, - -0.019986, - -0.014565, - 0.014509, - -0.074317, - 0.099963, - 0.065882, - -0.038764, - -0.011375, - 0.0025331, - 0.01103, - -0.0053868, - -0.085199, - 0.043606, - -0.0017045, - 0.018403, - 0.012245 - ], - "medical": [ - -0.10185, - -0.07268, - 0.015251, - 0.039545, - -0.006604, - -0.097515, - 0.072382, - -0.087736, - 0.08146, - -0.00278, - -0.051037, - -0.046376, - 0.052532, - -0.05081, - -0.06878, - 0.013163, - 0.096767, - 0.0011465, - 0.053355, - 0.063855, - 0.024712, - 0.042075, - 0.06172, - 0.099644, - -0.045406, - -0.054877, - 0.002304, - 0.049672, - 0.024701, - 0.0077064, - 0.015545, - -0.012677, - 0.027356, - -0.10993, - 0.092084, - 0.080984, - -0.0029511, - -0.016148, - 0.10785, - 0.037787, - 0.015585, - -0.1279, - 0.071637, - 0.011365, - 0.040489, - -0.014587, - -0.01397, - 0.0048526, - -0.032914, - 0.023529, - -0.034718, - -0.0033618, - -0.033577, - -0.0023722, - 0.017163, - 0.064621, - -0.065436, - 0.012435, - -0.03464, - 0.00009547, - 0.03723, - 0.0027114, - 0.14728, - 0.049723, - 0.056747, - -0.00067494, - 0.01933, - -0.047108, - -0.033401, - -0.0095385, - -0.021561, - 0.030798, - 0.073831, - -0.046261, - -0.028127, - -0.014325, - 0.0098332, - -0.057026, - 0.020475, - -0.042156, - -0.045651, - 0.055135, - -0.041676, - 0.036729, - -0.12355, - -0.014055, - 0.054857, - -0.0092596, - -0.039997, - -0.028634, - 0.025485, - 0.030857, - -0.11005, - 0.012187, - -0.025828, - 0.057114, - 0.0056236, - -0.0030952, - -0.010034, - 0.036206, - -0.00082169, - 0.015216, - 0.0068583, - -0.043645, - 0.043485, - -0.12833, - -0.0020423, - 0.031944, - 0.0098509, - 0.043537, - -0.027651, - 0.090805, - 0.052236, - 0.066398, - 0.0032315, - 0.094487, - 0.010966, - -0.069891, - -0.054293, - -0.032249, - -0.025992, - 0.013006, - 0.028146, - 0.014744, - 0.091491, - 0.0042698, - -0.051214, - -0.025784, - 0.041125, - 0.1064, - -0.012297, - 0.015273, - 0.00069315, - -0.08095, - 0.038018, - 0.03777, - -0.01871, - 0.062047, - 0.022285, - 0.00038292, - 0.040211, - -0.021905, - -0.094572, - 0.051489, - -0.091811, - -0.013176, - -0.0081158, - 0.033512, - 0.030662, - 0.025618, - 0.055334, - 0.19636, - 0.023797, - -0.06533, - 0.045548, - 0.017546, - -0.026435, - 0.0044183, - 0.086726, - -0.011514, - 0.031663, - 0.0076727, - -0.075808, - 0.01783, - -0.03699, - -0.013397, - -0.010603, - -0.0035597, - -0.026919, - -0.068733, - 0.026585, - 0.01522, - 0.017583, - 0.024555, - 0.0077586, - 0.060686, - -0.040344, - 0.020325, - -0.029192, - -0.020074, - 0.014703, - 0.021015, - -0.058784, - -0.026926, - 0.0062461, - -0.048554, - 0.028539, - 0.091957, - -0.0136, - -0.010928, - -0.0030895, - 0.088894, - 0.12704, - -0.05518, - -0.028873, - -0.011038, - -0.04842, - -0.02594, - -0.021279, - -0.030323, - -0.1497, - 0.0051586, - 0.0021927, - 0.028612, - 0.019887, - -0.024267, - -0.027875, - -0.029095, - -0.058305, - 0.029692, - 0.17784, - 0.025825, - -0.045526, - 0.082818, - -0.031383, - 0.054166, - 0.020101, - -0.015113, - -0.039676, - -0.012418, - -0.0076108, - 0.0069951, - -0.11676, - 0.095895, - 0.043047, - 0.045696, - -0.022146, - 0.075655, - 0.0073145, - -0.036438, - -0.033949, - -0.087646, - -0.039094, - -0.0070304, - -0.017857, - -0.002441, - -0.009999, - 0.046355, - -0.022476, - -0.043515, - 0.034548, - 0.0070643, - 0.02516, - -0.00019269, - -0.15668, - 0.0045846, - 0.0080461, - -0.0050072, - -0.067806, - 0.018851, - 0.034103, - 0.045159, - 0.042152, - -0.040833, - -0.068901, - 0.0087469, - 0.041479, - 0.017171, - 0.021358, - 0.018439, - -0.032164, - -0.026371, - -0.043723, - -0.0079672, - 0.058375, - -0.020647, - 0.02792, - 0.048662, - 0.057933, - 0.02207, - -0.0029205, - 0.06843, - -0.10353, - -0.013953, - -0.0066409, - -0.088231, - -0.02711, - -0.031651, - 0.010603, - 0.0017983, - 0.16961, - 0.023272, - -0.090295, - 0.0081353, - 0.018933, - 0.055156, - -0.028952, - -0.021893, - 0.018496, - 0.016092, - 0.048439, - -0.0068247, - -0.0046045, - 0.0070649, - -0.050321, - -0.00084707, - -0.0023623, - 0.029116, - 0.039786, - -0.020503 - ], - "pets": [ - -0.012966, - -0.00094771, - 0.014631, - -0.045322, - -0.025842, - 0.070719, - 0.030266, - -0.088526, - 0.055898, - 0.0018656, - -0.014065, - -0.0050175, - 0.013544, - -0.055567, - -0.056487, - -0.046706, - 0.032833, - 0.040015, - 0.038657, - 0.0027041, - 0.064282, - -0.1041, - 0.097987, - 0.053926, - 0.098166, - -0.028485, - 0.0093773, - 0.030388, - 0.15419, - -0.05728, - -0.11113, - -0.14604, - 0.094008, - 0.054234, - 0.0099304, - 0.01617, - -0.0082868, - -0.18327, - -0.019443, - -0.038919, - -0.024542, - -0.080296, - 0.046965, - 0.055428, - 0.030227, - -0.042916, - -0.0073864, - 0.029908, - 0.0036179, - -0.078025, - -0.0054684, - 0.063861, - -0.021019, - -0.13724, - -0.11442, - -0.020776, - -0.030593, - 0.085961, - -0.039013, - -0.074437, - 0.040243, - -0.14004, - 0.1823, - 0.0061576, - 0.0013844, - 0.059489, - 0.0074706, - -0.056724, - -0.03842, - -0.065995, - 0.081797, - 0.01669, - 0.14969, - -0.046698, - -0.053919, - 0.1357, - -0.075945, - -0.037669, - 0.0046289, - -0.011687, - 0.076698, - 0.014288, - 0.078811, - 0.065406, - -0.020258, - -0.078101, - -0.036423, - -0.016319, - 0.056188, - -0.021212, - 0.062811, - -0.012035, - -0.096364, - 0.029474, - 0.021941, - 0.094133, - -0.038868, - 0.22065, - 0.12538, - -0.044978, - -0.024242, - 0.098798, - -0.02268, - -0.10251, - 0.11419, - -0.11879, - -0.12025, - -0.078176, - 0.0523, - -0.083448, - -0.055847, - 0.11098, - 0.066557, - 0.067592, - -0.081781, - -0.018376, - 0.0076221, - -0.080772, - -0.066323, - -0.0017124, - -0.12326, - 0.22525, - 0.035765, - -0.056471, - 0.12343, - 0.063726, - 0.022549, - -0.074881, - -0.074212, - 0.059525, - -0.0014328, - 0.074635, - -0.010069, - -0.019167, - 0.088713, - 0.01902, - -0.0020763, - 0.060168, - 0.014017, - 0.020194, - -0.025044, - 0.0017417, - 0.012241, - 0.010804, - 0.15461, - -0.027887, - 0.045283, - -0.027424, - 0.045183, - -0.16391, - 0.066797, - 0.096635, - -0.012897, - -0.066545, - -0.022924, - -0.00072642, - -0.084347, - 0.10574, - 0.075341, - -0.084644, - 0.067938, - 0.0012961, - 0.056524, - 0.062969, - 0.1043, - -0.062855, - 0.016541, - 0.035409, - 0.012859, - -0.0021119, - -0.025066, - 0.021758, - 0.068227, - -0.037249, - -0.09137, - 0.11613, - 0.0041401, - 0.1395, - -0.011202, - -0.000043847, - 0.15617, - -0.052026, - -0.013456, - -0.075244, - 0.038679, - -0.046075, - 0.10773, - 0.12881, - 0.0066122, - -0.19844, - -0.07742, - 0.13902, - -0.11537, - -0.079562, - -0.03065, - 0.13316, - 0.014838, - 0.010025, - 0.02495, - 0.02551, - -0.18854, - 0.18833, - 0.0078392, - -0.10032, - 0.047781, - -0.092936, - -0.050792, - -0.076569, - 0.01774, - -0.08007, - 0.098117, - -0.00514, - 0.10536, - 0.075809, - -0.039594, - 0.049777, - -0.031457, - -0.065117, - -0.048604, - -0.059147, - 0.052668, - -0.062967, - 0.0089902, - 0.11564, - 0.12003, - -0.009485, - -0.044146, - 0.096415, - -0.074964, - -0.040039, - -0.11113, - -0.0050956, - -0.20147, - -0.13314, - 0.081402, - -0.0088275, - 0.10311, - 0.092454, - -0.062106, - -0.0073071, - 0.01808, - -0.0068402, - 0.12846, - -0.092091, - 0.0082102, - 0.17655, - 0.1147, - -0.057536, - -0.012997, - -0.0068769, - -0.0070817, - -0.0051208, - -0.0041076, - 0.030531, - -0.017455, - -0.11058, - 0.031385, - -0.065675, - -0.0043515, - -0.1188, - -0.018277, - -0.020525, - -0.034141, - -0.058449, - 0.061939, - 0.06476, - 0.052734, - 0.029218, - 0.099327, - 0.011305, - -0.098897, - 0.13409, - -0.16813, - -0.040658, - 0.010024, - -0.055095, - -0.024572, - 0.052421, - -0.055631, - -0.04745, - 0.031, - 0.013026, - 0.13564, - -0.024959, - 0.034047, - 0.017633, - -0.056619, - -0.011618, - -0.053619, - -0.021617, - 0.039586, - 0.031681, - -0.1588, - -0.031839, - -0.067981, - 0.035089, - 0.046993, - 0.18791, - 0.044289, - 0.1574 - ], - "itineraries": [ - 0.0060808, - 0.0076964, - 0.024055, - -0.00093802, - -0.0020002, - -0.0024905, - -0.036377, - -0.045198, - -0.046004, - 0.039239, - 0.049258, - -0.021911, - -0.075843, - -0.053685, - 0.0063543, - -0.014267, - 0.033196, - -0.075927, - 0.020235, - -0.043028, - -0.053831, - 0.037688, - -0.0063592, - 0.079909, - 0.075772, - 0.043567, - -0.012086, - 0.057254, - 0.054159, - 0.022896, - -0.0051388, - 0.012371, - -0.027426, - -0.023422, - 0.035454, - 0.050105, - -0.00117, - 0.065039, - 0.036094, - -0.034287, - -0.010621, - -0.070053, - -0.031412, - 0.00068344, - 0.046167, - -0.011113, - 0.047486, - -0.012277, - -0.04399, - -0.044219, - -0.055713, - -0.017562, - -0.030858, - -0.057132, - -0.065595, - 0.017224, - -0.01002, - 0.046829, - 0.0053029, - -0.0061966, - -0.0024618, - 0.01559, - 0.089895, - -0.0081572, - 0.095819, - -0.0041386, - -0.038149, - 0.027169, - -0.010321, - -0.0019218, - -0.045534, - -0.0079381, - 0.021566, - -0.0047812, - 0.029496, - 0.014588, - 0.051951, - -0.050655, - -0.019065, - -0.022563, - -0.011714, - -0.039582, - -0.01106, - 0.028336, - -0.02886, - -0.11006, - 0.098077, - 0.023356, - -0.00004537, - -0.041986, - 0.0050506, - 0.016208, - -0.039331, - 0.011713, - -0.038783, - 0.0066302, - -0.03179, - 0.032997, - 0.049823, - -0.04704, - 0.076193, - 0.054739, - -0.012444, - -0.0098496, - 0.016476, - -0.019951, - 0.010293, - -0.048853, - -0.053494, - 0.028343, - 0.065121, - 0.028323, - 0.0078756, - 0.046328, - -0.029426, - -0.014681, - 0.025588, - 0.015335, - -0.031992, - 0.07432, - 0.095183, - 0.0031736, - -0.016871, - 0.0048025, - 0.066046, - -0.0069051, - 0.017987, - 0.012143, - -0.0033684, - 0.071206, - 0.0049494, - 0.037845, - -0.025764, - 0.0003925, - -0.026133, - 0.079948, - 0.023096, - 0.053391, - -0.048813, - 0.03679, - -0.008819, - -0.024934, - -0.021985, - 0.032618, - 0.071418, - 0.011694, - -0.018097, - -0.025763, - -0.037789, - 0.019561, - -0.0070253, - 0.082159, - 0.017117, - -0.011167, - 0.08766, - 0.059263, - -0.062384, - 0.047363, - -0.048301, - -0.002012, - 0.057292, - 0.071814, - 0.016027, - 0.0030346, - 0.047013, - 0.044321, - 0.090958, - -0.07483, - 0.044728, - -0.0053438, - -0.028629, - 0.0017326, - -0.018872, - -0.06278, - -0.03814, - 0.036842, - -0.080873, - -0.047291, - -0.092758, - 0.041114, - 0.039804, - -0.013338, - 0.049348, - -0.04738, - 0.047941, - -0.018662, - 0.010784, - 0.11139, - -0.04076, - -0.02895, - 0.014571, - 0.021496, - -0.017822, - -0.019371, - -0.0088244, - 0.014982, - -0.0070604, - -0.0087565, - 0.017756, - -0.0014802, - -0.094161, - 0.042133, - 0.016492, - 0.0069596, - 0.021613, - 0.040574, - -0.071486, - 0.024382, - 0.060772, - -0.014671, - 0.04986, - 0.0090235, - 0.06737, - 0.0077065, - -0.002435, - -0.035965, - -0.0093866, - -0.043498, - -0.08434, - -0.019091, - -0.034811, - 0.039057, - 0.027157, - 0.036356, - 0.044366, - 0.010055, - 0.024822, - 0.025466, - 0.0025246, - -0.01143, - -0.044868, - -0.026024, - -0.021738, - 0.013121, - 0.02848, - -0.044134, - 0.021161, - -0.00099926, - -0.0059579, - 0.050084, - -0.026645, - 0.048526, - 0.0066152, - -0.096504, - 0.030493, - -0.030541, - 0.021556, - -0.08096, - -0.016682, - 0.010338, - 0.066817, - -0.027154, - -0.0060253, - 0.022583, - -0.023476, - 0.04423, - -0.040764, - -0.0085315, - 0.0083393, - 0.060089, - -0.0095717, - 0.033328, - -0.064839, - -0.027028, - 0.052795, - -0.034058, - -0.026869, - 0.015517, - 0.020059, - -0.0036131, - 0.030253, - 0.053049, - -0.088679, - -0.0098287, - 0.010443, - -0.03028, - -0.037001, - -0.0027667, - -0.033886, - 0.019796, - 0.030061, - -0.031535, - 0.032031, - -0.034123, - 0.01991, - -0.018667, - -0.045003, - 0.026513, - -0.0077238, - 0.014803, - 0.033943, - 0.028303, - 0.010367, - -0.023139, - 0.040405, - 0.039654, - -0.0077598, - 0.051051, - -0.044499, - -0.05747 - ], - "marketplace": [ - -0.016968, - -0.0060451, - 0.014988, - 0.066166, - -0.013811, - -0.013157, - 0.0039932, - -0.076098, - 0.018617, - 0.033047, - 0.01692, - -0.069373, - -0.011663, - 0.00056576, - -0.031969, - 0.057036, - 0.10254, - -0.019486, - 0.059712, - 0.02688, - 0.008453, - 0.010508, - 0.062307, - 0.064943, - -0.044747, - 0.00076228, - 0.01754, - -0.026391, - -0.052124, - -0.0046144, - -0.019775, - 0.0008575, - -0.028368, - -0.062715, - 0.0056362, - 0.017083, - 0.068356, - 0.0043575, - 0.026402, - 0.033092, - -0.024931, - -0.06927, - -0.040198, - 0.031935, - 0.016767, - -0.014793, - -0.029984, - 0.034064, - -0.03647, - 0.010118, - 0.01887, - -0.029164, - -0.0019702, - -0.00032722, - -0.059609, - 0.021436, - 0.011559, - 0.096252, - -0.0065745, - -0.0043869, - -0.0084342, - 0.027024, - 0.060537, - 0.066447, - 0.01697, - 0.025978, - -0.019629, - -0.018535, - 0.012915, - -0.043039, - 0.01243, - 0.026129, - -0.00044249, - 0.0017414, - -0.007913, - 0.046996, - -0.033949, - -0.017226, - 0.0087028, - 0.039628, - 0.016126, - 0.023715, - -0.009165, - 0.049562, - 0.025276, - -0.026893, - -0.012408, - -0.036575, - -0.022981, - -0.015788, - 0.030254, - 0.02326, - -0.085808, - 0.03122, - -0.013811, - 0.036547, - 0.056518, - -0.03953, - 0.023369, - 0.0028789, - -0.0081316, - -0.011089, - 0.0044857, - -0.0031076, - 0.017201, - -0.030355, - 0.0045791, - 0.05498, - -0.029356, - -0.0039996, - -0.028605, - 0.11301, - 0.037492, - 0.040247, - -0.021385, - -0.058943, - -0.02146, - 0.019691, - -0.039528, - 0.00055091, - -0.066381, - -0.04615, - 0.010724, - -0.0021763, - 0.022091, - -0.011733, - -0.0042531, - -0.073857, - 0.08805, - 0.064878, - 0.0020335, - 0.010218, - -0.0054114, - -0.025695, - 0.056003, - 0.0043517, - -0.038743, - 0.031536, - -0.017488, - -0.045452, - -0.0012192, - -0.01524, - -0.0346, - 0.00087833, - -0.0094629, - -0.00031039, - 0.014244, - -0.04589, - 0.015272, - 0.011484, - 0.011165, - 0.015941, - 0.012899, - -0.020815, - 0.023432, - 0.010507, - 0.0064889, - 0.019349, - -0.01543, - 0.0072939, - 0.031633, - 0.010235, - -0.044438, - -0.0065154, - 0.068911, - -0.0060667, - -0.011679, - -0.03132, - 0.027966, - -0.01749, - -0.041655, - 0.0055725, - 0.023028, - 0.0076726, - -0.0096116, - 0.017956, - -0.037966, - 0.045112, - -0.040593, - -0.0085339, - -0.001748, - -0.0001541, - -0.030291, - -0.052926, - -0.071433, - 0.03134, - -0.0044264, - 0.053768, - -0.01987, - -0.026263, - -0.064627, - 0.027414, - -0.012775, - -0.011557, - 0.018659, - -0.027083, - -0.00042431, - 0.023696, - 0.0031697, - 0.019995, - -0.1384, - 0.037101, - 0.019275, - 0.013981, - 0.009141, - -0.020142, - 0.014619, - 0.0055773, - 0.0083778, - 0.0036161, - 0.068843, - -0.015229, - 0.033758, - -0.026726, - -0.016997, - 0.053188, - 0.014097, - 0.0078889, - -0.0069867, - -0.052552, - 0.028522, - -0.040856, - -0.0030969, - 0.082806, - -0.05357, - -0.030113, - -0.0049366, - 0.008813, - 0.020711, - -0.0171, - 0.00065297, - -0.038286, - -0.036396, - 0.0011932, - 0.0055679, - -0.0057563, - 0.011666, - -0.0004668, - 0.059647, - -0.054349, - 0.048071, - 0.026134, - -0.0036173, - 0.027903, - 0.019499, - -0.012891, - -0.039976, - -0.017356, - 0.021267, - -0.02932, - 0.024532, - -0.022644, - -0.037711, - -0.0030124, - -0.016835, - 0.07028, - -0.042762, - 0.030838, - -0.019242, - 0.040984, - 0.0387, - 0.043031, - 0.017394, - -0.024829, - -0.017362, - 0.049975, - 0.056648, - 0.00073217, - 0.0028, - 0.0027145, - -0.00055452, - 0.053578, - -0.094613, - -0.050252, - 0.028139, - -0.021696, - -0.0051814, - 0.047561, - -0.046278, - -0.020321, - 0.038355, - -0.012007, - -0.01135, - 0.035053, - -0.0031633, - -0.020201, - -0.008856, - -0.035688, - -0.043492, - -0.043319, - -0.013488, - 0.011354, - -0.021886, - 0.0176, - -0.034815, - -0.042327, - 0.011793, - -0.0031927, - -0.014321, - -0.0011942 - ], - "medication": [ - -0.062918, - 0.0073694, - -0.038273, - 0.0023752, - 0.039241, - 0.0091367, - 0.006524, - -0.057369, - -0.038304, - -0.019106, - -0.033212, - 0.0073209, - 0.036072, - -0.021664, - 0.0077045, - -0.0024482, - 0.049224, - -0.019891, - 0.0032767, - 0.016529, - -0.017962, - 0.0016915, - 0.027879, - 0.011114, - -0.045747, - 0.0043724, - -0.003483, - 0.025959, - 0.00024072, - 0.043008, - 0.022159, - -0.00036841, - 0.026011, - -0.054703, - 0.018616, - 0.027122, - -0.0064868, - -0.035112, - 0.048807, - 0.0030024, - -0.00090618, - -0.11545, - -0.001755, - -0.0066128, - 0.047216, - -0.033731, - 0.042933, - 0.080011, - -0.035489, - 0.060765, - -0.024443, - -0.048903, - 0.0014123, - -0.021872, - -0.045538, - 0.040906, - -0.011619, - 0.015361, - -0.016509, - 0.027298, - 0.026596, - -0.014436, - 0.090404, - 0.0096889, - -0.071467, - -0.015305, - 0.048057, - -0.019398, - -0.036284, - -0.0036849, - -0.017876, - 0.035308, - -0.0020093, - -0.056102, - -0.067258, - 0.004688, - 0.022851, - -0.027993, - -0.039667, - -0.027867, - -0.025007, - -0.040131, - -0.00039761, - 0.043792, - -0.012921, - -0.007499, - 0.057797, - -0.022475, - 0.0033038, - -0.079574, - 0.043174, - 0.0024494, - -0.064246, - 0.0029742, - -0.028884, - 0.03411, - 0.028507, - -0.00044495, - 0.023557, - 0.021292, - 0.010127, - 0.022417, - 0.045991, - 0.023767, - -0.0071482, - -0.053944, - 0.00052436, - -0.0063971, - 0.0077446, - 0.003853, - -0.004063, - 0.037988, - 0.057656, - 0.0036069, - 0.033671, - 0.0048836, - -0.021343, - -0.024369, - -0.043164, - 0.04199, - 0.01465, - 0.073582, - 0.0047477, - -0.037971, - 0.049417, - -0.020179, - -0.007423, - -0.056049, - 0.0077346, - 0.092441, - -0.018156, - -0.0077914, - 0.0061119, - -0.037906, - 0.016986, - 0.044406, - -0.0039191, - 0.0019533, - 0.066005, - -0.018602, - 0.068209, - 0.0078564, - -0.065338, - 0.0061734, - -0.046568, - -0.017732, - 0.011383, - 0.027468, - 0.060073, - 0.010622, - 0.0083884, - 0.039403, - 0.013514, - -0.073149, - -0.0013859, - 0.039392, - -0.029335, - 0.0020321, - 0.077122, - -0.032413, - 0.050845, - 0.060181, - -0.05375, - 0.012817, - -0.016432, - -0.005653, - -0.011259, - -0.058977, - -0.0064083, - -0.057921, - 0.035799, - -0.00528, - 0.010821, - 0.0042179, - -0.0011485, - 0.038293, - -0.053809, - -0.06285, - -0.02207, - -0.011587, - 0.006772, - -0.031944, - -0.05062, - -0.043738, - 0.0031978, - -0.036281, - 0.022013, - 0.085271, - -0.057856, - -0.072275, - 0.011575, - 0.029695, - 0.010688, - -0.0026939, - -0.015885, - 0.0013174, - -0.0019711, - -0.022477, - 0.0049587, - -0.0055386, - -0.11684, - 0.051826, - 0.0092403, - -0.004535, - -0.015774, - -0.026027, - -0.0029011, - -0.043573, - -0.030922, - -0.038179, - 0.075634, - 0.014857, - 0.061827, - 0.081135, - 0.014547, - -0.022158, - -0.0018206, - 0.015245, - -0.039077, - -0.048891, - -0.00045493, - 0.0053497, - -0.037365, - 0.073969, - 0.045816, - 0.002105, - -0.047441, - 0.023751, - 0.021646, - 0.019144, - 0.0060972, - -0.041676, - -0.055977, - -0.046463, - 0.0083217, - 0.042424, - -0.012979, - -0.004119, - 0.033966, - -0.049993, - 0.042684, - 0.031009, - 0.030883, - 0.003868, - -0.027228, - -0.0034352, - 0.017709, - -0.016558, - 0.025368, - 0.024689, - 0.0012404, - 0.014538, - 0.046203, - 0.0040993, - 0.0036155, - -0.047718, - 0.052968, - -0.00080657, - -0.0027811, - -0.03729, - -0.0011541, - -0.019981, - -0.024601, - 0.0011616, - 0.013671, - -0.056547, - -0.025096, - -0.01109, - 0.02215, - 0.092135, - -0.073409, - 0.049411, - -0.083385, - -0.035125, - -0.030602, - -0.00049231, - -0.043228, - -0.0089411, - -0.06034, - 0.024642, - 0.092, - -0.042949, - -0.049958, - 0.0032272, - 0.0059856, - 0.06865, - 0.00060588, - 0.044734, - -0.0025796, - -0.02521, - 0.019884, - 0.0081302, - -0.013483, - -0.035053, - -0.068356, - -0.01469, - 0.016902, - -0.010194, - 0.01447, - 0.0027001 - ], - "rabbits": [ - 0.004325, - -0.013397, - 0.017024, - -0.031172, - -0.026179, - -0.032195, - -0.043936, - -0.068202, - 0.048567, - -0.0054457, - -0.04403, - -0.015051, - 0.0022119, - -0.0072339, - 0.0030418, - -0.019034, - 0.013924, - -0.019541, - 0.031993, - -0.020876, - 0.028095, - -0.056456, - -0.013683, - 0.05314, - 0.12962, - 0.025093, - -0.025244, - 0.03812, - 0.14742, - 0.11092, - -0.0076149, - -0.057211, - 0.023818, - 0.063819, - 0.035586, - 0.0038809, - 0.019218, - -0.14726, - 0.01031, - -0.063969, - 0.055878, - -0.059146, - -0.051582, - -0.075969, - 0.08009, - -0.027133, - 0.0095229, - -0.015255, - -0.030647, - -0.0133, - 0.046655, - 0.057546, - -0.016514, - -0.074084, - -0.065634, - -0.019936, - 0.038333, - -0.019804, - -0.047924, - 0.018199, - -0.014063, - -0.010346, - 0.083862, - 0.0060015, - 0.029711, - 0.060632, - 0.038087, - -0.038508, - -0.027932, - -0.031392, - -0.071206, - -0.039378, - 0.12501, - -0.031669, - -0.095766, - 0.064143, - -0.029139, - -0.026675, - -0.047954, - 0.009633, - -0.013304, - -0.04194, - -0.034099, - 0.038388, - 0.042439, - 0.0072946, - -0.026258, - -0.024468, - 0.032996, - 0.036869, - -0.032628, - -0.063759, - -0.068351, - 0.025757, - 0.036908, - 0.10247, - -0.026094, - 0.086019, - 0.071454, - 0.020997, - -0.011369, - 0.040148, - -0.020892, - 0.058297, - 0.039368, - -0.071592, - -0.010909, - -0.072728, - 0.028483, - -0.029966, - -0.075035, - 0.076432, - 0.066611, - -0.023273, - -0.0018043, - 0.030507, - 0.0083325, - 0.010667, - -0.048205, - -0.018442, - -0.062196, - 0.084928, - -0.094604, - -0.089488, - 0.11638, - 0.012581, - 0.0078255, - -0.045632, - -0.062717, - 0.065109, - 0.085675, - 0.09533, - -0.031347, - 0.040042, - 0.038741, - 0.012607, - -0.027681, - 0.078586, - 0.021153, - -0.023607, - 0.041754, - 0.066171, - 0.04092, - -0.0006849, - 0.043297, - -0.04333, - -0.0037574, - -0.042577, - -0.0066562, - -0.14455, - 0.0034113, - 0.1093, - -0.036266, - 0.036207, - 0.036939, - 0.0092973, - 0.0010143, - -0.078646, - -0.0062673, - -0.057806, - 0.050733, - 0.01174, - 0.02474, - -0.072436, - 0.046552, - 0.0013931, - 0.057784, - 0.039183, - 0.064686, - 0.0022021, - -0.047491, - -0.035505, - 0.0091395, - -0.0019066, - -0.056124, - 0.078816, - 0.022467, - 0.034276, - -0.040739, - 0.0080939, - 0.10265, - 0.033448, - -0.032813, - -0.083353, - -0.06966, - -0.04504, - 0.08658, - 0.14645, - 0.023917, - -0.046099, - -0.07021, - 0.027255, - -0.12217, - -0.075221, - 0.020188, - 0.04994, - 0.0010556, - 0.11673, - 0.01227, - 0.071126, - -0.13458, - 0.040706, - -0.042179, - -0.060776, - -0.013365, - -0.017069, - -0.0043439, - 0.038871, - -0.062278, - -0.074944, - 0.11473, - -0.032299, - 0.078467, - -0.00078123, - 0.033375, - -0.020648, - -0.0088512, - -0.021079, - -0.0091883, - 0.021301, - -0.0081053, - 0.016355, - 0.020445, - 0.061134, - 0.084449, - -0.021485, - 0.06037, - 0.028107, - -0.032833, - 0.008121, - -0.04837, - -0.019283, - -0.081969, - -0.067133, - 0.045239, - 0.043943, - 0.079031, - -0.0046024, - -0.028272, - 0.0040935, - -0.062458, - 0.0058591, - -0.0463, - -0.032136, - 0.038752, - 0.17011, - -0.013769, - -0.020017, - 0.0055974, - -0.01108, - -0.010439, - 0.020402, - 0.083205, - -0.026989, - -0.027717, - 0.0017861, - -0.019764, - -0.045059, - 0.087707, - 0.034439, - -0.0080555, - 0.031738, - 0.069474, - -0.065257, - 0.033358, - 0.044997, - 0.018956, - 0.038408, - 0.049888, - -0.034309, - -0.042846, - 0.086913, - -0.098014, - -0.0005209, - 0.005775, - -0.02972, - 0.087842, - 0.011546, - -0.026701, - -0.058081, - 0.012337, - 0.068119, - 0.0037233, - 0.0097381, - -0.016129, - -0.011956, - 0.1092, - -0.02857, - -0.024274, - -0.053579, - 0.0064468, - 0.039088, - -0.10716, - -0.066592, - -0.076033, - -0.028893, - 0.034601, - 0.030267, - -0.026949, - 0.13422 - ], - "cinema": [ - -0.0067065, - -0.11801, - 0.013823, - 0.022706, - 0.011237, - 0.025412, - 0.016017, - -0.072463, - 0.10148, - -0.012802, - 0.080881, - -0.050104, - 0.14897, - -0.090491, - -0.12938, - -0.040269, - 0.18015, - 0.023447, - 0.05202, - 0.0080714, - 0.021724, - -0.055576, - 0.027147, - 0.043074, - 0.013865, - 0.065312, - -0.025214, - 0.0041089, - -0.030708, - 0.059704, - 0.0038326, - 0.020408, - -0.019568, - -0.019576, - 0.041911, - 0.032146, - 0.04191, - 0.071062, - 0.0071038, - -0.0085363, - -0.025952, - -0.15101, - -0.027268, - 0.012336, - 0.060406, - -0.018701, - 0.070452, - -0.030156, - -0.013385, - 0.028275, - 0.0284, - -0.028504, - 0.022884, - -0.01488, - -0.097685, - -0.00069931, - 0.024182, - 0.0045512, - -0.061859, - -0.01499, - 0.073601, - 0.0059541, - 0.072822, - 0.054013, - 0.067422, - 0.097288, - 0.0058338, - -0.045991, - -0.0010314, - 0.047587, - 0.041258, - -0.075914, - 0.033732, - 0.025471, - 0.05697, - -0.056947, - -0.00803, - -0.0050533, - 0.063578, - 0.069432, - -0.023331, - 0.028832, - -0.088149, - 0.057943, - -0.088259, - -0.038862, - -0.033241, - -0.047541, - -0.044235, - -0.01451, - -0.010226, - 0.055611, - -0.10977, - 0.033627, - 0.056028, - 0.11718, - -0.047265, - 0.038612, - -0.019552, - 0.03351, - 0.10337, - -0.0030924, - -0.092645, - -0.0889, - 0.015053, - -0.12722, - 0.0028184, - 0.052652, - -0.064724, - 0.086609, - -0.057325, - 0.097701, - 0.054155, - 0.0092249, - -0.015216, - 0.015454, - -0.0014731, - 0.021064, - -0.037559, - 0.11139, - -0.018914, - -0.032897, - -0.1079, - -0.019868, - 0.049039, - 0.044462, - -0.030102, - -0.092606, - 0.12744, - 0.11023, - -0.0094382, - 0.03384, - -0.0094966, - -0.025128, - -0.00044194, - -0.0068553, - -0.01633, - -0.0060013, - 0.039503, - -0.015231, - 0.053342, - -0.005983, - 0.13329, - 0.11564, - 0.012942, - -0.051522, - -0.1205, - -0.1074, - -0.0061811, - 0.030039, - 0.062762, - 0.065441, - -0.00099462, - -0.04241, - -0.08371, - -0.032177, - 0.024898, - 0.1482, - 0.050428, - 0.049408, - 0.032891, - -0.076047, - -0.064832, - 0.041429, - -0.1278, - 0.058457, - 0.013803, - -0.029789, - -0.010301, - 0.023684, - 0.073883, - -0.014504, - -0.062379, - 0.07914, - 0.027957, - 0.058596, - -0.044848, - -0.005978, - -0.02906, - -0.047295, - 0.027094, - -0.004493, - -0.048883, - -0.085441, - -0.04355, - -0.0088515, - 0.072069, - 0.10946, - 0.007632, - -0.055755, - -0.036209, - 0.085178, - 0.0083142, - -0.066509, - -0.05782, - 0.074726, - -0.049474, - -0.048828, - 0.022514, - 0.048736, - -0.17761, - 0.067046, - -0.077526, - -0.064343, - 0.076563, - 0.037809, - 0.050948, - 0.022651, - -0.1031, - -0.0040599, - 0.13068, - -0.016261, - 0.019045, - 0.029373, - 0.0049642, - 0.052633, - 0.017875, - -0.013757, - 0.042854, - -0.020392, - 0.05518, - 0.039875, - -0.043999, - 0.094672, - -0.032926, - -0.10042, - 0.078299, - 0.049074, - -0.0072785, - -0.011863, - -0.0072105, - -0.032702, - -0.038151, - 0.040256, - 0.0068103, - -0.066183, - -0.031687, - -0.052283, - 0.10398, - -0.027052, - 0.047213, - -0.045993, - -0.013831, - 0.05663, - 0.054482, - -0.015678, - -0.028395, - -0.0081981, - -0.034616, - 0.0028642, - 0.016972, - -0.068752, - -0.078465, - 0.065647, - -0.019503, - 0.027265, - -0.12685, - 0.0077922, - 0.013453, - 0.029855, - 0.057597, - 0.015224, - 0.08502, - -0.013598, - -0.0058075, - -0.015148, - -0.0029878, - -0.010002, - 0.023851, - 0.002261, - 0.052976, - 0.097048, - -0.1108, - -0.013499, - -0.045413, - -0.03692, - 0.077609, - 0.14243, - -0.040302, - -0.010376, - 0.11625, - 0.024467, - -0.02487, - -0.056143, - -0.046611, - -0.00080796, - -0.012041, - -0.053898, - 0.12411, - -0.031593, - 0.075712, - 0.017636, - -0.027141, - -0.02382, - -0.028888, - 0.031986, - 0.014981, - 0.049723, - 0.072111, - 0.054923 - ], - "taste": [ - -0.026456, - 0.014271, - 0.045056, - 0.0058062, - -0.081583, - -0.0029301, - -0.047808, - -0.096701, - 0.085731, - 0.062656, - -0.055618, - -0.049349, - -0.059, - -0.050167, - -0.004035, - -0.011474, - 0.07518, - 0.048653, - 0.047495, - 0.10017, - 0.0031859, - 0.04233, - 0.067395, - 0.11689, - -0.061686, - -0.10812, - 0.022713, - 0.066382, - -0.032762, - -0.051625, - -0.043138, - -0.053839, - 0.04359, - -0.067508, - -0.036383, - -0.036132, - 0.01645, - 0.104, - -0.053735, - 0.057829, - -0.026945, - -0.07526, - -0.13669, - -0.047796, - 0.025566, - -0.11567, - 0.022496, - -0.043195, - -0.035894, - 0.049238, - 0.018754, - 0.0041159, - 0.083165, - -0.093359, - -0.081233, - 0.011391, - 0.081462, - -0.037276, - -0.042819, - -0.028551, - 0.016054, - -0.0074904, - 0.13871, - 0.085631, - 0.032441, - 0.10732, - -0.067898, - 0.06288, - -0.048543, - -0.01678, - 0.0683, - -0.0051313, - 0.048574, - 0.045398, - -0.026581, - -0.0083579, - 0.0063868, - -0.033119, - 0.0014216, - 0.039523, - -0.086396, - 0.022163, - 0.094755, - 0.065006, - -0.077086, - -0.091334, - 0.012806, - 0.01081, - -0.046343, - 0.0091896, - 0.071331, - 0.0065254, - -0.10786, - -0.025154, - 0.010977, - 0.018655, - -0.016732, - 0.1131, - 0.074336, - 0.088216, - 0.035916, - 0.090416, - 0.0053195, - 0.034842, - 0.013401, - -0.1028, - -0.090731, - -0.025273, - 0.045187, - 0.10392, - 0.00030345, - 0.040559, - 0.064478, - 0.037093, - -0.0059501, - -0.045115, - 0.011267, - 0.018079, - -0.11354, - 0.043148, - -0.024954, - -0.025249, - -0.036882, - -0.085658, - 0.075148, - -0.0049051, - -0.056745, - -0.095005, - 0.0061283, - 0.14332, - 0.0060066, - -0.082732, - 0.028453, - -0.064688, - -0.04266, - -0.073198, - -0.054152, - 0.082921, - 0.0084101, - -0.024218, - -0.024907, - -0.026975, - 0.0031704, - 0.0037486, - 0.013328, - -0.091162, - 0.051704, - 0.048139, - -0.01765, - 0.01461, - 0.068965, - 0.076555, - 0.12006, - 0.00095113, - -0.047563, - -0.0027147, - -0.059467, - 0.054298, - 0.013793, - -0.041035, - 0.054125, - -0.043345, - -0.11722, - -0.041926, - 0.052932, - 0.085462, - -0.038266, - -0.051771, - 0.067685, - -0.017088, - -0.029558, - -0.020633, - 0.0010302, - -0.047706, - 0.047891, - 0.11101, - 0.017278, - 0.052187, - -0.011375, - -0.11687, - 0.0096869, - -0.036774, - -0.025793, - -0.13797, - 0.025379, - -0.12175, - 0.077883, - 0.12491, - -0.033182, - -0.031607, - 0.072328, - 0.12051, - -0.018923, - -0.067272, - -0.085039, - 0.059921, - 0.048934, - -0.0059627, - 0.022141, - 0.025136, - -0.13442, - 0.025381, - -0.018511, - -0.084992, - -0.066549, - -0.034111, - 0.052586, - 0.083936, - 0.035574, - 0.0091978, - 0.064665, - -0.024908, - -0.0091976, - -0.075168, - 0.061478, - -0.017033, - 0.077926, - -0.034128, - -0.14533, - -0.077272, - -0.12522, - -0.04023, - -0.019097, - 0.11167, - 0.12411, - 0.05225, - 0.065915, - 0.14284, - -0.020003, - -0.036266, - -0.023611, - -0.064416, - -0.15645, - 0.011107, - 0.012834, - 0.021299, - -0.050736, - -0.11652, - 0.13437, - -0.095461, - 0.15313, - -0.049409, - 0.020246, - -0.02757, - -0.10097, - 0.046757, - 0.026644, - -0.1315, - -0.026888, - -0.04125, - 0.051765, - -0.054607, - -0.07962, - 0.012139, - 0.10787, - 0.0022399, - 0.0021938, - 0.046879, - -0.0025015, - 0.037705, - 0.0035764, - 0.046941, - 0.014792, - -0.086235, - -0.049796, - 0.000069924, - -0.023482, - 0.082363, - 0.02751, - 0.1055, - 0.039172, - 0.096603, - -0.14361, - -0.07351, - 0.12106, - -0.034057, - -0.018502, - 0.018191, - -0.0051426, - -0.012943, - 0.12817, - 0.02578, - -0.031447, - -0.059625, - -0.0061183, - 0.007886, - 0.032036, - 0.086712, - 0.042195, - 0.066488, - -0.082409, - 0.013441, - -0.058486, - 0.089024, - 0.010089, - -0.034898, - -0.0032832, - 0.001942, - -0.10298, - 0.0016693 - ], - "canines": [ - -0.071342, - -0.049693, - 0.085839, - -0.049622, - -0.043448, - 0.083172, - 0.0042568, - -0.11577, - -0.048848, - 0.10521, - 0.018567, - -0.018963, - 0.061514, - -0.041496, - -0.02186, - -0.033436, - 0.07743, - 0.07009, - 0.033328, - 0.0013361, - 0.056908, - -0.10413, - 0.067083, - 0.051184, - 0.041262, - 0.010634, - -0.013242, - 0.032727, - 0.12664, - -0.034704, - -0.079236, - -0.039452, - 0.067745, - 0.022943, - 0.036074, - 0.043554, - -0.014352, - -0.027211, - -0.013594, - -0.041736, - -0.06352, - -0.045742, - 0.11523, - -0.011908, - 0.12164, - -0.036579, - 0.0087595, - 0.061707, - 0.032251, - -0.068347, - 0.0093862, - 0.06639, - -0.0058782, - -0.07517, - -0.1211, - -0.070761, - 0.0075408, - -0.023995, - -0.038987, - -0.00019912, - 0.051076, - -0.089468, - 0.16019, - -0.0079364, - 0.0060995, - 0.018804, - -0.042227, - -0.0033717, - -0.026321, - -0.07206, - 0.01118, - -0.051937, - 0.086622, - -0.057565, - -0.02825, - 0.08587, - -0.043145, - -0.031214, - -0.052076, - 0.0091932, - 0.0016709, - -0.0012709, - 0.041807, - 0.061132, - 0.039083, - -0.10185, - -0.0049258, - -0.024214, - 0.047665, - 0.036035, - -0.022821, - -0.095544, - -0.059254, - 0.064978, - 0.075301, - 0.071525, - -0.055805, - 0.056924, - 0.025258, - 0.03014, - 0.004516, - 0.055955, - 0.0091103, - -0.054054, - 0.073439, - -0.077944, - -0.02032, - -0.03884, - 0.070004, - -0.035078, - 0.0030956, - 0.023938, - 0.013781, - -0.031874, - -0.010857, - 0.022563, - -0.025607, - 0.016749, - -0.093086, - 0.074089, - -0.0273, - 0.068045, - 0.010479, - -0.065094, - 0.1198, - 0.035142, - 0.023006, - -0.0176, - 0.0084573, - 0.022848, - 0.11134, - 0.0087741, - -0.029872, - -0.0018199, - 0.065054, - -0.092456, - -0.092298, - 0.053195, - 0.036703, - -0.0073232, - -0.032179, - -0.0063785, - -0.0036914, - -0.020704, - -0.025117, - -0.023699, - 0.047274, - 0.0044044, - -0.010156, - -0.067209, - 0.018894, - 0.14306, - 0.032204, - 0.070494, - 0.023241, - -0.016591, - -0.16053, - 0.031499, - 0.0021675, - -0.023978, - -0.016642, - -0.071364, - 0.028264, - -0.016668, - 0.075692, - 0.012361, - -0.0075727, - 0.052236, - -0.079511, - -0.01959, - 0.034179, - -0.064599, - 0.046792, - 0.01018, - -0.043577, - 0.033124, - 0.067353, - 0.031544, - -0.046135, - -0.027001, - -0.0062698, - -0.086086, - -0.052508, - -0.01814, - 0.00075241, - -0.033756, - 0.090412, - 0.083584, - -0.0010438, - -0.0072603, - -0.0020065, - 0.095037, - -0.098527, - -0.078081, - -0.045593, - 0.10508, - -0.027401, - 0.052787, - 0.06367, - -0.0088246, - -0.15794, - 0.09769, - 0.018719, - 0.064554, - 0.025412, - -0.096372, - 0.04778, - 0.0041013, - -0.07193, - -0.06642, - 0.065041, - -0.00098087, - 0.081974, - -0.038969, - -0.036671, - 0.015187, - -0.0012522, - -0.099147, - -0.052025, - -0.0030379, - -0.034748, - -0.022656, - -0.022935, - 0.071433, - 0.033895, - -0.0018447, - 0.02229, - 0.076247, - 0.0080097, - -0.022941, - -0.0057449, - -0.041932, - -0.1023, - -0.044457, - 0.064068, - -0.06347, - 0.035999, - -0.049759, - -0.086215, - 0.029202, - -0.049286, - 0.065286, - 0.055537, - -0.010412, - -0.053804, - 0.1264, - 0.0086992, - -0.016393, - -0.0032351, - -0.094232, - -0.071105, - 0.069521, - -0.049801, - 0.019198, - -0.027401, - 0.029034, - 0.10163, - -0.01424, - 0.035816, - -0.050757, - -0.047112, - -0.065253, - -0.023669, - -0.018848, - 0.017835, - -0.0043544, - 0.0057692, - 0.023245, - 0.01283, - 0.013827, - -0.019865, - 0.085099, - -0.11589, - -0.051287, - 0.031464, - -0.068054, - -0.047284, - 0.02621, - 0.05908, - -0.024039, - -0.047488, - 0.058524, - 0.032435, - 0.072785, - 0.039719, - -0.0062429, - 0.0077376, - 0.0333, - 0.0197, - -0.0046449, - -0.0087254, - -0.016077, - -0.048779, - -0.12825, - 0.040093, - -0.0072369, - -0.020479, - 0.091982, - -0.013833, - 0.019001 - ], - "handset": [ - 0.0022664, - -0.021037, - -0.00031161, - -0.020874, - 0.026118, - 0.013246, - 0.05946, - -0.080959, - 0.036353, - 0.029594, - 0.0017871, - 0.032253, - -0.071684, - 0.018902, - 0.0091269, - -0.043708, - 0.080165, - -0.038941, - 0.050638, - -0.053469, - 0.00026959, - -0.07682, - -0.01263, - 0.062886, - 0.076434, - -0.000046951, - 0.047824, - 0.0053255, - -0.021543, - -0.058443, - -0.077426, - 0.063798, - 0.10323, - -0.036305, - -0.020045, - -0.013594, - 0.0034376, - 0.025502, - 0.0043781, - -0.0032755, - 0.03708, - -0.1768, - -0.020593, - 0.013002, - 0.013159, - 0.022741, - -0.041422, - -0.059701, - -0.0033832, - -0.067482, - 0.035703, - -0.018171, - -0.045132, - -0.064008, - -0.0602, - 0.070585, - 0.0066009, - 0.030493, - -0.023751, - 0.031082, - -0.042207, - 0.012549, - 0.1459, - 0.035819, - 0.044861, - -0.0084833, - 0.015435, - 0.055624, - -0.12269, - 0.003829, - -0.033069, - -0.036899, - 0.024148, - 0.011981, - -0.10857, - 0.03143, - 0.038875, - 0.036718, - -0.014867, - -0.054889, - 0.00044489, - -0.080198, - -0.022645, - 0.097167, - -0.023164, - -0.071372, - -0.058483, - -0.024985, - -0.092936, - 0.0028174, - 0.011523, - 0.033449, - -0.076507, - -0.00044371, - 0.014673, - 0.068118, - 0.021369, - -0.16052, - -0.022475, - 0.027768, - 0.023743, - 0.033494, - -0.0024591, - 0.10572, - -0.013103, - -0.091909, - -0.0043554, - 0.028429, - 0.026418, - 0.0072779, - 0.024778, - 0.0646, - 0.060343, - 0.03905, - -0.076478, - -0.035107, - -0.0068754, - 0.011639, - -0.06946, - -0.10188, - 0.053569, - 0.078804, - -0.025535, - -0.027999, - 0.088722, - 0.096771, - -0.022027, - -0.080908, - 0.1002, - 0.066991, - 0.011621, - -0.026302, - -0.033218, - -0.090017, - 0.02311, - 0.017094, - 0.0032699, - 0.01671, - -0.084066, - 0.048162, - 0.026506, - 0.030358, - 0.036563, - -0.030232, - -0.042167, - -0.03327, - -0.034425, - 0.078749, - 0.092533, - -0.010762, - -0.014268, - 0.033678, - 0.006003, - -0.11728, - -0.023555, - 0.039451, - -0.049976, - -0.038238, - 0.0058013, - 0.019342, - 0.075725, - -0.019418, - -0.016317, - 0.013961, - 0.034541, - -0.026232, - -0.0072131, - 0.039044, - -0.028646, - 0.054141, - -0.024151, - 0.21417, - -0.029824, - 0.062112, - -0.06005, - 0.065913, - 0.032094, - -0.035163, - -0.0073643, - -0.057198, - -0.059721, - -0.028133, - -0.010053, - -0.027526, - 0.032404, - -0.037521, - -0.039549, - 0.14756, - 0.053674, - 0.045479, - -0.024709, - 0.055897, - -0.02025, - -0.031805, - 0.026868, - -0.05421, - 0.008561, - 0.0091025, - 0.046888, - 0.05149, - -0.18131, - 0.052545, - -0.0047376, - 0.024911, - -0.054367, - 0.050362, - 0.011225, - 0.0086705, - -0.040972, - -0.03939, - 0.11415, - -0.0024094, - 0.037055, - 0.016202, - -0.028652, - -0.0097803, - -0.015482, - 0.083228, - 0.012519, - -0.047942, - 0.053383, - -0.05844, - 0.05865, - 0.067294, - 0.0010076, - -0.085436, - 0.027831, - -0.013827, - 0.007312, - 0.03161, - 0.035741, - -0.020399, - -0.023656, - -0.022185, - 0.031858, - 0.051478, - 0.014919, - -0.059089, - 0.11261, - -0.019674, - 0.077214, - -0.01536, - -0.019811, - 0.019067, - -0.0035225, - -0.059759, - 0.020037, - 0.033842, - 0.051098, - -0.012519, - -0.039226, - 0.03071, - -0.074162, - 0.079858, - 0.043029, - 0.00054014, - -0.021775, - 0.033227, - -0.076286, - 0.043742, - -0.036311, - -0.028294, - -0.019548, - 0.0013512, - 0.0020198, - -0.0053226, - -0.021872, - -0.0042344, - 0.085137, - 0.094967, - -0.018388, - 0.061293, - -0.10999, - -0.062263, - 0.048617, - -0.0081879, - 0.024561, - 0.02578, - 0.024577, - 0.028256, - 0.123, - -0.063016, - -0.0037005, - 0.05787, - -0.018469, - -0.11239, - -0.16257, - 0.031399, - 0.046157, - -0.060835, - -0.03851, - 0.012182, - -0.090479, - 0.012316, - 0.067254, - 0.017403, - 0.0098458, - -0.024674, - 0.007496, - -0.024755 - ], - "multimillion-dollar": [ - -0.017079, - -0.0071541, - -0.0092256, - 0.0088768, - -0.014092, - -0.0025805, - -0.022791, - -0.049281, - -0.0091955, - 0.042496, - -0.011869, - -0.01525, - -0.01838, - 0.0098073, - -0.043405, - 0.024653, - 0.049051, - 0.021719, - 0.01211, - 0.028982, - 0.0084097, - 0.0020305, - -0.014744, - 0.0011869, - 0.025657, - -0.038, - 0.031528, - 0.025639, - 0.030757, - 0.0052702, - -0.02076, - -0.0072085, - -0.0022228, - -0.055833, - 0.012694, - 0.04665, - -0.016705, - -0.0096407, - 0.00032074, - -0.0063066, - -0.034823, - -0.058489, - -0.027547, - 0.039031, - 0.02384, - 0.033508, - 0.012506, - 0.037833, - -0.019447, - 0.021335, - -0.0033097, - 0.0098307, - -0.033204, - 0.014401, - -0.0035322, - 0.018824, - -0.026292, - -0.0052385, - -0.0064252, - -0.020111, - 0.016107, - 0.015685, - 0.048937, - 0.015419, - 0.016096, - 0.0063018, - 0.0076564, - -0.0061534, - 0.0053519, - -0.0042932, - 0.034546, - 0.0062478, - 0.0024879, - 0.014843, - 0.015295, - 0.0090971, - 0.033327, - 0.0060039, - -0.0083338, - -0.0079614, - -0.013327, - -0.026868, - -0.018404, - 0.029286, - -0.015129, - -0.026779, - -0.039076, - -0.011472, - 0.0079757, - -0.0064808, - -0.0086363, - -0.011258, - -0.066828, - 0.0063868, - -0.0040356, - 0.006948, - -0.033376, - -0.030873, - -0.020117, - -0.0011833, - -0.032185, - 0.0068207, - 0.00074143, - -0.013426, - 0.0068403, - -0.01923, - 0.010225, - 0.0068759, - -0.0076611, - 0.016741, - 0.000018363, - 0.0026394, - 0.034027, - 0.0072985, - 0.030523, - -0.026149, - 0.0040165, - 0.0097276, - -0.020375, - 0.0022748, - -0.0091276, - -0.0096255, - 0.011214, - -0.0067376, - 0.023807, - 0.012516, - -0.0022223, - -0.014665, - 0.0045521, - 0.016357, - 0.0072835, - -0.023187, - -0.017483, - -0.009412, - 0.031523, - -0.015264, - 0.0025479, - 0.030545, - -0.019314, - 0.0013238, - 0.020227, - 0.027781, - 0.0051884, - 0.026983, - -0.023129, - -0.038204, - 0.015759, - -0.0084089, - 0.0010996, - -0.021619, - 0.013488, - 0.083589, - 0.017462, - -0.010471, - -0.0029628, - -0.016347, - 0.017038, - 0.0096036, - 0.00011321, - -0.019587, - 0.025635, - 0.018779, - 0.0031619, - 0.0052836, - -0.024639, - 0.0099263, - -0.023948, - -0.010558, - -0.030745, - 0.0016939, - 0.036423, - -0.014173, - -0.0043605, - 0.036325, - -0.036987, - 0.026373, - -0.02067, - 0.00077282, - -0.02735, - 0.026878, - 0.013353, - -0.013283, - 0.007758, - 0.006802, - -0.013008, - 0.002448, - -0.0031151, - 0.082889, - -0.0064083, - -0.0018544, - -0.031524, - 0.0052473, - 0.055211, - -0.0060194, - -0.021059, - -0.0070603, - 0.0042508, - 0.031542, - 0.013069, - -0.047935, - -0.074988, - 0.063893, - -0.013368, - -0.038496, - 0.027062, - -0.024795, - 0.020718, - -0.023068, - 0.0028888, - 0.0070916, - 0.093349, - 0.011121, - 0.00026103, - 0.0041649, - 0.02225, - -0.037879, - -0.014736, - -0.0050291, - 0.0066996, - -0.015695, - 0.00065367, - -0.0050286, - 0.00050042, - 0.037744, - 0.0020293, - -0.0072065, - -0.012368, - 0.010498, - -0.023586, - -0.066744, - -0.032239, - -0.072843, - 0.011133, - -0.0028813, - 0.015142, - 0.022726, - -0.0089886, - -0.024693, - -0.021869, - 0.03072, - 0.017811, - -0.029757, - 0.0061513, - 0.014207, - -0.10377, - 0.0060922, - -0.0075102, - 0.0046743, - 0.031336, - 0.012036, - -0.048415, - -0.010634, - 0.0080329, - -0.026241, - -0.02531, - 0.084586, - -0.029761, - -0.073902, - -0.0057201, - 0.010958, - -0.0038096, - 0.00049906, - -0.0038625, - -0.03014, - 0.00026146, - 0.0018949, - -0.0059117, - -0.023256, - 0.033694, - 0.023816, - -0.018141, - 0.039044, - -0.048042, - -0.0080851, - -0.011789, - -0.042383, - -0.02667, - 0.024511, - 0.012337, - 0.022694, - 0.10609, - 0.021449, - -0.024436, - 0.0020283, - -0.052052, - -0.011111, - -0.0045315, - 0.013298, - -0.046393, - 0.011273, - -0.0049101, - 0.011655, - 0.015282, - 0.0018899, - -0.0095628, - -0.038008, - -0.020789, - 0.020832, - -0.035179, - -0.002289 - ], - "decrypt": [ - 0.060987, - 0.016425, - -0.070255, - 0.096984, - 0.036992, - 0.019536, - 0.0059539, - -0.075173, - -0.052622, - -0.0039749, - 0.029893, - -0.0030337, - -0.098623, - -0.0037124, - -0.099625, - 0.037169, - 0.089024, - -0.0068402, - 0.093848, - 0.015489, - -0.034911, - 0.062177, - -0.029604, - 0.04754, - -0.039122, - 0.059228, - 0.03327, - -0.0084932, - -0.046156, - 0.014758, - -0.029924, - 0.01092, - -0.060337, - 0.094544, - 0.010219, - -0.046234, - -0.058614, - -0.030364, - 0.041401, - -0.039687, - -0.0098497, - -0.071335, - 0.04785, - -0.069139, - 0.061632, - -0.006695, - -0.016327, - 0.018667, - 0.013857, - 0.028887, - -0.013551, - -0.084428, - 0.036758, - -0.024242, - -0.090917, - -0.037184, - 0.0066315, - 0.039009, - 0.050504, - -0.030401, - -0.023373, - -0.07209, - 0.11178, - -0.064744, - -0.052505, - 0.0055156, - 0.11829, - 0.067723, - -0.013961, - 0.0061621, - -0.045721, - 0.018565, - 0.067228, - 0.070426, - -0.047595, - -0.011152, - 0.0219, - 0.046326, - -0.0091387, - -0.015565, - -0.0053649, - -0.037479, - 0.010945, - 0.023204, - -0.0441, - 0.03141, - 0.084975, - -0.034181, - 0.099855, - 0.034591, - 0.032171, - -0.086205, - -0.056139, - 0.044182, - 0.0068847, - -0.047111, - 0.068353, - -0.036887, - 0.028357, - 0.10902, - 0.021566, - 0.01907, - 0.067612, - 0.044102, - 0.02166, - -0.087402, - 0.076805, - 0.044619, - 0.076548, - 0.01632, - 0.022677, - 0.11039, - 0.070529, - 0.015079, - 0.026469, - -0.058285, - 0.099916, - 0.11297, - 0.012019, - 0.041054, - 0.16299, - 0.035024, - -0.062318, - -0.0040016, - 0.057616, - -0.082647, - -0.020888, - -0.0003591, - -0.030642, - 0.099335, - -0.072597, - 0.028804, - 0.042287, - -0.021475, - 0.072025, - -0.075426, - 0.00088441, - -0.032685, - 0.0096345, - 0.0015487, - 0.04225, - 0.070837, - -0.011768, - -0.030396, - -0.088292, - -0.027933, - -0.13917, - -0.12432, - -0.022103, - 0.0037141, - -0.039308, - 0.081206, - 0.012666, - -0.013041, - 0.073615, - -0.06431, - -0.049515, - -0.02327, - 0.025065, - 0.011665, - 0.048775, - -0.025698, - -0.065258, - 0.062819, - 0.0093846, - -0.12858, - -0.024796, - 0.067153, - 0.053162, - -0.0098135, - 0.082744, - 0.059836, - -0.037118, - -0.024876, - -0.019546, - 0.051589, - 0.064942, - -0.048368, - -0.050816, - 0.021158, - -0.018533, - -0.055139, - -0.0079486, - -0.022303, - 0.035757, - -0.075331, - -0.064469, - 0.15677, - 0.053692, - 0.064741, - 0.043951, - -0.0063144, - -0.057854, - 0.011155, - 0.056181, - 0.054011, - -0.030636, - -0.0038836, - -0.079871, - 0.023459, - -0.11464, - 0.019614, - -0.12125, - 0.076483, - 0.00072605, - -0.072547, - 0.10573, - 0.0058409, - -0.038384, - -0.020563, - 0.018899, - 0.012327, - 0.025831, - 0.042703, - 0.045234, - 0.084179, - -0.094174, - 0.047646, - -0.078576, - 0.058829, - 0.11221, - 0.046637, - 0.0015203, - 0.072392, - -0.011574, - -0.058717, - 0.059159, - 0.030829, - -0.012218, - 0.044897, - 0.0080408, - -0.10663, - -0.069426, - -0.098901, - 0.022664, - -0.13877, - -0.054465, - 0.0062615, - 0.029854, - 0.032278, - 0.22234, - -0.079849, - 0.00096039, - 0.00074729, - -0.09795, - 0.03921, - -0.032324, - 0.032631, - -0.0014261, - 0.087334, - 0.035966, - -0.021257, - -0.04945, - 0.034502, - -0.00027855, - 0.019468, - 0.045148, - 0.013956, - -0.077482, - -0.034078, - -0.00057056, - -0.0088826, - -0.014989, - -0.12411, - 0.057582, - -0.086264, - 0.069299, - 0.024066, - 0.034919, - 0.04222, - 0.070282, - 0.064031, - -0.071558, - -0.078078, - -0.11815, - 0.0025155, - 0.083252, - -0.067298, - -0.0032324, - -0.0012571, - -0.031511, - -0.037566, - -0.050458, - -0.012202, - 0.0049743, - -0.051834, - -0.027014, - 0.016464, - 0.016647, - 0.03128, - -0.077381, - 0.012968, - -0.034645, - 0.059029, - 0.047717, - -0.04167, - -0.017254, - -0.10292, - -0.018313, - 0.023993 - ], - "biosciences": [ - -0.052468, - -0.084141, - -0.0019866, - -0.019029, - -0.0076349, - 0.0018086, - 0.051854, - -0.096994, - 0.043318, - 0.013722, - -0.0092447, - -0.036094, - 0.057001, - -0.014449, - 0.030009, - 0.023114, - 0.12894, - 0.040465, - 0.051849, - -0.016601, - 0.042845, - 0.043646, - 0.093249, - 0.048478, - 0.018442, - -0.062535, - -0.01117, - 0.016826, - 0.036297, - 0.048602, - 0.020586, - 0.012662, - -0.00010626, - -0.048699, - -0.0030301, - 0.052807, - 0.01281, - -0.046347, - 0.04784, - 0.0050825, - -0.035096, - -0.088886, - -0.0176, - -0.067583, - 0.041762, - -0.072954, - -0.017437, - -0.018843, - 0.0153, - 0.024969, - -0.014312, - 0.013127, - 0.0048549, - 0.027519, - -0.076442, - 0.012306, - -0.026532, - 0.039671, - 0.014019, - 0.031758, - -0.0024668, - 0.047186, - 0.074737, - 0.015737, - 0.033105, - -0.0069354, - 0.035336, - -0.038413, - 0.0050472, - -0.032655, - 0.018427, - 0.005647, - 0.023718, - 0.016423, - -0.044688, - 0.0012267, - -0.024948, - -0.023733, - 0.0046848, - 0.0041163, - -0.0019982, - 0.015623, - -0.03959, - -0.0048712, - -0.049304, - 0.02891, - 0.0311, - -0.0021587, - 0.018481, - 0.048173, - 0.032155, - 0.025813, - -0.080608, - 0.047873, - 0.01177, - 0.099584, - 0.059974, - 0.0043138, - -0.016578, - 0.034513, - -0.043119, - -0.0066037, - -0.013362, - -0.020077, - 0.014583, - -0.018811, - -0.036447, - 0.00081195, - 0.047697, - 0.0089351, - -0.047169, - 0.057805, - 0.028865, - 0.02155, - 0.022852, - 0.0092825, - -0.011285, - -0.051014, - -0.053678, - 0.0093562, - -0.063728, - 0.0012149, - -0.031774, - -0.010617, - 0.074239, - 0.022463, - -0.10461, - -0.08017, - 0.011794, - 0.13104, - 0.030295, - 0.027487, - -0.063646, - -0.0015283, - 0.019483, - 0.004466, - 0.029161, - 0.014012, - -0.032441, - 0.020812, - 0.016664, - 0.014736, - -0.002919, - 0.029013, - -0.010681, - -0.030819, - 0.0085853, - 0.017172, - -0.055182, - -0.021199, - 0.056529, - 0.080367, - 0.052606, - -0.048667, - 0.073792, - 0.043397, - 0.042834, - 0.01765, - 0.016988, - 0.015734, - 0.032562, - -0.02108, - -0.049187, - 0.0065916, - -0.0070471, - 0.0091647, - -0.11354, - -0.0069033, - -0.016312, - -0.035272, - 0.022417, - -0.010953, - -0.00086311, - -0.027295, - 0.042672, - 0.024924, - -0.01275, - 0.0084105, - -0.06451, - -0.0034875, - 0.016261, - 0.012624, - -0.0068485, - -0.0010281, - 0.014071, - -0.010962, - -0.015922, - 0.044555, - -0.036513, - 0.071156, - -0.025544, - 0.096608, - -0.05551, - -0.018272, - -0.01155, - -0.04245, - -0.058273, - -0.020147, - -0.019902, - -0.062344, - -0.11586, - -0.055294, - 0.016913, - -0.0065346, - -0.053658, - 0.027232, - -0.036049, - -0.036607, - -0.0012053, - -0.015556, - 0.10572, - 0.02107, - 0.0087386, - -0.003467, - 0.015096, - 0.064083, - 0.01571, - 0.014214, - -0.016585, - -0.012959, - -0.0075211, - 0.022262, - -0.031764, - 0.091126, - -0.006709, - -0.0053481, - -0.0049642, - 0.064106, - 0.06666, - 0.021306, - -0.069587, - -0.0061352, - -0.044448, - 0.028636, - 0.017959, - 0.0040602, - 0.0052273, - -0.024463, - -0.038398, - 0.0050556, - -0.014094, - 0.0061058, - 0.061586, - 0.027567, - 0.025023, - -0.0014771, - -0.036444, - 0.0026242, - 0.034503, - 0.034579, - 0.046043, - -0.015843, - -0.025746, - -0.087687, - -0.048991, - 0.041161, - -0.0050555, - 0.0070217, - 0.064229, - 0.043933, - 0.0028283, - 0.0045107, - 0.045834, - -0.0041726, - 0.0058425, - -0.013033, - 0.052891, - 0.020045, - 0.031478, - -0.0018778, - -0.0029085, - 0.067251, - -0.10467, - -0.02929, - -0.011254, - -0.0082873, - 0.032937, - 0.014159, - 0.013577, - -0.026137, - 0.038413, - -0.044371, - -0.048241, - -0.019459, - -0.026895, - 0.0092435, - -0.041905, - -0.044125, - -0.014439, - -0.018256, - 0.010723, - 0.065581, - -0.014808, - -0.0041488, - -0.0088723, - -0.0016369, - -0.025156, - 0.01839, - -0.0031756, - 0.0037274 - ], - "wartime": [ - 0.063732, - -0.013212, - 0.089487, - -0.020197, - -0.022794, - 0.0015784, - -0.013112, - -0.10229, - 0.069226, - 0.10442, - -0.035876, - -0.037455, - -0.023531, - 0.030835, - -0.035693, - 0.050031, - 0.073387, - -0.084437, - 0.04464, - 0.0073904, - 0.074453, - 0.038587, - -0.02206, - 0.072328, - 0.0053105, - 0.012882, - 0.028415, - -0.028348, - 0.0073114, - -0.085223, - 0.0020241, - -0.025551, - -0.068875, - -0.06338, - 0.050734, - 0.070522, - -0.039344, - 0.054017, - 0.085203, - 0.0096812, - -0.019721, - -0.11466, - 0.073303, - -0.019478, - 0.031823, - 0.041354, - 0.046995, - 0.031672, - -0.038546, - -0.020777, - -0.045826, - 0.045823, - 0.012679, - 0.04715, - 0.015918, - -0.020801, - -0.025228, - 0.022856, - -0.033083, - -0.0075583, - -0.054227, - -0.015742, - 0.1141, - -0.098877, - 0.012759, - -0.02827, - 0.0055172, - -0.023256, - 0.0070722, - 0.075759, - 0.044208, - -0.0089276, - -0.0046561, - 0.0024255, - -0.021305, - 0.019957, - 0.019031, - -0.0068013, - 0.038112, - 0.022801, - 0.0094587, - 0.048973, - -0.01181, - -0.0026641, - -0.019941, - 0.065337, - 0.023262, - -0.010545, - 0.023711, - 0.0087911, - 0.010575, - 0.043067, - -0.088516, - -0.037581, - 0.0141, - 0.062629, - -0.098168, - -0.0016765, - 0.064134, - 0.058298, - 0.098466, - -0.026351, - -0.064772, - 0.039393, - 0.030547, - -0.048061, - 0.066951, - 0.021368, - 0.0036141, - 0.021478, - -0.049538, - -0.0015112, - 0.042794, - 0.065809, - -0.054095, - 0.052257, - 0.031427, - -0.016133, - -0.034622, - -0.027038, - 0.0027938, - -0.051929, - -0.062514, - 0.00027284, - 0.037632, - 0.036188, - 0.006469, - -0.088888, - -0.022026, - 0.068312, - -0.024649, - 0.025544, - 0.049054, - 0.023596, - 0.018158, - 0.017894, - 0.03522, - 0.02537, - -0.044626, - -0.011925, - 0.018046, - 0.063214, - -0.045337, - 0.024048, - -0.017635, - -0.010077, - -0.024127, - 0.0094481, - 0.034153, - -0.026134, - 0.010246, - 0.13972, - -0.0027854, - -0.0066361, - 0.012676, - 0.044389, - -0.0014192, - 0.071455, - 0.024278, - -0.0091604, - 0.02805, - -0.06743, - -0.074358, - 0.061603, - -0.043025, - -0.037468, - 0.023662, - -0.012209, - 0.031675, - -0.071691, - 0.018366, - -0.0092451, - -0.092126, - -0.041416, - 0.024941, - 0.065868, - -0.04392, - 0.033922, - -0.017549, - 0.052197, - 0.022598, - 0.032739, - -0.062105, - -0.071763, - 0.042852, - -0.057762, - 0.045016, - 0.10589, - 0.064382, - -0.045605, - 0.08592, - 0.055579, - 0.071056, - -0.10534, - -0.053086, - 0.088532, - 0.0057594, - -0.031654, - 0.0018864, - 0.03668, - -0.13151, - 0.014594, - -0.0080205, - -0.014923, - -0.011199, - -0.020212, - -0.037173, - -0.0050159, - -0.0059681, - -0.018447, - 0.14579, - 0.024672, - -0.046815, - 0.094819, - 0.065419, - 0.043046, - 0.025855, - -0.013773, - -0.012892, - -0.092159, - 0.033921, - -0.041968, - 0.047392, - 0.078104, - -0.02235, - -0.021582, - 0.053328, - 0.065155, - -0.021801, - -0.01859, - -0.014417, - -0.076783, - -0.062201, - -0.023855, - 0.025251, - -0.032731, - -0.018762, - 0.039941, - 0.049694, - -0.012809, - 0.047166, - 0.032855, - 0.017024, - -0.017702, - -0.059643, - 0.0065598, - -0.052499, - -0.054967, - 0.0067801, - 0.0097448, - 0.0060546, - 0.024941, - 0.052339, - 0.057267, - 0.06723, - 0.049956, - 0.12555, - 0.053513, - 0.082891, - 0.0089718, - -0.032557, - -0.077596, - 0.0051095, - -0.06796, - -0.0063118, - 0.024048, - 0.0023453, - 0.027829, - -0.014658, - -0.0031797, - 0.067847, - 0.09407, - -0.084672, - -0.0071183, - 0.016862, - -0.073152, - 0.02282, - 0.050319, - -0.000058669, - 0.022947, - 0.14272, - 0.048026, - -0.023758, - 0.080196, - -0.0076837, - 0.031738, - -0.045176, - -0.012288, - -0.013242, - 0.018592, - 0.083969, - 0.078037, - -0.023165, - -0.006192, - -0.015766, - 0.00053798, - -0.0058532, - 0.054122, - -0.0072957, - 0.046228 - ], - "sibling": [ - -0.046048, - 0.019186, - 0.04941, - 0.017476, - -0.028627, - 0.045273, - 0.013128, - -0.093469, - 0.051443, - -0.04352, - 0.010631, - 0.0018786, - 0.014445, - 0.048321, - -0.063194, - 0.0034115, - -0.014886, - -0.0060902, - -0.0096053, - -0.016192, - 0.0060561, - -0.015446, - 0.02407, - 0.057352, - 0.038411, - -0.0066409, - -0.0072305, - 0.017718, - 0.071521, - 0.045573, - -0.0062112, - -0.055226, - 0.0097422, - -0.025352, - 0.019986, - 0.022646, - -0.062683, - -0.045602, - 0.014375, - -0.018678, - -0.080959, - -0.060443, - -0.028432, - -0.056061, - -0.032316, - 0.04372, - -0.052742, - 0.059923, - -0.037327, - -0.044499, - 0.037972, - 0.0178, - -0.0020705, - 0.026717, - 0.047781, - -0.062844, - 0.028164, - -0.028338, - -0.044052, - -0.033985, - 0.018483, - -0.050215, - 0.12466, - -0.026656, - 0.057442, - -0.11278, - 0.031154, - 0.015703, - -0.057048, - -0.057674, - 0.063747, - -0.051039, - 0.066459, - -0.0078973, - 0.05276, - 0.031045, - 0.023807, - -0.0019627, - 0.03145, - -0.021767, - 0.0077706, - 0.046742, - -0.051627, - 0.015144, - 0.017886, - -0.044605, - 0.02349, - 0.039002, - -0.020231, - -0.0083292, - 0.0045895, - 0.045945, - -0.10975, - -0.064479, - -0.015113, - 0.13599, - 0.027272, - 0.016691, - -0.021509, - 0.01085, - 0.085763, - -0.032405, - -0.03249, - -0.033717, - -0.0065279, - -0.13283, - -0.047955, - -0.048926, - 0.084797, - 0.06511, - -0.041452, - 0.037127, - 0.027971, - -0.033082, - 0.013735, - -0.041045, - -0.023082, - 0.0076262, - -0.028557, - -0.01096, - 0.0026353, - 0.00075632, - 0.099588, - -0.025643, - 0.094415, - -0.024226, - 0.016109, - -0.12024, - 0.012289, - 0.052168, - -0.026375, - 0.015314, - -0.025633, - -0.076291, - -0.010179, - 0.041236, - -0.00020731, - 0.073539, - 0.12603, - 0.032693, - -0.0064733, - 0.030118, - -0.0037448, - -0.039537, - -0.019594, - 0.043631, - 0.062645, - 0.069155, - -0.04172, - -0.011418, - -0.0050622, - 0.076079, - 0.0097427, - -0.055521, - 0.022001, - 0.0031236, - 0.086089, - 0.054715, - 0.078237, - -0.019079, - -0.0025322, - -0.0039711, - -0.020481, - -0.023159, - -0.013551, - 0.079627, - 0.013393, - 0.055095, - -0.046355, - -0.015131, - -0.01562, - -0.019624, - -0.079639, - 0.01555, - -0.045245, - 0.051076, - 0.071045, - 0.030096, - -0.056218, - -0.11836, - 0.061017, - -0.13543, - -0.02106, - 0.043729, - 0.043129, - -0.093897, - -0.048239, - 0.074125, - 0.024266, - -0.00019727, - -0.049273, - 0.064954, - -0.0055148, - -0.039279, - -0.045549, - -0.010255, - 0.045244, - 0.023671, - -0.0021525, - 0.027823, - -0.11139, - 0.1117, - -0.1166, - -0.065513, - -0.010965, - 0.035057, - -0.044703, - -0.061188, - 0.047381, - -0.021492, - 0.1021, - 0.0018892, - 0.018418, - 0.018224, - -0.076729, - 0.033063, - -0.065738, - -0.074849, - 0.057081, - -0.004223, - 0.034821, - 0.079413, - -0.034284, - 0.083213, - 0.012835, - -0.016628, - 0.043438, - 0.046222, - -0.01453, - -0.089779, - 0.034965, - -0.041218, - -0.067203, - -0.029235, - -0.013063, - 0.046516, - 0.011664, - -0.013119, - 0.014166, - -0.011552, - 0.032888, - -0.068452, - -0.0025597, - 0.018225, - -0.065086, - 0.029819, - 0.0081954, - 0.032825, - -0.014029, - 0.014005, - -0.016569, - 0.033866, - -0.010192, - 0.025007, - 0.043624, - -0.053193, - -0.023371, - -0.0025302, - 0.0081008, - 0.0053985, - 0.0054925, - -0.029541, - 0.0069602, - 0.022788, - 0.039033, - 0.068089, - -0.038264, - 0.044377, - 0.013907, - 0.064613, - -0.037355, - 0.062113, - -0.11832, - -0.051229, - 0.03836, - 0.0061697, - -0.046082, - -0.0047406, - 0.0080532, - 0.067816, - 0.06652, - -0.061198, - 0.10149, - 0.0013587, - -0.01945, - 0.014754, - -0.049777, - -0.076193, - 0.00029271, - -0.047253, - -0.0026985, - -0.0087483, - -0.098574, - -0.067921, - 0.033868, - 0.057922, - 0.10271, - 0.073221, - 0.0068215, - -0.033863 - ], - "engineering": [ - 0.0051572, - -0.038913, - -0.0043371, - -0.026189, - 0.0071538, - -0.065318, - -0.00824, - -0.075427, - 0.056705, - 0.0107, - -0.0037751, - -0.034739, - -0.02112, - 0.098193, - 0.0054606, - 0.024081, - 0.058275, - 0.035393, - 0.024395, - -0.0014318, - 0.024629, - 0.052343, - 0.02649, - 0.052541, - -0.0034679, - -0.001847, - -0.0083523, - 0.011138, - 0.021026, - -0.0014444, - -0.014529, - -0.024414, - 0.036103, - -0.068132, - 0.047551, - 0.051937, - 0.011783, - 0.0089136, - 0.0041347, - -0.021858, - -0.034874, - -0.090828, - 0.014258, - -0.051515, - -0.068074, - -0.0052381, - -0.0033213, - -0.0027782, - 0.0066265, - -0.014478, - 0.0014956, - -0.014686, - 0.0074385, - 0.019775, - -0.020481, - 0.011974, - -0.017848, - 0.017827, - 0.014482, - 0.04917, - 0.037122, - 0.077699, - 0.076221, - 0.052127, - 0.072888, - 0.031083, - 0.0042609, - -0.013402, - 0.042845, - 0.0050612, - 0.054461, - -0.0023435, - 0.043114, - -0.020051, - 0.012034, - -0.011573, - -0.022998, - -0.014229, - -0.0077948, - -0.027056, - -0.036229, - 0.017293, - -0.031512, - 0.052973, - -0.034557, - 0.022884, - -0.0201, - 0.001898, - -0.033051, - -0.0048917, - 0.017656, - 0.048657, - -0.072491, - -0.0028191, - -0.004503, - 0.053015, - 0.035682, - -0.012665, - 0.027146, - 0.0011817, - 0.026106, - -0.024648, - 0.0027798, - -0.012853, - 0.026508, - -0.065536, - 0.0047961, - 0.076792, - 0.022496, - 0.0046896, - -0.0057295, - 0.096488, - 0.03903, - 0.031304, - 0.053869, - 0.027062, - -0.020755, - 0.016804, - -0.012133, - -0.013432, - -0.01087, - -0.026728, - -0.057505, - 0.0088811, - 0.076332, - 0.023135, - -0.058288, - -0.021426, - -0.021461, - 0.10813, - 0.0003508, - 0.013914, - -0.000052445, - -0.018098, - 0.027166, - -0.013691, - 0.071074, - 0.0016022, - 0.0055181, - 0.027403, - -0.0088415, - -0.0061726, - -0.02023, - 0.033548, - -0.022141, - -0.037573, - -0.03433, - -0.028375, - 0.013205, - -0.029312, - 0.04327, - 0.059641, - 0.034121, - -0.058654, - 0.028061, - 0.03516, - 0.036016, - 0.021235, - 0.010503, - -0.0030613, - 0.027163, - 0.012241, - -0.067895, - 0.0051358, - 0.024698, - 0.020028, - -0.019711, - 0.00096347, - 0.029155, - -0.0063303, - 0.095406, - 0.01653, - 0.0032618, - 0.033092, - 0.059803, - 0.045289, - 0.031769, - 0.078496, - -0.033746, - 0.0012226, - -0.014353, - -0.010692, - -0.024092, - -0.0028111, - 0.016762, - -0.022079, - -0.069012, - 0.075732, - 0.017685, - 0.016794, - -0.057095, - 0.065498, - 0.02086, - 0.0014601, - 0.0080037, - 0.021523, - -0.022065, - -0.007585, - 0.024283, - -0.041027, - -0.12332, - -0.013283, - 0.018446, - -0.016632, - 0.01236, - -0.025826, - -0.050078, - -0.0057474, - 0.023641, - 0.0080088, - 0.092012, - 0.03422, - -0.011524, - -0.025604, - -0.0010948, - 0.021178, - -0.0070378, - -0.012445, - -0.040411, - -0.028466, - -0.0233, - -0.010652, - -0.020855, - 0.065097, - -0.0020483, - 0.018994, - 0.020342, - 0.059633, - 0.055834, - 0.0022421, - -0.0083846, - -0.0195, - -0.03023, - 0.0048814, - -0.010104, - 0.0043529, - -0.0033127, - 0.00063672, - -0.00048275, - 0.014547, - 0.032266, - -0.018727, - 0.0012723, - 0.023376, - -0.025642, - -0.0031872, - -0.020941, - -0.010479, - -0.025102, - 0.056012, - 0.037948, - 0.050303, - 0.00836, - -0.026541, - -0.015674, - 0.034779, - 0.028776, - 0.043704, - 0.066392, - 0.0074387, - -0.010533, - 0.033936, - -0.043084, - 0.031172, - 0.0033752, - -0.032045, - 0.013198, - 0.014563, - 0.020813, - 0.0084893, - 0.0026699, - 0.062957, - -0.077406, - -0.0036055, - -0.024522, - -0.021241, - 0.010049, - 0.025498, - 0.0058591, - -0.018166, - 0.079521, - 0.010964, - -0.014502, - 0.034702, - -0.0059474, - -0.01134, - -0.051849, - -0.010453, - 0.019392, - 0.032419, - -0.042558, - 0.012611, - -0.022994, - -0.0023018, - -0.029786, - -0.037757, - 0.0039082, - 0.012623, - 0.036911, - -0.013167 - ], - "fatherhood": [ - -0.039478, - -0.041541, - 0.065979, - -0.066868, - -0.033154, - 0.060825, - 0.0015262, - -0.065226, - 0.084031, - 0.071493, - -0.008754, - 0.0065508, - -0.050025, - 0.017414, - -0.018032, - 0.0033029, - 0.072419, - -0.041683, - 0.0047647, - 0.038622, - 0.0078502, - 0.10063, - -0.0017967, - 0.032316, - 0.027478, - 0.0058611, - -0.020832, - 0.034777, - 0.057663, - -0.0046239, - 0.047769, - -0.036385, - 0.022428, - -0.022196, - -0.010179, - 0.020958, - -0.051336, - -0.042369, - -0.075477, - -0.022171, - -0.019059, - -0.074075, - 0.0099533, - -0.0082771, - -0.017922, - 0.0058952, - 0.016567, - 0.033291, - -0.005268, - -0.047309, - -0.0065396, - -0.0082933, - 0.058864, - 0.028223, - -0.05033, - -0.036143, - -0.028775, - -0.095055, - -0.021568, - 0.048541, - -0.051249, - 0.021737, - -0.0036757, - 0.01986, - 0.000081952, - -0.059468, - -0.016001, - -0.029532, - -0.051307, - -0.042911, - 0.026621, - 0.038141, - -0.0017005, - -0.065629, - 0.086608, - 0.0080304, - 0.023181, - -0.033959, - 0.014195, - 0.0348, - 0.018788, - 0.026003, - -0.012842, - 0.067439, - -0.032989, - -0.013653, - 0.072941, - -0.013742, - -0.02425, - 0.0497, - 0.0069631, - 0.023816, - -0.072198, - 0.00037253, - 0.025186, - 0.027841, - -0.00078534, - -0.010431, - 0.023475, - -0.024765, - -0.04404, - -0.10417, - -0.013437, - -0.06153, - -0.06547, - -0.015458, - 0.026602, - 0.061693, - -0.051614, - -0.048018, - 0.016511, - 0.048674, - 0.013786, - -0.0095958, - 0.03341, - 0.0229, - 0.027366, - 0.033144, - -0.045671, - 0.043142, - 0.0056272, - 0.00025987, - 0.091405, - 0.001075, - 0.036607, - -0.0064246, - 0.034614, - -0.090159, - 0.047793, - 0.087393, - -0.037294, - -0.012891, - -0.03873, - 0.018246, - -0.074204, - 0.010973, - -0.0065699, - 0.0096189, - 0.0091915, - -0.052492, - 0.020118, - -0.083748, - 0.017433, - 0.043128, - -0.0020969, - 0.040181, - -0.027953, - 0.01071, - -0.050919, - -0.020274, - 0.061521, - 0.018328, - -0.0093789, - -0.078864, - -0.00012346, - 0.029428, - -0.002966, - 0.025024, - 0.15406, - -0.023061, - 0.038224, - 0.035609, - -0.080188, - -0.037744, - -0.033027, - 0.0049754, - -0.0021933, - 0.036274, - 0.0034504, - 0.021816, - 0.029712, - -0.018611, - -0.051004, - 0.013464, - 0.020581, - 0.027021, - 0.060878, - 0.034427, - -0.002729, - -0.033949, - -0.018413, - -0.064102, - 0.075856, - -0.013976, - -0.044209, - -0.041499, - 0.019073, - 0.098984, - 0.01038, - 0.040951, - 0.014144, - 0.042463, - -0.047663, - -0.01479, - 0.030763, - -0.080259, - -0.026422, - 0.045642, - -0.031728, - -0.063688, - -0.17375, - 0.065542, - 0.055283, - -0.040926, - -0.010621, - -0.017674, - 0.015299, - 0.009153, - 0.0086358, - -0.014133, - 0.088584, - 0.037064, - 0.023353, - -0.015269, - 0.030479, - 0.043478, - -0.090019, - -0.051752, - -0.051804, - -0.073717, - 0.020265, - -0.080427, - -0.033578, - 0.088406, - 0.010805, - -0.099563, - 0.0378, - 0.040786, - 0.024527, - -0.06407, - 0.0009921, - -0.020407, - -0.10332, - 0.030442, - 0.025658, - 0.038928, - 0.022166, - -0.007287, - -0.016415, - -0.032134, - -0.030679, - 0.059128, - -0.050746, - -0.052252, - 0.023757, - 0.026553, - -0.055884, - -0.055275, - 0.057998, - -0.011213, - 0.070499, - 0.0090747, - 0.018006, - -0.0027053, - 0.043796, - 0.0042242, - -0.00014726, - 0.031341, - 0.057744, - -0.060533, - 0.018346, - -0.032321, - 0.010353, - 0.015271, - 0.04688, - 0.029486, - -0.010991, - 0.016255, - 0.093409, - -0.0058356, - 0.055562, - 0.061641, - -0.11157, - -0.015464, - 0.0032723, - -0.0031416, - -0.017177, - 0.025874, - 0.033324, - 0.060774, - 0.096712, - 0.011212, - 0.088698, - -0.097415, - -0.0040278, - 0.034316, - -0.018767, - 0.036937, - -0.044913, - 0.034203, - 0.06921, - -0.020593, - 0.021654, - -0.032527, - -0.039541, - -0.0039951, - 0.080416, - 0.064331, - 0.0050442, - -0.054939 - ], - "hobbies": [ - 0.011495, - -0.087976, - 0.063113, - -0.10535, - -0.043734, - -0.006128, - -0.043343, - -0.0779, - 0.031762, - -0.0058914, - -0.048825, - -0.085966, - -0.098784, - -0.074451, - 0.018433, - 0.056237, - 0.034826, - 0.032408, - -0.0021379, - -0.067536, - -0.019033, - -0.0026211, - 0.0063163, - 0.085482, - 0.0049416, - -0.0050004, - 0.030931, - -0.037656, - 0.092257, - -0.072148, - 0.043205, - -0.13367, - 0.034523, - -0.053944, - 0.025131, - -0.0027389, - -0.018372, - -0.010379, - -0.0042935, - 0.019568, - -0.021835, - -0.053758, - 0.043706, - -0.01858, - 0.043241, - -0.054638, - -0.059845, - -0.099375, - -0.033058, - 0.013667, - -0.067639, - 0.066212, - 0.026296, - 0.0021766, - -0.042303, - -0.030949, - -0.054181, - 0.080141, - -0.022517, - -0.018101, - -0.040427, - -0.025398, - 0.11238, - 0.046676, - 0.08663, - -0.030955, - -0.076311, - 0.047529, - -0.026416, - -0.011972, - 0.17568, - -0.021972, - 0.055922, - -0.00035385, - 0.082212, - 0.047044, - 0.036202, - -0.060319, - -0.017842, - -0.040874, - -0.017058, - 0.029764, - -0.06829, - 0.054932, - -0.028993, - -0.12863, - 0.022375, - 0.030847, - -0.038266, - 0.064728, - 0.17499, - 0.0068625, - -0.095851, - 0.017737, - 0.085026, - 0.046161, - -0.065114, - 0.071718, - 0.042144, - 0.034884, - -0.0034074, - 0.044115, - -0.0064176, - -0.060826, - 0.048446, - -0.013194, - -0.077109, - 0.0013987, - 0.054499, - -0.051402, - -0.054928, - 0.050846, - 0.044254, - 0.091718, - 0.032018, - -0.02367, - -0.091758, - -0.07846, - -0.0022104, - -0.033676, - -0.038661, - 0.079831, - -0.11055, - -0.067625, - 0.15358, - -0.054644, - -0.052921, - -0.054792, - -0.04491, - 0.080176, - 0.066084, - 0.056438, - 0.042749, - 0.02788, - -0.042018, - 0.00097091, - 0.089922, - 0.026358, - -0.0034698, - 0.062291, - 0.055298, - -0.0062951, - 0.059812, - 0.16028, - 0.081341, - 0.0036344, - 0.0012734, - -0.10776, - 0.083217, - -0.032765, - 0.092126, - 0.11592, - -0.094221, - -0.057556, - -0.062291, - 0.051039, - -0.049158, - 0.11474, - 0.11003, - -0.096124, - 0.032912, - 0.045953, - 0.0051915, - 0.018637, - 0.015727, - -0.046116, - -0.042559, - -0.041347, - -0.051572, - -0.037401, - 0.080974, - 0.060687, - 0.090465, - 0.016733, - -0.020455, - 0.055847, - -0.011413, - 0.082216, - -0.011572, - -0.047248, - 0.092824, - -0.083078, - -0.07631, - -0.067264, - 0.0067582, - -0.041521, - 0.054658, - 0.12333, - -0.0060071, - -0.047515, - -0.023495, - 0.099582, - -0.061621, - 0.033759, - 0.021896, - 0.079185, - -0.052314, - -0.0066987, - 0.010639, - 0.047257, - -0.079233, - 0.068387, - -0.016616, - -0.11137, - 0.073823, - 0.10553, - 0.011321, - 0.058169, - 0.08139, - -0.047034, - 0.064804, - 0.070054, - 0.068702, - 0.0096775, - -0.008838, - 0.038115, - -0.095233, - -0.04645, - -0.14299, - -0.012796, - 0.039125, - -0.0076758, - -0.07454, - 0.09764, - 0.047599, - -0.008636, - 0.059604, - 0.10018, - -0.0093557, - -0.053835, - 0.011549, - -0.024985, - -0.13435, - -0.031364, - 0.048942, - 0.071304, - 0.087552, - 0.027315, - -0.086485, - -0.014368, - -0.021551, - -0.062056, - 0.093423, - -0.044554, - 0.011556, - 0.029401, - -0.066054, - -0.10558, - 0.019195, - 0.013078, - -0.0020357, - 0.0026313, - -0.0524, - 0.0034572, - 0.02613, - -0.10987, - -0.1168, - -0.042092, - 0.01699, - -0.034182, - -0.046285, - 0.023835, - -0.021556, - -0.032242, - -0.01966, - -0.03511, - -0.069877, - 0.04132, - 0.094762, - -0.061273, - 0.033079, - 0.081775, - -0.094132, - -0.049873, - 0.05555, - -0.028371, - 0.056645, - 0.012356, - 0.008911, - -0.0076287, - 0.041958, - 0.047296, - 0.13034, - 0.01545, - 0.036799, - 0.050694, - -0.087513, - 0.00045015, - -0.069083, - -0.0018771, - 0.051419, - 0.03084, - -0.069077, - -0.041288, - -0.019977, - 0.13561, - -0.041446, - 0.051205, - -0.023009, - -0.024189 - ], - "lifetime": [ - -0.052046, - -0.045029, - 0.016575, - -0.018523, - -0.0097529, - -0.0087765, - -0.047643, - -0.084751, - 0.11548, - -0.022852, - 0.025051, - -0.038443, - 0.0047822, - -0.019423, - -0.038107, - -0.01853, - 0.023015, - 0.026182, - 0.038427, - 0.0088499, - -0.013964, - 0.049422, - -0.035612, - 0.084262, - 0.044182, - -0.043788, - 0.0011638, - -0.044245, - -0.019819, - -0.0049386, - -0.0071463, - -0.043681, - -0.018215, - -0.11814, - -0.033117, - 0.0069971, - -0.022687, - -0.043556, - -0.01905, - 0.080295, - -0.018356, - -0.017695, - -0.02103, - -0.0028639, - -0.032775, - 0.0055273, - -0.0053219, - -0.013967, - -0.0096172, - 0.022991, - -0.043182, - 0.030227, - -0.011318, - 0.0096286, - -0.039963, - -0.045119, - -0.060727, - 0.027216, - -0.042845, - -0.037426, - 0.068635, - -0.03849, - 0.1222, - -0.037819, - 0.0033014, - 0.026058, - 0.032454, - -0.023089, - 0.041357, - -0.0019037, - 0.022971, - 0.038748, - 0.048775, - -0.0264, - 0.0079368, - 0.0059985, - -0.024288, - -0.026378, - -0.0019254, - 0.017853, - 0.00012396, - -0.036259, - 0.022752, - 0.091351, - -0.060347, - 0.008866, - -0.020095, - 0.021023, - -0.018725, - -0.022236, - 0.072949, - 0.055455, - -0.088422, - 0.030587, - -0.042733, - 0.061949, - -0.045371, - 0.02828, - 0.084716, - 0.038595, - -0.039002, - -0.051284, - 0.083617, - -0.03277, - 0.004724, - -0.031839, - 0.032629, - -0.025256, - 0.026235, - 0.020949, - -0.03371, - -0.035801, - 0.038028, - -0.010929, - -0.03955, - -0.015742, - 0.03093, - -0.025895, - -0.04262, - 0.038097, - 0.013738, - 0.0066266, - -0.039926, - 0.0090293, - 0.017937, - 0.025125, - 0.08093, - -0.14017, - 0.056702, - 0.032022, - 0.059843, - -0.019995, - -0.010747, - -0.052554, - -0.064317, - 0.023447, - 0.016205, - 0.026098, - 0.0025121, - -0.02072, - 0.021764, - -0.043612, - 0.013105, - -0.0044382, - 0.013531, - 0.032803, - -0.018429, - -0.0045969, - 0.020001, - 0.029139, - 0.051601, - 0.061102, - -0.049769, - -0.043519, - 0.011176, - -0.050265, - 0.021512, - 0.035972, - 0.0074244, - -0.067662, - 0.025762, - 0.079509, - -0.01976, - -0.0018638, - 0.02569, - -0.037184, - 0.0083293, - -0.017361, - -0.0053343, - -0.032828, - 0.040437, - 0.039911, - -0.040238, - 0.0050743, - -0.032341, - 0.058578, - 0.0093379, - -0.028477, - -0.027852, - -0.010489, - 0.0056773, - -0.0036134, - 0.0033209, - 0.0065962, - 0.019987, - -0.05752, - -0.0019465, - 0.070827, - 0.054278, - 0.028017, - 0.057912, - 0.070334, - 0.033574, - 0.010124, - -0.016167, - -0.035304, - -0.035384, - 0.017606, - -0.000054666, - 0.0098642, - -0.122, - 0.045088, - -0.010879, - -0.072787, - 0.026315, - -0.039742, - 0.019767, - 0.0020352, - -0.009281, - -0.017282, - 0.096965, - -0.030264, - -0.0049517, - -0.065299, - 0.02367, - -0.037347, - -0.058081, - -0.011959, - 0.024483, - -0.084241, - -0.011623, - 0.0083593, - 0.051968, - 0.087836, - 0.018563, - -0.041379, - 0.013734, - 0.084265, - -0.00086677, - -0.013913, - 0.035156, - -0.10324, - -0.080011, - 0.030878, - 0.013069, - 0.020439, - 0.051793, - -0.0062099, - 0.0082123, - 0.0096849, - 0.093073, - -0.0016984, - 0.089487, - -0.045741, - -0.06656, - 0.0077713, - 0.012767, - -0.11355, - 0.051501, - -0.019112, - -0.0205, - 0.032521, - 0.022109, - 0.039579, - 0.053631, - -0.014579, - 0.021553, - 0.0072382, - 0.065279, - 0.027253, - -0.017069, - -0.0087188, - -0.040268, - -0.072756, - 0.027849, - -0.020142, - 0.0082641, - 0.032012, - 0.096747, - -0.017268, - 0.043976, - 0.08073, - -0.10427, - -0.039295, - 0.056709, - -0.074125, - -0.0025094, - 0.022647, - 0.04668, - 0.036337, - 0.048393, - -0.0046058, - -0.060496, - -0.041594, - 0.014532, - 0.011745, - -0.13178, - 0.013395, - -0.01691, - 0.030239, - 0.049586, - 0.061872, - -0.035177, - -0.056285, - 0.068196, - 0.023185, - -0.010251, - -0.039517, - 0.0038673, - -0.010909 - ], - "modeling": [ - -0.020544, - -0.043563, - -0.024885, - 0.025901, - 0.0049211, - -0.070786, - -0.016328, - -0.076324, - -0.0094791, - -0.0085022, - 0.073522, - -0.057969, - -0.032474, - -0.013842, - -0.010796, - -0.014455, - 0.083574, - 0.0756, - 0.015158, - 0.017361, - 0.036449, - -0.015089, - 0.036979, - 0.042842, - -0.0075508, - -0.014492, - -0.043101, - -0.017701, - 0.031382, - -0.0055735, - -0.094222, - -0.011033, - 0.048815, - -0.14397, - 0.061462, - 0.0056292, - 0.011631, - -0.078439, - 0.0089422, - -0.0016036, - -0.024714, - -0.14253, - 0.0044985, - -0.04434, - -0.058717, - -0.016457, - 0.026068, - -0.016684, - 0.034282, - 0.017839, - -0.027332, - -0.02035, - -0.027188, - 0.022606, - -0.053474, - -0.13011, - 0.014651, - 0.015483, - -0.013716, - -0.0208, - 0.04323, - 0.0051302, - 0.078335, - 0.0067717, - 0.033286, - -0.017726, - 0.027114, - 0.025071, - -0.0063112, - -0.039663, - -0.00432, - 0.029154, - 0.019835, - -0.083731, - 0.11215, - -0.034507, - 0.029548, - -0.034059, - -0.021878, - -0.052062, - -0.043594, - -0.023987, - -0.024122, - 0.050711, - 0.037825, - -0.011074, - -0.041855, - -0.019248, - 0.035395, - 0.021114, - -0.026194, - 0.013733, - -0.066773, - 0.017478, - 0.05061, - 0.014037, - 0.016457, - 0.011128, - 0.018912, - 0.017843, - 0.019044, - -0.05118, - -0.026254, - 0.038201, - 0.0032531, - -0.070225, - 0.015331, - -0.023347, - -0.026478, - -0.029852, - -0.017985, - 0.060661, - 0.030427, - -0.028019, - 0.0050448, - -0.12119, - -0.038574, - 0.005597, - -0.025284, - -0.045475, - -0.045122, - 0.036685, - -0.016729, - 0.021567, - 0.075585, - -0.0081478, - -0.00054169, - -0.075483, - 0.030887, - 0.16978, - 0.014583, - -0.013813, - -0.0096422, - -0.032835, - 0.020657, - 0.030128, - 0.059414, - -0.0032953, - -0.0028151, - -0.0045251, - 0.027572, - 0.044305, - 0.026946, - 0.041668, - -0.0037561, - -0.0092423, - -0.050784, - -0.05772, - 0.070823, - -0.02667, - 0.070314, - 0.062729, - 0.027591, - -0.12437, - -0.024377, - 0.036193, - 0.00066767, - 0.02412, - -0.0034311, - 0.014765, - 0.028796, - 0.0070506, - -0.059292, - -0.034589, - -0.015996, - 0.0082899, - -0.060066, - -0.015906, - 0.008498, - 0.067914, - 0.023454, - -0.018278, - -0.0058984, - -0.077288, - 0.006826, - 0.063204, - -0.02904, - 0.066809, - -0.027086, - -0.017005, - -0.0064363, - -0.033189, - 0.022334, - -0.0032854, - 0.048106, - 0.0013187, - -0.073656, - 0.1063, - -0.020019, - 0.069186, - -0.038073, - 0.034286, - -0.008785, - -0.038741, - 0.034929, - -0.02164, - 0.007337, - 0.055866, - 0.048335, - -0.015452, - -0.16902, - 0.05731, - 0.065805, - 0.020927, - 0.047007, - 0.073221, - 0.028266, - -0.054426, - 0.055752, - 0.00068945, - 0.080917, - 0.036941, - 0.028812, - -0.02434, - -0.030166, - 0.055774, - 0.049947, - -0.042654, - -0.041999, - -0.038236, - -0.10996, - -0.035778, - -0.047415, - 0.079961, - 0.0025307, - 0.011929, - 0.013321, - 0.083471, - -0.018072, - 0.02612, - -0.0069981, - -0.06847, - -0.0026423, - -0.0014895, - 0.036092, - 0.039587, - 0.049449, - 0.010407, - -0.04178, - -0.011967, - 0.061168, - -0.010545, - 0.012415, - -0.00056892, - -0.095368, - 0.047849, - -0.031402, - -0.014628, - 0.0057031, - 0.012685, - 0.084341, - 0.0054107, - 0.032539, - 0.0013603, - 0.015938, - 0.014453, - 0.033213, - 0.02049, - 0.0056422, - 0.033643, - 0.027168, - 0.035307, - -0.051709, - 0.033084, - -0.027048, - -0.031885, - -0.025207, - 0.023423, - 0.031036, - -0.044162, - -0.034988, - 0.067567, - -0.098965, - -0.058923, - -0.033052, - -0.038474, - -0.078058, - -0.0056672, - 0.020231, - 0.0078236, - 0.072628, - 0.059138, - -0.067875, - 0.0037583, - 0.036213, - -0.058695, - -0.026659, - 0.021563, - -0.080231, - 0.0043089, - -0.064287, - 0.038602, - -0.033844, - -0.024559, - 0.021305, - 0.021381, - 0.00027646, - -0.038503, - 0.045355, - 0.026501 - ], - "education": [ - 0.01669, - -0.058746, - 0.0089516, - 0.011345, - 0.020403, - -0.02425, - -0.021852, - -0.075624, - 0.055977, - -0.010338, - 0.025171, - -0.041334, - 0.017283, - 0.0047622, - -0.0090136, - 0.0014746, - 0.061285, - 0.024137, - 0.029196, - 0.047127, - -0.027043, - 0.0094431, - 0.035069, - 0.050453, - -0.069958, - 0.027991, - -0.0046475, - 0.021176, - -0.030508, - 0.0093019, - 0.032008, - -0.017013, - -0.010498, - -0.086265, - 0.022924, - 0.08556, - 0.015433, - -0.026982, - -0.027864, - 0.0039893, - -0.0083381, - -0.12561, - 0.015352, - 0.028384, - 0.031287, - -0.03331, - -0.042395, - -0.0059853, - -0.030317, - 0.03531, - -0.037571, - 0.0096051, - 0.018842, - -0.035944, - -0.04752, - 0.042608, - -0.064049, - -0.0013186, - 0.0046191, - -0.0027308, - 0.0055744, - -0.00011724, - 0.093689, - 0.060546, - 0.021228, - -0.0072991, - -0.047732, - -0.05555, - 0.046996, - -0.0075676, - -0.012364, - -0.054627, - 0.038941, - 0.020477, - 0.0029521, - -0.020331, - -0.007763, - 0.0016483, - 0.040249, - 0.00047713, - -0.02718, - 0.0050511, - -0.046405, - 0.040873, - -0.067257, - 0.043161, - -0.041409, - -0.018922, - -0.055091, - -0.001035, - 0.040756, - 0.056193, - -0.079741, - 0.0091781, - -0.026444, - 0.04997, - 0.044069, - 0.021451, - -0.033482, - 0.029188, - 0.04125, - -0.023729, - 0.036844, - -0.04652, - 0.026213, - -0.038541, - 0.033341, - 0.0039228, - 0.00085377, - 0.015035, - -0.012999, - 0.094946, - 0.031301, - 0.041924, - -0.0028176, - -0.013295, - -0.038299, - -0.0059834, - -0.026712, - 0.019038, - 0.00078347, - -0.02761, - -0.0028162, - -0.018713, - 0.050927, - 0.0084045, - -0.055198, - -0.065209, - 0.0016525, - 0.10064, - 0.023477, - -0.021653, - 0.0045769, - -0.0027322, - -0.048125, - 0.015154, - 0.0021928, - -0.0084104, - 0.02905, - -0.0043997, - 0.034965, - -0.029293, - 0.0048919, - 0.047973, - -0.053258, - -0.0036371, - -0.050073, - 0.015657, - -0.021951, - 0.0089294, - 0.064092, - 0.03969, - -0.022092, - -0.091166, - 0.018165, - 0.056382, - 0.019005, - 0.054195, - 0.020237, - -0.042575, - 0.044697, - -0.0081511, - -0.058569, - 0.017646, - -0.011558, - -0.0057023, - 0.012024, - 0.00075218, - 0.000072866, - -0.025931, - 0.054082, - 0.0067891, - -0.018554, - 0.022718, - 0.019136, - 0.036992, - 0.00068819, - 0.060499, - -0.031377, - -0.001196, - -0.047493, - 0.00063185, - -0.036104, - 0.015949, - -0.01075, - -0.068079, - -0.024275, - 0.094985, - -0.004074, - 0.0046055, - -0.0084076, - 0.082542, - 0.0090094, - -0.028513, - -0.0043192, - -0.016047, - 0.031285, - 0.03917, - 0.042744, - -0.057394, - -0.12354, - 0.03653, - 0.03272, - -0.0028358, - -0.01383, - 0.0095177, - 0.0088545, - -0.0022337, - 0.017348, - 0.0057404, - 0.086966, - 0.020625, - -0.013209, - -0.00092015, - -0.017069, - 0.027802, - 0.019555, - -0.046386, - -0.028408, - -0.023674, - -0.027302, - -0.004076, - -0.011966, - 0.088747, - 0.011645, - -0.054409, - 0.0047138, - 0.075364, - -0.0046424, - -0.01408, - 0.042997, - -0.019532, - -0.055826, - -0.02093, - 0.026006, - 0.032635, - 0.0076398, - 0.015534, - -0.063859, - -0.034054, - 0.03759, - -0.023965, - 0.039191, - -0.020638, - -0.018218, - 0.019069, - 0.013024, - -0.085218, - -0.002111, - 0.021278, - 0.071278, - -0.004802, - -0.018017, - -0.043277, - 0.018195, - -0.0030196, - -0.067635, - 0.036641, - 0.045819, - 0.0034431, - -0.025849, - -0.022226, - 0.00058238, - -0.00080266, - 0.016276, - 0.032981, - 0.018042, - 0.0094455, - 0.032907, - 0.050794, - -0.0029447, - 0.031459, - -0.096069, - -0.029927, - -0.01557, - 0.0074586, - -0.018664, - 0.036561, - -0.009478, - 0.002704, - 0.077503, - -0.0081056, - 0.013244, - -0.022769, - 0.01439, - 0.040355, - 0.0092072, - 0.026632, - -0.01179, - 0.015982, - -0.031446, - 0.027343, - -0.031396, - -0.0097975, - -0.014405, - 0.046593, - -0.0088956, - 0.012625, - -0.013658, - -0.023662 - ], - "nationalism": [ - 0.047928, - -0.021862, - 0.072815, - -0.043056, - -0.016602, - 0.060155, - 0.04289, - -0.047275, - 0.051764, - 0.028794, - 0.020629, - -0.0067509, - 0.037227, - -0.022273, - 0.048932, - -0.046721, - 0.060611, - -0.02671, - 0.00041552, - 0.046234, - -0.017599, - -0.0198, - 0.030012, - 0.043312, - -0.012892, - 0.028916, - -0.015688, - 0.0067261, - 0.063157, - -0.017111, - 0.039133, - -0.014871, - -0.032791, - -0.0098126, - 0.016155, - -0.0078792, - 0.018768, - 0.046107, - 0.0036155, - 0.021884, - -0.0033688, - -0.07554, - -0.0018503, - 0.023511, - 0.033525, - -0.0093448, - -0.059399, - -0.013836, - 0.016667, - -0.05515, - 0.0094055, - 0.0364, - -0.013664, - 0.046459, - -0.0071205, - 0.029268, - 0.086625, - 0.024586, - -0.037198, - 0.013451, - 0.010976, - -0.011673, - -0.0017808, - -0.042582, - 0.032616, - -0.026527, - -0.0070557, - 0.025422, - 0.033444, - 0.017375, - 0.0073795, - -0.037917, - 0.0044983, - -0.00099481, - -0.010374, - -0.017431, - -0.0080938, - -0.011482, - -0.011415, - 0.018637, - -0.043138, - -0.014894, - -0.074301, - 0.067265, - 0.03708, - -0.035538, - -0.042092, - 0.045156, - -0.053214, - 0.017868, - -0.056402, - 0.043694, - -0.058699, - 0.004536, - 0.065728, - 0.044093, - -0.023067, - -0.074904, - -0.022344, - -0.037801, - 0.035863, - 0.027908, - -0.0038462, - -0.038076, - -0.033624, - -0.056434, - -0.011944, - 0.022063, - -0.039225, - -0.0054625, - 0.0073262, - 0.062351, - 0.036196, - -0.062305, - 0.0056354, - 0.048655, - 0.0088782, - -0.0019184, - -0.038867, - 0.060271, - -0.008577, - -0.047836, - -0.018683, - -0.095832, - 0.048558, - 0.011703, - -0.015027, - -0.052092, - -0.017989, - 0.107, - -0.038941, - -0.017885, - 0.037393, - 0.027831, - 0.026956, - 0.027916, - 0.027534, - 0.052223, - -0.010706, - 0.016586, - 0.030526, - -0.0027189, - 0.041332, - 0.047131, - 0.017113, - -0.041405, - 0.01935, - 0.051494, - 0.017121, - 0.021402, - 0.049196, - 0.049721, - -0.016418, - 0.018963, - -0.0049126, - 0.044454, - 0.054402, - 0.0082256, - -0.0059607, - -0.015243, - 0.045153, - -0.070164, - -0.10616, - -0.036901, - -0.0065052, - -0.020134, - -0.0064898, - 0.049045, - -0.017698, - -0.015194, - -0.041199, - 0.015987, - -0.071419, - 0.013492, - -0.011742, - 0.036197, - -0.012661, - 0.0044635, - 0.0084025, - 0.0025, - -0.028462, - 0.012974, - 0.01004, - -0.018294, - 0.086927, - -0.036029, - 0.0066095, - 0.086491, - 0.010791, - -0.03906, - 0.043348, - 0.059456, - -0.047011, - -0.025258, - 0.031908, - 0.053517, - 0.083401, - -0.0087893, - -0.010251, - 0.010976, - -0.13326, - -0.0099782, - 0.0072996, - -0.090542, - -0.050532, - 0.0019715, - 0.034423, - 0.0046282, - -0.018368, - 0.0088478, - 0.086864, - 0.0096134, - -0.026127, - -0.019146, - 0.050817, - 0.016708, - 0.024037, - -0.027063, - -0.0076466, - -0.040743, - -0.056755, - 0.007858, - -0.02872, - 0.070368, - -0.0075916, - 0.022467, - -0.0036715, - 0.057688, - 0.007468, - -0.069683, - 0.0018798, - -0.0094251, - -0.073082, - -0.020769, - 0.014044, - 0.024989, - 0.002735, - -0.012378, - 0.021063, - -0.064033, - 0.0099763, - 0.021085, - -0.022897, - 0.01151, - 0.012262, - -0.046547, - -0.060573, - -0.029215, - -0.036998, - -0.017902, - 0.051214, - -0.015272, - -0.048996, - 0.047682, - 0.034962, - 0.0091344, - -0.032827, - -0.0054121, - 0.033848, - -0.034451, - -0.0031557, - 0.01126, - 0.037495, - 0.028547, - 0.01074, - 0.015055, - -0.013963, - 0.0064058, - 0.028645, - 0.040276, - 0.0039685, - 0.057452, - -0.043691, - -0.011003, - 0.0088714, - -0.06219, - 0.018515, - 0.029029, - -0.054731, - 0.063924, - 0.0546, - -0.022572, - 0.0058293, - 0.039546, - 0.0006476, - -0.0027174, - 0.045034, - 0.013219, - -0.02697, - -0.017927, - 0.031465, - -0.026183, - -0.025428, - 0.0023668, - -0.0087001, - 0.040477, - 0.014222, - 0.02952, - 0.029556, - -0.014698 - ], - "campus": [ - 0.0030972, - -0.044701, - 0.085912, - 0.046361, - -0.025212, - -0.013878, - 0.040454, - -0.11739, - 0.033867, - 0.035335, - -0.094155, - -0.089373, - 0.076434, - 0.10904, - -0.045858, - -0.022355, - 0.12699, - -0.004651, - 0.079042, - 0.018403, - 0.02341, - 0.06094, - 0.064038, - 0.09248, - 0.032987, - -0.01361, - -0.057931, - 0.045242, - -0.018973, - 0.083663, - 0.015515, - 0.0022582, - -0.043328, - -0.0031682, - 0.016771, - 0.051061, - 0.057553, - 0.069974, - 0.019691, - -0.025853, - 0.078853, - -0.1246, - 0.035972, - 0.011131, - 0.033152, - -0.039051, - 0.091711, - -0.063957, - -0.068699, - 0.025589, - 0.059419, - -0.033416, - -0.0026016, - 0.041117, - -0.072651, - 0.04719, - -0.0049995, - 0.021264, - 0.010475, - -0.03672, - 0.069901, - 0.059915, - 0.14303, - 0.052898, - 0.067072, - -0.082368, - 0.058417, - -0.03618, - -0.034004, - 0.0078677, - 0.07467, - -0.052781, - -0.0035505, - 0.016509, - 0.0035163, - -0.086337, - 0.020201, - -0.019273, - 0.028414, - 0.021405, - 0.021931, - 0.070234, - 0.016882, - -0.038882, - 0.00030218, - 0.0084026, - -0.14938, - -0.11333, - -0.041581, - -0.048609, - -0.011441, - 0.054916, - -0.084787, - 0.059092, - 0.028438, - 0.097126, - 0.025002, - 0.038756, - 0.044803, - 0.043251, - 0.13306, - 0.10379, - 0.025552, - 0.0057101, - 0.036936, - -0.10136, - -0.042346, - 0.047542, - -0.026541, - 0.019246, - -0.073437, - 0.10501, - 0.028219, - 0.048644, - 0.021711, - 0.015836, - -0.046458, - 0.004008, - -0.0087033, - 0.04288, - 0.019224, - -0.032674, - 0.014047, - -0.0056217, - -0.0057169, - 0.036866, - -0.040262, - -0.10276, - 0.0010621, - 0.074506, - 0.060081, - 0.013936, - 0.051194, - 0.075483, - 0.075547, - -0.00044241, - -0.0069171, - 0.024773, - -0.041929, - -0.074168, - -0.012291, - 0.01092, - 0.071721, - -0.019492, - -0.024472, - 0.068497, - 0.038221, - 0.044189, - -0.082838, - -0.025207, - -0.00098283, - 0.068681, - -0.0060428, - -0.034593, - 0.026874, - 0.051816, - 0.044494, - 0.070556, - -0.01721, - 0.035325, - 0.013777, - 0.020775, - 0.0022049, - 0.03972, - 0.05502, - -0.018077, - 0.031746, - -0.032576, - -0.036275, - 0.018375, - -0.0046835, - -0.059919, - 0.046817, - -0.033766, - 0.030621, - 0.041374, - -0.00056968, - 0.031678, - -0.10282, - -0.034941, - 0.0068251, - 0.10682, - -0.0079096, - 0.034036, - -0.09436, - -0.00011626, - -0.055546, - 0.10782, - 0.023798, - -0.038449, - -0.0083552, - 0.069293, - 0.0083528, - 0.067463, - 0.06637, - -0.054794, - 0.012273, - -0.058389, - 0.092742, - -0.073745, - -0.17555, - 0.066833, - -0.044066, - 0.019331, - -0.040199, - -0.022557, - -0.077682, - -0.036207, - -0.048223, - -0.012034, - 0.097609, - -0.038382, - 0.012036, - 0.017298, - -0.086239, - -0.070636, - 0.078323, - 0.024504, - 0.083227, - -0.08802, - -0.02634, - 0.020961, - -0.037987, - 0.10637, - -0.10659, - 0.0072065, - -0.050837, - 0.0021151, - 0.021594, - -0.043358, - -0.068714, - -0.043048, - -0.059033, - 0.01936, - 0.010796, - -0.0000082552, - 0.039827, - 0.0016807, - -0.029655, - -0.016433, - 0.062936, - -0.025064, - 0.055832, - 0.016213, - 0.036911, - 0.10303, - -0.015512, - 0.017737, - 0.019525, - 0.061925, - 0.0015101, - 0.037748, - -0.079581, - -0.097768, - -0.0081191, - -0.027357, - -0.050763, - 0.02418, - 0.060457, - 0.025493, - -0.010531, - 0.0039469, - -0.03569, - -0.067471, - 0.0038027, - -0.0021059, - 0.048196, - 0.014351, - 0.039226, - 0.046172, - -0.048143, - 0.045349, - -0.1642, - -0.026668, - 0.041499, - -0.020855, - -0.060272, - 0.049228, - -0.025466, - 0.051873, - 0.050068, - -0.013329, - -0.033862, - -0.0012896, - -0.010658, - -0.083833, - -0.021714, - -0.10956, - -0.064075, - 0.024514, - 0.027186, - 0.040355, - -0.030134, - 0.049904, - 0.002358, - 0.097879, - -0.016522, - 0.02587, - 0.010351, - -0.059625 - ], - "liberalism": [ - 0.018459, - -0.021117, - 0.047257, - 0.00018002, - -0.046025, - 0.014571, - 0.036817, - -0.073277, - 0.047376, - 0.0054708, - 0.0030237, - -0.027148, - 0.028149, - 0.005181, - -0.025932, - -0.0078473, - 0.10993, - -0.068085, - 0.038757, - -0.010328, - -0.00096166, - 0.00058117, - -0.03177, - 0.036385, - -0.024844, - 0.0046603, - 0.028876, - 0.032233, - 0.040094, - 0.034392, - -0.004323, - -0.01384, - -0.075675, - -0.036881, - 0.0060786, - 0.02699, - 0.001644, - 0.006429, - -0.016808, - 0.039339, - -0.0017636, - -0.097181, - -0.02566, - 0.078843, - 0.025033, - 0.0090372, - -0.035908, - 0.017193, - -0.0011245, - -0.049741, - -0.0098052, - 0.023972, - 0.041521, - 0.0043296, - -0.021597, - -0.020841, - 0.063598, - 0.045453, - -0.028506, - 0.01872, - 0.023767, - -0.032905, - -0.01992, - -0.0062245, - 0.026664, - 0.013435, - -0.050993, - -0.0022703, - -0.0064239, - -0.0022705, - 0.014375, - -0.018507, - 0.0073969, - 0.040464, - -0.056948, - -0.054023, - -0.037345, - 0.0027824, - 0.0044277, - 0.11388, - -0.015326, - 0.030682, - -0.028672, - 0.071173, - 0.0025849, - -0.0062786, - -0.057116, - 0.0030671, - 0.0025328, - 0.033405, - 0.0099913, - 0.022477, - -0.079189, - -0.015102, - 0.088472, - 0.045343, - 0.02548, - -0.046803, - -0.048381, - 0.0028198, - 0.089927, - -0.022574, - -0.0083511, - -0.046457, - -0.02675, - -0.047676, - 0.050975, - 0.0026991, - -0.0494, - -0.024055, - -0.009376, - 0.075453, - 0.02932, - -0.00010409, - -0.018266, - 0.023018, - 0.12364, - 0.025819, - -0.031698, - 0.074905, - 0.0021963, - -0.071043, - 0.035966, - -0.054762, - 0.041776, - -0.0022089, - -0.042641, - -0.039297, - -0.0098651, - 0.13627, - 0.047737, - -0.027654, - 0.070884, - 0.031574, - -0.003555, - 0.030098, - 0.0082602, - 0.02989, - 0.0052057, - -0.0475, - 0.05942, - -0.0016755, - 0.00050355, - 0.027162, - -0.019162, - -0.002473, - 0.057487, - 0.029071, - 0.04132, - -0.039718, - 0.05632, - 0.044825, - -0.00050595, - -0.019493, - 0.0037473, - 0.034458, - -0.059649, - -0.051069, - 0.058192, - -0.051886, - 0.003217, - -0.020218, - -0.099155, - -0.11447, - -0.002409, - -0.031067, - -0.0085914, - 0.017729, - -0.032534, - -0.008012, - -0.020598, - -0.0016413, - -0.046423, - -0.016937, - -0.0086238, - 0.051679, - -0.006372, - -0.020153, - 0.014659, - -0.04276, - -0.027531, - 0.019309, - 0.011034, - -0.032974, - 0.072163, - -0.00034119, - 0.02547, - 0.10072, - -0.058685, - -0.052236, - 0.023276, - 0.056724, - -0.06158, - -0.0087391, - 0.032338, - -0.033613, - 0.047018, - 0.0021054, - -0.015704, - 0.035482, - -0.12688, - -0.00090422, - 0.017814, - -0.04711, - -0.051375, - -0.03717, - 0.075674, - -0.031158, - 0.00020902, - 0.021063, - 0.077004, - 0.0039619, - -0.017134, - -0.00009815, - 0.06045, - 0.068961, - -0.0014073, - 0.012763, - -0.0047865, - -0.036403, - -0.044521, - -0.012062, - -0.00040605, - 0.081456, - 0.0079804, - -0.010704, - 0.031477, - 0.05651, - 0.0144, - -0.051223, - 0.033265, - -0.026389, - -0.060849, - -0.01864, - 0.042962, - -0.016516, - -0.022637, - -0.074819, - 0.019822, - 0.0075974, - 0.033453, - 0.011092, - -0.020835, - -0.0024329, - 0.045479, - 0.025124, - 0.020488, - -0.059884, - 0.0047689, - -0.027575, - 0.040005, - -0.0077533, - -0.07445, - 0.0033308, - 0.019026, - 0.0058493, - -0.0064905, - 0.0048328, - 0.042963, - -0.056676, - 0.019799, - -0.0026849, - 0.048072, - 0.037207, - 0.015453, - 0.026439, - -0.0054729, - 0.029947, - 0.051933, - 0.028908, - -0.010874, - 0.05927, - -0.06908, - 0.0036064, - 0.0048998, - -0.0553, - -0.019696, - 0.034631, - -0.01855, - -0.021929, - 0.09996, - 0.012725, - 0.0052257, - -0.005065, - -0.011868, - 0.013119, - 0.014884, - 0.032114, - -0.020736, - 0.047929, - -0.058108, - -0.0044752, - 0.0050655, - -0.031901, - -0.06393, - 0.000033601, - -0.016657, - 0.04586, - -0.022223, - -0.0018684 - ], - "physical": [ - -0.028374, - -0.0017501, - -0.015891, - 0.016802, - 0.014963, - -0.068115, - 0.030187, - -0.085466, - 0.074595, - 0.028782, - -0.025696, - -0.035271, - 0.058004, - 0.029479, - 0.0087381, - -0.091551, - 0.053193, - 0.035096, - 0.052224, - -0.0055114, - -0.027817, - -0.023509, - 0.090294, - 0.092087, - -0.056964, - 0.013621, - -0.024103, - 0.018593, - 0.034941, - 0.066614, - 0.0141, - -0.020229, - -0.01373, - -0.11961, - 0.044522, - 0.040311, - 0.046262, - -0.048126, - -0.000069215, - 0.02227, - 0.022539, - -0.09575, - -0.014772, - 0.020384, - -0.030924, - -0.02105, - 0.0162, - -0.039963, - -0.029741, - -0.017605, - -0.042838, - -0.04782, - -0.011551, - -0.0034779, - 0.020089, - 0.060026, - 0.0062829, - -0.036933, - -0.010282, - -0.058412, - 0.024049, - 0.022193, - 0.12204, - 0.021153, - 0.035261, - -0.023971, - 0.032914, - 0.0034294, - -0.021868, - -0.022231, - 0.036419, - -0.025688, - 0.044348, - -0.030453, - -0.0033947, - 0.0017666, - -0.06835, - -0.077971, - -0.0050034, - -0.060221, - -0.029776, - 0.035435, - -0.064722, - 0.04754, - -0.0081385, - -0.010473, - 0.022919, - -0.010614, - 0.037409, - -0.033387, - -0.0099188, - -0.01395, - -0.11433, - 0.0084564, - 0.033416, - 0.035139, - -0.016984, - 0.017616, - 0.13503, - 0.056396, - 0.040038, - 0.013162, - 0.035866, - -0.0077067, - 0.058521, - -0.086148, - -0.031625, - 0.033745, - -0.0055767, - -0.042126, - 0.044582, - 0.071154, - 0.048805, - 0.01042, - 0.025046, - 0.02568, - -0.039903, - 0.031956, - -0.040593, - 0.012683, - 0.018737, - -0.0085319, - -0.017012, - 0.041175, - 0.085676, - -0.017275, - 0.0014767, - -0.081429, - 0.03943, - 0.084104, - 0.016595, - -0.045653, - 0.0095835, - 0.0016743, - -0.0067229, - -0.016934, - 0.060869, - 0.047384, - 0.050194, - -0.014611, - 0.03655, - 0.018295, - -0.0017363, - 0.0087725, - -0.0045475, - 0.058004, - 0.0030084, - -0.035597, - -0.0060397, - 0.10938, - 0.029534, - 0.18784, - -0.027605, - -0.053445, - -0.0035765, - 0.037928, - -0.029282, - 0.0052682, - 0.027146, - -0.014858, - 0.019835, - 0.0032033, - -0.095233, - 0.0037185, - 0.021771, - -0.00025175, - 0.016251, - 0.0084118, - 0.03109, - -0.028412, - 0.049557, - 0.027586, - -0.010146, - -0.0015205, - 0.041276, - 0.056493, - -0.0017473, - -0.0042789, - -0.032841, - -0.037476, - 0.042562, - -0.015054, - -0.020499, - 0.015433, - 0.0094638, - -0.071776, - -0.047565, - 0.099252, - -0.033064, - 0.036522, - 0.014636, - 0.032674, - 0.098969, - -0.029009, - 0.0064295, - -0.031865, - -0.028833, - 0.006084, - 0.015372, - -0.0049947, - -0.1289, - -0.01903, - -0.050529, - 0.020593, - 0.06876, - -0.02005, - 0.01642, - -0.0063827, - 0.037613, - 0.015309, - 0.15917, - 0.0044309, - -0.021287, - -0.02587, - 0.060435, - 0.022007, - 0.01442, - 0.033006, - -0.048671, - 0.012104, - 0.0028447, - 0.018423, - -0.06702, - 0.099672, - 0.035809, - 0.00015784, - 0.022723, - 0.067219, - -0.04185, - -0.047658, - -0.039469, - -0.075607, - -0.080666, - -0.059468, - 0.00014633, - 0.034747, - 0.025963, - 0.028976, - -0.0077164, - -0.019927, - 0.05409, - 0.0062361, - 0.036099, - 0.025944, - -0.19952, - 0.037645, - -0.0083684, - 0.016863, - -0.037671, - 0.023411, - 0.0022811, - -0.036859, - 0.053625, - -0.012645, - -0.02901, - 0.022446, - 0.050373, - 0.02426, - 0.062491, - -0.012888, - -0.017979, - -0.05024, - -0.026505, - -0.013358, - 0.067664, - -0.015431, - 0.047682, - 0.055731, - 0.057686, - -0.0063494, - -0.042441, - 0.06223, - -0.080386, - -0.035706, - 0.045937, - -0.12573, - -0.016249, - -0.0036721, - 0.069118, - -0.0069668, - 0.16139, - -0.011492, - -0.044692, - -0.039085, - 0.013895, - 0.033173, - -0.053069, - 0.0099174, - -0.020611, - -0.0069846, - -0.011926, - 0.051879, - -0.069196, - 0.00034465, - 0.015745, - 0.02906, - 0.02199, - -0.0086113, - -0.025816, - 0.040034 - ], - "curiosities": [ - -0.034542, - -0.031779, - 0.032028, - -0.0060316, - -0.039776, - -0.04327, - -0.055246, - -0.069675, - 0.0014162, - 0.022928, - -0.036039, - -0.034984, - -0.027801, - -0.0059205, - 0.04244, - -0.01454, - 0.027888, - 0.044752, - 0.020908, - 0.033558, - 0.018137, - -0.017441, - 0.025431, - 0.077228, - -0.0042784, - -0.053832, - 0.019066, - -0.0056843, - 0.048525, - -0.01756, - -0.0013033, - -0.04459, - 0.0083215, - -0.041551, - 0.032937, - -0.01869, - 0.014395, - -0.0051867, - 0.010494, - -0.023182, - 0.015832, - -0.088382, - -0.068273, - 0.061119, - 0.041321, - 0.0016215, - -0.015922, - 0.016492, - -0.045604, - -0.016451, - -0.025613, - 0.022321, - -0.03591, - -0.035221, - 0.0019877, - -0.010927, - -0.018894, - 0.04631, - -0.046531, - 0.0018635, - 0.03859, - 0.0038939, - 0.059378, - 0.031294, - 0.033828, - 0.022354, - -0.032006, - 0.03905, - 0.032713, - 0.053765, - 0.068698, - 0.01253, - 0.024927, - -0.044918, - 0.003775, - 0.074755, - -0.0077811, - -0.097828, - 0.1032, - 0.027113, - 0.014427, - 0.016954, - -0.035702, - 0.027184, - 0.026271, - -0.027986, - 0.0086359, - -0.026046, - -0.029656, - 0.016062, - 0.021409, - 0.0067872, - -0.065038, - -0.029437, - -0.0034896, - 0.035571, - 0.066566, - 0.049018, - 0.0079054, - -0.019554, - -0.0024487, - 0.078507, - -0.04786, - -0.0027347, - 0.078727, - 0.002604, - 0.018816, - -0.0079513, - 0.0085542, - -0.00010911, - 0.040039, - 0.054131, - 0.038474, - 0.081924, - 0.000061922, - 0.068937, - -0.0010635, - -0.0040959, - -0.04278, - 0.014454, - 0.0062921, - -0.0081196, - -0.042886, - -0.06691, - 0.095636, - -0.011553, - 0.01135, - -0.040074, - 0.018352, - 0.099287, - 0.020398, - 0.078541, - -0.0018362, - 0.021259, - 0.016436, - -0.058122, - 0.029481, - 0.076817, - 0.0020558, - 0.014965, - 0.017703, - -0.0057172, - -0.062452, - 0.022001, - 0.064856, - -0.058792, - -0.011451, - 0.027736, - -0.0048677, - -0.0086926, - -0.028329, - 0.050957, - -0.0044364, - 0.0062804, - 0.028005, - 0.0069513, - -0.020635, - 0.055127, - -0.016665, - 0.0053561, - 0.04212, - 0.036709, - -0.025548, - -0.00037619, - -0.00095815, - 0.016915, - 0.013156, - -0.092878, - -0.018025, - -0.026073, - 0.004274, - -0.001049, - -0.017378, - 0.012116, - -0.017796, - 0.021279, - -0.023758, - 0.07636, - -0.053599, - -0.030763, - 0.011244, - -0.028557, - -0.030754, - -0.087737, - 0.0263, - -0.024024, - 0.051026, - 0.061941, - 0.059001, - -0.0081217, - 0.041749, - 0.080933, - -0.084267, - -0.029337, - -0.060681, - 0.03154, - -0.021906, - 0.0091971, - -0.037382, - 0.057359, - -0.093636, - 0.0075326, - -0.021878, - -0.050989, - 0.056397, - -0.00099115, - -0.026924, - -0.014258, - -0.034638, - -0.013683, - 0.0058357, - 0.023555, - -0.0026792, - 0.025633, - 0.041968, - 0.014683, - -0.095771, - -0.061277, - -0.092468, - -0.05231, - 0.017666, - -0.021447, - -0.028115, - 0.077996, - 0.098956, - -0.018726, - 0.077831, - 0.095486, - -0.032425, - -0.0015395, - -0.065798, - 0.0085133, - -0.063986, - 0.022146, - 0.0025883, - -0.0041975, - 0.026812, - -0.0041921, - -0.068439, - -0.070651, - 0.022686, - -0.03638, - 0.0093, - 0.019446, - -0.012896, - 0.013025, - -0.038994, - -0.049343, - -0.070101, - -0.02862, - -0.029751, - -0.0073348, - 0.031775, - -0.074705, - -0.045951, - -0.024484, - -0.048625, - 0.033472, - 0.054813, - -0.0076211, - 0.024936, - 0.017589, - -0.006863, - 0.0053357, - 0.010587, - -0.018565, - 0.040867, - 0.036923, - 0.019645, - -0.053143, - 0.059677, - 0.077751, - -0.075086, - -0.040148, - 0.13164, - -0.019124, - 0.020693, - 0.00017897, - -0.038416, - -0.055324, - 0.036589, - 0.038258, - 0.054761, - -0.060964, - 0.0031565, - 0.015811, - -0.0090821, - -0.0058368, - -0.028649, - 0.040848, - -0.032306, - 0.096102, - -0.037293, - 0.046218, - 0.012446, - 0.01829, - 0.0068251, - 0.034952, - 0.0037562, - -0.012055 - ], - "soccer": [ - 0.083356, - -0.11514, - -0.024889, - 0.029984, - -0.026481, - -0.084621, - -0.10807, - -0.10002, - 0.037212, - -0.040361, - -0.026338, - -0.020677, - -0.0012103, - 0.043504, - 0.044148, - 0.019257, - 0.12515, - 0.034605, - 0.026885, - 0.034775, - 0.00058163, - -0.052669, - 0.011335, - 0.088218, - 0.0078239, - -0.055488, - 0.034178, - 0.032479, - 0.0064741, - 0.038958, - -0.025292, - -0.053659, - -0.010861, - -0.027596, - 0.078137, - 0.013345, - 0.047558, - -0.026813, - 0.014026, - -0.088822, - -0.055481, - -0.12849, - 0.02014, - -0.040385, - 0.040058, - 0.0049186, - -0.024443, - -0.0013162, - -0.04233, - 0.045926, - 0.052473, - 0.024056, - 0.060767, - -0.010731, - -0.033678, - -0.063089, - 0.053047, - -0.030058, - -0.0082422, - 0.020694, - 0.0047934, - 0.013311, - 0.08934, - 0.061942, - 0.010066, - -0.019704, - 0.044159, - -0.000039783, - 0.11841, - -0.050225, - -0.020009, - -0.057439, - 0.070334, - -0.0085521, - 0.11383, - -0.0011877, - -0.0072593, - -0.012689, - -0.045637, - -0.020819, - -0.0041382, - -0.007977, - -0.079197, - 0.011454, - 0.039375, - -0.062821, - -0.05674, - -0.038354, - -0.0039848, - 0.023177, - 0.023154, - 0.065785, - -0.11615, - 0.018025, - 0.11622, - 0.1411, - -0.12564, - -0.022719, - 0.065986, - -0.14092, - 0.020724, - 0.1223, - -0.00443, - -0.12649, - 0.0028624, - -0.11065, - -0.11036, - 0.088848, - 0.015254, - -0.046746, - -0.11318, - 0.054238, - 0.0068932, - 0.022026, - 0.090407, - -0.018597, - -0.050019, - -0.0034154, - -0.021445, - 0.049352, - -0.034919, - -0.0053296, - 0.021546, - -0.056263, - 0.083233, - -0.11106, - -0.062937, - -0.055403, - -0.081523, - 0.074679, - -0.015157, - 0.01405, - 0.018602, - -0.048316, - -0.0037451, - -0.040372, - 0.065889, - 0.024062, - -0.031558, - -0.062523, - 0.034228, - 0.023574, - 0.068631, - 0.014194, - -0.04006, - 0.045276, - -0.051144, - -0.011726, - -0.064075, - -0.010907, - 0.055528, - 0.11067, - -0.039784, - -0.042304, - -0.070168, - -0.033441, - -0.040517, - 0.082298, - 0.066891, - -0.0073379, - -0.0087824, - -0.047239, - -0.089285, - -0.045526, - -0.0137, - -0.10311, - 0.075436, - 0.01795, - -0.018141, - -0.044971, - 0.054158, - 0.029985, - -0.000349, - 0.026998, - 0.078371, - 0.07295, - -0.061658, - 0.069969, - -0.019345, - -0.065283, - 0.053317, - 0.01452, - -0.064116, - -0.06016, - 0.0032796, - -0.02948, - -0.02175, - 0.14235, - 0.078052, - -0.077918, - 0.11205, - 0.062636, - 0.0077847, - -0.074783, - 0.039093, - -0.038349, - -0.056692, - 0.0076904, - 0.05765, - -0.019387, - -0.1858, - 0.073857, - -0.018748, - -0.093881, - -0.031714, - -0.0044236, - 0.028902, - -0.020564, - -0.016204, - -0.020784, - 0.17318, - -0.0091959, - 0.041254, - 0.044926, - -0.02379, - -0.087266, - -0.079728, - -0.046636, - -0.016798, - -0.056649, - -0.025498, - -0.045631, - -0.079584, - 0.10579, - -0.056987, - 0.018045, - 0.013612, - 0.09108, - -0.030339, - 0.011118, - 0.047748, - -0.042268, - -0.027962, - 0.034834, - -0.037922, - 0.074959, - -0.096757, - 0.04896, - -0.024779, - -0.00223, - 0.03694, - -0.017008, - 0.064792, - -0.06377, - -0.0069281, - -0.0082805, - -0.057403, - 0.0037503, - 0.011821, - -0.002839, - 0.056967, - -0.03031, - -0.03945, - -0.033309, - 0.0058054, - 0.0065757, - -0.03895, - -0.034262, - 0.049786, - 0.041101, - -0.063463, - -0.019042, - 0.070439, - 0.018717, - 0.061026, - -0.015747, - -0.11391, - -0.020308, - 0.043108, - 0.0061489, - 0.045021, - 0.086734, - -0.12764, - 0.0040251, - -0.045188, - -0.049336, - -0.048764, - -0.032846, - 0.0074012, - 0.029583, - 0.1309, - 0.042172, - 0.018665, - -0.0029316, - -0.020575, - -0.028798, - 0.0486, - -0.066029, - 0.018996, - -0.002205, - 0.14634, - -0.045787, - -0.072904, - 0.02316, - 0.018259, - -0.057165, - -0.026302, - 0.050361, - 0.11552, - -0.036316 - ], - "encrypt": [ - 0.021563, - -0.0064469, - -0.13387, - 0.066947, - 0.01493, - 0.042445, - 0.028291, - -0.058165, - 0.011145, - -0.0041376, - -0.025838, - -0.051717, - -0.12128, - -0.006058, - -0.11146, - 0.080424, - 0.079809, - 0.040448, - 0.11784, - 0.015555, - -0.024268, - 0.0025093, - -0.0055635, - 0.087827, - -0.011582, - 0.09648, - 0.048643, - 0.0059398, - -0.013207, - 0.015091, - 0.054281, - -0.047181, - -0.05801, - 0.11326, - 0.0021534, - -0.053689, - -0.042313, - 0.060475, - 0.085434, - -0.007987, - -0.0013618, - -0.1176, - -0.0044662, - -0.031933, - -0.045795, - -0.073212, - -0.042223, - 0.036411, - -0.00042389, - 0.05203, - -0.0052701, - -0.14408, - 0.060447, - -0.024317, - -0.12694, - 0.0018616, - -0.0090359, - 0.058335, - 0.040141, - -0.018487, - -0.0084567, - -0.12767, - 0.091596, - -0.080524, - -0.085961, - 0.059447, - 0.068694, - 0.054142, - -0.0088596, - -0.0024335, - -0.064885, - 0.018648, - 0.070537, - 0.079913, - -0.12107, - -0.063288, - 0.065218, - 0.035734, - 0.026643, - -0.060308, - -0.054741, - -0.086584, - -0.031666, - 0.043961, - -0.020072, - -0.0092052, - 0.00020641, - -0.053171, - 0.04043, - 0.019544, - 0.084782, - -0.02304, - -0.074757, - 0.090272, - 0.024787, - -0.091266, - 0.056892, - -0.024295, - 0.053979, - 0.083912, - 0.0043422, - 0.030928, - 0.05504, - 0.026021, - -0.015197, - -0.08881, - 0.033485, - 0.049911, - 0.020162, - 0.052212, - 0.058379, - 0.12699, - 0.064738, - 0.039682, - 0.040744, - -0.028755, - 0.0704, - 0.11364, - 0.0044365, - 0.075653, - 0.11303, - 0.044106, - -0.054067, - -0.039613, - 0.062693, - -0.071112, - -0.056865, - 0.044025, - -0.0467, - 0.10487, - -0.086412, - 0.0010557, - 0.002382, - -0.023045, - 0.09126, - -0.053769, - 0.031265, - -0.041316, - -0.0637, - 0.083319, - 0.02911, - 0.035348, - -0.019094, - -0.020557, - -0.017584, - -0.018953, - -0.10141, - -0.12798, - -0.00089778, - -0.026231, - -0.031171, - 0.085412, - 0.044949, - 0.03308, - 0.10058, - -0.024754, - -0.051125, - 0.0091646, - 0.055148, - 0.0089951, - 0.059623, - -0.038001, - -0.053786, - 0.072509, - 0.032412, - -0.17687, - 0.016215, - 0.069974, - 0.038685, - -0.005765, - 0.013546, - 0.05726, - -0.048877, - -0.0032609, - -0.067077, - 0.071186, - 0.062878, - 0.019838, - -0.051769, - -0.0085654, - 0.10371, - -0.076795, - 0.001733, - 0.050726, - -0.059544, - -0.080238, - -0.066347, - 0.19688, - -0.0070015, - 0.04597, - 0.012062, - -0.0080469, - -0.057762, - 0.052944, - 0.10009, - 0.0018424, - -0.0041628, - -0.080036, - -0.041142, - 0.013375, - -0.12132, - 0.016023, - -0.057711, - 0.093376, - 0.0059691, - -0.049264, - 0.076179, - -0.02148, - -0.0054253, - -0.060704, - 0.0048351, - 0.0047181, - 0.039382, - 0.074096, - 0.065762, - 0.048591, - -0.073482, - 0.015718, - -0.077081, - 0.052854, - 0.12119, - 0.0072571, - -0.012764, - 0.06595, - -0.0069828, - -0.034627, - 0.043429, - 0.0053401, - 0.073101, - 0.054777, - 0.046876, - -0.075795, - -0.032828, - -0.14529, - 0.02491, - -0.11349, - -0.0301, - 0.053532, - 0.037076, - -0.048863, - 0.16497, - -0.075716, - 0.047879, - -0.038931, - -0.034255, - -0.0083066, - 0.049178, - 0.020383, - -0.037945, - 0.10368, - 0.033897, - -0.023404, - -0.12093, - -0.021921, - 0.019202, - 0.013381, - 0.0099329, - -0.020918, - -0.06923, - -0.074634, - 0.014085, - 0.061239, - -0.03544, - -0.10462, - 0.086485, - -0.064036, - 0.081288, - 0.000054951, - 0.058535, - 0.049978, - 0.022093, - 0.040411, - -0.089646, - -0.041146, - -0.12247, - 0.035548, - 0.074795, - -0.045227, - 0.06829, - -0.070751, - 0.072322, - -0.073574, - -0.09438, - 0.044215, - 0.0082054, - -0.062141, - -0.041951, - 0.062079, - -0.034609, - 0.047582, - -0.086307, - 0.013809, - -0.015131, - 0.025616, - 0.058369, - -0.013101, - -0.014194, - -0.074178, - -0.011938, - 0.02645 - ], - "humanities": [ - 0.0128, - -0.10277, - 0.011411, - -0.025225, - 0.0068599, - -0.01649, - -0.015924, - -0.079125, - 0.044362, - -0.014957, - -0.025043, - -0.049813, - 0.046938, - -0.0036248, - 0.023974, - 0.047917, - 0.091969, - 0.0037115, - 0.0043463, - -0.022747, - -0.048317, - -0.015729, - 0.066681, - 0.06195, - 0.049315, - -0.0035697, - -0.011876, - 0.076895, - 0.068314, - 0.025659, - 0.035897, - -0.019343, - -0.026474, - -0.028794, - 0.010462, - 0.024918, - 0.074458, - 0.029434, - -0.0074558, - 0.022557, - -0.072647, - -0.11021, - 0.00055324, - 0.10125, - 0.02952, - -0.03595, - -0.018467, - 0.035266, - -0.0019239, - 0.00041993, - -0.026253, - -0.0028412, - 0.050923, - 0.037527, - -0.044632, - 0.032796, - -0.013713, - 0.019898, - -0.0081372, - 0.043976, - 0.00022887, - 0.0055993, - 0.064335, - 0.054332, - 0.02856, - -0.022936, - 0.014272, - -0.015715, - 0.038692, - 0.0026288, - 0.04382, - 0.050926, - -0.0021099, - -0.0026184, - -0.0028549, - -0.0086436, - 0.051907, - -0.018835, - 0.10084, - 0.015996, - -0.019417, - 0.033416, - -0.037552, - 0.080864, - -0.085801, - 0.0077199, - -0.034687, - -0.035835, - -0.0018964, - 0.067322, - 0.03706, - 0.018204, - -0.056189, - 0.048195, - 0.037592, - 0.044785, - 0.042712, - 0.00396, - -0.049491, - 0.050257, - 0.054939, - -0.026582, - -0.003698, - -0.011534, - 0.013188, - -0.026286, - -0.042889, - 0.037176, - 0.07357, - -0.040452, - -0.033505, - 0.10683, - 0.024779, - -0.00077369, - -0.054378, - 0.037762, - 0.017454, - -0.043495, - -0.0026419, - 0.019519, - 0.0041201, - -0.049614, - -0.066397, - -0.033707, - 0.026426, - -0.019259, - -0.097481, - -0.070467, - 0.0031181, - 0.10606, - -0.0065725, - 0.084643, - -0.024747, - 0.053461, - -0.022291, - 0.025973, - 0.0049455, - -0.010438, - 0.0015606, - -0.017528, - -0.010167, - -0.049844, - -0.017621, - -0.015744, - -0.021427, - -0.07273, - -0.060761, - 0.018477, - -0.0060075, - -0.01007, - 0.057655, - 0.05713, - -0.008746, - -0.014934, - 0.020546, - 0.036981, - -0.00063241, - 0.039874, - 0.0095104, - 0.017187, - 0.057426, - -0.029977, - -0.03983, - -0.0059996, - -0.003079, - 0.011434, - -0.047926, - 0.013425, - -0.069965, - -0.0024699, - 0.038002, - -0.06428, - -0.0066104, - 0.024325, - 0.032381, - 0.0407, - 0.055832, - 0.048995, - -0.0099015, - 0.032481, - 0.0293, - 0.024452, - -0.031864, - 0.0078583, - -0.029649, - -0.066518, - 0.031885, - 0.11993, - -0.030408, - -0.014574, - -0.027705, - 0.090776, - -0.061677, - -0.043527, - -0.0060084, - 0.0057221, - -0.050197, - -0.033147, - -0.00016259, - -0.033605, - -0.13209, - -0.04972, - 0.037193, - -0.024046, - 0.00032735, - 0.01155, - 0.0083459, - 0.012821, - -0.027593, - 0.0041292, - 0.066468, - -0.0020027, - -0.0022796, - 0.02227, - 0.053602, - 0.037519, - -0.014863, - -0.018374, - -0.054563, - -0.0078708, - 0.030664, - 0.055615, - -0.053534, - 0.091912, - -0.0090852, - -0.0032871, - 0.039398, - 0.043416, - 0.024123, - -0.042, - 0.036979, - 0.017565, - -0.054963, - -0.016215, - 0.0068267, - -0.020163, - -0.0082115, - -0.040611, - -0.04927, - 0.013688, - -0.059898, - -0.0063964, - -0.0031967, - 0.070175, - 0.010585, - 0.016748, - -0.045206, - -0.0059977, - 0.0077809, - 0.024756, - 0.094522, - 0.061276, - -0.038911, - -0.046951, - -0.016728, - 0.047229, - -0.008574, - 0.013756, - 0.090819, - 0.032697, - -0.017872, - -0.049242, - -0.017894, - -0.044167, - -0.0043571, - 0.024969, - 0.06536, - 0.00093652, - 0.047451, - 0.04523, - 0.036982, - 0.044444, - -0.070325, - -0.010055, - 0.04478, - 0.00072901, - -0.0061526, - 0.020586, - -0.0093674, - 0.0046959, - 0.066106, - -0.009958, - -0.037147, - -0.057477, - -0.044784, - 0.0011784, - -0.06861, - -0.039235, - -0.01307, - -0.0017187, - -0.075569, - 0.008586, - -0.067551, - -0.029206, - 0.018812, - 0.0021463, - -0.0035929, - 0.036825, - -0.00082472, - 0.046647 - ], - "aeronautical": [ - 0.0010786, - -0.07853, - 0.046417, - -0.038116, - -0.020958, - 0.0236, - 0.040077, - -0.096577, - 0.051557, - 0.072136, - 0.02083, - -0.053364, - -0.036377, - 0.028082, - 0.048532, - 0.035391, - 0.04671, - -0.010477, - 0.014481, - 0.063851, - 0.058743, - 0.037368, - 0.031248, - 0.065724, - -0.030515, - -0.045364, - -0.0050524, - 0.014911, - 0.027028, - -0.024203, - 0.045012, - -0.018437, - 0.076193, - -0.070495, - 0.094715, - 0.029417, - -0.020943, - -0.00061525, - 0.047016, - 0.0094789, - -0.031579, - -0.091285, - 0.085722, - -0.0037079, - -0.067512, - -0.014113, - 0.020845, - -0.0326, - -0.072062, - 0.021045, - -0.025697, - 0.035094, - -0.0086456, - 0.052072, - 0.026968, - -0.018732, - -0.042468, - 0.0025809, - -0.0027001, - 0.020779, - 0.010994, - 0.049959, - 0.081083, - 0.0091094, - 0.049208, - -0.028058, - -0.036086, - -0.016619, - 0.018334, - 0.0097859, - 0.089114, - -0.012557, - 0.074676, - 0.027442, - 0.025935, - -0.04105, - -0.015796, - -0.018037, - -0.017573, - 0.018186, - -0.050908, - 0.05433, - -0.043466, - -0.011292, - -0.052483, - -0.00977, - -0.004656, - 0.021176, - -0.0045194, - -0.041573, - -0.012415, - 0.056493, - -0.078233, - 0.0061544, - 0.0093, - 0.072135, - -0.023978, - -0.029692, - 0.0096572, - 0.048861, - 0.017163, - 0.054208, - -0.026139, - -0.048971, - 0.021588, - -0.070945, - 0.0018669, - 0.028167, - 0.064634, - 0.061663, - 0.030887, - 0.099969, - 0.014662, - 0.071413, - 0.024344, - 0.017081, - -0.0093947, - -0.018007, - -0.016985, - -0.0064638, - 0.051268, - -0.031784, - -0.1284, - -0.005556, - 0.059977, - 0.0091654, - 0.016218, - -0.014354, - -0.0089354, - 0.060819, - -0.030589, - 0.027936, - -0.018401, - -0.0031752, - 0.022855, - -0.021685, - 0.055885, - 0.043267, - 0.025796, - 0.0676, - 0.0014388, - 0.022737, - -0.024769, - -0.0052284, - -0.085141, - 0.019773, - -0.023825, - -0.052907, - 0.014056, - -0.028632, - 0.079597, - 0.14454, - -0.028533, - -0.014216, - 0.065948, - 0.0020097, - 0.002741, - 0.016678, - -0.03662, - 0.027258, - 0.034248, - -0.033759, - -0.062182, - -0.039998, - -0.010964, - -0.018144, - 0.022663, - -0.031065, - 0.05325, - -0.0172, - 0.015009, - 0.029331, - -0.012016, - -0.036236, - 0.0012961, - 0.022712, - -0.0057405, - 0.035163, - -0.025146, - 0.021527, - -0.0088711, - -0.030892, - -0.042855, - -0.027374, - 0.029914, - -0.033852, - -0.038547, - 0.092745, - -0.020327, - -0.0029525, - -0.034669, - 0.063463, - 0.08022, - -0.059077, - -0.0060701, - 0.027207, - -0.06237, - 0.059062, - 0.0092837, - -0.038901, - -0.089969, - -0.027492, - -0.030812, - -0.016685, - 0.037099, - 0.016061, - -0.021838, - 0.015831, - -0.058608, - 0.0094328, - 0.14791, - 0.012897, - -0.029487, - 0.036056, - 0.015469, - 0.029357, - 0.0026018, - -0.039712, - -0.030336, - 0.017886, - -0.027737, - -0.083, - 0.020773, - 0.078461, - -0.015167, - 0.084777, - 0.045811, - 0.085607, - 0.036135, - -0.041766, - -0.0013126, - -0.029183, - -0.025427, - 0.039015, - -0.017629, - -0.031446, - -0.037786, - 0.010986, - -0.018453, - -0.0041169, - -0.0097434, - -0.0046828, - 0.0080231, - -0.026597, - -0.085339, - -0.0036394, - -0.025267, - -0.025155, - -0.039672, - -0.020714, - 0.038876, - 0.054443, - 0.037704, - 0.023431, - -0.017932, - 0.043334, - 0.01495, - 0.027197, - 0.025665, - -0.020431, - 0.01421, - -0.0047313, - -0.020584, - 0.006474, - 0.0043409, - -0.03896, - 0.028501, - 0.010791, - 0.062631, - -0.015083, - 0.012497, - 0.055877, - -0.036375, - -0.0021806, - -0.0038152, - -0.097329, - 0.02922, - 0.011974, - 0.02601, - -0.068649, - 0.13285, - -0.045682, - 0.016664, - 0.0086915, - -0.0097561, - -0.033696, - -0.082021, - -0.012616, - 0.0046664, - 0.022841, - 0.018134, - -0.0023092, - -0.0076313, - -0.0026424, - -0.070963, - -0.019402, - -0.015814, - -0.0029212, - 0.0673, - -0.01031 - ], - "corporation": [ - 0.011145, - -0.02565, - 0.0099295, - 0.019165, - -0.0088676, - -0.0018589, - -0.017117, - -0.06153, - 0.039518, - -0.0090718, - -0.016511, - -0.0070961, - 0.015147, - 0.047354, - -0.044453, - 0.060774, - 0.047864, - 0.020583, - 0.0137, - 0.017626, - -0.0063925, - -0.01688, - -0.004267, - 0.028857, - 0.01892, - 0.024146, - 0.0010625, - 0.0087289, - -0.008303, - 0.0083598, - -0.019553, - -0.006866, - -0.06095, - -0.036735, - -0.0025086, - 0.014963, - -0.066611, - -0.030809, - 0.0077377, - 0.018807, - -0.013666, - -0.08813, - -0.0032958, - 0.012485, - 0.045133, - 0.011735, - 0.019986, - -0.022085, - -0.018095, - 0.011935, - 0.044189, - 0.018987, - 0.016014, - 0.041285, - -0.0090851, - 0.039615, - 0.0020644, - -0.0076676, - -0.0063723, - 0.012046, - 0.014752, - 0.00073849, - 0.032032, - -0.011334, - 0.020394, - -0.003084, - 0.0056089, - -0.013247, - 0.082108, - -0.022517, - 0.029789, - -0.039224, - 0.024053, - 0.050571, - -0.0015637, - 0.0042132, - 0.0030135, - 0.016516, - -0.013621, - -0.016568, - -0.018516, - 0.020547, - -0.04054, - 0.038643, - -0.030339, - 0.043967, - -0.065593, - -0.033542, - 0.042685, - 0.020277, - 0.015429, - 0.031422, - -0.049425, - 0.0052679, - 0.027855, - 0.069933, - -0.0024329, - -0.02315, - 0.039262, - 0.03744, - -0.026802, - 0.014213, - 0.0014821, - -0.028329, - -0.0019379, - -0.077224, - 0.017845, - 0.0055035, - -0.0072915, - -0.015811, - -0.019778, - 0.041542, - 0.038294, - 0.029952, - 0.021142, - 0.032416, - -0.055667, - -0.040931, - -0.01778, - 0.005711, - -0.024361, - -0.045872, - 0.031987, - 0.027855, - 0.042456, - 0.031154, - 0.028472, - -0.075175, - 0.023404, - 0.071095, - 0.02183, - 0.007079, - -0.0084088, - -0.025073, - -0.016602, - 0.040006, - 0.046075, - 0.04231, - -0.0094239, - 0.01677, - -0.033582, - 0.014582, - -0.041348, - 0.020652, - -0.022303, - -0.034897, - 0.03226, - -0.049247, - 0.0061289, - -0.0045289, - 0.036566, - 0.053137, - 0.018624, - -0.05153, - 0.015702, - -0.023322, - -0.014787, - -0.0089489, - -0.012244, - -0.025125, - 0.027224, - -0.020791, - -0.026624, - 0.041713, - 0.021347, - 0.01922, - 0.010494, - -0.017278, - 0.01334, - 0.031258, - 0.019308, - 0.012562, - 0.0048923, - 0.03816, - -0.063987, - 0.031059, - -0.024755, - 0.036606, - -0.0017903, - -0.012347, - 0.0000044863, - -0.02509, - 0.019874, - 0.024414, - -0.018512, - -0.055544, - -0.0176, - 0.067053, - 0.014779, - -0.019402, - -0.033522, - 0.053117, - -0.02355, - -0.020797, - -0.012337, - -0.032491, - -0.047202, - -0.0090941, - 0.013912, - 0.0075594, - -0.09752, - 0.030877, - 0.018802, - -0.032501, - 0.027944, - 0.0048569, - -0.032676, - -0.012886, - -0.013442, - -0.029912, - 0.066906, - -0.013801, - -0.012356, - 0.00027938, - -0.022408, - 0.011677, - -0.0075239, - -0.02492, - 0.072892, - 0.042276, - 0.0076344, - -0.020624, - -0.029949, - 0.071375, - -0.010224, - 0.012412, - 0.038659, - 0.0024662, - -0.0047328, - -0.0050878, - -0.023438, - -0.039008, - -0.020103, - 0.0026416, - -0.01641, - 0.0038086, - 0.00096123, - -0.027865, - 0.031189, - -0.019078, - 0.04188, - -0.023422, - 0.0023965, - 0.063571, - 0.02385, - -0.01219, - 0.030128, - -0.0037634, - 0.005736, - -0.027485, - -0.041952, - -0.034584, - -0.0016991, - -0.020387, - -0.024798, - 0.0087973, - -0.041377, - 0.030674, - 0.011034, - 0.0010404, - -0.003631, - 0.029534, - 0.00065616, - 0.0033463, - 0.004154, - -0.015141, - -0.027055, - 0.012443, - -0.059085, - 0.079154, - -0.050991, - 0.05025, - -0.077183, - 0.00089868, - 0.0013843, - -0.032093, - 0.0029296, - 0.015526, - -0.0369, - 0.018287, - 0.040347, - -0.0071167, - 0.0037388, - -0.003087, - -0.015629, - -0.0033836, - -0.00095812, - -0.06635, - -0.022089, - 0.057612, - -0.0080756, - 0.031647, - 0.02828, - -0.016459, - -0.027502, - -0.014644, - -0.049234, - -0.029734, - -0.025025, - -0.0034885 - ], - "meteorology": [ - -0.046353, - -0.070138, - 0.031103, - -0.043667, - 0.022294, - -0.10539, - 0.042764, - -0.090709, - 0.071607, - 0.022149, - 0.015622, - -0.03945, - -0.054869, - 0.0022206, - 0.058912, - -0.017564, - 0.083927, - 0.03766, - 0.010875, - 0.09016, - 0.030472, - 0.017566, - 0.049804, - 0.058028, - 0.010672, - -0.064029, - -0.02223, - -0.0046498, - -0.00070572, - -0.01463, - 0.011134, - -0.0035739, - 0.022851, - -0.041729, - 0.044236, - 0.048457, - 0.010295, - 0.0052857, - -0.0011123, - -0.031983, - -0.076744, - -0.09463, - 0.06572, - 0.034757, - -0.034483, - -0.03517, - -0.0014204, - -0.086854, - -0.035629, - 0.0090573, - -0.034563, - -0.020327, - 0.05055, - 0.054521, - -0.039519, - 0.043895, - -0.0047716, - 0.01077, - 0.0024555, - 0.0063704, - 0.022894, - 0.061965, - 0.059317, - -0.0047527, - -0.014756, - -0.026077, - 0.00016125, - 0.022781, - 0.060223, - 0.052046, - 0.067883, - 0.045066, - 0.0032974, - 0.0024324, - 0.0083654, - -0.071058, - -0.026367, - -0.014449, - -0.0025869, - 0.019613, - -0.017433, - 0.023713, - -0.045531, - 0.0064419, - -0.050783, - 0.0033931, - 0.034842, - -0.031446, - 0.046936, - -0.028804, - 0.045637, - 0.023232, - -0.074724, - 0.025975, - -0.0075145, - 0.05441, - 0.00043233, - 0.098859, - 0.0027033, - 0.022977, - 0.017948, - -0.063374, - -0.0093886, - -0.021084, - -0.00068364, - -0.027932, - 0.014345, - 0.05009, - 0.075702, - -0.011871, - -0.0018857, - 0.055821, - 0.0059151, - 0.045896, - 0.016306, - -0.032045, - -0.018688, - 0.035349, - -0.022333, - -0.0026636, - -0.0031322, - -0.0028542, - 0.010729, - -0.025403, - 0.031365, - 0.066167, - -0.0375, - -0.034681, - -0.093543, - 0.10938, - -0.0019801, - 0.0025393, - -0.055679, - 0.011498, - 0.032688, - 0.023884, - 0.086337, - -0.006996, - 0.024779, - -0.016819, - 0.015097, - 0.0050917, - -0.031423, - -0.033377, - -0.028176, - -0.0051163, - -0.079838, - -0.013008, - -0.041898, - -0.037434, - 0.049185, - 0.036267, - -0.04452, - -0.062716, - 0.056648, - 0.084742, - 0.0095083, - 0.049078, - -0.027234, - 0.0077309, - 0.015861, - -0.072515, - -0.066463, - 0.022209, - -0.064851, - -0.015163, - -0.050757, - -0.025339, - 0.03089, - 0.062794, - -0.010666, - -0.017704, - 0.014841, - -0.023081, - 0.033376, - 0.043509, - -0.01426, - 0.083635, - -0.031741, - -0.00036475, - -0.04413, - 0.03288, - -0.0029068, - -0.022888, - 0.0047162, - -0.017025, - -0.03246, - 0.090326, - 0.0060795, - -0.021036, - -0.0041519, - 0.063028, - -0.061725, - -0.054965, - -0.029769, - -0.037738, - -0.032764, - 0.06673, - -0.018561, - -0.016834, - -0.10517, - -0.021878, - -0.036626, - -0.00353, - 0.064841, - 0.030996, - 0.022693, - 0.0050237, - -0.067142, - 0.014395, - 0.098448, - 0.02689, - 0.010841, - -0.024086, - 0.0020785, - 0.078289, - 0.010792, - -0.051695, - -0.054963, - 0.0082981, - -0.037041, - -0.017474, - 0.0064938, - 0.077521, - -0.016696, - 0.05251, - -0.010426, - 0.072274, - 0.039586, - -0.0094377, - 0.052819, - -0.013447, - -0.024437, - 0.03593, - 0.0064091, - 0.081804, - 0.025031, - 0.010823, - -0.017187, - -0.026515, - 0.0055128, - 0.014479, - 0.053471, - -0.016222, - 0.041357, - 0.035192, - -0.041859, - -0.00071185, - -0.020838, - 0.027713, - 0.043682, - 0.02566, - 0.055204, - 0.0092226, - -0.0057537, - -0.0022075, - 0.015857, - 0.016463, - 0.020606, - 0.0099918, - 0.059704, - 0.010025, - -0.012223, - 0.017946, - -0.021663, - -0.062817, - 0.0024068, - 0.034135, - 0.083474, - -0.02858, - -0.01231, - 0.074564, - -0.080274, - 0.001146, - -0.041817, - 0.015893, - -0.061671, - -0.03976, - 0.0018299, - -0.081741, - 0.061039, - -0.048298, - 0.01974, - -0.025086, - -0.032238, - -0.050389, - -0.0098858, - -0.0036021, - -0.05049, - 0.0052001, - -0.02183, - 0.02246, - -0.040489, - 0.0056281, - 0.00019835, - 0.020096, - -0.059712, - 0.028423, - 0.098924, - -0.036316 - ], - "ringtone": [ - 0.010516, - 0.054734, - 0.0084646, - 0.09709, - -0.025054, - -0.021964, - 0.024429, - -0.09286, - 0.068578, - 0.023187, - 0.0011033, - -0.022211, - -0.047291, - 0.0093252, - 0.012988, - 0.024063, - 0.1268, - -0.014387, - 0.033196, - 0.02707, - 0.011941, - -0.039228, - 0.098354, - 0.036752, - 0.10552, - -0.0042518, - 0.019009, - 0.040596, - -0.065608, - -0.070453, - -0.086023, - 0.043446, - 0.062302, - 0.03405, - -0.011944, - -0.050457, - 0.00028962, - 0.0074981, - -0.057159, - -0.062443, - 0.00067216, - -0.098832, - -0.074465, - -0.072253, - 0.10537, - 0.011165, - 0.040755, - -0.043845, - 0.015412, - 0.037374, - -0.046127, - -0.038579, - -0.0025216, - -0.11007, - -0.035274, - 0.045314, - -0.055216, - 0.031311, - -0.091039, - 0.065077, - -0.076749, - -0.030492, - 0.17434, - 0.063772, - -0.045073, - 0.053558, - 0.082577, - 0.078478, - -0.00098406, - 0.001307, - 0.024392, - 0.0040509, - -0.0041893, - 0.00048996, - -0.022186, - 0.049791, - -0.0052325, - -0.06026, - -0.0065355, - -0.014021, - 0.034435, - -0.040784, - -0.063667, - 0.048942, - -0.078019, - -0.031602, - -0.066304, - 0.014526, - -0.078761, - -0.050991, - -0.046114, - -0.017148, - -0.082361, - -0.012139, - 0.016758, - 0.094985, - 0.01412, - -0.075143, - 0.026379, - 0.065731, - -0.0037916, - 0.024799, - 0.012352, - -0.012424, - -0.038541, - -0.097553, - -0.0048079, - -0.049834, - 0.051713, - -0.075049, - 0.035124, - 0.096137, - 0.12205, - 0.046496, - -0.033568, - 0.019618, - -0.041785, - 0.024765, - -0.062603, - -0.090129, - 0.03308, - 0.062494, - -0.017205, - 0.0086978, - 0.062109, - 0.020349, - 0.050619, - -0.0017113, - 0.065674, - 0.052008, - -0.014304, - -0.074458, - -0.13353, - 0.040016, - 0.0090459, - 0.020425, - -0.0036889, - 0.015519, - -0.010284, - -0.025014, - 0.032679, - 0.016384, - 0.040676, - 0.027352, - -0.00082332, - -0.073161, - -0.005227, - -0.030215, - 0.012419, - -0.016672, - 0.018111, - 0.03395, - -0.063139, - -0.0029162, - 0.030232, - 0.074404, - -0.086863, - 0.046059, - 0.015202, - 0.05052, - 0.01984, - 0.025454, - -0.039706, - 0.035737, - 0.03129, - -0.023211, - -0.08278, - -0.016513, - 0.0012048, - 0.058311, - -0.091693, - 0.14961, - -0.019949, - -0.011145, - -0.082218, - 0.058747, - 0.0060336, - -0.013526, - -0.029054, - -0.042048, - -0.022525, - -0.051917, - -0.01657, - 0.04435, - -0.057766, - -0.0084659, - -0.028208, - 0.085103, - 0.068123, - 0.012529, - -0.0000093186, - 0.038734, - 0.000096703, - 0.072786, - -0.028373, - 0.023028, - 0.0971, - -0.03821, - 0.020796, - 0.056442, - -0.18421, - 0.094507, - 0.0063512, - 0.057523, - 0.035326, - 0.0009981, - 0.0742, - -0.025128, - -0.064642, - -0.077155, - 0.12827, - 0.01958, - -0.013601, - 0.00032961, - 0.0447, - -0.083205, - -0.082202, - 0.01944, - 0.028676, - 0.00030093, - 0.055291, - -0.084485, - 0.11793, - 0.11184, - 0.060068, - -0.016619, - 0.049577, - -0.0088676, - 0.0015241, - 0.0062003, - 0.077322, - -0.10091, - -0.072083, - 0.005446, - 0.096864, - 0.066582, - 0.041918, - -0.010671, - 0.051741, - -0.039316, - 0.12088, - -0.031978, - -0.0029229, - -0.033909, - 0.0089931, - 0.013001, - 0.067548, - 0.083122, - 0.023056, - 0.021352, - 0.031018, - -0.056847, - -0.072926, - -0.053719, - 0.067741, - -0.033249, - -0.032056, - 0.032301, - 0.010412, - -0.034048, - 0.086503, - -0.074317, - 0.085482, - -0.094289, - 0.036555, - -0.015103, - -0.032815, - 0.00018879, - 0.033402, - 0.033285, - 0.017823, - 0.10147, - -0.084071, - -0.049226, - 0.044809, - -0.034273, - 0.014255, - 0.068711, - 0.051895, - 0.0077816, - 0.062732, - -0.021702, - -0.0030176, - -0.0023796, - -0.046552, - -0.11203, - -0.083803, - -0.021059, - 0.0088236, - -0.065769, - 0.03899, - -0.10859, - -0.035032, - 0.054541, - -0.053791, - -0.054354, - 0.00663, - 0.014053, - 0.083474, - -0.042584 - ], - "narcotics": [ - -0.010061, - -0.017892, - 0.014029, - -0.031546, - 0.010366, - -0.051275, - -0.019976, - -0.085635, - 0.064154, - 0.05288, - -0.064937, - 0.0048876, - 0.070464, - 0.012256, - 0.039779, - -0.011764, - 0.077396, - -0.00073128, - 0.029456, - 0.083524, - 0.012463, - -0.069375, - 0.023616, - 0.010103, - -0.0060153, - 0.0011818, - -0.0006461, - 0.026941, - 0.06983, - 0.039051, - 0.0056217, - 0.024509, - -0.00587, - -0.016604, - 0.053196, - 0.025566, - -0.039246, - 0.027538, - 0.033961, - -0.0089025, - -0.01201, - -0.086711, - 0.1071, - -0.0013088, - 0.073442, - -0.015654, - 0.042276, - 0.064366, - -0.037731, - 0.015475, - -0.05747, - 0.024721, - 0.019189, - -0.014271, - -0.067512, - 0.024492, - -0.063502, - 0.0039339, - -0.011761, - -0.0035355, - -0.021709, - -0.048304, - 0.068572, - -0.018023, - -0.090581, - -0.034718, - 0.088572, - -0.087624, - 0.044584, - -0.029755, - 0.040174, - 0.039366, - 0.028962, - -0.06637, - 0.010699, - 0.01601, - 0.024274, - -0.01856, - 0.015905, - -0.044531, - -0.013587, - -0.022534, - -0.12779, - 0.003107, - -0.010392, - -0.029761, - 0.067193, - -0.021129, - 0.066071, - -0.011285, - 0.007616, - 0.018204, - -0.098078, - 0.0017898, - -0.021432, - 0.066248, - -0.027569, - -0.031443, - -0.01418, - 0.03562, - 0.030192, - -0.022995, - -0.099869, - -0.085407, - 0.035463, - -0.042706, - -0.043257, - -0.0034666, - 0.0011779, - 0.0091603, - 0.044597, - 0.063773, - 0.040924, - -0.039199, - -0.026196, - 0.059108, - 0.0053332, - -0.073538, - -0.051065, - 0.053462, - 0.053619, - -0.0084966, - -0.041196, - -0.046489, - 0.081985, - 0.046596, - -0.037626, - -0.046468, - 0.026924, - 0.088293, - 0.042361, - 0.0099922, - 0.0052004, - 0.015303, - 0.062782, - -0.07373, - -0.074887, - 0.019741, - 0.0095533, - 0.032056, - 0.10594, - 0.073681, - -0.042589, - -0.031369, - 0.03686, - -0.023188, - -0.0050206, - -0.02324, - 0.070841, - -0.027377, - 0.020229, - 0.089871, - 0.02062, - -0.045715, - -0.0056466, - -0.021325, - -0.093253, - -0.012727, - 0.0033013, - 0.019378, - 0.051813, - 0.041604, - -0.10334, - 0.061708, - -0.042981, - -0.069227, - 0.050089, - -0.05024, - -0.018411, - 0.012537, - 0.035723, - -0.010123, - 0.0098495, - 0.014265, - -0.018685, - 0.029036, - -0.040142, - 0.0042968, - -0.0341, - -0.035276, - -0.012781, - 0.042929, - -0.0089197, - -0.020374, - 0.025128, - 0.0091781, - 0.030888, - 0.095821, - -0.010417, - -0.034739, - 0.081292, - 0.057235, - -0.023729, - 0.042039, - 0.038388, - -0.00058595, - -0.010404, - 0.1001, - 0.015942, - -0.0072962, - -0.16048, - 0.033055, - -0.067816, - 0.033758, - 0.036084, - -0.0054079, - 0.089443, - 0.024381, - 0.023409, - -0.003774, - 0.12375, - 0.046436, - 0.032702, - 0.015954, - 0.076549, - 0.0012299, - -0.022132, - 0.027003, - -0.00801, - -0.055039, - -0.022154, - -0.069747, - -0.0048862, - 0.066371, - -0.0051768, - 0.016763, - 0.024095, - 0.0462, - -0.030538, - -0.041491, - -0.077324, - 0.004891, - -0.052758, - -0.099615, - -0.0024858, - -0.059075, - -0.056747, - -0.0073255, - 0.0019477, - -0.078936, - 0.0014368, - 0.016294, - 0.0058977, - -0.022435, - -0.0050457, - 0.011627, - -0.023886, - 0.0013807, - 0.055232, - 0.07259, - -0.027758, - 0.051293, - 0.04392, - 0.011915, - 0.0050992, - -0.0020003, - 0.0084049, - 0.016256, - 0.057796, - -0.044048, - -0.01062, - 0.027227, - -0.040395, - 0.0066441, - -0.024534, - -0.023329, - -0.058327, - 0.0027406, - 0.023419, - 0.091133, - -0.069309, - 0.066723, - -0.078995, - -0.039816, - -0.048457, - -0.026562, - -0.04981, - 0.012171, - -0.047107, - -0.011222, - 0.087169, - 0.063347, - -0.085923, - -0.03908, - -0.047082, - 0.016471, - 0.030345, - 0.054669, - -0.0026909, - -0.060461, - -0.051431, - -0.023611, - -0.023547, - -0.01657, - -0.11963, - 0.018904, - 0.041578, - 0.0067397, - -0.00084086, - -0.026312 - ], - "politicians": [ - 0.039001, - -0.056582, - 0.018975, - -0.014316, - -0.084471, - -0.039367, - 0.0056366, - -0.067139, - 0.073611, - 0.028886, - 0.029203, - -0.012021, - -0.03605, - 0.0049149, - -0.0011331, - 0.00079965, - 0.036628, - -0.012736, - 0.031845, - -0.017532, - 0.024453, - -0.027312, - 0.026877, - 0.052104, - -0.02199, - -0.031376, - 0.033695, - 0.03037, - 0.030061, - -0.045262, - 0.012489, - -0.0073743, - -0.049561, - 0.010418, - 0.0080077, - 0.067922, - -0.010118, - -0.0086972, - -0.0017199, - 0.014722, - -0.03891, - -0.070977, - -0.036823, - 0.025932, - 0.052262, - 0.036999, - -0.019792, - 0.013459, - -0.0018423, - -0.028501, - -0.038256, - 0.0027475, - 0.031633, - 0.0054902, - -0.01646, - 0.025001, - 0.0080335, - 0.024655, - -0.031424, - -0.052595, - -0.022622, - -0.027892, - 0.056994, - -0.00071581, - 0.023266, - 0.041361, - -0.0040034, - -0.0096384, - 0.027908, - 0.011727, - 0.0034165, - -0.0049535, - 0.11835, - 0.018995, - 0.01173, - 0.0056387, - 0.0072089, - -0.027356, - -0.039367, - 0.00052853, - -0.023069, - 0.063613, - 0.023231, - 0.081741, - 0.0077077, - -0.029487, - -0.0167, - -0.028957, - -0.0061494, - -0.020564, - -0.02775, - 0.0018923, - -0.071097, - -0.03982, - 0.051099, - 0.047039, - -0.025209, - 0.0027167, - 0.055882, - -0.0089703, - -0.0075153, - -0.039057, - 0.024007, - -0.046403, - 0.023281, - -0.031664, - 0.065126, - -0.024893, - 0.015552, - 0.040374, - -0.027978, - 0.091472, - 0.040697, - -0.012458, - 0.023734, - -0.014291, - 0.046574, - -0.01633, - -0.013749, - 0.016392, - 0.01404, - -0.066107, - 0.011681, - -0.054799, - 0.086665, - 0.036331, - -0.04524, - -0.012144, - -0.0073121, - 0.065127, - -0.022158, - 0.13957, - 0.070371, - 0.043459, - 0.042331, - 0.043641, - -0.0038249, - 0.040819, - -0.048479, - 0.039003, - 0.029419, - -0.052736, - 0.012889, - 0.018134, - -0.0025455, - -0.040905, - -0.015535, - 0.038149, - 0.014444, - -0.068579, - 0.053773, - 0.059021, - -0.012096, - 0.0011291, - -0.0026054, - -0.0028082, - -0.0041409, - 0.02662, - -0.033069, - -0.02267, - 0.026397, - 0.097671, - 0.049694, - 0.0077217, - -0.054559, - 0.023334, - 0.026949, - 0.067094, - 0.010039, - -0.034931, - -0.035652, - -0.01995, - -0.010655, - -0.019526, - 0.013024, - 0.035709, - -0.06812, - 0.021955, - 0.0070094, - -0.0058484, - -0.015595, - -0.013408, - 0.034374, - -0.0063974, - 0.024708, - -0.097151, - -0.0087578, - 0.10161, - 0.035329, - -0.05149, - -0.017786, - 0.095905, - -0.12175, - 0.013968, - -0.0023847, - -0.0075924, - -0.012861, - -0.014553, - -0.020365, - -0.00093344, - -0.096061, - 0.021665, - 0.0069422, - -0.034666, - -0.024299, - -0.025788, - -0.017898, - 0.020289, - -0.0053686, - -0.054588, - 0.019366, - 0.016439, - 0.090713, - 0.045166, - -0.10186, - 0.0082, - -0.024252, - -0.022442, - -0.035889, - -0.072582, - -0.028682, - 0.0024901, - -0.017215, - 0.074618, - 0.044122, - 0.01997, - 0.056553, - 0.033765, - -0.018256, - -0.015463, - -0.028302, - 0.02027, - -0.039758, - 0.0030265, - 0.0054508, - -0.0049132, - -0.0061135, - -0.00021946, - -0.017817, - -0.023791, - 0.016543, - -0.009267, - -0.029921, - 0.025217, - 0.058531, - -0.011681, - -0.017225, - -0.048346, - -0.00058718, - -0.03047, - 0.056534, - 0.013592, - -0.021635, - -0.013559, - 0.023473, - 0.0099985, - -0.048032, - 0.016021, - 0.012907, - -0.011375, - -0.017679, - 0.017187, - 0.017626, - 0.03065, - 0.0047541, - 0.044447, - -0.048087, - 0.046139, - -0.0081593, - -0.033035, - -0.053311, - 0.051151, - -0.083004, - -0.014113, - 0.026135, - 0.00054103, - 0.038866, - 0.046003, - -0.029226, - -0.023605, - -0.0010485, - 0.033901, - -0.048907, - 0.0055931, - -0.0076492, - 0.032133, - 0.006727, - -0.099817, - 0.017898, - 0.022719, - 0.0083093, - -0.01851, - -0.029003, - 0.050932, - -0.013954, - 0.035256, - -0.03461, - -0.00039731, - -0.027527, - -0.0017406 - ], - "conditions": [ - 0.037113, - 0.0051934, - 0.0033301, - -0.0098283, - 0.00073088, - -0.06799, - 0.010864, - -0.062842, - 0.016755, - -0.0048336, - -0.029238, - -0.05888, - -0.00040746, - -0.013036, - -0.0096716, - -0.013845, - 0.046549, - 0.018266, - 0.040566, - 0.0384, - 0.0054414, - -0.01772, - -0.0030909, - 0.063343, - -0.018933, - 0.0022841, - -0.022342, - -0.0099698, - 0.057185, - -0.013788, - 0.020086, - 0.067254, - -0.0087293, - -0.057654, - 0.022134, - 0.0005826, - -0.0098296, - 0.0061158, - 0.0023458, - -0.0079325, - 0.027424, - -0.089223, - -0.035677, - 0.0063622, - -0.018573, - -0.036693, - 0.011229, - -0.020797, - -0.0071396, - -0.026494, - -0.021, - 0.024945, - -0.017903, - -0.021954, - -0.049652, - 0.012585, - 0.029308, - -0.0063915, - -0.0019135, - -0.011432, - 0.0036357, - 0.028529, - 0.12042, - 0.000076046, - 0.054603, - -0.072504, - 0.020956, - -0.053443, - 0.030471, - 0.013188, - 0.0052654, - 0.0045913, - -0.0096555, - -0.024124, - -0.00041732, - -0.01825, - -0.017567, - -0.045242, - -0.11514, - 0.022015, - 0.043839, - 0.0098023, - 0.016961, - 0.038464, - 0.020677, - 0.017043, - 0.040486, - -0.019922, - -0.0088032, - -0.016699, - 0.027396, - -0.026285, - -0.046326, - 0.032479, - -0.064245, - 0.015361, - 0.0057813, - 0.02133, - 0.037525, - -0.018463, - -0.0025764, - -0.039009, - -0.0019628, - 0.029088, - 0.031236, - -0.011746, - 0.0016756, - -0.0091208, - 0.020972, - 0.014723, - -0.025636, - 0.0044609, - 0.057445, - 0.038278, - 0.0023242, - -0.011873, - 0.01407, - 0.01139, - -0.051101, - 0.021918, - -0.0024823, - -0.021407, - -0.017286, - -0.033056, - 0.086716, - -0.0091385, - 0.022305, - -0.035969, - 0.046008, - 0.099555, - 0.060217, - 0.01066, - 0.0072744, - -0.0087587, - -0.068896, - 0.048739, - -0.0040791, - 0.024725, - -0.012211, - 0.078235, - 0.0036245, - 0.0056404, - -0.01408, - -0.035159, - 0.0048437, - 0.03597, - -0.024264, - -0.019359, - 0.021477, - 0.041841, - 0.0069337, - 0.050338, - 0.029778, - -0.010447, - 0.022808, - 0.037145, - -0.011762, - 0.02224, - 0.018785, - -0.024118, - 0.038679, - -0.035902, - -0.021221, - -0.01601, - 0.014145, - -0.06525, - 0.0084897, - -0.045739, - 0.0074122, - 0.015239, - -0.044352, - -0.022323, - 0.012086, - 0.0077068, - -0.00978, - 0.03732, - -0.046399, - 0.0080861, - -0.047188, - -0.020621, - 0.032094, - 0.074633, - -0.047914, - -0.011917, - -0.013719, - -0.029192, - -0.017384, - 0.072293, - -0.0019345, - -0.0044781, - 0.030067, - 0.021605, - -0.089637, - -0.039674, - -0.039595, - 0.0060287, - 0.010196, - 0.033804, - 0.0055433, - -0.015476, - -0.12191, - 0.0030309, - -0.013121, - -0.045496, - 0.014162, - -0.039202, - 0.006147, - 0.028784, - -0.016835, - 0.0098671, - 0.048639, - 0.0096269, - 0.043826, - 0.055471, - 0.0362, - 0.059795, - 0.01311, - 0.0014467, - -0.077449, - -0.088471, - 0.011435, - -0.0015687, - -0.035381, - 0.05599, - 0.043541, - 0.011732, - -0.038887, - 0.0627, - -0.040986, - 0.036779, - -0.02286, - -0.037891, - -0.093291, - -0.012631, - 0.02817, - 0.047412, - 0.03355, - -0.00064283, - 0.042556, - 0.04805, - -0.019516, - 0.034571, - -0.022884, - 0.0082618, - -0.028812, - 0.024849, - 0.015585, - -0.046276, - -0.021033, - 0.0034854, - 0.02075, - -0.011182, - 0.04665, - 0.027743, - -0.040014, - 0.034294, - 0.038371, - 0.037957, - 0.032439, - -0.0040775, - -0.015922, - -0.033931, - 0.03779, - -0.048309, - 0.013759, - -0.033995, - 0.010497, - 0.036346, - 0.029274, - 0.013691, - -0.0055768, - 0.060224, - -0.080402, - -0.044761, - 0.077548, - -0.030062, - -0.011044, - 0.019013, - -0.016285, - 0.0064677, - 0.04399, - 0.014581, - -0.018417, - 0.02939, - 0.020219, - 0.0076842, - -0.01622, - 0.038675, - -0.0056254, - 0.049807, - 0.00048968, - -0.016553, - 0.0066195, - -0.013661, - 0.00093414, - -0.041089, - -0.021377, - -0.0099064, - -0.059094, - 0.019165 - ], - "electrical": [ - 0.0036749, - 0.025343, - 0.010985, - -0.0062437, - -0.01532, - -0.017148, - 0.03086, - -0.069442, - 0.088587, - -0.013153, - -0.0043015, - -0.0080638, - 0.0040054, - 0.048271, - -0.003531, - 0.031089, - 0.031139, - 0.045858, - 0.010635, - -0.028287, - 0.0464, - 0.023315, - 0.034611, - 0.063715, - 0.064169, - -0.071279, - 0.0012159, - -0.0053172, - 0.057036, - 0.030798, - 0.03637, - -0.011878, - 0.020357, - -0.066015, - 0.066531, - 0.027113, - 0.023523, - 0.059115, - -0.043484, - 0.024409, - -0.013886, - -0.097676, - 0.067071, - -0.02211, - -0.041502, - -0.023726, - -0.020096, - -0.017902, - -0.030033, - -0.0047698, - 0.015428, - 0.021621, - -0.027578, - 0.016004, - 0.031031, - 0.04452, - -0.0088146, - 0.022163, - -0.023187, - 0.040659, - -0.0059878, - 0.047228, - 0.091438, - 0.04722, - 0.044636, - 0.051158, - -0.023608, - -0.028177, - -0.017425, - 0.011151, - 0.016888, - 0.0023206, - 0.070075, - -0.025226, - -0.068386, - -0.013734, - -0.028608, - -0.060004, - -0.049281, - -0.027928, - -0.038043, - -0.0054645, - -0.06446, - 0.012638, - 0.0085254, - 0.012577, - 0.012807, - 0.020357, - 0.0056188, - -0.060082, - 0.0085419, - 0.03817, - -0.080374, - -0.025942, - -0.0242, - 0.041311, - 0.022513, - 0.0018714, - 0.041743, - -0.0015657, - 0.049303, - 0.056749, - -0.024328, - -0.031411, - 0.055573, - -0.078567, - -0.017781, - 0.055038, - 0.029669, - 0.0025461, - 0.028366, - 0.097366, - 0.047416, - 0.0055252, - 0.05327, - -0.0062099, - -0.024032, - 0.031731, - -0.0039033, - -0.0035724, - -0.042452, - 0.0084363, - -0.012279, - 0.028805, - 0.096407, - -0.0086166, - -0.013657, - -0.027835, - 0.028226, - 0.062531, - 0.0084531, - -0.034863, - -0.0091252, - -0.010477, - 0.041287, - -0.016967, - 0.074575, - 0.052369, - 0.022286, - 0.037373, - 0.034787, - 0.030214, - 0.015119, - 0.010194, - -0.0043458, - -0.057235, - -0.021787, - -0.016886, - -0.014892, - -0.013337, - 0.030081, - 0.16158, - -0.022818, - -0.010374, - -0.00055579, - 0.02108, - 0.018216, - -0.02077, - 0.0055601, - 0.038795, - 0.015164, - 0.028626, - -0.097579, - -0.023524, - 0.015633, - -0.029863, - 0.023924, - 0.0048019, - 0.046462, - -0.0036263, - 0.089318, - 0.046917, - 0.0032144, - 0.03999, - 0.015518, - 0.07535, - 0.018554, - 0.062487, - -0.031881, - -0.007191, - 0.0071797, - 0.02723, - -0.031035, - -0.042885, - -0.016025, - -0.028004, - -0.06437, - 0.10547, - -0.0048369, - 0.035594, - 0.014953, - 0.017375, - 0.090813, - 0.015566, - 0.030335, - 0.049793, - 0.016601, - 0.017238, - 0.023005, - 0.012832, - -0.12073, - 0.0060166, - -0.030171, - 0.0070884, - 0.080842, - -0.024011, - 0.017334, - 0.01247, - -0.10073, - 0.015741, - 0.16261, - -0.0082546, - -0.028385, - -0.0072593, - 0.028353, - 0.0093229, - 0.0012189, - -0.018247, - -0.025811, - 0.013776, - -0.037523, - -0.018378, - -0.053581, - 0.06603, - 0.017253, - 0.027528, - -0.027079, - 0.062128, - 0.050254, - -0.030612, - -0.0091985, - -0.02736, - -0.054785, - -0.038163, - 0.0059697, - 0.019799, - 0.051696, - 0.067522, - -0.021696, - -0.011768, - 0.0078326, - 0.0058229, - 0.014879, - 0.011877, - -0.14595, - -0.029772, - 0.026497, - 0.0094908, - 0.017608, - 0.019665, - -0.0033578, - -0.021408, - 0.007145, - 0.021668, - -0.03026, - 0.044509, - 0.086427, - 0.0012028, - -0.0019673, - -0.039046, - -0.0023853, - -0.0016587, - 0.03463, - 0.00059762, - -0.050585, - 0.0013327, - 0.018838, - 0.020328, - -0.02673, - -0.032048, - -0.005282, - 0.063922, - -0.07422, - -0.0060301, - -0.0037843, - -0.087741, - 0.036908, - 0.025225, - 0.041873, - 0.016789, - 0.15034, - 0.023303, - -0.0022124, - 0.013342, - -0.008299, - 0.039335, - -0.088581, - 0.0059368, - 0.021708, - 0.070207, - 0.0082986, - 0.10417, - -0.061674, - -0.035371, - -0.024405, - 0.040777, - -0.019637, - -0.024955, - 0.037777, - -0.0024158 - ], - "policy-making": [ - 0.019139, - -0.088056, - -0.039873, - 0.027823, - -0.012318, - -0.036755, - -0.042602, - -0.051609, - -0.013986, - 0.0060195, - 0.018283, - -0.049374, - -0.01636, - 0.015196, - 0.011072, - 0.028302, - 0.051262, - -0.01245, - 0.022237, - 0.004065, - -0.041808, - 0.013745, - 0.032621, - 0.070025, - -0.034832, - -0.006691, - -0.030899, - 0.013849, - -0.045168, - -0.033718, - -0.0077141, - -0.058897, - -0.0063439, - -0.075185, - 0.033839, - 0.042363, - -0.0055306, - 0.0068525, - 0.023037, - -0.0036445, - -0.015404, - -0.082966, - -0.019671, - 0.001986, - -0.012832, - -0.033548, - -0.015976, - -0.012504, - -0.036605, - 0.0077217, - -0.0018026, - 0.0041822, - 0.039648, - 0.01316, - -0.053309, - -0.0050192, - 0.029178, - 0.036635, - 0.00020987, - 0.04124, - -0.012619, - 0.026679, - 0.064309, - 0.020525, - 0.0098951, - -0.0082716, - -0.0032579, - -0.00050376, - 0.011694, - 0.034006, - 0.023391, - -0.0043458, - 0.0035618, - 0.005442, - 0.0051369, - 0.01108, - -0.010385, - 0.029661, - 0.0096541, - -0.031024, - -0.029011, - 0.0032563, - -0.025274, - 0.056095, - 0.010451, - 0.025225, - -0.026514, - -0.015027, - 0.089954, - 0.054826, - -0.015629, - 0.05637, - -0.056992, - 0.021269, - -0.011479, - 0.012735, - 0.029532, - -0.014426, - 0.0036134, - -0.0036694, - -0.005387, - -0.047215, - -0.010565, - -0.026135, - 0.039873, - -0.061573, - 0.059881, - -0.033723, - -0.012288, - -0.03169, - -0.018962, - 0.060578, - 0.02005, - 0.0094644, - -0.026449, - -0.0011655, - 0.025324, - -0.023736, - -0.030787, - 0.045655, - 0.01815, - -0.027956, - 0.032247, - 0.029374, - 0.029536, - -0.017016, - -0.0048034, - -0.071408, - 0.011274, - 0.11071, - -0.040391, - -0.0018071, - 0.063941, - 0.021838, - -0.019878, - -0.022402, - -0.073465, - 0.027454, - 0.0060505, - 0.021897, - 0.017844, - -0.060529, - 0.012239, - 0.030612, - 0.014775, - -0.067018, - 0.0024796, - 0.047471, - 0.0046425, - 0.0093504, - 0.06437, - 0.032681, - -0.0055257, - -0.075524, - -0.0049498, - 0.030378, - -0.010795, - -0.020177, - -0.0098998, - 0.040972, - 0.035503, - 0.0080268, - -0.055453, - 0.02526, - -0.07506, - 0.029048, - 0.030753, - -0.011625, - -0.00038196, - -0.0043273, - 0.0014411, - 0.040407, - -0.048604, - -0.023123, - -0.0038842, - 0.038405, - -0.00065588, - 0.066286, - -0.042606, - -0.028631, - -0.056682, - 0.0098555, - 0.0014432, - -0.013101, - 0.016872, - -0.040877, - -0.032591, - 0.095553, - 0.048395, - 0.010105, - -0.051062, - 0.035404, - 0.023966, - -0.032861, - 0.02284, - -0.036096, - -0.010951, - 0.022519, - -0.025351, - -0.019172, - -0.1179, - 0.033259, - -0.014088, - -0.035744, - -0.071388, - -0.0049358, - -0.033237, - 0.021903, - 0.0036867, - 0.026435, - 0.041233, - 0.00022439, - 0.0063726, - -0.0029618, - -0.046324, - 0.010093, - 0.044051, - -0.04619, - -0.042161, - -0.023575, - -0.049199, - -0.012256, - -0.027639, - 0.062073, - -0.0095808, - 0.016516, - 0.0036953, - 0.056631, - 0.0091923, - -0.0049758, - 0.0037376, - -0.035222, - -0.023851, - 0.012805, - 0.0042948, - -0.0010841, - -0.0068359, - -0.0067759, - -0.0037861, - -0.045197, - 0.030763, - 0.028223, - -0.02996, - 0.02095, - -0.042298, - 0.034588, - -0.015486, - -0.031015, - 0.045941, - -0.037376, - 0.020741, - 0.045, - -0.0034566, - -0.025964, - 0.00089174, - 0.032604, - -0.002979, - 0.034708, - 0.019831, - 0.0010099, - -0.0023889, - -0.00075042, - -0.016629, - 0.026081, - -0.010311, - 0.053893, - -0.036092, - 0.04122, - -0.018557, - -0.026283, - -0.029586, - 0.030921, - -0.069439, - -0.050093, - 0.017292, - -0.010221, - 0.0045131, - 0.0054584, - -0.024983, - -0.0086317, - 0.037796, - -0.0069405, - -0.017216, - -0.010739, - 0.04881, - 0.0002627, - 0.021669, - -0.017085, - 0.0011692, - -0.0030743, - -0.026834, - 0.0075151, - -0.0082035, - -0.00095228, - 0.013991, - 0.06929, - -0.029209, - 0.0083258, - -0.014978, - 0.0070625 - ], - "digital": [ - -0.037192, - 0.0053184, - -0.07409, - 0.051083, - 0.011635, - -0.00067128, - 0.038792, - -0.099116, - 0.05278, - 0.010391, - -0.0067895, - -0.035715, - -0.052133, - 0.0072944, - -0.0074489, - 0.052187, - 0.12243, - -0.0027756, - 0.09753, - -0.013624, - 0.021439, - 0.0098861, - 0.041259, - 0.055759, - -0.0020472, - 0.080637, - -0.0050893, - 0.0030447, - 0.02018, - 0.020785, - 0.0067395, - -0.022007, - -0.041891, - -0.067706, - 0.073256, - -0.020359, - 0.059638, - 0.034361, - -0.061163, - 0.039652, - -0.048843, - -0.14245, - -0.046288, - 0.01615, - 0.017225, - -0.027263, - -0.035039, - 0.014962, - -0.0021561, - -0.0043633, - -0.055944, - -0.076855, - -0.012882, - 0.0099684, - -0.01551, - 0.09422, - 0.00067367, - -0.061192, - -0.026434, - -0.0085951, - 0.062018, - 0.048122, - 0.12036, - 0.038467, - 0.0036295, - 0.02005, - -0.065993, - 0.010757, - -0.0026295, - 0.017344, - -0.015253, - 0.048615, - 0.032902, - 0.0049795, - -0.0065463, - 0.055663, - -0.0082847, - -0.062474, - 0.02554, - -0.064614, - -0.012032, - -0.05771, - -0.071468, - 0.04149, - -0.021618, - 0.014049, - -0.048266, - -0.024762, - 0.023447, - -0.0055075, - -0.025955, - 0.014812, - -0.10659, - 0.033151, - 0.0096472, - 0.068061, - 0.039727, - -0.021427, - -0.0056996, - 0.069591, - 0.082838, - -0.047621, - 0.012535, - 0.027834, - 0.012964, - -0.11258, - -0.046411, - 0.013752, - -0.030272, - -0.080393, - 0.066296, - 0.083511, - 0.065175, - 0.0020681, - -0.026379, - 0.0687, - -0.041912, - 0.037731, - -0.035284, - 0.038144, - -0.013761, - 0.0074611, - 0.032346, - -0.0044059, - 0.059398, - 0.019313, - 0.014755, - -0.057246, - 0.10576, - 0.050715, - -0.03808, - -0.017524, - -0.051973, - 0.012533, - 0.045779, - -0.053622, - 0.05361, - 0.010011, - -0.034858, - -0.010954, - 0.028124, - 0.0067416, - 0.05323, - 0.022501, - -0.040875, - -0.060833, - -0.02398, - -0.097075, - -0.019725, - -0.056395, - 0.053436, - 0.18143, - 0.027494, - -0.0058309, - 0.0012202, - 0.0033778, - -0.045482, - 0.10521, - 0.094109, - -0.012206, - 0.01509, - -0.011916, - -0.079399, - -0.000097283, - -0.044086, - -0.012691, - 0.025432, - 0.0047267, - 0.029819, - 0.031016, - -0.015694, - 0.10137, - -0.0060383, - -0.062947, - -0.035868, - 0.064026, - 0.048235, - 0.0027455, - -0.055942, - -0.0059153, - 0.05699, - -0.05547, - -0.033212, - -0.050282, - -0.082304, - -0.021585, - 0.0097858, - 0.096135, - -0.059867, - 0.0094236, - -0.076222, - 0.003584, - 0.086038, - -0.036548, - -0.042025, - -0.033722, - 0.0095599, - 0.025624, - 0.017368, - -0.0046886, - -0.1468, - 0.070613, - -0.02934, - 0.019261, - 0.0086052, - 0.018919, - 0.056493, - 0.015451, - -0.14513, - 0.016865, - 0.17615, - -0.014739, - 0.01318, - -0.03082, - 0.031099, - 0.0078573, - 0.01708, - -0.000902, - -0.017095, - 0.00018826, - 0.038806, - 0.032401, - 0.020119, - 0.10382, - -0.030553, - -0.058047, - 0.074543, - 0.039453, - -0.00033694, - -0.059541, - 0.010112, - -0.04641, - -0.04527, - -0.049585, - 0.014021, - -0.007717, - 0.046613, - 0.0051797, - -0.057906, - -0.031487, - 0.025547, - -0.011192, - 0.064522, - 0.061784, - -0.138, - 0.034395, - -0.036752, - 0.019769, - -0.017564, - -0.0087443, - 0.07133, - -0.016129, - -0.045231, - 0.058674, - -0.0067819, - 0.055537, - -0.022175, - -0.027911, - 0.093061, - 0.030102, - 0.0058148, - 0.0001169, - -0.0039637, - -0.032041, - 0.029547, - -0.076252, - 0.1209, - 0.019446, - 0.041505, - 0.017418, - -0.010798, - 0.076513, - -0.10597, - -0.023761, - -0.048375, - -0.08888, - -0.0091485, - 0.11101, - 0.0090847, - -0.033131, - 0.183, - 0.012625, - -0.026116, - -0.021863, - -0.044164, - -0.089483, - -0.079084, - -0.010777, - -0.0050251, - 0.017389, - -0.092496, - -0.017484, - -0.072396, - -0.036674, - 0.021461, - 0.036111, - -0.028425, - -0.033565, - 0.061837, - 0.055416 - ], - "mathematics": [ - 0.0123, - -0.059886, - -0.0078053, - -0.023752, - 0.013605, - -0.050649, - -0.032939, - -0.086561, - 0.0221, - -0.039391, - 0.058945, - -0.044927, - 0.038451, - 0.038532, - 0.026299, - -0.040488, - 0.091185, - 0.05767, - 0.023643, - -0.0072445, - -0.031065, - 0.065189, - 0.016417, - 0.04665, - -0.038234, - 0.014467, - -0.01232, - 0.016946, - 0.025251, - -0.031467, - -0.011102, - 0.01897, - 0.053473, - -0.038673, - 0.017195, - 0.012964, - 0.0066231, - 0.0033363, - -0.01452, - -0.032055, - -0.010578, - -0.098464, - -0.038574, - -0.018281, - -0.030116, - -0.042417, - -0.027565, - -0.035291, - -0.004752, - 0.01506, - -0.026328, - -0.027771, - -0.029128, - 0.024407, - -0.052792, - -0.0036612, - 0.010583, - 0.019214, - -0.010584, - 0.025242, - -0.020085, - 0.002322, - 0.069941, - 0.078705, - 0.017033, - -0.015846, - -0.010142, - 0.017549, - 0.020992, - 0.0076977, - 0.0054456, - -0.051018, - 0.02376, - 0.024563, - 0.044282, - 0.015797, - -0.008285, - -0.01676, - 0.031967, - 0.0023067, - -0.038527, - 0.024495, - -0.068644, - 0.031156, - -0.041873, - 0.034461, - 0.054553, - -0.020952, - 0.023998, - 0.031005, - 0.040611, - 0.016817, - -0.048288, - 0.017846, - 0.0047016, - 0.055722, - 0.0080903, - 0.035284, - 0.019244, - 0.012046, - 0.035038, - 0.016059, - -0.044462, - -0.0012629, - 0.0048709, - -0.043642, - -0.00090575, - 0.069783, - 0.037079, - -0.035972, - 0.014635, - 0.070432, - 0.042206, - -0.010881, - 0.0040878, - 0.03853, - 0.01702, - 0.039526, - -0.021035, - -0.035006, - -0.013673, - -0.031105, - -0.042558, - -0.044365, - 0.031925, - 0.0094208, - -0.045848, - -0.034433, - -0.082323, - 0.1196, - -0.014912, - 0.02905, - -0.015814, - 0.054057, - 0.029864, - -0.014915, - 0.069396, - 0.001565, - 0.024573, - 0.0059519, - 0.067627, - -0.0071347, - 0.0017174, - -0.0044254, - 0.021925, - -0.039354, - -0.035863, - -0.026642, - -0.06968, - -0.020163, - 0.048761, - 0.036831, - -0.015174, - -0.044244, - -0.018294, - 0.060281, - 0.037959, - 0.045702, - 0.023765, - -0.00085073, - 0.013268, - 0.01453, - -0.077208, - -0.052036, - 0.032048, - -0.025448, - -0.0098039, - -0.04682, - 0.029983, - -0.019324, - 0.020894, - -0.017092, - -0.014517, - 0.090717, - 0.070223, - 0.035918, - -0.0063007, - 0.049904, - -0.019287, - 0.023666, - 0.0066254, - -0.020122, - 0.0088526, - -0.016761, - 0.04202, - -0.022729, - -0.039253, - 0.075483, - 0.048913, - 0.021376, - -0.039207, - 0.086146, - -0.039165, - -0.049905, - 0.017007, - -0.05876, - -0.068042, - 0.009801, - 0.020353, - -0.02639, - -0.12362, - -0.024373, - -0.0081447, - -0.010527, - -0.008965, - 0.00022215, - 0.036407, - -0.047406, - 0.0051951, - 0.013675, - 0.079943, - 0.023444, - -0.0045435, - 0.024744, - 0.034913, - 0.089698, - -0.014006, - -0.0041839, - -0.055865, - -0.016333, - -0.0074092, - -0.0023914, - -0.010877, - 0.087699, - -0.0019899, - 0.01028, - 0.045757, - 0.079894, - 0.028326, - -0.022766, - 0.036099, - -0.0066575, - -0.03903, - 0.0059238, - -0.0070312, - 0.018544, - -0.0034666, - 0.021824, - -0.050543, - -0.04147, - 0.0033524, - -0.083531, - 0.029106, - 0.011901, - 0.01515, - 0.034444, - -0.056791, - -0.019528, - -0.030963, - 0.0078767, - 0.051604, - 0.03683, - 0.026927, - -0.031892, - -0.002223, - 0.035133, - -0.023057, - 0.028873, - 0.027894, - 0.02588, - 0.0096913, - 0.014748, - 0.0029696, - 0.0046204, - -0.024976, - 0.0046826, - 0.016986, - 0.0058012, - 0.079802, - 0.014838, - 0.01219, - 0.06382, - -0.074587, - -0.0033786, - -0.013512, - -0.020711, - -0.0019561, - -0.03282, - 0.027858, - -0.0028246, - 0.062072, - -0.017095, - -0.011672, - -0.04711, - -0.04065, - 0.00030437, - -0.0084185, - 0.0098055, - -0.04593, - -0.022397, - -0.10452, - -0.030011, - -0.030296, - -0.0048819, - 0.0092867, - 0.0048785, - 0.0084728, - -0.0090562, - 0.0059452, - 0.069694 - ], - "monies": [ - 0.09337, - 0.019532, - -0.08635, - 0.0085018, - 0.047857, - -0.033071, - -0.039337, - -0.077021, - 0.045852, - 0.00030718, - -0.0038737, - 0.0059473, - -0.046956, - -0.038953, - 0.02512, - 0.045405, - 0.10949, - -0.012664, - 0.071462, - 0.039708, - -0.049723, - 0.037131, - -0.084644, - 0.022593, - 0.026923, - -0.034898, - 0.015581, - 0.020852, - 0.11303, - -0.027888, - -0.024843, - 0.02269, - -0.085352, - -0.017079, - 0.009192, - 0.043238, - -0.044945, - -0.043381, - -0.023401, - -0.027672, - 0.028351, - -0.08297, - 0.023733, - 0.057856, - 0.024386, - -0.079656, - 0.042745, - -0.0091397, - -0.029626, - -0.0018754, - -0.11634, - 0.037504, - 0.0035747, - 0.037362, - -0.097474, - 0.072632, - -0.072651, - -0.029256, - -0.040411, - 0.0064174, - 0.06947, - -0.023968, - 0.19525, - 0.045393, - 0.011265, - -0.13317, - 0.0038825, - -0.10876, - 0.0066194, - 0.026016, - 0.014438, - -0.080055, - 0.0924, - 0.04104, - -0.0017793, - 0.059582, - 0.050636, - -0.0028262, - 0.07308, - 0.0064604, - -0.094331, - -0.047672, - 0.061934, - 0.15345, - -0.019432, - 0.026163, - 0.014096, - -0.048259, - -0.041093, - -0.055369, - -0.093015, - 0.027032, - -0.096963, - 0.034905, - -0.033166, - 0.044774, - -0.013242, - -0.056798, - -0.054817, - 0.041402, - 0.015438, - -0.030214, - 0.039061, - -0.010405, - 0.039868, - -0.065592, - 0.020618, - -0.02157, - -0.048733, - 0.031656, - 0.0073696, - 0.064423, - 0.06971, - 0.0029493, - 0.03925, - -0.072575, - -0.053944, - -0.057052, - -0.027784, - 0.012054, - -0.023081, - -0.0083733, - -0.037414, - -0.065397, - 0.11775, - 0.020721, - -0.055538, - -0.097533, - -0.03726, - 0.088023, - -0.026857, - 0.064581, - -0.034111, - 0.051928, - 0.039329, - 0.022276, - -0.066323, - 0.0831, - -0.025415, - -0.048932, - 0.0069267, - -0.0055441, - 0.05585, - 0.024275, - -0.040218, - -0.080752, - -0.0031957, - -0.041597, - 0.018631, - -0.027714, - 0.037393, - 0.061647, - 0.0020629, - -0.10699, - 0.034047, - -0.046141, - 0.033119, - -0.033304, - -0.06355, - -0.040674, - 0.11835, - -0.0077232, - 0.0032905, - -0.012993, - -0.045529, - 0.08194, - -0.021319, - -0.0020092, - -0.044117, - -0.0057793, - 0.11683, - -0.02694, - 0.0049517, - -0.073428, - -0.084938, - 0.02303, - -0.065942, - -0.04069, - 0.10094, - -0.042157, - -0.044111, - 0.046991, - -0.010396, - -0.023896, - -0.075424, - -0.05217, - -0.026983, - 0.15451, - 0.033453, - -0.02042, - -0.0052815, - 0.058831, - -0.069334, - 0.056058, - -0.024781, - -0.079357, - -0.0024423, - 0.04321, - -0.036147, - -0.0031037, - -0.15358, - 0.017609, - 0.083949, - 0.065742, - 0.053952, - -0.024025, - -0.0041164, - -0.092026, - 0.000085022, - -0.08134, - 0.10074, - 0.039152, - 0.0069291, - -0.025518, - 0.03583, - -0.027947, - -0.043746, - 0.078902, - -0.02431, - -0.047993, - 0.037247, - -0.051016, - -0.0015643, - 0.068358, - 0.12554, - 0.032121, - -0.0078089, - 0.037125, - -0.001643, - 0.0056581, - -0.076736, - -0.028318, - -0.14542, - -0.086462, - 0.049383, - 0.0079394, - 0.0073817, - 0.087654, - -0.11519, - -0.045704, - -0.0095665, - -0.055797, - -0.008816, - -0.0065158, - -0.01283, - 0.0096447, - -0.0046173, - -0.057765, - -0.01455, - 0.043705, - 0.015658, - 0.0068701, - 0.0053634, - 0.044959, - -0.040656, - 0.033603, - -0.040004, - -0.011736, - -0.023857, - 0.060882, - -0.0071803, - -0.04518, - -0.051893, - -0.028566, - 0.084534, - -0.002063, - -0.013425, - -0.025278, - -0.0039068, - 0.14626, - 0.02616, - 0.091064, - -0.10056, - -0.041479, - -0.0062343, - -0.01813, - -0.02236, - 0.065398, - -0.057165, - -0.033579, - 0.066064, - -0.054483, - -0.0038013, - -0.053805, - 0.049182, - 0.086991, - -0.00048667, - 0.14347, - -0.084297, - 0.025555, - 0.093193, - 0.024875, - -0.086538, - 0.038422, - -0.073296, - -0.067622, - -0.044727, - -0.09344, - -0.12831, - -0.00096931 - ], - "Law": [ - 0.030526, - -0.031046, - 0.16527, - -0.049706, - 0.099711, - -0.034813, - 0.13038, - -0.10888, - 0.04523, - -0.016459, - 0.12555, - -0.13585, - 0.026601, - 0.025216, - 0.046879, - 0.0016387, - 0.081825, - 0.026818, - 0.10122, - 0.13332, - 0.050469, - 0.076215, - 0.016987, - 0.079471, - 0.056744, - -0.064797, - -0.059872, - -0.016854, - 0.089019, - -0.02127, - 0.035563, - -0.014888, - -0.17287, - 0.05241, - 0.12386, - 0.014713, - 0.033676, - -0.067241, - 0.091885, - -0.093361, - 0.075753, - 0.048089, - 0.062595, - -0.031674, - -0.058186, - 0.0079987, - -0.0049993, - -0.04675, - -0.051352, - -0.02822, - 0.020973, - -0.076027, - 0.091083, - 0.067937, - -0.049572, - -0.0025764, - 0.042208, - -0.040899, - -0.083196, - -0.06678, - 0.088939, - 0.041746, - -0.16821, - 0.12708, - -0.096627, - 0.095326, - 0.077076, - 0.073034, - -0.0049464, - 0.068833, - 0.017097, - -0.045313, - -0.12172, - -0.048528, - -0.033623, - -0.17666, - -0.033326, - -0.236, - 0.053882, - 0.082183, - 0.065655, - 0.03698, - 0.051455, - 0.056988, - 0.082587, - 0.080587, - 0.059116, - -0.07065, - 0.096466, - 0.089675, - 0.039837, - -0.040229, - -0.11972, - -0.037206, - -0.025495, - 0.29382, - -0.077169, - -0.048501, - 0.12283, - -0.077428, - -0.01749, - -0.077516, - -0.0079825, - -0.072962, - -0.043319, - -0.24038, - 0.1488, - 0.0010253, - 0.10736, - 0.0029871, - -0.051535, - -0.04963, - 0.076997, - -0.035592, - 0.067597, - 0.15091, - -0.027901, - -0.10452, - 0.15996, - 0.087992, - 0.046242, - 0.013284, - 0.12288, - -0.11121, - 0.093847, - 0.063266, - -0.1132, - -0.10977, - -0.12634, - 0.518, - 0.043575, - 0.10532, - -0.023016, - -0.068333, - 0.12861, - -0.032535, - 0.0019555, - -0.040077, - 0.17005, - -0.10533, - 0.090931, - -0.066016, - -0.066337, - -0.088783, - 0.022216, - 0.027255, - -0.03162, - -0.006591, - -0.087812, - 0.0070356, - 0.044283, - 0.076929, - -0.080513, - 0.010809, - 0.053395, - 0.2819, - -0.048475, - -0.083834, - 0.079313, - -0.037491, - 0.082647, - 0.042359, - -0.19456, - 0.091527, - 0.022767, - -0.040675, - 0.098731, - 0.035047, - -0.012463, - -0.029044, - -0.03072, - -0.066318, - 0.069005, - -0.068325, - -0.079301, - -0.031927, - -0.021823, - 0.03664, - -0.035379, - -0.086001, - -0.087964, - 0.0024263, - 0.025306, - 0.082208, - -0.0088264, - 0.30369, - 0.14879, - 0.23375, - 0.19948, - 0.14367, - -0.16274, - 0.16702, - -0.1446, - 0.059689, - -0.032103, - 0.026123, - 0.17424, - 0.074952, - -0.089405, - 0.016275, - -0.089036, - 0.15865, - 0.042512, - -0.10395, - -0.020659, - -0.011392, - 0.11168, - -0.030356, - 0.029836, - 0.033398, - 0.25902, - 0.037056, - -0.10527, - 0.04803, - 0.066528, - -0.013742, - 0.1035, - -0.0044392, - -0.042533, - 0.0066561, - 0.085393, - -0.071236, - -0.096455, - 0.16901, - -0.0040482, - -0.043743, - 0.061616, - 0.098442, - 0.024726, - -0.016179, - 0.005678, - -0.17836, - 0.039769, - -0.04062, - -0.03722, - -0.11811, - -0.062614, - -0.10072, - -0.034397, - 0.24227, - 0.12171, - -0.010382, - 0.067975, - -0.057537, - 0.27821, - -0.042233, - -0.10636, - -0.10982, - -0.021206, - -0.082423, - 0.09565, - -0.14352, - -0.028897, - 0.057756, - 0.047107, - -0.02808, - 0.035831, - 0.134, - -0.031307, - 0.10455, - -0.030336, - -0.041562, - -0.038568, - -0.065206, - 0.024828, - 0.12451, - 0.22588, - -0.075637, - -0.0082146, - 0.021383, - 0.024365, - 0.12378, - -0.093448, - 0.046105, - 0.089354, - -0.12181, - -0.059878, - 0.086294, - -0.019882, - -0.098812, - 0.010713, - 0.056714, - -0.047621, - -0.039825, - 0.19945, - 0.0077242, - -0.029214, - 0.0020895, - 0.040628, - 0.10069, - -0.0080576, - -0.069939, - 0.027168, - 0.031929, - -0.0656, - -0.015847, - -0.026341, - -0.067973, - 0.010742, - -0.023956 - ], - "stimulant": [ - -0.013122, - -0.042745, - 0.026461, - 0.046835, - -0.022337, - -0.039422, - -0.086059, - -0.085669, - -0.0037376, - 0.017841, - -0.064877, - 0.04343, - 0.04012, - -0.011502, - 0.084869, - -0.016845, - 0.066309, - -0.01765, - 0.037552, - 0.011504, - 0.0065507, - 0.025356, - 0.10227, - 0.048351, - 0.016133, - -0.059763, - 0.037456, - 0.062847, - 0.0035803, - 0.0030177, - 0.031065, - 0.031596, - 0.011478, - -0.065423, - 0.0034837, - 0.0091784, - 0.0013285, - -0.031565, - -0.021465, - 0.037828, - 0.075273, - -0.094439, - -0.030131, - -0.0033455, - 0.056078, - -0.022941, - -0.013613, - 0.092082, - -0.003552, - -0.0034019, - -0.044071, - 0.067519, - 0.015194, - -0.086205, - -0.0081353, - -0.050407, - 0.028617, - -0.069933, - -0.027813, - 0.065685, - -0.016359, - 0.028656, - 0.082342, - 0.061741, - -0.082088, - -0.019399, - 0.07429, - -0.024705, - 0.02061, - -0.047306, - 0.067731, - 0.019083, - 0.034476, - 0.0098646, - -0.068486, - 0.003782, - -0.01434, - -0.043347, - -0.026652, - -0.044086, - -0.012318, - 0.044995, - -0.0063972, - 0.014857, - 0.0030445, - -0.055956, - 0.022234, - 0.011999, - 0.036361, - -0.01615, - 0.051969, - 0.014255, - -0.077129, - -0.062383, - -0.022724, - 0.065177, - 0.018616, - -0.082713, - 0.063653, - 0.051023, - 0.021551, - 0.027571, - 0.0012317, - -0.044826, - -0.017075, - -0.060713, - -0.093823, - -0.078125, - 0.055172, - 0.045965, - -0.066196, - 0.11089, - 0.0396, - -0.014778, - -0.010194, - 0.022633, - -0.029543, - -0.0094794, - -0.040505, - 0.011171, - 0.018873, - -0.011932, - -0.046431, - -0.034733, - 0.11503, - 0.029085, - -0.0051109, - -0.08609, - -0.012996, - 0.021985, - 0.0074755, - 0.0057029, - -0.031111, - 0.00070952, - 0.0092412, - -0.056068, - -0.061269, - 0.046493, - 0.042799, - -0.017921, - 0.10473, - 0.019907, - -0.021688, - -0.076632, - 0.046842, - -0.006213, - 0.046266, - 0.023891, - 0.052094, - 0.060294, - 0.061416, - 0.07398, - -0.02602, - -0.036819, - -0.019067, - 0.025815, - -0.058108, - 0.074539, - 0.0073606, - 0.058746, - 0.054786, - -0.022715, - -0.078732, - -0.021096, - 0.022708, - -0.022688, - 0.0091959, - -0.027993, - 0.044087, - -0.084589, - 0.069747, - -0.0010467, - -0.013464, - 0.046465, - -0.0071274, - 0.058324, - -0.061056, - -0.016812, - -0.038136, - -0.010518, - -0.037307, - -0.049539, - -0.069072, - -0.074585, - 0.0030328, - -0.0089134, - 0.060572, - 0.082912, - -0.034011, - 0.028976, - 0.062656, - 0.035221, - 0.07339, - -0.024918, - 0.018754, - 0.019257, - 0.026419, - 0.038406, - 0.044231, - -0.0067037, - -0.15295, - 0.020481, - -0.051275, - 0.023516, - 0.037938, - 0.076096, - 0.09315, - 0.0052478, - -0.041385, - -0.021764, - 0.07489, - 0.0089775, - 0.04507, - 0.012212, - 0.057622, - 0.039109, - -0.061137, - -0.025015, - 0.031239, - -0.035289, - -0.00040695, - 0.032122, - -0.019632, - 0.087207, - 0.016041, - 0.00083872, - -0.081915, - 0.0032366, - 0.0043529, - 0.0054486, - -0.021098, - -0.035184, - -0.026039, - -0.02958, - -0.0030971, - -0.018123, - -0.0027876, - -0.030211, - -0.033557, - -0.061997, - 0.058237, - 0.072737, - -0.018219, - 0.020416, - -0.075185, - 0.053074, - -0.0027482, - 0.067321, - 0.1082, - -0.0059746, - -0.02478, - 0.0037791, - 0.014302, - -0.035475, - -0.02547, - -0.014118, - 0.019071, - 0.048665, - 0.01294, - -0.051413, - 0.039673, - 0.0050813, - 0.076808, - -0.0038159, - 0.038302, - -0.0060557, - -0.047845, - -0.018277, - 0.0052033, - 0.04538, - 0.017424, - 0.066305, - -0.080082, - -0.046054, - -0.029985, - -0.064207, - 0.011222, - -0.026183, - -0.055081, - 0.023114, - 0.070267, - 0.0020355, - -0.10627, - 0.001576, - -0.058656, - 0.054693, - -0.0095769, - 0.030277, - -0.019354, - 0.023336, - -0.021947, - 0.018677, - -0.046129, - 0.02537, - -0.040221, - 0.045889, - 0.065326, - -0.017853, - 0.03489, - -0.0054474 - ], - "principle": [ - 0.0081998, - -0.0011641, - -0.0066493, - -0.0011544, - -0.079577, - -0.053771, - 0.013247, - -0.095922, - -0.0078546, - -0.0031714, - 0.00095529, - -0.016663, - 0.034605, - -0.045665, - 0.019403, - -0.017765, - 0.058535, - 0.030236, - 0.072048, - 0.046579, - 0.017528, - 0.033413, - 0.069348, - 0.047882, - -0.022097, - -0.0019639, - -0.0097594, - 0.028307, - 0.037739, - -0.014942, - 0.015381, - -0.0023205, - -0.0064493, - -0.08391, - -0.018478, - -0.035962, - -0.012441, - -0.033046, - -0.0053423, - 0.018268, - -0.010269, - -0.09526, - -0.06362, - -0.0090069, - -0.041967, - -0.021803, - -0.036006, - -0.045176, - 0.0048299, - -0.0011766, - 0.051417, - 0.0076747, - 0.0070159, - 0.0023173, - -0.022919, - -5.4071e-7, - 0.060638, - 0.0032109, - -0.036256, - 0.010977, - -0.020175, - 0.0074283, - 0.092353, - -0.013723, - 0.017759, - -0.00048837, - -0.015971, - 0.016663, - 0.016634, - 0.0075676, - 0.028952, - -0.00096918, - -0.023959, - -0.0033651, - -0.033921, - -0.017912, - -0.0086987, - -0.045906, - -0.020977, - 0.0013193, - -0.022859, - 0.011467, - 0.0035673, - 0.074155, - -0.011854, - 0.022583, - 0.025055, - 0.0012678, - 0.029337, - 0.045196, - 0.015038, - -0.020271, - -0.093881, - -0.015584, - -0.029472, - 0.024617, - -0.025618, - -0.020575, - -0.033429, - 0.025781, - 0.0087895, - -0.023719, - -0.0029279, - -0.024156, - -0.10765, - -0.036564, - 0.034506, - 0.042549, - -0.069417, - -0.015168, - 0.011212, - 0.037208, - 0.042147, - -0.036139, - 0.037322, - 0.0043937, - -0.015588, - 0.026255, - -0.029583, - -0.016032, - 0.027917, - -0.012432, - 0.0097581, - -0.055302, - 0.055526, - 0.021095, - 0.021121, - -0.062688, - 0.017974, - 0.10989, - 0.016231, - -0.018024, - -0.002454, - 0.017271, - -0.02391, - 0.034119, - 0.030526, - 0.03048, - -0.014524, - -0.045515, - -0.0011363, - -0.00048586, - 0.024212, - 0.012962, - -0.014871, - -0.0055791, - 0.0060009, - 0.013149, - 0.017203, - -0.0052493, - 0.0403, - 0.03555, - -0.0062415, - -0.076889, - 0.057306, - 0.073755, - -0.023983, - -0.016342, - -0.0081849, - -0.00097234, - 0.02954, - -0.0071361, - -0.06034, - 0.013045, - 0.016482, - -0.021945, - 0.061954, - 0.047343, - -0.0081284, - -0.0066277, - 0.0030478, - 0.012781, - -0.032605, - 0.019715, - -0.027951, - 0.023034, - -0.060226, - 0.060776, - -0.024383, - 0.0069459, - -0.012461, - -0.0060501, - 0.018359, - -0.007387, - 0.021066, - -0.037545, - 0.029145, - 0.066713, - 0.0085882, - -0.012299, - -0.0066429, - 0.10687, - -0.060694, - -0.022145, - -0.0063284, - -0.0193, - 0.029973, - 0.0079822, - -0.019886, - 0.040317, - -0.10864, - 0.048884, - -0.0005655, - -0.023379, - -0.01942, - -0.012983, - 0.040437, - -0.041982, - 0.021086, - -0.021606, - 0.071293, - 0.023183, - -0.011129, - -0.0024623, - -0.021575, - 0.034441, - 0.070305, - -0.0013139, - -0.023983, - -0.047031, - 0.030325, - 0.0039335, - 0.011337, - 0.097633, - 0.059243, - 0.020821, - 0.032658, - 0.071945, - 0.041378, - 0.0086393, - -0.0045342, - -0.092613, - -0.063858, - -0.0081392, - 0.019716, - -0.0025016, - -0.059096, - -0.027803, - -0.021814, - 0.051407, - 0.058634, - -0.012221, - 0.0040052, - 0.039684, - -0.042123, - -0.030662, - -0.019291, - -0.023468, - -0.019797, - 0.024911, - -0.000042768, - 0.03996, - 0.015112, - -0.012392, - 0.062664, - -0.025836, - 0.0018361, - 0.0658, - -0.023666, - 0.019848, - -0.028322, - 0.034336, - -0.010736, - -0.040701, - -0.0027874, - 0.038686, - 0.023446, - 0.002938, - -0.032741, - 0.030287, - 0.011592, - 0.096382, - -0.097212, - -0.019973, - 0.115, - -0.044734, - -0.00022353, - 0.023579, - 0.067399, - -0.034071, - 0.067679, - -0.045657, - -0.052673, - -0.031297, - 0.0059162, - -0.00063985, - -0.017655, - 0.0296, - -0.0068548, - 0.066569, - 0.016685, - 0.02374, - 0.076367, - -0.086037, - -0.0061582, - 0.0043666, - -0.0043328, - -0.019972, - -0.042854, - 0.041011 - ], - "hacker": [ - -0.046173, - -0.019141, - -0.033104, - 0.024081, - -0.11267, - -0.010584, - -0.029943, - -0.093924, - 0.087147, - -0.0030759, - -0.073542, - 0.032619, - -0.14545, - -0.041166, - -0.1482, - -0.018923, - 0.087518, - -0.037176, - 0.021765, - 0.01992, - -0.01331, - 0.12311, - 0.013676, - 0.072745, - -0.028677, - 0.084037, - 0.062913, - 0.015537, - -0.060636, - 0.026316, - 0.047084, - -0.091349, - -0.099129, - 0.023263, - -0.013699, - -0.01978, - 0.037156, - 0.074397, - -0.0096474, - -0.034354, - -0.058323, - -0.13346, - 0.017826, - -0.061082, - 0.011463, - 0.11691, - 0.081603, - -0.047342, - 0.024801, - -0.056089, - -0.031696, - 0.0049457, - 0.012588, - -0.062883, - 0.051467, - 0.032084, - 0.15524, - 0.018354, - -0.022641, - 0.064216, - 0.034597, - -0.16276, - 0.06607, - -0.014676, - 0.034125, - 0.024669, - 0.040552, - 0.056039, - 0.013975, - 0.038333, - 0.041697, - 0.037707, - 0.076501, - 0.01238, - -0.0085162, - -0.04585, - 0.029772, - -0.0050528, - -0.025505, - -0.084943, - -0.017878, - 0.08124, - -0.022764, - 0.0075635, - -0.0063413, - -0.047301, - -0.047266, - 0.041836, - 0.021237, - 0.11192, - 0.011977, - 0.033684, - -0.11811, - -0.10065, - 0.03299, - 0.14646, - 0.02874, - -0.16871, - 0.025656, - 0.08265, - 0.030161, - 0.015291, - 0.067208, - 0.060977, - -0.02242, - -0.12955, - 0.0035205, - 0.033106, - -0.028351, - -0.054506, - -0.10143, - 0.015051, - 0.036172, - -0.05001, - -0.008385, - -0.038918, - -0.089965, - 0.033143, - -0.014308, - 0.027061, - -0.016521, - -0.014032, - 0.014914, - -0.032976, - 0.13834, - -0.0032242, - 0.0053917, - -0.053148, - -0.13768, - 0.073813, - 0.010012, - 0.045655, - -0.019179, - -0.024686, - 0.063692, - -0.077694, - 0.034963, - 0.077613, - -0.041642, - 0.0094462, - 0.067751, - 0.046716, - -0.02215, - 0.002669, - -0.086992, - 0.068448, - -0.040536, - -0.095842, - 0.02157, - -0.09328, - 0.021147, - 0.070168, - -0.068773, - -0.033324, - 0.016778, - -0.061942, - -0.0010377, - 0.017655, - 0.059777, - -0.01057, - 0.042976, - -0.005997, - -0.037439, - -0.012169, - -0.015162, - -0.035864, - 0.020197, - 0.026237, - -0.029639, - 0.081568, - -0.010758, - 0.043487, - 0.10071, - 0.099682, - 0.020438, - 0.088626, - 0.025986, - 0.058716, - -0.01829, - 0.0050774, - -0.086163, - 0.051417, - -0.10626, - -0.058797, - -0.012969, - -0.14005, - -0.071906, - 0.13407, - 0.042609, - 0.073456, - -0.046854, - 0.051679, - -0.011907, - 0.053526, - -0.0013763, - -0.024862, - -0.051735, - -0.015332, - -0.0095326, - 0.044862, - -0.15626, - 0.015031, - -0.042589, - 0.091304, - -0.089941, - -0.0033835, - -0.040434, - 0.040442, - 0.018337, - -0.074417, - 0.12331, - 0.011998, - 0.013953, - -0.041152, - 0.0029436, - 0.025466, - -0.12805, - 0.071595, - 0.029952, - -0.0076234, - 0.0014387, - -0.048883, - -0.11604, - 0.082236, - -0.0010092, - -0.075451, - 0.010217, - 0.052965, - -0.055972, - 0.052536, - -0.059541, - -0.027385, - -0.032678, - -0.014419, - -0.039065, - -0.024649, - 0.06639, - 0.0034918, - 0.0077113, - 0.014066, - 0.079316, - -0.096749, - 0.11011, - 0.02935, - 0.050091, - 0.033509, - -0.056812, - 0.021411, - -0.093798, - -0.059167, - 0.049384, - -0.015171, - -0.045452, - -0.0005839, - 0.076039, - 0.042414, - -0.038347, - 0.033204, - -0.048311, - -0.031925, - 0.01129, - -0.0049261, - -0.019432, - 0.033977, - -0.00086151, - -0.10724, - -0.042591, - 0.030412, - 0.079581, - -0.054365, - -0.021747, - 0.052902, - -0.10672, - -0.022486, - 0.042951, - -0.02547, - 0.10863, - -0.02245, - 0.09007, - 0.023612, - 0.13979, - 0.069262, - 0.054509, - -0.021648, - -0.045578, - -0.095844, - -0.056191, - -0.10694, - -0.01808, - 0.094597, - -0.019459, - -0.043037, - -0.057846, - 0.023371, - 0.01022, - -0.027883, - -0.039015, - 0.041322, - -0.087133, - -0.12956 - ], - "treks": [ - -0.10012, - -0.022689, - 0.019846, - 0.0087302, - -0.0038674, - -0.065854, - -0.0081382, - -0.12202, - -0.090313, - 0.040238, - 0.066053, - -0.19546, - -0.13733, - -0.086806, - -0.046156, - -0.027039, - 0.1457, - -0.051336, - 0.068845, - 0.0073524, - 0.018362, - 0.030018, - -0.025058, - 0.081357, - 0.037558, - 0.058256, - 0.074716, - 0.076271, - -0.016768, - 0.040571, - 0.0026535, - -0.0058454, - -0.0026384, - -0.043043, - 0.063017, - 0.11002, - 0.12745, - -0.085341, - -0.018728, - -0.0088181, - 0.00047619, - -0.070966, - -0.01059, - 0.064831, - 0.1319, - 0.029108, - 0.041665, - -0.022043, - -0.031466, - -0.029104, - 0.014366, - 0.12864, - -0.069382, - -0.11181, - -0.14475, - 0.00080759, - 0.0050402, - -0.0076407, - -0.038367, - 0.017958, - -0.012643, - 0.007487, - 0.12027, - -0.03296, - -0.077746, - -0.08509, - 0.07395, - -0.10851, - -0.074119, - 0.044265, - 0.041742, - -0.043116, - 0.0043242, - -0.0079384, - -0.0044687, - 0.046561, - 0.051845, - 0.00069166, - -0.032761, - -0.011446, - -0.016896, - -0.052022, - -0.032486, - -0.0021059, - -0.028833, - -0.033431, - 0.055503, - 0.018497, - -0.022246, - -0.089795, - 0.074518, - 0.12775, - -0.15161, - 0.054038, - 0.027951, - 0.058635, - -0.082396, - 0.092775, - -0.028503, - -0.098386, - 0.04524, - 0.05143, - 0.087902, - -0.044838, - 0.14981, - -0.093722, - -0.0085348, - -0.065037, - -0.036745, - 0.044985, - 0.086194, - -0.09762, - 0.068517, - 0.07993, - -0.048477, - 0.088076, - -0.005865, - 0.068845, - -0.047061, - -0.010278, - 0.11543, - 0.049427, - 0.067657, - 0.044608, - 0.14278, - -0.064678, - -0.01494, - -0.091068, - 0.068938, - 0.097061, - 0.081331, - 0.14464, - -0.16878, - 0.010091, - -0.015412, - -0.088529, - 0.062543, - 0.10579, - -0.08969, - 0.0021424, - -0.069573, - -0.13166, - 0.038661, - 0.019184, - 0.021302, - 0.038219, - -0.050263, - -0.011694, - -0.086158, - -0.15564, - 0.048475, - 0.07186, - -0.13252, - -0.059473, - 0.1657, - 0.047002, - -0.092205, - 0.14192, - 0.01846, - -0.035355, - 0.055116, - 0.018064, - 0.070953, - 0.083555, - -0.04941, - 0.069136, - -0.010304, - -0.11441, - 0.037978, - 0.12704, - 0.02483, - -0.065499, - -0.011473, - 0.036771, - -0.0090504, - 0.038252, - 0.063086, - 0.034342, - -0.086927, - -0.025688, - 0.10477, - -0.013748, - -0.060975, - -0.084991, - 0.037969, - -0.011949, - 0.055221, - 0.16477, - -0.011682, - -0.064973, - 0.083576, - -0.041004, - -0.014777, - 0.020461, - -0.012795, - 0.128, - -0.03331, - -0.024929, - 0.040084, - 0.0038069, - -0.15882, - 0.08972, - 0.064351, - -0.035232, - 0.057215, - -0.017936, - -0.10671, - 0.12614, - 0.0778, - -0.076936, - 0.12786, - 0.014812, - 0.049782, - -0.03448, - 0.078357, - -0.029946, - 0.055648, - -0.041246, - 0.013067, - -0.016465, - -0.006895, - 0.035207, - -0.057349, - 0.11686, - -0.053968, - -0.02994, - 0.0040785, - 0.15048, - -0.065706, - 0.020063, - -0.0032975, - -0.064037, - -0.0086463, - 0.08998, - 0.034507, - 0.053031, - 0.06157, - 0.054082, - -0.071306, - 0.087428, - 0.064279, - 0.090564, - 0.04898, - -0.13147, - -0.013438, - 0.017106, - 0.068854, - -0.091741, - -0.071973, - 0.11822, - 0.027087, - 0.030392, - 0.051799, - 0.0083965, - 0.012448, - 0.052249, - -0.015139, - -0.0069796, - 0.065464, - 0.12074, - 0.069126, - 0.063204, - -0.067345, - -0.076521, - 0.059835, - -0.01176, - 0.016274, - 0.046834, - 0.069982, - 0.035209, - -0.033314, - 0.091651, - -0.13573, - -0.051001, - -0.0012661, - -0.072533, - -0.031268, - -0.075769, - -0.057969, - 0.044249, - 0.074853, - 0.012848, - 0.0070368, - -0.027774, - -0.090343, - -0.023885, - -0.054085, - -0.0123, - -0.061338, - -0.040597, - 0.057408, - 0.049593, - -0.081475, - -0.055875, - 0.038933, - 0.032108, - 0.031296, - 0.077992, - -0.053328, - -0.068177 - ], - "mankind": [ - -0.036958, - -0.056369, - 0.033917, - -0.029737, - -0.025775, - -0.012352, - -0.047318, - -0.074419, - 0.038054, - 0.031426, - 0.074542, - -0.0090774, - 0.00033949, - -0.014965, - 0.058102, - -0.077226, - 0.039636, - 0.0042711, - -0.031497, - 0.042126, - -0.019658, - 0.0482, - -0.016824, - 0.039934, - 0.009817, - -0.059004, - 0.0037171, - -0.018729, - 0.072411, - -0.032587, - 0.010503, - 0.010934, - 0.04232, - 0.043974, - -0.0055443, - -0.011312, - -0.036705, - -0.053622, - 0.0064324, - 0.02553, - -0.03057, - -0.061729, - -0.016726, - 0.022081, - -0.018152, - -0.04697, - -0.032721, - -0.02005, - -0.0027222, - -0.032656, - 0.00046831, - 0.058975, - 0.05452, - -0.0066356, - -0.068506, - 0.039324, - 0.0089369, - -0.054932, - -0.016674, - -0.039008, - 0.021371, - 0.051778, - 0.052523, - -0.050615, - -0.011444, - -0.04446, - -0.016092, - 0.051143, - 0.084327, - 0.017296, - 0.055301, - -0.038799, - 0.028821, - -0.030504, - -0.074677, - 0.039971, - -0.022803, - -0.01454, - 0.03284, - 0.040459, - 0.00023241, - 0.069301, - -0.038601, - 0.078055, - -0.012358, - 0.013128, - -0.0093462, - -0.054569, - -0.051246, - 0.019881, - 0.034384, - 0.058021, - -0.088416, - -0.006593, - -0.030134, - 0.016938, - 0.028896, - -0.041513, - 0.056035, - 0.066969, - -0.039706, - 0.015627, - 0.10645, - -0.063638, - -0.0060499, - -0.074375, - 0.026522, - 0.050528, - 0.019278, - -0.015602, - -0.014735, - 0.11456, - 0.058063, - 0.027907, - -0.0067436, - 0.056835, - -0.0056684, - 0.017763, - -0.036534, - 0.037415, - -0.05418, - -0.0175, - -0.048903, - 0.019619, - -0.023361, - 0.061839, - -0.0089801, - -0.16381, - 0.021509, - 0.07114, - 0.012668, - 0.05643, - -0.022687, - 0.084665, - 0.037641, - -0.041736, - 0.022393, - 0.045834, - 0.024896, - 0.013457, - -0.021019, - -0.048758, - -0.011614, - -0.0035386, - 0.0061985, - -0.0056901, - -0.030054, - -0.029364, - 0.043797, - 0.015974, - 0.1259, - 0.023054, - -0.11214, - -0.052716, - 0.021014, - -0.062044, - 0.041908, - 0.0043161, - 0.008165, - -0.070936, - 0.071632, - -0.049932, - -0.0061542, - 0.035193, - 0.013619, - 0.0075537, - -0.057644, - 0.056353, - -0.0021744, - 0.036184, - -0.016886, - -0.010554, - 0.048599, - 0.014426, - -0.010153, - 0.058796, - 0.036927, - 0.10144, - 0.050901, - 0.067675, - -0.030405, - 0.053675, - -0.02553, - -0.016727, - -0.040361, - -0.10169, - 0.019389, - 0.13364, - -0.044171, - 0.00274, - 0.073423, - 0.0028576, - -0.085538, - -0.043422, - -0.016952, - -0.016749, - -0.10695, - -0.013748, - -0.034709, - 0.05718, - -0.15744, - 0.066969, - 0.0069792, - -0.053111, - -0.027997, - 0.004405, - 0.058413, - -0.023184, - -0.012302, - -0.013345, - -0.0090904, - -0.023435, - 0.060201, - 0.0099842, - 0.039315, - -0.044409, - -0.0055712, - 0.00056867, - 0.03745, - -0.027447, - -0.018633, - 0.013125, - -0.073765, - 0.12058, - 0.013029, - 0.0058164, - 0.01961, - 0.062981, - 0.026946, - -0.019793, - 0.006228, - -0.060097, - -0.13089, - -0.026815, - 0.080635, - -0.03762, - -0.066733, - -0.03311, - 0.0068801, - -0.069724, - -0.025147, - 0.068503, - -0.011272, - 0.024789, - 0.045696, - 0.017047, - 0.033302, - -0.015969, - -0.037205, - -0.02784, - 0.048531, - 0.011147, - -0.01647, - -0.019764, - -0.00025549, - 0.06062, - -0.016986, - 0.063313, - 0.031976, - -0.010096, - -0.010712, - 0.02575, - -0.030211, - -0.029071, - 0.026515, - -0.043829, - 0.064545, - 0.01697, - 0.060968, - 0.026981, - -0.0038906, - 0.082455, - -0.09345, - -0.044971, - 0.010214, - -0.027052, - -0.014529, - -0.022701, - -0.032791, - -0.059852, - -0.015402, - 0.0077561, - -0.016571, - -0.13586, - 0.0046942, - 0.023556, - -0.080902, - -0.030659, - 0.066607, - 0.13035, - -0.0022682, - 0.038475, - -0.066969, - -0.10184, - -0.01013, - -0.025023, - 0.098502, - 0.021359, - -0.012156, - 0.02396 - ], - "trips": [ - -0.031996, - 0.022262, - 0.058753, - -0.0019361, - 0.060089, - -0.071956, - -0.044911, - -0.11485, - -0.036718, - -0.035072, - -0.017226, - -0.15578, - -0.056565, - -0.087608, - 0.023266, - -0.0043817, - 0.14042, - -0.024842, - 0.014974, - -0.048513, - 0.0038738, - 0.069901, - -0.060313, - 0.058879, - 0.044282, - 0.039648, - -0.0055005, - 0.045794, - 0.049258, - 0.01096, - 0.0068366, - -0.022077, - 0.0090169, - -0.053884, - 0.052589, - 0.072214, - -0.022199, - 0.10398, - -0.0011901, - -0.046156, - 0.024077, - -0.099474, - -0.076783, - -0.027384, - 0.073656, - 0.067048, - 0.079629, - -0.006017, - 0.0095651, - 0.042894, - -0.00026074, - 0.057921, - -0.014936, - -0.019598, - -0.17693, - -0.042091, - -0.018932, - 0.037782, - -0.051709, - 0.010989, - -0.070898, - 0.010555, - 0.21778, - -0.03485, - -0.017093, - -0.015876, - 0.029983, - -0.079159, - -0.01317, - 0.02332, - 0.017779, - -0.0085996, - 0.03542, - 0.065596, - 0.057671, - -0.0057591, - 0.060034, - -0.039118, - 0.027314, - -0.029149, - -0.05785, - -0.062998, - -0.054589, - 0.079042, - -0.005889, - -0.093744, - 0.11577, - 0.010319, - 0.079732, - -0.073218, - 0.024598, - 0.02897, - -0.10987, - 0.04307, - 0.045414, - 0.026805, - -0.064068, - 0.06687, - -0.043104, - -0.076342, - 0.1401, - 0.035076, - 0.021858, - -0.045508, - 0.19218, - -0.069844, - -0.010117, - -0.062566, - -0.030119, - 0.048241, - 0.02523, - -0.0047725, - 0.099667, - 0.098211, - -0.03884, - -0.029165, - -0.0054466, - -0.068983, - -0.072392, - 0.062998, - 0.08085, - 0.089274, - -0.074492, - 0.013007, - 0.1431, - -0.075612, - -0.026579, - -0.11215, - 0.029993, - 0.11883, - 0.074599, - 0.12557, - -0.044398, - -0.036955, - 0.0044696, - 0.0035502, - 0.048512, - 0.04577, - -0.082655, - 0.013523, - 0.0057025, - -0.052008, - 0.022069, - 0.089361, - 0.10682, - 0.011264, - -0.036317, - -0.0039201, - -0.040869, - -0.1166, - -0.0044285, - 0.075037, - -0.1131, - -0.15033, - 0.077834, - 0.032894, - -0.10374, - 0.042423, - -0.038687, - -0.0078783, - 0.081988, - 0.12617, - 0.098254, - -0.022, - 0.0035659, - -0.011428, - 0.098639, - -0.051936, - 0.1033, - 0.010379, - 0.10482, - 0.0087167, - -0.01376, - -0.03623, - -0.021557, - 0.072769, - -0.01421, - -0.0198, - -0.013259, - 0.083352, - 0.0065407, - 0.011899, - 0.011681, - -0.075093, - 0.027847, - 0.0088538, - -0.056862, - 0.14902, - 0.042268, - -0.062163, - 0.052173, - 0.0053398, - -0.10939, - -0.01816, - -0.035117, - 0.061077, - -0.101, - -0.00057303, - 0.063089, - 0.0085904, - -0.16563, - 0.10663, - 0.11457, - -0.057928, - 0.084665, - 0.006817, - -0.17181, - -0.0010266, - 0.052192, - -0.075907, - 0.12322, - 0.010064, - 0.00034904, - -0.028654, - 0.046774, - -0.053761, - -0.074991, - -0.082905, - -0.030703, - -0.14592, - -0.0097362, - 0.020024, - -0.10859, - 0.081289, - 0.036186, - -0.021249, - -0.018933, - 0.12318, - -0.025727, - 0.065985, - -0.059808, - -0.075145, - -0.062857, - 0.022709, - 0.074052, - 0.10723, - 0.062184, - -0.011351, - -0.057111, - 0.090128, - -0.012524, - 0.025005, - 0.048991, - -0.1341, - -0.0059789, - 0.098306, - 0.09078, - -0.080554, - -0.010973, - 0.082424, - 0.014607, - 0.049247, - 0.035795, - 0.0097169, - -0.038926, - -0.066544, - 0.0049964, - 0.047252, - 0.034387, - 0.083128, - 0.017352, - 0.026173, - -0.12149, - -0.072789, - 0.063391, - 0.055005, - -0.075757, - 0.013467, - 0.085805, - 0.060499, - -0.033838, - 0.10932, - -0.14151, - -0.052431, - -0.075591, - -0.041151, - -0.0099517, - 0.038424, - -0.042499, - 0.029344, - -0.0036131, - -0.035813, - -0.017486, - -0.037326, - -0.012527, - -0.042588, - -0.056611, - 0.030877, - -0.040723, - -0.025994, - 0.066392, - 0.074554, - -0.081697, - -0.00060109, - -0.010511, - 0.057625, - -0.0031999, - 0.030628, - -0.0090669, - -0.029018 - ], - "heatwave": [ - -0.055249, - -0.014775, - -0.056114, - 0.0033059, - 0.026498, - -0.11012, - -0.018279, - -0.054044, - 0.06068, - 0.051783, - -0.089611, - -0.018602, - 0.011158, - -0.02201, - 0.032, - 0.049042, - 0.082311, - 0.036123, - 0.064578, - -0.025925, - -0.047574, - 0.038311, - -0.010178, - 0.036442, - 0.12066, - 0.012199, - 0.013679, - 0.010051, - 0.037299, - 0.009457, - 0.022711, - -0.031175, - 0.097471, - -0.12261, - 0.012444, - 0.039412, - 0.039132, - 0.030364, - 0.00049935, - 0.053975, - -0.029744, - -0.077032, - -0.02666, - 0.032347, - 0.029267, - 0.094518, - 0.032824, - -0.15263, - -0.029701, - 0.036669, - 0.021817, - 0.030869, - -0.047466, - 0.0078802, - -0.072561, - 0.060839, - 0.11801, - -0.041179, - -0.08059, - -0.043154, - 0.0020385, - -0.0080971, - 0.050561, - -0.051887, - -0.051104, - -0.037342, - 0.039342, - -0.038733, - -0.03343, - 0.019323, - -0.023673, - 0.090181, - -0.057068, - 0.019529, - -0.02623, - -0.046726, - -0.0068703, - -0.014452, - -0.17418, - 0.11223, - -0.02058, - 0.065426, - -0.045988, - 0.061307, - -0.0084632, - 0.1023, - 0.069863, - -0.046535, - 0.046779, - -0.054034, - -0.043422, - 0.039818, - -0.054355, - -0.03655, - -0.037769, - 0.064784, - 0.028902, - 0.11708, - 0.11366, - -0.10479, - -0.062197, - 0.014325, - -0.034618, - 0.011431, - -0.035956, - -0.0613, - -0.0071669, - -0.016937, - 0.075554, - 0.038962, - -0.028475, - -0.020493, - 0.065419, - 0.042063, - -0.021366, - -0.095114, - 0.047077, - -0.00082522, - -0.052982, - -0.0093727, - 0.0083643, - -0.00049433, - -0.030319, - 0.02345, - 0.06839, - 0.018588, - 0.029639, - -0.031438, - -0.039619, - 0.086447, - 0.015464, - 0.016159, - -0.054132, - 0.028519, - 0.067124, - -0.03741, - 0.052134, - 0.039847, - -0.042413, - 0.028273, - 0.090719, - -0.042333, - 0.034824, - -0.045721, - -0.051036, - -0.087703, - -0.015229, - -0.036767, - -0.17488, - -0.011773, - 0.032411, - 0.062, - 0.0049987, - 0.0047971, - 0.0059135, - 0.036554, - 0.031271, - 0.10743, - 0.0097005, - -0.071799, - 0.11493, - -0.14171, - -0.11405, - 0.078682, - 0.035289, - 0.0020298, - -0.049404, - 0.024536, - -0.0013533, - 0.04646, - -0.028452, - -0.007052, - 0.059842, - -0.019552, - -0.021182, - 0.030775, - -0.00030955, - -0.068676, - -0.00069182, - -0.021359, - 0.01705, - 0.026673, - -0.088782, - -0.12829, - 0.014941, - 0.0027886, - -0.031116, - 0.098702, - -0.019693, - 0.0068148, - 0.0087077, - 0.020232, - -0.03102, - -0.041243, - -0.007085, - -0.023551, - 0.05495, - -0.030315, - -0.017734, - 0.004142, - -0.15888, - 0.025154, - -0.20207, - 0.072155, - -0.0086175, - -0.0052089, - 0.031054, - -0.032551, - -0.032156, - -0.073963, - 0.13403, - -0.022137, - 0.036919, - 0.065303, - 0.10314, - 0.04084, - -0.000030463, - -0.066438, - -0.00030191, - -0.10767, - -0.059769, - -0.05167, - 0.059804, - 0.084847, - -0.025235, - 0.032772, - -0.16612, - 0.065019, - -0.029009, - 0.019607, - 0.06403, - -0.13256, - -0.019839, - -0.016969, - 0.081247, - -0.01109, - 0.085163, - 0.039187, - 0.066603, - -0.046479, - 0.064334, - 0.020437, - -0.030407, - -0.07361, - 0.010561, - 0.10255, - 0.061238, - -0.022531, - -0.023748, - -0.048024, - 0.04856, - -0.047626, - 0.013351, - -0.034868, - -0.013267, - 0.03472, - 0.053238, - 0.032117, - 0.068999, - 0.081061, - 0.063325, - -0.025692, - -0.042124, - -0.042831, - -0.055432, - -0.038315, - 0.0076277, - 0.054464, - 0.12034, - -0.10317, - -0.020585, - 0.10777, - -0.12735, - 0.031182, - 0.012513, - -0.10295, - 0.026288, - 0.037814, - -0.014179, - 0.052294, - 0.097439, - -0.0028226, - 0.023604, - 0.05476, - -0.022276, - 0.088536, - 0.021777, - 0.00047517, - 0.096193, - 0.10008, - -0.026852, - -0.0036046, - -0.037049, - 0.056468, - -0.027582, - -0.060957, - 0.0138, - 0.10034, - 0.10871, - 0.0032078 - ], - "mechanical": [ - -0.023416, - 0.020694, - 0.03268, - -0.0031489, - -0.013129, - -0.073979, - -0.044039, - -0.06237, - 0.050409, - -0.029394, - 0.018461, - 0.0035538, - 0.046229, - 0.050976, - 0.0024417, - -0.0088356, - 0.038177, - 0.063673, - 0.035074, - 0.037262, - 0.036258, - -0.0050914, - 0.036929, - 0.056336, - 0.02313, - -0.0064202, - -0.025495, - -0.01879, - 0.037364, - -0.016235, - -0.0081174, - -0.028493, - 0.064047, - -0.10162, - 0.04886, - 0.032018, - 0.01938, - -0.0036888, - -0.0099581, - 0.022265, - -0.0029549, - -0.098326, - -0.0056634, - 0.012308, - -0.046671, - -0.02116, - -0.00079939, - -0.0044169, - -0.019543, - -0.027112, - -0.016214, - 0.011087, - -0.031439, - 0.012811, - 0.034035, - -0.012469, - 0.010958, - -0.016236, - -0.019017, - 0.015052, - 0.0179, - 0.054441, - 0.085064, - 0.066711, - 0.019005, - 0.040705, - -0.011237, - 0.029306, - -0.0065021, - -0.010608, - 0.012171, - 0.00092173, - 0.017151, - -0.017498, - -0.033322, - -0.0016241, - -0.086844, - -0.088789, - -0.038677, - -0.021935, - -0.040149, - -0.0068117, - -0.050573, - 0.0084584, - 0.012722, - -0.034111, - 0.026832, - 0.028355, - 0.010412, - -0.025287, - 0.016133, - -0.045964, - -0.078196, - -0.023984, - 0.018329, - 0.035406, - -0.0039781, - -0.0061286, - -0.0020948, - 0.018153, - 0.032856, - 0.004813, - -0.019911, - -0.023733, - 0.0029252, - -0.097892, - -0.0043047, - 0.029785, - -0.009284, - -0.016065, - 0.03957, - 0.077865, - 0.038439, - 0.036161, - 0.010726, - 0.040912, - -0.036018, - 0.015684, - -0.026104, - -0.01687, - -0.0090762, - -0.0026622, - -0.052502, - 0.0074814, - 0.097546, - 0.0052221, - -0.0064497, - -0.0078828, - 0.018506, - 0.066326, - -0.0044655, - -0.016857, - 0.024331, - -0.0014196, - 0.031687, - -0.049492, - 0.058166, - 0.045745, - 0.025749, - -0.0022382, - 0.031724, - 0.024169, - 0.019943, - 0.029415, - -0.012184, - -0.067624, - 0.0043721, - -0.046415, - 0.01387, - -0.016335, - 0.05099, - 0.14317, - -0.0056639, - -0.025567, - 0.035919, - 0.047408, - -0.031739, - -0.020845, - 0.01327, - -0.0039658, - 0.011262, - -0.013941, - -0.0837, - -0.041762, - 0.021399, - 0.025784, - 0.0023893, - 0.020813, - 0.041811, - 0.015716, - 0.069929, - 0.052981, - -0.028287, - -0.0057468, - 0.014829, - 0.066515, - 0.030737, - 0.034551, - -0.044915, - -0.00082092, - 0.0056884, - 0.0025075, - -0.006284, - -0.017205, - -0.019743, - -0.059885, - 0.00017529, - 0.084992, - -0.038204, - 0.027969, - -0.022667, - 0.020877, - 0.068157, - -0.015754, - 0.012331, - 0.022686, - 0.00099554, - 0.0054911, - 0.019821, - 0.017196, - -0.10912, - -0.0001903, - -0.024051, - -0.006351, - 0.031208, - 0.00041832, - -0.03351, - -0.016662, - -0.03618, - 0.016792, - 0.13605, - 0.043231, - 0.02974, - 0.0045333, - 0.031584, - 0.034159, - 0.016084, - 0.011135, - -0.055217, - 0.007877, - -0.0022377, - 0.00032719, - -0.042384, - 0.066912, - 0.034379, - -0.0078238, - 0.075109, - 0.061013, - -0.00056691, - -0.012302, - -0.028273, - -0.040997, - -0.042198, - -0.031851, - 0.018652, - -0.0089514, - 0.011751, - -0.0032372, - -0.00031841, - 0.021315, - 0.050569, - 0.043504, - -0.018069, - 0.043528, - -0.17031, - -0.010225, - -0.020423, - 0.021312, - -0.0077649, - 0.036343, - -0.0065296, - 0.033401, - 0.019492, - 0.030291, - -0.018979, - 0.018048, - 0.084231, - 0.0045307, - 0.020418, - -0.036347, - 0.006267, - -0.016514, - 0.0011221, - 0.020622, - -0.0016727, - -0.031938, - 0.0057993, - 0.025233, - -0.02355, - 0.0075055, - -0.037204, - 0.055864, - -0.062164, - -0.022775, - 0.043006, - -0.13359, - 0.02589, - 0.030381, - 0.059765, - -0.04565, - 0.14721, - 0.012069, - 0.021195, - -0.00080123, - -0.01571, - 0.012623, - -0.042133, - -0.0080522, - 0.0020973, - 0.077498, - 0.0012582, - 0.010231, - -0.038378, - -0.024209, - -0.044319, - -0.017654, - 0.020952, - -0.032904, - 0.0011847, - -0.00078351 - ], - "endeavors": [ - -0.023684, - -0.044284, - 0.055959, - -0.02126, - -0.033077, - -0.040788, - -0.017377, - -0.082829, - -0.04082, - 0.015543, - -0.01107, - -0.038694, - -0.030464, - -0.0043582, - -0.016879, - 0.019927, - 0.033626, - 0.0087248, - 0.052465, - 0.010523, - 0.0070077, - 0.028513, - -0.011314, - 0.053546, - -0.008777, - 0.039067, - -0.023352, - 0.016191, - -0.023049, - -0.021058, - -0.010593, - -0.081543, - 0.034572, - -0.04828, - 0.052238, - 0.034102, - -0.012811, - -0.046902, - 0.012274, - -0.026856, - -0.0038612, - -0.070582, - -0.0039285, - 0.033167, - -0.011995, - -0.029379, - -0.013381, - -0.01378, - 0.0053686, - -0.048904, - -0.0045157, - 0.02334, - -0.016611, - 0.01896, - -0.10367, - 0.025415, - -0.086827, - 0.024281, - -0.0039673, - 0.019222, - 0.031391, - 0.038036, - 0.13266, - -0.023854, - 0.052881, - -0.061442, - -0.00097453, - -0.026493, - -0.0039205, - -0.0036511, - 0.043176, - 0.022916, - -0.017025, - 0.0087407, - 0.062245, - 0.004796, - -0.0048543, - -0.039377, - 0.075317, - -0.019696, - -0.0061937, - 0.027373, - -0.082528, - 0.061085, - 0.034659, - -0.031824, - 0.0056215, - 0.015827, - -0.034453, - -0.024023, - 0.0055851, - -0.0083764, - -0.064882, - -0.01335, - 0.018811, - -0.018963, - 0.0007745, - -0.046629, - 0.0032218, - 0.011086, - -0.015229, - 0.00053738, - -0.019017, - -0.039219, - 0.026571, - -0.034692, - -0.036204, - 0.03098, - -0.008396, - -0.015953, - -0.032781, - -0.0073124, - 0.037419, - 0.045057, - -0.0021993, - -0.01259, - -0.020296, - -0.018269, - -0.014842, - 0.0018996, - -0.046782, - -0.052267, - -0.003933, - 0.023654, - 0.16537, - 0.0000018973, - -0.00075268, - -0.067942, - 0.014299, - 0.094836, - 0.052828, - 0.072175, - -0.011546, - 0.024499, - -0.010701, - -0.02778, - 0.022858, - -0.012497, - 0.0032421, - 0.0014875, - 0.019951, - -0.054982, - -0.011056, - 0.028518, - -0.031142, - 0.051077, - 0.0010366, - -0.029471, - 0.012794, - 0.012363, - 0.05099, - 0.10095, - -0.024852, - -0.083623, - 0.0011528, - 0.010302, - 0.012362, - 0.0041216, - -0.014008, - -0.016781, - 0.054496, - 0.028395, - 0.032721, - -0.0079812, - -0.01755, - -0.024521, - -0.030387, - -0.01859, - -0.058019, - 0.015815, - 0.10873, - 0.02796, - 0.027192, - 0.001953, - -0.04036, - 0.035692, - 0.0055466, - 0.055535, - -0.037694, - 0.030988, - -0.013787, - -0.01266, - 0.015769, - -0.020386, - -0.035451, - -0.02629, - 0.0085525, - 0.11165, - 0.027082, - 0.027465, - 0.017664, - 0.024363, - -0.0097716, - 0.018504, - 0.011221, - 0.011591, - -0.02938, - 0.034646, - -0.020457, - -0.014869, - -0.089272, - 0.044651, - 0.01881, - -0.034797, - 0.016613, - -0.021388, - -0.0052296, - 0.026773, - 0.048248, - -0.044074, - 0.032028, - 0.02999, - 0.028071, - 0.035242, - -0.0055054, - -0.020244, - 0.021329, - 0.011316, - -0.10013, - -0.011927, - -0.032192, - -0.0085149, - -0.037979, - 0.093848, - 0.0017357, - 0.012459, - 0.07015, - 0.11857, - -0.0077669, - 0.031651, - -0.020188, - -0.074048, - -0.045681, - 0.0048346, - 0.087959, - 0.028647, - -0.0028691, - -0.033818, - -0.053053, - 0.017522, - -0.016084, - 0.011534, - 0.016126, - 0.007679, - 0.043754, - 0.0038865, - -0.026393, - -0.087887, - 0.015396, - 0.061993, - 0.017112, - 0.011667, - 0.0070756, - -0.024765, - -0.0029511, - 0.0067859, - -0.035472, - 0.080632, - 0.019845, - 0.049939, - -0.0027062, - 0.0020306, - -0.0091225, - -0.030084, - 0.020729, - 0.010611, - 0.020264, - 0.033812, - 0.004322, - 0.065133, - 0.03033, - 0.067466, - -0.10234, - -0.036495, - -0.0058377, - -0.032548, - -0.049211, - -0.0065268, - -0.050154, - 0.053027, - -0.015111, - 0.009926, - -0.014275, - -0.090694, - -0.014508, - -0.031817, - -0.046018, - -0.033258, - -0.030904, - 0.042738, - -0.0050079, - 0.026001, - -0.035183, - -0.0061294, - -0.014004, - 0.026091, - 0.010064, - 0.0037773, - -0.05762, - 0.038357 - ], - "outreach": [ - 0.040792, - -0.065184, - 0.0037697, - 0.068004, - -0.045939, - -0.019689, - -0.038433, - -0.089826, - -0.017973, - -0.00044309, - 0.028764, - -0.057721, - 0.057304, - -0.045764, - -0.055683, - -0.080256, - 0.093697, - 0.036189, - 0.02048, - 0.0022347, - 0.0031817, - 0.033464, - 0.033067, - 0.054345, - 0.0045424, - 0.000059141, - -0.03974, - 0.013731, - -0.01518, - -0.02628, - -0.059616, - -0.040965, - 0.039061, - -0.11942, - 0.059993, - 0.067334, - 0.01677, - 0.024478, - -0.077561, - -0.068179, - -0.012164, - -0.089188, - 0.0061001, - -0.026164, - 0.03059, - -0.015369, - -0.0075786, - -0.0097911, - 0.010357, - 0.020433, - -0.070538, - -0.019654, - 0.029256, - -0.03475, - -0.037957, - 0.062836, - -0.032509, - 0.043996, - 0.010024, - 0.025227, - -0.027643, - 0.050488, - 0.11438, - -0.064315, - -0.019745, - -0.040572, - -0.025036, - -0.020486, - -0.005461, - -0.075869, - 0.021418, - -0.019046, - 0.021991, - 0.010768, - 0.023073, - 0.0066555, - -0.0202, - 0.01565, - 0.077536, - -0.031016, - -0.076394, - 0.0059911, - -0.084013, - 0.03021, - 0.023712, - 0.030285, - -0.02019, - 0.0056137, - 0.018908, - -0.0082134, - -0.043757, - 0.059516, - -0.10417, - -0.0032521, - 0.039356, - 0.036213, - 0.040993, - 0.0898, - -0.088547, - -0.042266, - 0.030189, - -0.041504, - 0.0098185, - 0.015543, - 0.036275, - -0.039469, - 0.010676, - -0.017023, - -0.015892, - 0.0066937, - -0.021148, - 0.086511, - 0.026446, - 0.04621, - 0.0042484, - -0.06792, - -0.0097957, - 0.0033627, - -0.050397, - -0.017668, - -0.050423, - -0.013069, - -0.018278, - 0.016644, - 0.096919, - -0.015745, - -0.0031375, - -0.05474, - 0.074228, - 0.067716, - 0.008515, - -0.015481, - -0.056984, - 0.039701, - -0.054183, - 0.00086069, - -0.0063813, - 0.021046, - 0.020675, - -0.036274, - 0.016298, - -0.0077179, - 0.017116, - 0.03874, - -0.098238, - 0.030739, - -0.058494, - 0.060956, - -0.05696, - 0.028858, - 0.061928, - 0.064564, - -0.04292, - -0.13783, - 0.029839, - 0.041131, - 0.00052447, - 0.016235, - -0.003234, - 0.0058801, - 0.07187, - 0.080055, - -0.047877, - 0.0097148, - -0.0014041, - 0.019974, - 0.021106, - -0.042013, - -0.035544, - -0.036951, - 0.084241, - -0.016373, - -0.0087921, - 0.00024187, - -0.032998, - 0.057709, - 0.063249, - 0.02463, - -0.039691, - 0.019056, - -0.053881, - 0.023097, - 0.086915, - 0.035273, - -0.067892, - -0.0049161, - 0.0043585, - 0.097204, - 0.0020358, - -0.0089079, - -0.054017, - 0.087273, - 0.032948, - 0.0011022, - 0.024987, - -0.02185, - 0.0054093, - 0.038799, - -0.0057111, - -0.095019, - -0.15065, - 0.057379, - 0.021479, - 0.096183, - -0.030988, - -0.0019642, - -0.067801, - 0.031037, - 0.028011, - -0.010192, - 0.13179, - -0.0098448, - -0.0053151, - -0.02191, - 0.019571, - -0.013502, - 0.0032493, - -0.014599, - -0.04404, - 0.036243, - -0.033984, - -0.05502, - -0.032499, - 0.117, - 0.027124, - -0.05533, - -0.0017969, - 0.088526, - 0.027049, - -0.022423, - 0.024016, - -0.054752, - -0.0036094, - 0.0277, - 0.095308, - 0.036883, - 0.013795, - -0.0079101, - -0.086619, - 0.010716, - 0.036454, - 0.0024182, - 0.062588, - -0.10179, - -0.073489, - 0.0019487, - -0.0067696, - -0.055303, - -0.0012908, - 0.029667, - 0.088721, - 0.033767, - -0.017745, - -0.053655, - 0.020117, - -0.012032, - -0.0050245, - 0.033615, - 0.00016209, - 0.026057, - 0.020284, - -0.023886, - -0.0050818, - 0.017383, - 0.022588, - -0.037911, - 0.062143, - 0.019816, - 0.0090126, - 0.072221, - 0.0016942, - 0.069415, - -0.13686, - -0.063183, - -0.0154, - -0.019927, - -0.047131, - 0.071476, - -0.10748, - 0.038839, - 0.084529, - -0.045699, - -0.018984, - 0.026503, - -0.015076, - -0.019034, - -0.014553, - 0.030542, - 0.001242, - 0.002042, - 0.019664, - 0.071375, - -0.019109, - 0.0077809, - 0.013329, - 0.001706, - -0.063313, - 0.033523, - -0.014875, - -0.011544 - ], - "diet": [ - -0.06777, - -0.024914, - -0.13614, - -0.011126, - -0.0071173, - -0.089908, - -0.040005, - -0.12237, - 0.014245, - 0.083624, - -0.049768, - -0.066669, - 0.032666, - -0.090278, - 0.071315, - -0.039515, - 0.18401, - -0.11512, - 0.094424, - 0.071572, - -0.044011, - -0.038826, - -0.031561, - 0.044829, - -0.062239, - 0.0067761, - -0.0052211, - 0.10501, - -0.077537, - 0.0041185, - 0.12268, - -0.13351, - 0.089233, - -0.080862, - 0.022648, - 0.064132, - -0.016213, - -0.10448, - 0.13236, - 0.083088, - 0.040727, - -0.20396, - -0.01101, - -0.046387, - 0.10189, - -0.023496, - -0.047975, - -0.07863, - -0.060523, - 0.04527, - -0.055529, - 0.011753, - 0.1382, - -0.073796, - -0.10533, - 0.0057633, - 0.019709, - -0.01499, - -0.062901, - -0.021305, - -0.0035085, - -0.079028, - 0.22152, - 0.050264, - 0.0053892, - 0.028444, - 0.051517, - 0.07642, - -0.051877, - -0.12102, - -0.035985, - 0.034882, - -0.036629, - -0.13955, - -0.097567, - 0.11836, - 0.0060874, - -0.021057, - -0.073239, - -0.059849, - -0.060498, - -0.038217, - 0.07727, - 0.1054, - -0.057578, - 0.026518, - -0.031084, - -0.052038, - 0.081864, - 0.014953, - 0.077537, - 0.044017, - -0.13692, - 0.062851, - -0.10022, - 0.11168, - -0.030132, - 0.16603, - 0.10771, - -0.051557, - -0.068033, - -0.0012188, - 0.074759, - -0.010796, - -0.051143, - -0.1218, - -0.029906, - -0.045842, - -0.055507, - 0.15762, - 0.042188, - 0.009448, - 0.10188, - 0.068316, - 0.027652, - 0.057465, - 0.067058, - 0.039551, - -0.11109, - -0.016762, - 0.024883, - 0.13046, - -0.019994, - -0.082248, - 0.094256, - -0.039568, - -0.03571, - -0.072739, - 0.07132, - 0.17879, - 0.059041, - -0.083421, - 0.074703, - -0.037673, - -0.092271, - 0.12928, - -0.077585, - 0.020884, - 0.090453, - -0.054606, - 0.19689, - -0.052665, - -0.11473, - 0.12119, - -0.031662, - -0.073218, - 0.058578, - 0.013024, - 0.03312, - -0.044436, - 0.049038, - 0.10295, - -0.01995, - -0.044654, - 0.049106, - 0.098324, - -0.074029, - 0.11713, - 0.025104, - -0.033545, - 0.063094, - 0.099892, - -0.1265, - 0.076344, - 0.010979, - 0.077018, - -0.050125, - -0.087931, - 0.020956, - -0.024013, - -0.026346, - -0.10543, - 0.0004773, - 0.081578, - 0.05366, - 0.052603, - -0.0082989, - 0.044108, - -0.026056, - 0.048989, - 0.013888, - -0.02251, - 0.006973, - -0.072289, - 0.14064, - -0.070225, - 0.042087, - 0.10465, - -0.13675, - 0.017216, - 0.051617, - 0.081571, - 0.031951, - -0.019597, - 0.01557, - 0.0218, - -0.056823, - -0.035398, - 0.011169, - 0.12641, - -0.21497, - 0.045732, - -0.010156, - -0.14953, - -0.061389, - 0.11296, - 0.0022142, - -0.010774, - 0.0001438, - -0.0031824, - 0.18118, - 0.019929, - 0.043987, - 0.0083088, - 0.01954, - -0.00097766, - 0.1157, - 0.05966, - -0.019162, - -0.041747, - -0.12742, - 0.088849, - -0.11982, - 0.12705, - -0.082934, - -0.048644, - 0.12377, - 0.049577, - -0.054495, - -0.027847, - -0.098103, - -0.097627, - -0.10762, - 0.018378, - 0.073056, - 0.099526, - -0.04008, - 0.042091, - -0.01793, - -0.11855, - 0.08301, - -0.012389, - -0.012155, - -0.054198, - -0.012606, - 0.23677, - -0.0014578, - -0.061325, - 0.028041, - -0.045483, - 0.059006, - -0.10758, - -0.083613, - -0.10128, - 0.028066, - -0.032685, - 0.05282, - 0.0090893, - 0.10656, - -0.06261, - -0.0039716, - 0.063016, - 0.072748, - -0.023776, - 0.0882, - -0.022495, - -0.027682, - -0.055445, - 0.00062924, - 0.15849, - -0.023302, - 0.13205, - -0.14857, - -0.08348, - -0.034399, - -0.038061, - -0.021443, - -0.067119, - 0.039371, - 0.044886, - 0.17302, - 0.064268, - 0.10156, - 0.044142, - -0.024824, - 0.10731, - -0.0046217, - 0.0043384, - 0.050539, - 0.052188, - 0.051153, - 0.050909, - -0.0058825, - -0.045567, - 0.0031194, - -0.071071, - -0.052274, - 0.017914, - -0.16721, - 0.079143 - ], - "cordless": [ - 0.00083601, - 0.014941, - 0.030343, - 0.0050712, - -0.096326, - 0.014667, - 0.052645, - -0.11768, - 0.077462, - -0.013291, - -0.048496, - -0.012634, - -0.0044297, - -0.056095, - -0.013889, - 0.0090531, - 0.11115, - 0.001891, - 0.064387, - -0.051788, - 0.018307, - -0.047874, - 0.073058, - 0.043581, - 0.14751, - -0.043598, - 0.0037723, - -0.019451, - 0.075634, - 0.024612, - -0.00017303, - -0.026132, - 0.09899, - -0.046097, - 0.0046594, - -0.067982, - 0.078724, - -0.022666, - -0.011793, - -0.051798, - 0.0062044, - -0.1613, - 0.019632, - 0.030047, - 0.024304, - -0.046709, - -0.061993, - -0.010155, - 0.0085171, - -0.025615, - 0.042876, - 0.07936, - -0.012566, - -0.02666, - 0.085232, - 0.017968, - 0.012169, - -0.062453, - -0.028197, - 0.022455, - -0.079308, - 0.00066758, - 0.0655, - 0.026281, - -0.050039, - 0.032244, - -0.015125, - -0.043888, - -0.046332, - -0.065488, - 0.011749, - 0.023272, - 0.063922, - 0.0014535, - -0.034996, - 0.066606, - 0.063941, - -0.050445, - -0.022601, - -0.012349, - -0.034219, - -0.1236, - -0.042104, - 0.033438, - 0.063372, - -0.0055245, - -0.0093983, - 0.013699, - -0.071392, - -0.014948, - 0.026426, - -0.0093588, - -0.033092, - 0.018296, - 0.032903, - 0.045465, - -0.000067101, - 0.00049439, - -0.036621, - -0.039855, - 0.03157, - 0.054024, - 0.038692, - 0.0056295, - -0.053705, - -0.076506, - -0.043168, - 0.0018084, - 0.01047, - -0.074318, - 0.017938, - 0.055729, - 0.043396, - 0.034393, - -0.085005, - 0.041152, - -0.043303, - -0.0063857, - -0.013328, - -0.066779, - -0.033744, - 0.11428, - 0.0054949, - 0.01471, - 0.085743, - -0.012062, - 0.029059, - -0.046514, - 0.017031, - -0.0072479, - 0.047458, - 0.01841, - -0.026513, - -0.037195, - 0.0068353, - -0.11903, - 0.086684, - 0.012629, - -0.082248, - -0.01946, - 0.031883, - 0.071635, - 0.046912, - -0.033416, - -0.018456, - 0.021172, - 0.052545, - -0.033249, - 0.02447, - -0.033893, - -0.008626, - 0.16368, - 0.013989, - 0.042569, - 0.0043149, - -0.0068088, - -0.022118, - -0.041264, - 0.091482, - 0.0030743, - 0.052191, - 0.024178, - -0.038247, - -0.000092899, - 0.016849, - -0.046697, - -0.010131, - -0.017772, - 0.047508, - -0.0021915, - 0.005175, - 0.14752, - -0.010161, - 0.081732, - -0.072792, - 0.058086, - 0.0045343, - 0.088497, - -0.0072733, - 0.00582, - 0.015163, - -0.0081726, - 0.0069072, - 0.0074428, - -0.009811, - -0.013361, - -0.080428, - 0.20156, - -0.0085813, - -0.010866, - -0.037987, - 0.029671, - 0.0038091, - -0.025548, - -0.023743, - -0.021136, - -0.026999, - -0.010428, - -0.0030885, - 0.045247, - -0.12767, - 0.04882, - -0.0098382, - 0.050819, - 0.025355, - -0.043203, - 0.0083779, - 0.0039357, - -0.070231, - -0.052302, - 0.14683, - -0.0031477, - 0.096193, - 0.035285, - 0.014839, - -0.0213, - -0.0042276, - -0.12922, - -0.076509, - 0.041177, - 0.051491, - -0.0018468, - 0.0026549, - 0.087099, - -0.029147, - -0.041454, - 0.013032, - 0.038165, - 0.00064065, - 0.010118, - 0.051957, - -0.076104, - -0.026064, - -0.047072, - 0.030801, - 0.08273, - 0.084878, - -0.015373, - 0.035398, - -0.0074185, - 0.020764, - -0.041855, - -0.034556, - 0.010286, - -0.087281, - -0.096013, - 0.055149, - 0.012896, - 0.055153, - -0.01286, - -0.067068, - 0.043853, - -0.10441, - 0.017772, - 0.030104, - -0.031576, - 0.022177, - 0.036252, - -0.0084357, - 0.023572, - 0.029572, - -0.041595, - 0.042805, - -0.030616, - -0.03577, - 0.018922, - 0.013633, - 0.089421, - -0.03058, - 0.000059711, - -0.1107, - 0.070808, - -0.066154, - -0.052889, - -0.022848, - -0.079189, - 0.047077, - 0.03192, - 0.06465, - 0.00047118, - 0.13995, - 0.0010671, - -0.023162, - 0.022643, - -0.075127, - -0.0088582, - -0.099151, - -0.054606, - -0.042836, - 0.0074129, - -0.0076724, - 0.035223, - -0.046944, - -0.02287, - 0.061035, - 0.052691, - -0.037445, - -0.0072667, - 0.053758, - 0.021515 - ], - "parenthood": [ - -0.019118, - -0.04509, - 0.034055, - -0.026127, - -0.01514, - 0.088386, - 0.015689, - -0.074305, - 0.098293, - 0.040117, - -0.0017885, - 0.014102, - -0.014121, - -0.0027543, - -0.080483, - -0.044148, - 0.082383, - -0.032588, - -0.02618, - 0.058891, - 0.043486, - 0.039777, - -0.010121, - 0.028589, - -0.036632, - 0.048201, - 0.0049558, - 0.043102, - -0.0094065, - 0.007159, - 0.056858, - -0.026716, - -0.036368, - -0.046885, - -0.00058256, - 0.041139, - -0.064478, - -0.086381, - -0.02873, - 0.0022935, - 0.0027607, - -0.082736, - -0.015711, - -0.034447, - -0.010261, - 0.027633, - 0.0074923, - 0.010263, - -0.027304, - -0.055883, - -0.017443, - -0.03459, - 0.023088, - 0.040896, - -0.036228, - -0.031448, - -0.012411, - -0.067635, - 0.009672, - -0.016481, - 0.026397, - -0.0039526, - 0.014309, - 0.010693, - 0.051362, - -0.064343, - 0.00766, - -0.027025, - -0.042714, - -0.008815, - 0.067447, - 0.052598, - -0.0041591, - -0.0065019, - 0.024317, - 0.0090758, - -0.0090977, - -0.014799, - -0.019337, - 0.022089, - 0.01688, - 0.021204, - -0.027123, - 0.096059, - -0.046581, - 0.027692, - 0.0070393, - -0.00086119, - -0.038873, - 0.039531, - 0.03178, - 0.012131, - -0.076806, - 0.020687, - -0.0061597, - 0.015879, - -0.0188, - 0.04417, - -0.00477, - 0.014671, - -0.046655, - -0.052489, - -0.023698, - -0.05678, - -0.033107, - -0.021805, - 0.019641, - 0.025154, - 0.002941, - -0.044424, - 0.0035052, - 0.059687, - 0.0034323, - 0.034427, - 0.012905, - 0.05089, - 0.0026615, - 0.015026, - -0.046417, - 0.049937, - 0.0071019, - 0.015593, - 0.13433, - 0.074141, - -0.041653, - -0.0013104, - 0.028909, - -0.075083, - 0.028982, - 0.031127, - 0.0024613, - -0.026556, - 0.00012214, - -0.036396, - -0.060939, - -0.020623, - 0.017422, - 0.00075858, - -0.015735, - -0.032861, - -0.0091797, - -0.044263, - -0.003213, - 0.076874, - 0.013355, - 0.012137, - -0.033637, - -0.0083548, - -0.036912, - 0.00051887, - 0.05226, - 0.0073765, - -0.052824, - -0.063732, - 0.033532, - 0.030675, - 0.051626, - 0.050251, - 0.13296, - -0.054585, - 0.048614, - 0.048908, - -0.050899, - -0.028739, - -0.02992, - 0.052057, - 0.017126, - 0.026791, - 0.023885, - 0.011984, - 0.0078112, - 0.034073, - -0.045966, - -0.035388, - 0.017802, - 0.045632, - 0.040967, - 0.017231, - 0.01237, - -0.061486, - 0.012271, - -0.088608, - 0.026334, - -0.042252, - 0.0057508, - -0.061691, - 0.059936, - 0.097026, - 0.012304, - 0.0077123, - 0.018308, - 0.035648, - -0.026599, - -0.03972, - 0.026341, - -0.023324, - -0.030648, - -0.0017394, - -0.024621, - -0.032922, - -0.18507, - 0.071227, - 0.039411, - -0.027001, - -0.039198, - 0.028593, - 0.015661, - -0.053699, - 0.044138, - 0.0053795, - 0.077784, - 0.019808, - 0.022284, - 0.020606, - 0.029211, - 0.035924, - -0.017662, - -0.049254, - -0.036527, - -0.03763, - 0.020898, - -0.035927, - -0.022023, - 0.079957, - 0.036534, - -0.068135, - 0.045765, - 0.012648, - 0.036162, - -0.072921, - -0.0063093, - -0.051843, - -0.07399, - 0.0064784, - 0.040774, - 0.049396, - 0.023516, - -0.035958, - -0.025312, - -0.048976, - 0.032851, - 0.0057154, - -0.039699, - -0.020292, - -0.0070223, - 0.0071342, - -0.028249, - -0.026504, - 0.040209, - 0.034911, - -0.023809, - 0.027455, - 0.015058, - -0.021239, - 0.022967, - 0.019108, - -0.019944, - 0.019992, - 0.087147, - -0.011436, - 0.032861, - -0.008385, - 0.0010796, - -0.0034591, - 0.030036, - 0.02936, - -0.014468, - 0.0063706, - 0.051402, - 0.0056932, - 0.03125, - 0.059435, - -0.099957, - -0.0072178, - -0.020238, - 0.0040246, - -0.049888, - 0.036947, - 0.054373, - 0.024194, - 0.059042, - 0.027275, - 0.080598, - -0.040302, - 0.029507, - 0.061574, - -0.030059, - 0.024377, - 0.007103, - 0.018077, - 0.037573, - -0.039594, - 0.021827, - -0.012382, - -0.02685, - 0.041886, - 0.10263, - 0.088692, - -0.0091406, - 0.012188 - ], - "town": [ - 0.013229, - -0.092778, - 0.014684, - 0.049873, - -0.048892, - -0.09926, - 0.040575, - -0.14703, - 0.0027684, - 0.034658, - -0.049215, - -0.16607, - -0.020811, - 0.054432, - -0.033537, - 0.04664, - 0.20257, - -0.053952, - 0.053073, - 0.046988, - 0.055067, - -0.11162, - -0.0077852, - 0.11901, - 0.083846, - -0.039917, - -0.011962, - 0.041437, - -0.084886, - 0.086264, - -0.05474, - 0.072176, - -0.016008, - -0.0036159, - -0.10073, - 0.079289, - 0.076278, - 0.014779, - -0.02307, - -0.01432, - 0.044605, - -0.17486, - 0.0017799, - -0.0079024, - 0.10797, - -0.022275, - -0.016723, - 0.041956, - -0.06207, - 0.12147, - 0.074625, - -0.045356, - -0.025823, - -0.030988, - -0.102, - 0.023669, - 0.032995, - 0.0099278, - -0.08471, - -0.052519, - -0.031494, - 0.000022253, - 0.17705, - 0.09533, - 0.096242, - 0.014635, - -0.06916, - -0.0097296, - -0.0073074, - -0.065367, - 0.040674, - -0.085876, - -0.036258, - -0.046481, - -0.019223, - 0.016763, - 0.012363, - -0.021875, - 0.032857, - 0.025391, - -0.011471, - 0.093988, - -0.035201, - 0.0099372, - -0.10764, - 0.0038701, - -0.073993, - -0.12088, - 0.032919, - -0.045321, - -0.016359, - 0.063209, - -0.13092, - 0.026572, - 0.019222, - 0.1323, - -0.039362, - 0.044528, - 0.069616, - 0.048911, - 0.10624, - 0.020784, - -0.017034, - -0.0057488, - 0.054402, - -0.16022, - 0.07154, - -0.0058666, - 0.057152, - 0.0028794, - -0.04912, - 0.17633, - 0.10622, - 0.068211, - -0.0058887, - 0.020746, - -0.01758, - -0.046278, - -0.011501, - -0.0010433, - -0.070636, - -0.038058, - -0.015456, - -0.020875, - -0.056392, - -0.0061368, - -0.024277, - -0.20776, - -0.043005, - 0.053699, - 0.020117, - 0.04385, - -0.029573, - -0.015173, - 0.052397, - 0.032339, - 0.081657, - 0.041394, - -0.06594, - -0.053948, - -0.036237, - -0.084761, - 0.016395, - 0.042966, - -0.0035272, - 0.081141, - 0.05206, - 0.0094544, - -0.052797, - -0.051543, - 0.020119, - 0.039751, - 0.033449, - -0.069553, - 0.070099, - -0.001932, - 0.063065, - 0.096177, - -0.063803, - -0.0051572, - 0.015559, - -0.041278, - 0.019572, - -0.0049721, - -0.014256, - 0.017416, - 0.077084, - -0.028907, - 0.057892, - 0.11513, - 0.0095867, - -0.036842, - -0.01162, - 0.0476, - 0.11531, - 0.068587, - 0.020927, - 0.021715, - 0.01209, - -0.026648, - -0.014876, - -0.050184, - 0.025809, - -0.050843, - -0.045839, - -0.012758, - 0.040306, - 0.1441, - 0.031165, - -0.094221, - -0.04748, - 0.10603, - -0.063255, - 0.088776, - 0.07649, - 0.00413, - 0.012245, - 0.040897, - 0.046196, - 0.059559, - -0.229, - 0.046073, - 0.020339, - 0.031778, - 0.032789, - 0.046311, - -0.084042, - 0.060899, - -0.039938, - -0.028583, - 0.12871, - -0.1174, - 0.0043504, - 0.031756, - 0.019521, - -0.025338, - -0.051484, - 0.025215, - 0.12653, - -0.061606, - 0.11604, - -0.11598, - -0.01426, - 0.13546, - -0.07535, - 0.058822, - -0.033083, - 0.047989, - -0.0057751, - -0.080942, - -0.024435, - -0.065969, - -0.10322, - 0.058648, - -0.048584, - 0.0027409, - 0.022928, - 0.058204, - 0.027008, - -0.038161, - 0.066748, - 0.018304, - -0.014897, - 0.018401, - 0.026364, - -0.050012, - -0.048497, - 0.083322, - -0.036832, - -0.047682, - 0.03475, - -0.073242, - -0.0063783, - -0.14761, - -0.025749, - -0.032367, - -0.037352, - 0.064306, - 0.010599, - 0.045982, - 0.026485, - 0.016249, - 0.016639, - -0.042518, - -0.017313, - -0.04103, - -0.061198, - 0.00696, - -0.026701, - 0.019953, - -0.045475, - 0.10179, - -0.12212, - 0.0047948, - 0.1071, - -0.0030005, - 0.006435, - -0.032514, - -0.029661, - -0.033897, - 0.047367, - 0.0045471, - -0.057036, - 0.010541, - -0.0044054, - 0.11883, - 0.11548, - -0.094344, - 0.032706, - 0.070923, - 0.085725, - 0.099318, - 0.017365, - 0.029516, - 0.03501, - 0.036277, - 0.042324, - 0.044539, - -0.10073, - -0.054833 - ], - "constitutionality": [ - 0.018402, - 0.025745, - -0.00040848, - 0.031064, - -0.024415, - 0.015263, - 0.044705, - -0.046295, - 0.0081604, - 0.032359, - 0.043484, - -0.039623, - 0.015561, - 0.01446, - 0.0089324, - 0.038426, - 0.038565, - -0.0037888, - 0.012086, - 0.011487, - 0.015078, - -0.0095115, - 0.045565, - 0.031369, - 0.038003, - 0.046254, - 0.015935, - -0.015956, - 0.028447, - 0.009275, - 0.023751, - -0.045198, - -0.03139, - -0.024228, - -0.023871, - 0.039115, - 0.05471, - -0.019368, - -0.0043461, - 0.030188, - 0.021102, - -0.059567, - 0.0061796, - 0.026969, - 0.0084549, - -0.0074514, - -0.027544, - 0.039679, - 0.0053189, - 0.013581, - 0.011325, - 0.013122, - 0.035856, - 0.048271, - -0.034606, - -0.034754, - -0.023994, - -0.025362, - 0.0098738, - 0.017082, - -0.014621, - 0.011927, - 0.026374, - 0.0046869, - 0.01625, - -0.026352, - -0.00085263, - 0.0043862, - -0.0060187, - 0.026442, - 0.038215, - -0.0072922, - -0.036004, - -0.014876, - 0.010118, - -0.021067, - -0.0032177, - -0.0068205, - -0.030594, - 0.025375, - -0.00091537, - -0.0022799, - 0.025775, - 0.013249, - 0.0016936, - 0.017464, - -0.016715, - -0.0086822, - 0.0030633, - 0.04566, - 0.0010488, - -0.023099, - -0.058188, - 0.0093808, - -0.002412, - -0.0089968, - -0.01327, - -0.035715, - -0.011637, - 0.028843, - -0.0016088, - -0.0077286, - 0.016041, - -0.013434, - -0.033851, - -0.013766, - 0.042156, - 0.010721, - -0.006737, - -0.0028719, - 0.023167, - 0.047581, - 0.054334, - -0.026958, - -0.007393, - 0.053027, - 0.032189, - 0.0047275, - -0.021275, - 0.054678, - 0.0061398, - 0.025217, - 0.018871, - -0.0041113, - 0.026937, - 0.041865, - 0.029111, - -0.048948, - 0.0053869, - 0.065806, - 0.0019966, - -0.047108, - 0.008819, - 0.022418, - -0.0017555, - 0.0032604, - 0.023698, - 0.0006522, - 0.0065331, - -0.0076936, - 0.03426, - -0.050669, - -0.022022, - 0.031312, - -0.031983, - -0.03047, - -0.01763, - 0.022474, - -0.020585, - 0.014422, - 0.019994, - 0.025545, - 0.033118, - -0.037416, - 0.0089167, - 0.025863, - -0.013432, - -0.05408, - 0.004031, - 0.010182, - 0.034981, - 0.038858, - -0.057562, - 0.02705, - 0.0091919, - 0.0011493, - 0.032096, - 0.0061412, - -0.0071321, - -0.033153, - 0.0077696, - -0.0086948, - -0.010133, - -0.0028787, - -0.010422, - 0.028401, - -0.012841, - -0.0020498, - -0.024558, - -0.039389, - 0.0066822, - -0.019785, - 0.0049369, - -0.010487, - 0.031904, - -0.02066, - 0.028443, - 0.071754, - 0.027038, - -0.029405, - 0.022749, - 0.028435, - -0.029344, - -0.039251, - 0.049153, - 0.0067802, - 0.032478, - -0.012496, - -0.014241, - -0.032446, - -0.10418, - 0.0086995, - 0.02408, - -0.033627, - -0.02178, - -0.033519, - 0.040129, - -0.0082327, - -0.010635, - 0.0033235, - 0.031944, - 0.0037333, - 0.015446, - 0.039318, - 0.030693, - 0.031016, - 0.028892, - -0.013505, - -0.036964, - -0.068328, - -0.0013465, - 0.0050058, - 0.0012204, - 0.046822, - 0.017309, - 0.011299, - 0.014709, - 0.01283, - -0.031342, - -0.052553, - -0.0002934, - -0.022333, - -0.055514, - -0.0054585, - 0.017976, - -0.027884, - -0.014845, - 0.0026965, - -0.00015544, - 0.010645, - 0.0099932, - -0.039193, - -0.0039956, - -0.00047526, - -0.026971, - 0.023159, - -0.022804, - -0.041934, - -0.037571, - -0.015987, - -0.010167, - -0.0037693, - -0.0069873, - -0.015271, - 0.0017286, - 0.0032577, - -0.037105, - 0.014185, - -0.048384, - -0.017043, - 0.0065999, - -0.00049647, - -0.006538, - -0.0072709, - 0.0063363, - 0.0096019, - 0.037342, - 0.029025, - -0.019224, - -0.0095023, - 0.016697, - 0.045244, - -0.037555, - -0.015084, - 0.02866, - -0.030025, - -0.020011, - 0.016418, - -0.021631, - -0.036248, - 0.051565, - -0.011925, - 0.00054452, - -0.013676, - 0.029904, - 0.0028674, - 0.0011769, - 0.035997, - 0.00052816, - -0.008736, - -0.010865, - -0.031116, - 0.026841, - 0.0083622, - 0.012971, - -0.0014651, - -0.079931, - -0.041489, - -0.018809, - -0.0065383 - ], - "neuroscience": [ - -0.036148, - -0.06455, - -0.029143, - -0.010213, - -0.01532, - -0.045289, - 0.010172, - -0.072649, - 0.015228, - -0.032182, - -0.010349, - -0.040707, - 0.054813, - -0.024001, - -0.017436, - 0.000154, - 0.093851, - 0.023415, - 0.028905, - -0.018669, - 0.0094848, - 0.016107, - 0.059423, - 0.060235, - -0.01367, - -0.025225, - -0.016216, - 0.052474, - -0.0017657, - 0.015937, - 0.021487, - 0.010577, - 0.0071553, - -0.027034, - 0.027674, - 0.048295, - 0.030514, - -0.051143, - 0.04117, - -0.0063532, - -0.094022, - -0.081235, - -0.035432, - 0.0061036, - 0.059003, - -0.012216, - -0.0043643, - 0.026036, - 0.0048692, - 0.02417, - -0.005953, - 0.055618, - 0.0069972, - 0.033275, - -0.018974, - -0.0034911, - -0.031212, - -0.0014854, - 0.019955, - 0.04493, - -0.01257, - -0.026525, - 0.052378, - 0.07742, - 0.02881, - 0.011876, - 0.03913, - 0.0073979, - -0.084162, - 0.022701, - -0.028498, - 0.017598, - 0.016706, - -0.000010733, - -0.026506, - -0.0053781, - 0.0074279, - -0.020057, - 0.01824, - 0.00053267, - -0.021039, - 0.042367, - -0.04894, - 0.023264, - -0.035654, - 0.0063434, - 0.052485, - -0.0040912, - 0.028712, - 0.04073, - 0.04497, - 0.029254, - -0.077078, - 0.016977, - 0.019002, - 0.062247, - 0.019251, - -0.018164, - -0.013846, - 0.043911, - 0.0089262, - 0.019007, - -0.024899, - -0.0018124, - -0.0040785, - -0.038282, - -0.011376, - 0.017589, - 0.0020713, - -0.034323, - -0.057655, - 0.060627, - 0.042947, - -0.0037959, - 0.050098, - 0.0041982, - 0.0029157, - -0.032926, - -0.03431, - 0.04909, - 0.015303, - -0.0064025, - -0.021904, - -0.029392, - 0.032518, - 0.03758, - -0.056044, - -0.05018, - 0.026906, - 0.087919, - -0.0068611, - 0.030122, - -0.003638, - 0.021921, - 0.043731, - -0.0083644, - 0.015682, - 0.0075261, - -0.023053, - -0.010507, - 0.034969, - 0.013832, - 0.018957, - 0.034078, - -0.017553, - -0.082784, - -0.0033848, - -0.00058674, - 0.011412, - 0.010742, - 0.053683, - 0.037164, - 0.04993, - -0.072797, - 0.0039486, - 0.056504, - 0.018098, - 0.030639, - 0.062424, - 0.017112, - 0.01551, - -0.025961, - -0.053532, - -0.03281, - -0.02531, - -0.014736, - -0.061402, - -0.022084, - -0.025891, - -0.045555, - 0.032844, - -0.017398, - 0.029937, - 0.00071589, - 0.066149, - 0.032008, - -0.0062552, - -0.019342, - -0.024704, - -0.083817, - -0.023924, - 0.0044938, - -0.029585, - -0.027999, - 0.031545, - -0.0067292, - 0.0094173, - 0.063735, - 0.015296, - 0.076312, - 0.031941, - 0.082403, - -0.025477, - 0.013372, - 0.021587, - 0.0090348, - -0.059208, - 0.069629, - -0.018181, - -0.039174, - -0.10099, - -0.01096, - -0.020924, - -0.0010909, - -0.011429, - -0.0011399, - -0.003804, - -0.063872, - -0.020806, - 0.0027882, - 0.09215, - 0.009148, - -0.02198, - -0.02693, - 0.015807, - 0.032233, - 0.013128, - 0.014612, - -0.021711, - -0.040585, - -0.097534, - 0.017053, - -0.041147, - 0.053277, - -0.013184, - -0.027046, - 0.015704, - 0.1005, - -0.012245, - -0.054402, - -0.04444, - -0.033159, - -0.012937, - -0.024726, - 0.012433, - -0.011911, - 0.000964, - 0.039808, - -0.020595, - 0.013938, - 0.019074, - -0.016291, - -0.02799, - 0.0057064, - 0.017302, - -0.051378, - -0.0079198, - -0.010112, - 0.034348, - 0.028945, - 0.036414, - 0.0089682, - -0.027488, - -0.10082, - 0.00073927, - 0.0050337, - 0.019323, - 0.02366, - 0.051971, - 0.032056, - 0.031286, - 0.037289, - 0.075564, - 0.007428, - 0.0023674, - 0.0074385, - 0.0099994, - 0.0323, - 0.099922, - 0.043866, - 0.031823, - 0.051968, - -0.081159, - -0.00061101, - -0.019095, - -0.0081336, - -0.0080085, - 0.057444, - 0.015065, - 0.009293, - 0.057622, - -0.014713, - -0.043941, - -0.069873, - -0.042152, - -0.056455, - -0.043564, - -0.020502, - -0.052615, - -0.019856, - -0.028135, - 0.016935, - -0.018951, - -0.058442, - -0.021506, - 0.0026248, - -0.003695, - 0.05344, - -0.048997, - 0.046368 - ], - "catholicism": [ - 0.064027, - -0.032477, - 0.07703, - -0.069008, - -0.0014027, - 0.027866, - 0.0095688, - -0.074775, - 0.021421, - -0.029169, - -0.0040101, - -0.053013, - 0.045062, - -0.1091, - 0.016581, - 0.0012549, - 0.10525, - 0.023061, - 0.024739, - -0.027687, - -0.060533, - -0.0035508, - 0.024206, - 0.025336, - 0.025501, - 0.005768, - 0.028682, - 0.013587, - 0.05538, - 0.059638, - 0.039476, - 0.022781, - -0.053029, - -0.023561, - 0.018082, - 0.044777, - 0.012546, - 0.010607, - -0.0022402, - 0.030185, - 0.017568, - -0.082011, - 0.061301, - -0.015574, - 0.034963, - -0.0036222, - -0.0017914, - 0.007732, - 0.027162, - -0.01025, - 0.016131, - -0.027525, - 0.011233, - 0.0040279, - -0.020424, - 0.01561, - 0.019579, - -0.023994, - -0.04689, - 0.025611, - 0.0094416, - 0.02691, - 0.041006, - -0.04521, - -0.018806, - 0.015707, - 0.0034425, - 0.0085342, - 0.10134, - -0.049709, - 0.010212, - 0.020158, - 0.0096783, - 0.035542, - -0.0022087, - -0.036754, - 0.007195, - 0.02464, - 0.019018, - 0.085837, - 0.016884, - 0.033165, - -0.054399, - 0.084909, - -0.03521, - 0.0021902, - 0.014195, - 0.01104, - -0.034716, - 0.012207, - -0.036543, - 0.032523, - -0.060466, - 0.045, - 0.016491, - 0.030067, - -0.0081178, - -0.040024, - -0.0035679, - -0.028348, - -0.022215, - 0.01035, - 0.022274, - -0.051169, - -0.0031836, - -0.03207, - 0.063266, - -0.023279, - -0.052196, - 0.045347, - 0.014461, - 0.076128, - 0.040802, - -0.047228, - 0.021212, - 0.034234, - 0.031692, - 0.069097, - -0.039823, - 0.041669, - 0.017589, - -0.020195, - -0.048392, - -0.026914, - 0.067551, - 0.0020567, - -0.030784, - 0.015625, - -0.03143, - 0.071924, - 0.01093, - -0.0070615, - 0.020079, - -0.061244, - -0.050549, - 0.019121, - 0.0012122, - 0.055831, - 0.041102, - -0.092403, - -0.0038425, - 0.0077686, - 0.0050626, - 0.05628, - -0.023358, - 0.0016503, - 0.0064686, - -0.027508, - -0.031196, - -0.041294, - 0.014818, - 0.064875, - -0.00179, - -0.007855, - -0.0099482, - 0.036359, - -0.0044236, - -0.051691, - 0.0336, - 0.020806, - 0.041644, - 0.021341, - -0.075867, - -0.12503, - 0.028575, - 0.028517, - 0.056359, - 0.01947, - -0.017172, - -0.0092245, - -0.039667, - -0.025889, - -0.033074, - -0.024325, - 0.0174, - 0.033262, - 0.028259, - -0.0021965, - 0.016099, - -0.051964, - -0.0032194, - -0.030804, - -0.047828, - 0.017857, - 0.063352, - -0.032824, - 0.054663, - 0.064141, - -0.021729, - -0.12565, - 0.027106, - 0.087448, - -0.07352, - 0.020209, - 0.070209, - -0.026312, - -0.090907, - -0.0010367, - -0.034442, - 0.056928, - -0.13734, - -0.023509, - -0.00075314, - -0.054296, - -0.0067503, - 0.044363, - 0.068563, - -0.011359, - 0.014224, - 0.0063172, - 0.086557, - -0.012191, - -0.013476, - -0.0087488, - 0.088875, - 0.0724, - -0.005048, - 0.016896, - 0.013469, - -0.05792, - -0.023589, - -0.00017996, - -0.0029812, - 0.066022, - 0.032964, - -0.0077174, - 0.045822, - 0.086646, - 0.010183, - -0.031677, - 0.0094863, - -0.022186, - -0.051695, - -0.042142, - 0.052752, - 0.0045368, - -0.029718, - -0.018778, - 0.026205, - 0.0034534, - 0.03473, - -0.019415, - -0.011651, - -0.024121, - -0.00019759, - 0.033002, - 0.033453, - -0.037603, - -0.040815, - 0.0083011, - 0.066921, - -0.0091998, - -0.070305, - 0.011851, - 0.014256, - -0.021667, - 0.010489, - -0.0016522, - 0.049399, - 0.00166, - 0.010537, - 0.022176, - 0.10323, - -0.021343, - 0.029309, - -0.066136, - -0.025782, - 0.012426, - 0.023279, - 0.0033337, - 0.0084285, - 0.073898, - -0.060206, - -0.030033, - -0.039858, - -0.012679, - -0.0070895, - -0.035502, - -0.05132, - 0.023157, - 0.092913, - 0.02693, - 0.018054, - -0.01767, - -0.019954, - 0.01337, - 0.083272, - 0.0021522, - -0.015162, - 0.054415, - -0.017351, - 0.046321, - -0.012983, - 0.025278, - -0.027891, - 0.0050111, - -0.017265, - 0.054547, - 0.012966, - -0.019 - ], - "astronomy": [ - -0.039796, - -0.067553, - -0.025786, - -0.048464, - 0.015071, - -0.083097, - 0.026779, - -0.084846, - 0.078001, - 0.044627, - 0.010379, - -0.047566, - 0.045798, - 0.012939, - -0.018413, - 0.00084015, - 0.097986, - 0.011251, - 0.01381, - 0.016669, - -0.0034607, - 0.032161, - 0.022353, - 0.055348, - -0.006255, - 0.019753, - 0.0010343, - -0.045103, - -0.0088464, - -0.0040307, - 0.021483, - 0.01949, - 0.045138, - -0.038337, - 0.067576, - 0.035337, - 0.011829, - -0.030997, - -0.0073335, - -0.027292, - -0.096046, - -0.11044, - -0.025738, - 0.0072853, - -0.031722, - -0.043615, - -0.088234, - -0.064237, - -0.01684, - 0.033636, - -0.056048, - 0.013099, - 0.023703, - 0.031812, - -0.028779, - 0.018549, - -0.012392, - 0.012707, - -0.010537, - 0.012793, - 0.075786, - 0.01679, - 0.053443, - 0.0061654, - 0.0043502, - 0.038237, - -0.051591, - 0.024204, - 0.044374, - 0.0068467, - 0.0099148, - -0.045158, - 0.040735, - -0.0031623, - 0.023594, - 0.02802, - 0.011455, - 0.001965, - 0.032082, - 0.028265, - -0.02652, - 0.026535, - -0.10938, - 0.023973, - -0.070817, - 0.039214, - 0.066694, - -0.018999, - -0.03187, - -0.060933, - 0.057241, - 0.088942, - -0.071233, - 0.019165, - 0.011265, - 0.0711, - -0.037876, - 0.033423, - -0.03033, - -0.027972, - 0.0004213, - 0.018315, - 0.01945, - -0.065366, - -0.020209, - -0.040545, - 0.059507, - 0.10478, - 0.076879, - -0.016123, - -0.012019, - 0.12827, - 0.012406, - 0.056592, - 0.035328, - 0.021446, - -0.021416, - -0.0027287, - -0.017935, - -0.025825, - -0.054806, - 0.04354, - -0.14142, - -0.046507, - 0.030894, - -0.00051032, - -0.068119, - -0.058255, - -0.025053, - 0.10353, - -0.01444, - 0.020108, - -0.059724, - 0.059137, - 0.0082275, - -0.037678, - 0.01122, - -0.020979, - 0.03112, - -0.023022, - 0.060723, - -0.029432, - -0.016981, - -0.0026379, - -0.017084, - -0.042335, - -0.059591, - 0.006251, - -0.087452, - -0.038434, - 0.07784, - 0.040576, - -0.052195, - -0.047853, - 0.043593, - 0.060754, - 0.013529, - 0.081543, - 0.0065603, - -0.013445, - 0.0013579, - 0.013789, - -0.06795, - 0.030316, - -0.012401, - 0.028064, - -0.043011, - -0.056236, - 0.023492, - 0.054595, - 0.0034424, - -0.095631, - 0.022327, - 0.022989, - 0.054647, - 0.055654, - -0.030802, - 0.065823, - -0.045345, - 0.015113, - -0.029473, - 0.04914, - 0.015639, - 0.0088469, - 0.008871, - -0.011191, - 0.088672, - 0.12678, - 0.0158, - 0.043001, - -0.010955, - 0.07737, - -0.036898, - -0.07409, - -0.022922, - -0.026591, - -0.10546, - 0.0067475, - -0.010513, - -0.0089795, - -0.11214, - -0.008823, - 0.011291, - -0.020808, - 0.032128, - 0.03835, - 0.031494, - 0.011923, - -0.061108, - -0.0062731, - 0.085577, - 0.02567, - 0.024996, - -0.062717, - 0.0058614, - 0.031067, - -0.037029, - 0.0012699, - -0.046557, - -0.013097, - 0.055448, - 0.065277, - -0.0040712, - 0.073377, - -0.051315, - 0.086016, - 0.028998, - 0.096184, - 0.0058256, - -0.02668, - -0.028433, - -0.022231, - -0.038548, - 0.034657, - 0.018572, - 0.030002, - 0.0215, - 0.035599, - -0.098474, - -0.045886, - 0.029229, - -0.088559, - 0.0023503, - -0.026064, - 0.028328, - 0.054576, - -0.06652, - -0.042304, - -0.022279, - 0.029786, - 0.05674, - 0.022943, - -0.024029, - -0.018436, - 0.020456, - -0.045164, - -0.079863, - 0.020258, - -0.04051, - 0.070825, - 0.056152, - 0.018875, - 0.021809, - 0.0066851, - 0.013663, - -0.040365, - -0.013558, - 0.018771, - 0.099645, - -0.003832, - 0.028789, - 0.064176, - -0.07262, - -0.017852, - -0.010492, - -0.011134, - -0.063584, - -0.041875, - 0.012393, - -0.055048, - 0.08477, - -0.047943, - 0.0074345, - -0.070917, - -0.037497, - -0.083305, - -0.053877, - -0.018442, - -0.016402, - 0.014741, - 0.0068237, - -0.0006223, - -0.051822, - -0.043013, - 0.081234, - 0.089823, - -0.025883, - 0.044547, - 0.040777, - 0.034934 - ], - "amphetamine": [ - -0.0077258, - -0.0064631, - -0.0068064, - 0.052367, - 0.0082048, - -0.003918, - -0.012274, - -0.075723, - -0.0014848, - 0.030064, - -0.029292, - -0.033163, - -0.0062271, - 0.0080529, - 0.057235, - 0.025889, - 0.039879, - 0.0078581, - 0.0062301, - -0.011349, - 0.067663, - 0.042139, - 0.034905, - 0.020007, - 0.024381, - 0.0000011557, - 0.010591, - -0.015439, - 0.043667, - 0.030029, - 0.021126, - 0.045897, - 0.044206, - 0.011462, - 0.020534, - 0.028797, - -0.013998, - -0.015053, - -0.014051, - 0.027725, - 0.022357, - -0.058087, - 0.00074081, - 0.0083101, - 0.063083, - 0.037633, - 0.013057, - 0.070687, - -0.022222, - 0.052437, - -0.01707, - 0.034639, - 0.073419, - -0.016019, - -0.045129, - -0.0099191, - 0.0014348, - -0.072444, - -0.041464, - 0.013671, - 0.010944, - -0.01067, - 0.048693, - 0.048993, - -0.046827, - -0.017634, - 0.094942, - -0.060833, - -0.020255, - -0.019173, - 0.039402, - 0.053974, - 0.049629, - -0.090638, - -0.029138, - -0.015732, - -0.012923, - -0.0084072, - -0.033211, - -0.006879, - 0.0028928, - -0.035987, - -0.036293, - -0.0064752, - -0.014043, - 0.016154, - 0.064437, - -0.0029665, - 0.095054, - 0.02358, - 0.03046, - 0.058945, - -0.056442, - -0.021128, - -0.0086182, - 0.049952, - -0.019277, - -0.05036, - 0.052246, - 0.058461, - 0.012248, - 0.012767, - -0.042221, - 0.038436, - 0.023336, - -0.039134, - -0.036347, - -0.025814, - 0.0088916, - 0.046536, - 0.024424, - 0.057938, - 0.05286, - -0.021377, - -0.048238, - -0.026524, - 0.036396, - -0.03966, - -0.047127, - 0.014791, - 0.063098, - 0.023156, - -0.015932, - -0.11869, - 0.054077, - 0.047803, - -0.048268, - -0.020259, - 0.0096739, - 0.044255, - 0.0045254, - -0.033953, - -0.039006, - -0.037563, - 0.038476, - -0.056087, - -0.071374, - -0.00067173, - 0.023707, - -0.023487, - 0.065514, - 0.058385, - -0.00018452, - -0.03859, - 0.015263, - -0.056748, - 0.013417, - -0.071759, - -0.002972, - 0.011062, - -0.015345, - 0.071361, - 0.012516, - 0.016172, - -0.020896, - 0.0092308, - -0.092837, - 0.04895, - 0.030314, - 0.023865, - 0.016139, - 0.03936, - -0.053618, - -0.014549, - -0.0049791, - -0.026861, - 0.077789, - 0.029682, - 0.0055833, - -0.081142, - 0.011766, - -0.022675, - 0.028116, - 0.049294, - 0.037699, - 0.037883, - -0.0069766, - -0.0039307, - -0.0016001, - -0.03399, - 0.045813, - -0.065723, - -0.10316, - -0.016348, - 0.029416, - -0.05253, - 0.050193, - 0.096503, - -0.0073482, - 0.028529, - 0.097794, - 0.011667, - 0.00086512, - -0.015085, - -0.030758, - 0.0078047, - -0.014165, - 0.067784, - 0.0019505, - 0.03036, - -0.092596, - 0.05227, - -0.074988, - 0.0089588, - 0.005128, - 0.024604, - 0.040654, - 0.048743, - -0.02402, - -0.039724, - 0.087819, - 0.0016708, - 0.0041525, - -0.034003, - 0.076252, - 0.022831, - -0.053216, - 0.052387, - 0.023983, - 0.0028988, - -0.024234, - -0.06181, - -0.052221, - 0.080677, - -0.0084856, - 0.049686, - -0.067099, - 0.052169, - 0.047674, - -0.0070677, - -0.032132, - -0.031331, - -0.059108, - -0.025922, - -0.031188, - 0.0027059, - 0.010034, - -0.039933, - -0.028754, - -0.024724, - 0.021648, - 0.055856, - -0.0020737, - -0.056759, - -0.013483, - -0.043555, - -0.02116, - 0.0064031, - 0.071175, - 0.032701, - 0.0078823, - 0.021135, - 0.045126, - -0.0061001, - 0.042775, - -0.0087636, - 0.036833, - 0.047293, - 0.043955, - -0.010252, - 0.024431, - 0.00864, - 0.018403, - 0.012681, - 0.038074, - 0.00045241, - -0.055093, - -0.048789, - -0.012363, - 0.014691, - -0.082637, - 0.063195, - -0.046114, - -0.019806, - -0.026143, - -0.061786, - -0.010289, - 0.051472, - -0.029863, - 0.041238, - 0.068736, - 0.0045835, - -0.078718, - -0.049123, - -0.04061, - 0.0071844, - -0.027208, - 0.054835, - 0.018469, - -0.06235, - -0.01923, - -0.017053, - -0.01289, - -0.026984, - -0.046165, - 0.036206, - 0.060472, - -0.0042531, - 0.031394, - -0.034108 - ], - "meals": [ - -0.038494, - -0.035505, - 0.057103, - -0.080271, - 0.076986, - 0.055321, - -0.069872, - -0.076907, - 0.030089, - 0.058329, - 0.00089754, - -0.037816, - -0.012458, - -0.056628, - -0.00063131, - -0.037711, - 0.063303, - -0.039953, - 0.056153, - 0.022336, - 0.0038094, - 0.054984, - -0.062021, - 0.039384, - -0.050038, - 0.053897, - -0.043154, - 0.0099495, - 0.11651, - -0.042698, - 0.07834, - -0.018275, - -0.021103, - -0.083976, - 0.092441, - 0.077959, - 0.0091365, - 0.13773, - 0.11619, - 0.042283, - -0.10207, - -0.12216, - -0.070811, - 0.076389, - 0.077889, - -0.019767, - 0.055523, - -0.055328, - -0.036499, - 0.049925, - -0.074885, - 0.072871, - 0.093192, - -0.067463, - -0.13575, - 0.047634, - -0.047233, - -0.067768, - -0.02339, - -0.076548, - -0.044467, - -0.026762, - 0.23943, - 0.076619, - 0.021405, - 0.072931, - 0.061308, - -0.055959, - -0.089921, - -0.030669, - 0.022515, - -0.090821, - 0.067145, - -0.048852, - -0.065377, - -0.0069616, - -0.018011, - -0.071445, - -0.047665, - 0.029655, - -0.0053732, - -0.11356, - 0.094052, - 0.073965, - -0.1006, - 0.025061, - -0.017833, - -0.051799, - 0.018803, - -0.015298, - -0.016134, - -0.10141, - -0.10042, - 0.074427, - -0.072576, - 0.075688, - -0.034298, - 0.085956, - 0.075866, - -0.063993, - 0.12054, - 0.059734, - -0.0024754, - -0.004019, - 0.058948, - -0.036637, - -0.098743, - 0.022596, - -0.016543, - 0.060939, - 0.052509, - 0.028088, - 0.10896, - 0.10775, - 0.014103, - -0.091721, - -0.049764, - -0.026951, - -0.067388, - -0.056915, - 0.0074012, - 0.061619, - -0.0056714, - -0.075293, - 0.14363, - -0.10068, - 0.058834, - -0.054981, - 0.040565, - 0.074774, - 0.070309, - 0.059851, - 0.032073, - -0.053368, - -0.025645, - 0.037848, - -0.07901, - 0.036913, - -0.013488, - -0.050137, - 0.080057, - -0.050829, - -0.010773, - -0.050641, - 0.069404, - -0.079773, - 0.056618, - 0.031188, - -0.005543, - 0.024001, - -0.017291, - 0.080469, - -0.035822, - -0.052132, - 0.16066, - -0.034978, - -0.139, - 0.077406, - -0.025018, - -0.057061, - 0.099972, - 0.068513, - 0.030833, - 0.048, - 0.030351, - 0.095732, - -0.054562, - -0.059408, - 0.081098, - -0.004516, - 0.024189, - -0.054536, - 0.012579, - 0.03717, - -0.013531, - 0.065306, - -0.074652, - 0.050804, - -0.033616, - -0.015548, - 0.031923, - -0.032636, - 0.039677, - -0.097659, - -0.0055767, - -0.023444, - 0.052163, - 0.17698, - 0.021111, - -0.10968, - 0.063875, - 0.008486, - -0.055184, - -0.038489, - 0.037637, - 0.010261, - -0.059497, - -0.026926, - 0.020363, - -0.027034, - -0.16383, - 0.1208, - 0.024792, - -0.022853, - -0.0084993, - 0.0067482, - -0.11482, - -0.037062, - -0.0075761, - -0.080055, - 0.13382, - 0.00084102, - 0.092926, - 0.062497, - 0.014343, - 0.047245, - -0.0015322, - 0.056442, - -0.079455, - -0.1004, - 0.017659, - 0.005033, - -0.02261, - 0.094951, - 0.071385, - 0.033477, - 0.018415, - 0.032168, - -0.047098, - 0.071613, - -0.071226, - -0.056469, - -0.067624, - -0.021516, - 0.054395, - 0.063895, - -0.053389, - -0.017346, - -0.038161, - -0.032394, - -0.020614, - -0.050069, - 0.0027813, - -0.088254, - -0.01624, - 0.15211, - 0.1061, - -0.056424, - 0.042583, - -0.0084594, - 0.0018059, - -0.011641, - -0.11756, - -0.0084591, - -0.045018, - -0.042277, - 0.00048347, - -0.04054, - -0.078044, - 0.12187, - 0.027199, - -0.01864, - -0.021341, - -0.087147, - 0.11967, - 0.057566, - 0.0098745, - -0.062419, - -0.0641, - 0.093846, - 0.011418, - 0.077756, - -0.13584, - -0.079607, - -0.13587, - -0.0036167, - -0.023068, - -0.049094, - 0.023827, - 0.13176, - 0.044732, - 0.0064555, - 0.031558, - 0.019161, - 0.011176, - 0.091989, - -0.050055, - 0.085045, - 0.0064912, - -0.0058833, - 0.14052, - 0.051038, - -0.0869, - -0.077076, - 0.012137, - 0.045989, - 0.044801, - 0.11036, - -0.038218, - 0.0098041 - ], - "structure": [ - 0.034721, - -0.0042773, - -0.015545, - -0.0035151, - -0.01701, - -0.043556, - 0.018098, - -0.085821, - -0.024737, - 0.0061956, - 0.052718, - -0.043712, - 0.020797, - 0.065833, - -0.011242, - 0.01692, - 0.089141, - 0.05827, - 0.062011, - 0.030428, - 0.0092001, - -0.0068029, - 0.037897, - 0.06569, - 0.034029, - -0.023532, - -0.027857, - -0.0011763, - 0.011915, - -0.003118, - -0.011647, - 0.0046506, - 0.010188, - -0.061055, - -0.00045925, - 0.0092656, - 0.015909, - 0.0041684, - -0.0045865, - -0.021874, - 0.0084053, - -0.14731, - 0.027938, - -0.028532, - -0.035913, - -0.01631, - -0.013999, - -0.025773, - 0.0033767, - 0.0097282, - -0.0013148, - -0.031167, - 0.025884, - 0.029777, - -0.051547, - -0.0087184, - 0.015063, - -0.0031129, - -0.032514, - 0.019881, - 0.010651, - 0.023206, - 0.11923, - 0.030774, - 0.069803, - 0.003432, - 0.044225, - 0.022976, - 0.023909, - 0.035206, - 0.0035229, - -0.024786, - -0.038831, - -0.027172, - 0.053968, - -0.071116, - -0.039742, - -0.023843, - -0.038759, - -0.0042802, - -0.02237, - -0.022283, - -0.027297, - 0.046778, - 0.0099665, - -0.00060384, - 0.0452, - -0.054034, - 0.013881, - 0.059315, - 0.034093, - 0.0043841, - -0.076246, - 0.010834, - -0.02414, - 0.038629, - 0.014432, - 0.010763, - 0.069517, - 0.02345, - 0.045858, - 0.015415, - 0.0068701, - 0.015228, - -0.033959, - -0.0597, - 0.016767, - -0.01059, - 0.016122, - 0.018121, - 0.007324, - 0.048024, - 0.061621, - 0.0015648, - -0.015653, - -0.025314, - -0.010326, - -0.0073053, - -0.050596, - 0.064525, - 0.025136, - -0.047121, - 0.0085809, - 0.0058273, - 0.069684, - 0.022393, - -0.0049091, - -0.082763, - 0.050849, - 0.093053, - -0.022303, - -0.053856, - 0.036053, - 0.012051, - -0.031092, - 0.0080399, - -0.043289, - 0.030368, - 0.024296, - 0.013662, - -0.0016988, - -0.0010015, - -0.014748, - 0.023199, - 0.0021145, - -0.072858, - 0.036394, - 0.005037, - 0.023652, - 0.011818, - 0.025902, - 0.051242, - 0.050569, - -0.077837, - 0.022221, - 0.039542, - -0.017445, - 0.0079872, - 0.0074578, - 0.0005483, - 0.016471, - -0.013438, - -0.074741, - -0.0028431, - 0.03208, - 0.030665, - 0.019727, - 0.04177, - -0.0083049, - 0.010198, - 0.0045354, - 0.0024118, - -0.011616, - -0.0049459, - -0.00056192, - 0.05002, - -0.02591, - 0.045655, - -0.046339, - -0.01318, - -0.042239, - 0.003119, - 0.0093752, - 0.02026, - -0.012178, - -0.043037, - 0.014948, - 0.072411, - 0.033445, - -0.026583, - 0.024871, - 0.033998, - -0.014278, - -0.0030955, - -0.034738, - -0.013425, - -0.063587, - 0.012501, - 0.0062588, - -0.0099868, - -0.14008, - 0.003853, - 0.019497, - -0.0047316, - 0.04688, - -0.030516, - 0.025624, - -0.007264, - -0.027655, - -0.0041329, - 0.10341, - -0.012384, - -0.0020685, - 0.013505, - 0.041957, - 0.0066023, - -0.0019675, - 0.086231, - -0.010009, - 0.021078, - -0.023753, - 0.0073268, - -0.007425, - 0.091604, - 0.0098017, - -0.022508, - 0.032507, - 0.037091, - -0.0089815, - 0.0055075, - 0.007785, - -0.06159, - -0.079724, - 0.017705, - -0.0034959, - -0.004642, - 0.014233, - 0.032202, - -0.0062097, - 0.0055146, - 0.050746, - 0.030297, - 0.012561, - 0.031392, - -0.039497, - 0.0048091, - -0.048969, - 0.00045466, - 0.014252, - -0.014093, - -0.025659, - -0.0013624, - -0.0049192, - -0.0079424, - -0.0045655, - 0.036751, - -0.0036932, - 0.052052, - 0.0015395, - 0.019871, - 0.023218, - 0.0073756, - 0.048209, - -0.03146, - 0.02767, - 0.0071274, - -0.023198, - 0.010243, - -0.037944, - -0.0047916, - -0.027918, - 0.085275, - -0.08183, - -0.043574, - 0.015496, - 0.015877, - 0.029759, - -0.033872, - 0.024591, - 0.025666, - 0.061108, - -0.023038, - 0.035931, - 0.035461, - 0.0054979, - -0.026925, - -0.025606, - 0.042107, - -0.035793, - 0.010535, - -0.010048, - 0.063547, - 0.047253, - -0.075153, - 0.033522, - -0.03164, - 0.00028403, - 0.0079926, - 0.0070911, - -0.009193 - ], - "militarized": [ - 0.032985, - 0.020953, - 0.031244, - -0.018013, - -0.024028, - 0.026037, - 0.0073089, - -0.070533, - -0.021371, - 0.079673, - 0.027959, - -0.051869, - -0.031282, - 0.049279, - -0.041413, - 0.034582, - 0.067209, - 0.0007071, - 0.050808, - 0.05931, - 0.037642, - -0.038015, - -0.0006683, - 0.046304, - 0.02292, - 0.043069, - 0.0093617, - -0.039357, - 0.081408, - 0.044807, - -0.013514, - -0.022292, - 0.028428, - 0.011321, - 0.05235, - 0.052123, - 0.044884, - 0.066465, - 0.052607, - 0.016309, - -0.059578, - -0.064412, - 0.018037, - 0.014254, - 0.010432, - -0.03153, - 0.046891, - 0.00055032, - -0.0037827, - -0.023876, - 0.025421, - 0.016734, - 0.0079238, - -0.00067636, - -0.056955, - -0.0070757, - 0.029887, - -0.035744, - -0.027859, - 0.04183, - 0.033395, - -0.025959, - 0.12371, - -0.0082419, - 0.011494, - -0.039667, - 0.011791, - -0.020263, - 0.05137, - 0.014922, - 0.01104, - -0.038727, - 0.045806, - -0.013296, - 0.025235, - -0.030865, - 0.035763, - 0.0035992, - 0.050665, - 0.013423, - 0.05263, - 0.0025694, - -0.062412, - 0.075635, - 0.011959, - -0.0049227, - -0.0033697, - 0.0077136, - -0.015542, - 0.031064, - -0.0026681, - -0.0023286, - -0.050012, - -0.022849, - 0.0086687, - 0.059172, - -0.062616, - -0.12855, - 0.016997, - 0.0040223, - 0.038803, - -0.011102, - 0.046106, - -0.057287, - -0.0028034, - -0.10778, - 0.061371, - -0.018549, - -0.042567, - -0.012055, - -0.0094628, - 0.064964, - 0.033678, - 0.050582, - -0.0056497, - 0.026002, - 0.017584, - 0.02858, - -0.043676, - -0.018581, - -0.069084, - -0.012957, - -0.0066872, - 0.032877, - 0.076071, - 0.017662, - 0.021266, - -0.012565, - 0.027145, - 0.0042994, - -0.050505, - 0.044247, - 0.04877, - 0.028645, - 0.031671, - -0.036978, - -0.0035665, - 0.042285, - -0.010105, - 0.0033696, - -0.0033144, - -0.04611, - -0.017911, - 0.039422, - -0.034865, - 0.058655, - 0.048839, - 0.087624, - 0.011532, - -0.047878, - 0.071416, - 0.035839, - 0.011784, - -0.0042666, - -0.0066581, - 0.048455, - -0.051894, - 0.051548, - -0.015812, - -0.024211, - 0.04744, - -0.03304, - -0.064806, - 0.011532, - -0.048713, - 0.039063, - 0.040628, - -0.0070613, - 0.024872, - -0.056121, - 0.0040721, - -0.031146, - -0.028207, - -0.015844, - -0.056985, - 0.021891, - -0.0204, - 0.0061744, - -0.020186, - 0.011752, - -0.049756, - 0.02539, - -0.0023049, - 0.057192, - 0.010021, - 0.028761, - 0.018878, - 0.057274, - -0.0048079, - -0.0059786, - 0.056641, - 0.0056864, - 0.019442, - 0.019916, - 0.031282, - 0.013244, - 0.0035928, - 0.039757, - -0.039563, - 0.056098, - -0.081423, - -0.01773, - -0.02509, - 0.024723, - -0.0010173, - -0.038757, - -0.01842, - 0.052679, - 0.02075, - -0.036504, - 0.042324, - -0.0012537, - 0.0065187, - 0.03142, - 0.0022367, - 0.0069814, - 0.02254, - -0.020389, - -0.022775, - -0.0082257, - -0.019555, - -0.053763, - -0.045027, - 0.078377, - -0.11241, - 0.025459, - -0.031952, - 0.035689, - 0.025818, - -0.032635, - -0.049934, - -0.018564, - -0.054837, - -0.027193, - -0.01074, - 0.0013034, - -0.028864, - 0.014786, - 0.015847, - -0.069619, - 0.095689, - 0.026267, - 0.018924, - -0.0035375, - -0.10549, - -0.0082519, - -0.0085335, - 0.009579, - 0.0018641, - -0.067271, - -0.0064472, - -0.0059226, - 0.0022663, - 0.005411, - -0.044794, - 0.072026, - 0.055674, - -0.021534, - 0.071734, - -0.043403, - -0.049752, - 0.010975, - 0.013447, - 0.037977, - -0.00080511, - 0.015403, - 0.05088, - -0.010375, - 0.0038574, - 0.014017, - -0.039734, - 0.068335, - -0.074897, - 0.0019608, - -0.043421, - -0.058163, - -0.049249, - -0.0020596, - -0.014975, - -0.0021553, - 0.038378, - 0.0092092, - -0.0088587, - 0.01397, - 0.0032128, - 0.010962, - 0.00112, - -0.092697, - -0.041054, - -0.0073888, - -0.051675, - -0.0087291, - 0.028086, - -0.0094402, - -0.019894, - 0.0033651, - 0.019328, - 0.0348, - -0.031754, - -0.01024 - ], - "pharmacologic": [ - -0.023061, - -0.011237, - -0.032399, - 0.041542, - 0.012879, - -0.017489, - -0.0039629, - -0.0674, - 0.011961, - -0.018179, - 0.022065, - -0.020139, - 0.01587, - -0.025817, - 0.035338, - -0.036741, - 0.047867, - -0.0011997, - 0.039755, - -0.019083, - 0.013229, - 0.011795, - 0.060317, - 0.05957, - -0.014929, - -0.019937, - -0.028594, - -0.023589, - 0.0015938, - 0.039687, - 0.0078707, - -0.059425, - 0.032962, - -0.077973, - 0.052438, - 0.053961, - -0.0087284, - -0.032322, - 0.022042, - 0.035508, - 0.017562, - -0.068474, - 0.030834, - -0.021822, - 0.023771, - -0.036747, - -0.011171, - 0.067736, - -0.0089391, - 0.00016143, - -0.013794, - 0.020498, - -0.0094042, - -0.02181, - 0.035561, - -0.042062, - 0.0015302, - 0.04068, - 0.01533, - 0.034942, - 0.017892, - 0.0028564, - 0.07646, - 0.021005, - -0.0045005, - 0.016691, - 0.037794, - -0.010067, - 0.021905, - -0.040988, - -0.021858, - 0.044319, - -0.0032083, - -0.004739, - -0.047263, - -0.034096, - -0.049066, - -0.081507, - -0.0051832, - -0.044278, - 0.0019867, - 0.022877, - -0.0017032, - -0.010555, - -0.023878, - -0.034635, - 0.062227, - -0.010833, - 0.011671, - 0.0061367, - 0.032909, - -0.013795, - -0.085103, - 0.016223, - -0.004613, - 0.038478, - 0.0052146, - 0.0057953, - 0.0012766, - 0.004243, - 0.02599, - 0.016134, - -0.04376, - 0.0070197, - -0.0072866, - -0.036048, - -0.021081, - -0.055512, - -0.039892, - 0.0070552, - 0.0094366, - 0.039722, - -0.0023449, - -0.0027991, - -0.013791, - -0.0025088, - 0.000084538, - 0.002432, - -0.033822, - -0.0094892, - -0.003896, - 0.014659, - -0.017261, - -0.014952, - 0.090031, - 0.059418, - 0.0031136, - -0.0066325, - 0.028538, - 0.10482, - 0.011866, - 0.020185, - -0.014902, - 0.0045908, - -0.0050985, - -0.0070232, - 0.0042988, - 0.027856, - 0.05524, - -0.034358, - 0.012494, - 0.020723, - -0.049702, - 0.0027941, - -0.037461, - -0.059893, - 0.011998, - -0.021883, - 0.051797, - 0.056889, - 0.018111, - 0.11507, - 0.039404, - -0.069169, - 0.0094269, - 0.041317, - -0.025332, - -0.0070572, - 0.073716, - 0.053828, - 0.024936, - 0.035822, - -0.043583, - -0.0077253, - -0.029304, - 0.034231, - 0.0066222, - -0.032052, - 0.016769, - -0.064572, - 0.033702, - -0.0081727, - 0.023801, - -0.029135, - -0.0098564, - 0.019473, - -0.030517, - -0.026676, - -0.026101, - -0.033762, - 0.010427, - -0.023643, - -0.015845, - 0.013039, - 0.033606, - -0.056761, - 0.042958, - 0.07779, - -0.016977, - 0.0059571, - 0.033146, - 0.04026, - 0.019612, - -0.0055546, - -0.0088353, - 0.017578, - -0.035633, - 0.069753, - -0.0087859, - 0.02733, - -0.082139, - -0.0036414, - -0.050821, - -0.011352, - -0.012262, - -0.0088163, - -0.015907, - -0.028115, - -0.048152, - 0.0076818, - 0.093882, - 0.01558, - 0.042534, - 0.038694, - 0.012199, - 0.031628, - -0.019341, - 0.025765, - -0.053526, - -0.019048, - -0.054427, - -0.0064941, - -0.054309, - 0.078692, - 0.065915, - 0.0039477, - 0.034839, - 0.072207, - 0.001558, - -0.013855, - -0.053639, - -0.046364, - -0.012832, - -0.010066, - -0.016432, - -0.012892, - -0.038686, - -0.011785, - -0.016707, - 0.0083907, - -0.012519, - 0.024163, - 0.00097168, - 0.016572, - -0.066041, - -0.0033145, - -0.033708, - -0.021903, - 0.047901, - 0.0057955, - 0.0090477, - -0.0017713, - 0.028821, - -0.036851, - -0.0096578, - -0.0028139, - 0.027061, - 0.012164, - 0.058093, - -0.060716, - 0.0093589, - 0.017246, - 0.020959, - 0.0031458, - 0.0022416, - -0.026197, - -0.01887, - 0.01877, - 0.0091929, - 0.077514, - -0.033094, - 0.042608, - -0.060104, - -0.033505, - 0.0028055, - -0.046292, - 0.012911, - 0.003268, - -0.0044122, - -0.020438, - 0.12535, - -0.015359, - -0.076801, - -0.0080428, - 0.022105, - 0.0068951, - -0.020484, - 0.021726, - 0.0054599, - -0.037876, - 0.044062, - -0.016056, - 0.001019, - -0.03362, - -0.037907, - 0.022962, - 0.031881, - 0.024279, - -0.013684, - 0.065419 - ], - "meerkats": [ - 0.032604, - -0.088977, - -0.064349, - 0.015627, - -0.055522, - 0.055891, - 0.026569, - -0.10555, - -0.031715, - 0.01261, - 0.080203, - -0.054091, - 0.035054, - -0.024604, - 0.047514, - 0.02534, - 0.043177, - -0.056128, - 0.06807, - 0.056418, - -0.033854, - -0.066867, - 0.065476, - -0.023421, - 0.083241, - 0.026202, - 0.017586, - -0.066881, - 0.10125, - 0.031514, - -0.08101, - -0.015714, - 0.040037, - 0.0084892, - 0.049249, - -0.010667, - -0.013388, - -0.092766, - 0.031173, - -0.044945, - -0.049697, - -0.056763, - -0.052042, - -0.05536, - 0.10884, - 0.0082632, - 0.016231, - -0.10591, - 0.01373, - -0.04317, - 0.008669, - 0.066353, - 0.020004, - -0.098737, - -0.013415, - -0.050463, - -0.017556, - -0.005575, - -0.092091, - 0.019448, - 0.02196, - -0.10085, - 0.0719, - -0.037717, - 0.059223, - 0.035829, - 0.0055608, - -0.013656, - -0.10608, - 0.042868, - 0.064644, - 0.051677, - 0.095107, - -0.024432, - 0.010673, - 0.052737, - 0.021069, - -0.062568, - -0.051335, - 0.041607, - 0.021479, - 0.025207, - 0.010903, - 0.10463, - 0.067228, - -0.0092924, - 0.030857, - -0.0054054, - 0.025405, - -0.0016255, - -0.011088, - -0.0069297, - -0.086424, - 0.0057186, - 0.07977, - 0.030439, - 0.036921, - 0.10285, - 0.11365, - -0.09864, - -0.045621, - 0.057345, - -0.016405, - 0.027031, - 0.02068, - -0.091333, - -0.041455, - -0.010544, - 0.014937, - 0.10448, - -0.092089, - 0.044372, - 0.041573, - 0.031806, - 0.011457, - -0.00095553, - -0.043664, - 0.043685, - -0.023306, - -0.058469, - -0.076281, - 0.11506, - 0.1423, - -0.040779, - 0.098678, - 0.065255, - 0.053905, - -0.02653, - -0.063834, - 0.065034, - 0.022598, - 0.1091, - -0.030434, - -0.036506, - 0.03666, - 0.033581, - -0.006102, - 0.092652, - -0.00067805, - 0.038462, - -0.10037, - -0.0070926, - -0.0054307, - 0.019552, - 0.043127, - -0.0067185, - 0.0046634, - -0.0070523, - -0.074782, - -0.090927, - 0.0064785, - 0.087384, - -0.050564, - -0.00070643, - -0.026979, - -0.0028548, - 0.03436, - 0.046412, - 0.016555, - 0.012791, - -0.0018954, - -0.012768, - 0.012538, - 0.094185, - 0.046501, - 0.08661, - -0.071165, - 0.040833, - -0.050333, - 0.015449, - -0.033357, - 0.0036795, - -0.034858, - 0.045739, - -0.059339, - 0.03508, - -0.049319, - -0.018795, - -0.026954, - -0.027833, - 0.048275, - -0.025103, - -0.079488, - -0.016253, - -0.046412, - -0.063176, - 0.11078, - 0.11007, - -0.0076207, - -0.080192, - 0.044327, - 0.10336, - -0.14214, - -0.03033, - -0.054551, - -0.0025212, - -0.033971, - 0.041836, - 0.0079855, - 0.026631, - -0.11813, - 0.10181, - -0.027581, - -0.033827, - 0.02799, - 0.024544, - -0.041747, - -0.031904, - -0.054965, - -0.059278, - 0.042639, - -0.0011853, - 0.019358, - 0.082953, - 0.0445, - 0.015755, - -0.033029, - 0.0023981, - -0.0052216, - 0.039981, - 0.055628, - 0.12331, - 0.033361, - 0.089646, - -0.012186, - -0.143, - 0.063413, - 0.081585, - 0.017283, - 0.015157, - 0.010449, - -0.013589, - -0.042891, - 0.040576, - 0.058964, - 0.006005, - 0.079942, - -0.0061577, - -0.006545, - -0.015449, - -0.041759, - 0.016618, - -0.035333, - 0.021751, - 0.011009, - 0.05607, - -0.02238, - 0.010908, - -0.024012, - -0.044784, - 0.032019, - 0.03467, - -0.0066055, - -0.049647, - -0.038501, - 0.0080819, - -0.010318, - 0.026684, - 0.058603, - -0.066739, - 0.0016976, - 0.034799, - -0.024408, - -0.04345, - 0.075313, - 0.07683, - 0.031105, - 0.034052, - 0.026356, - 0.049113, - -0.038927, - 0.12412, - -0.080287, - -0.012994, - -0.024074, - -0.0067475, - -0.010748, - -0.045061, - -0.025075, - -0.014035, - -0.031042, - -0.024207, - 0.11352, - -0.023479, - 0.0046085, - -0.057493, - 0.0030956, - -0.066712, - 0.05372, - 0.023653, - -0.02531, - -0.0069186, - -0.04745, - -0.048506, - -0.050174, - 0.026669, - 0.0068122, - 0.10231, - -0.11052, - 0.076661 - ], - "military-style": [ - -0.013547, - -0.0049646, - 0.016253, - 0.0048711, - 0.010835, - -0.032875, - -0.0086532, - -0.068868, - 0.0023461, - 0.07301, - 0.014805, - -0.050651, - -0.018651, - 0.019064, - -0.020331, - 0.036948, - 0.055754, - 0.033218, - 0.024119, - 0.031617, - 0.016499, - -0.028678, - -0.036367, - 0.0029, - -0.015884, - 0.035022, - 0.046159, - 0.0053832, - -0.0017374, - 0.04661, - -0.0067238, - -0.055939, - 0.00010861, - -0.053823, - 0.06046, - 0.0090703, - 0.02066, - 0.012142, - 0.032084, - -0.0074944, - 0.00039538, - -0.092972, - 0.041776, - 0.020223, - -0.0014169, - -0.0015386, - 0.00052634, - -0.011474, - -0.0083106, - -0.022708, - -0.023452, - 0.009217, - -0.013196, - -0.01166, - -0.021562, - 0.025893, - 0.045568, - -0.043295, - -0.0070896, - 0.018025, - -0.032456, - 0.0023353, - 0.069367, - 0.03457, - -0.011768, - -0.017152, - 0.040259, - -0.053296, - 0.010235, - 0.022728, - 0.0023023, - -0.0012367, - -0.0056542, - -0.0355, - 0.001982, - 0.0029768, - 0.050526, - -0.028838, - -0.045951, - 0.02473, - -0.002773, - -0.067501, - -0.010022, - -0.0067301, - -0.02227, - -0.017118, - -0.032137, - -0.0060279, - 0.040706, - 0.0048869, - -0.016671, - -0.018788, - -0.080359, - 0.018765, - 0.061249, - 0.048524, - -0.097492, - -0.04755, - 0.033215, - 0.000095521, - 0.04679, - -0.013571, - 0.059319, - -0.033789, - 0.0038237, - -0.034101, - 0.011342, - 0.0096876, - -0.041733, - -0.0011009, - -0.011797, - 0.0098828, - 0.02899, - 0.043857, - -0.008766, - -0.022177, - -0.011662, - 0.020102, - -0.038563, - -0.00015065, - 0.014731, - 0.0096157, - 0.0018642, - -0.054772, - 0.072817, - 0.0058634, - 0.010396, - -0.0017853, - 0.00024689, - 0.026846, - -0.015348, - 0.011789, - 0.035332, - 0.017853, - 0.045445, - -0.039067, - 0.006908, - -0.011557, - 0.019052, - -0.014137, - -0.01863, - -0.020307, - -0.022403, - 0.023041, - -0.030507, - 0.025992, - 0.0047443, - 0.025078, - -0.001779, - -0.022518, - 0.031378, - 0.10139, - -0.029904, - 0.031727, - 0.0067134, - 0.079993, - -0.016313, - 0.021078, - 0.022598, - -0.028244, - 0.043829, - -0.012114, - -0.046255, - 0.021409, - -0.0094162, - 0.026059, - 0.017806, - -0.020683, - -0.0068503, - -0.020079, - 0.056131, - -0.03909, - -0.015623, - 0.038482, - 0.0020972, - 0.027658, - -0.015082, - 0.030224, - -0.039674, - -0.029607, - 0.022147, - -0.022742, - -0.0017419, - 0.01785, - 0.049666, - -0.013473, - 0.0019084, - 0.09313, - -0.019971, - -0.022234, - 0.0034276, - 0.029985, - 0.081033, - -0.045056, - 0.0013965, - -0.0015798, - 0.024587, - 0.019928, - 0.0012866, - -0.011407, - -0.089961, - 0.019277, - 0.012614, - 0.048775, - -0.017563, - -0.024339, - -0.0072979, - 0.074161, - 0.0077956, - -0.020561, - 0.10924, - 0.018581, - 0.017538, - 0.039067, - 0.028878, - -0.018113, - -0.032179, - 0.021359, - -0.024707, - -0.0041795, - -0.023509, - -0.038353, - 0.021219, - 0.076866, - -0.007344, - 0.011466, - -0.018339, - 0.027073, - 0.0017426, - -0.0064752, - -0.0096903, - -0.03608, - -0.011993, - -0.0076485, - -0.025207, - 0.0011244, - 0.012084, - -0.0036866, - 0.019253, - -0.01049, - 0.013562, - -0.016945, - 0.027122, - 0.032708, - -0.1256, - 0.018312, - -0.028089, - -0.019502, - -0.00074958, - 0.020296, - -0.022064, - 0.029143, - -0.0059119, - -0.025082, - -0.0032784, - 0.020808, - 0.032214, - -0.06119, - 0.021506, - 0.0008448, - 0.016759, - -0.013551, - 0.011045, - -0.0045981, - -0.0070708, - 0.0098756, - -0.020422, - 0.017106, - 0.014585, - -0.03445, - -0.034886, - 0.042581, - -0.059693, - -0.025368, - -0.058632, - -0.072746, - -0.010751, - -0.0097129, - -0.012774, - 0.013707, - 0.13125, - 0.019123, - 0.033179, - 0.020912, - -0.060805, - -0.033428, - 0.0066887, - 0.020331, - -0.023002, - 0.0051329, - -0.038434, - 0.00036591, - 0.02308, - -0.0023138, - -0.012697, - -0.00069798, - 0.0041376, - 0.013549, - -0.05216, - -0.017856 - ], - "assets": [ - 0.081413, - -0.059325, - -0.03516, - -0.0075859, - 0.046908, - 0.014794, - 0.026758, - -0.085792, - 0.072163, - -0.014371, - 0.024433, - -0.030661, - -0.009516, - 0.042133, - -0.057358, - -0.012607, - 0.057994, - 0.024391, - 0.11753, - -0.022714, - -0.090531, - -0.021364, - -0.046486, - 0.052609, - -0.037802, - 0.079489, - -0.016648, - -0.03624, - 0.10908, - -0.035441, - 0.022244, - -0.048363, - -0.10327, - 0.00097244, - 0.058667, - 0.030969, - -0.084378, - -0.043772, - -0.0076938, - 0.048231, - 0.035265, - -0.097808, - 0.073907, - 0.061247, - 0.024155, - -0.068701, - 0.039186, - -0.049659, - -0.019263, - -0.093429, - -0.042576, - -0.014855, - -0.021236, - 0.017499, - -0.10857, - 0.056614, - -0.064419, - -0.049629, - -0.014047, - -0.053939, - 0.058623, - -0.085245, - 0.22363, - -0.00079214, - 0.01707, - -0.054001, - -0.011128, - -0.0418, - 0.024018, - -0.00073408, - 0.093051, - -0.018658, - 0.057701, - 0.0060046, - 0.049477, - 0.039907, - 0.029802, - -0.0049859, - 0.045365, - -0.019004, - -0.010673, - -0.031228, - -0.0027783, - 0.1028, - 0.024376, - 0.0014795, - 0.027737, - -0.06225, - 0.010997, - -0.023117, - -0.013506, - 0.0048237, - -0.10447, - 0.07795, - -0.055864, - 0.056153, - -0.075022, - 0.0038661, - 0.042011, - 0.041332, - 0.0485, - -0.042874, - -0.0099574, - -0.031618, - 0.093664, - -0.060035, - -0.13046, - 0.05999, - -0.041526, - -0.070966, - 0.0059556, - 0.098473, - 0.08602, - -0.028179, - 0.043616, - -0.12419, - -0.034247, - 0.021119, - -0.032584, - 0.037595, - -0.03033, - -0.096558, - 0.12034, - -0.10152, - 0.16124, - 0.061147, - -0.032648, - -0.089256, - 0.012209, - 0.060788, - 0.047005, - -0.014313, - 0.023414, - 0.010325, - 0.074358, - 0.045581, - 0.036013, - 0.056197, - -0.023657, - 0.097074, - -0.10908, - 0.038422, - -0.052396, - 0.042513, - 0.029326, - 0.022789, - 0.063457, - -0.025616, - -0.058487, - -0.011426, - 0.024449, - 0.096932, - 0.045594, - -0.10468, - -0.019844, - -0.046345, - 0.031158, - -0.017472, - 0.062827, - 0.013635, - 0.077357, - 0.05241, - -0.014516, - 0.031998, - 0.017131, - 0.025337, - -0.0036934, - -0.015422, - -0.0097908, - 0.0070308, - 0.066932, - 0.057079, - 0.00014606, - 0.029033, - -0.12498, - 0.090937, - -0.008893, - 0.043952, - -0.082265, - -0.017969, - 0.078564, - -0.045618, - -0.018805, - -0.013801, - -0.022403, - -0.064606, - -0.059814, - 0.10848, - 0.031368, - -0.042068, - -0.040393, - 0.077267, - -0.013574, - -0.039071, - -0.059528, - -0.082994, - 0.0085922, - 0.051438, - -0.032976, - 0.0047447, - -0.13432, - 0.064038, - -0.031852, - -0.020665, - 0.062111, - 0.019936, - 0.049834, - -0.075702, - -0.028066, - -0.046582, - 0.083446, - -0.069349, - -0.016505, - 0.0098409, - 0.016786, - 0.034521, - -0.063097, - 0.012555, - -0.0047672, - 0.015646, - 0.011878, - -0.057374, - 0.074096, - 0.11755, - 0.066134, - 0.04185, - 0.027782, - 0.054752, - -0.034805, - -0.0091431, - -0.002718, - 0.018948, - -0.17768, - -0.077552, - 0.039261, - -0.02216, - -0.076754, - -0.0003155, - -0.060164, - -0.020013, - -0.04749, - 0.073583, - 0.085685, - 0.045701, - -0.007471, - -0.026816, - -0.057932, - -0.03927, - 0.021598, - -0.035814, - -0.032484, - -0.10261, - 0.052954, - -0.013581, - -0.062306, - 0.032674, - 0.008557, - 0.00010861, - 0.048004, - 0.046957, - -0.033715, - -0.0036291, - -0.082252, - -0.070746, - 0.0011225, - -0.020705, - -0.021174, - -0.0012081, - 0.056148, - 0.033389, - -0.005006, - 0.098432, - -0.14443, - -0.057148, - -0.014971, - 0.014567, - 0.066268, - -0.0081111, - 0.027481, - -0.087371, - 0.057204, - -0.051164, - -0.0005341, - 0.012276, - 0.018855, - -0.018844, - -0.12222, - 0.05304, - -0.055325, - -0.010651, - 0.037796, - 0.021707, - -0.056471, - 0.057793, - 0.031305, - -0.081291, - -0.037396, - -0.068083, - 0.050138, - -0.074955 - ], - "motorsports": [ - 0.0016956, - -0.10035, - 0.080294, - 0.041021, - -0.059681, - -0.0082295, - -0.062312, - -0.070981, - 0.062662, - -0.033868, - 0.035877, - -0.072281, - -0.00014824, - 0.065417, - 0.032964, - 0.042681, - 0.078548, - 0.030968, - 0.073777, - 0.037656, - 0.049196, - -0.035828, - 0.088228, - 0.053831, - 0.052452, - -0.0075326, - -0.016995, - -0.01355, - 0.060117, - 0.037225, - 0.022299, - 0.0070986, - 0.084261, - -0.04627, - 0.04785, - 0.053503, - 0.0040643, - -0.022011, - 0.059559, - 0.0052104, - 0.013247, - -0.096522, - 0.0032941, - 0.03086, - -0.0040651, - -0.064927, - -0.038983, - -0.024427, - -0.031385, - -0.02654, - -0.012576, - -0.021035, - 0.055124, - 0.057795, - -0.037864, - -0.028233, - -0.0051989, - -0.0074857, - -0.026885, - 0.043542, - 0.025256, - 0.070754, - 0.076354, - 0.022209, - 0.039814, - -0.027775, - -0.049994, - -0.039527, - 0.090103, - 0.0083303, - 0.063, - -0.044134, - 0.051387, - 0.062151, - 0.039809, - 0.060769, - -0.017532, - -0.031449, - -0.030846, - -0.013708, - -0.013172, - 0.040676, - -0.022935, - 0.019614, - 0.015895, - -0.087672, - 0.057114, - 0.0073654, - 0.025913, - -0.031124, - 0.059293, - 0.048903, - -0.071519, - 0.053257, - 0.011183, - 0.11647, - -0.032921, - -0.01499, - 0.017921, - -0.03396, - -0.048942, - -0.067264, - -0.029189, - -0.021908, - 0.034582, - -0.039787, - -0.082739, - 0.0065617, - -0.011614, - 0.03182, - 0.030847, - 0.046779, - 0.032281, - 0.03644, - 0.030985, - -0.058135, - -0.045887, - -0.030125, - -0.027171, - 0.0032679, - -0.023035, - 0.030607, - -0.020377, - -0.014549, - 0.11416, - 0.054341, - -0.059932, - -0.041832, - 0.00079362, - 0.098425, - -0.02381, - 0.0091376, - 0.044744, - -0.028606, - 0.025278, - -0.036012, - 0.096056, - 0.0016293, - -0.024529, - -0.025809, - -0.05609, - -0.00608, - 0.096071, - 0.051797, - -0.017692, - 0.022847, - 0.032453, - -0.089464, - 0.031676, - -0.016066, - 0.080614, - 0.10454, - -0.0078021, - -0.024187, - 0.055673, - 0.021233, - -0.01355, - 0.087639, - 0.034254, - -0.012589, - -0.0047882, - -0.033628, - -0.047061, - 0.028029, - -0.012463, - -0.0075083, - -0.051905, - -0.017214, - -0.03423, - -0.058266, - 0.04147, - -0.056452, - 0.037711, - 0.030441, - 0.039118, - 0.01173, - -0.025196, - -0.0055677, - -0.055639, - -0.01155, - 0.01239, - -0.099738, - -0.034943, - -0.013602, - 0.0073893, - -0.022379, - 0.02019, - 0.050965, - 0.066251, - 0.0083173, - -0.034235, - 0.12047, - -0.019145, - 0.012232, - -0.02739, - 0.032276, - 0.013803, - -0.02231, - 0.014592, - -0.015216, - -0.15307, - 0.037699, - -0.06271, - -0.10831, - -0.039782, - -0.00033962, - -0.020116, - -0.01471, - -0.041814, - -0.0049694, - 0.10507, - 0.036765, - -0.016905, - -0.0016682, - -0.057402, - 0.021333, - -0.081217, - -0.031635, - 0.014229, - -0.0036463, - 0.0068149, - -0.064349, - -0.030606, - 0.10028, - -0.047579, - -0.028459, - 0.028041, - 0.10371, - -0.0095491, - -0.030798, - 0.013482, - -0.0021455, - -0.067746, - 0.029667, - -0.014483, - -0.022631, - 0.01895, - 0.019914, - -0.022409, - -0.036045, - -0.034664, - 0.0078321, - 0.017325, - -0.044748, - -0.022827, - -0.018849, - 0.033382, - -0.0099907, - 0.042341, - -0.02228, - 0.012249, - 0.02087, - -0.005936, - 0.028143, - -0.036923, - 0.0066091, - -0.033907, - 0.0055794, - 0.062802, - 0.014415, - 0.044349, - 0.045532, - -0.0037553, - 0.028952, - 0.033947, - -0.045979, - 0.001565, - -0.00031788, - 0.065054, - -0.062716, - 0.023205, - 0.083181, - -0.079213, - -0.026398, - -0.01801, - -0.027038, - -0.0078968, - 0.027444, - -0.074453, - 0.049499, - 0.074194, - 0.021656, - -0.036714, - 0.086185, - -0.015969, - -0.03977, - -0.020531, - -0.06235, - -0.023283, - 0.097428, - 0.077932, - -0.049723, - -0.017003, - -0.01681, - -0.047458, - -0.02184, - 0.039744, - 0.025883, - 0.035563, - -0.057353 - ], - "photonics": [ - -0.034541, - -0.071779, - 0.0083445, - -0.012877, - -0.040904, - -0.070069, - 0.10761, - -0.080717, - 0.057137, - 0.016652, - -0.015797, - -0.022257, - 0.046663, - -0.03834, - -0.010994, - -0.041445, - 0.07578, - 0.033741, - 0.043112, - -0.030492, - 0.12104, - 0.032902, - 0.086121, - 0.084066, - 0.0091942, - -0.047737, - 0.0075087, - 0.042287, - 0.056793, - 0.0032396, - 0.028005, - -0.030534, - 0.013215, - -0.04771, - 0.033075, - -0.00030921, - -0.020768, - 0.034272, - 0.028831, - -0.0027953, - -0.060124, - -0.11919, - -0.017705, - -0.016722, - 0.035577, - -0.074238, - -0.099907, - -0.055223, - 0.0069697, - -0.00026468, - -0.061861, - -0.00030172, - -0.054914, - 0.098357, - -0.071183, - 0.0036733, - -0.058176, - 0.048984, - -0.0014177, - 0.077138, - 0.014451, - 0.074658, - 0.047282, - 0.0010964, - -0.0026502, - 0.046673, - -0.015994, - -0.047727, - -0.027376, - 0.01263, - -0.034979, - -0.03841, - -0.012177, - -0.027228, - -0.038693, - 0.0083409, - -0.012002, - -0.034757, - 0.0099783, - -0.0037566, - -0.029229, - -0.0034561, - -0.073533, - 0.042287, - -0.03098, - 0.010224, - 0.051975, - -0.038454, - -0.011789, - -0.046712, - 0.021633, - 0.02011, - -0.080718, - 0.026932, - 0.0078642, - 0.061958, - -0.010583, - -0.037905, - -0.032101, - 0.032954, - 0.028236, - -0.014515, - 0.027281, - -0.039668, - -0.0075343, - -0.067157, - 0.053987, - 0.089845, - 0.090013, - 0.010712, - -0.0080032, - 0.080689, - 0.023617, - 0.0063892, - 0.075609, - -0.006667, - -0.05887, - 0.0034555, - -0.032877, - 0.046402, - -0.036972, - 0.036723, - -0.068029, - -0.033327, - 0.082464, - 0.013005, - -0.040736, - -0.038039, - -0.025015, - 0.12664, - 0.041819, - 0.0074856, - -0.013616, - -0.0019051, - 0.050696, - 0.0049422, - 0.068089, - -0.0057805, - -0.044745, - -0.0071393, - 0.053651, - 0.04813, - -0.0035403, - 0.024387, - -0.0023555, - -0.044932, - -0.018539, - -0.090117, - -0.030887, - -0.02995, - 0.058493, - 0.073531, - 0.049146, - -0.064332, - 0.0255, - 0.041933, - -0.015148, - 0.024636, - 0.088677, - 0.0042549, - -0.013445, - -0.0052744, - -0.050838, - 0.002118, - -0.079264, - -0.0087652, - -0.0073048, - -0.022123, - 0.028217, - -0.061874, - 0.0049481, - 0.063969, - -0.048184, - -0.0088593, - 0.095955, - 0.040798, - -0.033186, - 0.056931, - -0.016893, - -0.011898, - 0.015368, - 0.030617, - 0.027575, - -0.004614, - -0.0066048, - -0.034412, - -0.040971, - 0.099541, - 0.02257, - 0.08292, - -0.050611, - 0.04412, - -0.044411, - -0.0080277, - -0.025174, - -0.024991, - -0.017023, - 0.0096947, - -0.027112, - -0.018302, - -0.13206, - -0.019014, - 0.026182, - 0.052267, - 0.022932, - -0.027707, - -0.011491, - 0.033779, - -0.0022057, - 0.020906, - 0.094824, - 0.037064, - 0.014876, - -0.05267, - 0.0046691, - 0.090488, - 0.018676, - 0.018566, - -0.029528, - -0.0022819, - -0.035499, - 0.067768, - 0.0055076, - 0.10088, - 0.005354, - -0.029381, - -0.048066, - 0.051715, - 0.03175, - 0.026884, - -0.051975, - -0.042093, - -0.027418, - -0.0031432, - 0.050246, - -0.046193, - 0.047926, - -0.038676, - -0.087198, - -0.04794, - 0.033691, - -0.070004, - 0.14378, - 0.0072282, - 0.0030368, - -0.041749, - 0.019118, - 0.015755, - 0.097135, - -0.010051, - 0.014899, - -0.027702, - 0.011477, - -0.052778, - -0.068431, - 0.033652, - -0.00077052, - -0.0047453, - 0.043943, - 0.017848, - -0.0010818, - 0.038692, - 0.048243, - -0.034072, - -0.062299, - -0.011718, - 0.037626, - -0.019114, - 0.042813, - -0.0047553, - 0.058971, - 0.05629, - -0.074932, - -0.053199, - 0.00039528, - -0.018608, - 0.069738, - 0.032955, - -0.054339, - 0.0068378, - 0.059216, - -0.051206, - -0.025623, - 0.018012, - -0.045494, - -0.0759, - -0.061751, - 0.0073171, - -0.0093213, - -0.040788, - -0.040046, - 0.032085, - -0.035167, - -0.068944, - 0.03687, - -0.060497, - 0.011921, - 0.013874, - 0.057722, - 0.017503 - ], - "amusements": [ - -0.0098295, - -0.054677, - 0.078778, - -0.0073486, - -0.047213, - 0.011034, - 0.0014076, - -0.084589, - 0.0064317, - 0.032441, - 0.011172, - -0.051471, - 0.023044, - -0.034307, - -0.014817, - -0.029405, - 0.022872, - 0.024724, - -0.0011175, - 0.0063068, - 0.0086707, - -0.048952, - -0.022335, - 0.038239, - -0.0053121, - 0.043352, - 0.0085587, - -0.018584, - 0.080956, - -0.049257, - -0.048207, - -0.048892, - -0.003211, - -0.048721, - 0.063042, - -0.004213, - 0.0545, - -0.019883, - 0.010077, - -0.017497, - 0.0028959, - -0.097995, - -0.046327, - 0.06125, - -0.0031044, - -0.058028, - -0.011894, - 0.0086023, - -0.053322, - -0.00025368, - -0.036251, - 0.029002, - 0.015812, - -0.015971, - -0.029507, - -0.046874, - -0.00047457, - -0.012694, - -0.035465, - -0.066243, - 0.0037789, - 0.026322, - 0.060134, - 0.031116, - 0.023731, - 0.047019, - -0.055612, - 0.015676, - 0.03586, - 0.033789, - 0.070721, - -0.06849, - 0.054983, - 0.05362, - 0.0051735, - 0.032044, - 0.016817, - -0.082295, - -0.035993, - -0.015934, - -0.02487, - -0.014838, - -0.049002, - 0.014448, - -0.022459, - -0.023844, - 0.024928, - 0.0028999, - -0.098433, - 0.0037235, - 0.01672, - -0.00059983, - -0.060018, - -0.016298, - -0.019278, - 0.046715, - -0.0074119, - 0.024637, - -0.026556, - 0.089081, - 0.028628, - 0.1048, - -0.058349, - -0.053678, - 0.066641, - -0.013857, - -0.019111, - 0.0043719, - -0.012138, - -0.0094028, - -0.044939, - 0.10609, - 0.032252, - 0.070277, - 0.064742, - -0.0068491, - -0.0019719, - -0.016651, - -0.034028, - -0.0098695, - -0.0027521, - 0.08553, - -0.11262, - -0.040459, - 0.11642, - 0.02967, - -0.025002, - -0.029965, - -0.015832, - 0.08523, - 0.051727, - 0.078868, - 0.022735, - 0.053601, - 0.0030606, - -0.063764, - 0.047016, - 0.020942, - -0.0079751, - -0.0099274, - 0.066342, - 0.0043848, - -0.036657, - 0.015867, - 0.096245, - 0.0011695, - 0.01557, - -0.023339, - 0.036095, - -0.00096591, - 0.062363, - 0.073398, - -0.08873, - -0.017693, - 0.035202, - 0.03916, - -0.055648, - 0.12023, - -0.033479, - -0.0052328, - 0.041665, - -0.021802, - 0.015974, - 0.031907, - -0.0032184, - 0.024928, - 0.067014, - -0.046953, - -0.014418, - -0.031318, - 0.029851, - 0.016114, - 0.055652, - 0.001034, - 0.048184, - 0.021444, - -0.0097587, - 0.027747, - -0.051775, - -0.029563, - 0.023283, - -0.021851, - -0.023066, - -0.081377, - -0.044366, - 0.015783, - 0.0039733, - 0.087932, - -0.0076428, - -0.019908, - 0.023157, - 0.054405, - -0.060938, - -0.013129, - 0.0039683, - 0.02418, - -0.05022, - 0.034438, - -0.039698, - 0.018441, - -0.11604, - 0.052587, - 0.0074105, - -0.025361, - 0.10705, - 0.053753, - -0.03559, - -0.024899, - 0.029191, - -0.0069128, - 0.066597, - 0.039225, - 0.0036907, - 0.036533, - 0.056546, - -0.0009647, - -0.051689, - -0.05346, - -0.084164, - -0.0066697, - 0.05273, - -0.03031, - -0.0082292, - 0.067667, - 0.075318, - -0.020974, - 0.034708, - 0.070963, - -0.075015, - -0.026905, - -0.0025507, - 0.011453, - -0.076761, - 0.0065574, - 0.045823, - 0.038882, - -0.020005, - -0.03802, - 0.0082705, - -0.057111, - -0.030125, - 0.0067747, - -0.078769, - -0.027865, - -0.032992, - 0.049824, - 0.007462, - -0.067328, - -0.03686, - 0.0067865, - -0.003775, - -0.032079, - 0.032976, - -0.0028889, - -0.057904, - 0.032211, - -0.027984, - 0.023557, - 0.035669, - 0.011397, - 0.052189, - 0.047268, - 0.021723, - -0.036311, - -0.035396, - 0.047364, - -0.010339, - -0.019337, - -0.0021337, - -0.011301, - 0.025119, - 0.077231, - -0.061388, - -0.016765, - 0.0072103, - -0.024125, - 0.041139, - -0.00068813, - -0.010112, - -0.041529, - 0.025092, - -0.014966, - 0.032531, - -0.071887, - -0.0044158, - 0.092216, - -0.035894, - -0.0025869, - -0.030789, - 0.11033, - 0.029271, - 0.043553, - -0.012669, - 0.016368, - -0.0025583, - 0.0019124, - -0.022971, - 0.088626, - -0.096818, - -0.016355 - ], - "wifi": [ - -0.10795, - -0.037419, - 0.011049, - -0.016236, - -0.056079, - -0.058504, - 0.12136, - 0.0045836, - 0.077184, - 0.0013015, - -0.10335, - -0.020301, - -0.05742, - -0.13028, - -0.0087747, - -0.029598, - 0.057353, - -0.071077, - -0.0082258, - -0.19224, - 0.040066, - 0.031914, - 0.049335, - 0.023166, - 0.072214, - 0.02422, - 0.16556, - -0.11012, - 0.040309, - 0.044488, - 0.069717, - -0.011542, - -0.075227, - -0.0086321, - 0.02931, - 0.0049959, - 0.1311, - 0.060573, - -0.039451, - -0.12296, - -0.070947, - -0.13151, - 0.0040232, - 0.092878, - 0.032998, - -0.0785, - 0.054983, - -0.046085, - -0.076069, - 0.087768, - 0.079586, - -0.01256, - 0.089231, - -0.14189, - -0.038518, - 0.13894, - -0.0064389, - 0.028716, - -0.016826, - 0.080229, - -0.10982, - -0.10568, - 0.16834, - 0.060889, - 0.023877, - 0.07137, - 0.026372, - -0.074759, - -0.16614, - 0.042941, - 0.093647, - 0.029135, - 0.092834, - 0.028181, - -0.088617, - -0.10703, - 0.077969, - 0.013571, - -0.091898, - -0.0075225, - -0.033001, - -0.05142, - 0.035314, - 0.15914, - 0.052958, - 0.057149, - -0.061305, - -0.040406, - -0.16315, - 0.097987, - 0.054149, - -0.024671, - -0.074173, - -0.0073501, - 0.061402, - 0.13706, - 0.10825, - 0.0019376, - -0.14631, - 0.076764, - 0.062151, - 0.1752, - 0.075126, - -0.13996, - 0.00095027, - -0.16878, - -0.049167, - -0.044722, - 0.11093, - -0.052139, - -0.023299, - 0.069135, - 0.086194, - 0.17451, - 0.069453, - -0.027339, - -0.090523, - 0.046181, - -0.048763, - 0.015334, - 0.086584, - 0.091065, - -0.048085, - 0.0013271, - 0.097061, - 0.12928, - -0.0081633, - -0.015208, - -0.049366, - 0.012294, - 0.02998, - -0.14546, - -0.10313, - -0.14392, - -0.018666, - -0.030007, - 0.044566, - 0.02175, - -0.094294, - -0.058886, - 0.11154, - 0.0060562, - 0.0447, - -0.089284, - -0.046255, - 0.068926, - -0.058979, - 0.040896, - 0.0033831, - 0.033514, - -0.045421, - 0.06707, - 0.10064, - -0.066525, - 0.058193, - 0.024757, - -0.019125, - 0.089322, - -0.06162, - 0.10254, - 0.093149, - -0.12315, - -0.090301, - -0.069434, - -0.069395, - -0.084053, - 0.11183, - 0.13805, - 0.15102, - 0.14198, - -0.017457, - 0.22169, - 0.044524, - -0.028126, - -0.034317, - 0.15803, - -0.039851, - 0.082192, - -0.0030624, - -0.009874, - 0.06523, - -0.035665, - -0.046177, - -0.046538, - -0.044605, - -0.08816, - 0.021203, - 0.25834, - -0.055002, - 0.071879, - 0.13912, - 0.060298, - 0.047222, - 0.089946, - 0.05471, - 0.02858, - -0.028775, - 0.064999, - -0.018964, - -0.0085768, - -0.16235, - 0.095786, - -0.089538, - 0.070957, - 0.015892, - 0.0045411, - -0.098601, - -0.074398, - -0.20561, - -0.081835, - 0.13249, - -0.013709, - 0.090398, - -0.058512, - -0.063528, - 0.020725, - -0.091052, - 0.01058, - -0.036149, - -0.097834, - 0.17149, - 0.050968, - -0.036677, - 0.056516, - 0.12679, - 0.021734, - -0.0071966, - 0.10898, - -0.054547, - 0.05178, - -0.087949, - -0.031466, - -0.068159, - -0.073496, - 0.071627, - 0.091903, - 0.16317, - 0.18703, - 0.0084433, - -0.00071342, - 0.060618, - -0.081958, - 0.26431, - -0.066946, - -0.025236, - 0.053763, - 0.053198, - 0.027363, - -0.015605, - -0.038389, - -0.036755, - -0.048422, - -0.22775, - 0.0043965, - 0.030217, - -0.09159, - -0.036233, - -0.065077, - -0.11787, - 0.084019, - 0.030737, - 0.07486, - -0.0053382, - -0.03449, - -0.01692, - 0.035379, - 0.033136, - 0.051888, - 0.019353, - 0.17621, - -0.096195, - 0.081243, - -0.084449, - 0.07205, - -0.055404, - 0.033329, - 0.030505, - 0.043054, - -0.001404, - 0.046228, - 0.15535, - -0.090444, - -0.056424, - -0.0019488, - -0.090847, - -0.056635, - -0.16345, - 0.032589, - 0.15373, - 0.048731, - 0.04081, - -0.039525, - -0.13339, - -0.037699, - 0.069604, - 0.070337, - -0.033374, - 0.055939, - -0.0074047, - -0.0025772 - ], - "wellbeing": [ - -0.027018, - -0.10265, - -0.055209, - -0.0055098, - -0.049867, - 0.0060251, - -0.058178, - -0.054564, - 0.068982, - 0.019711, - -0.018965, - -0.034679, - 0.0059832, - -0.058057, - 0.023272, - 0.007839, - 0.038686, - 0.0048609, - 0.027161, - 0.024615, - -0.077401, - 0.027823, - 0.078271, - 0.061904, - 0.0068323, - 0.036754, - 0.0049307, - 0.0048845, - 0.028321, - 0.017828, - 0.033022, - -0.031424, - -0.018801, - -0.074584, - -0.046262, - 0.0095247, - -0.0012868, - -0.028939, - 0.036689, - -0.0023288, - 0.061028, - -0.055884, - -0.065918, - -0.0054627, - 0.0011761, - -0.075753, - 0.030766, - -0.010468, - -0.032773, - -0.027977, - -0.0018294, - -0.0082682, - -0.016874, - 0.009586, - -0.051756, - 0.018481, - -0.062332, - -0.064277, - -0.014211, - -0.01858, - -0.012387, - -0.073767, - 0.0049871, - 0.03109, - 0.07881, - 0.057761, - 0.01551, - -0.023001, - 0.0025172, - -0.022622, - 0.075074, - 0.027505, - 0.025544, - -0.039083, - -0.035168, - 0.020079, - 0.052147, - -0.054766, - -0.0095624, - -0.013443, - 0.017547, - 0.034375, - -0.011293, - 0.080416, - -0.027238, - 0.010808, - 0.043616, - -0.026541, - -0.045197, - -0.051505, - 0.011201, - 0.032737, - -0.078099, - 0.023109, - -0.040234, - 0.056134, - 0.025295, - 0.013148, - 0.052384, - 0.004613, - -0.01212, - 0.033818, - 0.033584, - -0.059143, - -0.00696, - -0.048731, - 0.019153, - 0.024562, - 0.049846, - -0.040762, - -0.001963, - 0.095021, - 0.068376, - -0.023483, - 0.010078, - 0.047002, - -0.032148, - 0.024678, - -0.027299, - -0.010746, - 0.0065626, - 0.014458, - -0.00085082, - 0.0052089, - 0.076754, - 0.015312, - 0.0053471, - -0.17348, - -0.013691, - 0.099524, - 0.10375, - -0.074633, - 0.042588, - -0.0025488, - -0.043527, - -0.0065487, - 0.028402, - 0.027613, - 0.0022874, - 0.063776, - 0.0222, - 0.017707, - 0.049621, - -0.0047398, - 0.0052792, - 0.018579, - 0.043036, - -0.014697, - 0.017059, - 0.085559, - 0.10608, - 0.061745, - 0.014562, - -0.037471, - 0.0093169, - -0.014104, - -0.024621, - 0.058072, - 0.010971, - -0.090449, - 0.086252, - -0.060643, - -0.091761, - 0.058146, - -0.056842, - 0.050565, - -0.0088605, - 0.05469, - -0.014965, - 0.025961, - -0.014227, - 0.006548, - -0.019846, - -0.002138, - -0.046823, - 0.034173, - 0.025025, - -0.013182, - -0.0085437, - 0.014219, - 0.027552, - 0.01865, - 0.036459, - -0.055595, - 0.027722, - -0.060698, - -0.025585, - 0.11459, - -0.002107, - 0.053382, - 0.034611, - 0.025697, - -0.020758, - -0.059912, - 0.080564, - -0.030449, - -0.023232, - -0.036437, - -0.015994, - -0.032067, - -0.13854, - 0.0064412, - 0.014117, - -0.078336, - -0.0070462, - -0.0022833, - 0.021017, - -0.023764, - 0.034397, - 0.0096228, - 0.048977, - -0.025801, - 0.00891, - 0.0078429, - 0.0020598, - -0.011282, - 0.047029, - 0.013245, - -0.034549, - 0.060365, - -0.030456, - -0.014359, - 0.00038876, - 0.10382, - 0.022972, - -0.0076592, - -0.07103, - 0.11834, - 0.069108, - -0.058258, - 0.010051, - -0.020609, - -0.10123, - 0.0017564, - 0.080857, - 0.10406, - -0.055388, - 0.016645, - -0.020527, - -0.022682, - 0.034467, - 0.028995, - 0.015639, - -0.017809, - -0.032842, - 0.07752, - -0.015926, - -0.10484, - -0.0017243, - -0.036805, - 0.092374, - -0.014508, - 0.027762, - -0.080475, - 0.073073, - -0.083859, - -0.050409, - 0.054578, - 0.041963, - -0.073871, - -0.031162, - -0.063767, - 0.0039866, - -0.01671, - 0.040327, - 0.040851, - 0.030852, - 0.014511, - 0.04624, - 0.027919, - -0.046031, - 0.039121, - -0.10823, - -0.046781, - 0.057585, - -0.0397, - 0.081355, - 0.052145, - -0.0037647, - 0.022359, - 0.032051, - -0.037402, - -0.016424, - -0.012823, - 0.10549, - 0.053933, - -0.016381, - 0.035269, - -0.013128, - 0.012375, - 0.050296, - 0.030089, - -0.052362, - 0.0060787, - -0.052289, - 0.048096, - 0.02392, - 0.059577, - -0.034165, - 0.063326 - ], - "microelectronics": [ - -0.040832, - -0.045645, - -0.020152, - -0.026471, - -0.00097204, - -0.0054359, - 0.043075, - -0.053575, - 0.018706, - 0.0281, - 0.0061174, - -0.023732, - 0.0096145, - 0.030406, - 0.031392, - 0.018302, - 0.055091, - 0.066474, - 0.0062427, - 0.02544, - 0.069039, - 0.020913, - 0.036411, - 0.036679, - 0.0048367, - -0.026194, - -0.0037663, - 0.0090648, - 0.027088, - -0.034636, - 0.051564, - -0.028759, - -0.007464, - -0.011054, - 0.012798, - -0.0037032, - -0.004541, - 0.020394, - 0.01595, - 0.036295, - -0.040352, - -0.071416, - 0.02963, - -0.037695, - 0.0043167, - -0.045156, - -0.024016, - -0.055545, - -0.011642, - 0.001888, - -0.027338, - 0.0098999, - -0.032621, - 0.047405, - -0.042859, - 0.060669, - -0.013763, - 0.034373, - 0.011854, - 0.03386, - 0.016957, - 0.048881, - 0.026815, - 0.047271, - 0.047514, - 0.021794, - 0.00081919, - -0.026263, - 0.0019018, - 0.0020234, - 0.0068296, - -0.025864, - 0.013798, - -0.013588, - -0.037584, - -0.0058119, - -0.0061344, - -0.014034, - 0.028757, - -0.021963, - -0.0071261, - 0.015024, - -0.049639, - -0.0052088, - 0.016543, - -0.01903, - -0.0057834, - -0.012895, - -0.015531, - -0.0011513, - -0.0045893, - 0.013761, - -0.050081, - -0.0030728, - -0.0174, - 0.049569, - -0.047492, - -0.065558, - -0.020303, - 0.018405, - -0.0011305, - -0.015876, - 0.022473, - -0.0073504, - 0.0020778, - -0.021837, - 0.024357, - 0.029379, - 0.048726, - -0.014401, - -0.018069, - 0.053448, - -0.00066753, - -0.0082204, - 0.049489, - -0.0052739, - -0.0092754, - -0.017918, - -0.02748, - 0.026296, - -0.0038017, - 0.0067878, - -0.049659, - -0.0025609, - 0.023835, - -0.0084811, - 0.0019858, - -0.043343, - -0.011798, - 0.065516, - 0.012402, - 0.030074, - -0.047861, - -0.027962, - 0.013293, - -0.012832, - 0.023167, - -0.011101, - -0.015714, - 0.0091849, - 0.044043, - 0.05358, - 0.011654, - 0.037501, - -0.010507, - -0.037125, - -0.013458, - -0.02199, - -0.00023503, - -0.0016789, - 0.039372, - 0.02554, - 0.027451, - -0.03876, - 0.011569, - 0.026228, - -0.0046845, - 0.012011, - 0.047233, - 0.0047518, - 0.00089997, - 0.012726, - -0.030322, - -0.0090647, - -0.015997, - 0.012729, - -0.012582, - 0.000018559, - 0.04601, - -0.0088752, - 0.022028, - 0.029658, - -0.045066, - 0.0022968, - 0.034904, - 0.030405, - 0.014812, - 0.038742, - -0.037404, - 0.015062, - 0.011172, - 0.015237, - -0.026622, - -0.013567, - -0.0096106, - 0.0067206, - -0.014802, - 0.076673, - 0.018089, - 0.016981, - -0.045435, - 0.044574, - -0.013434, - 0.016229, - -0.024598, - 0.0029718, - -0.0251, - 0.017691, - -0.0013723, - -0.0068507, - -0.062041, - -0.024215, - -0.020007, - -0.026094, - -0.0036968, - 0.014988, - 0.0027429, - -0.0011925, - -0.031635, - 0.019923, - 0.063686, - -0.011146, - -0.00057115, - -0.015361, - 0.014045, - 0.018415, - 0.0034209, - 0.0062053, - -0.020461, - -0.0047227, - -0.01812, - 0.01422, - 0.038852, - 0.050806, - -0.024949, - -0.015968, - -0.033733, - 0.034277, - -0.0063225, - -0.026096, - -0.015788, - -0.0037031, - -0.030747, - -0.040595, - 0.032021, - -0.031458, - 0.0232, - -0.030191, - -0.017748, - -0.033479, - -0.0094709, - -0.01126, - 0.058205, - -0.0016257, - 0.003078, - -0.022162, - -0.0060173, - 0.008798, - 0.055194, - 0.00012892, - -0.00020139, - -0.026446, - -0.027069, - -0.028416, - -0.04208, - 0.048785, - 0.03145, - -0.012178, - 0.016633, - -0.027919, - 0.025367, - 0.057751, - 0.033214, - 0.005218, - -0.0090929, - -0.027404, - 0.0088525, - -0.010539, - 0.0030742, - -0.0099989, - -0.002935, - 0.043168, - -0.042313, - -0.0056253, - -0.028735, - -0.01743, - 0.046877, - 0.04697, - -0.032054, - 0.011242, - 0.022501, - 0.00035824, - -0.030776, - -0.013509, - -0.054493, - -0.012405, - -0.037409, - -0.006583, - -0.021604, - -0.013219, - -0.050991, - 0.044482, - -0.022121, - -0.033235, - 0.0029829, - -0.0099538, - 0.047878, - -0.0069554, - 0.013821, - -0.020557 - ], - "rule": [ - 0.0065022, - -0.017715, - -0.014419, - -0.026342, - -0.083192, - -0.069983, - 0.09205, - -0.1587, - -0.029293, - -0.0081931, - -0.0011925, - -0.099402, - 0.024779, - 0.029701, - 0.052203, - 0.05957, - 0.11029, - -0.00076713, - 0.10715, - 0.058874, - 0.059418, - -0.040858, - 0.054893, - 0.066255, - 0.084608, - 0.020298, - -0.053206, - -0.0564, - -0.024365, - -0.11386, - -0.057664, - -0.071415, - -0.061326, - -0.10921, - -0.015656, - -0.063341, - -0.0028947, - 0.090856, - 0.033806, - 0.049028, - -0.010559, - -0.16691, - -0.056111, - 0.039579, - -0.086031, - 0.02678, - 0.05494, - 0.013908, - 0.043198, - -0.0078825, - 0.084841, - 0.042155, - 0.01467, - 0.012463, - -0.070853, - -0.030331, - 0.13447, - 0.058027, - -0.10281, - -0.051528, - 0.0082147, - -0.021616, - 0.15019, - 0.031364, - 0.017784, - 0.042351, - 0.022157, - 0.048492, - 0.15887, - -0.084596, - -0.034602, - -0.07145, - -0.064067, - -0.053414, - 0.022621, - 0.0050082, - 0.015532, - -0.093719, - -0.13505, - 0.10445, - 0.05731, - 0.0060687, - -0.031499, - 0.11944, - 0.013883, - 0.019766, - 0.05665, - -0.017873, - 0.10623, - 0.01391, - 0.015137, - -0.030624, - -0.11956, - -0.04576, - -0.032209, - 0.014854, - -0.029395, - 0.050972, - 0.025239, - 0.022751, - 0.059161, - -0.022596, - 0.030277, - -0.13615, - -0.15855, - -0.092837, - 0.028988, - -0.014648, - -0.10632, - 0.02652, - -0.064968, - 0.0072445, - 0.094979, - -0.090799, - -0.094179, - 0.038367, - 0.013193, - -0.015561, - -0.07615, - -0.0060469, - 0.055929, - 0.02033, - -0.0014428, - 0.023018, - 0.093396, - -0.022687, - 0.075679, - -0.053718, - 0.0064393, - 0.2505, - -0.073319, - -0.0208, - -0.035871, - 0.04894, - -0.021567, - 0.021975, - -0.0084771, - 0.05987, - 0.057871, - -0.020197, - 0.10122, - -0.090495, - 0.043315, - -0.001869, - 0.0036138, - -0.040777, - 0.0071952, - -0.031492, - -0.0084872, - -0.11783, - 0.042677, - 0.068886, - -0.0049362, - -0.11126, - 0.11167, - 0.074975, - 0.050609, - -0.0089087, - -0.041141, - -0.034113, - 0.029157, - 0.012213, - -0.092518, - 0.042529, - 0.10149, - 0.030648, - 0.017709, - -0.015961, - 0.016112, - -0.048545, - 0.0058792, - 0.011641, - -0.011706, - 0.054155, - -0.084807, - 0.032758, - 0.0082986, - 0.063371, - -0.018429, - 0.041169, - 0.050264, - 0.032868, - -0.076266, - -0.0094881, - 0.0087214, - 0.031478, - 0.10473, - 0.11742, - 0.014622, - -0.017191, - -0.072192, - 0.1217, - -0.09802, - 0.074223, - -0.027997, - -0.0037298, - 0.032223, - 0.031884, - -0.085719, - 0.026901, - -0.21987, - 0.020376, - -0.03529, - -0.056545, - -0.039631, - 0.05574, - 0.098749, - -0.080637, - 0.045817, - -0.018646, - 0.12549, - 0.0096543, - 0.014614, - 0.071726, - -0.042831, - 0.042167, - 0.046995, - 0.0098681, - -0.016138, - -0.11175, - 0.05282, - -0.059587, - -0.051024, - 0.18329, - 0.056274, - 0.020316, - -0.0027376, - 0.096876, - -0.021829, - 0.048196, - -0.00054818, - -0.15528, - -0.028566, - -0.04061, - 0.045727, - -0.017964, - -0.071143, - -0.073315, - 0.035976, - 0.12585, - 0.17096, - -0.0023544, - 0.046554, - 0.025907, - -0.019588, - 0.034243, - 0.045143, - -0.0017233, - -0.068872, - -0.026246, - 0.097604, - 0.027652, - 0.077989, - 0.094402, - 0.13039, - -0.0052485, - 0.088303, - 0.11753, - -0.089428, - 0.057052, - -0.03895, - -0.019685, - 0.0189, - -0.090406, - 0.040419, - 0.034287, - 0.013827, - 0.015066, - -0.021296, - -0.054308, - 0.026947, - 0.12651, - -0.16997, - -0.077976, - 0.063232, - -0.0078832, - -0.049636, - -0.023586, - -0.015878, - -0.025695, - 0.12064, - -0.056667, - -0.040672, - 0.012753, - -0.013115, - 0.012559, - -0.017701, - 0.043075, - 0.028977, - 0.010879, - 0.0062802, - -0.038449, - 0.082442, - -0.077258, - 0.039877, - -0.11207, - -0.0445, - -0.062739, - -0.00029969, - 0.026569 - ], - "heath": [ - -0.025603, - -0.16827, - -0.020543, - 0.10065, - -0.025902, - -0.031801, - 0.019973, - -0.095168, - 0.1483, - -0.0028971, - -0.050005, - -0.096818, - 0.030465, - -0.029698, - 0.046984, - 0.014996, - 0.12802, - -0.011799, - 0.082348, - 0.03568, - -0.08011, - -0.0099962, - 0.18322, - 0.067499, - 0.059113, - -0.074306, - -0.027582, - 0.059148, - -0.0054637, - -0.084166, - 0.13085, - -0.023412, - -0.013554, - -0.036877, - -0.07342, - 0.043144, - 0.067049, - -0.0074488, - 0.11358, - 0.03598, - 0.070691, - -0.29568, - -0.030902, - -0.015881, - -0.066691, - -0.080265, - -0.0065793, - -0.082183, - -0.090646, - 0.13172, - 0.025954, - 0.077049, - -0.0063977, - -0.067139, - -0.10184, - -0.018025, - -0.11436, - 0.0029, - -0.064987, - -0.058164, - -0.012294, - -0.097027, - 0.13889, - -0.041347, - 0.016139, - 0.042551, - -0.075233, - -0.038571, - -0.030004, - -0.0076694, - -0.0017976, - 0.015146, - 0.0026517, - 0.01908, - -0.018697, - 0.011872, - -0.13515, - -0.081132, - -0.054593, - 0.055955, - -0.072428, - -0.0042428, - -0.029394, - 0.10701, - -0.088466, - 0.094396, - -0.041944, - 0.019132, - -0.022885, - -0.036351, - 0.0039373, - 0.040375, - -0.11565, - 0.08207, - -0.0022688, - 0.17138, - 0.046735, - 0.15211, - 0.022626, - 0.055235, - -0.023782, - 0.02301, - 0.094879, - 0.089793, - 0.082987, - -0.15776, - 0.028644, - -0.092754, - 0.097791, - 0.015904, - -0.11529, - 0.11667, - 0.14235, - 0.063579, - -0.006105, - -0.021569, - -0.012005, - 0.018826, - -0.013628, - -0.023887, - -0.045509, - 0.030998, - -0.041355, - -0.068297, - 0.081199, - -0.087174, - -0.048034, - -0.081588, - 0.043355, - 0.11264, - 0.091932, - -0.044966, - -0.024991, - 0.051784, - -0.0097364, - -0.017654, - 0.029844, - 0.0045385, - -0.078258, - 0.021833, - -0.0056121, - -0.064387, - -0.099466, - 0.048777, - 0.074749, - 0.043715, - 0.09285, - -0.033782, - -0.056278, - -0.097079, - 0.024946, - 0.091559, - 0.055865, - -0.078817, - 0.067189, - 0.0069016, - -0.014213, - -0.018198, - -0.0095591, - -0.082435, - -0.0075631, - -0.050224, - -0.11786, - 0.039347, - -0.09488, - -0.09501, - 0.0021421, - -0.00046211, - -0.0070584, - 0.026371, - -0.051347, - -0.073456, - -0.082811, - 0.071072, - 0.032127, - 0.045582, - 0.0062492, - -0.01917, - -0.036251, - 0.020639, - 0.058613, - 0.055078, - -0.10264, - 0.042874, - -0.07275, - -0.063934, - -0.036567, - 0.1132, - -0.023832, - 0.091016, - 0.044297, - -0.052805, - 0.025332, - -0.03368, - -0.072144, - -0.11732, - 0.034907, - 0.024313, - 0.0052277, - -0.022461, - -0.21933, - -0.022109, - 0.044224, - 0.021565, - 0.037261, - 0.011662, - 0.04286, - 0.03109, - -0.029339, - -0.019554, - 0.18381, - -0.033039, - -0.033079, - 0.097443, - 0.036226, - -0.027572, - 0.03734, - 0.047751, - -0.011555, - 0.0070317, - -0.0003181, - -0.01083, - -0.077138, - 0.10385, - 0.083606, - -0.022729, - -0.013041, - 0.12585, - 0.094783, - 0.035263, - -0.02452, - -0.025165, - -0.0848, - 0.010651, - 0.1007, - 0.055633, - 0.0017421, - 0.11627, - -0.043215, - -0.07354, - 0.063786, - 0.039065, - 0.00019688, - -0.031875, - 0.014562, - 0.032038, - 0.065562, - -0.017095, - -0.049081, - 0.0092183, - 0.081215, - -0.043988, - -0.048442, - -0.084996, - 0.0045725, - -0.0064999, - -0.0354, - 0.0085647, - 0.12793, - -0.026966, - 0.044867, - -0.074282, - -0.10754, - -0.070903, - -0.006899, - -0.13784, - -0.019545, - -0.022764, - 0.027642, - -0.056696, - -0.10578, - 0.090855, - -0.10445, - -0.035376, - 0.094962, - -0.0065117, - 0.012487, - 0.058886, - 0.039916, - -0.012697, - 0.24047, - 0.01731, - 0.018248, - 0.0088769, - -0.014859, - 0.13722, - -0.0049004, - 0.012245, - -0.020758, - -0.04999, - 0.10232, - 0.024576, - -0.053119, - 0.017925, - -0.13739, - -0.010776, - -0.029957, - 0.11986, - 0.032392, - -0.0028491 - ], - "atheism": [ - 0.035736, - -0.064424, - 0.118, - -0.092182, - -0.013554, - -0.043098, - 0.094341, - -0.090873, - 0.017496, - 0.073842, - 0.027169, - -0.041653, - 0.029219, - -0.019478, - -0.053185, - -0.052605, - 0.11563, - -0.016988, - 0.030568, - -0.078874, - -0.027627, - 0.026189, - 0.0010188, - 0.058215, - -0.061641, - 0.019592, - 0.063275, - 0.007591, - 0.067621, - 0.043316, - 0.066055, - -0.028418, - 0.044296, - 0.012793, - -0.023858, - 0.050062, - -0.045788, - -0.064862, - 0.013012, - 0.034827, - -0.06604, - -0.084512, - -0.013799, - 0.081256, - -0.02221, - 0.016549, - -0.11708, - 0.0016452, - 0.030577, - -0.026494, - -0.02505, - -0.064552, - 0.052927, - 0.018238, - -0.079679, - 0.075832, - 0.05999, - 0.0099337, - -0.054583, - -0.025483, - 0.037188, - -0.0237, - 0.027547, - -0.0067402, - -0.047545, - -0.053512, - 0.06647, - -0.040366, - 0.020172, - -0.020091, - 0.029918, - 0.013175, - -0.030502, - -0.004552, - -0.073886, - -0.031128, - -0.02482, - 0.005622, - 0.068832, - 0.078546, - 0.026573, - 0.074109, - -0.10778, - 0.11077, - 0.0048528, - -0.028463, - -0.028672, - 0.014158, - -0.059494, - 0.1066, - -0.0048549, - 0.048204, - -0.084694, - 0.018726, - 0.058741, - 0.015847, - 0.0092798, - -0.060917, - -0.025394, - 0.036633, - -0.010383, - -0.0045072, - 0.025061, - -0.0082108, - -0.040035, - -0.069094, - 0.031907, - 0.031874, - -0.012708, - -0.027808, - -0.029557, - 0.08132, - 0.020834, - -0.012755, - -0.017788, - 0.065794, - 0.13031, - 0.075555, - -0.032542, - 0.014129, - -0.048675, - 0.0039174, - -0.10771, - -0.079175, - 0.041372, - -0.000091681, - -0.11056, - -0.03675, - 0.040134, - 0.11939, - 0.0099355, - -0.053563, - 0.060324, - -0.051153, - -0.081136, - 0.036259, - -0.024262, - 0.023361, - -0.055656, - -0.07051, - 0.04813, - -0.059306, - -0.012259, - -0.049825, - -0.033371, - -0.040628, - -0.020674, - -0.065478, - 0.072362, - -0.035964, - 0.040167, - 0.019854, - -0.038458, - -0.064087, - -0.007534, - 0.032334, - -0.051881, - -0.013693, - 0.048234, - 0.038194, - 0.048336, - -0.0033458, - -0.11938, - -0.034429, - 0.074339, - -0.088126, - 0.057831, - 0.11386, - -0.0046545, - -0.074734, - -0.035047, - -0.059562, - -0.0077376, - 0.094113, - 0.035959, - 0.051797, - 0.078503, - 0.01846, - 0.063493, - -0.050073, - 0.027409, - -0.018664, - 0.0084892, - 0.018781, - 0.054133, - -0.063444, - 0.031346, - 0.12102, - -0.05715, - -0.15188, - 0.075939, - 0.051924, - -0.05792, - -0.015903, - 0.064711, - -0.033515, - -0.052738, - 0.0019544, - -0.015665, - -0.10728, - -0.19363, - 0.044649, - 0.00029191, - 0.013655, - 0.0014824, - 0.075446, - 0.029358, - -0.015317, - 0.036575, - -0.016764, - 0.094401, - 0.021193, - 0.0116, - -0.019813, - 0.074837, - 0.084257, - -0.042491, - -0.030418, - 0.012231, - -0.086323, - -0.065557, - 0.10353, - -0.014443, - 0.090054, - -0.0090429, - -0.050645, - 0.062378, - 0.072752, - 0.044065, - -0.068324, - 0.0040844, - -0.031924, - -0.097892, - -0.053374, - 0.08, - 0.040633, - 0.051041, - -0.077639, - 0.015846, - -0.05434, - 0.0093706, - -0.11373, - 0.038327, - 0.015891, - 0.02722, - -0.085731, - -0.019267, - -0.1026, - -0.17036, - -0.043146, - 0.10556, - -0.052029, - -0.060239, - -0.028202, - 0.068006, - -0.084417, - 0.045796, - -0.004925, - -0.012934, - -0.037104, - 0.024848, - 0.00032672, - 0.066969, - 0.039597, - 0.047319, - -0.039644, - -0.0037764, - -0.0036519, - 0.14298, - 0.0070265, - -0.0050797, - 0.076547, - -0.084714, - -0.0082859, - -0.0025002, - -0.051651, - 0.019561, - -0.12818, - -0.082384, - -0.1083, - 0.11036, - 0.003212, - 0.030073, - -0.045953, - -0.040339, - -0.015802, - 0.060484, - 0.038014, - -0.040175, - 0.072372, - 0.0057792, - -0.0054714, - -0.017191, - 0.04017, - -0.046574, - -0.029024, - 0.068541, - 0.077393, - 0.023322, - 0.012125 - ], - "beverage": [ - -0.077276, - -0.063305, - -0.02938, - 0.0087007, - 0.012237, - -0.015895, - 0.04285, - -0.056859, - 0.026059, - 0.055203, - -0.010073, - -0.020947, - 0.0077245, - 0.091358, - 0.031439, - 0.016938, - 0.080447, - -0.043625, - -0.0083419, - 0.014332, - 0.041826, - 0.016308, - 0.0050442, - 0.031131, - -0.026154, - -0.074747, - -0.055408, - 0.056005, - -0.0081677, - -0.025599, - 0.0066276, - -0.017348, - -0.013643, - -0.021301, - 0.057711, - 0.019245, - 0.011123, - 0.036034, - -0.0072005, - 0.029733, - 0.021676, - -0.14083, - -0.033994, - -0.025261, - 0.017133, - -0.055131, - 0.012526, - 0.027481, - -0.039506, - 0.031178, - -0.040827, - 0.038669, - 0.064571, - -0.079448, - -0.026314, - 0.022123, - -0.014644, - -0.05829, - 0.02213, - -0.023121, - 0.045314, - -0.016939, - 0.14014, - 0.079565, - 0.0064428, - 0.068585, - -0.016049, - 0.017388, - 0.047918, - 0.017168, - 0.063381, - -0.024697, - 0.008197, - 0.062961, - 0.0073766, - -0.06712, - -0.075355, - 0.014252, - -0.024722, - 0.019866, - -0.023219, - -0.020628, - -0.013512, - 0.021037, - -0.093735, - -0.091773, - -0.029861, - -0.03021, - -0.049411, - -0.046392, - 0.048462, - 0.060724, - -0.079921, - -0.034311, - -0.029604, - 0.11409, - -0.017257, - 0.026946, - 0.012072, - 0.0090993, - -0.027796, - 0.021614, - -0.034052, - -0.074105, - -0.019579, - -0.10209, - -0.13581, - 0.059919, - 0.01561, - 0.052605, - 0.014682, - 0.086313, - 0.042418, - 0.058925, - 0.064386, - -0.058983, - -0.054974, - -0.058561, - -0.042559, - -0.00124, - 0.0091457, - 0.043273, - 0.00069683, - -0.037376, - 0.12274, - 0.017492, - -0.013006, - -0.068844, - 0.016808, - 0.041617, - 0.019531, - -0.023103, - -0.00472, - -0.043092, - -0.047449, - -0.011979, - -0.016166, - 0.032706, - -0.02302, - 0.0078188, - 0.096149, - -0.03104, - -0.0033535, - -0.082465, - 0.0067031, - -0.048212, - 0.059179, - -0.005056, - -0.026241, - 0.01557, - 0.02488, - 0.048059, - 0.012609, - -0.061133, - 0.02636, - -0.040977, - -0.15794, - 0.029637, - -0.01716, - 0.064771, - 0.0056861, - 0.0036518, - -0.057476, - 0.027964, - 0.064097, - 0.046811, - -0.080723, - -0.11164, - 0.067256, - 0.0063091, - 0.026149, - 0.033085, - -0.040861, - 0.07417, - 0.012874, - 0.04518, - -0.077699, - 0.11433, - -0.050031, - 0.019931, - -0.04051, - -0.020738, - 0.06639, - -0.069323, - -0.022124, - -0.060799, - 0.018859, - 0.1141, - 0.072751, - 0.00082374, - 0.049413, - 0.049943, - 0.035242, - 0.02222, - 0.070441, - -0.040071, - -0.019405, - -0.088582, - -0.024294, - -0.036302, - -0.13335, - 0.040865, - 0.019705, - -0.036405, - 0.002111, - 0.070502, - 0.015306, - 0.026998, - -0.0002455, - -0.01292, - 0.09757, - -0.0027347, - 0.035814, - 0.051114, - 0.030334, - 0.05725, - 0.01853, - -0.034076, - -0.0059144, - -0.020434, - 0.040809, - -0.030461, - 0.01656, - 0.054705, - -0.0012414, - 0.046009, - 0.017023, - 0.038869, - -0.036702, - 0.049851, - -0.013392, - -0.0138, - -0.034818, - -0.042105, - 0.01708, - -0.015356, - -0.075815, - -0.072859, - 0.038218, - -0.096753, - 0.0083121, - -0.029616, - -0.029174, - -0.063367, - -0.011615, - 0.027775, - -0.0033698, - 0.015462, - -0.042931, - 0.014135, - -0.033868, - -0.049415, - -0.05351, - 0.033632, - -0.010967, - 0.0063346, - -0.0007702, - 0.020132, - 0.026223, - -0.006472, - 0.069536, - -0.046744, - 0.028477, - -0.019744, - 0.0088244, - -0.082922, - 0.018891, - -0.036798, - 0.031912, - 0.073887, - -0.012323, - 0.07077, - -0.096455, - -0.044269, - -0.010384, - 0.00073212, - -0.10723, - 0.029368, - -0.07961, - 0.043942, - 0.13578, - 0.049755, - -0.019315, - 0.038388, - -0.027747, - -0.0025362, - -0.044728, - -0.0048258, - 0.066753, - -0.040883, - 0.046916, - 0.041239, - -0.030042, - -0.018072, - -0.028396, - 0.0047232, - 0.05636, - -0.0085226, - -0.054851, - 0.012576 - ], - "functionalism": [ - 0.050916, - 0.0119, - -0.0022961, - -0.031534, - -0.000061836, - -0.0079465, - 0.037916, - -0.078775, - -0.039842, - -0.01805, - 0.015194, - -0.0050929, - -0.010881, - 0.0288, - 0.022575, - 0.0044406, - 0.059569, - 0.019408, - 0.027044, - 0.016143, - -0.032167, - -0.0080865, - 0.042421, - 0.02139, - -0.0043294, - -0.004443, - 0.012075, - 0.058416, - 0.044997, - 0.052755, - -0.0034902, - -0.038489, - 0.0074476, - -0.014511, - -0.012218, - 0.027357, - 0.041187, - 0.015857, - 0.011052, - -0.0024621, - 0.010586, - -0.074423, - -0.042557, - 0.038853, - -0.010748, - -0.023051, - -0.02264, - 0.0039435, - 0.035348, - -0.036971, - -0.043603, - 0.0010271, - 0.0082481, - 0.010246, - -0.018647, - -0.027799, - 0.028465, - 0.014296, - -0.007429, - 0.010787, - -0.0113, - -0.025606, - 0.035007, - 0.028435, - 0.01136, - 0.0065913, - 0.018146, - 0.0049499, - -0.038029, - 0.059871, - 0.060959, - -0.042782, - -0.012384, - -0.055048, - -0.0018075, - -0.078654, - -0.018965, - -0.014929, - -0.0056657, - 0.0074486, - -0.015744, - -0.001482, - -0.014543, - 0.023695, - 0.047018, - -0.05116, - -0.012453, - -0.0071465, - 0.0030343, - 0.056499, - -0.025951, - 0.025791, - -0.051049, - 0.014082, - 0.019355, - 0.00096023, - -0.022396, - -0.072315, - -0.019656, - 0.070511, - 0.0222, - 0.040285, - -0.029854, - 0.031817, - -0.053412, - -0.041874, - 0.01649, - 0.024665, - -0.044628, - -0.044479, - 0.0078793, - 0.034694, - 0.021115, - 0.0072005, - -0.0053888, - -0.0047588, - -0.03774, - 0.016737, - -0.027494, - 0.073511, - -0.033813, - -0.052331, - -0.045999, - -0.03991, - 0.081994, - 0.012501, - -0.01934, - -0.014154, - 0.084907, - 0.088834, - -0.01648, - -0.047702, - 0.058499, - 0.0068943, - -0.031745, - 0.034741, - 0.0019633, - 0.045056, - -0.027805, - -0.030522, - 0.072684, - 0.0076765, - 0.030209, - 0.06393, - 0.021701, - -0.067546, - 0.069496, - 0.018976, - 0.015174, - 0.020655, - 0.029793, - 0.02512, - 0.0069773, - -0.014158, - -0.016346, - 0.02659, - -0.013379, - -0.024822, - 0.0095818, - -0.0092073, - 0.024187, - -0.049156, - -0.065322, - -0.016217, - 0.0069406, - -0.017887, - 0.0073147, - 0.032618, - -0.015052, - -0.012924, - 0.016922, - -0.010773, - -0.0056198, - 0.01148, - 0.035279, - 0.017328, - -0.012912, - 0.027898, - -0.041434, - -0.013808, - -0.05225, - -0.0022027, - -0.021241, - -0.037991, - 0.019829, - -0.044399, - -0.019819, - 0.061549, - 0.0032283, - -0.007757, - 0.047279, - 0.053089, - -0.057335, - -0.022655, - 0.019383, - -0.0080357, - 0.030926, - -0.0067181, - 0.012559, - 0.041447, - -0.10434, - 0.015897, - -0.029045, - -0.047099, - -0.010883, - -0.011876, - -0.0072438, - -0.037059, - -0.014857, - 0.01098, - 0.077865, - 0.033445, - -0.021985, - -0.0067068, - 0.051857, - 0.10778, - -0.048907, - -0.034787, - -0.019142, - -0.029202, - -0.058955, - -0.032006, - -0.013676, - 0.061396, - 0.031621, - -0.022352, - 0.029853, - 0.046068, - -0.011973, - -0.012989, - 0.0066668, - -0.040081, - -0.023837, - -0.03779, - -0.0084628, - -0.024653, - -0.0014132, - -0.0418, - 0.015674, - 0.06067, - 0.027315, - -0.010064, - -0.045796, - 0.026054, - -0.031427, - 0.00217, - -0.046155, - -0.031047, - -0.030438, - -0.027897, - 0.015336, - 0.014231, - -0.020775, - 0.005548, - 0.0044354, - 0.013378, - 0.029517, - -0.0027334, - -0.003239, - -0.0067581, - 0.048237, - 0.0082283, - 0.036817, - 0.021444, - 0.025549, - -0.0034075, - -0.029354, - -0.020287, - -0.0034986, - 0.017226, - -0.014291, - 0.059422, - -0.012052, - -0.028392, - -0.0060243, - -0.049472, - 0.048716, - 0.016933, - 0.036347, - 0.01288, - 0.049813, - -0.00085246, - -0.033099, - -0.011725, - -0.018063, - -0.014579, - 0.0035198, - 0.019982, - 0.00053083, - 0.016405, - -0.071586, - -0.0082582, - 0.028381, - -0.041922, - 0.01315, - 0.0045123, - -0.017583, - 0.074771, - 0.0050998, - 0.012361 - ], - "narrative": [ - -0.017752, - -0.018506, - -0.0048056, - 0.092319, - -0.019897, - 0.014409, - -0.037784, - -0.076432, - -0.051483, - 0.030584, - 0.023247, - -0.061111, - -0.00022083, - 0.026191, - -0.0001204, - -0.010385, - 0.072669, - -0.019271, - -0.016427, - 0.042811, - -0.010278, - 0.0041218, - -0.019154, - 0.051251, - -0.025051, - 0.0026991, - -0.028621, - 0.051404, - 0.010327, - 0.0078937, - -0.078052, - 0.0111, - -0.027278, - -0.090526, - 0.020946, - 0.00019939, - -0.013044, - 0.063468, - -0.067237, - -0.039872, - -0.043221, - -0.11508, - 0.074024, - 0.082127, - 0.0029252, - -0.0073987, - 0.015802, - -0.029115, - -0.0040805, - -0.034106, - -0.015536, - 0.0086707, - -0.043803, - -0.014838, - -0.0063397, - -0.002826, - 0.0062147, - -0.034803, - -0.059672, - 0.022067, - -0.059296, - -0.0029963, - 0.11231, - -0.03614, - 0.087315, - -0.028073, - 0.010886, - 0.045179, - -0.01634, - 0.016447, - -0.0074344, - -0.021778, - -0.0086036, - 0.012859, - 0.035967, - -0.019432, - 0.031296, - -0.018317, - 0.038642, - -0.051687, - -0.0037402, - -0.030876, - -0.062691, - 0.067581, - -0.0098649, - -0.026914, - 0.02714, - 0.006991, - -0.0099342, - 0.027012, - 0.018352, - 0.015977, - -0.085869, - -0.016569, - -0.032547, - 0.048479, - -0.015906, - -0.028949, - 0.025963, - 0.022732, - 0.050106, - -0.010034, - -0.006858, - 0.016759, - -0.032383, - -0.073274, - -0.0025384, - -0.0015706, - -0.055888, - 0.050871, - 0.0066285, - 0.035652, - 0.046669, - -0.012853, - -0.091543, - 0.04754, - -0.018161, - 0.0057571, - -0.049138, - 0.016494, - 0.024823, - -0.031424, - 0.026264, - -0.0010325, - 0.051257, - -0.0012094, - -0.015393, - -0.031223, - 0.020287, - 0.080708, - -0.0085229, - -0.033394, - -0.037437, - -0.0038768, - 0.024958, - -0.010255, - 0.014888, - 0.061929, - 0.032736, - -0.032103, - 0.020558, - -0.047698, - 0.013936, - 0.010899, - 0.0025046, - -0.07684, - -0.038365, - 0.018776, - 0.014051, - -0.0030754, - 0.017724, - 0.06096, - 0.029431, - -0.068251, - -0.0036349, - 0.026469, - 0.0059176, - -0.012647, - -0.014979, - 0.029749, - 0.03086, - 0.058104, - -0.049459, - -0.019045, - -0.041175, - 0.026251, - 0.020251, - -0.012159, - 0.015309, - -0.047753, - -0.0086468, - -0.0091018, - -0.0097468, - -0.030985, - 0.01668, - 0.033097, - 0.013611, - 0.0044016, - -0.041167, - -0.021662, - -0.0054715, - 0.02672, - 0.031269, - -0.028199, - -0.051265, - 0.00050901, - 0.088735, - 0.073318, - -0.0044154, - -0.030979, - 0.032057, - 0.064669, - 0.043659, - -0.045316, - -0.027758, - 0.029484, - -0.022861, - -0.012634, - -0.03478, - 0.043496, - -0.13238, - 0.031559, - -0.0040734, - -0.055236, - 0.047916, - 0.033785, - -0.037155, - 0.023436, - 0.040855, - -0.0016999, - 0.088212, - -0.017252, - -0.01918, - 0.016422, - 0.0042233, - 0.043721, - 0.034525, - 0.019499, - -0.030844, - 0.028072, - 0.0048234, - -0.010235, - 0.0060321, - 0.087978, - 0.049274, - -0.055151, - 0.089499, - 0.039186, - -0.022055, - 0.0014328, - -0.014049, - -0.09861, - -0.0073362, - 0.016784, - 0.0075155, - 0.023157, - 0.025757, - -0.059972, - 0.022865, - -0.052327, - 0.080492, - 0.026583, - -0.041756, - 0.031122, - -0.08976, - -0.025147, - -0.045707, - -0.028471, - -0.018302, - 0.0093469, - 0.073408, - -0.0090755, - -0.000050067, - 0.039143, - -0.026685, - 0.016475, - 0.013934, - -0.0040682, - 0.053507, - 0.02997, - 0.050434, - 0.0070658, - 0.010925, - -0.017454, - 0.062001, - -0.02705, - -0.010426, - 0.021856, - 0.021676, - -0.074822, - 0.014944, - 0.054109, - -0.080881, - -0.032165, - 0.0046768, - -0.051114, - 0.014073, - -0.005957, - 0.020857, - 0.060916, - 0.073749, - -0.070406, - 0.037576, - -0.04291, - 0.0022463, - 0.025659, - 0.036362, - 0.027386, - 0.029137, - -0.010439, - 0.052548, - -0.0045993, - 0.029529, - -0.03119, - -0.0023625, - -0.0038944, - 0.041685, - -0.022808, - 0.0035836, - 0.049596 - ], - "biotechnology": [ - -0.076912, - -0.037264, - -0.007539, - -0.00012377, - -0.0050287, - 0.0081283, - 0.036529, - -0.082336, - 0.044004, - 0.017585, - -0.010263, - -0.0071109, - 0.036761, - 0.0090372, - 0.013161, - -0.0083262, - 0.088121, - 0.063756, - 0.017925, - -0.0091955, - 0.034156, - 0.034317, - 0.080467, - 0.047675, - -0.025011, - -0.054368, - -0.013317, - 0.04542, - 0.037446, - 0.012658, - 0.0056119, - -0.033143, - -0.011418, - -0.030781, - 0.031627, - 0.020144, - 0.0046212, - -0.040559, - 0.061486, - 0.043465, - -0.05761, - -0.081459, - -0.01816, - -0.036102, - 0.029506, - -0.015911, - -0.020689, - 0.025734, - 0.0060272, - 0.014352, - -0.0062645, - 0.01135, - -0.0022699, - 0.0029165, - -0.048725, - 0.031246, - 0.0056567, - 0.027088, - 0.018897, - -0.0043435, - 0.0011627, - 0.045696, - 0.055402, - 0.028624, - 0.030947, - -0.023826, - 0.039733, - -0.010099, - -0.0056672, - -0.016574, - 0.0085841, - -0.0018504, - -0.00011811, - 0.047622, - -0.043182, - 0.023822, - -0.02971, - -0.023282, - 0.021264, - 0.0045679, - -0.009032, - 0.014131, - -0.052129, - -0.012192, - -0.055807, - 0.0057866, - -0.011262, - -0.018759, - 0.018237, - 0.029407, - 0.0089437, - 0.02512, - -0.066767, - 0.0043942, - -0.007447, - 0.051767, - 0.058443, - -0.049072, - -0.045254, - 0.0064314, - -0.057779, - -0.029949, - 0.010051, - -0.049137, - -0.022861, - -0.044727, - -0.018717, - 0.008407, - 0.080054, - 0.016323, - -0.062245, - 0.059396, - 0.0086056, - -0.0073699, - 0.015159, - 0.05418, - -0.014332, - -0.013519, - -0.035916, - 0.042212, - -0.064731, - 0.0042324, - -0.012913, - -0.031671, - 0.025891, - 0.0076703, - -0.057462, - -0.042681, - -0.01417, - 0.07609, - 0.0099787, - 0.0025155, - -0.028222, - -0.013511, - 0.031291, - -0.03104, - 0.02613, - -0.0075381, - -0.022807, - 0.068312, - -0.0054356, - 0.013026, - -0.0094168, - 0.053973, - -0.041437, - -0.021918, - -0.0085356, - 0.011879, - -0.0027936, - -0.042587, - 0.069053, - 0.053429, - 0.03124, - -0.06446, - 0.054311, - 0.036265, - -0.0021518, - 0.026001, - 0.01147, - 0.012922, - 0.028474, - 0.0032843, - -0.06417, - 0.013476, - 0.013111, - 0.0021327, - -0.073964, - -0.011782, - -0.0038181, - -0.042455, - 0.0068514, - 0.010838, - 0.013662, - -0.029912, - 0.00071648, - 0.024109, - 0.0022811, - 0.038828, - -0.052068, - -0.0014737, - 0.0022661, - 0.050241, - 0.029157, - -0.023421, - 0.0054968, - -0.0071915, - -0.038458, - 0.0664, - -0.036407, - -0.016082, - -0.037094, - 0.050505, - -0.017339, - -0.033504, - -0.0018809, - -0.016305, - -0.034696, - -0.0068813, - 0.013114, - -0.030081, - -0.11048, - -0.0080626, - 0.043907, - -0.047093, - -0.052435, - 0.015951, - -0.025477, - -0.016711, - -0.0049414, - 0.010408, - 0.089714, - 0.017889, - 0.015643, - 0.055313, - 0.022353, - 0.018534, - 0.025394, - -0.00066716, - -0.020622, - -0.031627, - -0.016847, - 0.015405, - -0.013362, - 0.061044, - -0.05117, - -0.014993, - -0.00082803, - 0.027649, - 0.042413, - -0.027774, - -0.032044, - -0.018261, - -0.03365, - -0.023749, - 0.023478, - -0.0057687, - -0.022889, - -0.013284, - -0.00026888, - -0.022028, - 0.0076812, - 0.048214, - 0.060374, - 0.019474, - 0.012628, - -0.0016354, - 0.0014966, - 0.0098733, - 0.047467, - 0.022133, - 0.025414, - -0.059985, - -0.047229, - -0.069249, - -0.029976, - 0.050722, - 0.013431, - 0.017349, - 0.032795, - 0.042536, - 0.02941, - 0.027918, - 0.046029, - 0.019833, - 0.019557, - -0.016211, - 0.0023142, - -0.019081, - -0.016214, - -0.014059, - -0.0011406, - 0.059715, - -0.061445, - -0.019581, - -0.049762, - -0.016838, - 0.02243, - 0.022717, - -0.030283, - -0.055111, - 0.055911, - -0.015138, - -0.03255, - -0.027109, - -0.033134, - 0.026302, - -0.05395, - -0.0096901, - 0.015643, - 0.0065729, - -0.0079488, - 0.025529, - -0.013291, - 0.011966, - -0.047862, - -0.012961, - -0.035297, - 0.043386, - -0.0028611, - -0.023978 - ], - "overseas": [ - -0.025853, - -0.029895, - -0.0028255, - -0.025477, - 0.027066, - 0.018761, - -0.0023218, - -0.093083, - 0.061871, - 0.024025, - -0.045996, - -0.038129, - -0.022922, - -0.00063968, - -0.049178, - 0.054244, - 0.090877, - -0.053294, - 0.02994, - -0.0020881, - 0.016392, - 0.020089, - 0.040857, - 0.06552, - 0.044194, - 0.04774, - 0.0080207, - 0.01195, - -0.0065386, - -0.01188, - -0.030623, - -0.02165, - -0.08832, - -0.025503, - 0.041923, - 0.041167, - -0.0177, - -0.01008, - 0.061869, - 0.026677, - -0.0036239, - -0.06235, - -0.0030173, - -0.054723, - -0.0023018, - 0.016443, - -0.018343, - -0.035206, - -0.0051981, - 0.016038, - -0.019316, - 0.0080984, - 0.0074175, - 0.021272, - -0.074816, - 0.044829, - 0.0061677, - 0.018697, - -0.023157, - 0.012424, - 0.033307, - 0.036079, - 0.1244, - 0.048062, - -0.0056542, - -0.11997, - -0.027304, - -0.066556, - 0.010193, - -0.0021479, - -0.0056725, - -0.01143, - 0.068222, - 0.026608, - 0.020981, - -0.022053, - 0.062922, - -0.011751, - 0.0084215, - -0.033774, - 0.018496, - 0.02324, - -0.034345, - 0.090593, - -0.033084, - -0.0080324, - 0.018347, - -0.00093522, - -0.0022168, - 0.0021276, - -0.072209, - 0.05069, - -0.10235, - 0.050811, - -0.0018423, - 0.027783, - 0.0094585, - -0.001787, - 0.010828, - -0.065514, - 0.072759, - -0.017523, - -0.044042, - -0.050185, - 0.0555, - -0.053869, - -0.037059, - 0.026694, - 0.029149, - 0.0070174, - -0.0043703, - 0.12945, - 0.042583, - 0.07684, - -0.04267, - -0.012928, - 0.021315, - -0.03518, - -0.041654, - -0.019623, - 0.063321, - -0.074494, - -0.050138, - -0.010563, - 0.0074307, - 0.038814, - -0.036399, - -0.051811, - -0.0083317, - 0.0045368, - 0.0082475, - 0.051128, - -0.0066814, - -0.033902, - 0.030843, - -0.024929, - -0.007665, - 0.04984, - -0.049442, - 0.021905, - -0.01787, - 0.033115, - 0.04255, - 0.030667, - 0.015778, - 0.033194, - -0.039647, - -0.008497, - -0.010301, - -0.035579, - 0.074461, - 0.09261, - -0.069753, - -0.030016, - -0.0058212, - -0.040323, - -0.082254, - 0.015009, - 0.023956, - -0.028917, - 0.015811, - -0.035694, - 0.024704, - -0.0041296, - -0.0042472, - 0.035451, - 0.021581, - -0.035763, - 0.0041933, - -0.013492, - 0.021302, - 0.061861, - -0.094149, - -0.0041056, - -0.09015, - 0.045847, - -0.021141, - -0.01889, - -0.030535, - 0.049078, - 0.046352, - 0.013679, - 0.036278, - -0.023455, - 0.035582, - -0.014612, - 0.045862, - 0.084786, - 0.0063362, - 0.0018654, - -0.008228, - 0.054479, - 0.015884, - -0.11198, - -0.025422, - 0.036196, - 0.053178, - 0.0087479, - 0.0040876, - 0.0019481, - -0.15097, - 0.073615, - -0.0086411, - -0.0053179, - -0.030357, - -0.02342, - 0.00084147, - -0.052435, - 0.044397, - -0.025733, - 0.10543, - 0.010325, - 0.03837, - -0.02113, - -0.016081, - -0.026336, - -0.003285, - 0.014174, - 0.039692, - -0.027481, - -0.017235, - -0.021999, - 0.055512, - 0.080243, - -0.020801, - 0.028817, - -0.062119, - 0.05773, - 0.037693, - -0.072466, - 0.037759, - -0.052882, - -0.071396, - -0.047293, - 0.030058, - -0.016926, - 0.027544, - 0.05484, - 0.032186, - -0.035146, - 0.0061581, - -0.068826, - 0.023302, - -0.041964, - -0.0094197, - 0.029951, - 0.0076805, - -0.049603, - -0.0057356, - 0.01743, - 0.015859, - 0.01035, - 0.046938, - 0.011583, - -0.0044912, - 0.048791, - 0.025928, - 0.014709, - 0.028093, - 0.0088756, - -0.049844, - -0.039267, - -0.021163, - 0.013046, - 0.04294, - 0.072557, - 0.0067369, - 0.000082519, - 0.01465, - 0.03948, - -0.013706, - 0.072501, - -0.12288, - -0.012129, - 0.010307, - -0.068011, - 0.057534, - 0.013651, - -0.045488, - 0.065127, - 0.013243, - 0.046077, - 0.0025454, - 0.01619, - 0.0057871, - -0.063933, - -0.0050258, - -0.06913, - -0.014888, - -0.028471, - 0.01951, - 0.068581, - -0.063051, - 0.076206, - -0.057567, - -0.028936, - -0.043373, - 0.0096306, - 0.038772, - -0.026566 - ], - "laws": [ - -0.034426, - -0.096129, - 0.088602, - 0.046734, - 0.0095735, - -0.075122, - 0.061141, - -0.10251, - 0.080918, - 0.068856, - 0.033324, - -0.13881, - 0.030432, - -0.066405, - 0.016518, - 0.066897, - 0.16457, - -0.021327, - 0.1052, - 0.087702, - 0.0097681, - 0.023479, - 0.068959, - 0.10114, - 0.017415, - 0.014681, - -0.0023028, - -0.043855, - 0.18309, - -0.036717, - 0.056687, - -0.090126, - -0.085529, - -0.14098, - 0.094292, - 0.074928, - -0.036079, - -0.082686, - -0.062879, - -0.022473, - 0.0029667, - -0.21698, - -0.043067, - 0.0041321, - -0.059236, - -0.017321, - -0.013027, - -0.022177, - 0.014717, - 0.014836, - -0.046133, - -0.060343, - 0.094833, - 0.038761, - -0.15027, - 0.0055447, - 0.13578, - -0.04045, - -0.038215, - 0.0079411, - 0.045432, - 0.010611, - 0.22817, - 0.095679, - -0.036287, - -0.035012, - -0.071321, - -0.0057144, - 0.14472, - 0.061173, - -0.030293, - -0.046809, - -0.071377, - -0.03137, - -0.012701, - -0.042594, - -0.036406, - -0.050688, - -0.098427, - 0.0040224, - 0.0021422, - 0.03381, - -0.072747, - 0.095539, - 0.0058916, - -0.0071493, - 0.079116, - -0.036094, - 0.11012, - 0.040045, - 0.018384, - -0.02801, - -0.14555, - 0.036897, - -0.064067, - 0.011999, - 0.01371, - 0.056569, - 0.054552, - -0.014409, - -0.0013914, - -0.019187, - -0.035231, - -0.10033, - -0.0009462, - -0.057547, - 0.11131, - 0.025209, - 0.081038, - -0.01372, - -0.05528, - 0.024888, - 0.097384, - -0.021494, - 0.10156, - 0.07963, - 0.0056415, - -0.020671, - -0.064993, - 0.074812, - -0.0056922, - 0.059567, - 0.0027506, - -0.075618, - 0.14735, - 0.044453, - -0.043458, - 0.0098644, - -0.03866, - 0.33042, - -0.035372, - 0.10291, - 0.084118, - 0.10471, - 0.047559, - -0.066316, - 0.11245, - 0.0090579, - 0.0093856, - -0.016213, - 0.10876, - -0.061497, - -0.029564, - 0.031842, - 0.052702, - 0.085737, - -0.097081, - 0.002719, - -0.031641, - -0.067183, - 0.0020182, - 0.12354, - 0.021281, - -0.051002, - 0.12286, - 0.093064, - -0.0010309, - -0.09605, - 0.041878, - -0.0287, - 0.10289, - 0.059906, - -0.072714, - 0.047324, - 0.02973, - -0.077765, - 0.087808, - -0.027711, - 0.0021568, - -0.015513, - -0.069848, - -0.051384, - 0.03091, - 0.00048853, - -0.1294, - 0.094222, - -0.13828, - 0.13899, - -0.049733, - -0.039408, - -0.00048415, - -0.03304, - 0.015272, - 0.017587, - -0.01454, - 0.075339, - 0.10341, - 0.17225, - 0.13538, - 0.037753, - 0.014592, - 0.18408, - -0.15638, - -0.009662, - 0.033579, - -0.042867, - 0.02859, - -0.023592, - -0.070702, - -0.042074, - -0.23383, - -0.079049, - 0.032352, - -0.047518, - 0.081075, - -0.0036723, - 0.1262, - -0.03288, - 0.078864, - -0.016303, - 0.17972, - 0.096526, - 0.076862, - 0.020674, - -0.045137, - -0.021299, - 0.067773, - 0.026718, - -0.15818, - -0.14806, - 0.025781, - -0.099973, - -0.019975, - 0.11938, - 0.099247, - -0.045662, - -0.001869, - 0.040582, - -0.061362, - 0.017964, - -0.040106, - -0.059619, - -0.11493, - -0.034033, - 0.0364, - -0.045873, - 0.002691, - 0.0799, - 0.071279, - 0.15725, - 0.026897, - -0.016828, - 0.018227, - 0.050148, - 0.033342, - -0.032733, - 0.012742, - -0.1118, - -0.040856, - 0.079567, - 0.040415, - -0.14373, - 0.019655, - 0.02169, - 0.020718, - 0.09934, - 0.081791, - 0.055181, - -0.024576, - -0.0060255, - -0.036015, - -0.059583, - -0.011745, - -0.085759, - 0.044407, - 0.011721, - 0.061676, - 0.061841, - 0.055683, - -0.050123, - -0.0037811, - 0.073799, - -0.14383, - -0.066832, - 0.027432, - 0.020281, - -0.07656, - 0.029116, - -0.071038, - -0.091279, - 0.13206, - 0.0034651, - -0.034476, - -0.075493, - -0.00070106, - 0.078508, - -0.084771, - 0.087128, - 0.070038, - 0.09876, - -0.015296, - -0.017246, - 0.0731, - -0.070785, - -0.082481, - -0.039653, - -0.034835, - -0.04637, - -0.11793, - -0.048515 - ], - "activism": [ - 0.065788, - -0.044481, - 0.032071, - 0.090878, - -0.060713, - 0.0081743, - 0.010683, - -0.083209, - 0.064386, - -0.02524, - 0.039389, - -0.06035, - -0.015118, - -0.024381, - -0.047322, - 0.013786, - 0.11937, - -0.01104, - 0.030058, - -0.016749, - -0.007051, - 0.039413, - 0.045301, - 0.061077, - -0.079276, - 0.0036911, - 0.017665, - 0.049017, - 0.032426, - 0.014499, - 0.067055, - -0.084422, - -0.056267, - -0.056867, - 0.020617, - 0.067877, - 0.034931, - 0.0045468, - -0.021181, - -0.046927, - -0.017336, - -0.10724, - 0.00080713, - 0.047211, - 0.075608, - 0.019775, - 0.033965, - 0.030832, - -0.0049925, - -0.033501, - -0.016575, - 0.041173, - 0.025873, - 0.063722, - -0.07451, - 0.015807, - 0.041391, - 0.039045, - -0.044567, - 0.029031, - -0.026063, - -0.016505, - 0.029881, - -0.0087632, - 0.044097, - -0.066786, - 0.067363, - -0.070733, - 0.027612, - -0.0046758, - 0.01108, - 0.04286, - -0.030255, - 0.0021229, - 0.043713, - -0.072245, - -0.038162, - -0.010753, - 0.028261, - -0.020266, - -0.068204, - 0.0064434, - -0.085623, - 0.04947, - 0.021326, - 0.004427, - -0.034858, - 0.013111, - 0.012489, - 0.052114, - -0.027529, - 0.064372, - -0.091949, - -0.0017113, - 0.046162, - 0.057327, - 0.022616, - -0.012372, - -0.033527, - -0.00766, - -0.022441, - -0.060554, - 0.063702, - 0.022137, - 0.026978, - -0.043653, - 0.038115, - 0.016102, - -0.029802, - 0.057353, - -0.063268, - 0.049657, - 0.043149, - -0.018857, - -0.028718, - 0.081822, - 0.039623, - -0.052757, - -0.056902, - 0.051607, - -0.0039245, - -0.039274, - 0.057533, - -0.057176, - 0.10503, - -0.0025901, - -0.015324, - -0.022815, - 0.074005, - 0.15447, - 0.0094634, - -0.03606, - 0.039105, - 0.032296, - 0.023065, - 0.029122, - 0.0083371, - -0.020969, - -0.0054119, - -0.057653, - 0.071337, - -0.027594, - 0.086722, - 0.10608, - -0.025591, - 0.011668, - -0.0022324, - 0.019612, - 0.010464, - -0.037319, - 0.063505, - 0.036456, - -0.052739, - -0.073635, - -0.042974, - 0.037196, - 0.024169, - 0.066318, - 0.024816, - -0.05512, - 0.02945, - 0.059617, - -0.11191, - 0.0042146, - -0.049337, - 0.032986, - 0.0018764, - -0.0077469, - -0.045513, - 0.0086845, - 0.053263, - -0.0089721, - 0.032135, - 0.035892, - -0.018025, - 0.067186, - -0.015607, - 0.018089, - -0.0037926, - -0.038419, - -0.055731, - 0.023733, - 0.023937, - -0.010002, - -0.01823, - -0.041782, - -0.0061186, - 0.11681, - 0.0073402, - -0.023239, - 0.025, - 0.063822, - -0.025799, - 0.010068, - 0.036965, - -0.029738, - 0.056405, - -0.00218, - -0.01618, - 0.0017899, - -0.15982, - 0.026456, - 0.078995, - 0.017841, - -0.032343, - 0.0069015, - 0.0092608, - 0.058732, - 0.063023, - -0.027238, - 0.10834, - 0.045489, - -0.024741, - -0.017279, - 0.077137, - 0.067017, - 0.020324, - -0.035184, - -0.021625, - -0.051767, - -0.027904, - -0.01145, - -0.03802, - 0.077938, - 0.0055269, - 0.04875, - 0.037557, - 0.11123, - -0.01883, - -0.022868, - 0.075439, - -0.052651, - -0.047491, - -0.046727, - 0.042611, - -0.024026, - 0.05836, - -0.025304, - -0.016751, - -0.022854, - 0.020863, - -0.0087511, - 0.01709, - 0.014056, - 0.051801, - 0.0026721, - -0.052183, - -0.092501, - 0.048706, - 0.0024233, - 0.12609, - -0.017967, - -0.090697, - -0.03127, - 0.068187, - -0.046187, - 0.020678, - 0.025886, - 0.043063, - -0.030934, - -0.013655, - 0.026919, - -0.0056292, - 0.050238, - 0.036688, - -0.035291, - 0.016496, - -0.011712, - 0.0058933, - -0.011313, - 0.018438, - 0.076592, - -0.10295, - -0.035724, - 0.0092832, - -0.064846, - -0.058911, - 0.024169, - -0.095369, - 0.01851, - 0.095966, - -0.021561, - -0.020689, - -0.015244, - -0.025287, - -0.061947, - -0.012786, - 0.043125, - 0.0093332, - 0.030573, - 0.018304, - 0.0032328, - -0.054661, - 0.026891, - -0.047936, - 0.077545, - -0.064647, - 0.083685, - -0.015327, - 0.054232 - ], - "profits": [ - 0.023763, - 0.014877, - -0.051236, - -0.0019684, - 0.028356, - 0.0036, - -0.012251, - -0.098486, - 0.083868, - 0.016871, - -0.0020703, - -0.038926, - -0.033782, - -0.053199, - -0.038433, - 0.04898, - 0.061801, - -0.030169, - 0.071475, - -0.033384, - -0.015468, - 0.014846, - -0.078194, - 0.0461, - -0.012905, - -0.033003, - 0.029174, - 0.037807, - 0.14077, - 0.024076, - -0.053705, - -0.023678, - -0.088222, - -0.037572, - -0.05014, - 0.024082, - -0.053321, - 0.011221, - 0.072817, - 0.053609, - -0.029012, - -0.057342, - -0.048142, - 0.059272, - 0.018655, - -0.017973, - 0.033749, - -0.052746, - -0.00063422, - -0.0069544, - -0.025604, - 0.046366, - -0.033653, - 0.014624, - -0.10545, - -0.0054142, - -0.070962, - 0.022526, - -0.018852, - -0.00069791, - -0.061312, - 0.012871, - 0.12303, - 0.037906, - 0.028652, - -0.0087522, - 0.10009, - -0.049525, - 0.087434, - -0.040496, - 0.013366, - -0.01928, - 0.02918, - 0.055217, - 0.016179, - 0.008295, - 0.055958, - -0.011597, - -0.031763, - -0.064831, - -0.021433, - -0.043843, - -0.026723, - 0.10457, - -0.0021103, - -0.0024575, - 0.0074483, - -0.033612, - 0.034683, - -0.0060775, - -0.044724, - -0.031585, - -0.098518, - 0.041176, - -0.046882, - 0.0062382, - -0.02019, - -0.081478, - -0.004709, - 0.017887, - -0.050784, - -0.014898, - -0.056937, - -0.012703, - 0.053042, - -0.01203, - -0.014421, - 0.020316, - -0.054134, - 0.059239, - -0.013804, - 0.077434, - 0.090424, - -0.0018629, - 0.033865, - 0.002107, - -0.015951, - -0.03719, - -0.040458, - 0.025481, - -0.026175, - -0.038877, - -0.0028667, - -0.037006, - 0.084228, - 0.065297, - -0.0078676, - -0.11401, - 0.039582, - 0.097656, - 0.039439, - -0.01899, - 0.022493, - 0.0079316, - 0.043737, - -0.05647, - 0.053555, - 0.06851, - -0.075401, - 0.037634, - 0.010864, - -0.0055202, - -0.022775, - -0.021584, - 0.037453, - -0.12511, - 0.031539, - -0.09418, - -0.016781, - -0.065717, - 0.020677, - 0.084255, - 0.0033695, - -0.064181, - 0.079679, - -0.052018, - 0.018112, - 0.015989, - -0.010258, - -0.0048028, - 0.096375, - -0.022999, - -0.054587, - 0.075303, - 0.022286, - 0.038699, - -0.0095893, - 0.050385, - -0.012844, - 0.0080597, - -0.016016, - 0.010583, - 0.033903, - 0.033892, - -0.074954, - 0.051252, - -0.06468, - -0.019777, - -0.011806, - 0.031178, - -0.03016, - -0.024709, - -0.04835, - -0.12941, - -0.034971, - -0.093651, - 0.021843, - 0.12055, - 0.0071818, - 0.020698, - -0.003657, - 0.033406, - -0.046592, - 0.017655, - -0.069778, - -0.010313, - -0.078026, - -0.01056, - -0.0017796, - 0.013966, - -0.15311, - 0.045017, - 0.060209, - -0.077455, - 0.075328, - 0.039343, - -0.0030278, - -0.019569, - -0.002123, - -0.034282, - 0.089912, - -0.0062144, - -0.034199, - -0.015364, - 0.054172, - -0.0023003, - 0.001976, - 0.015489, - -0.0012282, - -0.034736, - 0.050116, - -0.069892, - -0.010277, - 0.089766, - 0.12802, - -0.020762, - -0.033054, - 0.017966, - 0.015678, - -0.06059, - 0.048334, - -0.047347, - -0.12063, - -0.013764, - 0.10274, - -0.0062513, - -0.019078, - -0.035625, - 0.026578, - 0.033231, - -0.0046611, - 0.010529, - 0.020655, - 0.01551, - -0.04828, - 0.011281, - -0.03615, - -0.10829, - 0.004593, - -0.051898, - -0.0085181, - -0.046588, - 0.04614, - 0.023472, - -0.0061104, - -0.040111, - -0.063794, - 0.01523, - -0.018137, - 0.052265, - 0.029363, - 0.035984, - 0.000061381, - -0.071603, - 0.071682, - 0.099853, - -0.0071642, - -0.0474, - -0.039035, - 0.16696, - 0.010193, - 0.077504, - -0.12217, - -0.07701, - -0.021575, - -0.043593, - 0.020872, - 0.022166, - -0.05331, - 0.0013472, - 0.0761, - 0.019503, - -0.042983, - -0.020583, - 0.052223, - 0.015006, - -0.039258, - 0.083311, - -0.004987, - 0.060033, - -0.026465, - 0.081079, - -0.061187, - 0.041829, - -0.068532, - -0.074957, - -0.032062, - 0.0055511, - -0.066476, - -0.03461 + 1.3 ] } } diff --git a/components/brave_ads/core/test/data/resources/wtpwsrqtjxmfdwaymauprezkunxprysm_invalid_json b/components/brave_ads/core/test/data/resources/wtpwsrqtjxmfdwaymauprezkunxprysm_invalid_json deleted file mode 100644 index 2085aebd9b7c..000000000000 --- a/components/brave_ads/core/test/data/resources/wtpwsrqtjxmfdwaymauprezkunxprysm_invalid_json +++ /dev/null @@ -1,310 +0,0 @@ -{ - NOT_VALID_JSON - "locale": "EN", - "timestamp": "2022-06-09 08:00:00.704847", - "version": 1, - "embeddings": { - "computer-based": [ - -0.064739, - -0.0045274, - -0.034366, - 0.0025805, - -0.0049916, - 0.013201, - 0.019719, - -0.052702, - -0.00062663, - 0.0086113, - 0.013345, - -0.018744, - -0.027416, - 0.037625, - -0.0024033, - 0.026011, - 0.057943, - 0.055109, - 0.037833, - 0.0094755, - -0.039404, - 0.024079, - 0.037148, - 0.038093, - 0.0014721, - 0.022359, - -0.021367, - 0.015442, - 0.024314, - 0.017985, - -0.028655, - -0.0028699, - -0.013963, - -0.065708, - 0.066867, - -0.0090839, - -0.013788, - -0.0043428, - 0.034044, - 0.0075364, - -0.037527, - -0.083954, - -0.023719, - 0.022324, - 0.015777, - -0.02335, - 0.02248, - -0.0080314, - 0.016192, - -0.018303, - -0.081916, - 0.018184, - -0.0025618, - 0.026432, - -0.020682, - 0.018376, - 0.0070382, - -0.027802, - 0.010503, - -0.030366, - 0.019995, - 0.01465, - 0.069541, - 0.076818, - -0.0092874, - 0.00097251, - -0.023795, - 0.015249, - -0.0090784, - 0.013368, - 0.0040245, - 0.0066167, - 0.018026, - 0.0073469, - 0.028822, - -0.024359, - -0.0096464, - -0.032884, - 0.014232, - -0.034535, - -0.0093447, - -0.02003, - -0.054796, - 0.013653, - 0.0096051, - -0.045379, - -0.023004, - -0.0010185, - -0.020501, - 0.019706, - -0.010598, - 0.032617, - -0.062142, - -0.00053923, - -0.01637, - 0.046962, - 0.0075063, - 0.0033272, - 0.025441, - -0.002931, - 0.027848, - -0.013543, - -0.0071566, - -0.026376, - -0.022877, - -0.041837, - 0.008469, - 0.0097354, - -0.018186, - -0.004279, - -0.013567, - 0.052056, - 0.02206, - 0.020301, - -0.03005, - 0.027897, - -0.026679, - 0.01171, - -0.0077624, - -0.00066682, - -0.020041, - 0.02655, - 0.022383, - -0.0020139, - 0.046126, - 0.011664, - -0.0032975, - 0.010629, - -0.02133, - 0.039557, - -0.018699, - -0.0050691, - -0.010931, - 0.012105, - 0.065755, - -0.033887, - 0.072902, - -0.027028, - 0.021289, - -0.0054826, - 0.02306, - 0.051512, - -0.0034143, - 0.002887, - -0.011878, - -0.022869, - -0.019515, - -0.028482, - 0.012206, - 0.036441, - 0.07162, - 0.098521, - 0.0053955, - -0.031251, - 0.0036954, - 0.009098, - -0.035588, - 0.027416, - 0.032646, - -0.017372, - 0.0183, - 0.001191, - -0.049115, - -0.0035166, - -0.011203, - 0.0067913, - 0.017317, - -0.0065816, - 0.02006, - 0.0095851, - 0.011457, - 0.011693, - 0.023807, - 0.017386, - -0.002964, - 0.036774, - -0.012055, - 0.0093705, - -0.041611, - 0.017727, - 0.060725, - 0.018155, - -0.044344, - 0.017443, - -0.010716, - 0.00023507, - -0.061974, - 0.094631, - -0.065716, - 0.0029785, - -0.033501, - 0.033484, - 0.049504, - -0.026487, - 0.0060211, - -0.037266, - -0.031044, - 0.023848, - -0.0012274, - 0.0011192, - -0.079172, - 0.034039, - -0.029197, - 0.012121, - -0.039969, - 0.025185, - 0.014782, - -0.0049008, - -0.045049, - 0.0050999, - 0.095338, - 0.034506, - 0.023973, - 0.030517, - -0.0028285, - -0.0034477, - 0.027971, - -0.005773, - -0.02778, - 0.0031937, - 0.0046913, - 0.021185, - -0.0065225, - 0.050929, - -0.028687, - -0.036772, - 0.02008, - 0.025265, - 0.011454, - -0.023343, - -0.007277, - -0.037855, - -0.0023923, - -0.025676, - 0.0060242, - 0.0038974, - 0.025777, - -0.0047436, - -0.018283, - -0.013582, - 0.030462, - 0.0263, - 0.041093, - 0.011076, - -0.094951, - 0.022063, - -0.0020801, - 0.0087264, - -0.011435, - 0.0049219, - 0.021467, - 0.028093, - 0.019808, - -0.0060902, - -0.018869, - 0.051437, - 0.0072448, - -0.033824, - -0.0073285, - -0.012183, - 0.026388, - 0.0081658, - -0.019845, - 0.028656, - -0.00062394, - -0.016956, - 0.020711, - -0.008927, - -0.019725, - 0.022352, - -0.045111, - 0.046037, - -0.042962, - 0.0017385, - -0.075868, - -0.04917, - 0.016699, - 0.040764, - 0.015829, - -0.010209, - 0.09196, - 0.018467, - -0.01016, - -0.029115, - -0.053557, - -0.023967, - -0.018528, - 0.00066692, - -0.03619, - 0.003579, - -0.032679, - 0.0101, - -0.0075264, - -0.022313, - 0.022948, - 0.025205, - -0.0073181, - -0.041812, - 0.029431, - 0.0077017 - ] - } -} diff --git a/components/brave_ads/core/test/data/resources/wtpwsrqtjxmfdwaymauprezkunxprysm_simple b/components/brave_ads/core/test/data/resources/wtpwsrqtjxmfdwaymauprezkunxprysm_simple deleted file mode 100644 index b60d141252b8..000000000000 --- a/components/brave_ads/core/test/data/resources/wtpwsrqtjxmfdwaymauprezkunxprysm_simple +++ /dev/null @@ -1,22 +0,0 @@ -{ - "locale": "EN", - "timestamp": "2022-06-09 08:00:00.704847", - "version": 1, - "embeddings": { - "this": [ - 1.0, - 0.5, - 0.7 - ], - "unittest": [ - -0.2, - 0.8, - 1.0 - ], - "simple": [ - 0.7, - -0.1, - 1.3 - ] - } -}