customeranalytics 0.1__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- customeranalytics/__init__.py +319 -0
- customeranalytics/configs.py +480 -0
- customeranalytics/data_storage_configurations/__init__.py +245 -0
- customeranalytics/data_storage_configurations/data_access.py +165 -0
- customeranalytics/data_storage_configurations/data_works_pipeline.py +207 -0
- customeranalytics/data_storage_configurations/es_create_index.py +544 -0
- customeranalytics/data_storage_configurations/logger.py +36 -0
- customeranalytics/data_storage_configurations/query_es.py +157 -0
- customeranalytics/data_storage_configurations/reports.py +684 -0
- customeranalytics/data_storage_configurations/schedule_data_integration.py +355 -0
- customeranalytics/docs/queries.yaml +245 -0
- customeranalytics/docs/web_configs.yaml +2 -0
- customeranalytics/exploratory_analysis/__init__.py +109 -0
- customeranalytics/exploratory_analysis/churn.py +232 -0
- customeranalytics/exploratory_analysis/cohorts.py +535 -0
- customeranalytics/exploratory_analysis/descriptive_statistics.py +470 -0
- customeranalytics/exploratory_analysis/funnels.py +407 -0
- customeranalytics/exploratory_analysis/product_analytics.py +340 -0
- customeranalytics/exploratory_analysis/promotion_analytics.py +299 -0
- customeranalytics/exploratory_analysis/rfm.py +202 -0
- customeranalytics/exploratory_analysis/sample_data/sample_data_avg_order_count_per_promo_per_cust.csv +99 -0
- customeranalytics/exploratory_analysis/sample_data/sample_data_chart_1_search.csv +2 -0
- customeranalytics/exploratory_analysis/sample_data/sample_data_chart_2_search.csv +46 -0
- customeranalytics/exploratory_analysis/sample_data/sample_data_chart_3_search.csv +2 -0
- customeranalytics/exploratory_analysis/sample_data/sample_data_chart_4_search.csv +2 -0
- customeranalytics/exploratory_analysis/sample_data/sample_data_churn.csv +2 -0
- customeranalytics/exploratory_analysis/sample_data/sample_data_churn_weekly.csv +10 -0
- customeranalytics/exploratory_analysis/sample_data/sample_data_client_feature_predicted.csv +1590 -0
- customeranalytics/exploratory_analysis/sample_data/sample_data_client_kpis.csv +7060 -0
- customeranalytics/exploratory_analysis/sample_data/sample_data_clvrfm_anomaly.csv +561 -0
- customeranalytics/exploratory_analysis/sample_data/sample_data_clvsegments_amount.csv +8 -0
- customeranalytics/exploratory_analysis/sample_data/sample_data_customer_journey.csv +18 -0
- customeranalytics/exploratory_analysis/sample_data/sample_data_daily_clv.csv +103 -0
- customeranalytics/exploratory_analysis/sample_data/sample_data_daily_cohort_downloads.csv +68 -0
- customeranalytics/exploratory_analysis/sample_data/sample_data_daily_cohort_from_1_to_2.csv +66 -0
- customeranalytics/exploratory_analysis/sample_data/sample_data_daily_cohort_from_2_to_3.csv +64 -0
- customeranalytics/exploratory_analysis/sample_data/sample_data_daily_cohort_from_3_to_4.csv +55 -0
- customeranalytics/exploratory_analysis/sample_data/sample_data_daily_dimension_values.csv +199 -0
- customeranalytics/exploratory_analysis/sample_data/sample_data_daily_funnel.csv +36 -0
- customeranalytics/exploratory_analysis/sample_data/sample_data_daily_funnel_downloads.csv +68 -0
- customeranalytics/exploratory_analysis/sample_data/sample_data_daily_inorganic_ratio.csv +6070 -0
- customeranalytics/exploratory_analysis/sample_data/sample_data_daily_orders.csv +57 -0
- customeranalytics/exploratory_analysis/sample_data/sample_data_daily_organic_orders.csv +64 -0
- customeranalytics/exploratory_analysis/sample_data/sample_data_daily_products_of_sales.csv +12574 -0
- customeranalytics/exploratory_analysis/sample_data/sample_data_daily_promotion_discount.csv +64 -0
- customeranalytics/exploratory_analysis/sample_data/sample_data_daily_promotion_revenue.csv +6070 -0
- customeranalytics/exploratory_analysis/sample_data/sample_data_dcohort_anomaly.csv +6 -0
- customeranalytics/exploratory_analysis/sample_data/sample_data_dcohort_anomaly_2.csv +118 -0
- customeranalytics/exploratory_analysis/sample_data/sample_data_deliver.csv +47 -0
- customeranalytics/exploratory_analysis/sample_data/sample_data_deliver_kpis.csv +2 -0
- customeranalytics/exploratory_analysis/sample_data/sample_data_deliver_weekday_hour.csv +25 -0
- customeranalytics/exploratory_analysis/sample_data/sample_data_dfunnel_anomaly.csv +118 -0
- customeranalytics/exploratory_analysis/sample_data/sample_data_dimension_kpis.csv +199 -0
- customeranalytics/exploratory_analysis/sample_data/sample_data_dorders_anomaly.csv +85 -0
- customeranalytics/exploratory_analysis/sample_data/sample_data_frequency_clusters.csv +6 -0
- customeranalytics/exploratory_analysis/sample_data/sample_data_frequency_recency.csv +3740 -0
- customeranalytics/exploratory_analysis/sample_data/sample_data_hourly_funnel.csv +25 -0
- customeranalytics/exploratory_analysis/sample_data/sample_data_hourly_funnel_downloads.csv +25 -0
- customeranalytics/exploratory_analysis/sample_data/sample_data_hourly_inorganic_ratio.csv +2353 -0
- customeranalytics/exploratory_analysis/sample_data/sample_data_hourly_orders.csv +25 -0
- customeranalytics/exploratory_analysis/sample_data/sample_data_hourly_organic_orders.csv +2353 -0
- customeranalytics/exploratory_analysis/sample_data/sample_data_inorganic_orders_per_promotion_per_day.csv +6070 -0
- customeranalytics/exploratory_analysis/sample_data/sample_data_kpis.csv +2 -0
- customeranalytics/exploratory_analysis/sample_data/sample_data_monetary_clusters.csv +6 -0
- customeranalytics/exploratory_analysis/sample_data/sample_data_monetary_frequency.csv +3740 -0
- customeranalytics/exploratory_analysis/sample_data/sample_data_monthly_funnel.csv +5 -0
- customeranalytics/exploratory_analysis/sample_data/sample_data_monthly_funnel_downloads.csv +5 -0
- customeranalytics/exploratory_analysis/sample_data/sample_data_monthly_orders.csv +4 -0
- customeranalytics/exploratory_analysis/sample_data/sample_data_most_combined_products.csv +11 -0
- customeranalytics/exploratory_analysis/sample_data/sample_data_most_ordered_categories.csv +11 -0
- customeranalytics/exploratory_analysis/sample_data/sample_data_most_ordered_products.csv +11 -0
- customeranalytics/exploratory_analysis/sample_data/sample_data_order_and_payment_amount_differences.csv +91 -0
- customeranalytics/exploratory_analysis/sample_data/sample_data_prepare.csv +101 -0
- customeranalytics/exploratory_analysis/sample_data/sample_data_prepare_weekday_hour.csv +25 -0
- customeranalytics/exploratory_analysis/sample_data/sample_data_product_kpis.csv +201 -0
- customeranalytics/exploratory_analysis/sample_data/sample_data_product_usage_before_after_amount_accept.csv +11 -0
- customeranalytics/exploratory_analysis/sample_data/sample_data_product_usage_before_after_amount_reject.csv +7 -0
- customeranalytics/exploratory_analysis/sample_data/sample_data_product_usage_before_after_orders_accept.csv +11 -0
- customeranalytics/exploratory_analysis/sample_data/sample_data_product_usage_before_after_orders_reject.csv +11 -0
- customeranalytics/exploratory_analysis/sample_data/sample_data_promotion_comparison.csv +91 -0
- customeranalytics/exploratory_analysis/sample_data/sample_data_promotion_kpis.csv +99 -0
- customeranalytics/exploratory_analysis/sample_data/sample_data_promotion_number_of_customer.csv +99 -0
- customeranalytics/exploratory_analysis/sample_data/sample_data_promotion_usage_before_after_amount_accept.csv +81 -0
- customeranalytics/exploratory_analysis/sample_data/sample_data_promotion_usage_before_after_amount_reject.csv +11 -0
- customeranalytics/exploratory_analysis/sample_data/sample_data_promotion_usage_before_after_orders_accept.csv +55 -0
- customeranalytics/exploratory_analysis/sample_data/sample_data_promotion_usage_before_after_orders_reject.csv +37 -0
- customeranalytics/exploratory_analysis/sample_data/sample_data_purchase_amount_distribution.csv +22 -0
- customeranalytics/exploratory_analysis/sample_data/sample_data_recency_clusters.csv +6 -0
- customeranalytics/exploratory_analysis/sample_data/sample_data_recency_monetary.csv +3740 -0
- customeranalytics/exploratory_analysis/sample_data/sample_data_rfm.csv +2001 -0
- customeranalytics/exploratory_analysis/sample_data/sample_data_ride.csv +101 -0
- customeranalytics/exploratory_analysis/sample_data/sample_data_ride_weekday_hour.csv +25 -0
- customeranalytics/exploratory_analysis/sample_data/sample_data_segmentation.csv +11 -0
- customeranalytics/exploratory_analysis/sample_data/sample_data_segments_change_daily_before_after_amount.csv +10 -0
- customeranalytics/exploratory_analysis/sample_data/sample_data_segments_change_daily_before_after_orders.csv +9 -0
- customeranalytics/exploratory_analysis/sample_data/sample_data_segments_change_monthly_before_after_amount.csv +10 -0
- customeranalytics/exploratory_analysis/sample_data/sample_data_segments_change_monthly_before_after_orders.csv +11 -0
- customeranalytics/exploratory_analysis/sample_data/sample_data_segments_change_weekly_before_after_amount.csv +10 -0
- customeranalytics/exploratory_analysis/sample_data/sample_data_segments_change_weekly_before_after_orders.csv +10 -0
- customeranalytics/exploratory_analysis/sample_data/sample_data_user_counts_per_order_seq.csv +47 -0
- customeranalytics/exploratory_analysis/sample_data/sample_data_weekly_average_order_per_user.csv +13 -0
- customeranalytics/exploratory_analysis/sample_data/sample_data_weekly_average_payment_amount.csv +13 -0
- customeranalytics/exploratory_analysis/sample_data/sample_data_weekly_average_session_per_user.csv +13 -0
- customeranalytics/exploratory_analysis/sample_data/sample_data_weekly_cohort_downloads.csv +13 -0
- customeranalytics/exploratory_analysis/sample_data/sample_data_weekly_cohort_from_1_to_2.csv +13 -0
- customeranalytics/exploratory_analysis/sample_data/sample_data_weekly_cohort_from_2_to_3.csv +13 -0
- customeranalytics/exploratory_analysis/sample_data/sample_data_weekly_cohort_from_3_to_4.csv +12 -0
- customeranalytics/exploratory_analysis/sample_data/sample_data_weekly_funnel.csv +25 -0
- customeranalytics/exploratory_analysis/sample_data/sample_data_weekly_funnel_downloads.csv +25 -0
- customeranalytics/exploratory_analysis/sample_data/sample_data_weekly_orders.csv +10 -0
- customeranalytics/ml_process/__init__.py +64 -0
- customeranalytics/ml_process/ab_test.py +615 -0
- customeranalytics/ml_process/anomaly_detection.py +456 -0
- customeranalytics/ml_process/clv_prediction.py +301 -0
- customeranalytics/ml_process/customer_segmentation.py +354 -0
- customeranalytics/ml_process/delivery_analytics.py +754 -0
- customeranalytics/utils.py +186 -0
- customeranalytics/web/app/__init__.py +37 -0
- customeranalytics/web/app/base/__init__.py +9 -0
- customeranalytics/web/app/base/forms.py +16 -0
- customeranalytics/web/app/base/models.py +43 -0
- customeranalytics/web/app/base/routes.py +126 -0
- customeranalytics/web/app/base/static/assets/css/app.css +20 -0
- customeranalytics/web/app/base/static/assets/fonts/Inter-Black.woff +0 -0
- customeranalytics/web/app/base/static/assets/fonts/Inter-Black.woff2 +0 -0
- customeranalytics/web/app/base/static/assets/fonts/Inter-BlackItalic.woff +0 -0
- customeranalytics/web/app/base/static/assets/fonts/Inter-BlackItalic.woff2 +0 -0
- customeranalytics/web/app/base/static/assets/fonts/Inter-Bold.woff +0 -0
- customeranalytics/web/app/base/static/assets/fonts/Inter-Bold.woff2 +0 -0
- customeranalytics/web/app/base/static/assets/fonts/Inter-BoldItalic.woff +0 -0
- customeranalytics/web/app/base/static/assets/fonts/Inter-BoldItalic.woff2 +0 -0
- customeranalytics/web/app/base/static/assets/fonts/Inter-ExtraBold.woff +0 -0
- customeranalytics/web/app/base/static/assets/fonts/Inter-ExtraBold.woff2 +0 -0
- customeranalytics/web/app/base/static/assets/fonts/Inter-ExtraBoldItalic.woff +0 -0
- customeranalytics/web/app/base/static/assets/fonts/Inter-ExtraBoldItalic.woff2 +0 -0
- customeranalytics/web/app/base/static/assets/fonts/Inter-ExtraLight-BETA.woff +0 -0
- customeranalytics/web/app/base/static/assets/fonts/Inter-ExtraLight-BETA.woff2 +0 -0
- customeranalytics/web/app/base/static/assets/fonts/Inter-ExtraLightItalic-BETA.woff +0 -0
- customeranalytics/web/app/base/static/assets/fonts/Inter-ExtraLightItalic-BETA.woff2 +0 -0
- customeranalytics/web/app/base/static/assets/fonts/Inter-Italic.woff +0 -0
- customeranalytics/web/app/base/static/assets/fonts/Inter-Italic.woff2 +0 -0
- customeranalytics/web/app/base/static/assets/fonts/Inter-Light-BETA.woff +0 -0
- customeranalytics/web/app/base/static/assets/fonts/Inter-Light-BETA.woff2 +0 -0
- customeranalytics/web/app/base/static/assets/fonts/Inter-LightItalic-BETA.woff +0 -0
- customeranalytics/web/app/base/static/assets/fonts/Inter-LightItalic-BETA.woff2 +0 -0
- customeranalytics/web/app/base/static/assets/fonts/Inter-Medium.woff +0 -0
- customeranalytics/web/app/base/static/assets/fonts/Inter-Medium.woff2 +0 -0
- customeranalytics/web/app/base/static/assets/fonts/Inter-MediumItalic.woff +0 -0
- customeranalytics/web/app/base/static/assets/fonts/Inter-MediumItalic.woff2 +0 -0
- customeranalytics/web/app/base/static/assets/fonts/Inter-Regular.woff +0 -0
- customeranalytics/web/app/base/static/assets/fonts/Inter-Regular.woff2 +0 -0
- customeranalytics/web/app/base/static/assets/fonts/Inter-SemiBold.woff +0 -0
- customeranalytics/web/app/base/static/assets/fonts/Inter-SemiBold.woff2 +0 -0
- customeranalytics/web/app/base/static/assets/fonts/Inter-SemiBoldItalic.woff +0 -0
- customeranalytics/web/app/base/static/assets/fonts/Inter-SemiBoldItalic.woff2 +0 -0
- customeranalytics/web/app/base/static/assets/fonts/Inter-Thin-BETA.woff +0 -0
- customeranalytics/web/app/base/static/assets/fonts/Inter-Thin-BETA.woff2 +0 -0
- customeranalytics/web/app/base/static/assets/fonts/Inter-ThinItalic-BETA.woff +0 -0
- customeranalytics/web/app/base/static/assets/fonts/Inter-ThinItalic-BETA.woff2 +0 -0
- customeranalytics/web/app/base/static/assets/fonts/Inter-italic.var.woff2 +0 -0
- customeranalytics/web/app/base/static/assets/fonts/Inter-upright.var.woff2 +0 -0
- customeranalytics/web/app/base/static/assets/fonts/Inter.var.woff2 +0 -0
- customeranalytics/web/app/base/static/assets/fonts/fa-brands-400.eot +0 -0
- customeranalytics/web/app/base/static/assets/fonts/fa-brands-400.svg +3570 -0
- customeranalytics/web/app/base/static/assets/fonts/fa-brands-400.ttf +0 -0
- customeranalytics/web/app/base/static/assets/fonts/fa-brands-400.woff +0 -0
- customeranalytics/web/app/base/static/assets/fonts/fa-brands-400.woff2 +0 -0
- customeranalytics/web/app/base/static/assets/fonts/fa-regular-400.eot +0 -0
- customeranalytics/web/app/base/static/assets/fonts/fa-regular-400.svg +801 -0
- customeranalytics/web/app/base/static/assets/fonts/fa-regular-400.ttf +0 -0
- customeranalytics/web/app/base/static/assets/fonts/fa-regular-400.woff +0 -0
- customeranalytics/web/app/base/static/assets/fonts/fa-regular-400.woff2 +0 -0
- customeranalytics/web/app/base/static/assets/fonts/fa-solid-900.eot +0 -0
- customeranalytics/web/app/base/static/assets/fonts/fa-solid-900.svg +5028 -0
- customeranalytics/web/app/base/static/assets/fonts/fa-solid-900.ttf +0 -0
- customeranalytics/web/app/base/static/assets/fonts/fa-solid-900.woff +0 -0
- customeranalytics/web/app/base/static/assets/fonts/fa-solid-900.woff2 +0 -0
- customeranalytics/web/app/base/static/assets/img/avatars/avatar-1.png +0 -0
- customeranalytics/web/app/base/static/assets/img/avatars/avatar-2.png +0 -0
- customeranalytics/web/app/base/static/assets/img/avatars/avatar-3.png +0 -0
- customeranalytics/web/app/base/static/assets/img/avatars/avatar-4.png +0 -0
- customeranalytics/web/app/base/static/assets/img/avatars/avatar-5.png +0 -0
- customeranalytics/web/app/base/static/assets/img/avatars/info.jpeg +0 -0
- customeranalytics/web/app/base/static/assets/img/icons/customanality.png +0 -0
- customeranalytics/web/app/base/static/assets/img/icons/icon-48x48.png +0 -0
- customeranalytics/web/app/base/static/assets/js/app.js +2 -0
- customeranalytics/web/app/base/static/assets/js/app.js.LICENSE +566 -0
- customeranalytics/web/app/base/static/assets/js/app.js.LICENSE.txt +556 -0
- customeranalytics/web/app/base/static/assets/js/modules/bootstrap.js +15 -0
- customeranalytics/web/app/base/static/assets/js/modules/chartjs.js +4 -0
- customeranalytics/web/app/base/static/assets/js/modules/feather.js +8 -0
- customeranalytics/web/app/base/static/assets/js/modules/flatpickr.js +4 -0
- customeranalytics/web/app/base/static/assets/js/modules/moment.js +4 -0
- customeranalytics/web/app/base/static/assets/js/modules/sidebar.js +23 -0
- customeranalytics/web/app/base/static/assets/js/modules/theme.js +16 -0
- customeranalytics/web/app/base/templates/accounts/login.html +81 -0
- customeranalytics/web/app/base/templates/accounts/register.html +80 -0
- customeranalytics/web/app/base/templates/includes/footer.html +28 -0
- customeranalytics/web/app/base/templates/includes/navigation.html +51 -0
- customeranalytics/web/app/base/templates/includes/scripts.html +3 -0
- customeranalytics/web/app/base/templates/includes/sidebar.html +146 -0
- customeranalytics/web/app/base/templates/layouts/base-fullscreen.html +36 -0
- customeranalytics/web/app/base/templates/layouts/base.html +84 -0
- customeranalytics/web/app/base/util.py +30 -0
- customeranalytics/web/app/home/__init__.py +9 -0
- customeranalytics/web/app/home/forms.py +1039 -0
- customeranalytics/web/app/home/models.py +438 -0
- customeranalytics/web/app/home/profiles.py +310 -0
- customeranalytics/web/app/home/routes.py +386 -0
- customeranalytics/web/app/home/search.py +288 -0
- customeranalytics/web/app/home/static/assets/img/avatars/avatar-1.png +0 -0
- customeranalytics/web/app/home/static/assets/img/avatars/avatar-2.png +0 -0
- customeranalytics/web/app/home/static/assets/img/avatars/avatar-3.png +0 -0
- customeranalytics/web/app/home/static/assets/img/avatars/avatar-4.png +0 -0
- customeranalytics/web/app/home/static/assets/img/avatars/avatar-5.png +0 -0
- customeranalytics/web/app/home/static/assets/img/icons/customanality.png +0 -0
- customeranalytics/web/app/home/static/assets/img/icons/icon-48x48.png +0 -0
- customeranalytics/web/app/home/templates/abtest-product.html +280 -0
- customeranalytics/web/app/home/templates/abtest-promotion.html +362 -0
- customeranalytics/web/app/home/templates/abtest-segments.html +298 -0
- customeranalytics/web/app/home/templates/add-data-delivery.html +184 -0
- customeranalytics/web/app/home/templates/add-data-product.html +177 -0
- customeranalytics/web/app/home/templates/add-data-purchase.html +392 -0
- customeranalytics/web/app/home/templates/anomaly.html +261 -0
- customeranalytics/web/app/home/templates/clv.html +211 -0
- customeranalytics/web/app/home/templates/cohorts.html +308 -0
- customeranalytics/web/app/home/templates/customer-segmentation.html +308 -0
- customeranalytics/web/app/home/templates/data-es.html +152 -0
- customeranalytics/web/app/home/templates/data-execute.html +397 -0
- customeranalytics/web/app/home/templates/delivery.html +404 -0
- customeranalytics/web/app/home/templates/funnel-customer.html +240 -0
- customeranalytics/web/app/home/templates/funnel-session.html +236 -0
- customeranalytics/web/app/home/templates/index.html +524 -0
- customeranalytics/web/app/home/templates/index2.html +515 -0
- customeranalytics/web/app/home/templates/page-403.html +46 -0
- customeranalytics/web/app/home/templates/page-404.html +45 -0
- customeranalytics/web/app/home/templates/page-500.html +45 -0
- customeranalytics/web/app/home/templates/pages-blank.html +33 -0
- customeranalytics/web/app/home/templates/pages-sign-in.html +67 -0
- customeranalytics/web/app/home/templates/pages-sign-up.html +61 -0
- customeranalytics/web/app/home/templates/product.html +203 -0
- customeranalytics/web/app/home/templates/profile.html +1009 -0
- customeranalytics/web/app/home/templates/rfm.html +254 -0
- customeranalytics/web/app/home/templates/search.html +167 -0
- customeranalytics/web/app/home/templates/settings.html +205 -0
- customeranalytics/web/app/home/templates/stats-desc.html +230 -0
- customeranalytics/web/app/home/templates/stats-purchase.html +221 -0
- customeranalytics/web/config.py +30 -0
- customeranalytics/web/db.sqlite3 +0 -0
- customeranalytics/web/run.py +30 -0
- customeranalytics-0.1.dist-info/METADATA +1102 -0
- customeranalytics-0.1.dist-info/RECORD +254 -0
- customeranalytics-0.1.dist-info/WHEEL +4 -0
- customeranalytics-0.1.dist-info/licenses/LICENSE +21 -0
|
@@ -0,0 +1,66 @@
|
|
|
1
|
+
daily,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77
|
|
2
|
+
2020-12-31,0.0,3.0,2.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,3.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
|
|
3
|
+
2021-01-01,242.0,495.0,83.0,54.0,32.0,16.0,22.0,19.0,14.0,13.0,7.0,5.0,8.0,10.0,4.0,9.0,12.0,6.0,5.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,247.0,165.0,105.0,73.0,39.0,35.0,22.0,30.0,29.0,14.0,7.0,5.0,13.0,10.0,19.0,26.0,9.0,7.0,16.0,7.0,13.0,13.0,17.0,6.0,9.0,3.0,4.0,5.0,10.0,9.0,3.0,7.0,7.0,4.0,9.0,7.0,14.0,5.0,0.0,0.0,0.0,0.0,0.0,4.0,5.0,8.0,8.0,2.0,6.0
|
|
4
|
+
2021-01-02,162.0,99.0,55.0,32.0,20.0,26.0,16.0,26.0,32.0,14.0,17.0,7.0,13.0,7.0,28.0,15.0,11.0,15.0,6.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,289.0,200.0,115.0,54.0,56.0,45.0,37.0,66.0,53.0,30.0,26.0,19.0,27.0,29.0,40.0,46.0,19.0,20.0,18.0,32.0,18.0,43.0,47.0,13.0,24.0,17.0,5.0,6.0,24.0,28.0,10.0,4.0,14.0,9.0,8.0,20.0,16.0,13.0,0.0,0.0,0.0,0.0,0.0,13.0,3.0,7.0,8.0,9.0,9.0,0.0
|
|
5
|
+
2021-01-03,15.0,52.0,32.0,29.0,18.0,11.0,7.0,18.0,8.0,7.0,6.0,4.0,6.0,12.0,12.0,2.0,8.0,4.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,31.0,19.0,14.0,8.0,6.0,11.0,10.0,18.0,24.0,9.0,13.0,11.0,13.0,6.0,20.0,29.0,5.0,14.0,11.0,11.0,7.0,16.0,17.0,9.0,11.0,13.0,1.0,7.0,14.0,13.0,1.0,4.0,7.0,2.0,7.0,5.0,11.0,5.0,0.0,0.0,0.0,0.0,0.0,12.0,3.0,3.0,6.0,3.0,7.0,0.0,0.0
|
|
6
|
+
2021-01-04,14.0,28.0,19.0,18.0,8.0,6.0,19.0,7.0,1.0,4.0,4.0,3.0,6.0,4.0,1.0,3.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.0,10.0,5.0,7.0,5.0,2.0,3.0,14.0,15.0,4.0,6.0,4.0,9.0,1.0,6.0,17.0,3.0,1.0,3.0,4.0,4.0,14.0,8.0,4.0,4.0,6.0,2.0,3.0,4.0,2.0,5.0,4.0,2.0,1.0,4.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.0,2.0,1.0,0.0,2.0,1.0,0.0,0.0,0.0
|
|
7
|
+
2021-01-05,8.0,21.0,20.0,9.0,11.0,6.0,6.0,4.0,1.0,1.0,1.0,4.0,5.0,0.0,2.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.0,11.0,6.0,5.0,4.0,9.0,9.0,16.0,12.0,6.0,3.0,2.0,2.0,3.0,14.0,16.0,3.0,5.0,2.0,5.0,5.0,9.0,10.0,4.0,2.0,4.0,2.0,6.0,12.0,7.0,2.0,0.0,5.0,2.0,2.0,3.0,7.0,1.0,0.0,0.0,0.0,0.0,0.0,8.0,1.0,2.0,1.0,1.0,2.0,0.0,0.0,0.0,0.0
|
|
8
|
+
2021-01-06,3.0,13.0,9.0,13.0,1.0,4.0,0.0,2.0,1.0,1.0,4.0,6.0,2.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.0,7.0,1.0,7.0,3.0,5.0,3.0,8.0,8.0,4.0,4.0,3.0,4.0,3.0,10.0,10.0,5.0,2.0,4.0,7.0,1.0,13.0,6.0,6.0,3.0,4.0,2.0,1.0,3.0,6.0,1.0,1.0,0.0,4.0,3.0,5.0,4.0,6.0,0.0,0.0,0.0,0.0,0.0,3.0,2.0,1.0,1.0,5.0,1.0,0.0,0.0,0.0,0.0,0.0
|
|
9
|
+
2021-01-07,2.0,2.0,5.0,11.0,1.0,5.0,2.0,2.0,2.0,5.0,6.0,0.0,5.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.0,10.0,1.0,6.0,3.0,3.0,5.0,11.0,11.0,3.0,7.0,3.0,5.0,2.0,9.0,8.0,6.0,7.0,3.0,4.0,7.0,7.0,7.0,3.0,7.0,6.0,1.0,5.0,3.0,5.0,2.0,2.0,3.0,3.0,2.0,3.0,6.0,2.0,0.0,0.0,0.0,0.0,0.0,4.0,2.0,4.0,0.0,2.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0
|
|
10
|
+
2021-01-08,1.0,9.0,11.0,7.0,2.0,4.0,3.0,5.0,8.0,3.0,3.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.0,9.0,7.0,6.0,2.0,4.0,6.0,10.0,15.0,4.0,6.0,6.0,9.0,7.0,7.0,12.0,4.0,6.0,10.0,3.0,4.0,14.0,15.0,1.0,5.0,6.0,2.0,2.0,8.0,4.0,2.0,0.0,3.0,5.0,1.0,2.0,10.0,7.0,0.0,0.0,0.0,0.0,0.0,5.0,5.0,1.0,4.0,4.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
|
|
11
|
+
2021-01-09,4.0,16.0,9.0,6.0,5.0,3.0,8.0,13.0,10.0,6.0,6.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.0,21.0,10.0,8.0,7.0,10.0,10.0,25.0,29.0,11.0,11.0,13.0,11.0,8.0,19.0,30.0,15.0,13.0,13.0,14.0,12.0,15.0,25.0,4.0,5.0,9.0,5.0,4.0,10.0,14.0,4.0,4.0,6.0,7.0,4.0,11.0,16.0,0.0,0.0,0.0,0.0,0.0,0.0,12.0,5.0,1.0,4.0,8.0,4.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
|
|
12
|
+
2021-01-10,4.0,6.0,5.0,7.0,5.0,5.0,13.0,13.0,3.0,4.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.0,17.0,11.0,7.0,4.0,10.0,7.0,27.0,25.0,6.0,6.0,6.0,15.0,7.0,15.0,19.0,8.0,12.0,7.0,11.0,12.0,26.0,22.0,7.0,7.0,14.0,6.0,5.0,12.0,13.0,3.0,4.0,5.0,4.0,6.0,12.0,12.0,7.0,0.0,0.0,0.0,0.0,0.0,13.0,2.0,5.0,6.0,10.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
|
|
13
|
+
2021-01-11,1.0,1.0,2.0,3.0,1.0,2.0,2.0,4.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.0,4.0,5.0,3.0,5.0,2.0,5.0,5.0,12.0,7.0,2.0,5.0,10.0,4.0,7.0,8.0,2.0,4.0,6.0,3.0,4.0,3.0,7.0,4.0,2.0,2.0,4.0,0.0,3.0,6.0,0.0,1.0,4.0,3.0,3.0,5.0,4.0,1.0,0.0,0.0,0.0,0.0,0.0,2.0,1.0,2.0,2.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
|
|
14
|
+
2021-01-12,0.0,2.0,1.0,2.0,8.0,7.0,2.0,3.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.0,6.0,3.0,1.0,4.0,3.0,3.0,9.0,6.0,7.0,4.0,8.0,5.0,3.0,4.0,11.0,3.0,4.0,3.0,3.0,4.0,5.0,6.0,4.0,4.0,6.0,4.0,1.0,4.0,9.0,1.0,1.0,3.0,0.0,3.0,5.0,6.0,0.0,0.0,0.0,0.0,0.0,0.0,8.0,0.0,2.0,1.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
|
|
15
|
+
2021-01-13,2.0,2.0,2.0,4.0,4.0,2.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.0,6.0,3.0,3.0,5.0,1.0,2.0,8.0,14.0,3.0,6.0,6.0,6.0,3.0,10.0,13.0,4.0,3.0,5.0,6.0,2.0,8.0,6.0,1.0,5.0,5.0,0.0,2.0,6.0,3.0,2.0,1.0,4.0,2.0,0.0,7.0,2.0,1.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,3.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
|
|
16
|
+
2021-01-14,1.0,0.0,4.0,6.0,2.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.0,6.0,8.0,7.0,3.0,2.0,7.0,8.0,8.0,2.0,4.0,1.0,3.0,5.0,9.0,8.0,2.0,2.0,5.0,5.0,1.0,7.0,5.0,5.0,0.0,2.0,3.0,2.0,6.0,6.0,1.0,1.0,1.0,4.0,0.0,2.0,4.0,5.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,2.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
|
|
17
|
+
2021-01-15,0.0,6.0,5.0,5.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.0,7.0,2.0,4.0,3.0,4.0,4.0,10.0,8.0,7.0,0.0,3.0,4.0,1.0,5.0,6.0,2.0,4.0,2.0,6.0,1.0,11.0,9.0,4.0,4.0,2.0,2.0,3.0,3.0,2.0,0.0,4.0,1.0,3.0,0.0,5.0,6.0,3.0,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
|
|
18
|
+
2021-01-16,1.0,6.0,5.0,8.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.0,20.0,12.0,14.0,10.0,13.0,18.0,30.0,19.0,10.0,9.0,20.0,10.0,14.0,32.0,23.0,7.0,6.0,8.0,7.0,18.0,20.0,23.0,4.0,9.0,11.0,5.0,4.0,12.0,13.0,2.0,9.0,5.0,6.0,5.0,21.0,17.0,2.0,0.0,0.0,0.0,0.0,0.0,12.0,2.0,6.0,4.0,6.0,5.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
|
|
19
|
+
2021-01-17,2.0,4.0,8.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.0,23.0,10.0,12.0,12.0,6.0,9.0,22.0,22.0,7.0,8.0,11.0,12.0,17.0,26.0,26.0,5.0,8.0,9.0,14.0,10.0,27.0,21.0,6.0,4.0,8.0,3.0,9.0,10.0,11.0,7.0,2.0,3.0,5.0,9.0,6.0,17.0,4.0,0.0,0.0,0.0,0.0,0.0,13.0,3.0,8.0,8.0,7.0,5.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
|
|
20
|
+
2021-01-18,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.0,9.0,2.0,2.0,4.0,2.0,7.0,13.0,9.0,5.0,3.0,3.0,5.0,2.0,7.0,8.0,3.0,6.0,1.0,4.0,4.0,6.0,8.0,2.0,5.0,2.0,2.0,2.0,7.0,4.0,6.0,4.0,2.0,1.0,2.0,3.0,11.0,2.0,0.0,0.0,0.0,0.0,0.0,5.0,5.0,3.0,1.0,0.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
|
|
21
|
+
2021-01-19,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.0,11.0,2.0,5.0,4.0,4.0,7.0,15.0,12.0,3.0,6.0,3.0,6.0,5.0,15.0,9.0,6.0,6.0,7.0,4.0,3.0,11.0,10.0,2.0,4.0,0.0,1.0,4.0,3.0,4.0,5.0,3.0,1.0,3.0,2.0,3.0,5.0,3.0,0.0,0.0,0.0,0.0,0.0,3.0,3.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
|
|
22
|
+
2021-01-20,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.0,5.0,3.0,3.0,0.0,2.0,2.0,2.0,3.0,1.0,1.0,0.0,1.0,3.0,2.0,7.0,0.0,0.0,1.0,1.0,4.0,2.0,5.0,3.0,3.0,3.0,0.0,1.0,1.0,2.0,0.0,1.0,2.0,0.0,0.0,2.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
|
|
23
|
+
2021-01-30,82.0,195.0,126.0,81.0,67.0,33.0,22.0,53.0,55.0,20.0,20.0,22.0,13.0,23.0,56.0,52.0,22.0,17.0,19.0,25.0,17.0,42.0,40.0,19.0,22.0,18.0,8.0,9.0,29.0,31.0,8.0,9.0,10.0,10.0,9.0,21.0,25.0,9.0,0.0,0.0,0.0,0.0,0.0,20.0,15.0,15.0,10.0,16.0,7.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
|
|
24
|
+
2021-01-31,73.0,106.0,86.0,55.0,36.0,36.0,53.0,50.0,13.0,21.0,22.0,25.0,13.0,52.0,51.0,22.0,17.0,17.0,25.0,25.0,48.0,52.0,19.0,16.0,27.0,11.0,9.0,25.0,36.0,12.0,10.0,9.0,17.0,9.0,10.0,29.0,5.0,1.0,0.0,0.0,0.0,0.0,19.0,10.0,8.0,10.0,12.0,4.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
|
|
25
|
+
2021-02-01,27.0,78.0,41.0,33.0,25.0,40.0,29.0,9.0,12.0,9.0,11.0,9.0,13.0,22.0,8.0,9.0,4.0,10.0,7.0,19.0,23.0,6.0,11.0,13.0,3.0,3.0,10.0,6.0,3.0,4.0,1.0,6.0,2.0,13.0,12.0,5.0,0.0,0.0,0.0,0.0,0.0,10.0,7.0,5.0,5.0,4.0,7.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
|
|
26
|
+
2021-02-02,21.0,35.0,29.0,17.0,30.0,23.0,9.0,6.0,7.0,9.0,7.0,10.0,16.0,7.0,7.0,5.0,9.0,3.0,8.0,16.0,4.0,6.0,7.0,3.0,5.0,12.0,11.0,2.0,6.0,7.0,5.0,4.0,7.0,10.0,2.0,0.0,0.0,0.0,0.0,0.0,12.0,3.0,5.0,3.0,2.0,5.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
|
|
27
|
+
2021-02-03,13.0,28.0,18.0,33.0,25.0,13.0,8.0,4.0,17.0,10.0,18.0,26.0,17.0,11.0,3.0,13.0,8.0,14.0,19.0,8.0,6.0,8.0,2.0,2.0,4.0,7.0,3.0,5.0,6.0,2.0,2.0,9.0,10.0,6.0,0.0,0.0,0.0,0.0,0.0,8.0,5.0,2.0,0.0,5.0,12.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
|
|
28
|
+
2021-02-04,9.0,20.0,28.0,19.0,12.0,17.0,9.0,6.0,7.0,17.0,14.0,9.0,11.0,5.0,8.0,7.0,12.0,17.0,4.0,3.0,10.0,3.0,4.0,6.0,8.0,1.0,4.0,3.0,6.0,3.0,7.0,5.0,0.0,0.0,0.0,0.0,0.0,0.0,7.0,3.0,1.0,3.0,3.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
|
|
29
|
+
2021-02-05,9.0,28.0,21.0,11.0,12.0,4.0,15.0,7.0,17.0,21.0,7.0,11.0,2.0,10.0,13.0,26.0,21.0,9.0,6.0,7.0,7.0,0.0,9.0,13.0,3.0,3.0,5.0,2.0,4.0,12.0,8.0,2.0,0.0,0.0,0.0,0.0,0.0,5.0,4.0,3.0,2.0,3.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
|
|
30
|
+
2021-02-06,18.0,55.0,23.0,23.0,20.0,28.0,19.0,47.0,57.0,20.0,17.0,13.0,20.0,22.0,36.0,51.0,22.0,19.0,19.0,14.0,13.0,37.0,32.0,6.0,9.0,10.0,17.0,8.0,22.0,24.0,7.0,0.0,0.0,0.0,0.0,0.0,24.0,10.0,9.0,9.0,15.0,8.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
|
|
31
|
+
2021-02-07,17.0,28.0,20.0,22.0,25.0,24.0,43.0,48.0,17.0,20.0,28.0,24.0,21.0,41.0,40.0,17.0,17.0,10.0,10.0,8.0,19.0,25.0,8.0,11.0,8.0,8.0,4.0,17.0,20.0,9.0,0.0,0.0,0.0,0.0,0.0,18.0,6.0,5.0,13.0,9.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
|
|
32
|
+
2021-02-08,7.0,9.0,8.0,6.0,10.0,23.0,22.0,8.0,9.0,8.0,14.0,7.0,24.0,19.0,11.0,11.0,6.0,0.0,4.0,10.0,11.0,5.0,7.0,5.0,5.0,2.0,7.0,12.0,7.0,0.0,0.0,0.0,0.0,0.0,6.0,5.0,2.0,5.0,5.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
|
|
33
|
+
2021-02-09,1.0,6.0,4.0,8.0,15.0,25.0,17.0,9.0,8.0,5.0,11.0,13.0,11.0,5.0,4.0,10.0,2.0,3.0,8.0,9.0,5.0,5.0,5.0,8.0,4.0,12.0,8.0,2.0,0.0,0.0,0.0,0.0,0.0,4.0,2.0,1.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
|
|
34
|
+
2021-02-10,5.0,9.0,9.0,27.0,23.0,18.0,13.0,9.0,12.0,5.0,20.0,25.0,9.0,9.0,9.0,3.0,6.0,3.0,13.0,3.0,7.0,5.0,3.0,5.0,10.0,11.0,1.0,0.0,0.0,0.0,0.0,0.0,6.0,2.0,3.0,7.0,4.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
|
|
35
|
+
2021-02-11,5.0,10.0,25.0,20.0,7.0,11.0,9.0,14.0,9.0,24.0,16.0,5.0,11.0,11.0,4.0,5.0,15.0,7.0,7.0,2.0,7.0,7.0,3.0,10.0,16.0,6.0,0.0,0.0,0.0,0.0,0.0,10.0,7.0,7.0,2.0,5.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
|
|
36
|
+
2021-02-12,3.0,21.0,27.0,11.0,7.0,6.0,19.0,12.0,17.0,22.0,10.0,6.0,7.0,3.0,3.0,10.0,5.0,4.0,2.0,4.0,5.0,9.0,6.0,12.0,6.0,0.0,0.0,0.0,0.0,0.0,18.0,0.0,4.0,2.0,8.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
|
|
37
|
+
2021-02-13,17.0,50.0,12.0,33.0,20.0,18.0,20.0,41.0,49.0,14.0,13.0,23.0,12.0,15.0,27.0,20.0,8.0,11.0,15.0,8.0,18.0,26.0,20.0,12.0,0.0,0.0,0.0,0.0,0.0,18.0,8.0,9.0,12.0,13.0,11.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
|
|
38
|
+
2021-02-14,21.0,20.0,25.0,28.0,23.0,24.0,45.0,43.0,22.0,23.0,21.0,8.0,16.0,25.0,11.0,12.0,12.0,5.0,7.0,8.0,8.0,28.0,14.0,0.0,0.0,0.0,0.0,0.0,23.0,10.0,10.0,12.0,11.0,12.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
|
|
39
|
+
2021-02-15,7.0,8.0,8.0,9.0,11.0,13.0,22.0,4.0,5.0,6.0,6.0,3.0,10.0,8.0,5.0,3.0,4.0,2.0,6.0,10.0,10.0,3.0,0.0,0.0,0.0,0.0,0.0,10.0,5.0,3.0,2.0,4.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
|
|
40
|
+
2021-02-16,7.0,8.0,9.0,6.0,12.0,9.0,6.0,9.0,11.0,2.0,4.0,15.0,14.0,3.0,2.0,7.0,6.0,6.0,10.0,10.0,4.0,0.0,0.0,0.0,0.0,0.0,14.0,6.0,0.0,7.0,2.0,4.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
|
|
41
|
+
2021-02-17,3.0,5.0,6.0,10.0,20.0,6.0,8.0,7.0,4.0,4.0,12.0,8.0,5.0,4.0,4.0,4.0,5.0,5.0,9.0,2.0,0.0,0.0,0.0,0.0,0.0,6.0,5.0,4.0,3.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
|
|
42
|
+
2021-02-18,4.0,9.0,16.0,21.0,8.0,11.0,6.0,3.0,6.0,11.0,12.0,8.0,6.0,4.0,5.0,6.0,11.0,16.0,6.0,0.0,0.0,0.0,0.0,0.0,12.0,4.0,6.0,6.0,6.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
|
|
43
|
+
2021-02-19,6.0,16.0,23.0,7.0,6.0,8.0,1.0,4.0,7.0,12.0,4.0,3.0,4.0,2.0,7.0,11.0,8.0,3.0,0.0,0.0,0.0,0.0,0.0,9.0,6.0,4.0,1.0,4.0,4.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
|
|
44
|
+
2021-02-20,15.0,39.0,13.0,20.0,22.0,6.0,7.0,22.0,22.0,9.0,12.0,9.0,11.0,7.0,15.0,23.0,12.0,0.0,0.0,0.0,0.0,0.0,27.0,10.0,10.0,12.0,12.0,4.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
|
|
45
|
+
2021-02-21,18.0,21.0,21.0,20.0,5.0,14.0,26.0,17.0,6.0,16.0,7.0,10.0,8.0,16.0,23.0,9.0,0.0,0.0,0.0,0.0,0.0,20.0,12.0,12.0,5.0,8.0,7.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
|
|
46
|
+
2021-02-22,1.0,3.0,6.0,4.0,4.0,9.0,8.0,5.0,3.0,7.0,6.0,6.0,5.0,12.0,2.0,1.0,0.0,0.0,0.0,0.0,8.0,4.0,5.0,3.0,6.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
|
|
47
|
+
2021-02-23,2.0,1.0,10.0,2.0,16.0,13.0,3.0,4.0,3.0,1.0,2.0,4.0,12.0,2.0,0.0,0.0,0.0,0.0,0.0,9.0,7.0,5.0,2.0,3.0,4.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
|
|
48
|
+
2021-02-24,4.0,3.0,8.0,10.0,9.0,2.0,5.0,4.0,3.0,2.0,8.0,15.0,1.0,0.0,0.0,0.0,0.0,0.0,7.0,2.0,2.0,2.0,5.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
|
|
49
|
+
2021-02-25,0.0,1.0,4.0,7.0,2.0,1.0,2.0,3.0,1.0,3.0,5.0,1.0,0.0,0.0,0.0,0.0,0.0,8.0,1.0,1.0,1.0,3.0,6.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
|
|
50
|
+
2021-02-26,0.0,13.0,7.0,2.0,3.0,1.0,4.0,5.0,4.0,5.0,3.0,0.0,0.0,0.0,0.0,0.0,6.0,6.0,1.0,3.0,2.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
|
|
51
|
+
2021-02-27,8.0,13.0,2.0,9.0,7.0,6.0,9.0,7.0,14.0,4.0,0.0,0.0,0.0,0.0,0.0,13.0,0.0,4.0,2.0,8.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
|
|
52
|
+
2021-02-28,1.0,4.0,3.0,7.0,5.0,8.0,13.0,19.0,5.0,0.0,0.0,0.0,0.0,0.0,6.0,8.0,3.0,7.0,2.0,5.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
|
|
53
|
+
2021-03-01,0.0,1.0,1.0,7.0,3.0,4.0,9.0,1.0,0.0,0.0,0.0,0.0,0.0,5.0,2.0,1.0,4.0,3.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
|
|
54
|
+
2021-03-02,1.0,2.0,0.0,2.0,5.0,6.0,1.0,0.0,0.0,0.0,0.0,0.0,5.0,2.0,2.0,2.0,4.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
|
|
55
|
+
2021-03-03,1.0,4.0,3.0,4.0,6.0,3.0,0.0,0.0,0.0,0.0,0.0,8.0,3.0,2.0,4.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
|
|
56
|
+
2021-03-04,0.0,3.0,3.0,6.0,4.0,0.0,0.0,0.0,0.0,0.0,5.0,4.0,1.0,5.0,3.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
|
|
57
|
+
2021-03-05,0.0,2.0,8.0,2.0,0.0,0.0,0.0,0.0,0.0,3.0,1.0,0.0,0.0,1.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
|
|
58
|
+
2021-03-06,3.0,12.0,5.0,0.0,0.0,0.0,0.0,0.0,12.0,8.0,10.0,2.0,4.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
|
|
59
|
+
2021-03-07,1.0,7.0,0.0,0.0,0.0,0.0,0.0,12.0,4.0,5.0,7.0,4.0,6.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
|
|
60
|
+
2021-03-08,0.0,1.0,0.0,0.0,0.0,0.0,2.0,2.0,4.0,4.0,4.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
|
|
61
|
+
2021-03-14,3.0,2.0,4.0,1.0,5.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
|
|
62
|
+
2021-03-15,1.0,1.0,2.0,4.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
|
|
63
|
+
2021-03-16,0.0,0.0,2.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
|
|
64
|
+
2021-03-17,0.0,7.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
|
|
65
|
+
2021-03-18,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
|
|
66
|
+
2021-03-19,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
|
|
@@ -0,0 +1,64 @@
|
|
|
1
|
+
daily,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63
|
|
2
|
+
2021-01-01,14.0,86.0,19.0,4.0,1.0,0.0,1.0,3.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,44.0,24.0,17.0,8.0,5.0,4.0,1.0,2.0,2.0,0.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
|
|
3
|
+
2021-01-02,89.0,48.0,30.0,18.0,15.0,6.0,2.0,2.0,0.0,0.0,1.0,0.0,2.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,142.0,112.0,60.0,41.0,25.0,14.0,6.0,0.0,3.0,3.0,3.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
|
|
4
|
+
2021-01-03,20.0,54.0,28.0,22.0,5.0,10.0,6.0,5.0,1.0,4.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0
|
|
5
|
+
2021-01-04,22.0,53.0,36.0,8.0,10.0,12.0,5.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
|
|
6
|
+
2021-01-05,15.0,35.0,23.0,14.0,13.0,4.0,4.0,2.0,3.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
|
|
7
|
+
2021-01-06,16.0,32.0,18.0,13.0,10.0,4.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
|
|
8
|
+
2021-01-07,8.0,29.0,16.0,14.0,7.0,10.0,4.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
|
|
9
|
+
2021-01-08,4.0,21.0,19.0,2.0,1.0,1.0,4.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
|
|
10
|
+
2021-01-09,8.0,7.0,8.0,4.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
|
|
11
|
+
2021-01-10,9.0,13.0,6.0,5.0,1.0,2.0,2.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0
|
|
12
|
+
2021-01-11,2.0,5.0,4.0,0.0,2.0,1.0,1.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
|
|
13
|
+
2021-01-12,3.0,6.0,3.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0
|
|
14
|
+
2021-01-13,2.0,1.0,5.0,1.0,1.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
|
|
15
|
+
2021-01-14,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0
|
|
16
|
+
2021-01-15,1.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0
|
|
17
|
+
2021-01-16,1.0,1.0,2.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,1.0,2.0,0.0,0.0,2.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0
|
|
18
|
+
2021-01-17,0.0,2.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,1.0,2.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
|
|
19
|
+
2021-01-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,1.0,0.0,2.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
|
|
20
|
+
2021-01-19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,2.0,0.0,1.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
|
|
21
|
+
2021-01-20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
|
|
22
|
+
2021-01-30,90.0,168.0,109.0,71.0,45.0,26.0,16.0,14.0,13.0,4.0,3.0,0.0,1.0,2.0,2.0,3.0,0.0,1.0,0.0,0.0,0.0,2.0,1.0,3.0,0.0,0.0,0.0,1.0,1.0,0.0,2.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
|
|
23
|
+
2021-01-31,65.0,150.0,110.0,64.0,36.0,28.0,21.0,13.0,8.0,3.0,3.0,2.0,0.0,6.0,0.0,2.0,0.0,1.0,1.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,3.0,1.0,1.0,0.0,2.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
|
|
24
|
+
2021-02-01,56.0,123.0,80.0,51.0,33.0,30.0,14.0,14.0,7.0,5.0,4.0,1.0,3.0,2.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,1.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
|
|
25
|
+
2021-02-02,48.0,105.0,67.0,44.0,22.0,14.0,3.0,9.0,1.0,5.0,1.0,3.0,3.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,2.0,2.0,1.0,0.0,0.0,3.0,0.0,0.0,0.0,1.0,0.0,0.0,2.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
|
|
26
|
+
2021-02-03,33.0,74.0,48.0,32.0,19.0,7.0,5.0,3.0,1.0,5.0,3.0,1.0,2.0,1.0,1.0,0.0,0.0,1.0,2.0,0.0,2.0,0.0,0.0,0.0,1.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
|
|
27
|
+
2021-02-04,30.0,54.0,39.0,18.0,13.0,11.0,6.0,6.0,3.0,4.0,4.0,0.0,0.0,1.0,1.0,0.0,0.0,2.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
|
|
28
|
+
2021-02-05,15.0,33.0,26.0,23.0,7.0,7.0,2.0,0.0,2.0,4.0,0.0,1.0,4.0,0.0,1.0,4.0,2.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
|
|
29
|
+
2021-02-06,16.0,27.0,24.0,12.0,11.0,6.0,4.0,8.0,7.0,4.0,3.0,3.0,0.0,0.0,7.0,3.0,2.0,0.0,0.0,0.0,1.0,3.0,3.0,1.0,0.0,1.0,1.0,1.0,3.0,3.0,1.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
|
|
30
|
+
2021-02-07,12.0,21.0,14.0,13.0,8.0,8.0,10.0,11.0,3.0,3.0,2.0,3.0,2.0,3.0,5.0,2.0,2.0,4.0,0.0,1.0,2.0,2.0,2.0,2.0,0.0,1.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,2.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
|
|
31
|
+
2021-02-08,8.0,15.0,10.0,5.0,3.0,1.0,2.0,0.0,0.0,1.0,1.0,0.0,1.0,3.0,1.0,0.0,1.0,0.0,1.0,1.0,3.0,2.0,0.0,1.0,0.0,3.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
|
|
32
|
+
2021-02-09,5.0,12.0,8.0,4.0,7.0,6.0,1.0,1.0,1.0,1.0,1.0,0.0,2.0,1.0,0.0,1.0,1.0,0.0,1.0,3.0,1.0,0.0,1.0,3.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
|
|
33
|
+
2021-02-10,3.0,11.0,7.0,2.0,4.0,2.0,0.0,1.0,2.0,0.0,0.0,3.0,0.0,1.0,1.0,0.0,0.0,2.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
|
|
34
|
+
2021-02-11,2.0,7.0,6.0,4.0,2.0,2.0,0.0,3.0,2.0,1.0,3.0,2.0,1.0,3.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,2.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
|
|
35
|
+
2021-02-12,0.0,3.0,4.0,2.0,0.0,3.0,3.0,1.0,3.0,0.0,0.0,1.0,0.0,0.0,3.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
|
|
36
|
+
2021-02-13,2.0,4.0,4.0,3.0,1.0,2.0,4.0,2.0,5.0,3.0,2.0,2.0,0.0,0.0,3.0,2.0,1.0,0.0,2.0,0.0,0.0,2.0,5.0,1.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,1.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
|
|
37
|
+
2021-02-14,5.0,3.0,3.0,2.0,2.0,1.0,7.0,5.0,4.0,1.0,4.0,0.0,2.0,2.0,4.0,1.0,2.0,0.0,1.0,0.0,2.0,5.0,3.0,0.0,0.0,0.0,0.0,0.0,1.0,2.0,0.0,3.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
|
|
38
|
+
2021-02-15,1.0,0.0,2.0,1.0,0.0,3.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,1.0,0.0,6.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
|
|
39
|
+
2021-02-16,0.0,0.0,2.0,2.0,3.0,1.0,0.0,1.0,2.0,0.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,2.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
|
|
40
|
+
2021-02-17,1.0,1.0,2.0,1.0,2.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
|
|
41
|
+
2021-02-18,1.0,1.0,1.0,4.0,2.0,2.0,2.0,0.0,1.0,1.0,2.0,2.0,1.0,1.0,3.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,2.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
|
|
42
|
+
2021-02-19,0.0,5.0,5.0,1.0,1.0,1.0,0.0,1.0,0.0,2.0,0.0,3.0,3.0,0.0,1.0,1.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
|
|
43
|
+
2021-02-20,4.0,8.0,3.0,0.0,5.0,0.0,1.0,4.0,2.0,0.0,0.0,1.0,1.0,3.0,1.0,4.0,2.0,0.0,0.0,0.0,0.0,0.0,2.0,3.0,1.0,1.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
|
|
44
|
+
2021-02-21,2.0,4.0,1.0,5.0,0.0,1.0,6.0,3.0,1.0,2.0,1.0,5.0,0.0,1.0,4.0,4.0,0.0,0.0,0.0,0.0,0.0,4.0,1.0,0.0,3.0,2.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
|
|
45
|
+
2021-02-22,0.0,1.0,1.0,2.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
|
|
46
|
+
2021-02-23,0.0,1.0,1.0,1.0,3.0,2.0,0.0,2.0,2.0,3.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
|
|
47
|
+
2021-02-24,0.0,0.0,0.0,2.0,2.0,1.0,0.0,1.0,0.0,1.0,1.0,2.0,2.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
|
|
48
|
+
2021-02-25,0.0,0.0,1.0,2.0,0.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
|
|
49
|
+
2021-02-26,0.0,0.0,2.0,0.0,0.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
|
|
50
|
+
2021-02-27,0.0,3.0,1.0,1.0,1.0,1.0,4.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,4.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
|
|
51
|
+
2021-02-28,0.0,0.0,3.0,1.0,2.0,0.0,3.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,1.0,2.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
|
|
52
|
+
2021-03-01,1.0,0.0,0.0,0.0,2.0,0.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
|
|
53
|
+
2021-03-02,0.0,1.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
|
|
54
|
+
2021-03-03,0.0,0.0,4.0,0.0,1.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,2.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
|
|
55
|
+
2021-03-04,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
|
|
56
|
+
2021-03-05,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
|
|
57
|
+
2021-03-06,1.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
|
|
58
|
+
2021-03-07,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,2.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
|
|
59
|
+
2021-03-08,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
|
|
60
|
+
2021-03-14,0.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
|
|
61
|
+
2021-03-15,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
|
|
62
|
+
2021-03-16,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
|
|
63
|
+
2021-03-17,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
|
|
64
|
+
2021-03-19,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
|
|
@@ -0,0 +1,55 @@
|
|
|
1
|
+
daily,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38
|
|
2
|
+
2021-01-01,0.0,4.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,3.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0
|
|
3
|
+
2021-01-02,23.0,10.0,9.0,3.0,4.0,3.0,3.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,37.0,32.0,20.0,11.0,8.0,3.0,5.0,2.0,0.0,0.0,0.0
|
|
4
|
+
2021-01-03,11.0,26.0,14.0,14.0,9.0,5.0,2.0,2.0,2.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
|
|
5
|
+
2021-01-04,11.0,35.0,23.0,18.0,9.0,4.0,2.0,5.0,0.0,2.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
|
|
6
|
+
2021-01-05,14.0,39.0,21.0,14.0,8.0,7.0,4.0,3.0,2.0,2.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
|
|
7
|
+
2021-01-06,11.0,40.0,27.0,13.0,13.0,7.0,6.0,2.0,2.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
|
|
8
|
+
2021-01-07,10.0,34.0,14.0,9.0,8.0,5.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
|
|
9
|
+
2021-01-08,16.0,24.0,21.0,14.0,3.0,4.0,1.0,4.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
|
|
10
|
+
2021-01-09,14.0,28.0,14.0,13.0,8.0,4.0,2.0,3.0,2.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
|
|
11
|
+
2021-01-10,6.0,21.0,16.0,12.0,7.0,6.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
|
|
12
|
+
2021-01-11,6.0,18.0,6.0,4.0,1.0,2.0,0.0,2.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
|
|
13
|
+
2021-01-12,6.0,12.0,11.0,3.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
|
|
14
|
+
2021-01-13,5.0,11.0,5.0,2.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
|
|
15
|
+
2021-01-14,2.0,3.0,4.0,1.0,1.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
|
|
16
|
+
2021-01-15,4.0,3.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
|
|
17
|
+
2021-01-16,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
|
|
18
|
+
2021-01-17,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
|
|
19
|
+
2021-01-18,2.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
|
|
20
|
+
2021-01-19,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
|
|
21
|
+
2021-01-20,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
|
|
22
|
+
2021-01-29,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
|
|
23
|
+
2021-01-30,31.0,91.0,67.0,30.0,23.0,11.0,15.0,5.0,5.0,2.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
|
|
24
|
+
2021-01-31,58.0,106.0,80.0,46.0,24.0,23.0,9.0,9.0,7.0,5.0,2.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
|
|
25
|
+
2021-02-01,50.0,121.0,83.0,49.0,34.0,18.0,15.0,8.0,6.0,2.0,1.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
|
|
26
|
+
2021-02-02,54.0,148.0,64.0,39.0,33.0,24.0,12.0,5.0,6.0,2.0,3.0,1.0,1.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
|
|
27
|
+
2021-02-03,58.0,111.0,63.0,44.0,26.0,14.0,14.0,8.0,2.0,9.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0
|
|
28
|
+
2021-02-04,48.0,90.0,62.0,33.0,23.0,15.0,9.0,8.0,3.0,2.0,4.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
|
|
29
|
+
2021-02-05,33.0,79.0,41.0,33.0,18.0,20.0,8.0,4.0,3.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
|
|
30
|
+
2021-02-06,36.0,58.0,32.0,24.0,16.0,15.0,6.0,5.0,2.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
|
|
31
|
+
2021-02-07,23.0,46.0,24.0,19.0,11.0,7.0,4.0,3.0,1.0,2.0,1.0,2.0,2.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
|
|
32
|
+
2021-02-08,20.0,40.0,18.0,18.0,13.0,6.0,2.0,2.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
|
|
33
|
+
2021-02-09,14.0,29.0,14.0,16.0,7.0,0.0,3.0,1.0,2.0,1.0,2.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
|
|
34
|
+
2021-02-10,8.0,17.0,10.0,9.0,5.0,7.0,1.0,1.0,2.0,0.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
|
|
35
|
+
2021-02-11,6.0,12.0,12.0,8.0,7.0,3.0,4.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
|
|
36
|
+
2021-02-12,7.0,6.0,5.0,6.0,1.0,1.0,0.0,2.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
|
|
37
|
+
2021-02-13,5.0,7.0,2.0,1.0,3.0,2.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0
|
|
38
|
+
2021-02-14,4.0,6.0,4.0,5.0,6.0,2.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
|
|
39
|
+
2021-02-15,1.0,3.0,2.0,3.0,1.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
|
|
40
|
+
2021-02-16,1.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
|
|
41
|
+
2021-02-17,1.0,2.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
|
|
42
|
+
2021-02-18,1.0,2.0,2.0,2.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
|
|
43
|
+
2021-02-19,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
|
|
44
|
+
2021-02-20,0.0,0.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
|
|
45
|
+
2021-02-21,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
|
|
46
|
+
2021-02-22,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
|
|
47
|
+
2021-02-23,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
|
|
48
|
+
2021-02-24,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
|
|
49
|
+
2021-02-26,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
|
|
50
|
+
2021-02-27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
|
|
51
|
+
2021-02-28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
|
|
52
|
+
2021-03-03,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
|
|
53
|
+
2021-03-04,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
|
|
54
|
+
2021-03-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
|
|
55
|
+
2021-03-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
|
|
@@ -0,0 +1,199 @@
|
|
|
1
|
+
dimension,daily,order_count,payment_amount,discount_amount,client_client_count
|
|
2
|
+
location_1,2021-05-18T00:00:00,15,461.34000000000003,12.51885,14
|
|
3
|
+
location_1,2021-05-19T00:00:00,1993,52326.45499999996,1448.0512000000006,1698
|
|
4
|
+
location_1,2021-05-20T00:00:00,1900,50227.18500000004,1367.8359000000005,1605
|
|
5
|
+
location_1,2021-05-21T00:00:00,2230,58647.299999999945,1318.0431499999995,1891
|
|
6
|
+
location_1,2021-05-22T00:00:00,2068,54521.89499999991,1407.0853000000006,1768
|
|
7
|
+
location_1,2021-05-23T00:00:00,1965,54365.905000000035,1374.3927499999982,1657
|
|
8
|
+
location_1,2021-05-24T00:00:00,1889,50271.21500000006,1343.8665999999996,1603
|
|
9
|
+
location_1,2021-05-25T00:00:00,2083,55781.05500000002,1306.4592999999995,1761
|
|
10
|
+
location_1,2021-05-26T00:00:00,1934,50752.64499999998,1350.5974499999993,1661
|
|
11
|
+
location_1,2021-05-27T00:00:00,2021,53202.415000000045,1433.7164499999997,1732
|
|
12
|
+
location_1,2021-05-28T00:00:00,1825,50584.50999999998,1388.6577499999994,1528
|
|
13
|
+
location_1,2021-05-29T00:00:00,2151,57320.17499999999,1430.0660500000004,1821
|
|
14
|
+
location_1,2021-05-30T00:00:00,1875,51077.38499999994,1476.7814500000006,1559
|
|
15
|
+
location_1,2021-05-31T00:00:00,1931,52777.82999999994,1330.9690499999992,1630
|
|
16
|
+
location_1,2021-06-01T00:00:00,2083,57091.564999999966,1571.1581499999995,1735
|
|
17
|
+
location_1,2021-06-02T00:00:00,2060,54538.859999999964,1454.9794499999991,1760
|
|
18
|
+
location_1,2021-06-03T00:00:00,2000,53712.264999999956,1367.8186499999986,1712
|
|
19
|
+
location_1,2021-06-04T00:00:00,1988,53177.17500000014,1409.7872000000013,1698
|
|
20
|
+
location_1,2021-06-05T00:00:00,2219,58882.63499999997,1598.7327999999998,1883
|
|
21
|
+
location_1,2021-06-06T00:00:00,2046,54517.714999999975,1450.0819500000005,1716
|
|
22
|
+
location_1,2021-06-07T00:00:00,2049,52542.55499999997,1392.7150999999994,1731
|
|
23
|
+
location_1,2021-06-08T00:00:00,1984,53416.11499999999,1222.6955500000001,1663
|
|
24
|
+
location_1,2021-06-09T00:00:00,2061,53322.88500000013,1475.0202499999991,1752
|
|
25
|
+
location_1,2021-06-10T00:00:00,2098,53969.82000000014,1288.5547500000014,1803
|
|
26
|
+
location_1,2021-06-11T00:00:00,1806,48424.74500000009,1390.0360000000005,1545
|
|
27
|
+
location_1,2021-06-12T00:00:00,1997,53891.28499999995,1291.8452999999993,1687
|
|
28
|
+
location_1,2021-06-13T00:00:00,2102,55414.06000000005,1395.5503,1798
|
|
29
|
+
location_1,2021-06-14T00:00:00,1928,51656.29500000002,1472.8340999999996,1594
|
|
30
|
+
location_1,2021-06-15T00:00:00,2118,54660.070000000036,1456.6232499999994,1810
|
|
31
|
+
location_1,2021-06-16T00:00:00,1913,51709.96500000008,1489.7663500000003,1614
|
|
32
|
+
location_1,2021-06-17T00:00:00,2124,57228.86000000002,1516.8378999999993,1818
|
|
33
|
+
location_1,2021-06-18T00:00:00,2106,56194.59999999999,1458.7871499999994,1785
|
|
34
|
+
location_1,2021-06-19T00:00:00,1880,51201.69499999996,1570.475699999998,1564
|
|
35
|
+
location_1,2021-06-20T00:00:00,2095,54153.39500000004,1444.3991500000009,1782
|
|
36
|
+
location_1,2021-06-21T00:00:00,2004,53099.609999999986,1546.9592000000007,1694
|
|
37
|
+
location_1,2021-06-22T00:00:00,1844,49508.605000000054,1313.9948999999992,1539
|
|
38
|
+
location_1,2021-06-23T00:00:00,2093,54383.455000000045,1447.8777000000002,1795
|
|
39
|
+
location_1,2021-06-24T00:00:00,2135,57037.98500000001,1489.9223999999992,1825
|
|
40
|
+
location_1,2021-06-25T00:00:00,1956,51890.074999999924,1465.576750000001,1662
|
|
41
|
+
location_1,2021-06-26T00:00:00,1991,55450.915000000066,1659.7137499999997,1675
|
|
42
|
+
location_1,2021-06-27T00:00:00,1990,53390.610000000015,1538.6718000000003,1656
|
|
43
|
+
location_1,2021-06-28T00:00:00,1925,51080.9600000001,1366.7637499999992,1648
|
|
44
|
+
location_1,2021-06-29T00:00:00,1855,49199.21999999984,1445.0662999999997,1538
|
|
45
|
+
location_1,2021-06-30T00:00:00,1866,50762.849999999955,1529.7005499999989,1577
|
|
46
|
+
location_1,2021-07-01T00:00:00,2074,54642.54999999994,1475.316500000001,1792
|
|
47
|
+
location_1,2021-07-02T00:00:00,2106,55871.64499999999,1360.42645,1798
|
|
48
|
+
location_1,2021-07-03T00:00:00,2194,57170.904999999926,1308.5204499999993,1861
|
|
49
|
+
location_1,2021-07-04T00:00:00,2223,59598.87,1542.6994000000018,1902
|
|
50
|
+
location_1,2021-07-05T00:00:00,1922,51020.23999999992,1545.44165,1639
|
|
51
|
+
location_1,2021-07-06T00:00:00,1989,52087.74000000007,1602.642,1666
|
|
52
|
+
location_1,2021-07-07T00:00:00,1842,49951.329999999994,1483.8714499999999,1545
|
|
53
|
+
location_1,2021-07-08T00:00:00,2096,55432.30999999991,1245.5033500000009,1797
|
|
54
|
+
location_1,2021-07-09T00:00:00,1924,51540.985000000066,1487.5753999999988,1619
|
|
55
|
+
location_1,2021-07-10T00:00:00,2043,55392.51500000006,1689.155500000002,1697
|
|
56
|
+
location_1,2021-07-11T00:00:00,2143,58367.3149999999,1503.9162,1809
|
|
57
|
+
location_1,2021-07-12T00:00:00,1963,52476.029999999875,1509.5408499999985,1636
|
|
58
|
+
location_1,2021-07-13T00:00:00,2068,54373.089999999946,1361.7060999999997,1751
|
|
59
|
+
location_1,2021-07-14T00:00:00,1841,49164.254999999976,1285.8341499999995,1543
|
|
60
|
+
location_1,2021-07-15T00:00:00,1811,50056.34500000003,1328.4370000000004,1526
|
|
61
|
+
location_1,2021-07-16T00:00:00,2068,55074.49500000005,1603.0949999999987,1771
|
|
62
|
+
location_1,2021-07-17T00:00:00,2041,53566.35000000009,1504.5145,1718
|
|
63
|
+
location_1,2021-07-18T00:00:00,2125,56354.669999999925,1355.991700000001,1803
|
|
64
|
+
location_1,2021-07-19T00:00:00,2117,56540.67999999995,1361.6094499999988,1797
|
|
65
|
+
location_1,2021-07-20T00:00:00,1824,46586.55999999995,1120.4046500000004,1539
|
|
66
|
+
location_1,2021-07-21T00:00:00,2015,50606.579999999936,1143.2065500000008,1663
|
|
67
|
+
location_1,2021-07-22T00:00:00,1827,47326.92500000001,1162.3076999999998,1527
|
|
68
|
+
location_2,2021-05-18T00:00:00,41,973.3150000000003,19.5918,39
|
|
69
|
+
location_2,2021-05-19T00:00:00,2039,52551.385,1440.3510499999995,1682
|
|
70
|
+
location_2,2021-05-20T00:00:00,2021,52165.76499999997,1444.7666500000003,1686
|
|
71
|
+
location_2,2021-05-21T00:00:00,1991,52529.69999999994,1169.2997000000007,1664
|
|
72
|
+
location_2,2021-05-22T00:00:00,1838,47080.325,1344.4625500000004,1519
|
|
73
|
+
location_2,2021-05-23T00:00:00,1894,50253.76999999996,1338.9026499999995,1567
|
|
74
|
+
location_2,2021-05-24T00:00:00,1880,48327.745000000024,1332.2941000000003,1573
|
|
75
|
+
location_2,2021-05-25T00:00:00,1827,48062.83500000002,1163.92445,1505
|
|
76
|
+
location_2,2021-05-26T00:00:00,1883,50423.02000000011,1370.0684000000015,1573
|
|
77
|
+
location_2,2021-05-27T00:00:00,1996,51604.080000000016,1411.22595,1681
|
|
78
|
+
location_2,2021-05-28T00:00:00,2064,53386.76999999991,1335.605749999999,1726
|
|
79
|
+
location_2,2021-05-29T00:00:00,2036,51354.11499999994,1419.9179000000001,1696
|
|
80
|
+
location_2,2021-05-30T00:00:00,1965,51518.44500000002,1673.295099999999,1632
|
|
81
|
+
location_2,2021-05-31T00:00:00,2049,52715.02999999996,1384.4559000000006,1719
|
|
82
|
+
location_2,2021-06-01T00:00:00,1917,50260.87499999995,1514.3123999999987,1582
|
|
83
|
+
location_2,2021-06-02T00:00:00,1925,50206.75000000009,1487.5944499999998,1617
|
|
84
|
+
location_2,2021-06-03T00:00:00,1965,51456.64500000004,1533.9266499999994,1659
|
|
85
|
+
location_2,2021-06-04T00:00:00,1828,48214.45000000004,1339.4024999999995,1539
|
|
86
|
+
location_2,2021-06-05T00:00:00,1975,51428.435000000034,1280.9518499999997,1633
|
|
87
|
+
location_2,2021-06-06T00:00:00,2140,55266.39499999992,1441.4970000000003,1803
|
|
88
|
+
location_2,2021-06-07T00:00:00,2086,52827.555000000015,1393.4204500000003,1759
|
|
89
|
+
location_2,2021-06-08T00:00:00,1913,50675.52499999998,1307.863650000001,1584
|
|
90
|
+
location_2,2021-06-09T00:00:00,1765,46360.00999999995,1237.3257499999997,1475
|
|
91
|
+
location_2,2021-06-10T00:00:00,1889,49186.865000000085,1172.6261500000003,1588
|
|
92
|
+
location_2,2021-06-11T00:00:00,1756,46056.090000000084,1313.482249999999,1461
|
|
93
|
+
location_2,2021-06-12T00:00:00,2062,53286.55999999991,1424.2917000000011,1717
|
|
94
|
+
location_2,2021-06-13T00:00:00,2204,57645.01000000014,1540.4258999999995,1840
|
|
95
|
+
location_2,2021-06-14T00:00:00,2070,54009.62000000006,1445.6977999999997,1737
|
|
96
|
+
location_2,2021-06-15T00:00:00,1774,45998.449999999975,1367.8412500000009,1453
|
|
97
|
+
location_2,2021-06-16T00:00:00,2037,51688.66000000004,1343.6499499999989,1720
|
|
98
|
+
location_2,2021-06-17T00:00:00,1972,51539.06000000006,1605.7010500000015,1658
|
|
99
|
+
location_2,2021-06-18T00:00:00,1857,49544.15000000001,1417.1154000000004,1527
|
|
100
|
+
location_2,2021-06-19T00:00:00,2005,53235.37999999997,1391.7345000000003,1661
|
|
101
|
+
location_2,2021-06-20T00:00:00,2039,53759.05499999991,1353.758399999999,1694
|
|
102
|
+
location_2,2021-06-21T00:00:00,2041,52340.21500000001,1432.0092999999995,1743
|
|
103
|
+
location_2,2021-06-22T00:00:00,2101,53134.66500000005,1503.397300000002,1760
|
|
104
|
+
location_2,2021-06-23T00:00:00,1924,50044.2249999998,1387.5478500000006,1599
|
|
105
|
+
location_2,2021-06-24T00:00:00,1751,45496.59,1372.5805499999997,1442
|
|
106
|
+
location_2,2021-06-25T00:00:00,1969,48997.34499999999,1368.0005999999996,1655
|
|
107
|
+
location_2,2021-06-26T00:00:00,2087,54742.269999999924,1438.3674500000004,1751
|
|
108
|
+
location_2,2021-06-27T00:00:00,1975,51857.32500000005,1605.361950000001,1615
|
|
109
|
+
location_2,2021-06-28T00:00:00,2004,52279.99000000006,1398.766149999999,1649
|
|
110
|
+
location_2,2021-06-29T00:00:00,2104,53086.51000000005,1371.4775999999993,1780
|
|
111
|
+
location_2,2021-06-30T00:00:00,1911,49163.41999999999,1271.3188499999999,1591
|
|
112
|
+
location_2,2021-07-01T00:00:00,2131,53521.40999999997,1221.1405000000004,1815
|
|
113
|
+
location_2,2021-07-02T00:00:00,2040,51840.95999999995,1336.3670000000006,1709
|
|
114
|
+
location_2,2021-07-03T00:00:00,1914,49005.88999999995,1275.2303499999996,1627
|
|
115
|
+
location_2,2021-07-04T00:00:00,2104,53965.05500000005,1344.6010499999995,1767
|
|
116
|
+
location_2,2021-07-05T00:00:00,2075,53766.73000000001,1648.3505499999999,1732
|
|
117
|
+
location_2,2021-07-06T00:00:00,1995,52109.03500000001,1350.5763000000006,1682
|
|
118
|
+
location_2,2021-07-07T00:00:00,2062,52125.315,1134.1552000000001,1739
|
|
119
|
+
location_2,2021-07-08T00:00:00,1995,51319.58499999991,1419.9816499999997,1672
|
|
120
|
+
location_2,2021-07-09T00:00:00,2066,51612.53999999998,1286.4472999999991,1760
|
|
121
|
+
location_2,2021-07-10T00:00:00,2220,57347.54499999999,1535.5688000000005,1875
|
|
122
|
+
location_2,2021-07-11T00:00:00,1773,47093.520000000106,1336.301199999999,1477
|
|
123
|
+
location_2,2021-07-12T00:00:00,1957,51122.29499999991,1258.9343500000002,1630
|
|
124
|
+
location_2,2021-07-13T00:00:00,1989,52003.03999999997,1416.4933999999998,1677
|
|
125
|
+
location_2,2021-07-14T00:00:00,2006,52282.15999999997,1469.8237999999992,1685
|
|
126
|
+
location_2,2021-07-15T00:00:00,2104,52871.12500000009,1343.5824499999992,1765
|
|
127
|
+
location_2,2021-07-16T00:00:00,2217,55707.490000000056,1387.3886499999994,1877
|
|
128
|
+
location_2,2021-07-17T00:00:00,2053,53142.96000000004,1539.11505,1710
|
|
129
|
+
location_2,2021-07-18T00:00:00,1969,51028.504999999896,1362.42235,1614
|
|
130
|
+
location_2,2021-07-19T00:00:00,1980,51516.92499999999,1245.6673499999988,1659
|
|
131
|
+
location_2,2021-07-20T00:00:00,2294,59211.989999999976,1703.591750000002,1911
|
|
132
|
+
location_2,2021-07-21T00:00:00,2360,60755.66999999999,1534.7211000000004,1950
|
|
133
|
+
location_2,2021-07-22T00:00:00,2461,62659.9650000001,1472.2729000000002,2069
|
|
134
|
+
location_3,2021-05-18T00:00:00,24,431.87999999999994,0.0,24
|
|
135
|
+
location_3,2021-05-19T00:00:00,1371,34466.205000000016,821.06795,1182
|
|
136
|
+
location_3,2021-05-20T00:00:00,1537,39607.74000000005,1046.0394000000001,1328
|
|
137
|
+
location_3,2021-05-21T00:00:00,1476,37815.29999999996,902.7681999999999,1267
|
|
138
|
+
location_3,2021-05-22T00:00:00,1475,36731.58500000001,911.7328999999996,1230
|
|
139
|
+
location_3,2021-05-23T00:00:00,1535,39310.88500000004,970.4042000000003,1310
|
|
140
|
+
location_3,2021-05-24T00:00:00,1427,35876.06500000002,976.0319999999998,1226
|
|
141
|
+
location_3,2021-05-25T00:00:00,1250,31543.96999999998,878.4440000000003,1054
|
|
142
|
+
location_3,2021-05-26T00:00:00,1554,39554.20500000008,835.1061,1350
|
|
143
|
+
location_3,2021-05-27T00:00:00,1440,35890.02500000002,1011.8269499999997,1222
|
|
144
|
+
location_3,2021-05-28T00:00:00,1404,35664.884999999966,941.7181,1209
|
|
145
|
+
location_3,2021-05-29T00:00:00,1405,36300.14500000001,849.7556499999995,1179
|
|
146
|
+
location_3,2021-05-30T00:00:00,1519,37934.760000000024,1007.8937999999996,1290
|
|
147
|
+
location_3,2021-05-31T00:00:00,1441,36196.54999999996,790.5685,1243
|
|
148
|
+
location_3,2021-06-01T00:00:00,1377,35390.54000000001,844.0537999999999,1183
|
|
149
|
+
location_3,2021-06-02T00:00:00,1422,35255.30500000001,911.1309500000003,1227
|
|
150
|
+
location_3,2021-06-03T00:00:00,1472,36721.83999999999,838.6818000000002,1260
|
|
151
|
+
location_3,2021-06-04T00:00:00,1455,36709.21999999994,898.2198500000005,1237
|
|
152
|
+
location_3,2021-06-05T00:00:00,1316,32945.215000000004,890.7382499999997,1103
|
|
153
|
+
location_3,2021-06-06T00:00:00,1402,36394.76999999999,839.9460999999999,1171
|
|
154
|
+
location_3,2021-06-07T00:00:00,1286,33242.21500000002,836.4753999999997,1104
|
|
155
|
+
location_3,2021-06-08T00:00:00,1315,33166.48000000007,910.4458999999997,1117
|
|
156
|
+
location_3,2021-06-09T00:00:00,1354,34281.23000000001,830.2672499999998,1161
|
|
157
|
+
location_3,2021-06-10T00:00:00,1174,30353.84500000004,721.64375,993
|
|
158
|
+
location_3,2021-06-11T00:00:00,1373,34644.59499999998,745.6485999999998,1187
|
|
159
|
+
location_3,2021-06-12T00:00:00,1380,34843.16999999998,684.1450499999999,1186
|
|
160
|
+
location_3,2021-06-13T00:00:00,1560,40089.79999999998,900.3493,1337
|
|
161
|
+
location_3,2021-06-14T00:00:00,1455,37292.36999999997,974.0233499999997,1239
|
|
162
|
+
location_3,2021-06-15T00:00:00,1380,34077.14999999999,840.3453000000001,1169
|
|
163
|
+
location_3,2021-06-16T00:00:00,1401,35134.93,882.5570999999998,1199
|
|
164
|
+
location_3,2021-06-17T00:00:00,1332,33326.31,919.0197999999995,1152
|
|
165
|
+
location_3,2021-06-18T00:00:00,1331,33773.61499999999,787.7688499999996,1113
|
|
166
|
+
location_3,2021-06-19T00:00:00,1441,37102.34500000002,993.1746999999995,1207
|
|
167
|
+
location_3,2021-06-20T00:00:00,1400,36439.17000000001,856.4440500000002,1205
|
|
168
|
+
location_3,2021-06-21T00:00:00,1358,34521.30999999999,874.1743999999995,1154
|
|
169
|
+
location_3,2021-06-22T00:00:00,1513,37415.07000000003,953.0391500000002,1323
|
|
170
|
+
location_3,2021-06-23T00:00:00,1384,35491.77499999997,906.14375,1173
|
|
171
|
+
location_3,2021-06-24T00:00:00,1524,38884.760000000024,844.2635000000004,1314
|
|
172
|
+
location_3,2021-06-25T00:00:00,1332,33390.71,792.2288500000001,1135
|
|
173
|
+
location_3,2021-06-26T00:00:00,1454,36498.550000000054,848.2132500000001,1216
|
|
174
|
+
location_3,2021-06-27T00:00:00,1332,33878.54499999997,809.0216499999996,1142
|
|
175
|
+
location_3,2021-06-28T00:00:00,1230,32080.230000000025,824.1933,1028
|
|
176
|
+
location_3,2021-06-29T00:00:00,1402,36012.019999999866,915.4152500000005,1191
|
|
177
|
+
location_3,2021-06-30T00:00:00,1316,34281.794999999984,818.7814000000005,1122
|
|
178
|
+
location_3,2021-07-01T00:00:00,1472,36197.810000000034,723.2079999999999,1246
|
|
179
|
+
location_3,2021-07-02T00:00:00,1335,33506.53500000004,928.6224500000006,1124
|
|
180
|
+
location_3,2021-07-03T00:00:00,1305,34304.03499999996,887.8028999999993,1085
|
|
181
|
+
location_3,2021-07-04T00:00:00,1367,34390.304999999964,904.2695500000003,1166
|
|
182
|
+
location_3,2021-07-05T00:00:00,1338,34959.980000000025,847.4410999999993,1134
|
|
183
|
+
location_3,2021-07-06T00:00:00,1531,39248.99500000012,896.6465,1322
|
|
184
|
+
location_3,2021-07-07T00:00:00,1421,36503.80499999999,718.6875500000002,1231
|
|
185
|
+
location_3,2021-07-08T00:00:00,1342,34503.354999999974,804.0337000000004,1139
|
|
186
|
+
location_3,2021-07-09T00:00:00,1503,37332.18499999995,1007.4255000000003,1275
|
|
187
|
+
location_3,2021-07-10T00:00:00,1444,36981.534999999974,1010.0759500000001,1205
|
|
188
|
+
location_3,2021-07-11T00:00:00,1470,36884.77000000002,926.5597499999998,1241
|
|
189
|
+
location_3,2021-07-12T00:00:00,1295,32646.300000000014,988.2929999999998,1084
|
|
190
|
+
location_3,2021-07-13T00:00:00,1320,33806.024999999965,871.8016000000005,1124
|
|
191
|
+
location_3,2021-07-14T00:00:00,1319,33367.14000000001,850.5471499999998,1132
|
|
192
|
+
location_3,2021-07-15T00:00:00,1477,36178.23000000001,932.4735500000005,1266
|
|
193
|
+
location_3,2021-07-16T00:00:00,1328,34727.935000000005,808.7421499999997,1119
|
|
194
|
+
location_3,2021-07-17T00:00:00,1541,38996.620000000024,1005.0390000000001,1315
|
|
195
|
+
location_3,2021-07-18T00:00:00,1466,37117.37499999997,840.5064000000003,1234
|
|
196
|
+
location_3,2021-07-19T00:00:00,1392,35751.53999999998,819.7544499999999,1166
|
|
197
|
+
location_3,2021-07-20T00:00:00,2126,53632.01000000002,1627.3273499999982,1783
|
|
198
|
+
location_3,2021-07-21T00:00:00,1397,36405.54500000001,873.5165999999996,1191
|
|
199
|
+
location_3,2021-07-22T00:00:00,1456,36725.78500000002,1050.7384500000003,1226
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
daily,daily_sessions,daily_baskets,daily_order_screens,daily_orders
|
|
2
|
+
2020-12-13,1233,1080,269,3
|
|
3
|
+
2020-12-14,11283,10544,6358,4840
|
|
4
|
+
2020-12-15,12767,11903,6772,5071
|
|
5
|
+
2020-12-16,11419,10567,5985,4410
|
|
6
|
+
2020-12-17,9112,8462,4844,3683
|
|
7
|
+
2020-12-18,11696,10843,5622,3896
|
|
8
|
+
2020-12-19,21678,20102,11048,7960
|
|
9
|
+
2020-12-20,15305,14374,8739,6827
|
|
10
|
+
2020-12-21,9939,9260,5295,3987
|
|
11
|
+
2020-12-22,10139,9395,5101,3689
|
|
12
|
+
2020-12-23,13021,12107,6870,5123
|
|
13
|
+
2020-12-24,10354,9666,5577,4177
|
|
14
|
+
2020-12-25,14144,13226,7164,5160
|
|
15
|
+
2020-12-26,17230,16061,9171,6904
|
|
16
|
+
2020-12-27,21338,20031,11876,9126
|
|
17
|
+
2020-12-28,8147,7697,4715,3774
|
|
18
|
+
2020-12-29,12438,11619,6717,5012
|
|
19
|
+
2020-12-30,12139,11185,6008,4192
|
|
20
|
+
2020-12-31,12678,11846,6958,5336
|
|
21
|
+
2021-01-01,12379,11468,5955,4203
|
|
22
|
+
2021-01-02,23173,21608,11941,8748
|
|
23
|
+
2021-01-03,17777,16751,10536,8497
|
|
24
|
+
2021-01-04,12399,11576,6372,4781
|
|
25
|
+
2021-01-05,12909,12070,6743,4895
|
|
26
|
+
2021-01-06,12358,11542,6836,5240
|
|
27
|
+
2021-01-07,14556,13457,7075,4995
|
|
28
|
+
2021-01-08,13482,12530,6741,4824
|
|
29
|
+
2021-01-09,17783,16657,9916,7595
|
|
30
|
+
2021-01-10,18809,17526,10006,7499
|
|
31
|
+
2021-01-11,9449,8782,4865,3585
|
|
32
|
+
2021-01-12,10975,10276,6046,4633
|
|
33
|
+
2021-01-13,10760,10127,5875,4474
|
|
34
|
+
2021-01-14,8491,7968,4750,3699
|
|
35
|
+
2021-01-15,15984,14782,7809,5457
|
|
36
|
+
2021-01-16,19935,18633,10807,8226
|
|
@@ -0,0 +1,68 @@
|
|
|
1
|
+
daily,daily_purchased,daily_has_sessions,daily_download,daily_signup
|
|
2
|
+
2020-12-31T00:00:00,14,863,17945.0,815.0
|
|
3
|
+
2021-01-01T00:00:00,5046,12947,22975.0,11297.0
|
|
4
|
+
2021-01-02T00:00:00,8758,21106,26346.0,17839.0
|
|
5
|
+
2021-01-03T00:00:00,3900,8848,15116.0,15406.0
|
|
6
|
+
2021-01-04T00:00:00,2074,4363,14079.0,7961.0
|
|
7
|
+
2021-01-05T00:00:00,2145,4573,12063.0,8348.0
|
|
8
|
+
2021-01-06T00:00:00,1763,3760,12495.0,7381.0
|
|
9
|
+
2021-01-07T00:00:00,1812,4191,15613.0,8131.0
|
|
10
|
+
2021-01-08T00:00:00,2132,5127,20627.0,9276.0
|
|
11
|
+
2021-01-09T00:00:00,4151,9929,24272.0,16126.0
|
|
12
|
+
2021-01-10T00:00:00,3667,8653,17401.0,14925.0
|
|
13
|
+
2021-01-11T00:00:00,1813,4388,19076.0,7438.0
|
|
14
|
+
2021-01-12T00:00:00,1931,4380,12860.0,7239.0
|
|
15
|
+
2021-01-13T00:00:00,1648,3884,14687.0,7060.0
|
|
16
|
+
2021-01-14T00:00:00,1646,3840,14515.0,7530.0
|
|
17
|
+
2021-01-15T00:00:00,1691,4504,22347.0,7256.0
|
|
18
|
+
2021-01-16T00:00:00,4070,9557,22208.0,16388.0
|
|
19
|
+
2021-01-17T00:00:00,3915,8473,13645.0,14520.0
|
|
20
|
+
2021-01-18T00:00:00,1815,4747,15103.0,7159.0
|
|
21
|
+
2021-01-19T00:00:00,2016,4633,13600.0,7708.0
|
|
22
|
+
2021-01-20T00:00:00,921,2156,11427.0,7700.0
|
|
23
|
+
2021-01-29T00:00:00,3,662,24534.0,7149.0
|
|
24
|
+
2021-01-30T00:00:00,8836,20011,20802.0,14013.0
|
|
25
|
+
2021-01-31T00:00:00,8836,20687,16825.0,14558.0
|
|
26
|
+
2021-02-01T00:00:00,5018,11174,16562.0,7011.0
|
|
27
|
+
2021-02-02T00:00:00,4492,11109,14740.0,6953.0
|
|
28
|
+
2021-02-03T00:00:00,4699,10221,11412.0,6163.0
|
|
29
|
+
2021-02-04T00:00:00,4407,9548,12171.0,5614.0
|
|
30
|
+
2021-02-05T00:00:00,4919,11746,17722.0,7458.0
|
|
31
|
+
2021-02-06T00:00:00,9240,21180,22049.0,14469.0
|
|
32
|
+
2021-02-07T00:00:00,8786,20010,11727.0,13219.0
|
|
33
|
+
2021-02-08T00:00:00,4943,11298,14073.0,6803.0
|
|
34
|
+
2021-02-09T00:00:00,4684,10383,12465.0,6145.0
|
|
35
|
+
2021-02-10T00:00:00,4997,11892,17919.0,7374.0
|
|
36
|
+
2021-02-11T00:00:00,5229,11975,16154.0,7324.0
|
|
37
|
+
2021-02-12T00:00:00,5068,13705,28099.0,8964.0
|
|
38
|
+
2021-02-13T00:00:00,9014,20490,29435.0,13700.0
|
|
39
|
+
2021-02-14T00:00:00,9387,20729,15626.0,13386.0
|
|
40
|
+
2021-02-15T00:00:00,4984,11475,11144.0,6754.0
|
|
41
|
+
2021-02-16T00:00:00,5064,11344,12544.0,6691.0
|
|
42
|
+
2021-02-17T00:00:00,4543,10696,14189.0,6183.0
|
|
43
|
+
2021-02-18T00:00:00,5299,12177,13290.0,7173.0
|
|
44
|
+
2021-02-19T00:00:00,5044,11684,18490.0,6887.0
|
|
45
|
+
2021-02-20T00:00:00,8567,19618,22549.0,12462.0
|
|
46
|
+
2021-02-21T00:00:00,8853,20212,16152.0,12556.0
|
|
47
|
+
2021-02-22T00:00:00,4468,10361,12574.0,5776.0
|
|
48
|
+
2021-02-23T00:00:00,4675,10685,11822.0,6091.0
|
|
49
|
+
2021-02-24T00:00:00,5066,12370,10954.0,7088.0
|
|
50
|
+
2021-02-25T00:00:00,1737,4132,0.0,4807.0
|
|
51
|
+
2021-02-26T00:00:00,2329,5219,0.0,5515.0
|
|
52
|
+
2021-02-27T00:00:00,4323,10289,0.0,10752.0
|
|
53
|
+
2021-02-28T00:00:00,4438,10561,0.0,8915.0
|
|
54
|
+
2021-03-01T00:00:00,1894,4853,0.0,3683.0
|
|
55
|
+
2021-03-02T00:00:00,2022,4973,0.0,3496.0
|
|
56
|
+
2021-03-03T00:00:00,2254,5281,0.0,3403.0
|
|
57
|
+
2021-03-04T00:00:00,2127,5243,0.0,2954.0
|
|
58
|
+
2021-03-05T00:00:00,1875,5266,0.0,2394.0
|
|
59
|
+
2021-03-06T00:00:00,3752,8995,0.0,4242.0
|
|
60
|
+
2021-03-07T00:00:00,4591,10436,0.0,4559.0
|
|
61
|
+
2021-03-08T00:00:00,2143,4752,0.0,1639.0
|
|
62
|
+
2021-03-09T00:00:00,167,646,0.0,1611.0
|
|
63
|
+
2021-03-14T00:00:00,4671,10983,0.0,866.0
|
|
64
|
+
2021-03-15T00:00:00,2966,6881,0.0,313.0
|
|
65
|
+
2021-03-16T00:00:00,2895,7355,0.0,135.0
|
|
66
|
+
2021-03-17T00:00:00,2980,6969,0.0,22.0
|
|
67
|
+
2021-03-18T00:00:00,3177,6871,0.0,0.0
|
|
68
|
+
2021-03-19T00:00:00,2653,6476,0.0,0.0
|