Skip to content

Instantly share code, notes, and snippets.

@Nov05
Last active August 3, 2019 03:47
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Nov05/8eecd7e35cf636c9201e91173f94a88d to your computer and use it in GitHub Desktop.
Save Nov05/8eecd7e35cf636c9201e91173f94a88d to your computer and use it in GitHub Desktop.

2019-08-01

Check Heroku Logs and Debug

Dash App on Heroku
https://hours-estimate.herokuapp.com/
GitHub Repo
https://github.com/Nov05/DS-Unit-2-Sprint-4-Project

  • navigate: Heroku > hours-estimate (or your own app name) > Activity > View build log

Heroku App Build Log

-----> Deleting 2 files matching .slugignore patterns.
-----> Python app detected
-----> Installing python-3.7.3
-----> Installing pip
-----> Installing dependencies with Pipenv 2018.5.18…
       Installing dependencies from Pipfile.lock (03dc5a)…
       Ignoring appnope: markers 'sys_platform == "darwin"' don't match your environment
       You are using pip version 9.0.2, however version 19.2.1 is available.
       You should consider upgrading via the 'pip install --upgrade pip' command.
-----> Installing SQLite3
-----> Discovering process types
       Procfile declares types -> web
-----> Compressing...
       Done: 129.7M
-----> Launching...
       Released v3
       https://hours-estimate.herokuapp.com/ deployed to Heroku
  • visit the app at https://hours-estimate.herokuapp.com/

  • if you saw error when visiting the app url, you would need to check the logs

  1. download and install the Heroku Command Line (CLI)
    https://devcenter.heroku.com/articles/heroku-cli
  2. for Windows 10, type cmd in the Stat Search Menu to launch the Commond Prompt
  3. type heroku -a hours-estimate (or your own app name)
  4. if you want to check more logs, type heroku -a hours-estimate -n 1500
    according to the document, logs to retrieve are "up to a maximum of 1,500 lines".
    https://devcenter.heroku.com/articles/logging#log-history-limits
  • debug logs
  1. e.g. found error ImportError: FigureFactory.create_distplot requires scipy
  2. you might need to update the requirements.txt, make sure there is a line like scipy==1.3.0 in the file
    https://github.com/Nov05/DS-Unit-2-Sprint-4-Project/blob/master/requirements.txt
2019-08-02T10:55:06.885671+00:00 app[web.1]: raise ImportError("FigureFactory.create_distplot requires scipy")
2019-08-02T10:55:06.885673+00:00 app[web.1]: ImportError: FigureFactory.create_distplot requires scipy

Heroku App's Logs

  • build succeeded, but app crashed
Microsoft Windows [Version 10.0.17763.615]
(c) 2018 Microsoft Corporation. All rights reserved.

C:\Users\*>heroku logs -a hours-estimate -n 1500
2019-08-02T10:54:06.000000+00:00 app[api]: Build started by user *@*.com
2019-08-02T10:54:45.879344+00:00 heroku[web.1]: State changed from crashed to starting
2019-08-02T10:54:45.642437+00:00 app[api]: Release v1 created by user *@*.com
2019-08-02T10:54:45.642437+00:00 app[api]: Deploy 9a7608a1 by user *@*.com
2019-08-02T10:54:57.954888+00:00 heroku[web.1]: Starting process with command `gunicorn run:server`
2019-08-02T10:55:00.092441+00:00 app[web.1]: [2019-08-02 10:55:00 +0000] [4] [INFO] Starting gunicorn 19.9.0
2019-08-02T10:55:00.092986+00:00 app[web.1]: [2019-08-02 10:55:00 +0000] [4] [INFO] Listening at: http://0.0.0.0:52200 (4)
2019-08-02T10:55:00.093083+00:00 app[web.1]: [2019-08-02 10:55:00 +0000] [4] [INFO] Using worker: sync
2019-08-02T10:55:00.097563+00:00 app[web.1]: [2019-08-02 10:55:00 +0000] [10] [INFO] Booting worker with pid: 10
2019-08-02T10:55:00.134808+00:00 app[web.1]: [2019-08-02 10:55:00 +0000] [11] [INFO] Booting worker with pid: 11
2019-08-02T10:55:01.654343+00:00 heroku[web.1]: State changed from starting to up
2019-08-02T10:55:07.064032+00:00 heroku[router]: at=error code=H13 desc="Connection closed without response" method=GET path="/" host=hours-estimate.herokuapp.com request_id=0be43a1e-cff9-4a32-b49d-88fb4f6e3b3a fwd="76.85.0.51" dyno=web.1 connect=0ms service=3459ms status=503 bytes=0 protocol=https
2019-08-02T10:55:06.885602+00:00 app[web.1]: [2019-08-02 10:55:06 +0000] [10] [ERROR] Exception in worker process
2019-08-02T10:55:06.885625+00:00 app[web.1]: Traceback (most recent call last):
2019-08-02T10:55:06.885628+00:00 app[web.1]: File "/app/.heroku/python/lib/python3.7/site-packages/gunicorn/arbiter.py", line 583, in spawn_worker
2019-08-02T10:55:06.885631+00:00 app[web.1]: worker.init_process()
2019-08-02T10:55:06.885633+00:00 app[web.1]: File "/app/.heroku/python/lib/python3.7/site-packages/gunicorn/workers/base.py", line 129, in init_process
2019-08-02T10:55:06.885635+00:00 app[web.1]: self.load_wsgi()
2019-08-02T10:55:06.885636+00:00 app[web.1]: File "/app/.heroku/python/lib/python3.7/site-packages/gunicorn/workers/base.py", line 138, in load_wsgi
2019-08-02T10:55:06.885638+00:00 app[web.1]: self.wsgi = self.app.wsgi()
2019-08-02T10:55:06.885640+00:00 app[web.1]: File "/app/.heroku/python/lib/python3.7/site-packages/gunicorn/app/base.py", line 67, in wsgi
2019-08-02T10:55:06.885642+00:00 app[web.1]: self.callable = self.load()
2019-08-02T10:55:06.885644+00:00 app[web.1]: File "/app/.heroku/python/lib/python3.7/site-packages/gunicorn/app/wsgiapp.py", line 52, in load
2019-08-02T10:55:06.885646+00:00 app[web.1]: return self.load_wsgiapp()
2019-08-02T10:55:06.885648+00:00 app[web.1]: File "/app/.heroku/python/lib/python3.7/site-packages/gunicorn/app/wsgiapp.py", line 41, in load_wsgiapp
2019-08-02T10:55:06.885650+00:00 app[web.1]: return util.import_app(self.app_uri)
2019-08-02T10:55:06.885652+00:00 app[web.1]: File "/app/.heroku/python/lib/python3.7/site-packages/gunicorn/util.py", line 350, in import_app
2019-08-02T10:55:06.885654+00:00 app[web.1]: __import__(module)
2019-08-02T10:55:06.885656+00:00 app[web.1]: File "/app/run.py", line 10, in <module>
2019-08-02T10:55:06.885659+00:00 app[web.1]: from pages import index, predictions, insights, process
2019-08-02T10:55:06.885661+00:00 app[web.1]: File "/app/pages/index.py", line 60, in <module>
2019-08-02T10:55:06.885663+00:00 app[web.1]: fig = ff.create_distplot(hist_data, group_labels, bin_size=0.1, show_rug=False)
2019-08-02T10:55:06.885665+00:00 app[web.1]: File "/app/.heroku/python/lib/python3.7/site-packages/plotly/figure_factory/_distplot.py", line 184, in create_distplot
2019-08-02T10:55:06.885668+00:00 app[web.1]: validate_distplot(hist_data, curve_type)
2019-08-02T10:55:06.885669+00:00 app[web.1]: File "/app/.heroku/python/lib/python3.7/site-packages/plotly/figure_factory/_distplot.py", line 49, in validate_distplot
2019-08-02T10:55:06.885671+00:00 app[web.1]: raise ImportError("FigureFactory.create_distplot requires scipy")
2019-08-02T10:55:06.885673+00:00 app[web.1]: ImportError: FigureFactory.create_distplot requires scipy
2019-08-02T10:55:06.885856+00:00 app[web.1]: [2019-08-02 10:55:06 +0000] [10] [INFO] Worker exiting (pid: 10)
2019-08-02T10:55:06.919474+00:00 app[web.1]: [2019-08-02 10:55:06 +0000] [11] [ERROR] Exception in worker process
2019-08-02T10:55:06.919491+00:00 app[web.1]: Traceback (most recent call last):
2019-08-02T10:55:06.919493+00:00 app[web.1]: File "/app/.heroku/python/lib/python3.7/site-packages/gunicorn/arbiter.py", line 583, in spawn_worker
2019-08-02T10:55:06.919495+00:00 app[web.1]: worker.init_process()
2019-08-02T10:55:06.919497+00:00 app[web.1]: File "/app/.heroku/python/lib/python3.7/site-packages/gunicorn/workers/base.py", line 129, in init_process
2019-08-02T10:55:06.919500+00:00 app[web.1]: self.load_wsgi()
2019-08-02T10:55:06.919502+00:00 app[web.1]: File "/app/.heroku/python/lib/python3.7/site-packages/gunicorn/workers/base.py", line 138, in load_wsgi
2019-08-02T10:55:06.919504+00:00 app[web.1]: self.wsgi = self.app.wsgi()
2019-08-02T10:55:06.919506+00:00 app[web.1]: File "/app/.heroku/python/lib/python3.7/site-packages/gunicorn/app/base.py", line 67, in wsgi
2019-08-02T10:55:06.919508+00:00 app[web.1]: self.callable = self.load()
2019-08-02T10:55:06.919510+00:00 app[web.1]: File "/app/.heroku/python/lib/python3.7/site-packages/gunicorn/app/wsgiapp.py", line 52, in load
2019-08-02T10:55:06.919513+00:00 app[web.1]: return self.load_wsgiapp()
2019-08-02T10:55:06.919515+00:00 app[web.1]: File "/app/.heroku/python/lib/python3.7/site-packages/gunicorn/app/wsgiapp.py", line 41, in load_wsgiapp
2019-08-02T10:55:06.919517+00:00 app[web.1]: return util.import_app(self.app_uri)
2019-08-02T10:55:06.919519+00:00 app[web.1]: File "/app/.heroku/python/lib/python3.7/site-packages/gunicorn/util.py", line 350, in import_app
2019-08-02T10:55:06.919521+00:00 app[web.1]: __import__(module)
2019-08-02T10:55:06.919523+00:00 app[web.1]: File "/app/run.py", line 10, in <module>
2019-08-02T10:55:06.919525+00:00 app[web.1]: from pages import index, predictions, insights, process
2019-08-02T10:55:06.919527+00:00 app[web.1]: File "/app/pages/index.py", line 60, in <module>
2019-08-02T10:55:06.919529+00:00 app[web.1]: fig = ff.create_distplot(hist_data, group_labels, bin_size=0.1, show_rug=False)
2019-08-02T10:55:06.919531+00:00 app[web.1]: File "/app/.heroku/python/lib/python3.7/site-packages/plotly/figure_factory/_distplot.py", line 184, in create_distplot
2019-08-02T10:55:06.919533+00:00 app[web.1]: validate_distplot(hist_data, curve_type)
2019-08-02T10:55:06.919535+00:00 app[web.1]: File "/app/.heroku/python/lib/python3.7/site-packages/plotly/figure_factory/_distplot.py", line 49, in validate_distplot
2019-08-02T10:55:06.919537+00:00 app[web.1]: raise ImportError("FigureFactory.create_distplot requires scipy")
2019-08-02T10:55:06.919539+00:00 app[web.1]: ImportError: FigureFactory.create_distplot requires scipy
2019-08-02T10:55:06.919665+00:00 app[web.1]: [2019-08-02 10:55:06 +0000] [11] [INFO] Worker exiting (pid: 11)
2019-08-02T10:55:07.162521+00:00 app[web.1]: [2019-08-02 10:55:07 +0000] [4] [INFO] Shutting down: Master
2019-08-02T10:55:07.162663+00:00 app[web.1]: [2019-08-02 10:55:07 +0000] [4] [INFO] Reason: Worker failed to boot.
2019-08-02T10:55:07.256924+00:00 heroku[web.1]: State changed from up to crashed
2019-08-02T10:55:07.238514+00:00 heroku[web.1]: Process exited with status 3
2019-08-02T10:55:09.000000+00:00 app[api]: Build succeeded
2019-08-02T10:55:12.620750+00:00 heroku[router]: at=error code=H10 desc="App crashed" method=GET path="/favicon.ico" host=hours-estimate.herokuapp.com request_id=4acbf63b-5bb6-4d8c-84ac-0ac300077da2 fwd="76.85.0.51" dyno=web.1 connect=5000ms service= status=503 bytes= protocol=https
2019-08-02T11:03:23.737667+00:00 heroku[web.1]: State changed from crashed to starting
2019-08-02T11:03:38.034624+00:00 heroku[web.1]: Starting process with command `gunicorn run:server`
2019-08-02T11:03:40.403914+00:00 app[web.1]: [2019-08-02 11:03:40 +0000] [4] [INFO] Starting gunicorn 19.9.0
2019-08-02T11:03:40.404816+00:00 app[web.1]: [2019-08-02 11:03:40 +0000] [4] [INFO] Listening at: http://0.0.0.0:12867 (4)
2019-08-02T11:03:40.404972+00:00 app[web.1]: [2019-08-02 11:03:40 +0000] [4] [INFO] Using worker: sync
2019-08-02T11:03:40.410809+00:00 app[web.1]: [2019-08-02 11:03:40 +0000] [10] [INFO] Booting worker with pid: 10
2019-08-02T11:03:40.468526+00:00 app[web.1]: [2019-08-02 11:03:40 +0000] [11] [INFO] Booting worker with pid: 11
2019-08-02T11:03:41.802981+00:00 heroku[web.1]: State changed from starting to up
2019-08-02T11:03:51.961112+00:00 app[web.1]: [2019-08-02 11:03:51 +0000] [11] [ERROR] Exception in worker process
2019-08-02T11:03:51.961140+00:00 app[web.1]: Traceback (most recent call last):
2019-08-02T11:03:51.961143+00:00 app[web.1]: File "/app/.heroku/python/lib/python3.7/site-packages/gunicorn/arbiter.py", line 583, in spawn_worker
2019-08-02T11:03:51.961145+00:00 app[web.1]: worker.init_process()
2019-08-02T11:03:51.961147+00:00 app[web.1]: File "/app/.heroku/python/lib/python3.7/site-packages/gunicorn/workers/base.py", line 129, in init_process
2019-08-02T11:03:51.961149+00:00 app[web.1]: self.load_wsgi()
2019-08-02T11:03:51.961151+00:00 app[web.1]: File "/app/.heroku/python/lib/python3.7/site-packages/gunicorn/workers/base.py", line 138, in load_wsgi
2019-08-02T11:03:51.961153+00:00 app[web.1]: self.wsgi = self.app.wsgi()
2019-08-02T11:03:51.961155+00:00 app[web.1]: File "/app/.heroku/python/lib/python3.7/site-packages/gunicorn/app/base.py", line 67, in wsgi
2019-08-02T11:03:51.961157+00:00 app[web.1]: self.callable = self.load()
2019-08-02T11:03:51.961159+00:00 app[web.1]: File "/app/.heroku/python/lib/python3.7/site-packages/gunicorn/app/wsgiapp.py", line 52, in load
2019-08-02T11:03:51.961161+00:00 app[web.1]: return self.load_wsgiapp()
2019-08-02T11:03:51.961163+00:00 app[web.1]: File "/app/.heroku/python/lib/python3.7/site-packages/gunicorn/app/wsgiapp.py", line 41, in load_wsgiapp
2019-08-02T11:03:51.961165+00:00 app[web.1]: return util.import_app(self.app_uri)
2019-08-02T11:03:51.961166+00:00 app[web.1]: File "/app/.heroku/python/lib/python3.7/site-packages/gunicorn/util.py", line 350, in import_app
2019-08-02T11:03:51.961168+00:00 app[web.1]: __import__(module)
2019-08-02T11:03:51.961170+00:00 app[web.1]: File "/app/run.py", line 10, in <module>
2019-08-02T11:03:51.961172+00:00 app[web.1]: from pages import index, predictions, insights, process
2019-08-02T11:03:51.961174+00:00 app[web.1]: File "/app/pages/index.py", line 60, in <module>
2019-08-02T11:03:51.961176+00:00 app[web.1]: fig = ff.create_distplot(hist_data, group_labels, bin_size=0.1, show_rug=False)
2019-08-02T11:03:51.961179+00:00 app[web.1]: File "/app/.heroku/python/lib/python3.7/site-packages/plotly/figure_factory/_distplot.py", line 184, in create_distplot
2019-08-02T11:03:51.961181+00:00 app[web.1]: validate_distplot(hist_data, curve_type)
2019-08-02T11:03:51.961182+00:00 app[web.1]: File "/app/.heroku/python/lib/python3.7/site-packages/plotly/figure_factory/_distplot.py", line 49, in validate_distplot
2019-08-02T11:03:51.961184+00:00 app[web.1]: raise ImportError("FigureFactory.create_distplot requires scipy")
2019-08-02T11:03:51.961186+00:00 app[web.1]: ImportError: FigureFactory.create_distplot requires scipy
2019-08-02T11:03:51.961423+00:00 app[web.1]: [2019-08-02 11:03:51 +0000] [11] [INFO] Worker exiting (pid: 11)
2019-08-02T11:03:52.190412+00:00 app[web.1]: [2019-08-02 11:03:52 +0000] [10] [ERROR] Exception in worker process
2019-08-02T11:03:52.190416+00:00 app[web.1]: Traceback (most recent call last):
2019-08-02T11:03:52.190419+00:00 app[web.1]: File "/app/.heroku/python/lib/python3.7/site-packages/gunicorn/arbiter.py", line 583, in spawn_worker
2019-08-02T11:03:52.190421+00:00 app[web.1]: worker.init_process()
2019-08-02T11:03:52.190423+00:00 app[web.1]: File "/app/.heroku/python/lib/python3.7/site-packages/gunicorn/workers/base.py", line 129, in init_process
2019-08-02T11:03:52.190425+00:00 app[web.1]: self.load_wsgi()
2019-08-02T11:03:52.190427+00:00 app[web.1]: File "/app/.heroku/python/lib/python3.7/site-packages/gunicorn/workers/base.py", line 138, in load_wsgi
2019-08-02T11:03:52.190429+00:00 app[web.1]: self.wsgi = self.app.wsgi()
2019-08-02T11:03:52.190432+00:00 app[web.1]: File "/app/.heroku/python/lib/python3.7/site-packages/gunicorn/app/base.py", line 67, in wsgi
2019-08-02T11:03:52.190434+00:00 app[web.1]: self.callable = self.load()
2019-08-02T11:03:52.190436+00:00 app[web.1]: File "/app/.heroku/python/lib/python3.7/site-packages/gunicorn/app/wsgiapp.py", line 52, in load
2019-08-02T11:03:52.190438+00:00 app[web.1]: return self.load_wsgiapp()
2019-08-02T11:03:52.190440+00:00 app[web.1]: File "/app/.heroku/python/lib/python3.7/site-packages/gunicorn/app/wsgiapp.py", line 41, in load_wsgiapp
2019-08-02T11:03:52.190442+00:00 app[web.1]: return util.import_app(self.app_uri)
2019-08-02T11:03:52.190444+00:00 app[web.1]: File "/app/.heroku/python/lib/python3.7/site-packages/gunicorn/util.py", line 350, in import_app
2019-08-02T11:03:52.190446+00:00 app[web.1]: __import__(module)
2019-08-02T11:03:52.190448+00:00 app[web.1]: File "/app/run.py", line 10, in <module>
2019-08-02T11:03:52.190450+00:00 app[web.1]: from pages import index, predictions, insights, process
2019-08-02T11:03:52.190452+00:00 app[web.1]: File "/app/pages/index.py", line 60, in <module>
2019-08-02T11:03:52.190454+00:00 app[web.1]: fig = ff.create_distplot(hist_data, group_labels, bin_size=0.1, show_rug=False)
2019-08-02T11:03:52.190456+00:00 app[web.1]: File "/app/.heroku/python/lib/python3.7/site-packages/plotly/figure_factory/_distplot.py", line 184, in create_distplot
2019-08-02T11:03:52.190458+00:00 app[web.1]: validate_distplot(hist_data, curve_type)
2019-08-02T11:03:52.190461+00:00 app[web.1]: File "/app/.heroku/python/lib/python3.7/site-packages/plotly/figure_factory/_distplot.py", line 49, in validate_distplot
2019-08-02T11:03:52.190463+00:00 app[web.1]: raise ImportError("FigureFactory.create_distplot requires scipy")
2019-08-02T11:03:52.190465+00:00 app[web.1]: ImportError: FigureFactory.create_distplot requires scipy
2019-08-02T11:03:52.190658+00:00 app[web.1]: [2019-08-02 11:03:52 +0000] [10] [INFO] Worker exiting (pid: 10)
2019-08-02T11:03:52.296711+00:00 app[web.1]: [2019-08-02 11:03:52 +0000] [4] [INFO] Shutting down: Master
2019-08-02T11:03:52.296848+00:00 app[web.1]: [2019-08-02 11:03:52 +0000] [4] [INFO] Reason: Worker failed to boot.
2019-08-02T11:03:52.399003+00:00 heroku[web.1]: State changed from up to crashed
2019-08-02T11:03:52.382270+00:00 heroku[web.1]: Process exited with status 3
  • build succeeded, app launched without errors
2019-08-02T11:05:22.000000+00:00 app[api]: Build started by user *@*.com
2019-08-02T11:06:58.603634+00:00 app[api]: Release v2 created by user *@*.com
2019-08-02T11:06:59.032400+00:00 heroku[web.1]: State changed from crashed to starting
2019-08-02T11:06:58.603634+00:00 app[api]: Deploy ff24a2d7 by user *@*.com
2019-08-02T11:07:09.702079+00:00 heroku[web.1]: Starting process with command `gunicorn run:server`
2019-08-02T11:07:11.881717+00:00 app[web.1]: [2019-08-02 11:07:11 +0000] [4] [INFO] Starting gunicorn 19.9.0
2019-08-02T11:07:11.882626+00:00 app[web.1]: [2019-08-02 11:07:11 +0000] [4] [INFO] Listening at: http://0.0.0.0:59361 (4)
2019-08-02T11:07:11.882812+00:00 app[web.1]: [2019-08-02 11:07:11 +0000] [4] [INFO] Using worker: sync
2019-08-02T11:07:11.888365+00:00 app[web.1]: [2019-08-02 11:07:11 +0000] [10] [INFO] Booting worker with pid: 10
2019-08-02T11:07:11.957142+00:00 app[web.1]: [2019-08-02 11:07:11 +0000] [11] [INFO] Booting worker with pid: 11
2019-08-02T11:07:13.351138+00:00 heroku[web.1]: State changed from starting to up
2019-08-02T11:07:25.000000+00:00 app[api]: Build succeeded
2019-08-02T11:07:45.964802+00:00 heroku[router]: at=info method=GET path="/" host=hours-estimate.herokuapp.com request_id=711b7aa9-257d-4537-86d2-50b60a05d22c fwd="76.85.0.51" dyno=web.1 connect=0ms service=9ms status=200 bytes=882 protocol=https
2019-08-02T11:07:45.964241+00:00 app[web.1]: 10.33.137.185 - - [02/Aug/2019:11:07:45 +0000] "GET / HTTP/1.1" 200 674 "https://dashboard.heroku.com/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-02T11:07:46.095353+00:00 app[web.1]: 10.33.137.185 - - [02/Aug/2019:11:07:46 +0000] "GET /_dash-component-suites/dash_renderer/react@16.8.6.min.js?v=1.0.0&m=1564743930 HTTP/1.1" 200 4888 "https://hours-estimate.herokuapp.com/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-02T11:07:46.103511+00:00 app[web.1]: 10.41.175.249 - - [02/Aug/2019:11:07:46 +0000] "GET /_dash-component-suites/dash_renderer/react-dom@16.8.6.min.js?v=1.0.0&m=1564743930 HTTP/1.1" 200 34843 "https://hours-estimate.herokuapp.com/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-02T11:07:46.150206+00:00 app[web.1]: 10.33.137.185 - - [02/Aug/2019:11:07:46 +0000] "GET /_dash-component-suites/dash_renderer/prop-types@15.7.2.min.js?v=1.0.0&m=1564743930 HTTP/1.1" 200 832 "https://hours-estimate.herokuapp.com/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-02T11:07:46.176737+00:00 app[web.1]: 10.63.155.70 - - [02/Aug/2019:11:07:46 +0000] "GET /_dash-component-suites/dash_html_components/dash_html_components.min.js?v=1.0.0&m=1564743930 HTTP/1.1" 200 18902 "https://hours-estimate.herokuapp.com/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-02T11:07:46.096377+00:00 heroku[router]: at=info method=GET path="/_dash-component-suites/dash_renderer/react@16.8.6.min.js?v=1.0.0&m=1564743930" host=hours-estimate.herokuapp.com request_id=00fab6b9-3681-4301-b69e-2f7da6144d5d fwd="76.85.0.51" dyno=web.1 connect=0ms service=8ms status=200 bytes=5110 protocol=https
2019-08-02T11:07:46.104902+00:00 heroku[router]: at=info method=GET path="/_dash-component-suites/dash_renderer/react-dom@16.8.6.min.js?v=1.0.0&m=1564743930" host=hours-estimate.herokuapp.com request_id=f49d569c-3b02-4c79-84b2-c6a1640606d0 fwd="76.85.0.51" dyno=web.1 connect=1ms service=14ms status=200 bytes=35066 protocol=https
2019-08-02T11:07:46.177045+00:00 heroku[router]: at=info method=GET path="/_dash-component-suites/dash_html_components/dash_html_components.min.js?v=1.0.0&m=1564743930" host=hours-estimate.herokuapp.com request_id=d9a1e6e4-a230-4ca9-a22a-ceaf25d76f1c fwd="76.85.0.51" dyno=web.1 connect=1ms service=8ms status=200 bytes=19125 protocol=https
2019-08-02T11:07:46.155172+00:00 heroku[router]: at=info method=GET path="/_dash-component-suites/dash_renderer/prop-types@15.7.2.min.js?v=1.0.0&m=1564743930" host=hours-estimate.herokuapp.com request_id=c70b2067-e089-482c-9ea5-87ea87f093f3 fwd="76.85.0.51" dyno=web.1 connect=0ms service=4ms status=200 bytes=1053 protocol=https
2019-08-02T11:07:46.236656+00:00 heroku[router]: at=info method=GET path="/_dash-component-suites/dash_core_components/highlight.pack.js?v=1.0.0&m=1564743936" host=hours-estimate.herokuapp.com request_id=21eda0cc-7d1d-4279-9d26-149f23b30a90 fwd="76.85.0.51" dyno=web.1 connect=1ms service=57ms status=200 bytes=14314 protocol=https
2019-08-02T11:07:46.240913+00:00 heroku[router]: at=info method=GET path="/_dash-component-suites/dash_core_components/dash_core_components.min.js?v=1.0.0&m=1564743936" host=hours-estimate.herokuapp.com request_id=da4d28bc-9da0-4ec4-914d-a8ca36dc9f4e fwd="76.85.0.51" dyno=web.1 connect=1ms service=65ms status=200 bytes=279930 protocol=https
2019-08-02T11:07:46.251901+00:00 heroku[router]: at=info method=GET path="/_dash-component-suites/dash_bootstrap_components/_components/dash_bootstrap_components.min.js?v=0.7.0&m=1564743930" host=hours-estimate.herokuapp.com request_id=b5e7e069-2fc6-4179-bf9b-0c8fdf24e617 fwd="76.85.0.51" dyno=web.1 connect=1ms service=53ms status=200 bytes=46005 protocol=https
2019-08-02T11:07:46.267756+00:00 heroku[router]: at=info method=GET path="/_dash-component-suites/dash_renderer/dash_renderer.min.js?v=1.0.0&m=1564743930" host=hours-estimate.herokuapp.com request_id=a78e8ee1-f36d-45ff-9293-825affbc49fa fwd="76.85.0.51" dyno=web.1 connect=0ms service=63ms status=200 bytes=79390 protocol=https
2019-08-02T11:07:46.231782+00:00 app[web.1]: 10.51.197.106 - - [02/Aug/2019:11:07:46 +0000] "GET /_dash-component-suites/dash_core_components/dash_core_components.min.js?v=1.0.0&m=1564743936 HTTP/1.1" 200 279706 "https://hours-estimate.herokuapp.com/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-02T11:07:46.236121+00:00 app[web.1]: 10.63.184.59 - - [02/Aug/2019:11:07:46 +0000] "GET /_dash-component-suites/dash_core_components/highlight.pack.js?v=1.0.0&m=1564743936 HTTP/1.1" 200 14091 "https://hours-estimate.herokuapp.com/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-02T11:07:46.248339+00:00 app[web.1]: 10.41.175.249 - - [02/Aug/2019:11:07:46 +0000] "GET /_dash-component-suites/dash_bootstrap_components/_components/dash_bootstrap_components.min.js?v=0.7.0&m=1564743930 HTTP/1.1" 200 45782 "https://hours-estimate.herokuapp.com/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-02T11:07:46.263375+00:00 app[web.1]: 10.33.137.185 - - [02/Aug/2019:11:07:46 +0000] "GET /_dash-component-suites/dash_renderer/dash_renderer.min.js?v=1.0.0&m=1564743930 HTTP/1.1" 200 79167 "https://hours-estimate.herokuapp.com/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-02T11:07:46.338687+00:00 app[web.1]: 10.43.178.117 - - [02/Aug/2019:11:07:46 +0000] "GET /_dash-component-suites/dash_core_components/plotly-1.48.3.min.js?v=1.0.0&m=1564743936 HTTP/1.1" 200 918102 "https://hours-estimate.herokuapp.com/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-02T11:07:46.355937+00:00 heroku[router]: at=info method=GET path="/_dash-component-suites/dash_core_components/plotly-1.48.3.min.js?v=1.0.0&m=1564743936" host=hours-estimate.herokuapp.com request_id=7ca96ec8-45f1-4065-88f9-55c1f2bf7f9a fwd="76.85.0.51" dyno=web.1 connect=0ms service=183ms status=200 bytes=918326 protocol=https
2019-08-02T11:07:47.074644+00:00 heroku[router]: at=info method=GET path="/_dash-layout" host=hours-estimate.herokuapp.com request_id=def37841-4a51-41bc-955b-5854b742a294 fwd="76.85.0.51" dyno=web.1 connect=0ms service=2ms status=200 bytes=715 protocol=https
2019-08-02T11:07:47.074925+00:00 app[web.1]: 10.43.178.117 - - [02/Aug/2019:11:07:47 +0000] "GET /_dash-layout HTTP/1.1" 200 515 "https://hours-estimate.herokuapp.com/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-02T11:07:47.077910+00:00 app[web.1]: 10.51.197.106 - - [02/Aug/2019:11:07:47 +0000] "GET /_dash-dependencies HTTP/1.1" 200 121 "https://hours-estimate.herokuapp.com/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-02T11:07:47.242860+00:00 app[web.1]: 10.51.197.106 - - [02/Aug/2019:11:07:47 +0000] "POST /_dash-update-component HTTP/1.1" 200 144 "https://hours-estimate.herokuapp.com/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-02T11:07:47.266418+00:00 app[web.1]: 10.33.137.185 - - [02/Aug/2019:11:07:47 +0000] "GET /_favicon.ico?v=1.0.2 HTTP/1.1" 200 15086 "https://hours-estimate.herokuapp.com/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-02T11:07:47.074647+00:00 heroku[router]: at=info method=GET path="/_dash-dependencies" host=hours-estimate.herokuapp.com request_id=3652085a-7da0-4f17-bfa8-84fbbdbf63be fwd="76.85.0.51" dyno=web.1 connect=1ms service=2ms status=200 bytes=274 protocol=https
2019-08-02T11:07:47.239739+00:00 heroku[router]: at=info method=POST path="/_dash-update-component" host=hours-estimate.herokuapp.com request_id=b863fc1b-757f-4250-ba70-8a58e645dcf1 fwd="76.85.0.51" dyno=web.1 connect=1ms service=2ms status=200 bytes=297 protocol=https
2019-08-02T11:07:47.356636+00:00 heroku[router]: at=info method=POST path="/_dash-update-component" host=hours-estimate.herokuapp.com request_id=e8d98055-6cf5-4cd3-a83e-146662bb28c1 fwd="76.85.0.51" dyno=web.1 connect=0ms service=98ms status=200 bytes=72899 protocol=https
2019-08-02T11:07:47.267894+00:00 heroku[router]: at=info method=GET path="/_favicon.ico?v=1.0.2" host=hours-estimate.herokuapp.com request_id=5c4932aa-e15f-4ca2-a038-fddd8ee1c331 fwd="76.85.0.51" dyno=web.1 connect=0ms service=2ms status=200 bytes=15237 protocol=https
2019-08-02T11:07:47.350913+00:00 app[web.1]: 10.43.178.117 - - [02/Aug/2019:11:07:47 +0000] "POST /_dash-update-component HTTP/1.1" 200 72697 "https://hours-estimate.herokuapp.com/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-02T11:07:56.538475+00:00 heroku[router]: at=info method=POST path="/_dash-update-component" host=hours-estimate.herokuapp.com request_id=25d0757b-48a2-4158-8d2b-04a1e50ac1b8 fwd="76.85.0.51" dyno=web.1 connect=0ms service=2ms status=200 bytes=631 protocol=https
2019-08-02T11:07:56.538774+00:00 app[web.1]: 10.43.178.117 - - [02/Aug/2019:11:07:56 +0000] "POST /_dash-update-component HTTP/1.1" 200 478 "https://hours-estimate.herokuapp.com/predictions" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-02T11:07:58.139163+00:00 heroku[router]: at=info method=POST path="/_dash-update-component" host=hours-estimate.herokuapp.com request_id=5d807712-2668-4bea-b506-3751f3be9c82 fwd="76.85.0.51" dyno=web.1 connect=0ms service=9ms status=200 bytes=3312 protocol=https
2019-08-02T11:07:58.139584+00:00 app[web.1]: 10.43.178.117 - - [02/Aug/2019:11:07:58 +0000] "POST /_dash-update-component HTTP/1.1" 200 3111 "https://hours-estimate.herokuapp.com/insights" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-02T11:08:03.063784+00:00 heroku[router]: at=info method=POST path="/_dash-update-component" host=hours-estimate.herokuapp.com request_id=86a3a0cb-8ffb-4e4d-80ed-2a6d825e7ab9 fwd="76.85.0.51" dyno=web.1 connect=0ms service=2ms status=200 bytes=2374 protocol=https
2019-08-02T11:08:03.064086+00:00 app[web.1]: 10.43.178.117 - - [02/Aug/2019:11:08:03 +0000] "POST /_dash-update-component HTTP/1.1" 200 2173 "https://hours-estimate.herokuapp.com/process" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-02T11:08:13.291511+00:00 heroku[router]: at=info method=POST path="/_dash-update-component" host=hours-estimate.herokuapp.com request_id=bd480875-5106-48f8-866b-6b44ddbde2a3 fwd="76.85.0.51" dyno=web.1 connect=0ms service=6ms status=200 bytes=3312 protocol=https
2019-08-02T11:08:13.291849+00:00 app[web.1]: 10.43.178.117 - - [02/Aug/2019:11:08:13 +0000] "POST /_dash-update-component HTTP/1.1" 200 3111 "https://hours-estimate.herokuapp.com/insights" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-02T11:09:01.900783+00:00 heroku[router]: at=info method=POST path="/_dash-update-component" host=hours-estimate.herokuapp.com request_id=256a8352-fabd-488d-b240-bbf9d04fdca6 fwd="76.85.0.51" dyno=web.1 connect=1ms service=107ms status=200 bytes=72899 protocol=https
2019-08-02T11:09:01.897736+00:00 app[web.1]: 10.43.178.117 - - [02/Aug/2019:11:09:01 +0000] "POST /_dash-update-component HTTP/1.1" 200 72697 "https://hours-estimate.herokuapp.com/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-02T11:09:04.222308+00:00 heroku[router]: at=info method=POST path="/_dash-update-component" host=hours-estimate.herokuapp.com request_id=31e2cda4-ebf4-47d3-ad50-8169bb329ceb fwd="76.85.0.51" dyno=web.1 connect=0ms service=3ms status=200 bytes=631 protocol=https
2019-08-02T11:09:04.221046+00:00 app[web.1]: 10.43.178.117 - - [02/Aug/2019:11:09:04 +0000] "POST /_dash-update-component HTTP/1.1" 200 478 "https://hours-estimate.herokuapp.com/predictions" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-02T11:09:05.253166+00:00 heroku[router]: at=info method=POST path="/_dash-update-component" host=hours-estimate.herokuapp.com request_id=298a8fc0-6da3-4e5a-94ee-ed5ae421fbc2 fwd="76.85.0.51" dyno=web.1 connect=0ms service=5ms status=200 bytes=3312 protocol=https
2019-08-02T11:09:05.253342+00:00 app[web.1]: 10.43.178.117 - - [02/Aug/2019:11:09:05 +0000] "POST /_dash-update-component HTTP/1.1" 200 3111 "https://hours-estimate.herokuapp.com/insights" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-02T11:09:10.093866+00:00 app[web.1]: 10.43.178.117 - - [02/Aug/2019:11:09:10 +0000] "POST /_dash-update-component HTTP/1.1" 200 2173 "https://hours-estimate.herokuapp.com/process" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-02T11:09:10.093901+00:00 heroku[router]: at=info method=POST path="/_dash-update-component" host=hours-estimate.herokuapp.com request_id=48297600-2d71-4451-81aa-087777326e54 fwd="76.85.0.51" dyno=web.1 connect=0ms service=3ms status=200 bytes=2374 protocol=https
2019-08-02T11:09:48.308899+00:00 heroku[router]: at=info method=POST path="/_dash-update-component" host=hours-estimate.herokuapp.com request_id=63bada30-a4f4-443e-9878-98350685bb82 fwd="76.85.0.51" dyno=web.1 connect=0ms service=6ms status=200 bytes=3312 protocol=https
2019-08-02T11:09:48.309044+00:00 app[web.1]: 10.43.178.117 - - [02/Aug/2019:11:09:48 +0000] "POST /_dash-update-component HTTP/1.1" 200 3111 "https://hours-estimate.herokuapp.com/insights" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-02T11:09:53.728397+00:00 heroku[router]: at=info method=POST path="/_dash-update-component" host=hours-estimate.herokuapp.com request_id=1aa7a200-4489-439c-8589-8ace121cf7ea fwd="76.85.0.51" dyno=web.1 connect=0ms service=2ms status=200 bytes=631 protocol=https
2019-08-02T11:09:53.728661+00:00 app[web.1]: 10.43.178.117 - - [02/Aug/2019:11:09:53 +0000] "POST /_dash-update-component HTTP/1.1" 200 478 "https://hours-estimate.herokuapp.com/predictions" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-02T11:09:55.224188+00:00 heroku[router]: at=info method=POST path="/_dash-update-component" host=hours-estimate.herokuapp.com request_id=2af22db3-3a32-4606-8647-b0f6d8498d24 fwd="76.85.0.51" dyno=web.1 connect=0ms service=109ms status=200 bytes=72899 protocol=https
2019-08-02T11:09:55.222131+00:00 app[web.1]: 10.43.178.117 - - [02/Aug/2019:11:09:55 +0000] "POST /_dash-update-component HTTP/1.1" 200 72697 "https://hours-estimate.herokuapp.com/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-02T11:10:05.389850+00:00 heroku[router]: at=info method=POST path="/_dash-update-component" host=hours-estimate.herokuapp.com request_id=1c2f4291-026c-4126-b865-3a49037a17a3 fwd="76.85.0.51" dyno=web.1 connect=0ms service=3ms status=200 bytes=631 protocol=https
2019-08-02T11:10:05.390806+00:00 app[web.1]: 10.43.178.117 - - [02/Aug/2019:11:10:05 +0000] "POST /_dash-update-component HTTP/1.1" 200 478 "https://hours-estimate.herokuapp.com/predictions" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-02T11:14:03.906495+00:00 heroku[router]: at=info method=POST path="/_dash-update-component" host=hours-estimate.herokuapp.com request_id=ac4b3d09-8a50-4d3a-87e9-7262e7f1da28 fwd="76.85.0.51" dyno=web.1 connect=1ms service=121ms status=200 bytes=72899 protocol=https
2019-08-02T11:14:03.899914+00:00 app[web.1]: 10.165.209.116 - - [02/Aug/2019:11:14:03 +0000] "POST /_dash-update-component HTTP/1.1" 200 72697 "https://hours-estimate.herokuapp.com/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-02T11:14:09.891550+00:00 heroku[router]: at=info method=POST path="/_dash-update-component" host=hours-estimate.herokuapp.com request_id=4cfa65ce-07de-4748-91df-5f27fac9971f fwd="76.85.0.51" dyno=web.1 connect=1ms service=6ms status=200 bytes=3312 protocol=https
2019-08-02T11:14:09.889534+00:00 app[web.1]: 10.165.209.116 - - [02/Aug/2019:11:14:09 +0000] "POST /_dash-update-component HTTP/1.1" 200 3111 "https://hours-estimate.herokuapp.com/insights" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-02T11:14:15.897422+00:00 heroku[router]: at=info method=POST path="/_dash-update-component" host=hours-estimate.herokuapp.com request_id=32e83658-b531-42a1-92e9-2eff1a18b94b fwd="76.85.0.51" dyno=web.1 connect=1ms service=5ms status=200 bytes=2374 protocol=https
2019-08-02T11:14:15.895202+00:00 app[web.1]: 10.165.209.116 - - [02/Aug/2019:11:14:15 +0000] "POST /_dash-update-component HTTP/1.1" 200 2173 "https://hours-estimate.herokuapp.com/process" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-02T11:19:17.804268+00:00 heroku[router]: at=info method=POST path="/_dash-update-component" host=hours-estimate.herokuapp.com request_id=13f53931-7a7f-45b4-b496-96801d1fa6a6 fwd="76.85.0.51" dyno=web.1 connect=0ms service=6ms status=200 bytes=3312 protocol=https
2019-08-02T11:19:17.807877+00:00 app[web.1]: 10.47.226.22 - - [02/Aug/2019:11:19:17 +0000] "POST /_dash-update-component HTTP/1.1" 200 3111 "https://hours-estimate.herokuapp.com/insights" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-02T11:19:28.201635+00:00 heroku[router]: at=info method=POST path="/_dash-update-component" host=hours-estimate.herokuapp.com request_id=7b303c1c-8716-4303-8d81-4289900d85e7 fwd="76.85.0.51" dyno=web.1 connect=0ms service=105ms status=200 bytes=72899 protocol=https
2019-08-02T11:19:28.202838+00:00 app[web.1]: 10.47.226.22 - - [02/Aug/2019:11:19:28 +0000] "POST /_dash-update-component HTTP/1.1" 200 72697 "https://hours-estimate.herokuapp.com/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-02T11:21:34.780056+00:00 heroku[router]: at=info method=GET path="/" host=hours-estimate.herokuapp.com request_id=3054fcc1-4c87-401b-ac53-dc51c591ba9d fwd="76.85.0.51" dyno=web.1 connect=1ms service=3ms status=200 bytes=882 protocol=https
2019-08-02T11:21:34.943518+00:00 heroku[router]: at=info method=GET path="/_dash-component-suites/dash_renderer/prop-types@15.7.2.min.js?v=1.0.0&m=1564743930" host=hours-estimate.herokuapp.com request_id=a41fb15f-a7ca-427e-88a6-77231f7feef5 fwd="76.85.0.51" dyno=web.1 connect=1ms service=4ms status=200 bytes=1053 protocol=https
2019-08-02T11:21:34.779099+00:00 app[web.1]: 10.47.240.45 - - [02/Aug/2019:11:21:34 +0000] "GET / HTTP/1.1" 200 674 "-" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-02T11:21:34.891389+00:00 app[web.1]: 10.47.240.45 - - [02/Aug/2019:11:21:34 +0000] "GET /_dash-component-suites/dash_renderer/react@16.8.6.min.js?v=1.0.0&m=1564743930 HTTP/1.1" 200 4888 "https://hours-estimate.herokuapp.com/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-02T11:21:34.899341+00:00 app[web.1]: 10.45.133.35 - - [02/Aug/2019:11:21:34 +0000] "GET /_dash-component-suites/dash_renderer/react-dom@16.8.6.min.js?v=1.0.0&m=1564743930 HTTP/1.1" 200 34843 "https://hours-estimate.herokuapp.com/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-02T11:21:34.942489+00:00 app[web.1]: 10.47.240.45 - - [02/Aug/2019:11:21:34 +0000] "GET /_dash-component-suites/dash_renderer/prop-types@15.7.2.min.js?v=1.0.0&m=1564743930 HTTP/1.1" 200 832 "https://hours-estimate.herokuapp.com/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-02T11:21:34.982304+00:00 app[web.1]: 10.141.86.140 - - [02/Aug/2019:11:21:34 +0000] "GET /_dash-component-suites/dash_html_components/dash_html_components.min.js?v=1.0.0&m=1564743930 HTTP/1.1" 200 18902 "https://hours-estimate.herokuapp.com/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-02T11:21:34.899866+00:00 heroku[router]: at=info method=GET path="/_dash-component-suites/dash_renderer/react-dom@16.8.6.min.js?v=1.0.0&m=1564743930" host=hours-estimate.herokuapp.com request_id=053dc34b-c9ce-4245-8f18-13a8639a8eeb fwd="76.85.0.51" dyno=web.1 connect=0ms service=10ms status=200 bytes=35066 protocol=https
2019-08-02T11:21:34.892245+00:00 heroku[router]: at=info method=GET path="/_dash-component-suites/dash_renderer/react@16.8.6.min.js?v=1.0.0&m=1564743930" host=hours-estimate.herokuapp.com request_id=946841f8-a85e-4ab6-ac94-77b566675afa fwd="76.85.0.51" dyno=web.1 connect=1ms service=3ms status=200 bytes=5110 protocol=https
2019-08-02T11:21:35.054390+00:00 heroku[router]: at=info method=GET path="/_dash-component-suites/dash_core_components/dash_core_components.min.js?v=1.0.0&m=1564743936" host=hours-estimate.herokuapp.com request_id=b0dc8051-f78a-4bf8-b65d-72ec01a9b652 fwd="76.85.0.51" dyno=web.1 connect=1ms service=77ms status=200 bytes=279930 protocol=https
2019-08-02T11:21:35.041853+00:00 heroku[router]: at=info method=GET path="/_dash-component-suites/dash_core_components/highlight.pack.js?v=1.0.0&m=1564743936" host=hours-estimate.herokuapp.com request_id=c88aae7b-834f-4fea-a942-1c61df2df4bf fwd="76.85.0.51" dyno=web.1 connect=1ms service=63ms status=200 bytes=14314 protocol=https
2019-08-02T11:21:34.981427+00:00 heroku[router]: at=info method=GET path="/_dash-component-suites/dash_html_components/dash_html_components.min.js?v=1.0.0&m=1564743930" host=hours-estimate.herokuapp.com request_id=9e383ef9-613f-4edd-a575-eeb6a4496069 fwd="76.85.0.51" dyno=web.1 connect=1ms service=9ms status=200 bytes=19125 protocol=https
2019-08-02T11:21:35.037151+00:00 app[web.1]: 10.158.137.35 - - [02/Aug/2019:11:21:35 +0000] "GET /_dash-component-suites/dash_core_components/dash_core_components.min.js?v=1.0.0&m=1564743936 HTTP/1.1" 200 279706 "https://hours-estimate.herokuapp.com/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-02T11:21:35.040779+00:00 app[web.1]: 10.145.115.115 - - [02/Aug/2019:11:21:35 +0000] "GET /_dash-component-suites/dash_core_components/highlight.pack.js?v=1.0.0&m=1564743936 HTTP/1.1" 200 14091 "https://hours-estimate.herokuapp.com/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-02T11:21:35.056286+00:00 app[web.1]: 10.45.133.35 - - [02/Aug/2019:11:21:35 +0000] "GET /_dash-component-suites/dash_renderer/dash_renderer.min.js?v=1.0.0&m=1564743930 HTTP/1.1" 200 79167 "https://hours-estimate.herokuapp.com/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-02T11:21:35.064490+00:00 app[web.1]: 10.47.240.45 - - [02/Aug/2019:11:21:35 +0000] "GET /_dash-component-suites/dash_bootstrap_components/_components/dash_bootstrap_components.min.js?v=0.7.0&m=1564743930 HTTP/1.1" 200 45782 "https://hours-estimate.herokuapp.com/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-02T11:21:35.161169+00:00 app[web.1]: 10.139.108.80 - - [02/Aug/2019:11:21:35 +0000] "GET /_dash-component-suites/dash_core_components/plotly-1.48.3.min.js?v=1.0.0&m=1564743936 HTTP/1.1" 200 918102 "https://hours-estimate.herokuapp.com/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-02T11:21:35.067788+00:00 heroku[router]: at=info method=GET path="/_dash-component-suites/dash_bootstrap_components/_components/dash_bootstrap_components.min.js?v=0.7.0&m=1564743930" host=hours-estimate.herokuapp.com request_id=c991190d-e857-4d3c-8e37-f411ac66041d fwd="76.85.0.51" dyno=web.1 connect=0ms service=77ms status=200 bytes=46005 protocol=https
2019-08-02T11:21:35.058996+00:00 heroku[router]: at=info method=GET path="/_dash-component-suites/dash_renderer/dash_renderer.min.js?v=1.0.0&m=1564743930" host=hours-estimate.herokuapp.com request_id=57b9fe74-5f62-409d-8378-7298dcc5bdba fwd="76.85.0.51" dyno=web.1 connect=0ms service=69ms status=200 bytes=79390 protocol=https
2019-08-02T11:21:35.187601+00:00 heroku[router]: at=info method=GET path="/_dash-component-suites/dash_core_components/plotly-1.48.3.min.js?v=1.0.0&m=1564743936" host=hours-estimate.herokuapp.com request_id=cb420342-2bbc-47eb-bfb6-46d6ee79578b fwd="76.85.0.51" dyno=web.1 connect=1ms service=213ms status=200 bytes=918326 protocol=https
2019-08-02T11:21:36.068644+00:00 heroku[router]: at=info method=POST path="/_dash-update-component" host=hours-estimate.herokuapp.com request_id=34539a85-2a9d-469a-a9dd-d4af3cedb0bf fwd="76.85.0.51" dyno=web.1 connect=1ms service=2ms status=200 bytes=297 protocol=https
2019-08-02T11:21:35.883530+00:00 heroku[router]: at=info method=GET path="/_dash-dependencies" host=hours-estimate.herokuapp.com request_id=000aa0db-3641-4271-bf21-99ca37f872fc fwd="76.85.0.51" dyno=web.1 connect=1ms service=2ms status=200 bytes=274 protocol=https
2019-08-02T11:21:35.880502+00:00 app[web.1]: 10.139.108.80 - - [02/Aug/2019:11:21:35 +0000] "GET /_dash-layout HTTP/1.1" 200 515 "https://hours-estimate.herokuapp.com/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-02T11:21:35.883210+00:00 app[web.1]: 10.158.137.35 - - [02/Aug/2019:11:21:35 +0000] "GET /_dash-dependencies HTTP/1.1" 200 121 "https://hours-estimate.herokuapp.com/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-02T11:21:36.068443+00:00 app[web.1]: 10.158.137.35 - - [02/Aug/2019:11:21:36 +0000] "POST /_dash-update-component HTTP/1.1" 200 144 "https://hours-estimate.herokuapp.com/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-02T11:21:35.879414+00:00 heroku[router]: at=info method=GET path="/_dash-layout" host=hours-estimate.herokuapp.com request_id=2a21be79-2454-4de0-be2e-766fb5ad63bf fwd="76.85.0.51" dyno=web.1 connect=1ms service=4ms status=200 bytes=715 protocol=https
2019-08-02T11:21:36.184684+00:00 heroku[router]: at=info method=POST path="/_dash-update-component" host=hours-estimate.herokuapp.com request_id=0d463227-b6c3-44eb-91cf-33a42412e5ba fwd="76.85.0.51" dyno=web.1 connect=1ms service=100ms status=200 bytes=72899 protocol=https
2019-08-02T11:21:36.180893+00:00 app[web.1]: 10.139.108.80 - - [02/Aug/2019:11:21:36 +0000] "POST /_dash-update-component HTTP/1.1" 200 72697 "https://hours-estimate.herokuapp.com/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-02T11:21:47.330174+00:00 heroku[router]: at=info method=POST path="/_dash-update-component" host=hours-estimate.herokuapp.com request_id=97b5dee6-ea33-4d65-94f3-64fd0d9dda1a fwd="76.85.0.51" dyno=web.1 connect=1ms service=7ms status=200 bytes=3312 protocol=https
2019-08-02T11:21:47.330901+00:00 app[web.1]: 10.139.108.80 - - [02/Aug/2019:11:21:47 +0000] "POST /_dash-update-component HTTP/1.1" 200 3111 "https://hours-estimate.herokuapp.com/insights" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-02T11:21:48.624560+00:00 heroku[router]: at=info method=POST path="/_dash-update-component" host=hours-estimate.herokuapp.com request_id=5053756f-6598-4e4f-90f7-be832414c449 fwd="76.85.0.51" dyno=web.1 connect=1ms service=4ms status=200 bytes=2374 protocol=https
2019-08-02T11:21:48.625293+00:00 app[web.1]: 10.139.108.80 - - [02/Aug/2019:11:21:48 +0000] "POST /_dash-update-component HTTP/1.1" 200 2173 "https://hours-estimate.herokuapp.com/process" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-02T11:23:05.773610+00:00 heroku[router]: at=info method=GET path="/robots.txt" host=hours-estimate.herokuapp.com request_id=e5710bdc-6304-4569-b7f2-d120d147e08c fwd="17.58.98.251" dyno=web.1 connect=1ms service=5ms status=200 bytes=882 protocol=https
2019-08-02T11:23:05.825728+00:00 heroku[router]: at=info method=GET path="/robots.txt" host=hours-estimate.herokuapp.com request_id=76f8dbd3-6410-45e2-92c0-bd7691fe0f32 fwd="199.16.157.183" dyno=web.1 connect=1ms service=4ms status=200 bytes=2147 protocol=https
2019-08-02T11:23:05.772783+00:00 app[web.1]: 10.63.163.223 - - [02/Aug/2019:11:23:05 +0000] "GET /robots.txt HTTP/1.1" 200 674 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/600.2.5 (KHTML, like Gecko) Version/8.0.2 Safari/600.2.5 (Applebot/0.1; +http://www.apple.com/go/applebot)"
2019-08-02T11:23:05.826316+00:00 app[web.1]: 10.67.229.200 - - [02/Aug/2019:11:23:05 +0000] "GET /robots.txt HTTP/1.1" 200 1985 "-" "Twitterbot/1.0"
2019-08-02T11:23:05.959933+00:00 app[web.1]: 10.141.86.140 - - [02/Aug/2019:11:23:05 +0000] "GET / HTTP/1.1" 200 674 "-" "Twitterbot/1.0"
2019-08-02T11:23:05.958058+00:00 heroku[router]: at=info method=GET path="/" host=hours-estimate.herokuapp.com request_id=4f242e4d-f2a2-4511-983f-8c13f767d6e6 fwd="199.16.157.183" dyno=web.1 connect=1ms service=20ms status=200 bytes=882 protocol=https
2019-08-02T11:23:07.115185+00:00 heroku[router]: at=info method=GET path="/" host=hours-estimate.herokuapp.com request_id=9ceed5a7-870c-4650-91c6-71a96ff28e29 fwd="17.58.100.40" dyno=web.1 connect=0ms service=3ms status=200 bytes=882 protocol=https
2019-08-02T11:23:07.115713+00:00 app[web.1]: 10.41.174.148 - - [02/Aug/2019:11:23:07 +0000] "GET / HTTP/1.1" 200 674 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/600.2.5 (KHTML, like Gecko) Version/8.0.2 Safari/600.2.5 (Applebot/0.1; +http://www.apple.com/go/applebot)"
2019-08-02T11:23:07.460004+00:00 heroku[router]: at=info method=HEAD path="/" host=hours-estimate.herokuapp.com request_id=e3635465-6aa9-4ec7-8b3e-83cb483d7d0c fwd="104.196.250.177" dyno=web.1 connect=1ms service=5ms status=200 bytes=162 protocol=https
2019-08-02T11:23:07.463217+00:00 app[web.1]: 10.30.23.247 - - [02/Aug/2019:11:23:07 +0000] "HEAD / HTTP/1.1" 200 0 "https://t.co/Fm9nNxLoeb" "-"
2019-08-02T11:23:07.658170+00:00 app[web.1]: 10.52.13.4 - - [02/Aug/2019:11:23:07 +0000] "HEAD / HTTP/1.1" 200 0 "-" "-"
2019-08-02T11:23:07.658789+00:00 app[web.1]: 10.51.235.157 - - [02/Aug/2019:11:23:07 +0000] "HEAD / HTTP/1.1" 200 0 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/59.0.3071.115 Safari/537.36"
2019-08-02T11:23:07.657046+00:00 heroku[router]: at=info method=HEAD path="/" host=hours-estimate.herokuapp.com request_id=6cce541c-b4c1-4286-b688-e133a10512dc fwd="104.196.250.177" dyno=web.1 connect=0ms service=4ms status=200 bytes=162 protocol=http
2019-08-02T11:23:07.659661+00:00 heroku[router]: at=info method=HEAD path="/" host=hours-estimate.herokuapp.com request_id=5f225404-6f6b-4d65-8bce-89fb0134d7f4 fwd="104.196.250.177" dyno=web.1 connect=0ms service=4ms status=200 bytes=162 protocol=http
2019-08-02T11:23:10.826489+00:00 heroku[router]: at=info method=HEAD path="/" host=hours-estimate.herokuapp.com request_id=6abd1d7f-5de1-49ad-914b-d581c609af96 fwd="217.182.175.162" dyno=web.1 connect=1ms service=3ms status=200 bytes=162 protocol=https
2019-08-02T11:23:10.826498+00:00 app[web.1]: 10.69.88.164 - - [02/Aug/2019:11:23:10 +0000] "HEAD / HTTP/1.1" 200 0 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.67 Safari/537.36"
2019-08-02T11:23:11.070785+00:00 app[web.1]: 10.63.55.145 - - [02/Aug/2019:11:23:11 +0000] "GET /robots.txt HTTP/1.1" 200 674 "-" "Mozilla/5.0 (compatible; AhrefsBot/6.1; +http://ahrefs.com/robot/)"
2019-08-02T11:23:11.069726+00:00 heroku[router]: at=info method=GET path="/robots.txt" host=hours-estimate.herokuapp.com request_id=cfda82e5-d164-4058-97a6-105ed75a8b0f fwd="54.36.148.198" dyno=web.1 connect=1ms service=3ms status=200 bytes=882 protocol=https
2019-08-02T11:23:31.532675+00:00 heroku[router]: at=info method=HEAD path="/" host=hours-estimate.herokuapp.com request_id=82503771-5d27-44a1-80c4-ff3db9d0a96e fwd="88.198.16.187" dyno=web.1 connect=1ms service=2ms status=200 bytes=162 protocol=https
2019-08-02T11:23:31.532773+00:00 app[web.1]: 10.63.106.31 - - [02/Aug/2019:11:23:31 +0000] "HEAD / HTTP/1.1" 200 0 "-" "Mozilla/5.0 (compatible; um-LN/1.0; mailto: techinfo@ubermetrics-technologies.com; Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1"
2019-08-02T11:23:32.003822+00:00 app[web.1]: 10.30.78.6 - - [02/Aug/2019:11:23:32 +0000] "GET /robots.txt HTTP/1.1" 200 674 "-" "Mozilla/5.0 (compatible; um-LN/1.0; mailto: techinfo@ubermetrics-technologies.com; Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1"
2019-08-02T11:23:32.227728+00:00 app[web.1]: 10.30.78.6 - - [02/Aug/2019:11:23:32 +0000] "GET / HTTP/1.1" 200 674 "-" "Mozilla/5.0 (compatible; um-LN/1.0; mailto: techinfo@ubermetrics-technologies.com; Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1"
2019-08-02T11:23:32.003352+00:00 heroku[router]: at=info method=GET path="/robots.txt" host=hours-estimate.herokuapp.com request_id=69076504-2a98-467f-89b1-e6260b39b239 fwd="88.198.16.187" dyno=web.1 connect=0ms service=3ms status=200 bytes=882 protocol=https
2019-08-02T11:23:32.227287+00:00 heroku[router]: at=info method=GET path="/" host=hours-estimate.herokuapp.com request_id=fdf120bf-56f6-410f-8b9c-38179d46af9f fwd="88.198.16.187" dyno=web.1 connect=0ms service=3ms status=200 bytes=882 protocol=https
2019-08-02T11:23:48.464554+00:00 app[web.1]: 10.13.226.47 - - [02/Aug/2019:11:23:48 +0000] "GET /robots.txt HTTP/1.1" 200 674 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; fr; rv:1.8.0.2) Gecko/20060308 Firefox/52.7.3"
2019-08-02T11:23:48.463436+00:00 heroku[router]: at=info method=GET path="/robots.txt" host=hours-estimate.herokuapp.com request_id=72b8842f-0d71-484d-aea0-ecec66ffa813 fwd="88.99.195.198" dyno=web.1 connect=1ms service=3ms status=200 bytes=882 protocol=https
2019-08-02T11:23:49.001177+00:00 heroku[router]: at=info method=GET path="/" host=hours-estimate.herokuapp.com request_id=57a7d588-f549-4c2e-8549-3846080e81ac fwd="88.99.195.198" dyno=web.1 connect=1ms service=3ms status=200 bytes=882 protocol=https
2019-08-02T11:23:48.999013+00:00 app[web.1]: 10.165.209.116 - - [02/Aug/2019:11:23:48 +0000] "GET / HTTP/1.1" 200 674 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; fr; rv:1.8.0.2) Gecko/20060308 Firefox/52.7.3"
2019-08-02T11:24:27.851979+00:00 heroku[router]: at=info method=GET path="/" host=hours-estimate.herokuapp.com request_id=e3f5345a-046e-451b-a384-36781045827e fwd="54.36.149.205" dyno=web.1 connect=1ms service=3ms status=200 bytes=882 protocol=https
2019-08-02T11:24:27.853471+00:00 app[web.1]: 10.123.204.200 - - [02/Aug/2019:11:24:27 +0000] "GET / HTTP/1.1" 200 674 "-" "Mozilla/5.0 (compatible; AhrefsBot/6.1; News; +http://ahrefs.com/robot/)"
2019-08-02T11:26:51.840814+00:00 heroku[router]: at=info method=POST path="/_dash-update-component" host=hours-estimate.herokuapp.com request_id=ae311ac2-5df6-4a81-baa7-fc2510a3eb8d fwd="76.85.0.51" dyno=web.1 connect=0ms service=101ms status=200 bytes=72899 protocol=https
2019-08-02T11:26:51.836165+00:00 app[web.1]: 10.147.87.71 - - [02/Aug/2019:11:26:51 +0000] "POST /_dash-update-component HTTP/1.1" 200 72697 "https://hours-estimate.herokuapp.com/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-02T11:28:28.308643+00:00 heroku[router]: at=info method=HEAD path="/" host=hours-estimate.herokuapp.com request_id=d588b584-80d2-4f78-9a56-cdcd0e2d68d4 fwd="35.164.70.59" dyno=web.1 connect=1ms service=3ms status=200 bytes=208 protocol=https
2019-08-02T11:28:28.307815+00:00 app[web.1]: 10.101.245.49 - - [02/Aug/2019:11:28:28 +0000] "HEAD / HTTP/1.1" 200 0 "-" "SMUrlExpander"
2019-08-02T11:36:03.745883+00:00 heroku[router]: at=info method=POST path="/_dash-update-component" host=hours-estimate.herokuapp.com request_id=fac809d4-f0bb-49ae-a7f8-9aaf33acb3eb fwd="76.85.0.51" dyno=web.1 connect=0ms service=2ms status=200 bytes=631 protocol=https
2019-08-02T11:36:03.744895+00:00 app[web.1]: 10.45.210.143 - - [02/Aug/2019:11:36:03 +0000] "POST /_dash-update-component HTTP/1.1" 200 478 "https://hours-estimate.herokuapp.com/predictions" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-02T11:36:04.569279+00:00 heroku[router]: at=info method=POST path="/_dash-update-component" host=hours-estimate.herokuapp.com request_id=657a81a3-b4eb-4976-b944-e1d413cfd358 fwd="76.85.0.51" dyno=web.1 connect=0ms service=9ms status=200 bytes=3312 protocol=https
2019-08-02T11:36:04.568541+00:00 app[web.1]: 10.45.210.143 - - [02/Aug/2019:11:36:04 +0000] "POST /_dash-update-component HTTP/1.1" 200 3111 "https://hours-estimate.herokuapp.com/insights" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-02T11:36:05.503977+00:00 heroku[router]: at=info method=POST path="/_dash-update-component" host=hours-estimate.herokuapp.com request_id=7b254b30-1d08-4ddc-941f-8bc7869a92f7 fwd="76.85.0.51" dyno=web.1 connect=1ms service=10ms status=200 bytes=2374 protocol=https
2019-08-02T11:36:05.497102+00:00 app[web.1]: 10.45.210.143 - - [02/Aug/2019:11:36:05 +0000] "POST /_dash-update-component HTTP/1.1" 200 2173 "https://hours-estimate.herokuapp.com/process" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-02T12:11:15.826198+00:00 heroku[web.1]: Idling
2019-08-02T12:11:15.830042+00:00 heroku[web.1]: State changed from up to down
2019-08-02T12:11:16.746713+00:00 heroku[web.1]: Stopping all processes with SIGTERM
2019-08-02T12:11:16.764386+00:00 app[web.1]: [2019-08-02 12:11:16 +0000] [4] [INFO] Handling signal: term
2019-08-02T12:11:16.765114+00:00 app[web.1]: [2019-08-02 12:11:16 +0000] [10] [INFO] Worker exiting (pid: 10)
2019-08-02T12:11:16.768503+00:00 app[web.1]: [2019-08-02 12:11:16 +0000] [11] [INFO] Worker exiting (pid: 11)
2019-08-02T12:11:17.373737+00:00 app[web.1]: [2019-08-02 12:11:17 +0000] [4] [INFO] Shutting down: Master
2019-08-02T12:11:17.461186+00:00 heroku[web.1]: Process exited with status 0
2019-08-02T12:19:25.605134+00:00 heroku[web.1]: Unidling
2019-08-02T12:19:25.614561+00:00 heroku[web.1]: State changed from down to starting
2019-08-02T12:19:35.820189+00:00 heroku[web.1]: Starting process with command `gunicorn run:server`
2019-08-02T12:19:37.555135+00:00 app[web.1]: [2019-08-02 12:19:37 +0000] [4] [INFO] Starting gunicorn 19.9.0
2019-08-02T12:19:37.555730+00:00 app[web.1]: [2019-08-02 12:19:37 +0000] [4] [INFO] Listening at: http://0.0.0.0:39193 (4)
2019-08-02T12:19:37.555833+00:00 app[web.1]: [2019-08-02 12:19:37 +0000] [4] [INFO] Using worker: sync
2019-08-02T12:19:37.559776+00:00 app[web.1]: [2019-08-02 12:19:37 +0000] [10] [INFO] Booting worker with pid: 10
2019-08-02T12:19:37.630083+00:00 app[web.1]: [2019-08-02 12:19:37 +0000] [11] [INFO] Booting worker with pid: 11
2019-08-02T12:19:38.261333+00:00 heroku[web.1]: State changed from starting to up
2019-08-02T12:19:47.506963+00:00 heroku[router]: at=info method=GET path="/" host=hours-estimate.herokuapp.com request_id=171e359d-35c0-4571-8692-6f48cc247a6b fwd="69.174.154.31" dyno=web.1 connect=1ms service=7799ms status=200 bytes=882 protocol=https
2019-08-02T12:19:47.625058+00:00 heroku[router]: at=info method=GET path="/_dash-component-suites/dash_renderer/react-dom@16.8.6.min.js?v=1.0.0&m=1564743930" host=hours-estimate.herokuapp.com request_id=28661704-92bc-419f-9b6d-55ce25554c83 fwd="69.174.154.31" dyno=web.1 connect=1ms service=9ms status=200 bytes=35066 protocol=https
2019-08-02T12:19:47.652299+00:00 heroku[router]: at=info method=GET path="/_dash-component-suites/dash_core_components/highlight.pack.js?v=1.0.0&m=1564743936" host=hours-estimate.herokuapp.com request_id=988c24d4-40c1-4b58-b949-f1a8d81f9d7e fwd="69.174.154.31" dyno=web.1 connect=0ms service=3ms status=200 bytes=14314 protocol=https
2019-08-02T12:19:47.647814+00:00 heroku[router]: at=info method=GET path="/_dash-component-suites/dash_renderer/prop-types@15.7.2.min.js?v=1.0.0&m=1564743930" host=hours-estimate.herokuapp.com request_id=faabe19b-216b-494e-a513-2a76fe1c935b fwd="69.174.154.31" dyno=web.1 connect=1ms service=2ms status=200 bytes=1053 protocol=https
2019-08-02T12:19:47.504035+00:00 app[web.1]: 10.63.72.93 - - [02/Aug/2019:12:19:47 +0000] "GET / HTTP/1.1" 200 674 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-02T12:19:47.570037+00:00 app[web.1]: 10.63.72.93 - - [02/Aug/2019:12:19:47 +0000] "GET /_dash-component-suites/dash_renderer/react@16.8.6.min.js?v=1.0.0&m=1564743930 HTTP/1.1" 200 4888 "https://hours-estimate.herokuapp.com/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-02T12:19:47.620558+00:00 app[web.1]: 10.63.72.93 - - [02/Aug/2019:12:19:47 +0000] "GET /_dash-component-suites/dash_renderer/react-dom@16.8.6.min.js?v=1.0.0&m=1564743930 HTTP/1.1" 200 34843 "https://hours-estimate.herokuapp.com/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-02T12:19:47.645024+00:00 app[web.1]: 10.61.187.66 - - [02/Aug/2019:12:19:47 +0000] "GET /_dash-component-suites/dash_renderer/prop-types@15.7.2.min.js?v=1.0.0&m=1564743930 HTTP/1.1" 200 832 "https://hours-estimate.herokuapp.com/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-02T12:19:47.649830+00:00 app[web.1]: 10.63.66.107 - - [02/Aug/2019:12:19:47 +0000] "GET /_dash-component-suites/dash_core_components/highlight.pack.js?v=1.0.0&m=1564743936 HTTP/1.1" 200 14091 "https://hours-estimate.herokuapp.com/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-02T12:19:47.655979+00:00 app[web.1]: 10.30.55.210 - - [02/Aug/2019:12:19:47 +0000] "GET /_dash-component-suites/dash_html_components/dash_html_components.min.js?v=1.0.0&m=1564743930 HTTP/1.1" 200 18902 "https://hours-estimate.herokuapp.com/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-02T12:19:47.707897+00:00 app[web.1]: 10.45.71.27 - - [02/Aug/2019:12:19:47 +0000] "GET /_dash-component-suites/dash_core_components/dash_core_components.min.js?v=1.0.0&m=1564743936 HTTP/1.1" 200 279706 "https://hours-estimate.herokuapp.com/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-02T12:19:47.723553+00:00 app[web.1]: 10.61.187.66 - - [02/Aug/2019:12:19:47 +0000] "GET /_dash-component-suites/dash_bootstrap_components/_components/dash_bootstrap_components.min.js?v=0.7.0&m=1564743930 HTTP/1.1" 200 45782 "https://hours-estimate.herokuapp.com/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-02T12:19:47.746107+00:00 app[web.1]: 10.63.66.107 - - [02/Aug/2019:12:19:47 +0000] "GET /_dash-component-suites/dash_renderer/dash_renderer.min.js?v=1.0.0&m=1564743930 HTTP/1.1" 200 79167 "https://hours-estimate.herokuapp.com/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-02T12:19:47.726881+00:00 heroku[router]: at=info method=GET path="/_dash-component-suites/dash_core_components/dash_core_components.min.js?v=1.0.0&m=1564743936" host=hours-estimate.herokuapp.com request_id=e8bda259-e3ef-41a8-bca4-df0209c4360b fwd="69.174.154.31" dyno=web.1 connect=1ms service=70ms status=200 bytes=279930 protocol=https
2019-08-02T12:19:47.572726+00:00 heroku[router]: at=info method=GET path="/_dash-component-suites/dash_renderer/react@16.8.6.min.js?v=1.0.0&m=1564743930" host=hours-estimate.herokuapp.com request_id=c15ae10a-4cd2-4fd3-9be3-416eee1c36df fwd="69.174.154.31" dyno=web.1 connect=1ms service=5ms status=200 bytes=5110 protocol=https
2019-08-02T12:19:47.659076+00:00 heroku[router]: at=info method=GET path="/_dash-component-suites/dash_html_components/dash_html_components.min.js?v=1.0.0&m=1564743930" host=hours-estimate.herokuapp.com request_id=7a713591-2f07-48ac-8aec-2f26a7e45e90 fwd="69.174.154.31" dyno=web.1 connect=1ms service=9ms status=200 bytes=19125 protocol=https
2019-08-02T12:19:47.750470+00:00 heroku[router]: at=info method=GET path="/_dash-component-suites/dash_renderer/dash_renderer.min.js?v=1.0.0&m=1564743930" host=hours-estimate.herokuapp.com request_id=697f7e2e-7046-471e-a3f1-3c09f8f0f771 fwd="69.174.154.31" dyno=web.1 connect=0ms service=56ms status=200 bytes=79390 protocol=https
2019-08-02T12:19:47.727097+00:00 heroku[router]: at=info method=GET path="/_dash-component-suites/dash_bootstrap_components/_components/dash_bootstrap_components.min.js?v=0.7.0&m=1564743930" host=hours-estimate.herokuapp.com request_id=86984107-3641-400f-9c28-a92a7086c015 fwd="69.174.154.31" dyno=web.1 connect=1ms service=40ms status=200 bytes=46005 protocol=https
2019-08-02T12:19:47.840094+00:00 heroku[router]: at=info method=GET path="/_dash-component-suites/dash_core_components/plotly-1.48.3.min.js?v=1.0.0&m=1564743936" host=hours-estimate.herokuapp.com request_id=180fcfbc-9ded-4c50-a79c-a6bd5ab0daae fwd="69.174.154.31" dyno=web.1 connect=0ms service=192ms status=200 bytes=918326 protocol=https
2019-08-02T12:19:47.826161+00:00 app[web.1]: 10.31.241.116 - - [02/Aug/2019:12:19:47 +0000] "GET /_dash-component-suites/dash_core_components/plotly-1.48.3.min.js?v=1.0.0&m=1564743936 HTTP/1.1" 200 918102 "https://hours-estimate.herokuapp.com/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-02T12:19:48.750482+00:00 heroku[router]: at=info method=GET path="/_dash-dependencies" host=hours-estimate.herokuapp.com request_id=ad131d65-1d15-4e5e-b2b6-491fc45165f4 fwd="69.174.154.31" dyno=web.1 connect=1ms service=2ms status=200 bytes=274 protocol=https
2019-08-02T12:19:48.773593+00:00 heroku[router]: at=info method=GET path="/_favicon.ico?v=1.0.2" host=hours-estimate.herokuapp.com request_id=fd69dc06-6778-45dc-aa99-d28021416005 fwd="69.174.154.31" dyno=web.1 connect=1ms service=2ms status=200 bytes=15237 protocol=https
2019-08-02T12:19:48.749859+00:00 heroku[router]: at=info method=GET path="/_dash-layout" host=hours-estimate.herokuapp.com request_id=15b8456f-afef-4538-b457-5ef50744c993 fwd="69.174.154.31" dyno=web.1 connect=0ms service=3ms status=200 bytes=715 protocol=https
2019-08-02T12:19:48.802809+00:00 heroku[router]: at=info method=POST path="/_dash-update-component" host=hours-estimate.herokuapp.com request_id=d7fde138-953c-4b83-bce5-274e8869df6e fwd="69.174.154.31" dyno=web.1 connect=1ms service=3ms status=200 bytes=297 protocol=https
2019-08-02T12:19:48.746158+00:00 app[web.1]: 10.45.71.27 - - [02/Aug/2019:12:19:48 +0000] "GET /_dash-dependencies HTTP/1.1" 200 121 "https://hours-estimate.herokuapp.com/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-02T12:19:48.746253+00:00 app[web.1]: 10.31.241.116 - - [02/Aug/2019:12:19:48 +0000] "GET /_dash-layout HTTP/1.1" 200 515 "https://hours-estimate.herokuapp.com/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-02T12:19:48.770187+00:00 app[web.1]: 10.61.187.66 - - [02/Aug/2019:12:19:48 +0000] "GET /_favicon.ico?v=1.0.2 HTTP/1.1" 200 15086 "https://hours-estimate.herokuapp.com/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-02T12:19:48.798344+00:00 app[web.1]: 10.45.71.27 - - [02/Aug/2019:12:19:48 +0000] "POST /_dash-update-component HTTP/1.1" 200 144 "https://hours-estimate.herokuapp.com/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-02T12:19:48.918292+00:00 app[web.1]: 10.31.241.116 - - [02/Aug/2019:12:19:48 +0000] "POST /_dash-update-component HTTP/1.1" 200 72697 "https://hours-estimate.herokuapp.com/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-02T12:19:48.923547+00:00 heroku[router]: at=info method=POST path="/_dash-update-component" host=hours-estimate.herokuapp.com request_id=4e0e6a5b-1255-457a-a597-133088673e83 fwd="69.174.154.31" dyno=web.1 connect=0ms service=110ms status=200 bytes=72899 protocol=https
2019-08-02T12:21:43.881606+00:00 heroku[router]: at=info method=POST path="/_dash-update-component" host=hours-estimate.herokuapp.com request_id=93a3d9b6-8c3e-4c96-bd9f-77c5ad4c43c6 fwd="69.174.154.31" dyno=web.1 connect=0ms service=2ms status=200 bytes=631 protocol=https
2019-08-02T12:21:43.879081+00:00 app[web.1]: 10.138.171.188 - - [02/Aug/2019:12:21:43 +0000] "POST /_dash-update-component HTTP/1.1" 200 478 "https://hours-estimate.herokuapp.com/predictions" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-02T12:21:46.319540+00:00 app[web.1]: 10.138.171.188 - - [02/Aug/2019:12:21:46 +0000] "POST /_dash-update-component HTTP/1.1" 200 3111 "https://hours-estimate.herokuapp.com/insights" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-02T12:21:46.322085+00:00 heroku[router]: at=info method=POST path="/_dash-update-component" host=hours-estimate.herokuapp.com request_id=d15ae916-4c0b-4bcd-ace8-9e97c01418ed fwd="69.174.154.31" dyno=web.1 connect=0ms service=6ms status=200 bytes=3312 protocol=https
2019-08-02T12:21:47.973923+00:00 heroku[router]: at=info method=POST path="/_dash-update-component" host=hours-estimate.herokuapp.com request_id=f23d2a1d-d343-4065-8b0a-c18352796c84 fwd="69.174.154.31" dyno=web.1 connect=0ms service=2ms status=200 bytes=631 protocol=https
2019-08-02T12:21:47.971354+00:00 app[web.1]: 10.138.171.188 - - [02/Aug/2019:12:21:47 +0000] "POST /_dash-update-component HTTP/1.1" 200 478 "https://hours-estimate.herokuapp.com/predictions" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-02T12:21:48.948259+00:00 heroku[router]: at=info method=POST path="/_dash-update-component" host=hours-estimate.herokuapp.com request_id=8f7b991b-2506-4bff-ad9e-5161511dcace fwd="69.174.154.31" dyno=web.1 connect=0ms service=3ms status=200 bytes=2374 protocol=https
2019-08-02T12:21:48.945577+00:00 app[web.1]: 10.138.171.188 - - [02/Aug/2019:12:21:48 +0000] "POST /_dash-update-component HTTP/1.1" 200 2173 "https://hours-estimate.herokuapp.com/process" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-02T12:21:56.659915+00:00 app[web.1]: 10.138.171.188 - - [02/Aug/2019:12:21:56 +0000] "POST /_dash-update-component HTTP/1.1" 200 3111 "https://hours-estimate.herokuapp.com/insights" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-02T12:21:56.662599+00:00 heroku[router]: at=info method=POST path="/_dash-update-component" host=hours-estimate.herokuapp.com request_id=7022ea61-be13-4e1a-8c89-dfe8c4da1a16 fwd="69.174.154.31" dyno=web.1 connect=0ms service=5ms status=200 bytes=3312 protocol=https
2019-08-02T12:22:09.977997+00:00 heroku[router]: at=info method=POST path="/_dash-update-component" host=hours-estimate.herokuapp.com request_id=8f316447-a8b8-42e1-88f4-be5f3f7da9a4 fwd="69.174.154.31" dyno=web.1 connect=0ms service=3ms status=200 bytes=631 protocol=https
2019-08-02T12:22:09.975471+00:00 app[web.1]: 10.138.171.188 - - [02/Aug/2019:12:22:09 +0000] "POST /_dash-update-component HTTP/1.1" 200 478 "https://hours-estimate.herokuapp.com/predictions" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-02T12:22:11.542542+00:00 heroku[router]: at=info method=GET path="/_dash-component-suites/dash_renderer/react@16.8.6.min.js?v=1.0.0&m=1564743930" host=hours-estimate.herokuapp.com request_id=759c5f53-ec4b-402e-b26f-e081a506a30a fwd="69.174.154.31" dyno=web.1 connect=0ms service=2ms status=200 bytes=5110 protocol=https
2019-08-02T12:22:11.590489+00:00 heroku[router]: at=info method=GET path="/_dash-component-suites/dash_renderer/react-dom@16.8.6.min.js?v=1.0.0&m=1564743930" host=hours-estimate.herokuapp.com request_id=0d6af908-198b-4bb9-a101-4dc6b43f8247 fwd="69.174.154.31" dyno=web.1 connect=0ms service=7ms status=200 bytes=35066 protocol=https
2019-08-02T12:22:11.483338+00:00 heroku[router]: at=info method=GET path="/predictions" host=hours-estimate.herokuapp.com request_id=47542188-53a1-4029-afa9-e8a4540bbc91 fwd="69.174.154.31" dyno=web.1 connect=0ms service=3ms status=200 bytes=882 protocol=https
2019-08-02T12:22:11.480768+00:00 app[web.1]: 10.138.171.188 - - [02/Aug/2019:12:22:11 +0000] "GET /predictions HTTP/1.1" 200 674 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-02T12:22:11.539880+00:00 app[web.1]: 10.138.171.188 - - [02/Aug/2019:12:22:11 +0000] "GET /_dash-component-suites/dash_renderer/react@16.8.6.min.js?v=1.0.0&m=1564743930 HTTP/1.1" 200 4888 "https://hours-estimate.herokuapp.com/predictions" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-02T12:22:11.586917+00:00 app[web.1]: 10.138.171.188 - - [02/Aug/2019:12:22:11 +0000] "GET /_dash-component-suites/dash_renderer/react-dom@16.8.6.min.js?v=1.0.0&m=1564743930 HTTP/1.1" 200 34843 "https://hours-estimate.herokuapp.com/predictions" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-02T12:22:11.648015+00:00 app[web.1]: 10.113.243.77 - - [02/Aug/2019:12:22:11 +0000] "GET /_dash-component-suites/dash_core_components/highlight.pack.js?v=1.0.0&m=1564743936 HTTP/1.1" 200 14091 "https://hours-estimate.herokuapp.com/predictions" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-02T12:22:11.653229+00:00 app[web.1]: 10.11.250.2 - - [02/Aug/2019:12:22:11 +0000] "GET /_dash-component-suites/dash_html_components/dash_html_components.min.js?v=1.0.0&m=1564743930 HTTP/1.1" 200 18902 "https://hours-estimate.herokuapp.com/predictions" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-02T12:22:11.655210+00:00 app[web.1]: 10.13.174.122 - - [02/Aug/2019:12:22:11 +0000] "GET /_dash-component-suites/dash_renderer/prop-types@15.7.2.min.js?v=1.0.0&m=1564743930 HTTP/1.1" 200 832 "https://hours-estimate.herokuapp.com/predictions" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-02T12:22:11.684848+00:00 app[web.1]: 10.11.211.111 - - [02/Aug/2019:12:22:11 +0000] "GET /_dash-component-suites/dash_core_components/dash_core_components.min.js?v=1.0.0&m=1564743936 HTTP/1.1" 200 279706 "https://hours-estimate.herokuapp.com/predictions" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-02T12:22:11.692649+00:00 app[web.1]: 10.138.171.188 - - [02/Aug/2019:12:22:11 +0000] "GET /_dash-component-suites/dash_bootstrap_components/_components/dash_bootstrap_components.min.js?v=0.7.0&m=1564743930 HTTP/1.1" 200 45782 "https://hours-estimate.herokuapp.com/predictions" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-02T12:22:11.704691+00:00 app[web.1]: 10.113.243.77 - - [02/Aug/2019:12:22:11 +0000] "GET /_dash-component-suites/dash_renderer/dash_renderer.min.js?v=1.0.0&m=1564743930 HTTP/1.1" 200 79167 "https://hours-estimate.herokuapp.com/predictions" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-02T12:22:11.697390+00:00 heroku[router]: at=info method=GET path="/_dash-component-suites/dash_bootstrap_components/_components/dash_bootstrap_components.min.js?v=0.7.0&m=1564743930" host=hours-estimate.herokuapp.com request_id=210c0414-5633-4901-a4b8-cfaa5c9a4689 fwd="69.174.154.31" dyno=web.1 connect=0ms service=29ms status=200 bytes=46005 protocol=https
2019-08-02T12:22:11.655168+00:00 heroku[router]: at=info method=GET path="/_dash-component-suites/dash_html_components/dash_html_components.min.js?v=1.0.0&m=1564743930" host=hours-estimate.herokuapp.com request_id=8f05b5b7-ecff-40e9-b545-5b1e463a1e58 fwd="69.174.154.31" dyno=web.1 connect=0ms service=9ms status=200 bytes=19125 protocol=https
2019-08-02T12:22:11.692471+00:00 heroku[router]: at=info method=GET path="/_dash-component-suites/dash_core_components/dash_core_components.min.js?v=1.0.0&m=1564743936" host=hours-estimate.herokuapp.com request_id=1c28e745-02df-4e79-bdd8-d2ec15ff4c63 fwd="69.174.154.31" dyno=web.1 connect=0ms service=48ms status=200 bytes=279930 protocol=https
2019-08-02T12:22:11.649068+00:00 heroku[router]: at=info method=GET path="/_dash-component-suites/dash_core_components/highlight.pack.js?v=1.0.0&m=1564743936" host=hours-estimate.herokuapp.com request_id=0634ac4b-b412-46dd-882f-4e198660a008 fwd="69.174.154.31" dyno=web.1 connect=0ms service=3ms status=200 bytes=14314 protocol=https
2019-08-02T12:22:11.710480+00:00 heroku[router]: at=info method=GET path="/_dash-component-suites/dash_renderer/dash_renderer.min.js?v=1.0.0&m=1564743930" host=hours-estimate.herokuapp.com request_id=891c189e-61d8-40d2-a2e9-d8502638d02c fwd="69.174.154.31" dyno=web.1 connect=1ms service=18ms status=200 bytes=79390 protocol=https
2019-08-02T12:22:11.659672+00:00 heroku[router]: at=info method=GET path="/_dash-component-suites/dash_renderer/prop-types@15.7.2.min.js?v=1.0.0&m=1564743930" host=hours-estimate.herokuapp.com request_id=9945ebe2-43e5-4866-bdc0-68915dcd3733 fwd="69.174.154.31" dyno=web.1 connect=1ms service=11ms status=200 bytes=1053 protocol=https
2019-08-02T12:22:11.840368+00:00 heroku[router]: at=info method=GET path="/_dash-component-suites/dash_core_components/plotly-1.48.3.min.js?v=1.0.0&m=1564743936" host=hours-estimate.herokuapp.com request_id=5fb7bca2-a543-4519-9b07-80d0cca54967 fwd="69.174.154.31" dyno=web.1 connect=1ms service=193ms status=200 bytes=918326 protocol=https
2019-08-02T12:22:11.810247+00:00 app[web.1]: 10.13.137.203 - - [02/Aug/2019:12:22:11 +0000] "GET /_dash-component-suites/dash_core_components/plotly-1.48.3.min.js?v=1.0.0&m=1564743936 HTTP/1.1" 200 918102 "https://hours-estimate.herokuapp.com/predictions" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-02T12:22:12.522821+00:00 heroku[router]: at=info method=POST path="/_dash-update-component" host=hours-estimate.herokuapp.com request_id=ae25c588-4a1b-47d2-9c31-dc90ea096e79 fwd="69.174.154.31" dyno=web.1 connect=0ms service=4ms status=200 bytes=631 protocol=https
2019-08-02T12:22:12.512169+00:00 heroku[router]: at=info method=POST path="/_dash-update-component" host=hours-estimate.herokuapp.com request_id=b94d013b-4e22-4b0d-8449-dade9bc945fc fwd="69.174.154.31" dyno=web.1 connect=1ms service=2ms status=200 bytes=297 protocol=https
2019-08-02T12:22:12.456055+00:00 heroku[router]: at=info method=GET path="/_dash-layout" host=hours-estimate.herokuapp.com request_id=d7dfa221-4a8f-41b2-9850-94907ab277ea fwd="69.174.154.31" dyno=web.1 connect=1ms service=4ms status=200 bytes=715 protocol=https
2019-08-02T12:22:12.450267+00:00 heroku[router]: at=info method=GET path="/_dash-dependencies" host=hours-estimate.herokuapp.com request_id=2a55c9b4-c0f2-47d8-adaa-4e77e89638e9 fwd="69.174.154.31" dyno=web.1 connect=0ms service=1ms status=200 bytes=274 protocol=https
2019-08-02T12:22:12.450854+00:00 app[web.1]: 10.11.211.111 - - [02/Aug/2019:12:22:12 +0000] "GET /_dash-dependencies HTTP/1.1" 200 121 "https://hours-estimate.herokuapp.com/predictions" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-02T12:22:12.453980+00:00 app[web.1]: 10.13.137.203 - - [02/Aug/2019:12:22:12 +0000] "GET /_dash-layout HTTP/1.1" 200 515 "https://hours-estimate.herokuapp.com/predictions" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-02T12:22:12.455900+00:00 app[web.1]: 10.113.243.77 - - [02/Aug/2019:12:22:12 +0000] "GET /_favicon.ico?v=1.0.2 HTTP/1.1" 200 15086 "https://hours-estimate.herokuapp.com/predictions" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-02T12:22:12.510286+00:00 app[web.1]: 10.13.137.203 - - [02/Aug/2019:12:22:12 +0000] "POST /_dash-update-component HTTP/1.1" 200 144 "https://hours-estimate.herokuapp.com/predictions" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-02T12:22:12.520982+00:00 app[web.1]: 10.113.243.77 - - [02/Aug/2019:12:22:12 +0000] "POST /_dash-update-component HTTP/1.1" 200 478 "https://hours-estimate.herokuapp.com/predictions" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-02T12:22:12.456957+00:00 heroku[router]: at=info method=GET path="/_favicon.ico?v=1.0.2" host=hours-estimate.herokuapp.com request_id=270c95f7-0dc5-441e-9ef4-323e75e1f527 fwd="69.174.154.31" dyno=web.1 connect=0ms service=1ms status=200 bytes=15237 protocol=https
2019-08-02T12:24:45.798066+00:00 heroku[router]: at=info method=POST path="/_dash-update-component" host=hours-estimate.herokuapp.com request_id=18331d1d-5577-4419-9726-7f034d623d6a fwd="69.174.154.31" dyno=web.1 connect=0ms service=89ms status=200 bytes=72899 protocol=https
2019-08-02T12:24:45.794905+00:00 app[web.1]: 10.136.83.38 - - [02/Aug/2019:12:24:45 +0000] "POST /_dash-update-component HTTP/1.1" 200 72697 "https://hours-estimate.herokuapp.com/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-02T12:24:48.161101+00:00 heroku[router]: at=info method=POST path="/_dash-update-component" host=hours-estimate.herokuapp.com request_id=ff3103fd-789c-4a13-85d0-c2d52249dd17 fwd="69.174.154.31" dyno=web.1 connect=0ms service=6ms status=200 bytes=3312 protocol=https
2019-08-02T12:24:48.160034+00:00 app[web.1]: 10.136.83.38 - - [02/Aug/2019:12:24:48 +0000] "POST /_dash-update-component HTTP/1.1" 200 3111 "https://hours-estimate.herokuapp.com/insights" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-02T12:25:01.259291+00:00 app[web.1]: 10.136.83.38 - - [02/Aug/2019:12:25:01 +0000] "POST /_dash-update-component HTTP/1.1" 200 2173 "https://hours-estimate.herokuapp.com/process" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-02T12:25:01.260394+00:00 heroku[router]: at=info method=POST path="/_dash-update-component" host=hours-estimate.herokuapp.com request_id=23a0d07c-9473-42ac-8efd-618818aa1897 fwd="69.174.154.31" dyno=web.1 connect=0ms service=3ms status=200 bytes=2374 protocol=https
2019-08-02T12:27:46.663858+00:00 heroku[router]: at=info method=POST path="/_dash-update-component" host=hours-estimate.herokuapp.com request_id=3e8eb4b2-4fee-493e-b2d3-07d8c88500fa fwd="69.174.154.31" dyno=web.1 connect=1ms service=91ms status=200 bytes=72899 protocol=https
2019-08-02T12:27:46.658252+00:00 app[web.1]: 10.63.106.31 - - [02/Aug/2019:12:27:46 +0000] "POST /_dash-update-component HTTP/1.1" 200 72697 "https://hours-estimate.herokuapp.com/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-02T12:28:06.811837+00:00 heroku[router]: at=info method=POST path="/_dash-update-component" host=hours-estimate.herokuapp.com request_id=afb5eaa1-cf06-4bd4-a8be-dad1393af9e4 fwd="69.174.154.31" dyno=web.1 connect=1ms service=3ms status=200 bytes=2374 protocol=https
2019-08-02T12:28:06.811315+00:00 app[web.1]: 10.63.106.31 - - [02/Aug/2019:12:28:06 +0000] "POST /_dash-update-component HTTP/1.1" 200 2173 "https://hours-estimate.herokuapp.com/process" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-02T12:28:14.802038+00:00 heroku[router]: at=info method=POST path="/_dash-update-component" host=hours-estimate.herokuapp.com request_id=2d28a689-bc2d-4f1d-809f-9ca2f9096e66 fwd="69.174.154.31" dyno=web.1 connect=1ms service=97ms status=200 bytes=72899 protocol=https
2019-08-02T12:28:14.797681+00:00 app[web.1]: 10.63.106.31 - - [02/Aug/2019:12:28:14 +0000] "POST /_dash-update-component HTTP/1.1" 200 72697 "https://hours-estimate.herokuapp.com/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-02T12:28:16.956736+00:00 heroku[router]: at=info method=POST path="/_dash-update-component" host=hours-estimate.herokuapp.com request_id=f5a4c392-d6dd-4c44-b9b8-9d562fa1d79e fwd="69.174.154.31" dyno=web.1 connect=1ms service=3ms status=200 bytes=2374 protocol=https
2019-08-02T12:28:16.955972+00:00 app[web.1]: 10.63.106.31 - - [02/Aug/2019:12:28:16 +0000] "POST /_dash-update-component HTTP/1.1" 200 2173 "https://hours-estimate.herokuapp.com/process" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-02T12:28:18.170919+00:00 heroku[router]: at=info method=POST path="/_dash-update-component" host=hours-estimate.herokuapp.com request_id=3a35dc1e-9722-4725-bfb6-51e5aed8b19b fwd="69.174.154.31" dyno=web.1 connect=1ms service=91ms status=200 bytes=72899 protocol=https
2019-08-02T12:28:18.167560+00:00 app[web.1]: 10.63.106.31 - - [02/Aug/2019:12:28:18 +0000] "POST /_dash-update-component HTTP/1.1" 200 72697 "https://hours-estimate.herokuapp.com/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-02T12:28:19.341467+00:00 heroku[router]: at=info method=POST path="/_dash-update-component" host=hours-estimate.herokuapp.com request_id=4883e476-ba9a-4ab8-a0b3-974a04622148 fwd="69.174.154.31" dyno=web.1 connect=1ms service=2ms status=200 bytes=631 protocol=https
2019-08-02T12:28:19.340731+00:00 app[web.1]: 10.63.106.31 - - [02/Aug/2019:12:28:19 +0000] "POST /_dash-update-component HTTP/1.1" 200 478 "https://hours-estimate.herokuapp.com/predictions" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-02T12:28:20.170195+00:00 app[web.1]: 10.63.106.31 - - [02/Aug/2019:12:28:20 +0000] "POST /_dash-update-component HTTP/1.1" 200 3111 "https://hours-estimate.herokuapp.com/insights" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-02T12:28:20.170703+00:00 heroku[router]: at=info method=POST path="/_dash-update-component" host=hours-estimate.herokuapp.com request_id=edfec03d-f68a-4d4f-a085-413ae0b57676 fwd="69.174.154.31" dyno=web.1 connect=1ms service=6ms status=200 bytes=3312 protocol=https
2019-08-02T12:28:20.850777+00:00 heroku[router]: at=info method=POST path="/_dash-update-component" host=hours-estimate.herokuapp.com request_id=36d261f0-ac31-497f-97bc-d2a9c076b28b fwd="69.174.154.31" dyno=web.1 connect=1ms service=3ms status=200 bytes=2374 protocol=https
2019-08-02T12:28:20.850230+00:00 app[web.1]: 10.63.106.31 - - [02/Aug/2019:12:28:20 +0000] "POST /_dash-update-component HTTP/1.1" 200 2173 "https://hours-estimate.herokuapp.com/process" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-02T12:28:22.257054+00:00 heroku[router]: at=info method=POST path="/_dash-update-component" host=hours-estimate.herokuapp.com request_id=7cf1dac7-b07d-45cc-8ba9-33f83e5124ba fwd="69.174.154.31" dyno=web.1 connect=1ms service=100ms status=200 bytes=72899 protocol=https
2019-08-02T12:28:22.253582+00:00 app[web.1]: 10.63.106.31 - - [02/Aug/2019:12:28:22 +0000] "POST /_dash-update-component HTTP/1.1" 200 72697 "https://hours-estimate.herokuapp.com/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-02T12:34:51.688135+00:00 heroku[router]: at=info method=GET path="/" host=hours-estimate.herokuapp.com request_id=cb2b89ca-8641-4ad6-b995-e6bb4a07b461 fwd="69.174.154.31" dyno=web.1 connect=0ms service=2ms status=200 bytes=882 protocol=https
2019-08-02T12:34:51.856086+00:00 heroku[router]: at=info method=GET path="/_dash-component-suites/dash_html_components/dash_html_components.min.js?v=1.0.0&m=1564743930" host=hours-estimate.herokuapp.com request_id=1830712c-732a-4def-90a5-3f7cde67cab3 fwd="69.174.154.31" dyno=web.1 connect=0ms service=6ms status=200 bytes=19125 protocol=https
2019-08-02T12:34:51.771940+00:00 heroku[router]: at=info method=GET path="/_dash-component-suites/dash_renderer/react@16.8.6.min.js?v=1.0.0&m=1564743930" host=hours-estimate.herokuapp.com request_id=c93de8e0-3e3c-4dd2-a53c-0ac8e6e66316 fwd="69.174.154.31" dyno=web.1 connect=0ms service=2ms status=200 bytes=5110 protocol=https
2019-08-02T12:34:51.815910+00:00 heroku[router]: at=info method=GET path="/_dash-component-suites/dash_renderer/prop-types@15.7.2.min.js?v=1.0.0&m=1564743930" host=hours-estimate.herokuapp.com request_id=57e417b2-b403-4bf8-bb31-36bd2030a267 fwd="69.174.154.31" dyno=web.1 connect=0ms service=1ms status=200 bytes=1053 protocol=https
2019-08-02T12:34:51.687697+00:00 app[web.1]: 10.33.241.9 - - [02/Aug/2019:12:34:51 +0000] "GET / HTTP/1.1" 200 674 "https://t.co/Fm9nNxLoeb?amp=1" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-02T12:34:51.771660+00:00 app[web.1]: 10.33.241.9 - - [02/Aug/2019:12:34:51 +0000] "GET /_dash-component-suites/dash_renderer/react@16.8.6.min.js?v=1.0.0&m=1564743930 HTTP/1.1" 200 4888 "https://hours-estimate.herokuapp.com/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-02T12:34:51.779298+00:00 app[web.1]: 10.43.178.117 - - [02/Aug/2019:12:34:51 +0000] "GET /_dash-component-suites/dash_renderer/react-dom@16.8.6.min.js?v=1.0.0&m=1564743930 HTTP/1.1" 200 34843 "https://hours-estimate.herokuapp.com/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-02T12:34:51.815501+00:00 app[web.1]: 10.33.241.9 - - [02/Aug/2019:12:34:51 +0000] "GET /_dash-component-suites/dash_renderer/prop-types@15.7.2.min.js?v=1.0.0&m=1564743930 HTTP/1.1" 200 832 "https://hours-estimate.herokuapp.com/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-02T12:34:51.855695+00:00 app[web.1]: 10.29.103.165 - - [02/Aug/2019:12:34:51 +0000] "GET /_dash-component-suites/dash_html_components/dash_html_components.min.js?v=1.0.0&m=1564743930 HTTP/1.1" 200 18902 "https://hours-estimate.herokuapp.com/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-02T12:34:51.859180+00:00 app[web.1]: 10.29.87.94 - - [02/Aug/2019:12:34:51 +0000] "GET /_dash-component-suites/dash_core_components/highlight.pack.js?v=1.0.0&m=1564743936 HTTP/1.1" 200 14091 "https://hours-estimate.herokuapp.com/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-02T12:34:51.903475+00:00 app[web.1]: 10.30.222.9 - - [02/Aug/2019:12:34:51 +0000] "GET /_dash-component-suites/dash_core_components/dash_core_components.min.js?v=1.0.0&m=1564743936 HTTP/1.1" 200 279706 "https://hours-estimate.herokuapp.com/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-02T12:34:51.922494+00:00 app[web.1]: 10.33.241.9 - - [02/Aug/2019:12:34:51 +0000] "GET /_dash-component-suites/dash_bootstrap_components/_components/dash_bootstrap_components.min.js?v=0.7.0&m=1564743930 HTTP/1.1" 200 45782 "https://hours-estimate.herokuapp.com/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-02T12:34:51.781949+00:00 heroku[router]: at=info method=GET path="/_dash-component-suites/dash_renderer/react-dom@16.8.6.min.js?v=1.0.0&m=1564743930" host=hours-estimate.herokuapp.com request_id=d7dd7528-fb0a-40e2-b43e-908b59862418 fwd="69.174.154.31" dyno=web.1 connect=0ms service=7ms status=200 bytes=35066 protocol=https
2019-08-02T12:34:51.944710+00:00 heroku[router]: at=info method=GET path="/_dash-component-suites/dash_renderer/dash_renderer.min.js?v=1.0.0&m=1564743930" host=hours-estimate.herokuapp.com request_id=b5b83a45-1ec4-4639-9963-89605347868a fwd="69.174.154.31" dyno=web.1 connect=0ms service=83ms status=200 bytes=79390 protocol=https
2019-08-02T12:34:51.923504+00:00 heroku[router]: at=info method=GET path="/_dash-component-suites/dash_bootstrap_components/_components/dash_bootstrap_components.min.js?v=0.7.0&m=1564743930" host=hours-estimate.herokuapp.com request_id=031afd36-5c69-42f5-bada-7d6e3d2c0ccc fwd="69.174.154.31" dyno=web.1 connect=1ms service=65ms status=200 bytes=46005 protocol=https
2019-08-02T12:34:51.861180+00:00 heroku[router]: at=info method=GET path="/_dash-component-suites/dash_core_components/highlight.pack.js?v=1.0.0&m=1564743936" host=hours-estimate.herokuapp.com request_id=a7c006d0-9304-4466-8354-c7b18f787eb4 fwd="69.174.154.31" dyno=web.1 connect=1ms service=8ms status=200 bytes=14314 protocol=https
2019-08-02T12:34:51.918229+00:00 heroku[router]: at=info method=GET path="/_dash-component-suites/dash_core_components/dash_core_components.min.js?v=1.0.0&m=1564743936" host=hours-estimate.herokuapp.com request_id=9a4a5425-976f-46ec-a08a-3bb47ca88142 fwd="69.174.154.31" dyno=web.1 connect=1ms service=62ms status=200 bytes=279930 protocol=https
2019-08-02T12:34:51.943103+00:00 app[web.1]: 10.43.178.117 - - [02/Aug/2019:12:34:51 +0000] "GET /_dash-component-suites/dash_renderer/dash_renderer.min.js?v=1.0.0&m=1564743930 HTTP/1.1" 200 79167 "https://hours-estimate.herokuapp.com/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-02T12:34:51.984655+00:00 app[web.1]: 10.29.126.230 - - [02/Aug/2019:12:34:51 +0000] "GET /_dash-component-suites/dash_core_components/plotly-1.48.3.min.js?v=1.0.0&m=1564743936 HTTP/1.1" 200 918102 "https://hours-estimate.herokuapp.com/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-02T12:34:52.008357+00:00 heroku[router]: at=info method=GET path="/_dash-component-suites/dash_core_components/plotly-1.48.3.min.js?v=1.0.0&m=1564743936" host=hours-estimate.herokuapp.com request_id=45da993a-a42f-4dbe-8854-41549cb93efd fwd="69.174.154.31" dyno=web.1 connect=0ms service=155ms status=200 bytes=918326 protocol=https
2019-08-02T12:34:52.619637+00:00 heroku[router]: at=info method=GET path="/_dash-dependencies" host=hours-estimate.herokuapp.com request_id=f59cecbb-1ed6-41ad-8445-4767648290cb fwd="69.174.154.31" dyno=web.1 connect=1ms service=2ms status=200 bytes=274 protocol=https
2019-08-02T12:34:52.620547+00:00 heroku[router]: at=info method=GET path="/_dash-layout" host=hours-estimate.herokuapp.com request_id=d4ade9fc-8cf4-47c2-bfbc-8d9dd8a845c6 fwd="69.174.154.31" dyno=web.1 connect=0ms service=2ms status=200 bytes=715 protocol=https
2019-08-02T12:34:52.776743+00:00 heroku[router]: at=info method=POST path="/_dash-update-component" host=hours-estimate.herokuapp.com request_id=ec5ed3f5-368c-48c3-9a20-d564dc4c6cbe fwd="69.174.154.31" dyno=web.1 connect=0ms service=89ms status=200 bytes=72899 protocol=https
2019-08-02T12:34:52.616817+00:00 app[web.1]: 10.29.126.230 - - [02/Aug/2019:12:34:52 +0000] "GET /_dash-layout HTTP/1.1" 200 515 "https://hours-estimate.herokuapp.com/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-02T12:34:52.618195+00:00 app[web.1]: 10.30.222.9 - - [02/Aug/2019:12:34:52 +0000] "GET /_dash-dependencies HTTP/1.1" 200 121 "https://hours-estimate.herokuapp.com/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-02T12:34:52.673123+00:00 app[web.1]: 10.30.222.9 - - [02/Aug/2019:12:34:52 +0000] "POST /_dash-update-component HTTP/1.1" 200 144 "https://hours-estimate.herokuapp.com/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-02T12:34:52.771146+00:00 app[web.1]: 10.29.126.230 - - [02/Aug/2019:12:34:52 +0000] "POST /_dash-update-component HTTP/1.1" 200 72697 "https://hours-estimate.herokuapp.com/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-02T12:34:52.674354+00:00 heroku[router]: at=info method=POST path="/_dash-update-component" host=hours-estimate.herokuapp.com request_id=87283272-bbf8-4e20-8c22-8fd3671ecd06 fwd="69.174.154.31" dyno=web.1 connect=1ms service=3ms status=200 bytes=297 protocol=https
2019-08-02T12:34:54.812150+00:00 heroku[router]: at=info method=POST path="/_dash-update-component" host=hours-estimate.herokuapp.com request_id=33ad06e1-6a79-4c46-8131-2865ac04825a fwd="69.174.154.31" dyno=web.1 connect=1ms service=2ms status=200 bytes=631 protocol=https
2019-08-02T12:34:54.808712+00:00 app[web.1]: 10.29.126.230 - - [02/Aug/2019:12:34:54 +0000] "POST /_dash-update-component HTTP/1.1" 200 478 "https://hours-estimate.herokuapp.com/predictions" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-02T12:34:59.867035+00:00 app[web.1]: 10.29.126.230 - - [02/Aug/2019:12:34:59 +0000] "POST /_dash-update-component HTTP/1.1" 200 72697 "https://hours-estimate.herokuapp.com/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-02T12:34:59.872761+00:00 heroku[router]: at=info method=POST path="/_dash-update-component" host=hours-estimate.herokuapp.com request_id=1df453a5-d32b-4505-9d48-ecf8324c3f05 fwd="69.174.154.31" dyno=web.1 connect=0ms service=91ms status=200 bytes=72899 protocol=https
2019-08-02T12:49:37.302835+00:00 heroku[router]: at=info method=POST path="/_dash-update-component" host=hours-estimate.herokuapp.com request_id=7178e0e8-d32e-4732-b451-817a37db3607 fwd="69.174.154.31" dyno=web.1 connect=1ms service=3ms status=200 bytes=2374 protocol=https
2019-08-02T12:49:37.301010+00:00 app[web.1]: 10.43.195.122 - - [02/Aug/2019:12:49:37 +0000] "POST /_dash-update-component HTTP/1.1" 200 2173 "https://hours-estimate.herokuapp.com/process" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-02T12:50:26.728532+00:00 heroku[router]: at=info method=POST path="/_dash-update-component" host=hours-estimate.herokuapp.com request_id=1b8e5264-6955-4345-af5e-78ac4d7b6058 fwd="69.174.154.31" dyno=web.1 connect=1ms service=8ms status=200 bytes=3312 protocol=https
2019-08-02T12:50:26.726457+00:00 app[web.1]: 10.43.195.122 - - [02/Aug/2019:12:50:26 +0000] "POST /_dash-update-component HTTP/1.1" 200 3111 "https://hours-estimate.herokuapp.com/insights" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-02T12:51:43.288983+00:00 heroku[router]: at=info method=POST path="/_dash-update-component" host=hours-estimate.herokuapp.com request_id=7a6ee6e5-157b-4a71-a37e-b7d699639851 fwd="69.174.154.31" dyno=web.1 connect=1ms service=3ms status=200 bytes=2374 protocol=https
2019-08-02T12:51:43.287270+00:00 app[web.1]: 10.63.250.242 - - [02/Aug/2019:12:51:43 +0000] "POST /_dash-update-component HTTP/1.1" 200 2173 "https://hours-estimate.herokuapp.com/process" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-02T12:51:43.929182+00:00 app[web.1]: 10.63.250.242 - - [02/Aug/2019:12:51:43 +0000] "POST /_dash-update-component HTTP/1.1" 200 3111 "https://hours-estimate.herokuapp.com/insights" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-02T12:51:43.930989+00:00 heroku[router]: at=info method=POST path="/_dash-update-component" host=hours-estimate.herokuapp.com request_id=786a3de6-9c13-453e-8b74-1c3f9ba79630 fwd="69.174.154.31" dyno=web.1 connect=1ms service=7ms status=200 bytes=3312 protocol=https
2019-08-02T12:51:44.671341+00:00 heroku[router]: at=info method=POST path="/_dash-update-component" host=hours-estimate.herokuapp.com request_id=85696dca-da37-408a-9a76-4d90a63b951b fwd="69.174.154.31" dyno=web.1 connect=1ms service=3ms status=200 bytes=631 protocol=https
2019-08-02T12:51:44.669142+00:00 app[web.1]: 10.63.250.242 - - [02/Aug/2019:12:51:44 +0000] "POST /_dash-update-component HTTP/1.1" 200 478 "https://hours-estimate.herokuapp.com/predictions" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-02T12:51:46.188503+00:00 heroku[router]: at=info method=POST path="/_dash-update-component" host=hours-estimate.herokuapp.com request_id=f02b9198-28f1-4603-9084-8d222a7e829a fwd="69.174.154.31" dyno=web.1 connect=1ms service=95ms status=200 bytes=72899 protocol=https
2019-08-02T12:51:46.182497+00:00 app[web.1]: 10.63.250.242 - - [02/Aug/2019:12:51:46 +0000] "POST /_dash-update-component HTTP/1.1" 200 72697 "https://hours-estimate.herokuapp.com/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-02T12:54:15.031423+00:00 heroku[router]: at=info method=POST path="/_dash-update-component" host=hours-estimate.herokuapp.com request_id=7dcd8811-3e61-438e-8e39-08990b464321 fwd="69.174.154.31" dyno=web.1 connect=1ms service=11ms status=200 bytes=3312 protocol=https
2019-08-02T12:54:15.031004+00:00 app[web.1]: 10.67.229.200 - - [02/Aug/2019:12:54:15 +0000] "POST /_dash-update-component HTTP/1.1" 200 3111 "https://hours-estimate.herokuapp.com/insights" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-02T12:54:49.521012+00:00 heroku[router]: at=info method=POST path="/_dash-update-component" host=hours-estimate.herokuapp.com request_id=213c6508-7990-42af-8911-bff5f2d23a6d fwd="69.174.154.31" dyno=web.1 connect=1ms service=7ms status=200 bytes=2374 protocol=https
2019-08-02T12:54:49.520719+00:00 app[web.1]: 10.67.229.200 - - [02/Aug/2019:12:54:49 +0000] "POST /_dash-update-component HTTP/1.1" 200 2173 "https://hours-estimate.herokuapp.com/process" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-02T12:55:19.856384+00:00 heroku[router]: at=info method=POST path="/_dash-update-component" host=hours-estimate.herokuapp.com request_id=00b6303e-4763-4e6c-8920-bd82b76071a4 fwd="69.174.154.31" dyno=web.1 connect=1ms service=94ms status=200 bytes=72899 protocol=https
2019-08-02T12:55:19.852908+00:00 app[web.1]: 10.67.229.200 - - [02/Aug/2019:12:55:19 +0000] "POST /_dash-update-component HTTP/1.1" 200 72697 "https://hours-estimate.herokuapp.com/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-02T13:27:43.113053+00:00 heroku[web.1]: Idling
2019-08-02T13:27:43.117398+00:00 heroku[web.1]: State changed from up to down
2019-08-02T13:27:44.016643+00:00 heroku[web.1]: Stopping all processes with SIGTERM
2019-08-02T13:27:44.197994+00:00 heroku[web.1]: Process exited with status 0
2019-08-02T13:27:44.028717+00:00 app[web.1]: [2019-08-02 13:27:44 +0000] [11] [INFO] Worker exiting (pid: 11)
2019-08-02T13:27:44.028730+00:00 app[web.1]: [2019-08-02 13:27:44 +0000] [10] [INFO] Worker exiting (pid: 10)
2019-08-02T13:27:44.028732+00:00 app[web.1]: [2019-08-02 13:27:44 +0000] [4] [INFO] Handling signal: term
2019-08-02T13:27:44.129020+00:00 app[web.1]: [2019-08-02 13:27:44 +0000] [4] [INFO] Shutting down: Master
2019-08-02T16:01:57.279096+00:00 heroku[web.1]: Unidling
2019-08-02T16:01:57.299404+00:00 heroku[web.1]: State changed from down to starting
2019-08-02T16:02:08.582035+00:00 heroku[web.1]: Starting process with command `gunicorn run:server`
2019-08-02T16:02:10.622164+00:00 app[web.1]: [2019-08-02 16:02:10 +0000] [4] [INFO] Starting gunicorn 19.9.0
2019-08-02T16:02:10.622923+00:00 app[web.1]: [2019-08-02 16:02:10 +0000] [4] [INFO] Listening at: http://0.0.0.0:8350 (4)
2019-08-02T16:02:10.623091+00:00 app[web.1]: [2019-08-02 16:02:10 +0000] [4] [INFO] Using worker: sync
2019-08-02T16:02:10.628518+00:00 app[web.1]: [2019-08-02 16:02:10 +0000] [10] [INFO] Booting worker with pid: 10
2019-08-02T16:02:10.664500+00:00 app[web.1]: [2019-08-02 16:02:10 +0000] [11] [INFO] Booting worker with pid: 11
2019-08-02T16:02:12.229293+00:00 heroku[web.1]: State changed from starting to up
2019-08-02T16:02:24.609028+00:00 heroku[router]: at=info method=GET path="/" host=hours-estimate.herokuapp.com request_id=a3cdc910-2a39-4cd4-9df5-e4fe1bb1a73b fwd="97.79.221.219" dyno=web.1 connect=1ms service=11213ms status=200 bytes=886 protocol=https
2019-08-02T16:02:24.608430+00:00 app[web.1]: 10.65.77.132 - - [02/Aug/2019:16:02:24 +0000] "GET / HTTP/1.1" 200 678 "https://lwjstudio.github.io/9999-12-31-all-posts/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-02T16:02:24.766608+00:00 app[web.1]: 10.65.77.132 - - [02/Aug/2019:16:02:24 +0000] "GET /_dash-component-suites/dash_renderer/react@16.8.6.min.js?v=1.0.0&m=1564743930 HTTP/1.1" 200 4888 "https://hours-estimate.herokuapp.com/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-02T16:02:24.826622+00:00 app[web.1]: 10.65.77.132 - - [02/Aug/2019:16:02:24 +0000] "GET /_dash-component-suites/dash_renderer/react-dom@16.8.6.min.js?v=1.0.0&m=1564743930 HTTP/1.1" 200 34843 "https://hours-estimate.herokuapp.com/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-02T16:02:24.828749+00:00 heroku[router]: at=info method=GET path="/_dash-component-suites/dash_renderer/react-dom@16.8.6.min.js?v=1.0.0&m=1564743930" host=hours-estimate.herokuapp.com request_id=ff6a06bc-a1b6-47f1-9ce0-f93537cd218e fwd="97.79.221.219" dyno=web.1 connect=1ms service=13ms status=200 bytes=35066 protocol=https
2019-08-02T16:02:24.767414+00:00 heroku[router]: at=info method=GET path="/_dash-component-suites/dash_renderer/react@16.8.6.min.js?v=1.0.0&m=1564743930" host=hours-estimate.herokuapp.com request_id=726732b6-3bdb-4848-8b27-84e3e4411aee fwd="97.79.221.219" dyno=web.1 connect=1ms service=3ms status=200 bytes=5110 protocol=https
2019-08-02T16:02:24.887783+00:00 heroku[router]: at=info method=GET path="/_dash-component-suites/dash_bootstrap_components/_components/dash_bootstrap_components.min.js?v=0.7.0&m=1564743930" host=hours-estimate.herokuapp.com request_id=604be037-6616-4f5a-8c60-15f3031d1f07 fwd="97.79.221.219" dyno=web.1 connect=0ms service=13ms status=200 bytes=46005 protocol=https
2019-08-02T16:02:24.864680+00:00 heroku[router]: at=info method=GET path="/_dash-component-suites/dash_renderer/prop-types@15.7.2.min.js?v=1.0.0&m=1564743930" host=hours-estimate.herokuapp.com request_id=62b64610-b543-4496-b91c-5020ab1918d4 fwd="97.79.221.219" dyno=web.1 connect=0ms service=2ms status=200 bytes=1053 protocol=https
2019-08-02T16:02:24.875367+00:00 app[web.1]: 10.37.221.53 - - [02/Aug/2019:16:02:24 +0000] "GET /_dash-component-suites/dash_renderer/prop-types@15.7.2.min.js?v=1.0.0&m=1564743930 HTTP/1.1" 200 832 "https://hours-estimate.herokuapp.com/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-02T16:02:24.885416+00:00 app[web.1]: 10.5.151.218 - - [02/Aug/2019:16:02:24 +0000] "GET /_dash-component-suites/dash_bootstrap_components/_components/dash_bootstrap_components.min.js?v=0.7.0&m=1564743930 HTTP/1.1" 200 45782 "https://hours-estimate.herokuapp.com/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-02T16:02:24.886379+00:00 app[web.1]: 10.35.248.194 - - [02/Aug/2019:16:02:24 +0000] "GET /_dash-component-suites/dash_html_components/dash_html_components.min.js?v=1.0.0&m=1564743930 HTTP/1.1" 200 18902 "https://hours-estimate.herokuapp.com/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-02T16:02:24.895297+00:00 app[web.1]: 10.47.219.154 - - [02/Aug/2019:16:02:24 +0000] "GET /_dash-component-suites/dash_core_components/highlight.pack.js?v=1.0.0&m=1564743936 HTTP/1.1" 200 14091 "https://hours-estimate.herokuapp.com/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-02T16:02:24.977266+00:00 app[web.1]: 10.37.221.53 - - [02/Aug/2019:16:02:24 +0000] "GET /_dash-component-suites/dash_core_components/dash_core_components.min.js?v=1.0.0&m=1564743936 HTTP/1.1" 200 279706 "https://hours-estimate.herokuapp.com/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-02T16:02:24.993808+00:00 app[web.1]: 10.65.77.132 - - [02/Aug/2019:16:02:24 +0000] "GET /_dash-component-suites/dash_renderer/dash_renderer.min.js?v=1.0.0&m=1564743930 HTTP/1.1" 200 79167 "https://hours-estimate.herokuapp.com/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-02T16:02:25.050806+00:00 app[web.1]: 10.37.201.103 - - [02/Aug/2019:16:02:25 +0000] "GET /_dash-component-suites/dash_core_components/plotly-1.48.3.min.js?v=1.0.0&m=1564743936 HTTP/1.1" 200 918102 "https://hours-estimate.herokuapp.com/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-02T16:02:24.900154+00:00 heroku[router]: at=info method=GET path="/_dash-component-suites/dash_core_components/highlight.pack.js?v=1.0.0&m=1564743936" host=hours-estimate.herokuapp.com request_id=adaf7076-7621-479c-84c3-98906f61b5f7 fwd="97.79.221.219" dyno=web.1 connect=1ms service=4ms status=200 bytes=14314 protocol=https
2019-08-02T16:02:25.076927+00:00 heroku[router]: at=info method=GET path="/_dash-component-suites/dash_core_components/plotly-1.48.3.min.js?v=1.0.0&m=1564743936" host=hours-estimate.herokuapp.com request_id=95bf1f87-9771-494d-abb1-bb199bfab411 fwd="97.79.221.219" dyno=web.1 connect=1ms service=184ms status=200 bytes=918326 protocol=https
2019-08-02T16:02:24.998900+00:00 heroku[router]: at=info method=GET path="/_dash-component-suites/dash_renderer/dash_renderer.min.js?v=1.0.0&m=1564743930" host=hours-estimate.herokuapp.com request_id=05f3a36f-d454-4daa-901a-fa1e2b3c93b3 fwd="97.79.221.219" dyno=web.1 connect=1ms service=52ms status=200 bytes=79390 protocol=https
2019-08-02T16:02:24.980796+00:00 heroku[router]: at=info method=GET path="/_dash-component-suites/dash_core_components/dash_core_components.min.js?v=1.0.0&m=1564743936" host=hours-estimate.herokuapp.com request_id=94aa2c0a-caef-409c-a1a1-dbcb0a3a9b01 fwd="97.79.221.219" dyno=web.1 connect=0ms service=69ms status=200 bytes=279930 protocol=https
2019-08-02T16:02:24.889736+00:00 heroku[router]: at=info method=GET path="/_dash-component-suites/dash_html_components/dash_html_components.min.js?v=1.0.0&m=1564743930" host=hours-estimate.herokuapp.com request_id=3118a946-5152-43c4-8a40-71380a7f1a85 fwd="97.79.221.219" dyno=web.1 connect=1ms service=10ms status=200 bytes=19125 protocol=https
2019-08-02T16:02:25.801626+00:00 heroku[router]: at=info method=GET path="/_dash-layout" host=hours-estimate.herokuapp.com request_id=5140222d-93ed-493b-ad23-2b6b0854eb8c fwd="97.79.221.219" dyno=web.1 connect=1ms service=3ms status=200 bytes=715 protocol=https
2019-08-02T16:02:25.788731+00:00 heroku[router]: at=info method=GET path="/_dash-dependencies" host=hours-estimate.herokuapp.com request_id=51e9929d-a8b0-417b-abd6-379973139ac7 fwd="97.79.221.219" dyno=web.1 connect=0ms service=3ms status=200 bytes=274 protocol=https
2019-08-02T16:02:25.798591+00:00 app[web.1]: 10.37.201.103 - - [02/Aug/2019:16:02:25 +0000] "GET /_dash-layout HTTP/1.1" 200 515 "https://hours-estimate.herokuapp.com/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-02T16:02:25.799689+00:00 app[web.1]: 10.37.221.53 - - [02/Aug/2019:16:02:25 +0000] "GET /_dash-dependencies HTTP/1.1" 200 121 "https://hours-estimate.herokuapp.com/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-02T16:02:26.010737+00:00 app[web.1]: 10.37.221.53 - - [02/Aug/2019:16:02:26 +0000] "POST /_dash-update-component HTTP/1.1" 200 144 "https://hours-estimate.herokuapp.com/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-02T16:02:26.000136+00:00 heroku[router]: at=info method=POST path="/_dash-update-component" host=hours-estimate.herokuapp.com request_id=db8fc35c-087d-421e-bbad-2d0e96cddb83 fwd="97.79.221.219" dyno=web.1 connect=1ms service=2ms status=200 bytes=297 protocol=https
2019-08-02T16:02:26.140637+00:00 heroku[router]: at=info method=POST path="/_dash-update-component" host=hours-estimate.herokuapp.com request_id=d31e7259-3acf-466e-b296-79ee1dab6bf3 fwd="97.79.221.219" dyno=web.1 connect=1ms service=110ms status=200 bytes=72899 protocol=https
2019-08-02T16:02:26.134149+00:00 app[web.1]: 10.37.201.103 - - [02/Aug/2019:16:02:26 +0000] "POST /_dash-update-component HTTP/1.1" 200 72697 "https://hours-estimate.herokuapp.com/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-02T16:12:16.980707+00:00 app[web.1]: 10.102.186.34 - - [02/Aug/2019:16:12:16 +0000] "POST /_dash-update-component HTTP/1.1" 200 3111 "https://hours-estimate.herokuapp.com/insights" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-02T16:12:16.981755+00:00 heroku[router]: at=info method=POST path="/_dash-update-component" host=hours-estimate.herokuapp.com request_id=4ad4e54c-2f6f-4af7-8db9-ac90554dff19 fwd="97.79.221.219" dyno=web.1 connect=0ms service=7ms status=200 bytes=3312 protocol=https
2019-08-02T16:17:14.016262+00:00 heroku[router]: at=info method=POST path="/_dash-update-component" host=hours-estimate.herokuapp.com request_id=05327df4-66d2-45b9-900b-6b27cb026901 fwd="97.79.221.219" dyno=web.1 connect=0ms service=4ms status=200 bytes=2374 protocol=https
2019-08-02T16:17:14.016793+00:00 app[web.1]: 10.63.106.31 - - [02/Aug/2019:16:17:14 +0000] "POST /_dash-update-component HTTP/1.1" 200 2173 "https://hours-estimate.herokuapp.com/process" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-02T16:23:07.706202+00:00 app[web.1]: 10.31.240.90 - - [02/Aug/2019:16:23:07 +0000] "POST /_dash-update-component HTTP/1.1" 200 72697 "https://hours-estimate.herokuapp.com/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-02T16:23:07.710603+00:00 heroku[router]: at=info method=POST path="/_dash-update-component" host=hours-estimate.herokuapp.com request_id=90cccab2-5b97-412b-9b50-25469e7cdd50 fwd="97.79.221.219" dyno=web.1 connect=0ms service=97ms status=200 bytes=72899 protocol=https
2019-08-02T16:24:56.436838+00:00 heroku[router]: at=info method=POST path="/_dash-update-component" host=hours-estimate.herokuapp.com request_id=8366c4e7-aa7a-4284-8151-38a8b04beb78 fwd="97.79.221.219" dyno=web.1 connect=0ms service=3ms status=200 bytes=2374 protocol=https
2019-08-02T16:24:56.437128+00:00 app[web.1]: 10.45.133.27 - - [02/Aug/2019:16:24:56 +0000] "POST /_dash-update-component HTTP/1.1" 200 2173 "https://hours-estimate.herokuapp.com/process" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-02T16:35:45.638712+00:00 heroku[router]: at=info method=POST path="/_dash-update-component" host=hours-estimate.herokuapp.com request_id=372b52e2-4fc5-493e-97b6-90e1d466f3e1 fwd="97.79.221.219" dyno=web.1 connect=0ms service=99ms status=200 bytes=72899 protocol=https
2019-08-02T16:35:45.633792+00:00 app[web.1]: 10.95.238.212 - - [02/Aug/2019:16:35:45 +0000] "POST /_dash-update-component HTTP/1.1" 200 72697 "https://hours-estimate.herokuapp.com/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-02T16:37:28.728916+00:00 heroku[router]: at=info method=POST path="/_dash-update-component" host=hours-estimate.herokuapp.com request_id=68e72fa7-0ec5-4b9f-9020-ae9ac032120e fwd="97.79.221.219" dyno=web.1 connect=2ms service=5ms status=200 bytes=631 protocol=https
2019-08-02T16:37:28.727521+00:00 app[web.1]: 10.61.155.236 - - [02/Aug/2019:16:37:28 +0000] "POST /_dash-update-component HTTP/1.1" 200 478 "https://hours-estimate.herokuapp.com/predictions" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-02T16:37:31.226325+00:00 heroku[router]: at=info method=POST path="/_dash-update-component" host=hours-estimate.herokuapp.com request_id=bdfe6419-cab8-4e14-92a8-63fdaf760e3d fwd="97.79.221.219" dyno=web.1 connect=0ms service=109ms status=200 bytes=72899 protocol=https
2019-08-02T16:37:31.222706+00:00 app[web.1]: 10.61.155.236 - - [02/Aug/2019:16:37:31 +0000] "POST /_dash-update-component HTTP/1.1" 200 72697 "https://hours-estimate.herokuapp.com/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-02T16:39:25.679497+00:00 heroku[router]: at=info method=POST path="/_dash-update-component" host=hours-estimate.herokuapp.com request_id=67d67c17-5247-469d-92f8-f3feca8b216f fwd="97.79.221.219" dyno=web.1 connect=0ms service=7ms status=200 bytes=3312 protocol=https
2019-08-02T16:39:25.678200+00:00 app[web.1]: 10.139.108.80 - - [02/Aug/2019:16:39:25 +0000] "POST /_dash-update-component HTTP/1.1" 200 3111 "https://hours-estimate.herokuapp.com/insights" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-02T16:40:17.164981+00:00 heroku[router]: at=info method=POST path="/_dash-update-component" host=hours-estimate.herokuapp.com request_id=c0679c44-33c4-4121-9a36-9494bd65b813 fwd="97.79.221.219" dyno=web.1 connect=0ms service=2ms status=200 bytes=2374 protocol=https
2019-08-02T16:40:17.163490+00:00 app[web.1]: 10.139.108.80 - - [02/Aug/2019:16:40:17 +0000] "POST /_dash-update-component HTTP/1.1" 200 2173 "https://hours-estimate.herokuapp.com/process" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-02T16:42:07.212697+00:00 app[web.1]: 10.35.200.79 - - [02/Aug/2019:16:42:07 +0000] "POST /_dash-update-component HTTP/1.1" 200 72697 "https://hours-estimate.herokuapp.com/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-02T16:42:07.217276+00:00 heroku[router]: at=info method=POST path="/_dash-update-component" host=hours-estimate.herokuapp.com request_id=1b2e9c4e-fe0b-463d-ad09-50d74fcb5243 fwd="97.79.221.219" dyno=web.1 connect=1ms service=167ms status=200 bytes=72899 protocol=https
2019-08-02T16:42:48.456099+00:00 app[web.1]: 10.35.200.79 - - [02/Aug/2019:16:42:48 +0000] "POST /_dash-update-component HTTP/1.1" 200 2173 "https://hours-estimate.herokuapp.com/process" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-02T16:42:48.456466+00:00 heroku[router]: at=info method=POST path="/_dash-update-component" host=hours-estimate.herokuapp.com request_id=c0eb12dd-b18b-41c5-b003-688f5fd12e94 fwd="97.79.221.219" dyno=web.1 connect=1ms service=6ms status=200 bytes=2374 protocol=https
2019-08-02T16:44:19.815586+00:00 heroku[router]: at=info method=POST path="/_dash-update-component" host=hours-estimate.herokuapp.com request_id=ddacf64c-ee06-4f71-859b-c5a8bc05539f fwd="97.79.221.219" dyno=web.1 connect=0ms service=174ms status=200 bytes=72899 protocol=https
2019-08-02T16:44:19.812699+00:00 app[web.1]: 10.69.178.208 - - [02/Aug/2019:16:44:19 +0000] "POST /_dash-update-component HTTP/1.1" 200 72697 "https://hours-estimate.herokuapp.com/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-02T16:46:13.948534+00:00 heroku[router]: at=info method=POST path="/_dash-update-component" host=hours-estimate.herokuapp.com request_id=5ad7188e-9d22-4aaf-bc0b-d8de4eed65bc fwd="97.79.221.219" dyno=web.1 connect=0ms service=10ms status=200 bytes=3312 protocol=https
2019-08-02T16:46:13.947436+00:00 app[web.1]: 10.165.214.104 - - [02/Aug/2019:16:46:13 +0000] "POST /_dash-update-component HTTP/1.1" 200 3111 "https://hours-estimate.herokuapp.com/insights" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-02T16:46:24.231104+00:00 app[web.1]: 10.165.214.104 - - [02/Aug/2019:16:46:24 +0000] "POST /_dash-update-component HTTP/1.1" 200 72697 "https://hours-estimate.herokuapp.com/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-02T16:46:24.234353+00:00 heroku[router]: at=info method=POST path="/_dash-update-component" host=hours-estimate.herokuapp.com request_id=89558e04-606f-4495-855a-65fa885a6a5d fwd="97.79.221.219" dyno=web.1 connect=0ms service=142ms status=200 bytes=72899 protocol=https
2019-08-02T16:59:54.515474+00:00 heroku[router]: at=info method=POST path="/_dash-update-component" host=hours-estimate.herokuapp.com request_id=c8cf5e85-0558-4ac1-90e9-bba4d8a832d5 fwd="97.79.221.219" dyno=web.1 connect=0ms service=7ms status=200 bytes=3312 protocol=https
2019-08-02T16:59:54.514421+00:00 app[web.1]: 10.63.126.234 - - [02/Aug/2019:16:59:54 +0000] "POST /_dash-update-component HTTP/1.1" 200 3111 "https://hours-estimate.herokuapp.com/insights" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-02T17:00:53.227314+00:00 heroku[router]: at=info method=POST path="/_dash-update-component" host=hours-estimate.herokuapp.com request_id=fe14ce86-645c-477d-a61e-1004c615de28 fwd="97.79.221.219" dyno=web.1 connect=0ms service=103ms status=200 bytes=72899 protocol=https
2019-08-02T17:00:53.224534+00:00 app[web.1]: 10.63.126.234 - - [02/Aug/2019:17:00:53 +0000] "POST /_dash-update-component HTTP/1.1" 200 72697 "https://hours-estimate.herokuapp.com/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-02T17:01:13.572105+00:00 heroku[router]: at=info method=POST path="/_dash-update-component" host=hours-estimate.herokuapp.com request_id=7b01cd6d-b4e3-4270-84e7-6ed676e6ecf3 fwd="97.79.221.219" dyno=web.1 connect=0ms service=5ms status=200 bytes=3312 protocol=https
2019-08-02T17:01:13.571133+00:00 app[web.1]: 10.63.126.234 - - [02/Aug/2019:17:01:13 +0000] "POST /_dash-update-component HTTP/1.1" 200 3111 "https://hours-estimate.herokuapp.com/insights" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-02T17:01:15.345190+00:00 heroku[router]: at=info method=POST path="/_dash-update-component" host=hours-estimate.herokuapp.com request_id=b8add576-01c7-45c5-8e75-7af2655313d7 fwd="97.79.221.219" dyno=web.1 connect=1ms service=93ms status=200 bytes=72899 protocol=https
2019-08-02T17:01:15.342528+00:00 app[web.1]: 10.63.126.234 - - [02/Aug/2019:17:01:15 +0000] "POST /_dash-update-component HTTP/1.1" 200 72697 "https://hours-estimate.herokuapp.com/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-02T17:02:27.423502+00:00 app[web.1]: 10.63.174.177 - - [02/Aug/2019:17:02:27 +0000] "POST /_dash-update-component HTTP/1.1" 200 3111 "https://hours-estimate.herokuapp.com/insights" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-02T17:02:27.426940+00:00 heroku[router]: at=info method=POST path="/_dash-update-component" host=hours-estimate.herokuapp.com request_id=fce1b5c7-a660-44f7-b806-5c5fd9e39e4a fwd="97.79.221.219" dyno=web.1 connect=1ms service=8ms status=200 bytes=3312 protocol=https
2019-08-02T17:03:21.624622+00:00 heroku[router]: at=info method=POST path="/_dash-update-component" host=hours-estimate.herokuapp.com request_id=c2d89443-ef83-409e-97d0-dd751d830208 fwd="97.79.221.219" dyno=web.1 connect=13ms service=6ms status=200 bytes=2374 protocol=https
2019-08-02T17:03:21.620855+00:00 app[web.1]: 10.63.174.177 - - [02/Aug/2019:17:03:21 +0000] "POST /_dash-update-component HTTP/1.1" 200 2173 "https://hours-estimate.herokuapp.com/process" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-02T17:03:41.776118+00:00 heroku[router]: at=info method=GET path="/process" host=hours-estimate.herokuapp.com request_id=3ab547b2-4087-42a5-a228-2860e72937e0 fwd="70.161.148.47" dyno=web.1 connect=0ms service=3ms status=200 bytes=886 protocol=http
2019-08-02T17:03:41.939155+00:00 heroku[router]: at=info method=GET path="/_dash-component-suites/dash_html_components/dash_html_components.min.js?v=1.0.0&m=1564743930" host=hours-estimate.herokuapp.com request_id=462d24a4-2ac8-46ef-a715-751f58fd9300 fwd="70.161.148.47" dyno=web.1 connect=2ms service=18ms status=200 bytes=19125 protocol=http
2019-08-02T17:03:41.872163+00:00 heroku[router]: at=info method=GET path="/_dash-component-suites/dash_renderer/react@16.8.6.min.js?v=1.0.0&m=1564743930" host=hours-estimate.herokuapp.com request_id=0704748f-be2e-49a0-88b0-adaf6c492106 fwd="70.161.148.47" dyno=web.1 connect=1ms service=4ms status=200 bytes=5110 protocol=http
2019-08-02T17:03:41.774030+00:00 app[web.1]: 10.37.228.18 - - [02/Aug/2019:17:03:41 +0000] "GET /process HTTP/1.1" 200 678 "-" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-02T17:03:41.870096+00:00 app[web.1]: 10.37.228.18 - - [02/Aug/2019:17:03:41 +0000] "GET /_dash-component-suites/dash_renderer/react@16.8.6.min.js?v=1.0.0&m=1564743930 HTTP/1.1" 200 4888 "http://hours-estimate.herokuapp.com/process" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-02T17:03:41.880292+00:00 app[web.1]: 10.43.195.122 - - [02/Aug/2019:17:03:41 +0000] "GET /_dash-component-suites/dash_renderer/react-dom@16.8.6.min.js?v=1.0.0&m=1564743930 HTTP/1.1" 200 34843 "http://hours-estimate.herokuapp.com/process" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-02T17:03:41.917479+00:00 app[web.1]: 10.7.159.85 - - [02/Aug/2019:17:03:41 +0000] "GET /_dash-component-suites/dash_renderer/prop-types@15.7.2.min.js?v=1.0.0&m=1564743930 HTTP/1.1" 200 832 "http://hours-estimate.herokuapp.com/process" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-02T17:03:41.929865+00:00 app[web.1]: 10.37.193.179 - - [02/Aug/2019:17:03:41 +0000] "GET /_dash-component-suites/dash_bootstrap_components/_components/dash_bootstrap_components.min.js?v=0.7.0&m=1564743930 HTTP/1.1" 200 45782 "http://hours-estimate.herokuapp.com/process" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-02T17:03:41.935484+00:00 app[web.1]: 10.43.178.117 - - [02/Aug/2019:17:03:41 +0000] "GET /_dash-component-suites/dash_html_components/dash_html_components.min.js?v=1.0.0&m=1564743930 HTTP/1.1" 200 18902 "http://hours-estimate.herokuapp.com/process" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-02T17:03:41.938450+00:00 app[web.1]: 10.37.228.18 - - [02/Aug/2019:17:03:41 +0000] "GET /_dash-component-suites/dash_core_components/highlight.pack.js?v=1.0.0&m=1564743936 HTTP/1.1" 200 14091 "http://hours-estimate.herokuapp.com/process" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-02T17:03:41.935549+00:00 heroku[router]: at=info method=GET path="/_dash-component-suites/dash_bootstrap_components/_components/dash_bootstrap_components.min.js?v=0.7.0&m=1564743930" host=hours-estimate.herokuapp.com request_id=988baf0c-bb07-4b10-937a-4757994d2e69 fwd="70.161.148.47" dyno=web.1 connect=1ms service=13ms status=200 bytes=46005 protocol=http
2019-08-02T17:03:41.882990+00:00 heroku[router]: at=info method=GET path="/_dash-component-suites/dash_renderer/react-dom@16.8.6.min.js?v=1.0.0&m=1564743930" host=hours-estimate.herokuapp.com request_id=22fcb071-f5f4-4834-a649-2b2b74132443 fwd="70.161.148.47" dyno=web.1 connect=1ms service=9ms status=200 bytes=35066 protocol=http
2019-08-02T17:03:41.920419+00:00 heroku[router]: at=info method=GET path="/_dash-component-suites/dash_renderer/prop-types@15.7.2.min.js?v=1.0.0&m=1564743930" host=hours-estimate.herokuapp.com request_id=4784ac4c-cf89-443c-8ebb-65e49ec71f78 fwd="70.161.148.47" dyno=web.1 connect=0ms service=3ms status=200 bytes=1053 protocol=http
2019-08-02T17:03:41.940712+00:00 heroku[router]: at=info method=GET path="/_dash-component-suites/dash_core_components/highlight.pack.js?v=1.0.0&m=1564743936" host=hours-estimate.herokuapp.com request_id=6561a2ff-ff7d-4899-9368-162b602b69fc fwd="70.161.148.47" dyno=web.1 connect=0ms service=17ms status=200 bytes=14314 protocol=http
2019-08-02T17:03:42.081798+00:00 heroku[router]: at=info method=GET path="/_dash-component-suites/dash_core_components/dash_core_components.min.js?v=1.0.0&m=1564743936" host=hours-estimate.herokuapp.com request_id=6cee0cf9-37ff-455e-abb3-50175f80aa0c fwd="70.161.148.47" dyno=web.1 connect=0ms service=74ms status=200 bytes=279930 protocol=http
2019-08-02T17:03:42.070790+00:00 app[web.1]: 10.43.195.122 - - [02/Aug/2019:17:03:42 +0000] "GET /_dash-component-suites/dash_core_components/dash_core_components.min.js?v=1.0.0&m=1564743936 HTTP/1.1" 200 279706 "http://hours-estimate.herokuapp.com/process" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-02T17:03:42.086644+00:00 app[web.1]: 10.7.159.85 - - [02/Aug/2019:17:03:42 +0000] "GET /_dash-component-suites/dash_renderer/dash_renderer.min.js?v=1.0.0&m=1564743930 HTTP/1.1" 200 79167 "http://hours-estimate.herokuapp.com/process" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-02T17:03:42.111798+00:00 app[web.1]: 10.65.83.42 - - [02/Aug/2019:17:03:42 +0000] "GET /_dash-component-suites/dash_core_components/plotly-1.48.3.min.js?v=1.0.0&m=1564743936 HTTP/1.1" 200 918102 "http://hours-estimate.herokuapp.com/process" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-02T17:03:42.091057+00:00 heroku[router]: at=info method=GET path="/_dash-component-suites/dash_renderer/dash_renderer.min.js?v=1.0.0&m=1564743930" host=hours-estimate.herokuapp.com request_id=3ae24aad-dabf-4b5d-a136-e2ab65b6278f fwd="70.161.148.47" dyno=web.1 connect=0ms service=71ms status=200 bytes=79390 protocol=http
2019-08-02T17:03:42.124716+00:00 heroku[router]: at=info method=GET path="/_dash-component-suites/dash_core_components/plotly-1.48.3.min.js?v=1.0.0&m=1564743936" host=hours-estimate.herokuapp.com request_id=cc4f75c1-232d-4fb0-b359-7eaa1fc66859 fwd="70.161.148.47" dyno=web.1 connect=1ms service=202ms status=200 bytes=918326 protocol=http
2019-08-02T17:03:43.761178+00:00 heroku[router]: at=info method=GET path="/_dash-layout" host=hours-estimate.herokuapp.com request_id=c22223ab-06c8-4773-a824-0fcda98821d2 fwd="70.161.148.47" dyno=web.1 connect=0ms service=2ms status=200 bytes=715 protocol=http
2019-08-02T17:03:43.757607+00:00 app[web.1]: 10.65.83.42 - - [02/Aug/2019:17:03:43 +0000] "GET /_dash-layout HTTP/1.1" 200 515 "http://hours-estimate.herokuapp.com/process" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-02T17:03:43.759610+00:00 app[web.1]: 10.43.195.122 - - [02/Aug/2019:17:03:43 +0000] "GET /_dash-dependencies HTTP/1.1" 200 121 "http://hours-estimate.herokuapp.com/process" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-02T17:03:43.761601+00:00 heroku[router]: at=info method=GET path="/_dash-dependencies" host=hours-estimate.herokuapp.com request_id=9479a7b3-281d-4985-b1d5-dfbdbf96d9b3 fwd="70.161.148.47" dyno=web.1 connect=2ms service=2ms status=200 bytes=274 protocol=http
2019-08-02T17:03:44.080668+00:00 heroku[router]: at=info method=POST path="/_dash-update-component" host=hours-estimate.herokuapp.com request_id=8a250787-f713-48f5-87ea-c0e830f0d001 fwd="70.161.148.47" dyno=web.1 connect=1ms service=2ms status=200 bytes=297 protocol=http
2019-08-02T17:03:44.078855+00:00 app[web.1]: 10.43.195.122 - - [02/Aug/2019:17:03:44 +0000] "POST /_dash-update-component HTTP/1.1" 200 144 "http://hours-estimate.herokuapp.com/process" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-02T17:03:44.107317+00:00 app[web.1]: 10.65.83.42 - - [02/Aug/2019:17:03:44 +0000] "POST /_dash-update-component HTTP/1.1" 200 2173 "http://hours-estimate.herokuapp.com/process" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-02T17:03:44.110088+00:00 app[web.1]: 10.43.195.122 - - [02/Aug/2019:17:03:44 +0000] "GET /_favicon.ico?v=1.0.2 HTTP/1.1" 200 15086 "http://hours-estimate.herokuapp.com/process" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-02T17:03:44.112462+00:00 heroku[router]: at=info method=GET path="/_favicon.ico?v=1.0.2" host=hours-estimate.herokuapp.com request_id=4ae9f720-42dd-4efe-88d5-2bebbe9e7bb7 fwd="70.161.148.47" dyno=web.1 connect=0ms service=3ms status=200 bytes=15237 protocol=http
2019-08-02T17:03:44.110739+00:00 heroku[router]: at=info method=POST path="/_dash-update-component" host=hours-estimate.herokuapp.com request_id=d7373357-9fd7-41ee-bd30-4930cc10e3f4 fwd="70.161.148.47" dyno=web.1 connect=0ms service=4ms status=200 bytes=2374 protocol=http
2019-08-02T17:03:46.999866+00:00 heroku[router]: at=info method=POST path="/_dash-update-component" host=hours-estimate.herokuapp.com request_id=834a7158-387d-40de-a30b-16f7d3e6f252 fwd="70.161.148.47" dyno=web.1 connect=0ms service=3ms status=200 bytes=631 protocol=http
2019-08-02T17:03:46.997990+00:00 app[web.1]: 10.43.195.122 - - [02/Aug/2019:17:03:46 +0000] "POST /_dash-update-component HTTP/1.1" 200 478 "http://hours-estimate.herokuapp.com/predictions" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-02T17:03:50.108326+00:00 app[web.1]: 10.43.195.122 - - [02/Aug/2019:17:03:50 +0000] "POST /_dash-update-component HTTP/1.1" 200 3111 "http://hours-estimate.herokuapp.com/insights" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-02T17:03:50.110254+00:00 heroku[router]: at=info method=POST path="/_dash-update-component" host=hours-estimate.herokuapp.com request_id=d2048486-8e93-4cef-b064-a5b8193bae91 fwd="70.161.148.47" dyno=web.1 connect=1ms service=5ms status=200 bytes=3312 protocol=http
2019-08-02T17:03:56.038024+00:00 heroku[router]: at=info method=POST path="/_dash-update-component" host=hours-estimate.herokuapp.com request_id=2d9b7590-6d03-46c5-bf3c-4652dfcf0071 fwd="70.161.148.47" dyno=web.1 connect=1ms service=4ms status=200 bytes=2374 protocol=http
2019-08-02T17:03:56.036251+00:00 app[web.1]: 10.43.195.122 - - [02/Aug/2019:17:03:56 +0000] "POST /_dash-update-component HTTP/1.1" 200 2173 "http://hours-estimate.herokuapp.com/process" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-02T17:04:00.783373+00:00 app[web.1]: 10.43.195.122 - - [02/Aug/2019:17:04:00 +0000] "POST /_dash-update-component HTTP/1.1" 200 478 "http://hours-estimate.herokuapp.com/predictions" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-02T17:04:00.785291+00:00 heroku[router]: at=info method=POST path="/_dash-update-component" host=hours-estimate.herokuapp.com request_id=e4b862e7-a3d2-4f9d-b7e7-de11250dc424 fwd="70.161.148.47" dyno=web.1 connect=0ms service=2ms status=200 bytes=631 protocol=http
2019-08-02T17:04:39.520732+00:00 heroku[router]: at=info method=POST path="/_dash-update-component" host=hours-estimate.herokuapp.com request_id=5cc9337a-8c3b-4ed7-b733-310855bb7702 fwd="97.79.221.219" dyno=web.1 connect=1ms service=141ms status=200 bytes=72899 protocol=https
2019-08-02T17:04:39.519062+00:00 app[web.1]: 10.47.226.22 - - [02/Aug/2019:17:04:39 +0000] "POST /_dash-update-component HTTP/1.1" 200 72697 "https://hours-estimate.herokuapp.com/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-02T17:04:54.851019+00:00 heroku[router]: at=info method=GET path="/" host=hours-estimate.herokuapp.com request_id=4969fe64-f719-45ff-b00c-377f88431b9c fwd="70.161.148.47" dyno=web.1 connect=0ms service=3ms status=200 bytes=886 protocol=http
2019-08-02T17:04:54.994346+00:00 heroku[router]: at=info method=GET path="/_dash-component-suites/dash_core_components/highlight.pack.js?v=1.0.0&m=1564743936" host=hours-estimate.herokuapp.com request_id=f348e040-e11f-4678-9d97-282e68b0aff6 fwd="70.161.148.47" dyno=web.1 connect=0ms service=10ms status=200 bytes=14314 protocol=http
2019-08-02T17:04:55.003692+00:00 heroku[router]: at=info method=GET path="/_dash-component-suites/dash_html_components/dash_html_components.min.js?v=1.0.0&m=1564743930" host=hours-estimate.herokuapp.com request_id=ede6237a-95af-468f-b08f-46d4c58b1c1e fwd="70.161.148.47" dyno=web.1 connect=0ms service=20ms status=200 bytes=19125 protocol=http
2019-08-02T17:04:54.960489+00:00 heroku[router]: at=info method=GET path="/_dash-component-suites/dash_renderer/react-dom@16.8.6.min.js?v=1.0.0&m=1564743930" host=hours-estimate.herokuapp.com request_id=1c5dbb48-e196-4261-a640-0ee9901b97b9 fwd="70.161.148.47" dyno=web.1 connect=0ms service=11ms status=200 bytes=35066 protocol=http
2019-08-02T17:04:54.849325+00:00 app[web.1]: 10.43.195.122 - - [02/Aug/2019:17:04:54 +0000] "GET / HTTP/1.1" 200 678 "-" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-02T17:04:54.949995+00:00 app[web.1]: 10.43.195.122 - - [02/Aug/2019:17:04:54 +0000] "GET /_dash-component-suites/dash_renderer/react@16.8.6.min.js?v=1.0.0&m=1564743930 HTTP/1.1" 200 4888 "http://hours-estimate.herokuapp.com/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-02T17:04:54.958575+00:00 app[web.1]: 10.47.180.215 - - [02/Aug/2019:17:04:54 +0000] "GET /_dash-component-suites/dash_renderer/react-dom@16.8.6.min.js?v=1.0.0&m=1564743930 HTTP/1.1" 200 34843 "http://hours-estimate.herokuapp.com/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-02T17:04:54.983841+00:00 app[web.1]: 10.43.195.122 - - [02/Aug/2019:17:04:54 +0000] "GET /_dash-component-suites/dash_bootstrap_components/_components/dash_bootstrap_components.min.js?v=0.7.0&m=1564743930 HTTP/1.1" 200 45782 "http://hours-estimate.herokuapp.com/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-02T17:04:54.987827+00:00 app[web.1]: 10.69.178.208 - - [02/Aug/2019:17:04:54 +0000] "GET /_dash-component-suites/dash_renderer/prop-types@15.7.2.min.js?v=1.0.0&m=1564743930 HTTP/1.1" 200 832 "http://hours-estimate.herokuapp.com/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-02T17:04:54.993497+00:00 app[web.1]: 10.65.239.45 - - [02/Aug/2019:17:04:54 +0000] "GET /_dash-component-suites/dash_core_components/highlight.pack.js?v=1.0.0&m=1564743936 HTTP/1.1" 200 14091 "http://hours-estimate.herokuapp.com/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-02T17:04:55.004220+00:00 app[web.1]: 10.99.237.66 - - [02/Aug/2019:17:04:55 +0000] "GET /_dash-component-suites/dash_html_components/dash_html_components.min.js?v=1.0.0&m=1564743930 HTTP/1.1" 200 18902 "http://hours-estimate.herokuapp.com/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-02T17:04:55.093000+00:00 app[web.1]: 10.47.180.215 - - [02/Aug/2019:17:04:55 +0000] "GET /_dash-component-suites/dash_core_components/dash_core_components.min.js?v=1.0.0&m=1564743936 HTTP/1.1" 200 279706 "http://hours-estimate.herokuapp.com/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-02T17:04:54.988044+00:00 heroku[router]: at=info method=GET path="/_dash-component-suites/dash_renderer/prop-types@15.7.2.min.js?v=1.0.0&m=1564743930" host=hours-estimate.herokuapp.com request_id=f8d50b00-b3a3-4db2-b3ad-b9281511310d fwd="70.161.148.47" dyno=web.1 connect=0ms service=10ms status=200 bytes=1053 protocol=http
2019-08-02T17:04:55.111522+00:00 heroku[router]: at=info method=GET path="/_dash-component-suites/dash_renderer/dash_renderer.min.js?v=1.0.0&m=1564743930" host=hours-estimate.herokuapp.com request_id=f287cc77-6caa-41e4-980f-affdca13263b fwd="70.161.148.47" dyno=web.1 connect=0ms service=52ms status=200 bytes=79390 protocol=http
2019-08-02T17:04:55.146016+00:00 heroku[router]: at=info method=GET path="/_dash-component-suites/dash_core_components/plotly-1.48.3.min.js?v=1.0.0&m=1564743936" host=hours-estimate.herokuapp.com request_id=9ee01193-8d2a-402e-8782-d9d4ea8c5ea2 fwd="70.161.148.47" dyno=web.1 connect=0ms service=161ms status=200 bytes=918326 protocol=http
2019-08-02T17:04:54.951961+00:00 heroku[router]: at=info method=GET path="/_dash-component-suites/dash_renderer/react@16.8.6.min.js?v=1.0.0&m=1564743930" host=hours-estimate.herokuapp.com request_id=e73e49e0-23ec-4383-8690-72a9fb4277f9 fwd="70.161.148.47" dyno=web.1 connect=0ms service=2ms status=200 bytes=5110 protocol=http
2019-08-02T17:04:54.987483+00:00 heroku[router]: at=info method=GET path="/_dash-component-suites/dash_bootstrap_components/_components/dash_bootstrap_components.min.js?v=0.7.0&m=1564743930" host=hours-estimate.herokuapp.com request_id=e8eba0af-fce4-424f-b84a-d2eaf8bd85ad fwd="70.161.148.47" dyno=web.1 connect=0ms service=10ms status=200 bytes=46005 protocol=http
2019-08-02T17:04:55.108669+00:00 app[web.1]: 10.69.178.208 - - [02/Aug/2019:17:04:55 +0000] "GET /_dash-component-suites/dash_renderer/dash_renderer.min.js?v=1.0.0&m=1564743930 HTTP/1.1" 200 79167 "http://hours-estimate.herokuapp.com/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-02T17:04:55.131290+00:00 app[web.1]: 10.7.159.85 - - [02/Aug/2019:17:04:55 +0000] "GET /_dash-component-suites/dash_core_components/plotly-1.48.3.min.js?v=1.0.0&m=1564743936 HTTP/1.1" 200 918102 "http://hours-estimate.herokuapp.com/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-02T17:04:55.103433+00:00 heroku[router]: at=info method=GET path="/_dash-component-suites/dash_core_components/dash_core_components.min.js?v=1.0.0&m=1564743936" host=hours-estimate.herokuapp.com request_id=34ff57ab-0b83-4452-ad18-1d6a4c3d7610 fwd="70.161.148.47" dyno=web.1 connect=1ms service=57ms status=200 bytes=279930 protocol=http
2019-08-02T17:04:56.128862+00:00 heroku[router]: at=info method=GET path="/_dash-dependencies" host=hours-estimate.herokuapp.com request_id=f116a5f5-06f6-4909-b3c9-793cfa6bc023 fwd="70.161.148.47" dyno=web.1 connect=0ms service=2ms status=200 bytes=274 protocol=http
2019-08-02T17:04:56.130560+00:00 heroku[router]: at=info method=GET path="/_dash-layout" host=hours-estimate.herokuapp.com request_id=4ac9110e-8d74-4822-813e-30579f1ae806 fwd="70.161.148.47" dyno=web.1 connect=0ms service=2ms status=200 bytes=715 protocol=http
2019-08-02T17:04:56.128168+00:00 app[web.1]: 10.7.159.85 - - [02/Aug/2019:17:04:56 +0000] "GET /_dash-layout HTTP/1.1" 200 515 "http://hours-estimate.herokuapp.com/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-02T17:04:56.128197+00:00 app[web.1]: 10.47.180.215 - - [02/Aug/2019:17:04:56 +0000] "GET /_dash-dependencies HTTP/1.1" 200 121 "http://hours-estimate.herokuapp.com/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-02T17:04:56.352092+00:00 app[web.1]: 10.7.159.85 - - [02/Aug/2019:17:04:56 +0000] "POST /_dash-update-component HTTP/1.1" 200 144 "http://hours-estimate.herokuapp.com/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-02T17:04:56.354687+00:00 heroku[router]: at=info method=POST path="/_dash-update-component" host=hours-estimate.herokuapp.com request_id=7c760853-4190-4148-8f68-e70c3c821462 fwd="70.161.148.47" dyno=web.1 connect=0ms service=2ms status=200 bytes=297 protocol=http
2019-08-02T17:04:56.537233+00:00 app[web.1]: 10.7.159.85 - - [02/Aug/2019:17:04:56 +0000] "POST /_dash-update-component HTTP/1.1" 200 72697 "http://hours-estimate.herokuapp.com/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-02T17:04:56.545405+00:00 heroku[router]: at=info method=POST path="/_dash-update-component" host=hours-estimate.herokuapp.com request_id=29f7aafa-1cd7-4115-9d9b-a203d33fcb9f fwd="70.161.148.47" dyno=web.1 connect=0ms service=125ms status=200 bytes=72899 protocol=http
2019-08-02T17:04:58.642069+00:00 heroku[router]: at=info method=POST path="/_dash-update-component" host=hours-estimate.herokuapp.com request_id=ef8d68ae-a8d0-4f7e-8c3c-bccc4302892a fwd="70.161.148.47" dyno=web.1 connect=1ms service=2ms status=200 bytes=631 protocol=http
2019-08-02T17:04:58.639751+00:00 app[web.1]: 10.7.159.85 - - [02/Aug/2019:17:04:58 +0000] "POST /_dash-update-component HTTP/1.1" 200 478 "http://hours-estimate.herokuapp.com/predictions" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-02T17:04:59.618251+00:00 heroku[router]: at=info method=POST path="/_dash-update-component" host=hours-estimate.herokuapp.com request_id=3b6e5f95-ed23-463a-b6df-6299023592b5 fwd="97.79.221.219" dyno=web.1 connect=4ms service=7ms status=200 bytes=631 protocol=https
2019-08-02T17:04:59.618969+00:00 app[web.1]: 10.47.226.22 - - [02/Aug/2019:17:04:59 +0000] "POST /_dash-update-component HTTP/1.1" 200 478 "https://hours-estimate.herokuapp.com/predictions" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-02T17:05:01.102468+00:00 app[web.1]: 10.7.159.85 - - [02/Aug/2019:17:05:01 +0000] "GET /predictions HTTP/1.1" 200 678 "-" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-02T17:05:01.172952+00:00 app[web.1]: 10.7.159.85 - - [02/Aug/2019:17:05:01 +0000] "GET /_dash-component-suites/dash_renderer/react@16.8.6.min.js?v=1.0.0&m=1564743930 HTTP/1.1" 200 4888 "http://hours-estimate.herokuapp.com/predictions" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-02T17:05:01.176858+00:00 app[web.1]: 10.69.178.208 - - [02/Aug/2019:17:05:01 +0000] "GET /_dash-component-suites/dash_renderer/prop-types@15.7.2.min.js?v=1.0.0&m=1564743930 HTTP/1.1" 200 832 "http://hours-estimate.herokuapp.com/predictions" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-02T17:05:01.182063+00:00 app[web.1]: 10.43.195.122 - - [02/Aug/2019:17:05:01 +0000] "GET /_dash-component-suites/dash_html_components/dash_html_components.min.js?v=1.0.0&m=1564743930 HTTP/1.1" 200 18902 "http://hours-estimate.herokuapp.com/predictions" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-02T17:05:01.188136+00:00 app[web.1]: 10.99.237.66 - - [02/Aug/2019:17:05:01 +0000] "GET /_dash-component-suites/dash_bootstrap_components/_components/dash_bootstrap_components.min.js?v=0.7.0&m=1564743930 HTTP/1.1" 200 45782 "http://hours-estimate.herokuapp.com/predictions" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-02T17:05:01.191404+00:00 app[web.1]: 10.47.180.215 - - [02/Aug/2019:17:05:01 +0000] "GET /_dash-component-suites/dash_renderer/react-dom@16.8.6.min.js?v=1.0.0&m=1564743930 HTTP/1.1" 200 34843 "http://hours-estimate.herokuapp.com/predictions" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-02T17:05:01.206813+00:00 app[web.1]: 10.47.226.22 - - [02/Aug/2019:17:05:01 +0000] "POST /_dash-update-component HTTP/1.1" 200 3111 "https://hours-estimate.herokuapp.com/insights" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-02T17:05:01.342081+00:00 app[web.1]: 10.65.239.45 - - [02/Aug/2019:17:05:01 +0000] "GET /_dash-component-suites/dash_core_components/plotly-1.48.3.min.js?v=1.0.0&m=1564743936 HTTP/1.1" 200 918102 "http://hours-estimate.herokuapp.com/predictions" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-02T17:05:01.346074+00:00 app[web.1]: 10.69.178.208 - - [02/Aug/2019:17:05:01 +0000] "GET /_dash-component-suites/dash_core_components/highlight.pack.js?v=1.0.0&m=1564743936 HTTP/1.1" 200 14091 "http://hours-estimate.herokuapp.com/predictions" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-02T17:05:01.346440+00:00 app[web.1]: 10.7.159.85 - - [02/Aug/2019:17:05:01 +0000] "GET /_dash-component-suites/dash_core_components/dash_core_components.min.js?v=1.0.0&m=1564743936 HTTP/1.1" 200 279706 "http://hours-estimate.herokuapp.com/predictions" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-02T17:05:01.104826+00:00 heroku[router]: at=info method=GET path="/predictions" host=hours-estimate.herokuapp.com request_id=1ee36a99-ae59-48ca-8841-db7d05f5a166 fwd="70.161.148.47" dyno=web.1 connect=0ms service=2ms status=200 bytes=886 protocol=http
2019-08-02T17:05:01.175559+00:00 heroku[router]: at=info method=GET path="/_dash-component-suites/dash_renderer/react@16.8.6.min.js?v=1.0.0&m=1564743930" host=hours-estimate.herokuapp.com request_id=c184cbb5-dc08-40eb-89eb-f5d029f653bf fwd="70.161.148.47" dyno=web.1 connect=1ms service=3ms status=200 bytes=5110 protocol=http
2019-08-02T17:05:01.347962+00:00 heroku[router]: at=info method=GET path="/_dash-component-suites/dash_core_components/highlight.pack.js?v=1.0.0&m=1564743936" host=hours-estimate.herokuapp.com request_id=fff30080-810c-4475-8119-f44ce1e80040 fwd="70.161.148.47" dyno=web.1 connect=1ms service=56ms status=200 bytes=14314 protocol=http
2019-08-02T17:05:01.206054+00:00 heroku[router]: at=info method=POST path="/_dash-update-component" host=hours-estimate.herokuapp.com request_id=7707b606-18ce-4882-b0ab-bd691e6c53ae fwd="97.79.221.219" dyno=web.1 connect=1ms service=10ms status=200 bytes=3312 protocol=https
2019-08-02T17:05:01.184817+00:00 heroku[router]: at=info method=GET path="/_dash-component-suites/dash_html_components/dash_html_components.min.js?v=1.0.0&m=1564743930" host=hours-estimate.herokuapp.com request_id=802d66b5-b9b2-4ef6-9245-b36cbcc0a5c0 fwd="70.161.148.47" dyno=web.1 connect=1ms service=9ms status=200 bytes=19125 protocol=http
2019-08-02T17:05:01.193250+00:00 heroku[router]: at=info method=GET path="/_dash-component-suites/dash_renderer/react-dom@16.8.6.min.js?v=1.0.0&m=1564743930" host=hours-estimate.herokuapp.com request_id=46198209-2d3e-4468-bd6c-c31baa003fe8 fwd="70.161.148.47" dyno=web.1 connect=0ms service=17ms status=200 bytes=35066 protocol=http
2019-08-02T17:05:01.191019+00:00 heroku[router]: at=info method=GET path="/_dash-component-suites/dash_bootstrap_components/_components/dash_bootstrap_components.min.js?v=0.7.0&m=1564743930" host=hours-estimate.herokuapp.com request_id=2e1acd6f-9e9d-4fa1-b823-fce9e91a97ff fwd="70.161.148.47" dyno=web.1 connect=0ms service=16ms status=200 bytes=46005 protocol=http
2019-08-02T17:05:01.177916+00:00 heroku[router]: at=info method=GET path="/_dash-component-suites/dash_renderer/prop-types@15.7.2.min.js?v=1.0.0&m=1564743930" host=hours-estimate.herokuapp.com request_id=e5a7eceb-66a3-45ea-9f01-d0f6612de89c fwd="70.161.148.47" dyno=web.1 connect=0ms service=2ms status=200 bytes=1053 protocol=http
2019-08-02T17:05:01.373738+00:00 heroku[router]: at=info method=GET path="/_dash-component-suites/dash_core_components/plotly-1.48.3.min.js?v=1.0.0&m=1564743936" host=hours-estimate.herokuapp.com request_id=bc362b2f-1812-4ff8-8abe-a22a42f7916a fwd="70.161.148.47" dyno=web.1 connect=0ms service=193ms status=200 bytes=918326 protocol=http
2019-08-02T17:05:01.367907+00:00 heroku[router]: at=info method=GET path="/_dash-component-suites/dash_renderer/dash_renderer.min.js?v=1.0.0&m=1564743930" host=hours-estimate.herokuapp.com request_id=76b6a393-d5d6-4581-bc92-894c33fef20f fwd="70.161.148.47" dyno=web.1 connect=0ms service=71ms status=200 bytes=79390 protocol=http
2019-08-02T17:05:01.366141+00:00 heroku[router]: at=info method=GET path="/_dash-component-suites/dash_core_components/dash_core_components.min.js?v=1.0.0&m=1564743936" host=hours-estimate.herokuapp.com request_id=a6bb70bf-8f86-4ca0-8134-a1cb6ac4e474 fwd="70.161.148.47" dyno=web.1 connect=0ms service=72ms status=200 bytes=279930 protocol=http
2019-08-02T17:05:01.360553+00:00 app[web.1]: 10.43.195.122 - - [02/Aug/2019:17:05:01 +0000] "GET /_dash-component-suites/dash_renderer/dash_renderer.min.js?v=1.0.0&m=1564743930 HTTP/1.1" 200 79167 "http://hours-estimate.herokuapp.com/predictions" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-02T17:05:02.449006+00:00 heroku[router]: at=info method=GET path="/_dash-layout" host=hours-estimate.herokuapp.com request_id=1d51b33c-95cc-43bb-b131-97f2882b8c65 fwd="70.161.148.47" dyno=web.1 connect=0ms service=4ms status=200 bytes=715 protocol=http
2019-08-02T17:05:02.447312+00:00 heroku[router]: at=info method=GET path="/_dash-dependencies" host=hours-estimate.herokuapp.com request_id=0d7843d4-e4f6-47ec-8be2-56908c95a997 fwd="70.161.148.47" dyno=web.1 connect=0ms service=2ms status=200 bytes=274 protocol=http
2019-08-02T17:05:02.515967+00:00 heroku[router]: at=info method=POST path="/_dash-update-component" host=hours-estimate.herokuapp.com request_id=b87026c5-442c-4858-ab08-5dc3de8616db fwd="70.161.148.47" dyno=web.1 connect=0ms service=2ms status=200 bytes=297 protocol=http
2019-08-02T17:05:02.444977+00:00 app[web.1]: 10.7.159.85 - - [02/Aug/2019:17:05:02 +0000] "GET /_dash-dependencies HTTP/1.1" 200 121 "http://hours-estimate.herokuapp.com/predictions" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-02T17:05:02.447428+00:00 app[web.1]: 10.65.239.45 - - [02/Aug/2019:17:05:02 +0000] "GET /_dash-layout HTTP/1.1" 200 515 "http://hours-estimate.herokuapp.com/predictions" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-02T17:05:02.513373+00:00 app[web.1]: 10.7.159.85 - - [02/Aug/2019:17:05:02 +0000] "POST /_dash-update-component HTTP/1.1" 200 144 "http://hours-estimate.herokuapp.com/predictions" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-02T17:05:02.522862+00:00 app[web.1]: 10.65.239.45 - - [02/Aug/2019:17:05:02 +0000] "POST /_dash-update-component HTTP/1.1" 200 478 "http://hours-estimate.herokuapp.com/predictions" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-02T17:05:02.526936+00:00 app[web.1]: 10.43.195.122 - - [02/Aug/2019:17:05:02 +0000] "GET /_favicon.ico?v=1.0.2 HTTP/1.1" 200 15086 "http://hours-estimate.herokuapp.com/predictions" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-02T17:05:02.524571+00:00 heroku[router]: at=info method=POST path="/_dash-update-component" host=hours-estimate.herokuapp.com request_id=a44aeb1d-2b1c-4530-a40d-caf43a5645e9 fwd="70.161.148.47" dyno=web.1 connect=0ms service=2ms status=200 bytes=631 protocol=http
2019-08-02T17:05:02.529306+00:00 heroku[router]: at=info method=GET path="/_favicon.ico?v=1.0.2" host=hours-estimate.herokuapp.com request_id=997bcb59-9bd6-4836-ac9f-24442a5afb49 fwd="70.161.148.47" dyno=web.1 connect=0ms service=2ms status=200 bytes=15237 protocol=http
2019-08-02T17:05:03.692025+00:00 heroku[router]: at=info method=GET path="/_dash-component-suites/dash_core_components/dash_core_components.min.js?v=1.0.0&m=1564743936" host=hours-estimate.herokuapp.com request_id=9b48712c-e750-4f2c-8990-0f2e77cfce9f fwd="70.161.148.47" dyno=web.1 connect=0ms service=60ms status=200 bytes=279930 protocol=http
2019-08-02T17:05:03.600334+00:00 heroku[router]: at=info method=GET path="/_dash-component-suites/dash_renderer/prop-types@15.7.2.min.js?v=1.0.0&m=1564743930" host=hours-estimate.herokuapp.com request_id=36304feb-2e41-45c7-ab3a-72efdb93577d fwd="70.161.148.47" dyno=web.1 connect=0ms service=1ms status=200 bytes=1053 protocol=http
2019-08-02T17:05:03.509904+00:00 app[web.1]: 10.43.195.122 - - [02/Aug/2019:17:05:03 +0000] "GET /predictions HTTP/1.1" 200 678 "-" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-02T17:05:03.594467+00:00 app[web.1]: 10.43.195.122 - - [02/Aug/2019:17:05:03 +0000] "GET /_dash-component-suites/dash_renderer/react@16.8.6.min.js?v=1.0.0&m=1564743930 HTTP/1.1" 200 4888 "http://hours-estimate.herokuapp.com/predictions" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-02T17:05:03.597864+00:00 app[web.1]: 10.7.159.85 - - [02/Aug/2019:17:05:03 +0000] "GET /_dash-component-suites/dash_renderer/prop-types@15.7.2.min.js?v=1.0.0&m=1564743930 HTTP/1.1" 200 832 "http://hours-estimate.herokuapp.com/predictions" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-02T17:05:03.603739+00:00 app[web.1]: 10.65.239.45 - - [02/Aug/2019:17:05:03 +0000] "GET /_dash-component-suites/dash_renderer/react-dom@16.8.6.min.js?v=1.0.0&m=1564743930 HTTP/1.1" 200 34843 "http://hours-estimate.herokuapp.com/predictions" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-02T17:05:03.607227+00:00 app[web.1]: 10.47.180.215 - - [02/Aug/2019:17:05:03 +0000] "GET /_dash-component-suites/dash_html_components/dash_html_components.min.js?v=1.0.0&m=1564743930 HTTP/1.1" 200 18902 "http://hours-estimate.herokuapp.com/predictions" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-02T17:05:03.616713+00:00 app[web.1]: 10.69.178.208 - - [02/Aug/2019:17:05:03 +0000] "GET /_dash-component-suites/dash_bootstrap_components/_components/dash_bootstrap_components.min.js?v=0.7.0&m=1564743930 HTTP/1.1" 200 45782 "http://hours-estimate.herokuapp.com/predictions" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-02T17:05:03.632107+00:00 app[web.1]: 10.43.195.122 - - [02/Aug/2019:17:05:03 +0000] "GET /_dash-component-suites/dash_core_components/highlight.pack.js?v=1.0.0&m=1564743936 HTTP/1.1" 200 14091 "http://hours-estimate.herokuapp.com/predictions" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-02T17:05:03.679979+00:00 app[web.1]: 10.7.159.85 - - [02/Aug/2019:17:05:03 +0000] "GET /_dash-component-suites/dash_core_components/dash_core_components.min.js?v=1.0.0&m=1564743936 HTTP/1.1" 200 279706 "http://hours-estimate.herokuapp.com/predictions" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-02T17:05:03.739087+00:00 app[web.1]: 10.65.239.45 - - [02/Aug/2019:17:05:03 +0000] "GET /_dash-component-suites/dash_renderer/dash_renderer.min.js?v=1.0.0&m=1564743930 HTTP/1.1" 200 79167 "http://hours-estimate.herokuapp.com/predictions" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-02T17:05:03.755119+00:00 app[web.1]: 10.69.178.208 - - [02/Aug/2019:17:05:03 +0000] "GET /predictions HTTP/1.1" 200 678 "-" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-02T17:05:03.608591+00:00 heroku[router]: at=info method=GET path="/_dash-component-suites/dash_html_components/dash_html_components.min.js?v=1.0.0&m=1564743930" host=hours-estimate.herokuapp.com request_id=9f20982c-0322-4a34-be1e-09d74965e368 fwd="70.161.148.47" dyno=web.1 connect=0ms service=7ms status=200 bytes=19125 protocol=http
2019-08-02T17:05:03.511666+00:00 heroku[router]: at=info method=GET path="/predictions" host=hours-estimate.herokuapp.com request_id=81d62e92-0ec6-4c4e-baf5-fcd2759b5abe fwd="70.161.148.47" dyno=web.1 connect=1ms service=3ms status=200 bytes=886 protocol=http
2019-08-02T17:05:03.596237+00:00 heroku[router]: at=info method=GET path="/_dash-component-suites/dash_renderer/react@16.8.6.min.js?v=1.0.0&m=1564743930" host=hours-estimate.herokuapp.com request_id=8af27c4e-e608-4b31-bb99-b7ec5c1d33d2 fwd="70.161.148.47" dyno=web.1 connect=0ms service=2ms status=200 bytes=5110 protocol=http
2019-08-02T17:05:03.636096+00:00 heroku[router]: at=info method=GET path="/_dash-component-suites/dash_core_components/highlight.pack.js?v=1.0.0&m=1564743936" host=hours-estimate.herokuapp.com request_id=bf5e4b25-9f0a-465c-a15b-78d3f1d52faa fwd="70.161.148.47" dyno=web.1 connect=0ms service=6ms status=200 bytes=14314 protocol=http
2019-08-02T17:05:03.606005+00:00 heroku[router]: at=info method=GET path="/_dash-component-suites/dash_renderer/react-dom@16.8.6.min.js?v=1.0.0&m=1564743930" host=hours-estimate.herokuapp.com request_id=3686da26-96e7-4df0-a625-dd338ebd3d9f fwd="70.161.148.47" dyno=web.1 connect=0ms service=7ms status=200 bytes=35066 protocol=http
2019-08-02T17:05:03.742640+00:00 heroku[router]: at=info method=GET path="/_dash-component-suites/dash_renderer/dash_renderer.min.js?v=1.0.0&m=1564743930" host=hours-estimate.herokuapp.com request_id=3ff734b5-9877-47c6-a8a0-00cd340047fa fwd="70.161.148.47" dyno=web.1 connect=0ms service=37ms status=200 bytes=79390 protocol=http
2019-08-02T17:05:03.619225+00:00 heroku[router]: at=info method=GET path="/_dash-component-suites/dash_bootstrap_components/_components/dash_bootstrap_components.min.js?v=0.7.0&m=1564743930" host=hours-estimate.herokuapp.com request_id=6455c0cd-e0f8-4554-a6aa-09fcbbeca603 fwd="70.161.148.47" dyno=web.1 connect=1ms service=17ms status=200 bytes=46005 protocol=http
2019-08-02T17:05:03.877506+00:00 heroku[router]: at=info method=GET path="/_dash-component-suites/dash_bootstrap_components/_components/dash_bootstrap_components.min.js?v=0.7.0&m=1564743930" host=hours-estimate.herokuapp.com request_id=f8de83d0-fc4f-409f-a3c1-d1f6f21105fc fwd="70.161.148.47" dyno=web.1 connect=0ms service=15ms status=200 bytes=46005 protocol=http
2019-08-02T17:05:03.755513+00:00 heroku[router]: at=info method=GET path="/predictions" host=hours-estimate.herokuapp.com request_id=cc2e3439-976b-4c35-81e4-42f3487930dc fwd="70.161.148.47" dyno=web.1 connect=0ms service=6ms status=200 bytes=886 protocol=http
2019-08-02T17:05:03.865857+00:00 heroku[router]: at=info method=GET path="/_dash-component-suites/dash_renderer/react-dom@16.8.6.min.js?v=1.0.0&m=1564743930" host=hours-estimate.herokuapp.com request_id=1a75a55d-869e-48f6-9cb4-ef5c528eb412 fwd="70.161.148.47" dyno=web.1 connect=0ms service=9ms status=200 bytes=35066 protocol=http
2019-08-02T17:05:03.791905+00:00 heroku[router]: at=info method=GET path="/_dash-component-suites/dash_core_components/plotly-1.48.3.min.js?v=1.0.0&m=1564743936" host=hours-estimate.herokuapp.com request_id=cc7e94e2-76db-441b-8e45-e2bd6d5c10b6 fwd="70.161.148.47" dyno=web.1 connect=0ms service=190ms status=200 bytes=918326 protocol=http
2019-08-02T17:05:03.777767+00:00 app[web.1]: 10.99.237.66 - - [02/Aug/2019:17:05:03 +0000] "GET /_dash-component-suites/dash_core_components/plotly-1.48.3.min.js?v=1.0.0&m=1564743936 HTTP/1.1" 200 918102 "http://hours-estimate.herokuapp.com/predictions" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-02T17:05:03.851617+00:00 app[web.1]: 10.65.239.45 - - [02/Aug/2019:17:05:03 +0000] "GET /_dash-component-suites/dash_renderer/react@16.8.6.min.js?v=1.0.0&m=1564743930 HTTP/1.1" 200 4888 "http://hours-estimate.herokuapp.com/predictions" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-02T17:05:03.864285+00:00 app[web.1]: 10.69.178.208 - - [02/Aug/2019:17:05:03 +0000] "GET /_dash-component-suites/dash_renderer/react-dom@16.8.6.min.js?v=1.0.0&m=1564743930 HTTP/1.1" 200 34843 "http://hours-estimate.herokuapp.com/predictions" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-02T17:05:03.872203+00:00 app[web.1]: 10.47.180.215 - - [02/Aug/2019:17:05:03 +0000] "GET /_dash-component-suites/dash_html_components/dash_html_components.min.js?v=1.0.0&m=1564743930 HTTP/1.1" 200 18902 "http://hours-estimate.herokuapp.com/predictions" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-02T17:05:03.874195+00:00 app[web.1]: 10.43.195.122 - - [02/Aug/2019:17:05:03 +0000] "GET /_dash-component-suites/dash_bootstrap_components/_components/dash_bootstrap_components.min.js?v=0.7.0&m=1564743930 HTTP/1.1" 200 45782 "http://hours-estimate.herokuapp.com/predictions" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-02T17:05:03.874303+00:00 app[web.1]: 10.7.159.85 - - [02/Aug/2019:17:05:03 +0000] "GET /_dash-component-suites/dash_renderer/prop-types@15.7.2.min.js?v=1.0.0&m=1564743930 HTTP/1.1" 200 832 "http://hours-estimate.herokuapp.com/predictions" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-02T17:05:03.920847+00:00 app[web.1]: 10.101.245.49 - - [02/Aug/2019:17:05:03 +0000] "GET /predictions HTTP/1.1" 200 678 "-" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-02T17:05:03.936478+00:00 app[web.1]: 10.65.239.45 - - [02/Aug/2019:17:05:03 +0000] "GET /_dash-component-suites/dash_core_components/highlight.pack.js?v=1.0.0&m=1564743936 HTTP/1.1" 200 14091 "http://hours-estimate.herokuapp.com/predictions" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-02T17:05:03.993525+00:00 app[web.1]: 10.47.180.215 - - [02/Aug/2019:17:05:03 +0000] "GET /_dash-component-suites/dash_core_components/dash_core_components.min.js?v=1.0.0&m=1564743936 HTTP/1.1" 200 279706 "http://hours-estimate.herokuapp.com/predictions" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-02T17:05:04.011886+00:00 app[web.1]: 10.69.178.208 - - [02/Aug/2019:17:05:04 +0000] "GET /_dash-component-suites/dash_renderer/dash_renderer.min.js?v=1.0.0&m=1564743930 HTTP/1.1" 200 79167 "http://hours-estimate.herokuapp.com/predictions" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-02T17:05:04.015597+00:00 app[web.1]: 10.65.239.45 - - [02/Aug/2019:17:05:04 +0000] "GET /_dash-component-suites/dash_renderer/react@16.8.6.min.js?v=1.0.0&m=1564743930 HTTP/1.1" 200 4888 "http://hours-estimate.herokuapp.com/predictions" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-02T17:05:04.018030+00:00 app[web.1]: 10.43.195.122 - - [02/Aug/2019:17:05:04 +0000] "GET /_dash-component-suites/dash_renderer/prop-types@15.7.2.min.js?v=1.0.0&m=1564743930 HTTP/1.1" 200 832 "http://hours-estimate.herokuapp.com/predictions" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-02T17:05:04.025202+00:00 app[web.1]: 10.101.245.49 - - [02/Aug/2019:17:05:04 +0000] "GET /_dash-component-suites/dash_renderer/react-dom@16.8.6.min.js?v=1.0.0&m=1564743930 HTTP/1.1" 200 34843 "http://hours-estimate.herokuapp.com/predictions" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-02T17:05:03.873800+00:00 heroku[router]: at=info method=GET path="/_dash-component-suites/dash_html_components/dash_html_components.min.js?v=1.0.0&m=1564743930" host=hours-estimate.herokuapp.com request_id=62645fc0-3b77-4877-85c5-9fb91eb4bef7 fwd="70.161.148.47" dyno=web.1 connect=0ms service=12ms status=200 bytes=19125 protocol=http
2019-08-02T17:05:04.029034+00:00 heroku[router]: at=info method=GET path="/_dash-component-suites/dash_renderer/react-dom@16.8.6.min.js?v=1.0.0&m=1564743930" host=hours-estimate.herokuapp.com request_id=8909eb10-e580-4de5-ad79-b3a21e3d23dd fwd="70.161.148.47" dyno=web.1 connect=0ms service=10ms status=200 bytes=35066 protocol=http
2019-08-02T17:05:03.853139+00:00 heroku[router]: at=info method=GET path="/_dash-component-suites/dash_renderer/react@16.8.6.min.js?v=1.0.0&m=1564743930" host=hours-estimate.herokuapp.com request_id=c5a163f4-d276-43d1-8a87-88e9d6ade2ea fwd="70.161.148.47" dyno=web.1 connect=0ms service=3ms status=200 bytes=5110 protocol=http
2019-08-02T17:05:03.876786+00:00 heroku[router]: at=info method=GET path="/_dash-component-suites/dash_renderer/prop-types@15.7.2.min.js?v=1.0.0&m=1564743930" host=hours-estimate.herokuapp.com request_id=fd7101b7-2837-41d8-8512-ec5f4343863f fwd="70.161.148.47" dyno=web.1 connect=0ms service=13ms status=200 bytes=1053 protocol=http
2019-08-02T17:05:04.063335+00:00 heroku[router]: at=info method=GET path="/_dash-component-suites/dash_html_components/dash_html_components.min.js?v=1.0.0&m=1564743930" host=hours-estimate.herokuapp.com request_id=6aa297bb-078a-4f1a-916e-03dbda35bc23 fwd="70.161.148.47" dyno=web.1 connect=1ms service=19ms status=200 bytes=19125 protocol=http
2019-08-02T17:05:04.059973+00:00 heroku[router]: at=info method=GET path="/_dash-component-suites/dash_bootstrap_components/_components/dash_bootstrap_components.min.js?v=0.7.0&m=1564743930" host=hours-estimate.herokuapp.com request_id=ee4d42cf-1078-4f09-bd05-85bd986a83b4 fwd="70.161.148.47" dyno=web.1 connect=1ms service=13ms status=200 bytes=46005 protocol=http
2019-08-02T17:05:03.923572+00:00 heroku[router]: at=info method=GET path="/predictions" host=hours-estimate.herokuapp.com request_id=eaa828a9-6d1d-437c-9e95-6afd0954019d fwd="70.161.148.47" dyno=web.1 connect=1ms service=3ms status=200 bytes=886 protocol=http
2019-08-02T17:05:04.020129+00:00 heroku[router]: at=info method=GET path="/_dash-component-suites/dash_renderer/prop-types@15.7.2.min.js?v=1.0.0&m=1564743930" host=hours-estimate.herokuapp.com request_id=4c7253aa-351c-41f0-9e0e-360e75643caf fwd="70.161.148.47" dyno=web.1 connect=0ms service=2ms status=200 bytes=1053 protocol=http
2019-08-02T17:05:04.012389+00:00 heroku[router]: sock=client at=warning code=H27 desc="Client Request Interrupted" method=GET path="/_dash-component-suites/dash_renderer/dash_renderer.min.js?v=1.0.0&m=1564743930" host=hours-estimate.herokuapp.com request_id=84dc3483-2079-4fb4-af56-34ddbb1d36b9 fwd="70.161.148.47" dyno=web.1 connect=0ms service=48ms status=499 bytes= protocol=http
2019-08-02T17:05:03.938037+00:00 heroku[router]: at=info method=GET path="/_dash-component-suites/dash_core_components/highlight.pack.js?v=1.0.0&m=1564743936" host=hours-estimate.herokuapp.com request_id=147a7044-54fd-4d79-ac83-a1b4d81d0a2a fwd="70.161.148.47" dyno=web.1 connect=0ms service=8ms status=200 bytes=14314 protocol=http
2019-08-02T17:05:03.999993+00:00 heroku[router]: sock=client at=warning code=H27 desc="Client Request Interrupted" method=GET path="/_dash-component-suites/dash_core_components/dash_core_components.min.js?v=1.0.0&m=1564743936" host=hours-estimate.herokuapp.com request_id=f63dca31-800f-40cd-be2a-8af14e822ed5 fwd="70.161.148.47" dyno=web.1 connect=0ms service=63ms status=499 bytes= protocol=http
2019-08-02T17:05:04.066786+00:00 heroku[router]: at=info method=GET path="/_dash-component-suites/dash_core_components/highlight.pack.js?v=1.0.0&m=1564743936" host=hours-estimate.herokuapp.com request_id=83e4269e-692e-4134-afc3-108369cebd61 fwd="70.161.148.47" dyno=web.1 connect=0ms service=18ms status=200 bytes=14314 protocol=http
2019-08-02T17:05:04.017218+00:00 heroku[router]: at=info method=GET path="/_dash-component-suites/dash_renderer/react@16.8.6.min.js?v=1.0.0&m=1564743930" host=hours-estimate.herokuapp.com request_id=afcc66dd-2e84-4521-b362-7d7757f0e1cd fwd="70.161.148.47" dyno=web.1 connect=1ms service=3ms status=200 bytes=5110 protocol=http
2019-08-02T17:05:04.054166+00:00 app[web.1]: 10.30.67.24 - - [02/Aug/2019:17:05:04 +0000] "GET /_dash-component-suites/dash_bootstrap_components/_components/dash_bootstrap_components.min.js?v=0.7.0&m=1564743930 HTTP/1.1" 200 45782 "http://hours-estimate.herokuapp.com/predictions" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-02T17:05:04.061240+00:00 app[web.1]: 10.30.70.204 - - [02/Aug/2019:17:05:04 +0000] "GET /_dash-component-suites/dash_html_components/dash_html_components.min.js?v=1.0.0&m=1564743930 HTTP/1.1" 200 18902 "http://hours-estimate.herokuapp.com/predictions" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-02T17:05:04.064640+00:00 app[web.1]: 10.43.195.122 - - [02/Aug/2019:17:05:04 +0000] "GET /_dash-component-suites/dash_core_components/highlight.pack.js?v=1.0.0&m=1564743936 HTTP/1.1" 200 14091 "http://hours-estimate.herokuapp.com/predictions" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-02T17:05:04.118391+00:00 app[web.1]: 10.65.239.45 - - [02/Aug/2019:17:05:04 +0000] "GET /_dash-component-suites/dash_core_components/dash_core_components.min.js?v=1.0.0&m=1564743936 HTTP/1.1" 200 279706 "http://hours-estimate.herokuapp.com/predictions" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-02T17:05:04.136019+00:00 app[web.1]: 10.101.245.49 - - [02/Aug/2019:17:05:04 +0000] "GET /_dash-component-suites/dash_renderer/dash_renderer.min.js?v=1.0.0&m=1564743930 HTTP/1.1" 200 79167 "http://hours-estimate.herokuapp.com/predictions" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-02T17:05:04.238532+00:00 app[web.1]: 10.30.55.210 - - [02/Aug/2019:17:05:04 +0000] "GET /_dash-component-suites/dash_core_components/plotly-1.48.3.min.js?v=1.0.0&m=1564743936 HTTP/1.1" 200 918102 "http://hours-estimate.herokuapp.com/predictions" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-02T17:05:04.082571+00:00 heroku[router]: sock=client at=warning code=H27 desc="Client Request Interrupted" method=GET path="/_dash-component-suites/dash_core_components/plotly-1.48.3.min.js?v=1.0.0&m=1564743936" host=hours-estimate.herokuapp.com request_id=571f7fa3-5589-466c-a9d4-38facf0b5b14 fwd="70.161.148.47" dyno=web.1 connect=0ms service=152ms status=499 bytes= protocol=http
2019-08-02T17:05:04.127857+00:00 heroku[router]: at=info method=GET path="/_dash-component-suites/dash_core_components/dash_core_components.min.js?v=1.0.0&m=1564743936" host=hours-estimate.herokuapp.com request_id=0236c510-c609-4a11-b64e-f9319234824a fwd="70.161.148.47" dyno=web.1 connect=0ms service=79ms status=200 bytes=279930 protocol=http
2019-08-02T17:05:04.273425+00:00 heroku[router]: at=info method=GET path="/_dash-component-suites/dash_core_components/plotly-1.48.3.min.js?v=1.0.0&m=1564743936" host=hours-estimate.herokuapp.com request_id=a168d953-e4f5-4de7-95e9-a4f3c316aed9 fwd="70.161.148.47" dyno=web.1 connect=1ms service=222ms status=200 bytes=918326 protocol=http
2019-08-02T17:05:04.141030+00:00 heroku[router]: at=info method=GET path="/_dash-component-suites/dash_renderer/dash_renderer.min.js?v=1.0.0&m=1564743930" host=hours-estimate.herokuapp.com request_id=c389e88e-6512-4a13-9617-b1f3ff09bc6d fwd="70.161.148.47" dyno=web.1 connect=0ms service=68ms status=200 bytes=79390 protocol=http
2019-08-02T17:05:04.777699+00:00 heroku[router]: at=info method=GET path="/_dash-dependencies" host=hours-estimate.herokuapp.com request_id=71f3f028-b150-4bf6-b791-295f29b0a332 fwd="70.161.148.47" dyno=web.1 connect=0ms service=2ms status=200 bytes=274 protocol=http
2019-08-02T17:05:04.866580+00:00 heroku[router]: at=info method=POST path="/_dash-update-component" host=hours-estimate.herokuapp.com request_id=dc56310e-80f9-45a3-ac29-cb1255df0f9b fwd="70.161.148.47" dyno=web.1 connect=0ms service=2ms status=200 bytes=631 protocol=http
2019-08-02T17:05:04.845931+00:00 heroku[router]: at=info method=POST path="/_dash-update-component" host=hours-estimate.herokuapp.com request_id=71be5df3-9ee7-415f-aadf-6780967adcc4 fwd="70.161.148.47" dyno=web.1 connect=0ms service=4ms status=200 bytes=297 protocol=http
2019-08-02T17:05:04.838032+00:00 heroku[router]: at=info method=GET path="/_favicon.ico?v=1.0.2" host=hours-estimate.herokuapp.com request_id=d23965df-652b-48bb-9985-eb8b326f2f8e fwd="70.161.148.47" dyno=web.1 connect=1ms service=4ms status=200 bytes=15237 protocol=http
2019-08-02T17:05:04.776152+00:00 app[web.1]: 10.65.239.45 - - [02/Aug/2019:17:05:04 +0000] "GET /_dash-dependencies HTTP/1.1" 200 121 "http://hours-estimate.herokuapp.com/predictions" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-02T17:05:04.778659+00:00 app[web.1]: 10.30.55.210 - - [02/Aug/2019:17:05:04 +0000] "GET /_dash-layout HTTP/1.1" 200 515 "http://hours-estimate.herokuapp.com/predictions" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-02T17:05:04.837356+00:00 app[web.1]: 10.30.55.210 - - [02/Aug/2019:17:05:04 +0000] "GET /_favicon.ico?v=1.0.2 HTTP/1.1" 200 15086 "http://hours-estimate.herokuapp.com/predictions" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-02T17:05:04.843135+00:00 app[web.1]: 10.65.239.45 - - [02/Aug/2019:17:05:04 +0000] "POST /_dash-update-component HTTP/1.1" 200 144 "http://hours-estimate.herokuapp.com/predictions" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-02T17:05:04.863917+00:00 app[web.1]: 10.101.245.49 - - [02/Aug/2019:17:05:04 +0000] "POST /_dash-update-component HTTP/1.1" 200 478 "http://hours-estimate.herokuapp.com/predictions" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-02T17:05:04.777741+00:00 heroku[router]: at=info method=GET path="/_dash-layout" host=hours-estimate.herokuapp.com request_id=85bb9b37-ebc9-4885-a3f2-d9d6e20ee1a6 fwd="70.161.148.47" dyno=web.1 connect=1ms service=4ms status=200 bytes=715 protocol=http
2019-08-02T17:06:34.418899+00:00 heroku[router]: at=info method=POST path="/_dash-update-component" host=hours-estimate.herokuapp.com request_id=9d41f2fd-cf28-47c3-8b21-311b32b53046 fwd="97.79.221.219" dyno=web.1 connect=1ms service=3ms status=200 bytes=2374 protocol=https
2019-08-02T17:06:34.417146+00:00 app[web.1]: 10.30.71.105 - - [02/Aug/2019:17:06:34 +0000] "POST /_dash-update-component HTTP/1.1" 200 2173 "https://hours-estimate.herokuapp.com/process" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-02T17:07:10.989199+00:00 heroku[router]: at=info method=POST path="/_dash-update-component" host=hours-estimate.herokuapp.com request_id=72391817-2e96-4fb3-9079-7cbcf8c099be fwd="97.79.221.219" dyno=web.1 connect=0ms service=112ms status=200 bytes=72899 protocol=https
2019-08-02T17:07:10.985497+00:00 app[web.1]: 10.30.71.105 - - [02/Aug/2019:17:07:10 +0000] "POST /_dash-update-component HTTP/1.1" 200 72697 "https://hours-estimate.herokuapp.com/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-02T17:07:25.537654+00:00 heroku[router]: at=info method=POST path="/_dash-update-component" host=hours-estimate.herokuapp.com request_id=8ca333e0-9411-4f5c-a4ce-3f3933500ce8 fwd="97.79.221.219" dyno=web.1 connect=0ms service=7ms status=200 bytes=3312 protocol=https
2019-08-02T17:07:25.535955+00:00 app[web.1]: 10.30.71.105 - - [02/Aug/2019:17:07:25 +0000] "POST /_dash-update-component HTTP/1.1" 200 3111 "https://hours-estimate.herokuapp.com/insights" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-02T17:07:59.024805+00:00 heroku[router]: at=info method=POST path="/_dash-update-component" host=hours-estimate.herokuapp.com request_id=fbcce037-0bce-4c31-9f1f-ea84472892f9 fwd="97.79.221.219" dyno=web.1 connect=0ms service=3ms status=200 bytes=2374 protocol=https
2019-08-02T17:07:59.023020+00:00 app[web.1]: 10.30.71.105 - - [02/Aug/2019:17:07:59 +0000] "POST /_dash-update-component HTTP/1.1" 200 2173 "https://hours-estimate.herokuapp.com/process" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-02T17:08:15.857370+00:00 heroku[router]: at=info method=POST path="/_dash-update-component" host=hours-estimate.herokuapp.com request_id=575366f7-c7b6-4068-8445-f70b8c6c966e fwd="97.79.221.219" dyno=web.1 connect=1ms service=146ms status=200 bytes=72899 protocol=https
2019-08-02T17:08:15.853453+00:00 app[web.1]: 10.30.71.105 - - [02/Aug/2019:17:08:15 +0000] "POST /_dash-update-component HTTP/1.1" 200 72697 "https://hours-estimate.herokuapp.com/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-02T17:08:45.042249+00:00 app[web.1]: 10.30.71.105 - - [02/Aug/2019:17:08:45 +0000] "POST /_dash-update-component HTTP/1.1" 200 3111 "https://hours-estimate.herokuapp.com/insights" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-02T17:08:45.044203+00:00 heroku[router]: at=info method=POST path="/_dash-update-component" host=hours-estimate.herokuapp.com request_id=cb5cc826-57dc-484f-929f-59da50ada40b fwd="97.79.221.219" dyno=web.1 connect=0ms service=6ms status=200 bytes=3312 protocol=https
2019-08-02T17:09:02.134145+00:00 heroku[router]: at=info method=POST path="/_dash-update-component" host=hours-estimate.herokuapp.com request_id=7f8b515b-daa8-444c-a996-59c441af94fd fwd="97.79.221.219" dyno=web.1 connect=0ms service=4ms status=200 bytes=2374 protocol=https
2019-08-02T17:09:02.132519+00:00 app[web.1]: 10.30.71.105 - - [02/Aug/2019:17:09:02 +0000] "POST /_dash-update-component HTTP/1.1" 200 2173 "https://hours-estimate.herokuapp.com/process" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-02T17:09:39.583595+00:00 heroku[router]: at=info method=POST path="/_dash-update-component" host=hours-estimate.herokuapp.com request_id=f8fb3c6e-d70b-4760-9892-153204c7e730 fwd="97.79.221.219" dyno=web.1 connect=0ms service=105ms status=200 bytes=72899 protocol=https
2019-08-02T17:09:39.579526+00:00 app[web.1]: 10.30.71.105 - - [02/Aug/2019:17:09:39 +0000] "POST /_dash-update-component HTTP/1.1" 200 72697 "https://hours-estimate.herokuapp.com/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-02T17:10:29.047938+00:00 heroku[router]: at=info method=POST path="/_dash-update-component" host=hours-estimate.herokuapp.com request_id=29ed2e62-a8e4-4407-8eaa-01a218e6e14f fwd="97.79.221.219" dyno=web.1 connect=0ms service=4ms status=200 bytes=2374 protocol=https
2019-08-02T17:10:29.046127+00:00 app[web.1]: 10.30.71.105 - - [02/Aug/2019:17:10:29 +0000] "POST /_dash-update-component HTTP/1.1" 200 2173 "https://hours-estimate.herokuapp.com/process" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-02T17:20:25.536484+00:00 heroku[router]: at=info method=GET path="/" host=hours-estimate.herokuapp.com request_id=9cc50c5e-7e0b-4c43-96f8-4b387408b577 fwd="97.79.221.219" dyno=web.1 connect=0ms service=2ms status=200 bytes=886 protocol=https
2019-08-02T17:20:25.536285+00:00 app[web.1]: 10.31.255.9 - - [02/Aug/2019:17:20:25 +0000] "GET / HTTP/1.1" 200 678 "https://lwjstudio.github.io/9999-12-31-all-posts/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-02T17:20:25.746335+00:00 app[web.1]: 10.31.255.9 - - [02/Aug/2019:17:20:25 +0000] "GET /_dash-component-suites/dash_renderer/react@16.8.6.min.js?v=1.0.0&m=1564743930 HTTP/1.1" 200 4888 "https://hours-estimate.herokuapp.com/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-02T17:20:25.769940+00:00 app[web.1]: 10.164.193.3 - - [02/Aug/2019:17:20:25 +0000] "GET /_dash-component-suites/dash_renderer/react-dom@16.8.6.min.js?v=1.0.0&m=1564743930 HTTP/1.1" 200 34843 "https://hours-estimate.herokuapp.com/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-02T17:20:25.807201+00:00 heroku[router]: at=info method=GET path="/_dash-component-suites/dash_renderer/prop-types@15.7.2.min.js?v=1.0.0&m=1564743930" host=hours-estimate.herokuapp.com request_id=f1b8af2e-7873-41c0-bf44-0d13d29f6048 fwd="97.79.221.219" dyno=web.1 connect=0ms service=2ms status=200 bytes=1053 protocol=https
2019-08-02T17:20:25.746743+00:00 heroku[router]: at=info method=GET path="/_dash-component-suites/dash_renderer/react@16.8.6.min.js?v=1.0.0&m=1564743930" host=hours-estimate.herokuapp.com request_id=6abf26de-1050-4fdd-910b-834e9bdddba7 fwd="97.79.221.219" dyno=web.1 connect=0ms service=2ms status=200 bytes=5110 protocol=https
2019-08-02T17:20:25.773831+00:00 heroku[router]: at=info method=GET path="/_dash-component-suites/dash_renderer/react-dom@16.8.6.min.js?v=1.0.0&m=1564743930" host=hours-estimate.herokuapp.com request_id=c12e604b-63ad-422d-b02d-8a53e93ad157 fwd="97.79.221.219" dyno=web.1 connect=1ms service=9ms status=200 bytes=35066 protocol=https
2019-08-02T17:20:25.889372+00:00 heroku[router]: at=info method=GET path="/_dash-component-suites/dash_html_components/dash_html_components.min.js?v=1.0.0&m=1564743930" host=hours-estimate.herokuapp.com request_id=a4fbe165-3a7f-4f7d-b49d-6a0cf86a7291 fwd="97.79.221.219" dyno=web.1 connect=1ms service=10ms status=200 bytes=19125 protocol=https
2019-08-02T17:20:25.806988+00:00 app[web.1]: 10.31.255.9 - - [02/Aug/2019:17:20:25 +0000] "GET /_dash-component-suites/dash_renderer/prop-types@15.7.2.min.js?v=1.0.0&m=1564743930 HTTP/1.1" 200 832 "https://hours-estimate.herokuapp.com/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-02T17:20:25.869943+00:00 app[web.1]: 10.31.255.9 - - [02/Aug/2019:17:20:25 +0000] "GET /_dash-component-suites/dash_bootstrap_components/_components/dash_bootstrap_components.min.js?v=0.7.0&m=1564743930 HTTP/1.1" 200 45782 "https://hours-estimate.herokuapp.com/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-02T17:20:25.886051+00:00 app[web.1]: 10.164.193.3 - - [02/Aug/2019:17:20:25 +0000] "GET /_dash-component-suites/dash_html_components/dash_html_components.min.js?v=1.0.0&m=1564743930 HTTP/1.1" 200 18902 "https://hours-estimate.herokuapp.com/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-02T17:20:25.945974+00:00 app[web.1]: 10.164.193.3 - - [02/Aug/2019:17:20:25 +0000] "GET /_dash-component-suites/dash_core_components/highlight.pack.js?v=1.0.0&m=1564743936 HTTP/1.1" 200 14091 "https://hours-estimate.herokuapp.com/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-02T17:20:25.871549+00:00 heroku[router]: at=info method=GET path="/_dash-component-suites/dash_bootstrap_components/_components/dash_bootstrap_components.min.js?v=0.7.0&m=1564743930" host=hours-estimate.herokuapp.com request_id=b32c0fec-057a-40fb-b7b6-17ecdeb6a356 fwd="97.79.221.219" dyno=web.1 connect=0ms service=10ms status=200 bytes=46005 protocol=https
2019-08-02T17:20:26.100580+00:00 heroku[router]: at=info method=GET path="/_dash-component-suites/dash_renderer/dash_renderer.min.js?v=1.0.0&m=1564743930" host=hours-estimate.herokuapp.com request_id=41a63aef-6272-4648-835e-2ec6959f73a1 fwd="97.79.221.219" dyno=web.1 connect=0ms service=25ms status=200 bytes=79390 protocol=https
2019-08-02T17:20:25.948367+00:00 heroku[router]: at=info method=GET path="/_dash-component-suites/dash_core_components/highlight.pack.js?v=1.0.0&m=1564743936" host=hours-estimate.herokuapp.com request_id=93f039db-637a-46ae-a651-7717969dcca3 fwd="97.79.221.219" dyno=web.1 connect=1ms service=4ms status=200 bytes=14314 protocol=https
2019-08-02T17:20:26.080916+00:00 heroku[router]: at=info method=GET path="/_dash-component-suites/dash_core_components/plotly-1.48.3.min.js?v=1.0.0&m=1564743936" host=hours-estimate.herokuapp.com request_id=6765e644-d916-4b27-a4c3-0405461995b9 fwd="97.79.221.219" dyno=web.1 connect=0ms service=170ms status=200 bytes=918326 protocol=https
2019-08-02T17:20:26.060276+00:00 app[web.1]: 10.28.119.231 - - [02/Aug/2019:17:20:26 +0000] "GET /_dash-component-suites/dash_core_components/plotly-1.48.3.min.js?v=1.0.0&m=1564743936 HTTP/1.1" 200 918102 "https://hours-estimate.herokuapp.com/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-02T17:20:26.093546+00:00 app[web.1]: 10.31.255.9 - - [02/Aug/2019:17:20:26 +0000] "GET /_dash-component-suites/dash_renderer/dash_renderer.min.js?v=1.0.0&m=1564743930 HTTP/1.1" 200 79167 "https://hours-estimate.herokuapp.com/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-02T17:20:26.112482+00:00 app[web.1]: 10.164.193.3 - - [02/Aug/2019:17:20:26 +0000] "GET /_dash-component-suites/dash_core_components/dash_core_components.min.js?v=1.0.0&m=1564743936 HTTP/1.1" 200 279706 "https://hours-estimate.herokuapp.com/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-02T17:20:26.131997+00:00 heroku[router]: at=info method=GET path="/_dash-component-suites/dash_core_components/dash_core_components.min.js?v=1.0.0&m=1564743936" host=hours-estimate.herokuapp.com request_id=7d6d6669-dac5-4e8a-b520-5d8feb7c99bb fwd="97.79.221.219" dyno=web.1 connect=2ms service=63ms status=200 bytes=279930 protocol=https
2019-08-02T17:20:27.826879+00:00 heroku[router]: at=info method=GET path="/_dash-dependencies" host=hours-estimate.herokuapp.com request_id=c61fa314-5190-4e61-908c-8b162a5c00f1 fwd="97.79.221.219" dyno=web.1 connect=1ms service=2ms status=200 bytes=274 protocol=https
2019-08-02T17:20:27.809583+00:00 app[web.1]: 10.28.119.231 - - [02/Aug/2019:17:20:27 +0000] "GET /_dash-layout HTTP/1.1" 200 515 "https://hours-estimate.herokuapp.com/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-02T17:20:27.825027+00:00 app[web.1]: 10.164.193.3 - - [02/Aug/2019:17:20:27 +0000] "GET /_dash-dependencies HTTP/1.1" 200 121 "https://hours-estimate.herokuapp.com/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-02T17:20:27.898886+00:00 app[web.1]: 10.164.193.3 - - [02/Aug/2019:17:20:27 +0000] "POST /_dash-update-component HTTP/1.1" 200 144 "https://hours-estimate.herokuapp.com/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-02T17:20:28.048023+00:00 app[web.1]: 10.28.119.231 - - [02/Aug/2019:17:20:28 +0000] "POST /_dash-update-component HTTP/1.1" 200 72697 "https://hours-estimate.herokuapp.com/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-02T17:20:27.808397+00:00 heroku[router]: at=info method=GET path="/_dash-layout" host=hours-estimate.herokuapp.com request_id=d3afaf26-8c3b-4b42-8d8e-9101ed4d0175 fwd="97.79.221.219" dyno=web.1 connect=0ms service=2ms status=200 bytes=715 protocol=https
2019-08-02T17:20:27.900729+00:00 heroku[router]: at=info method=POST path="/_dash-update-component" host=hours-estimate.herokuapp.com request_id=2f942a3e-d9eb-460e-a8c4-4afc278aaed7 fwd="97.79.221.219" dyno=web.1 connect=1ms service=3ms status=200 bytes=297 protocol=https
2019-08-02T17:20:28.048964+00:00 heroku[router]: at=info method=POST path="/_dash-update-component" host=hours-estimate.herokuapp.com request_id=f5e000aa-7471-498a-9881-d4677a8aadae fwd="97.79.221.219" dyno=web.1 connect=0ms service=114ms status=200 bytes=72899 protocol=https
2019-08-02T17:20:41.028050+00:00 heroku[router]: at=info method=POST path="/_dash-update-component" host=hours-estimate.herokuapp.com request_id=51e50e04-e526-40fe-b7ab-980b17668c67 fwd="97.79.221.219" dyno=web.1 connect=0ms service=3ms status=200 bytes=2374 protocol=https
2019-08-02T17:20:41.029174+00:00 app[web.1]: 10.28.119.231 - - [02/Aug/2019:17:20:41 +0000] "POST /_dash-update-component HTTP/1.1" 200 2173 "https://hours-estimate.herokuapp.com/process" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-02T17:21:16.114141+00:00 app[web.1]: 10.28.119.231 - - [02/Aug/2019:17:21:16 +0000] "POST /_dash-update-component HTTP/1.1" 200 3111 "https://hours-estimate.herokuapp.com/insights" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-02T17:21:16.113136+00:00 heroku[router]: at=info method=POST path="/_dash-update-component" host=hours-estimate.herokuapp.com request_id=ade83535-c3f3-4699-84ac-8116453d14ef fwd="97.79.221.219" dyno=web.1 connect=0ms service=6ms status=200 bytes=3312 protocol=https
2019-08-02T17:22:25.389359+00:00 app[web.1]: 10.164.193.3 - - [02/Aug/2019:17:22:25 +0000] "POST /_dash-update-component HTTP/1.1" 200 2173 "https://hours-estimate.herokuapp.com/process" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-02T17:22:25.391209+00:00 heroku[router]: at=info method=POST path="/_dash-update-component" host=hours-estimate.herokuapp.com request_id=d50c97a1-52c9-4c64-a27e-946143844db7 fwd="97.79.221.219" dyno=web.1 connect=1ms service=5ms status=200 bytes=2374 protocol=https
2019-08-02T17:22:32.236781+00:00 heroku[router]: at=info method=POST path="/_dash-update-component" host=hours-estimate.herokuapp.com request_id=d19aee01-0db8-44e2-a448-87435219679a fwd="97.79.221.219" dyno=web.1 connect=1ms service=11ms status=200 bytes=3312 protocol=https
2019-08-02T17:22:32.234942+00:00 app[web.1]: 10.164.193.3 - - [02/Aug/2019:17:22:32 +0000] "POST /_dash-update-component HTTP/1.1" 200 3111 "https://hours-estimate.herokuapp.com/insights" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-02T17:23:21.644787+00:00 app[web.1]: 10.164.193.3 - - [02/Aug/2019:17:23:21 +0000] "POST /_dash-update-component HTTP/1.1" 200 2173 "https://hours-estimate.herokuapp.com/process" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-02T17:23:21.646688+00:00 heroku[router]: at=info method=POST path="/_dash-update-component" host=hours-estimate.herokuapp.com request_id=b5b4cc70-feaf-469f-acdd-66e2f4cdf07f fwd="97.79.221.219" dyno=web.1 connect=1ms service=6ms status=200 bytes=2374 protocol=https
2019-08-02T17:23:59.727476+00:00 heroku[router]: at=info method=POST path="/_dash-update-component" host=hours-estimate.herokuapp.com request_id=8561611a-f14d-402d-b9db-10abeccb47c2 fwd="97.79.221.219" dyno=web.1 connect=1ms service=97ms status=200 bytes=72899 protocol=https
2019-08-02T17:23:59.720243+00:00 app[web.1]: 10.164.193.3 - - [02/Aug/2019:17:23:59 +0000] "POST /_dash-update-component HTTP/1.1" 200 72697 "https://hours-estimate.herokuapp.com/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-02T17:24:16.862125+00:00 heroku[router]: at=info method=POST path="/_dash-update-component" host=hours-estimate.herokuapp.com request_id=4378c509-28c3-4d12-990a-9b6050e8c85c fwd="97.79.221.219" dyno=web.1 connect=1ms service=9ms status=200 bytes=3312 protocol=https
2019-08-02T17:24:16.860192+00:00 app[web.1]: 10.164.193.3 - - [02/Aug/2019:17:24:16 +0000] "POST /_dash-update-component HTTP/1.1" 200 3111 "https://hours-estimate.herokuapp.com/insights" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-02T17:24:54.158409+00:00 heroku[router]: at=info method=POST path="/_dash-update-component" host=hours-estimate.herokuapp.com request_id=aef15165-4dab-4ba7-958a-808887980f49 fwd="97.79.221.219" dyno=web.1 connect=1ms service=6ms status=200 bytes=2374 protocol=https
2019-08-02T17:24:54.156586+00:00 app[web.1]: 10.164.193.3 - - [02/Aug/2019:17:24:54 +0000] "POST /_dash-update-component HTTP/1.1" 200 2173 "https://hours-estimate.herokuapp.com/process" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-02T17:26:20.325464+00:00 heroku[router]: at=info method=POST path="/_dash-update-component" host=hours-estimate.herokuapp.com request_id=2d6d484e-8c41-42fa-bf88-c80e2701dac2 fwd="97.79.221.219" dyno=web.1 connect=0ms service=118ms status=200 bytes=72899 protocol=https
2019-08-02T17:26:20.321420+00:00 app[web.1]: 10.63.100.123 - - [02/Aug/2019:17:26:20 +0000] "POST /_dash-update-component HTTP/1.1" 200 72697 "https://hours-estimate.herokuapp.com/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-02T17:26:23.644617+00:00 heroku[router]: at=info method=POST path="/_dash-update-component" host=hours-estimate.herokuapp.com request_id=876ad49b-3029-46e9-b744-de93a7bd5b7a fwd="97.79.221.219" dyno=web.1 connect=0ms service=2ms status=200 bytes=631 protocol=https
2019-08-02T17:26:23.643392+00:00 app[web.1]: 10.63.100.123 - - [02/Aug/2019:17:26:23 +0000] "POST /_dash-update-component HTTP/1.1" 200 478 "https://hours-estimate.herokuapp.com/predictions" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-02T17:26:25.590430+00:00 heroku[router]: at=info method=POST path="/_dash-update-component" host=hours-estimate.herokuapp.com request_id=eb74bfc4-a8c7-4d0e-942f-cd0ab72ffd77 fwd="97.79.221.219" dyno=web.1 connect=0ms service=6ms status=200 bytes=3312 protocol=https
2019-08-02T17:26:25.589153+00:00 app[web.1]: 10.63.100.123 - - [02/Aug/2019:17:26:25 +0000] "POST /_dash-update-component HTTP/1.1" 200 3111 "https://hours-estimate.herokuapp.com/insights" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-02T17:26:27.532854+00:00 heroku[router]: at=info method=POST path="/_dash-update-component" host=hours-estimate.herokuapp.com request_id=81dcc0d6-d3a2-461e-8e3c-f806b3b36b80 fwd="97.79.221.219" dyno=web.1 connect=0ms service=8ms status=200 bytes=3312 protocol=https
2019-08-02T17:26:27.531732+00:00 app[web.1]: 10.63.100.123 - - [02/Aug/2019:17:26:27 +0000] "POST /_dash-update-component HTTP/1.1" 200 3111 "https://hours-estimate.herokuapp.com/insights" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-02T17:26:37.708678+00:00 app[web.1]: 10.63.100.123 - - [02/Aug/2019:17:26:37 +0000] "POST /_dash-update-component HTTP/1.1" 200 2173 "https://hours-estimate.herokuapp.com/process" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-02T17:26:37.709851+00:00 heroku[router]: at=info method=POST path="/_dash-update-component" host=hours-estimate.herokuapp.com request_id=0389f869-12cb-4759-8cd4-55f70de32301 fwd="97.79.221.219" dyno=web.1 connect=1ms service=4ms status=200 bytes=2374 protocol=https
2019-08-02T17:26:58.785712+00:00 heroku[router]: at=info method=POST path="/_dash-update-component" host=hours-estimate.herokuapp.com request_id=9a8d2b96-b7e9-4b9f-8856-4d7b3e515167 fwd="97.79.221.219" dyno=web.1 connect=0ms service=156ms status=200 bytes=72899 protocol=https
2019-08-02T17:26:58.781868+00:00 app[web.1]: 10.63.100.123 - - [02/Aug/2019:17:26:58 +0000] "POST /_dash-update-component HTTP/1.1" 200 72697 "https://hours-estimate.herokuapp.com/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-02T17:30:05.456251+00:00 heroku[router]: at=info method=POST path="/_dash-update-component" host=hours-estimate.herokuapp.com request_id=c2e82225-2849-475a-8162-de3c2d0e2a94 fwd="97.79.221.219" dyno=web.1 connect=1ms service=2ms status=200 bytes=631 protocol=https
2019-08-02T17:30:05.453785+00:00 app[web.1]: 10.63.161.234 - - [02/Aug/2019:17:30:05 +0000] "POST /_dash-update-component HTTP/1.1" 200 478 "https://hours-estimate.herokuapp.com/predictions" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-02T17:30:06.255691+00:00 heroku[router]: at=info method=POST path="/_dash-update-component" host=hours-estimate.herokuapp.com request_id=45cffe0d-5129-4958-98c1-5ba08e9f52a1 fwd="97.79.221.219" dyno=web.1 connect=0ms service=6ms status=200 bytes=3312 protocol=https
2019-08-02T17:30:06.253438+00:00 app[web.1]: 10.63.161.234 - - [02/Aug/2019:17:30:06 +0000] "POST /_dash-update-component HTTP/1.1" 200 3111 "https://hours-estimate.herokuapp.com/insights" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-02T17:36:42.370481+00:00 heroku[router]: at=info method=POST path="/_dash-update-component" host=hours-estimate.herokuapp.com request_id=74bbb7d5-a8f4-446a-b568-559681ade74d fwd="97.79.221.219" dyno=web.1 connect=0ms service=130ms status=200 bytes=72899 protocol=https
2019-08-02T17:36:42.367746+00:00 app[web.1]: 10.65.225.59 - - [02/Aug/2019:17:36:42 +0000] "POST /_dash-update-component HTTP/1.1" 200 72697 "https://hours-estimate.herokuapp.com/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-02T17:37:06.804042+00:00 app[web.1]: 10.65.225.59 - - [02/Aug/2019:17:37:06 +0000] "POST /_dash-update-component HTTP/1.1" 200 478 "https://hours-estimate.herokuapp.com/predictions" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-02T17:37:06.804083+00:00 heroku[router]: at=info method=POST path="/_dash-update-component" host=hours-estimate.herokuapp.com request_id=ba92fd5f-31c2-4aa4-b9f4-0983599190a6 fwd="97.79.221.219" dyno=web.1 connect=0ms service=2ms status=200 bytes=631 protocol=https
2019-08-02T17:37:07.439057+00:00 heroku[router]: at=info method=POST path="/_dash-update-component" host=hours-estimate.herokuapp.com request_id=75aa6ff6-b7a8-4fbc-9031-f05eb91ccdba fwd="97.79.221.219" dyno=web.1 connect=0ms service=9ms status=200 bytes=3312 protocol=https
2019-08-02T17:37:07.438595+00:00 app[web.1]: 10.65.225.59 - - [02/Aug/2019:17:37:07 +0000] "POST /_dash-update-component HTTP/1.1" 200 3111 "https://hours-estimate.herokuapp.com/insights" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-02T17:51:15.652282+00:00 heroku[router]: at=info method=GET path="/insights" host=hours-estimate.herokuapp.com request_id=598ed6eb-4b20-4749-914c-4b12b9bc57dc fwd="97.79.221.219" dyno=web.1 connect=0ms service=3ms status=200 bytes=886 protocol=https
2019-08-02T17:51:15.651510+00:00 app[web.1]: 10.31.80.242 - - [02/Aug/2019:17:51:15 +0000] "GET /insights HTTP/1.1" 200 678 "https://lwjstudio.github.io/9999-12-31-all-posts/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-02T17:51:15.856033+00:00 app[web.1]: 10.31.80.242 - - [02/Aug/2019:17:51:15 +0000] "GET /_dash-component-suites/dash_renderer/react@16.8.6.min.js?v=1.0.0&m=1564743930 HTTP/1.1" 200 4888 "https://hours-estimate.herokuapp.com/insights" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-02T17:51:15.856984+00:00 heroku[router]: at=info method=GET path="/_dash-component-suites/dash_renderer/react@16.8.6.min.js?v=1.0.0&m=1564743930" host=hours-estimate.herokuapp.com request_id=446e3489-f606-4076-80e9-a6522468535c fwd="97.79.221.219" dyno=web.1 connect=0ms service=3ms status=200 bytes=5110 protocol=https
2019-08-02T17:51:15.926161+00:00 heroku[router]: at=info method=GET path="/_dash-component-suites/dash_renderer/react-dom@16.8.6.min.js?v=1.0.0&m=1564743930" host=hours-estimate.herokuapp.com request_id=9634c665-40dd-47b3-b9ee-c657b47ecd9b fwd="97.79.221.219" dyno=web.1 connect=1ms service=11ms status=200 bytes=35066 protocol=https
2019-08-02T17:51:15.951181+00:00 heroku[router]: at=info method=GET path="/_dash-component-suites/dash_renderer/prop-types@15.7.2.min.js?v=1.0.0&m=1564743930" host=hours-estimate.herokuapp.com request_id=94ab3a48-7880-4bca-8946-fd98d7764fb8 fwd="97.79.221.219" dyno=web.1 connect=0ms service=2ms status=200 bytes=1053 protocol=https
2019-08-02T17:51:16.015325+00:00 heroku[router]: at=info method=GET path="/_dash-component-suites/dash_bootstrap_components/_components/dash_bootstrap_components.min.js?v=0.7.0&m=1564743930" host=hours-estimate.herokuapp.com request_id=b4dd3944-fd05-454e-b6bf-5bc5da985ad5 fwd="97.79.221.219" dyno=web.1 connect=0ms service=16ms status=200 bytes=46005 protocol=https
2019-08-02T17:51:16.230332+00:00 heroku[router]: at=info method=GET path="/_dash-component-suites/dash_core_components/plotly-1.48.3.min.js?v=1.0.0&m=1564743936" host=hours-estimate.herokuapp.com request_id=c5e9841c-1685-43af-a9c6-e4dedc3b08e5 fwd="97.79.221.219" dyno=web.1 connect=1ms service=195ms status=200 bytes=918326 protocol=https
2019-08-02T17:51:16.032712+00:00 heroku[router]: at=info method=GET path="/_dash-component-suites/dash_html_components/dash_html_components.min.js?v=1.0.0&m=1564743930" host=hours-estimate.herokuapp.com request_id=d6fa2fa5-75c3-48e9-ab68-6f5a9d147798 fwd="97.79.221.219" dyno=web.1 connect=1ms service=11ms status=200 bytes=19125 protocol=https
2019-08-02T17:51:16.096747+00:00 heroku[router]: at=info method=GET path="/_dash-component-suites/dash_core_components/highlight.pack.js?v=1.0.0&m=1564743936" host=hours-estimate.herokuapp.com request_id=21515fc7-82f5-4594-8661-d85da4342d0e fwd="97.79.221.219" dyno=web.1 connect=1ms service=5ms status=200 bytes=14314 protocol=https
2019-08-02T17:51:15.923931+00:00 app[web.1]: 10.31.80.242 - - [02/Aug/2019:17:51:15 +0000] "GET /_dash-component-suites/dash_renderer/react-dom@16.8.6.min.js?v=1.0.0&m=1564743930 HTTP/1.1" 200 34843 "https://hours-estimate.herokuapp.com/insights" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-02T17:51:15.948145+00:00 app[web.1]: 10.178.242.143 - - [02/Aug/2019:17:51:15 +0000] "GET /_dash-component-suites/dash_renderer/prop-types@15.7.2.min.js?v=1.0.0&m=1564743930 HTTP/1.1" 200 832 "https://hours-estimate.herokuapp.com/insights" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-02T17:51:16.010540+00:00 app[web.1]: 10.178.242.143 - - [02/Aug/2019:17:51:16 +0000] "GET /_dash-component-suites/dash_bootstrap_components/_components/dash_bootstrap_components.min.js?v=0.7.0&m=1564743930 HTTP/1.1" 200 45782 "https://hours-estimate.herokuapp.com/insights" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-02T17:51:16.030821+00:00 app[web.1]: 10.31.80.242 - - [02/Aug/2019:17:51:16 +0000] "GET /_dash-component-suites/dash_html_components/dash_html_components.min.js?v=1.0.0&m=1564743930 HTTP/1.1" 200 18902 "https://hours-estimate.herokuapp.com/insights" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-02T17:51:16.095560+00:00 app[web.1]: 10.31.80.242 - - [02/Aug/2019:17:51:16 +0000] "GET /_dash-component-suites/dash_core_components/highlight.pack.js?v=1.0.0&m=1564743936 HTTP/1.1" 200 14091 "https://hours-estimate.herokuapp.com/insights" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-02T17:51:16.224806+00:00 heroku[router]: at=info method=GET path="/_dash-component-suites/dash_renderer/dash_renderer.min.js?v=1.0.0&m=1564743930" host=hours-estimate.herokuapp.com request_id=04f288d2-8983-44ca-a723-79f5ac5ee649 fwd="97.79.221.219" dyno=web.1 connect=0ms service=61ms status=200 bytes=79390 protocol=https
2019-08-02T17:51:16.233830+00:00 heroku[router]: at=info method=GET path="/_dash-component-suites/dash_core_components/dash_core_components.min.js?v=1.0.0&m=1564743936" host=hours-estimate.herokuapp.com request_id=fa6d451b-4959-42ed-99c0-c45e26a5390b fwd="97.79.221.219" dyno=web.1 connect=1ms service=73ms status=200 bytes=279930 protocol=https
2019-08-02T17:51:16.198983+00:00 app[web.1]: 10.31.50.114 - - [02/Aug/2019:17:51:16 +0000] "GET /_dash-component-suites/dash_core_components/plotly-1.48.3.min.js?v=1.0.0&m=1564743936 HTTP/1.1" 200 918102 "https://hours-estimate.herokuapp.com/insights" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-02T17:51:16.209254+00:00 app[web.1]: 10.178.242.143 - - [02/Aug/2019:17:51:16 +0000] "GET /_dash-component-suites/dash_core_components/dash_core_components.min.js?v=1.0.0&m=1564743936 HTTP/1.1" 200 279706 "https://hours-estimate.herokuapp.com/insights" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-02T17:51:16.215930+00:00 app[web.1]: 10.31.80.242 - - [02/Aug/2019:17:51:16 +0000] "GET /_dash-component-suites/dash_renderer/dash_renderer.min.js?v=1.0.0&m=1564743930 HTTP/1.1" 200 79167 "https://hours-estimate.herokuapp.com/insights" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-02T17:51:17.394619+00:00 heroku[router]: at=info method=GET path="/_dash-dependencies" host=hours-estimate.herokuapp.com request_id=55929a2d-7ae5-4e23-b0e6-255ffd8f6ee5 fwd="97.79.221.219" dyno=web.1 connect=0ms service=2ms status=200 bytes=274 protocol=https
2019-08-02T17:51:17.396571+00:00 heroku[router]: at=info method=GET path="/_dash-layout" host=hours-estimate.herokuapp.com request_id=9585edea-ce5e-4320-8ece-5e813b77eeb5 fwd="97.79.221.219" dyno=web.1 connect=0ms service=4ms status=200 bytes=715 protocol=https
2019-08-02T17:51:17.462903+00:00 heroku[router]: at=info method=POST path="/_dash-update-component" host=hours-estimate.herokuapp.com request_id=c6792f8e-ddbf-4578-87f5-8303d972beb8 fwd="97.79.221.219" dyno=web.1 connect=0ms service=2ms status=200 bytes=297 protocol=https
2019-08-02T17:51:17.543986+00:00 heroku[router]: at=info method=POST path="/_dash-update-component" host=hours-estimate.herokuapp.com request_id=12b4657c-4ff3-46cb-bed6-4d9d239294eb fwd="97.79.221.219" dyno=web.1 connect=1ms service=8ms status=200 bytes=3312 protocol=https
2019-08-02T17:51:17.391917+00:00 app[web.1]: 10.178.242.143 - - [02/Aug/2019:17:51:17 +0000] "GET /_dash-dependencies HTTP/1.1" 200 121 "https://hours-estimate.herokuapp.com/insights" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-02T17:51:17.394647+00:00 app[web.1]: 10.31.50.114 - - [02/Aug/2019:17:51:17 +0000] "GET /_dash-layout HTTP/1.1" 200 515 "https://hours-estimate.herokuapp.com/insights" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-02T17:51:17.461166+00:00 app[web.1]: 10.31.50.114 - - [02/Aug/2019:17:51:17 +0000] "POST /_dash-update-component HTTP/1.1" 200 144 "https://hours-estimate.herokuapp.com/insights" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-02T17:51:17.541260+00:00 app[web.1]: 10.178.242.143 - - [02/Aug/2019:17:51:17 +0000] "POST /_dash-update-component HTTP/1.1" 200 3111 "https://hours-estimate.herokuapp.com/insights" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-02T18:07:50.991418+00:00 heroku[router]: at=info method=GET path="/_dash-component-suites/dash_renderer/react-dom@16.8.6.min.js?v=1.0.0&m=1564743930" host=hours-estimate.herokuapp.com request_id=7d683347-fcb3-48ef-8b40-8bc4bea93c4b fwd="76.85.0.51" dyno=web.1 connect=1ms service=13ms status=200 bytes=35066 protocol=https
2019-08-02T18:07:50.904091+00:00 heroku[router]: at=info method=GET path="/_dash-component-suites/dash_renderer/react@16.8.6.min.js?v=1.0.0&m=1564743930" host=hours-estimate.herokuapp.com request_id=c1bf91d4-1c43-4ef0-894d-7b0ccfc07acd fwd="76.85.0.51" dyno=web.1 connect=1ms service=4ms status=200 bytes=5110 protocol=https
2019-08-02T18:07:51.015313+00:00 heroku[router]: at=info method=GET path="/_dash-component-suites/dash_core_components/highlight.pack.js?v=1.0.0&m=1564743936" host=hours-estimate.herokuapp.com request_id=74ae00c0-74b7-44ef-84e2-ef8c948c6c5d fwd="76.85.0.51" dyno=web.1 connect=1ms service=13ms status=200 bytes=14314 protocol=https
2019-08-02T18:07:50.902528+00:00 app[web.1]: 10.43.181.165 - - [02/Aug/2019:18:07:50 +0000] "GET /_dash-component-suites/dash_renderer/react@16.8.6.min.js?v=1.0.0&m=1564743930 HTTP/1.1" 200 4888 "https://hours-estimate.herokuapp.com/insights" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-02T18:07:50.987105+00:00 app[web.1]: 10.43.181.165 - - [02/Aug/2019:18:07:50 +0000] "GET /_dash-component-suites/dash_renderer/react-dom@16.8.6.min.js?v=1.0.0&m=1564743930 HTTP/1.1" 200 34843 "https://hours-estimate.herokuapp.com/insights" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-02T18:07:51.008635+00:00 app[web.1]: 10.29.80.159 - - [02/Aug/2019:18:07:51 +0000] "GET /_dash-component-suites/dash_bootstrap_components/_components/dash_bootstrap_components.min.js?v=0.7.0&m=1564743930 HTTP/1.1" 200 45782 "https://hours-estimate.herokuapp.com/insights" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-02T18:07:51.010199+00:00 app[web.1]: 10.16.207.90 - - [02/Aug/2019:18:07:51 +0000] "GET /_dash-component-suites/dash_renderer/prop-types@15.7.2.min.js?v=1.0.0&m=1564743930 HTTP/1.1" 200 832 "https://hours-estimate.herokuapp.com/insights" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-02T18:07:51.013045+00:00 app[web.1]: 10.30.216.155 - - [02/Aug/2019:18:07:51 +0000] "GET /_dash-component-suites/dash_core_components/highlight.pack.js?v=1.0.0&m=1564743936 HTTP/1.1" 200 14091 "https://hours-estimate.herokuapp.com/insights" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-02T18:07:51.019748+00:00 app[web.1]: 10.111.155.219 - - [02/Aug/2019:18:07:51 +0000] "GET /_dash-component-suites/dash_html_components/dash_html_components.min.js?v=1.0.0&m=1564743930 HTTP/1.1" 200 18902 "https://hours-estimate.herokuapp.com/insights" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-02T18:07:51.120587+00:00 app[web.1]: 10.16.207.90 - - [02/Aug/2019:18:07:51 +0000] "GET /_dash-component-suites/dash_core_components/dash_core_components.min.js?v=1.0.0&m=1564743936 HTTP/1.1" 200 279706 "https://hours-estimate.herokuapp.com/insights" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-02T18:07:51.138846+00:00 app[web.1]: 10.30.216.155 - - [02/Aug/2019:18:07:51 +0000] "GET /_dash-component-suites/dash_renderer/dash_renderer.min.js?v=1.0.0&m=1564743930 HTTP/1.1" 200 79167 "https://hours-estimate.herokuapp.com/insights" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-02T18:07:51.012294+00:00 heroku[router]: at=info method=GET path="/_dash-component-suites/dash_bootstrap_components/_components/dash_bootstrap_components.min.js?v=0.7.0&m=1564743930" host=hours-estimate.herokuapp.com request_id=cc44114f-7f60-46e8-bb0e-4fbc087726b7 fwd="76.85.0.51" dyno=web.1 connect=0ms service=10ms status=200 bytes=46005 protocol=https
2019-08-02T18:07:51.021880+00:00 heroku[router]: at=info method=GET path="/_dash-component-suites/dash_html_components/dash_html_components.min.js?v=1.0.0&m=1564743930" host=hours-estimate.herokuapp.com request_id=93267822-5eac-4f81-a1b2-e69cc1df037e fwd="76.85.0.51" dyno=web.1 connect=1ms service=20ms status=200 bytes=19125 protocol=https
2019-08-02T18:07:51.143495+00:00 heroku[router]: at=info method=GET path="/_dash-component-suites/dash_renderer/dash_renderer.min.js?v=1.0.0&m=1564743930" host=hours-estimate.herokuapp.com request_id=2b4b1bdc-7e2a-4935-8ea0-ae45910de3b9 fwd="76.85.0.51" dyno=web.1 connect=1ms service=78ms status=200 bytes=79390 protocol=https
2019-08-02T18:07:51.012095+00:00 heroku[router]: at=info method=GET path="/_dash-component-suites/dash_renderer/prop-types@15.7.2.min.js?v=1.0.0&m=1564743930" host=hours-estimate.herokuapp.com request_id=64ba60aa-47e5-494c-bc67-3025f99ff633 fwd="76.85.0.51" dyno=web.1 connect=1ms service=10ms status=200 bytes=1053 protocol=https
2019-08-02T18:07:51.134616+00:00 heroku[router]: at=info method=GET path="/_dash-component-suites/dash_core_components/dash_core_components.min.js?v=1.0.0&m=1564743936" host=hours-estimate.herokuapp.com request_id=cef48525-ad5d-4159-9e13-42074db3fe20 fwd="76.85.0.51" dyno=web.1 connect=1ms service=70ms status=200 bytes=279930 protocol=https
2019-08-02T18:07:51.234582+00:00 heroku[router]: at=info method=GET path="/_dash-component-suites/dash_core_components/plotly-1.48.3.min.js?v=1.0.0&m=1564743936" host=hours-estimate.herokuapp.com request_id=2c2fac6a-c24e-4095-93e8-8c0ea6f73e49 fwd="76.85.0.51" dyno=web.1 connect=0ms service=233ms status=200 bytes=918326 protocol=https
2019-08-02T18:07:51.221120+00:00 app[web.1]: 10.30.202.179 - - [02/Aug/2019:18:07:51 +0000] "GET /_dash-component-suites/dash_core_components/plotly-1.48.3.min.js?v=1.0.0&m=1564743936 HTTP/1.1" 200 918102 "https://hours-estimate.herokuapp.com/insights" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-02T18:07:52.319306+00:00 heroku[router]: at=info method=GET path="/_dash-layout" host=hours-estimate.herokuapp.com request_id=52d61e5b-3e94-4b55-be11-3ae31231c8a3 fwd="76.85.0.51" dyno=web.1 connect=0ms service=3ms status=200 bytes=715 protocol=https
2019-08-02T18:07:52.321868+00:00 heroku[router]: at=info method=GET path="/_dash-dependencies" host=hours-estimate.herokuapp.com request_id=24919293-70fd-49bd-a8d2-a1b131707b8a fwd="76.85.0.51" dyno=web.1 connect=1ms service=5ms status=200 bytes=274 protocol=https
2019-08-02T18:07:52.318044+00:00 app[web.1]: 10.30.202.179 - - [02/Aug/2019:18:07:52 +0000] "GET /_dash-layout HTTP/1.1" 200 515 "https://hours-estimate.herokuapp.com/insights" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-02T18:07:52.320083+00:00 app[web.1]: 10.16.207.90 - - [02/Aug/2019:18:07:52 +0000] "GET /_dash-dependencies HTTP/1.1" 200 121 "https://hours-estimate.herokuapp.com/insights" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-02T18:07:52.715933+00:00 heroku[router]: at=info method=POST path="/_dash-update-component" host=hours-estimate.herokuapp.com request_id=de79055c-57d9-40e8-bbe0-aa02017b5ea0 fwd="76.85.0.51" dyno=web.1 connect=1ms service=4ms status=200 bytes=297 protocol=https
2019-08-02T18:07:52.714247+00:00 app[web.1]: 10.16.207.90 - - [02/Aug/2019:18:07:52 +0000] "POST /_dash-update-component HTTP/1.1" 200 144 "https://hours-estimate.herokuapp.com/insights" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-02T18:07:52.754065+00:00 app[web.1]: 10.30.202.179 - - [02/Aug/2019:18:07:52 +0000] "POST /_dash-update-component HTTP/1.1" 200 3111 "https://hours-estimate.herokuapp.com/insights" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-02T18:07:52.755045+00:00 heroku[router]: at=info method=POST path="/_dash-update-component" host=hours-estimate.herokuapp.com request_id=66d4d5d8-e41f-4f00-9e20-3e66493a6e63 fwd="76.85.0.51" dyno=web.1 connect=0ms service=13ms status=200 bytes=3312 protocol=https
2019-08-02T18:07:55.630858+00:00 app[web.1]: 10.30.202.179 - - [02/Aug/2019:18:07:55 +0000] "POST /_dash-update-component HTTP/1.1" 200 72697 "https://hours-estimate.herokuapp.com/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-02T18:07:55.634247+00:00 heroku[router]: at=info method=POST path="/_dash-update-component" host=hours-estimate.herokuapp.com request_id=6c1c1214-bb7c-400d-b9ec-8ffb6b0d0ad7 fwd="76.85.0.51" dyno=web.1 connect=0ms service=141ms status=200 bytes=72899 protocol=https
2019-08-02T18:07:59.466570+00:00 heroku[router]: at=info method=POST path="/_dash-update-component" host=hours-estimate.herokuapp.com request_id=638968d1-ae43-4a5b-b4de-9e2bc5831f39 fwd="76.85.0.51" dyno=web.1 connect=0ms service=7ms status=200 bytes=3312 protocol=https
2019-08-02T18:07:59.465247+00:00 app[web.1]: 10.30.202.179 - - [02/Aug/2019:18:07:59 +0000] "POST /_dash-update-component HTTP/1.1" 200 3111 "https://hours-estimate.herokuapp.com/insights" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-02T18:08:00.596536+00:00 heroku[router]: at=info method=POST path="/_dash-update-component" host=hours-estimate.herokuapp.com request_id=9e735e0e-d364-4894-ac47-1fce4984d90e fwd="76.85.0.51" dyno=web.1 connect=0ms service=3ms status=200 bytes=2374 protocol=https
2019-08-02T18:08:00.595250+00:00 app[web.1]: 10.30.202.179 - - [02/Aug/2019:18:08:00 +0000] "POST /_dash-update-component HTTP/1.1" 200 2173 "https://hours-estimate.herokuapp.com/process" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-02T18:15:14.164459+00:00 heroku[router]: at=info method=POST path="/_dash-update-component" host=hours-estimate.herokuapp.com request_id=5c8e39ca-7ba9-4a88-a149-629a0215910d fwd="76.85.0.51" dyno=web.1 connect=0ms service=96ms status=200 bytes=72899 protocol=https
2019-08-02T18:15:14.163321+00:00 app[web.1]: 10.144.125.148 - - [02/Aug/2019:18:15:14 +0000] "POST /_dash-update-component HTTP/1.1" 200 72697 "https://hours-estimate.herokuapp.com/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-02T18:15:18.746025+00:00 heroku[router]: at=info method=POST path="/_dash-update-component" host=hours-estimate.herokuapp.com request_id=c26a3d4a-7653-4c2c-bdbd-1a348dc2c044 fwd="76.85.0.51" dyno=web.1 connect=0ms service=2ms status=200 bytes=631 protocol=https
2019-08-02T18:15:18.746499+00:00 app[web.1]: 10.144.125.148 - - [02/Aug/2019:18:15:18 +0000] "POST /_dash-update-component HTTP/1.1" 200 478 "https://hours-estimate.herokuapp.com/predictions" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-02T18:15:21.484670+00:00 heroku[router]: at=info method=POST path="/_dash-update-component" host=hours-estimate.herokuapp.com request_id=7389bcee-33fd-4706-b338-1ca1c0742e13 fwd="76.85.0.51" dyno=web.1 connect=1ms service=5ms status=200 bytes=3312 protocol=https
2019-08-02T18:15:21.485119+00:00 app[web.1]: 10.144.125.148 - - [02/Aug/2019:18:15:21 +0000] "POST /_dash-update-component HTTP/1.1" 200 3111 "https://hours-estimate.herokuapp.com/insights" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-02T18:15:37.746572+00:00 app[web.1]: 10.144.125.148 - - [02/Aug/2019:18:15:37 +0000] "POST /_dash-update-component HTTP/1.1" 200 2173 "https://hours-estimate.herokuapp.com/process" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-02T18:15:37.746187+00:00 heroku[router]: at=info method=POST path="/_dash-update-component" host=hours-estimate.herokuapp.com request_id=dface859-e8dd-4e13-8cf0-cd5d114909ad fwd="76.85.0.51" dyno=web.1 connect=0ms service=3ms status=200 bytes=2374 protocol=https
2019-08-02T18:15:47.544850+00:00 heroku[router]: at=info method=POST path="/_dash-update-component" host=hours-estimate.herokuapp.com request_id=38ad82ae-402d-4157-bf95-b6131788ca69 fwd="76.85.0.51" dyno=web.1 connect=1ms service=6ms status=200 bytes=3312 protocol=https
2019-08-02T18:15:47.545157+00:00 app[web.1]: 10.144.125.148 - - [02/Aug/2019:18:15:47 +0000] "POST /_dash-update-component HTTP/1.1" 200 3111 "https://hours-estimate.herokuapp.com/insights" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-02T18:28:56.557059+00:00 heroku[router]: at=info method=POST path="/_dash-update-component" host=hours-estimate.herokuapp.com request_id=bd17aa28-2ead-43c3-8e99-500aefab3476 fwd="76.85.0.51" dyno=web.1 connect=0ms service=152ms status=200 bytes=72899 protocol=https
2019-08-02T18:28:56.552745+00:00 app[web.1]: 10.143.95.56 - - [02/Aug/2019:18:28:56 +0000] "POST /_dash-update-component HTTP/1.1" 200 72697 "https://hours-estimate.herokuapp.com/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-02T18:58:45.511293+00:00 heroku[router]: at=info method=POST path="/_dash-update-component" host=hours-estimate.herokuapp.com request_id=3ebec7af-7519-42a5-afc0-ddb8a7169f3a fwd="76.85.0.51" dyno=web.1 connect=0ms service=2ms status=200 bytes=631 protocol=https
2019-08-02T18:58:45.508412+00:00 app[web.1]: 10.43.212.23 - - [02/Aug/2019:18:58:45 +0000] "POST /_dash-update-component HTTP/1.1" 200 478 "https://hours-estimate.herokuapp.com/predictions" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-02T18:58:48.168866+00:00 heroku[router]: at=info method=POST path="/_dash-update-component" host=hours-estimate.herokuapp.com request_id=364de110-2a82-4393-8914-1a94b289c998 fwd="76.85.0.51" dyno=web.1 connect=2ms service=8ms status=200 bytes=3312 protocol=https
2019-08-02T18:58:48.166125+00:00 app[web.1]: 10.43.212.23 - - [02/Aug/2019:18:58:48 +0000] "POST /_dash-update-component HTTP/1.1" 200 3111 "https://hours-estimate.herokuapp.com/insights" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-02T18:58:54.798783+00:00 heroku[router]: at=info method=POST path="/_dash-update-component" host=hours-estimate.herokuapp.com request_id=d11aa6fa-776e-4ca6-8208-5a081f579091 fwd="76.85.0.51" dyno=web.1 connect=0ms service=3ms status=200 bytes=2374 protocol=https
2019-08-02T18:58:54.795965+00:00 app[web.1]: 10.43.212.23 - - [02/Aug/2019:18:58:54 +0000] "POST /_dash-update-component HTTP/1.1" 200 2173 "https://hours-estimate.herokuapp.com/process" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-02T19:30:35.968601+00:00 heroku[web.1]: Idling
2019-08-02T19:30:35.971739+00:00 heroku[web.1]: State changed from up to down
2019-08-02T19:30:36.950204+00:00 heroku[web.1]: Stopping all processes with SIGTERM
2019-08-02T19:30:36.967553+00:00 app[web.1]: [2019-08-02 19:30:36 +0000] [11] [INFO] Worker exiting (pid: 11)
2019-08-02T19:30:36.968217+00:00 app[web.1]: [2019-08-02 19:30:36 +0000] [10] [INFO] Worker exiting (pid: 10)
2019-08-02T19:30:37.033604+00:00 app[web.1]: [2019-08-02 19:30:37 +0000] [4] [INFO] Handling signal: term
2019-08-02T19:30:37.340348+00:00 app[web.1]: [2019-08-02 19:30:37 +0000] [4] [INFO] Shutting down: Master
2019-08-02T19:30:37.445797+00:00 heroku[web.1]: Process exited with status 0
2019-08-02T20:37:01.828552+00:00 heroku[web.1]: Unidling
2019-08-02T20:37:01.831600+00:00 heroku[web.1]: State changed from down to starting
2019-08-02T20:37:12.750439+00:00 heroku[web.1]: Starting process with command `gunicorn run:server`
2019-08-02T20:37:15.171825+00:00 app[web.1]: [2019-08-02 20:37:15 +0000] [4] [INFO] Starting gunicorn 19.9.0
2019-08-02T20:37:15.172666+00:00 app[web.1]: [2019-08-02 20:37:15 +0000] [4] [INFO] Listening at: http://0.0.0.0:50039 (4)
2019-08-02T20:37:15.172807+00:00 app[web.1]: [2019-08-02 20:37:15 +0000] [4] [INFO] Using worker: sync
2019-08-02T20:37:15.177557+00:00 app[web.1]: [2019-08-02 20:37:15 +0000] [10] [INFO] Booting worker with pid: 10
2019-08-02T20:37:15.185699+00:00 app[web.1]: [2019-08-02 20:37:15 +0000] [11] [INFO] Booting worker with pid: 11
2019-08-02T20:37:16.514933+00:00 heroku[web.1]: State changed from starting to up
2019-08-02T20:37:24.797588+00:00 app[web.1]: 10.5.253.6 - - [02/Aug/2019:20:37:24 +0000] "GET / HTTP/1.1" 200 676 "-" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:68.0) Gecko/20100101 Firefox/68.0"
2019-08-02T20:37:24.919803+00:00 app[web.1]: 10.5.253.6 - - [02/Aug/2019:20:37:24 +0000] "GET /_dash-component-suites/dash_renderer/react@16.8.6.min.js?v=1.0.0&m=1564743930 HTTP/1.1" 200 4888 "https://hours-estimate.herokuapp.com/" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:68.0) Gecko/20100101 Firefox/68.0"
2019-08-02T20:37:24.998252+00:00 app[web.1]: 10.5.253.6 - - [02/Aug/2019:20:37:24 +0000] "GET /_dash-component-suites/dash_bootstrap_components/_components/dash_bootstrap_components.min.js?v=0.7.0&m=1564743930 HTTP/1.1" 200 45782 "https://hours-estimate.herokuapp.com/" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:68.0) Gecko/20100101 Firefox/68.0"
2019-08-02T20:37:25.011750+00:00 app[web.1]: 10.63.119.205 - - [02/Aug/2019:20:37:25 +0000] "GET /_dash-component-suites/dash_renderer/react-dom@16.8.6.min.js?v=1.0.0&m=1564743930 HTTP/1.1" 200 34843 "https://hours-estimate.herokuapp.com/" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:68.0) Gecko/20100101 Firefox/68.0"
2019-08-02T20:37:25.026378+00:00 app[web.1]: 10.63.252.153 - - [02/Aug/2019:20:37:25 +0000] "GET /_dash-component-suites/dash_renderer/prop-types@15.7.2.min.js?v=1.0.0&m=1564743930 HTTP/1.1" 200 832 "https://hours-estimate.herokuapp.com/" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:68.0) Gecko/20100101 Firefox/68.0"
2019-08-02T20:37:25.038195+00:00 app[web.1]: 10.65.77.132 - - [02/Aug/2019:20:37:25 +0000] "GET /_dash-component-suites/dash_core_components/highlight.pack.js?v=1.0.0&m=1564743936 HTTP/1.1" 200 14091 "https://hours-estimate.herokuapp.com/" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:68.0) Gecko/20100101 Firefox/68.0"
2019-08-02T20:37:24.798082+00:00 heroku[router]: at=info method=GET path="/" host=hours-estimate.herokuapp.com request_id=fe47c329-a23b-4b6c-99cb-fb0a473c01f6 fwd="68.80.57.146" dyno=web.1 connect=0ms service=6887ms status=200 bytes=884 protocol=https
2019-08-02T20:37:25.000170+00:00 heroku[router]: at=info method=GET path="/_dash-component-suites/dash_bootstrap_components/_components/dash_bootstrap_components.min.js?v=0.7.0&m=1564743930" host=hours-estimate.herokuapp.com request_id=34edf290-cf15-4d97-8eb8-cb501e9df2bf fwd="68.80.57.146" dyno=web.1 connect=1ms service=11ms status=200 bytes=46005 protocol=https
2019-08-02T20:37:25.015342+00:00 heroku[router]: at=info method=GET path="/_dash-component-suites/dash_renderer/react-dom@16.8.6.min.js?v=1.0.0&m=1564743930" host=hours-estimate.herokuapp.com request_id=7ff34dd3-7d1e-4151-b937-d94d0ccd7036 fwd="68.80.57.146" dyno=web.1 connect=1ms service=15ms status=200 bytes=35066 protocol=https
2019-08-02T20:37:24.920302+00:00 heroku[router]: at=info method=GET path="/_dash-component-suites/dash_renderer/react@16.8.6.min.js?v=1.0.0&m=1564743930" host=hours-estimate.herokuapp.com request_id=a68b2db6-7f7e-43e6-bcd4-18cbf9a26135 fwd="68.80.57.146" dyno=web.1 connect=1ms service=2ms status=200 bytes=5110 protocol=https
2019-08-02T20:37:25.026266+00:00 heroku[router]: at=info method=GET path="/_dash-component-suites/dash_renderer/prop-types@15.7.2.min.js?v=1.0.0&m=1564743930" host=hours-estimate.herokuapp.com request_id=1d278d90-7dc6-49c3-a65c-6d9b74a354fc fwd="68.80.57.146" dyno=web.1 connect=1ms service=3ms status=200 bytes=1053 protocol=https
2019-08-02T20:37:25.091243+00:00 heroku[router]: at=info method=GET path="/_dash-component-suites/dash_core_components/dash_core_components.min.js?v=1.0.0&m=1564743936" host=hours-estimate.herokuapp.com request_id=857837a1-2235-438b-ac8f-60c6c924f557 fwd="68.80.57.146" dyno=web.1 connect=1ms service=56ms status=200 bytes=279930 protocol=https
2019-08-02T20:37:25.037719+00:00 heroku[router]: at=info method=GET path="/_dash-component-suites/dash_core_components/highlight.pack.js?v=1.0.0&m=1564743936" host=hours-estimate.herokuapp.com request_id=2ffa0e40-57d6-46db-b3df-e662805d980a fwd="68.80.57.146" dyno=web.1 connect=1ms service=4ms status=200 bytes=14314 protocol=https
2019-08-02T20:37:25.092220+00:00 heroku[router]: at=info method=GET path="/_dash-component-suites/dash_html_components/dash_html_components.min.js?v=1.0.0&m=1564743930" host=hours-estimate.herokuapp.com request_id=90207473-ff37-4639-8f1c-9d8b8465738d fwd="68.80.57.146" dyno=web.1 connect=1ms service=29ms status=200 bytes=19125 protocol=https
2019-08-02T20:37:25.084838+00:00 app[web.1]: 10.37.254.231 - - [02/Aug/2019:20:37:25 +0000] "GET /_dash-component-suites/dash_core_components/dash_core_components.min.js?v=1.0.0&m=1564743936 HTTP/1.1" 200 279706 "https://hours-estimate.herokuapp.com/" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:68.0) Gecko/20100101 Firefox/68.0"
2019-08-02T20:37:25.090147+00:00 app[web.1]: 10.63.252.153 - - [02/Aug/2019:20:37:25 +0000] "GET /_dash-component-suites/dash_html_components/dash_html_components.min.js?v=1.0.0&m=1564743930 HTTP/1.1" 200 18902 "https://hours-estimate.herokuapp.com/" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:68.0) Gecko/20100101 Firefox/68.0"
2019-08-02T20:37:25.103011+00:00 app[web.1]: 10.63.119.205 - - [02/Aug/2019:20:37:25 +0000] "GET /_dash-component-suites/dash_renderer/dash_renderer.min.js?v=1.0.0&m=1564743930 HTTP/1.1" 200 79167 "https://hours-estimate.herokuapp.com/" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:68.0) Gecko/20100101 Firefox/68.0"
2019-08-02T20:37:25.199416+00:00 app[web.1]: 10.63.65.143 - - [02/Aug/2019:20:37:25 +0000] "GET /_dash-component-suites/dash_core_components/plotly-1.48.3.min.js?v=1.0.0&m=1564743936 HTTP/1.1" 200 918102 "https://hours-estimate.herokuapp.com/" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:68.0) Gecko/20100101 Firefox/68.0"
2019-08-02T20:37:25.109550+00:00 heroku[router]: at=info method=GET path="/_dash-component-suites/dash_renderer/dash_renderer.min.js?v=1.0.0&m=1564743930" host=hours-estimate.herokuapp.com request_id=d4591442-ffd4-49ff-86ee-8b507fa91187 fwd="68.80.57.146" dyno=web.1 connect=2ms service=35ms status=200 bytes=79390 protocol=https
2019-08-02T20:37:25.218566+00:00 heroku[router]: at=info method=GET path="/_dash-component-suites/dash_core_components/plotly-1.48.3.min.js?v=1.0.0&m=1564743936" host=hours-estimate.herokuapp.com request_id=97213c80-4e7d-4c0a-a2df-202a226a846c fwd="68.80.57.146" dyno=web.1 connect=1ms service=215ms status=200 bytes=918326 protocol=https
2019-08-02T20:37:26.209758+00:00 heroku[router]: at=info method=GET path="/_favicon.ico?v=1.0.2" host=hours-estimate.herokuapp.com request_id=c5d86280-4172-46ed-94c8-a0731f95906e fwd="68.80.57.146" dyno=web.1 connect=1ms service=3ms status=200 bytes=15237 protocol=https
2019-08-02T20:37:26.207929+00:00 app[web.1]: 10.63.65.143 - - [02/Aug/2019:20:37:26 +0000] "GET /_favicon.ico?v=1.0.2 HTTP/1.1" 200 15086 "-" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:68.0) Gecko/20100101 Firefox/68.0"
2019-08-02T20:37:26.928906+00:00 heroku[router]: at=info method=POST path="/_dash-update-component" host=hours-estimate.herokuapp.com request_id=95c13c62-4e19-4c38-a2e0-ae757bc5012b fwd="68.80.57.146" dyno=web.1 connect=1ms service=3ms status=200 bytes=297 protocol=https
2019-08-02T20:37:26.860164+00:00 heroku[router]: at=info method=GET path="/_dash-dependencies" host=hours-estimate.herokuapp.com request_id=ba81be09-8f31-499b-8ba6-1be0326d2b28 fwd="68.80.57.146" dyno=web.1 connect=0ms service=2ms status=200 bytes=274 protocol=https
2019-08-02T20:37:26.858232+00:00 app[web.1]: 10.63.65.143 - - [02/Aug/2019:20:37:26 +0000] "GET /_dash-layout HTTP/1.1" 200 515 "https://hours-estimate.herokuapp.com/" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:68.0) Gecko/20100101 Firefox/68.0"
2019-08-02T20:37:26.864392+00:00 app[web.1]: 10.37.254.231 - - [02/Aug/2019:20:37:26 +0000] "GET /_dash-dependencies HTTP/1.1" 200 121 "https://hours-estimate.herokuapp.com/" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:68.0) Gecko/20100101 Firefox/68.0"
2019-08-02T20:37:26.928428+00:00 app[web.1]: 10.63.65.143 - - [02/Aug/2019:20:37:26 +0000] "POST /_dash-update-component HTTP/1.1" 200 144 "https://hours-estimate.herokuapp.com/" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:68.0) Gecko/20100101 Firefox/68.0"
2019-08-02T20:37:26.858395+00:00 heroku[router]: at=info method=GET path="/_dash-layout" host=hours-estimate.herokuapp.com request_id=eff2aceb-9aee-4f6a-8e51-b288be287f81 fwd="68.80.57.146" dyno=web.1 connect=1ms service=3ms status=200 bytes=715 protocol=https
2019-08-02T20:37:27.140576+00:00 heroku[router]: at=info method=POST path="/_dash-update-component" host=hours-estimate.herokuapp.com request_id=88092d71-a5bd-40c9-a1da-d35194877d2a fwd="68.80.57.146" dyno=web.1 connect=1ms service=104ms status=200 bytes=72899 protocol=https
2019-08-02T20:37:27.134916+00:00 app[web.1]: 10.63.65.143 - - [02/Aug/2019:20:37:27 +0000] "POST /_dash-update-component HTTP/1.1" 200 72697 "https://hours-estimate.herokuapp.com/" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:68.0) Gecko/20100101 Firefox/68.0"
2019-08-02T20:46:02.511162+00:00 heroku[router]: at=info method=GET path="/" host=hours-estimate.herokuapp.com request_id=13ce96b4-70f8-4cd9-9205-1666b7d3dd3b fwd="76.85.0.51" dyno=web.1 connect=0ms service=3ms status=200 bytes=884 protocol=https
2019-08-02T20:46:02.510344+00:00 app[web.1]: 10.63.138.163 - - [02/Aug/2019:20:46:02 +0000] "GET / HTTP/1.1" 200 676 "https://lwjstudio.github.io/9999-12-31-all-posts/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-02T20:46:02.650641+00:00 app[web.1]: 10.63.138.163 - - [02/Aug/2019:20:46:02 +0000] "GET /_dash-component-suites/dash_renderer/react@16.8.6.min.js?v=1.0.0&m=1564743930 HTTP/1.1" 200 4888 "https://hours-estimate.herokuapp.com/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-02T20:46:02.654921+00:00 app[web.1]: 10.51.224.149 - - [02/Aug/2019:20:46:02 +0000] "GET /_dash-component-suites/dash_renderer/react-dom@16.8.6.min.js?v=1.0.0&m=1564743930 HTTP/1.1" 200 34843 "https://hours-estimate.herokuapp.com/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-02T20:46:02.702150+00:00 app[web.1]: 10.63.138.163 - - [02/Aug/2019:20:46:02 +0000] "GET /_dash-component-suites/dash_renderer/prop-types@15.7.2.min.js?v=1.0.0&m=1564743930 HTTP/1.1" 200 832 "https://hours-estimate.herokuapp.com/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-02T20:46:02.746881+00:00 app[web.1]: 10.67.229.200 - - [02/Aug/2019:20:46:02 +0000] "GET /_dash-component-suites/dash_core_components/highlight.pack.js?v=1.0.0&m=1564743936 HTTP/1.1" 200 14091 "https://hours-estimate.herokuapp.com/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-02T20:46:02.703175+00:00 heroku[router]: at=info method=GET path="/_dash-component-suites/dash_renderer/prop-types@15.7.2.min.js?v=1.0.0&m=1564743930" host=hours-estimate.herokuapp.com request_id=1b2ea9aa-7c37-44ed-82da-99b83ad97f8e fwd="76.85.0.51" dyno=web.1 connect=0ms service=2ms status=200 bytes=1053 protocol=https
2019-08-02T20:46:02.651908+00:00 heroku[router]: at=info method=GET path="/_dash-component-suites/dash_renderer/react@16.8.6.min.js?v=1.0.0&m=1564743930" host=hours-estimate.herokuapp.com request_id=c2713045-5bb5-4093-9f8a-5eaecdc474b7 fwd="76.85.0.51" dyno=web.1 connect=0ms service=3ms status=200 bytes=5110 protocol=https
2019-08-02T20:46:02.748997+00:00 heroku[router]: at=info method=GET path="/_dash-component-suites/dash_core_components/highlight.pack.js?v=1.0.0&m=1564743936" host=hours-estimate.herokuapp.com request_id=e997a99e-28c4-46e0-a5d2-cf0f7c92aef6 fwd="76.85.0.51" dyno=web.1 connect=0ms service=4ms status=200 bytes=14314 protocol=https
2019-08-02T20:46:02.658628+00:00 heroku[router]: at=info method=GET path="/_dash-component-suites/dash_renderer/react-dom@16.8.6.min.js?v=1.0.0&m=1564743930" host=hours-estimate.herokuapp.com request_id=b9aab9c3-7ec5-4bb4-872c-309190464717 fwd="76.85.0.51" dyno=web.1 connect=0ms service=8ms status=200 bytes=35066 protocol=https
2019-08-02T20:46:02.800396+00:00 heroku[router]: at=info method=GET path="/_dash-component-suites/dash_html_components/dash_html_components.min.js?v=1.0.0&m=1564743930" host=hours-estimate.herokuapp.com request_id=3ae4eebc-a485-401a-a6bd-edd899617bbd fwd="76.85.0.51" dyno=web.1 connect=0ms service=49ms status=200 bytes=19125 protocol=https
2019-08-02T20:46:02.808173+00:00 heroku[router]: at=info method=GET path="/_dash-component-suites/dash_bootstrap_components/_components/dash_bootstrap_components.min.js?v=0.7.0&m=1564743930" host=hours-estimate.herokuapp.com request_id=6b9fb708-b3e1-4f79-9924-04fcd0ad3e22 fwd="76.85.0.51" dyno=web.1 connect=0ms service=60ms status=200 bytes=46005 protocol=https
2019-08-02T20:46:02.825607+00:00 heroku[router]: at=info method=GET path="/_dash-component-suites/dash_renderer/dash_renderer.min.js?v=1.0.0&m=1564743930" host=hours-estimate.herokuapp.com request_id=b93dd13a-1898-40cd-b014-5e7d240a46c0 fwd="76.85.0.51" dyno=web.1 connect=0ms service=70ms status=200 bytes=79390 protocol=https
2019-08-02T20:46:02.903411+00:00 heroku[router]: at=info method=GET path="/_dash-component-suites/dash_core_components/plotly-1.48.3.min.js?v=1.0.0&m=1564743936" host=hours-estimate.herokuapp.com request_id=7bfa70ef-43d3-4a10-bbfd-c5c55ebc584c fwd="76.85.0.51" dyno=web.1 connect=0ms service=161ms status=200 bytes=918326 protocol=https
2019-08-02T20:46:02.791680+00:00 app[web.1]: 10.63.56.92 - - [02/Aug/2019:20:46:02 +0000] "GET /_dash-component-suites/dash_core_components/dash_core_components.min.js?v=1.0.0&m=1564743936 HTTP/1.1" 200 279706 "https://hours-estimate.herokuapp.com/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-02T20:46:02.797518+00:00 app[web.1]: 10.51.224.149 - - [02/Aug/2019:20:46:02 +0000] "GET /_dash-component-suites/dash_html_components/dash_html_components.min.js?v=1.0.0&m=1564743930 HTTP/1.1" 200 18902 "https://hours-estimate.herokuapp.com/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-02T20:46:02.808217+00:00 app[web.1]: 10.99.131.11 - - [02/Aug/2019:20:46:02 +0000] "GET /_dash-component-suites/dash_bootstrap_components/_components/dash_bootstrap_components.min.js?v=0.7.0&m=1564743930 HTTP/1.1" 200 45782 "https://hours-estimate.herokuapp.com/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-02T20:46:02.822364+00:00 app[web.1]: 10.63.138.163 - - [02/Aug/2019:20:46:02 +0000] "GET /_dash-component-suites/dash_renderer/dash_renderer.min.js?v=1.0.0&m=1564743930 HTTP/1.1" 200 79167 "https://hours-estimate.herokuapp.com/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-02T20:46:02.888461+00:00 app[web.1]: 10.69.234.140 - - [02/Aug/2019:20:46:02 +0000] "GET /_dash-component-suites/dash_core_components/plotly-1.48.3.min.js?v=1.0.0&m=1564743936 HTTP/1.1" 200 918102 "https://hours-estimate.herokuapp.com/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-02T20:46:02.808846+00:00 heroku[router]: at=info method=GET path="/_dash-component-suites/dash_core_components/dash_core_components.min.js?v=1.0.0&m=1564743936" host=hours-estimate.herokuapp.com request_id=e17a1c1d-72e2-4cd6-8437-18072915657f fwd="76.85.0.51" dyno=web.1 connect=1ms service=63ms status=200 bytes=279930 protocol=https
2019-08-02T20:46:03.754529+00:00 heroku[router]: at=info method=GET path="/_dash-dependencies" host=hours-estimate.herokuapp.com request_id=1f0858a3-96c7-4bc7-b92e-d5a8646629c2 fwd="76.85.0.51" dyno=web.1 connect=1ms service=2ms status=200 bytes=274 protocol=https
2019-08-02T20:46:03.954738+00:00 heroku[router]: at=info method=POST path="/_dash-update-component" host=hours-estimate.herokuapp.com request_id=732520b9-ed92-4bea-a16c-b06da37482b9 fwd="76.85.0.51" dyno=web.1 connect=1ms service=2ms status=200 bytes=297 protocol=https
2019-08-02T20:46:03.747605+00:00 app[web.1]: 10.69.234.140 - - [02/Aug/2019:20:46:03 +0000] "GET /_dash-layout HTTP/1.1" 200 515 "https://hours-estimate.herokuapp.com/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-02T20:46:03.753193+00:00 app[web.1]: 10.63.56.92 - - [02/Aug/2019:20:46:03 +0000] "GET /_dash-dependencies HTTP/1.1" 200 121 "https://hours-estimate.herokuapp.com/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-02T20:46:03.953841+00:00 app[web.1]: 10.63.56.92 - - [02/Aug/2019:20:46:03 +0000] "POST /_dash-update-component HTTP/1.1" 200 144 "https://hours-estimate.herokuapp.com/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-02T20:46:03.747533+00:00 heroku[router]: at=info method=GET path="/_dash-layout" host=hours-estimate.herokuapp.com request_id=d589f16a-0797-4569-af79-26e3314aca33 fwd="76.85.0.51" dyno=web.1 connect=0ms service=2ms status=200 bytes=715 protocol=https
2019-08-02T20:46:04.059473+00:00 heroku[router]: at=info method=POST path="/_dash-update-component" host=hours-estimate.herokuapp.com request_id=ce60fe3f-08f3-4a36-9816-7ac7eb0c522c fwd="76.85.0.51" dyno=web.1 connect=0ms service=90ms status=200 bytes=72899 protocol=https
2019-08-02T20:46:04.056722+00:00 app[web.1]: 10.69.234.140 - - [02/Aug/2019:20:46:04 +0000] "POST /_dash-update-component HTTP/1.1" 200 72697 "https://hours-estimate.herokuapp.com/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-02T20:46:29.977523+00:00 heroku[router]: at=info method=POST path="/_dash-update-component" host=hours-estimate.herokuapp.com request_id=c1c6cf45-0514-43c5-ad4b-c729c96f2fe8 fwd="76.85.0.51" dyno=web.1 connect=1ms service=8ms status=200 bytes=3312 protocol=https
2019-08-02T20:46:29.977348+00:00 app[web.1]: 10.69.234.140 - - [02/Aug/2019:20:46:29 +0000] "POST /_dash-update-component HTTP/1.1" 200 3111 "https://hours-estimate.herokuapp.com/insights" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-02T20:46:37.460904+00:00 app[web.1]: 10.69.234.140 - - [02/Aug/2019:20:46:37 +0000] "POST /_dash-update-component HTTP/1.1" 200 2173 "https://hours-estimate.herokuapp.com/process" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-02T20:46:48.189461+00:00 heroku[router]: at=info method=POST path="/_dash-update-component" host=hours-estimate.herokuapp.com request_id=edb81436-e388-4db5-b775-d5875d98abb7 fwd="76.85.0.51" dyno=web.1 connect=1ms service=114ms status=200 bytes=72899 protocol=https
2019-08-02T20:46:48.183746+00:00 app[web.1]: 10.69.234.140 - - [02/Aug/2019:20:46:48 +0000] "POST /_dash-update-component HTTP/1.1" 200 72697 "https://hours-estimate.herokuapp.com/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-02T20:46:52.285916+00:00 heroku[router]: at=info method=POST path="/_dash-update-component" host=hours-estimate.herokuapp.com request_id=61ef1016-65a9-4041-98fe-2f1da94cc55e fwd="76.85.0.51" dyno=web.1 connect=0ms service=2ms status=200 bytes=631 protocol=https
2019-08-02T20:46:52.285886+00:00 app[web.1]: 10.69.234.140 - - [02/Aug/2019:20:46:52 +0000] "POST /_dash-update-component HTTP/1.1" 200 478 "https://hours-estimate.herokuapp.com/predictions" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-02T20:47:01.103134+00:00 heroku[router]: at=info method=POST path="/_dash-update-component" host=hours-estimate.herokuapp.com request_id=4cf203aa-eb96-4399-9305-b281dfdfc8b6 fwd="76.85.0.51" dyno=web.1 connect=0ms service=107ms status=200 bytes=72899 protocol=https
2019-08-02T20:47:01.099974+00:00 app[web.1]: 10.69.234.140 - - [02/Aug/2019:20:47:01 +0000] "POST /_dash-update-component HTTP/1.1" 200 72697 "https://hours-estimate.herokuapp.com/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-02T20:47:02.812822+00:00 app[web.1]: 10.69.234.140 - - [02/Aug/2019:20:47:02 +0000] "POST /_dash-update-component HTTP/1.1" 200 2173 "https://hours-estimate.herokuapp.com/process" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-02T20:47:02.812789+00:00 heroku[router]: at=info method=POST path="/_dash-update-component" host=hours-estimate.herokuapp.com request_id=d990a15c-65e1-43c5-850a-0240ecc0b988 fwd="76.85.0.51" dyno=web.1 connect=0ms service=6ms status=200 bytes=2374 protocol=https
2019-08-02T20:47:19.593043+00:00 app[web.1]: 10.69.234.140 - - [02/Aug/2019:20:47:19 +0000] "POST /_dash-update-component HTTP/1.1" 200 72697 "https://hours-estimate.herokuapp.com/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-02T20:47:19.595666+00:00 heroku[router]: at=info method=POST path="/_dash-update-component" host=hours-estimate.herokuapp.com request_id=b60a7c59-9207-43ed-9c9f-9e85d188c1b7 fwd="76.85.0.51" dyno=web.1 connect=0ms service=105ms status=200 bytes=72899 protocol=https
2019-08-02T20:47:51.511869+00:00 app[web.1]: 10.69.234.140 - - [02/Aug/2019:20:47:51 +0000] "POST /_dash-update-component HTTP/1.1" 200 3111 "https://hours-estimate.herokuapp.com/insights" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-02T20:47:51.511886+00:00 heroku[router]: at=info method=POST path="/_dash-update-component" host=hours-estimate.herokuapp.com request_id=85658a40-154d-4276-b1b6-9145af19f878 fwd="76.85.0.51" dyno=web.1 connect=0ms service=7ms status=200 bytes=3312 protocol=https
2019-08-02T20:48:00.864193+00:00 heroku[router]: at=info method=POST path="/_dash-update-component" host=hours-estimate.herokuapp.com request_id=104920ff-2492-42a8-97af-62d55fcecf83 fwd="76.85.0.51" dyno=web.1 connect=0ms service=3ms status=200 bytes=2374 protocol=https
2019-08-02T20:48:00.864002+00:00 app[web.1]: 10.69.234.140 - - [02/Aug/2019:20:48:00 +0000] "POST /_dash-update-component HTTP/1.1" 200 2173 "https://hours-estimate.herokuapp.com/process" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-02T21:21:47.374227+00:00 heroku[web.1]: Idling
2019-08-02T21:21:47.378932+00:00 heroku[web.1]: State changed from up to down
2019-08-02T21:21:48.480723+00:00 heroku[web.1]: Stopping all processes with SIGTERM
2019-08-02T21:21:48.497779+00:00 app[web.1]: [2019-08-02 21:21:48 +0000] [10] [INFO] Worker exiting (pid: 10)
2019-08-02T21:21:48.498490+00:00 app[web.1]: [2019-08-02 21:21:48 +0000] [11] [INFO] Worker exiting (pid: 11)
2019-08-02T21:21:48.537259+00:00 app[web.1]: [2019-08-02 21:21:48 +0000] [4] [INFO] Handling signal: term
2019-08-02T21:21:48.638557+00:00 app[web.1]: [2019-08-02 21:21:48 +0000] [4] [INFO] Shutting down: Master
2019-08-02T21:21:48.803323+00:00 heroku[web.1]: Process exited with status 0
2019-08-02T21:34:04.131612+00:00 heroku[web.1]: Unidling
2019-08-02T21:34:04.137462+00:00 heroku[web.1]: State changed from down to starting
2019-08-02T21:34:14.801225+00:00 heroku[web.1]: Starting process with command `gunicorn run:server`
2019-08-02T21:34:16.849031+00:00 app[web.1]: [2019-08-02 21:34:16 +0000] [4] [INFO] Starting gunicorn 19.9.0
2019-08-02T21:34:16.849600+00:00 app[web.1]: [2019-08-02 21:34:16 +0000] [4] [INFO] Listening at: http://0.0.0.0:49291 (4)
2019-08-02T21:34:16.849674+00:00 app[web.1]: [2019-08-02 21:34:16 +0000] [4] [INFO] Using worker: sync
2019-08-02T21:34:16.853659+00:00 app[web.1]: [2019-08-02 21:34:16 +0000] [10] [INFO] Booting worker with pid: 10
2019-08-02T21:34:16.923533+00:00 app[web.1]: [2019-08-02 21:34:16 +0000] [11] [INFO] Booting worker with pid: 11
2019-08-02T21:34:17.487415+00:00 heroku[web.1]: State changed from starting to up
2019-08-02T21:34:30.178481+00:00 heroku[router]: at=info method=GET path="/" host=hours-estimate.herokuapp.com request_id=7b601264-3fb5-4f08-9394-e47c769478a3 fwd="69.174.154.31" dyno=web.1 connect=0ms service=11957ms status=200 bytes=884 protocol=https
2019-08-02T21:34:30.302690+00:00 heroku[router]: at=info method=GET path="/_dash-component-suites/dash_renderer/react-dom@16.8.6.min.js?v=1.0.0&m=1564743930" host=hours-estimate.herokuapp.com request_id=1bdd3ca3-61ea-4502-96f4-b90cab53b4c5 fwd="69.174.154.31" dyno=web.1 connect=0ms service=11ms status=200 bytes=35066 protocol=https
2019-08-02T21:34:30.244041+00:00 heroku[router]: at=info method=GET path="/_dash-component-suites/dash_renderer/react@16.8.6.min.js?v=1.0.0&m=1564743930" host=hours-estimate.herokuapp.com request_id=90e6387f-17e1-45f2-b7bf-fde46252d33f fwd="69.174.154.31" dyno=web.1 connect=0ms service=3ms status=200 bytes=5110 protocol=https
2019-08-02T21:34:30.177489+00:00 app[web.1]: 10.29.184.30 - - [02/Aug/2019:21:34:30 +0000] "GET / HTTP/1.1" 200 676 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-02T21:34:30.244418+00:00 app[web.1]: 10.29.184.30 - - [02/Aug/2019:21:34:30 +0000] "GET /_dash-component-suites/dash_renderer/react@16.8.6.min.js?v=1.0.0&m=1564743930 HTTP/1.1" 200 4888 "https://hours-estimate.herokuapp.com/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-02T21:34:30.301823+00:00 app[web.1]: 10.29.184.30 - - [02/Aug/2019:21:34:30 +0000] "GET /_dash-component-suites/dash_renderer/react-dom@16.8.6.min.js?v=1.0.0&m=1564743930 HTTP/1.1" 200 34843 "https://hours-estimate.herokuapp.com/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-02T21:34:30.424546+00:00 app[web.1]: 10.109.207.40 - - [02/Aug/2019:21:34:30 +0000] "GET /_dash-component-suites/dash_renderer/prop-types@15.7.2.min.js?v=1.0.0&m=1564743930 HTTP/1.1" 200 832 "https://hours-estimate.herokuapp.com/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-02T21:34:30.424699+00:00 heroku[router]: at=info method=GET path="/_dash-component-suites/dash_renderer/prop-types@15.7.2.min.js?v=1.0.0&m=1564743930" host=hours-estimate.herokuapp.com request_id=a6f4cb7d-186d-4777-8b32-1211af8617e3 fwd="69.174.154.31" dyno=web.1 connect=1ms service=99ms status=200 bytes=1053 protocol=https
2019-08-02T21:34:30.430004+00:00 heroku[router]: at=info method=GET path="/_dash-component-suites/dash_core_components/highlight.pack.js?v=1.0.0&m=1564743936" host=hours-estimate.herokuapp.com request_id=bc8c90da-13b2-4d43-a277-f13573bfc1d0 fwd="69.174.154.31" dyno=web.1 connect=0ms service=39ms status=200 bytes=14314 protocol=https
2019-08-02T21:34:30.428819+00:00 app[web.1]: 10.29.184.30 - - [02/Aug/2019:21:34:30 +0000] "GET /_dash-component-suites/dash_core_components/highlight.pack.js?v=1.0.0&m=1564743936 HTTP/1.1" 200 14091 "https://hours-estimate.herokuapp.com/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-02T21:34:30.531383+00:00 app[web.1]: 10.102.178.108 - - [02/Aug/2019:21:34:30 +0000] "GET /_dash-component-suites/dash_core_components/plotly-1.48.3.min.js?v=1.0.0&m=1564743936 HTTP/1.1" 200 918102 "https://hours-estimate.herokuapp.com/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-02T21:34:30.535138+00:00 app[web.1]: 10.109.207.40 - - [02/Aug/2019:21:34:30 +0000] "GET /_dash-component-suites/dash_core_components/dash_core_components.min.js?v=1.0.0&m=1564743936 HTTP/1.1" 200 279706 "https://hours-estimate.herokuapp.com/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-02T21:34:30.539624+00:00 app[web.1]: 10.29.184.30 - - [02/Aug/2019:21:34:30 +0000] "GET /_dash-component-suites/dash_html_components/dash_html_components.min.js?v=1.0.0&m=1564743930 HTTP/1.1" 200 18902 "https://hours-estimate.herokuapp.com/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-02T21:34:30.600279+00:00 app[web.1]: 10.29.184.30 - - [02/Aug/2019:21:34:30 +0000] "GET /_dash-component-suites/dash_bootstrap_components/_components/dash_bootstrap_components.min.js?v=0.7.0&m=1564743930 HTTP/1.1" 200 45782 "https://hours-estimate.herokuapp.com/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-02T21:34:30.542009+00:00 heroku[router]: at=info method=GET path="/_dash-component-suites/dash_html_components/dash_html_components.min.js?v=1.0.0&m=1564743930" host=hours-estimate.herokuapp.com request_id=f0ac5692-fbdc-4f61-9112-2a40fcf6657e fwd="69.174.154.31" dyno=web.1 connect=0ms service=67ms status=200 bytes=19125 protocol=https
2019-08-02T21:34:30.601812+00:00 heroku[router]: at=info method=GET path="/_dash-component-suites/dash_bootstrap_components/_components/dash_bootstrap_components.min.js?v=0.7.0&m=1564743930" host=hours-estimate.herokuapp.com request_id=e07846be-0d4a-4da7-8cfd-e0a10893df97 fwd="69.174.154.31" dyno=web.1 connect=0ms service=13ms status=200 bytes=46005 protocol=https
2019-08-02T21:34:30.557131+00:00 heroku[router]: at=info method=GET path="/_dash-component-suites/dash_core_components/dash_core_components.min.js?v=1.0.0&m=1564743936" host=hours-estimate.herokuapp.com request_id=f2d17c06-109e-4ed0-8424-60c0d9b93466 fwd="69.174.154.31" dyno=web.1 connect=1ms service=89ms status=200 bytes=279930 protocol=https
2019-08-02T21:34:30.710104+00:00 heroku[router]: at=info method=GET path="/_dash-component-suites/dash_renderer/dash_renderer.min.js?v=1.0.0&m=1564743930" host=hours-estimate.herokuapp.com request_id=87c8e249-1ba8-432e-a90e-b6dcdb34462b fwd="69.174.154.31" dyno=web.1 connect=1ms service=20ms status=200 bytes=79390 protocol=https
2019-08-02T21:34:30.561001+00:00 heroku[router]: at=info method=GET path="/_dash-component-suites/dash_core_components/plotly-1.48.3.min.js?v=1.0.0&m=1564743936" host=hours-estimate.herokuapp.com request_id=2085bad1-2045-425a-bfc9-e2a680a97a2d fwd="69.174.154.31" dyno=web.1 connect=1ms service=235ms status=200 bytes=918326 protocol=https
2019-08-02T21:34:30.708132+00:00 app[web.1]: 10.29.184.30 - - [02/Aug/2019:21:34:30 +0000] "GET /_dash-component-suites/dash_renderer/dash_renderer.min.js?v=1.0.0&m=1564743930 HTTP/1.1" 200 79167 "https://hours-estimate.herokuapp.com/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-02T21:34:31.329350+00:00 heroku[router]: at=info method=GET path="/_dash-dependencies" host=hours-estimate.herokuapp.com request_id=d086b8c9-6410-440c-82cb-196ee192cb53 fwd="69.174.154.31" dyno=web.1 connect=0ms service=3ms status=200 bytes=274 protocol=https
2019-08-02T21:34:31.328919+00:00 heroku[router]: at=info method=GET path="/_dash-layout" host=hours-estimate.herokuapp.com request_id=72b5c04a-79dd-421d-a3ca-7623527d5719 fwd="69.174.154.31" dyno=web.1 connect=1ms service=4ms status=200 bytes=715 protocol=https
2019-08-02T21:34:31.328331+00:00 app[web.1]: 10.102.178.108 - - [02/Aug/2019:21:34:31 +0000] "GET /_dash-layout HTTP/1.1" 200 515 "https://hours-estimate.herokuapp.com/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-02T21:34:31.330099+00:00 app[web.1]: 10.29.184.30 - - [02/Aug/2019:21:34:31 +0000] "GET /_dash-dependencies HTTP/1.1" 200 121 "https://hours-estimate.herokuapp.com/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-02T21:34:31.384106+00:00 app[web.1]: 10.29.184.30 - - [02/Aug/2019:21:34:31 +0000] "POST /_dash-update-component HTTP/1.1" 200 144 "https://hours-estimate.herokuapp.com/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-02T21:34:31.383225+00:00 heroku[router]: at=info method=POST path="/_dash-update-component" host=hours-estimate.herokuapp.com request_id=3c847f11-dbe7-4d2d-9a37-74a086d26483 fwd="69.174.154.31" dyno=web.1 connect=0ms service=3ms status=200 bytes=297 protocol=https
2019-08-02T21:34:31.668115+00:00 heroku[router]: at=info method=POST path="/_dash-update-component" host=hours-estimate.herokuapp.com request_id=d1f5ac17-73fb-4a50-af2b-7a9e38ced2c3 fwd="69.174.154.31" dyno=web.1 connect=1ms service=273ms status=200 bytes=72899 protocol=https
2019-08-02T21:34:31.663473+00:00 app[web.1]: 10.102.178.108 - - [02/Aug/2019:21:34:31 +0000] "POST /_dash-update-component HTTP/1.1" 200 72697 "https://hours-estimate.herokuapp.com/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-02T21:34:44.240598+00:00 app[web.1]: 10.102.178.108 - - [02/Aug/2019:21:34:44 +0000] "POST /_dash-update-component HTTP/1.1" 200 478 "https://hours-estimate.herokuapp.com/predictions" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-02T21:34:44.241629+00:00 heroku[router]: at=info method=POST path="/_dash-update-component" host=hours-estimate.herokuapp.com request_id=e9194c3d-a0b1-46b5-b584-909e8412ce1c fwd="69.174.154.31" dyno=web.1 connect=1ms service=3ms status=200 bytes=631 protocol=https
2019-08-02T21:34:45.823276+00:00 heroku[router]: at=info method=POST path="/_dash-update-component" host=hours-estimate.herokuapp.com request_id=393a0a9d-cb27-4c41-a91b-0495c78f1a54 fwd="69.174.154.31" dyno=web.1 connect=1ms service=7ms status=200 bytes=3312 protocol=https
2019-08-02T21:34:45.823398+00:00 app[web.1]: 10.102.178.108 - - [02/Aug/2019:21:34:45 +0000] "POST /_dash-update-component HTTP/1.1" 200 3111 "https://hours-estimate.herokuapp.com/insights" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-02T21:34:46.846277+00:00 heroku[router]: at=info method=POST path="/_dash-update-component" host=hours-estimate.herokuapp.com request_id=8832f7fc-3f61-4267-84b3-c19f7fdddeb8 fwd="69.174.154.31" dyno=web.1 connect=1ms service=4ms status=200 bytes=2374 protocol=https
2019-08-02T21:34:46.845534+00:00 app[web.1]: 10.102.178.108 - - [02/Aug/2019:21:34:46 +0000] "POST /_dash-update-component HTTP/1.1" 200 2173 "https://hours-estimate.herokuapp.com/process" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-02T21:34:48.207080+00:00 heroku[router]: at=info method=POST path="/_dash-update-component" host=hours-estimate.herokuapp.com request_id=089d7d16-231d-479b-b10e-c0c841bbf606 fwd="69.174.154.31" dyno=web.1 connect=1ms service=130ms status=200 bytes=72899 protocol=https
2019-08-02T21:34:48.203436+00:00 app[web.1]: 10.102.178.108 - - [02/Aug/2019:21:34:48 +0000] "POST /_dash-update-component HTTP/1.1" 200 72697 "https://hours-estimate.herokuapp.com/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-02T21:36:08.182866+00:00 heroku[router]: at=info method=POST path="/_dash-update-component" host=hours-estimate.herokuapp.com request_id=140db3d1-48d5-45f0-a38e-dc0f7e8ef65a fwd="69.174.154.31" dyno=web.1 connect=1ms service=10ms status=200 bytes=3312 protocol=https
2019-08-02T21:36:08.181497+00:00 app[web.1]: 10.141.86.140 - - [02/Aug/2019:21:36:08 +0000] "POST /_dash-update-component HTTP/1.1" 200 3111 "https://hours-estimate.herokuapp.com/insights" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-02T21:36:09.236489+00:00 heroku[router]: at=info method=POST path="/_dash-update-component" host=hours-estimate.herokuapp.com request_id=b806d0df-9e75-4fe5-8b1a-8c1087b3a375 fwd="69.174.154.31" dyno=web.1 connect=1ms service=4ms status=200 bytes=2374 protocol=https
2019-08-02T21:36:09.235029+00:00 app[web.1]: 10.141.86.140 - - [02/Aug/2019:21:36:09 +0000] "POST /_dash-update-component HTTP/1.1" 200 2173 "https://hours-estimate.herokuapp.com/process" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-02T21:36:09.940036+00:00 heroku[router]: at=info method=POST path="/_dash-update-component" host=hours-estimate.herokuapp.com request_id=beeeb5fc-1dc5-409a-93d5-327d03ccf856 fwd="69.174.154.31" dyno=web.1 connect=1ms service=2ms status=200 bytes=631 protocol=https
2019-08-02T21:36:09.938377+00:00 app[web.1]: 10.141.86.140 - - [02/Aug/2019:21:36:09 +0000] "POST /_dash-update-component HTTP/1.1" 200 478 "https://hours-estimate.herokuapp.com/predictions" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-02T21:36:12.579503+00:00 heroku[router]: at=info method=POST path="/_dash-update-component" host=hours-estimate.herokuapp.com request_id=418e21f4-e5cb-461b-a122-882f69d862c2 fwd="69.174.154.31" dyno=web.1 connect=1ms service=167ms status=200 bytes=72899 protocol=https
2019-08-02T21:36:12.574914+00:00 app[web.1]: 10.141.86.140 - - [02/Aug/2019:21:36:12 +0000] "POST /_dash-update-component HTTP/1.1" 200 72697 "https://hours-estimate.herokuapp.com/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-02T21:45:36.114712+00:00 heroku[router]: at=info method=POST path="/_dash-update-component" host=hours-estimate.herokuapp.com request_id=1f29d38f-8f6d-49cf-bf5e-09bb018f0aea fwd="99.100.99.240" dyno=web.1 connect=0ms service=255ms status=200 bytes=72899 protocol=https
2019-08-02T21:45:36.112141+00:00 app[web.1]: 10.35.200.79 - - [02/Aug/2019:21:45:36 +0000] "POST /_dash-update-component HTTP/1.1" 200 72697 "https://hours-estimate.herokuapp.com/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-02T21:49:12.826883+00:00 heroku[router]: at=info method=POST path="/_dash-update-component" host=hours-estimate.herokuapp.com request_id=867297fe-9c0d-4d71-a569-8aa5530629fe fwd="69.174.154.31" dyno=web.1 connect=0ms service=2ms status=200 bytes=631 protocol=https
2019-08-02T21:49:12.826955+00:00 app[web.1]: 10.43.181.165 - - [02/Aug/2019:21:49:12 +0000] "POST /_dash-update-component HTTP/1.1" 200 478 "https://hours-estimate.herokuapp.com/predictions" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-02T21:49:14.449218+00:00 heroku[router]: at=info method=POST path="/_dash-update-component" host=hours-estimate.herokuapp.com request_id=0442a034-44ed-4203-a49a-7a3b0f71ad94 fwd="69.174.154.31" dyno=web.1 connect=0ms service=108ms status=200 bytes=72899 protocol=https
2019-08-02T21:49:14.446590+00:00 app[web.1]: 10.43.181.165 - - [02/Aug/2019:21:49:14 +0000] "POST /_dash-update-component HTTP/1.1" 200 72697 "https://hours-estimate.herokuapp.com/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-02T22:00:01.299088+00:00 heroku[router]: at=info method=POST path="/_dash-update-component" host=hours-estimate.herokuapp.com request_id=c20a7284-6dad-4eb8-ab56-1e68ade0c8dc fwd="69.174.154.31" dyno=web.1 connect=1ms service=3ms status=200 bytes=631 protocol=https
2019-08-02T22:00:01.298224+00:00 app[web.1]: 10.31.66.169 - - [02/Aug/2019:22:00:01 +0000] "POST /_dash-update-component HTTP/1.1" 200 478 "https://hours-estimate.herokuapp.com/predictions" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-02T22:00:22.467607+00:00 heroku[router]: at=info method=POST path="/_dash-update-component" host=hours-estimate.herokuapp.com request_id=b3b17955-8a5a-4638-afc0-1f3054bb4e03 fwd="69.174.154.31" dyno=web.1 connect=1ms service=99ms status=200 bytes=72899 protocol=https
2019-08-02T22:00:22.463012+00:00 app[web.1]: 10.31.66.169 - - [02/Aug/2019:22:00:22 +0000] "POST /_dash-update-component HTTP/1.1" 200 72697 "https://hours-estimate.herokuapp.com/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-02T22:00:25.492171+00:00 heroku[router]: at=info method=POST path="/_dash-update-component" host=hours-estimate.herokuapp.com request_id=28436628-9b67-4a0c-8a33-d1a4b62e8e8b fwd="69.174.154.31" dyno=web.1 connect=1ms service=7ms status=200 bytes=3312 protocol=https
2019-08-02T22:00:25.491291+00:00 app[web.1]: 10.31.66.169 - - [02/Aug/2019:22:00:25 +0000] "POST /_dash-update-component HTTP/1.1" 200 3111 "https://hours-estimate.herokuapp.com/insights" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-02T22:00:26.623114+00:00 app[web.1]: 10.31.66.169 - - [02/Aug/2019:22:00:26 +0000] "POST /_dash-update-component HTTP/1.1" 200 2173 "https://hours-estimate.herokuapp.com/process" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-02T22:00:26.624384+00:00 heroku[router]: at=info method=POST path="/_dash-update-component" host=hours-estimate.herokuapp.com request_id=9d9facf9-7581-4e70-b5e6-d3e1145bd824 fwd="69.174.154.31" dyno=web.1 connect=5ms service=7ms status=200 bytes=2374 protocol=https
2019-08-02T22:00:27.792912+00:00 app[web.1]: 10.31.66.169 - - [02/Aug/2019:22:00:27 +0000] "POST /_dash-update-component HTTP/1.1" 200 478 "https://hours-estimate.herokuapp.com/predictions" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-02T22:00:27.793718+00:00 heroku[router]: at=info method=POST path="/_dash-update-component" host=hours-estimate.herokuapp.com request_id=393086e8-de91-4249-ab2b-473b2b249e3f fwd="69.174.154.31" dyno=web.1 connect=1ms service=3ms status=200 bytes=631 protocol=https
2019-08-02T22:00:29.106489+00:00 heroku[router]: at=info method=POST path="/_dash-update-component" host=hours-estimate.herokuapp.com request_id=7676a62a-1bdc-49a1-ab72-21eab14c6e52 fwd="69.174.154.31" dyno=web.1 connect=1ms service=148ms status=200 bytes=72899 protocol=https
2019-08-02T22:00:29.097445+00:00 app[web.1]: 10.31.66.169 - - [02/Aug/2019:22:00:29 +0000] "POST /_dash-update-component HTTP/1.1" 200 72697 "https://hours-estimate.herokuapp.com/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-02T22:36:01.321873+00:00 heroku[router]: at=info method=POST path="/_dash-update-component" host=hours-estimate.herokuapp.com request_id=4dd05cc1-7ddd-4d2b-a7b9-d7e638b111bf fwd="99.100.99.240" dyno=web.1 connect=1ms service=7ms status=200 bytes=3312 protocol=https
2019-08-02T22:36:01.321835+00:00 app[web.1]: 10.31.55.123 - - [02/Aug/2019:22:36:01 +0000] "POST /_dash-update-component HTTP/1.1" 200 3111 "https://hours-estimate.herokuapp.com/insights" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-02T22:36:08.806175+00:00 heroku[router]: at=info method=POST path="/_dash-update-component" host=hours-estimate.herokuapp.com request_id=73570106-09c5-428e-9838-6338eb7779ff fwd="99.100.99.240" dyno=web.1 connect=1ms service=4ms status=200 bytes=2374 protocol=https
2019-08-02T22:36:08.806050+00:00 app[web.1]: 10.31.55.123 - - [02/Aug/2019:22:36:08 +0000] "POST /_dash-update-component HTTP/1.1" 200 2173 "https://hours-estimate.herokuapp.com/process" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-02T22:36:18.103243+00:00 heroku[router]: at=info method=POST path="/_dash-update-component" host=hours-estimate.herokuapp.com request_id=8f645521-09c5-4d87-942c-9ddc83dfba6f fwd="99.100.99.240" dyno=web.1 connect=1ms service=115ms status=200 bytes=72899 protocol=https
2019-08-02T22:36:18.100001+00:00 app[web.1]: 10.31.55.123 - - [02/Aug/2019:22:36:18 +0000] "POST /_dash-update-component HTTP/1.1" 200 72697 "https://hours-estimate.herokuapp.com/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-02T23:13:51.766160+00:00 heroku[web.1]: Idling
2019-08-02T23:13:51.770226+00:00 heroku[web.1]: State changed from up to down
2019-08-02T23:13:52.792264+00:00 heroku[web.1]: Stopping all processes with SIGTERM
2019-08-02T23:13:52.809954+00:00 app[web.1]: [2019-08-02 23:13:52 +0000] [11] [INFO] Worker exiting (pid: 11)
2019-08-02T23:13:52.824488+00:00 app[web.1]: [2019-08-02 23:13:52 +0000] [10] [INFO] Worker exiting (pid: 10)
2019-08-02T23:13:52.858645+00:00 app[web.1]: [2019-08-02 23:13:52 +0000] [4] [INFO] Handling signal: term
2019-08-02T23:13:52.960678+00:00 app[web.1]: [2019-08-02 23:13:52 +0000] [4] [INFO] Shutting down: Master
2019-08-02T23:13:53.067628+00:00 heroku[web.1]: Process exited with status 0
2019-08-02T23:58:20.247412+00:00 heroku[web.1]: Unidling
2019-08-02T23:58:20.253076+00:00 heroku[web.1]: State changed from down to starting
2019-08-02T23:58:30.018284+00:00 heroku[web.1]: Starting process with command `gunicorn run:server`
2019-08-02T23:58:31.876010+00:00 app[web.1]: [2019-08-02 23:58:31 +0000] [4] [INFO] Starting gunicorn 19.9.0
2019-08-02T23:58:31.876619+00:00 app[web.1]: [2019-08-02 23:58:31 +0000] [4] [INFO] Listening at: http://0.0.0.0:3107 (4)
2019-08-02T23:58:31.876731+00:00 app[web.1]: [2019-08-02 23:58:31 +0000] [4] [INFO] Using worker: sync
2019-08-02T23:58:31.880612+00:00 app[web.1]: [2019-08-02 23:58:31 +0000] [10] [INFO] Booting worker with pid: 10
2019-08-02T23:58:31.890686+00:00 app[web.1]: [2019-08-02 23:58:31 +0000] [11] [INFO] Booting worker with pid: 11
2019-08-02T23:58:32.608078+00:00 heroku[web.1]: State changed from starting to up
2019-08-02T23:58:43.211589+00:00 heroku[router]: at=info method=POST path="/_dash-update-component" host=hours-estimate.herokuapp.com request_id=6f123105-4745-4a01-94d0-63f38507d27c fwd="69.174.154.31" dyno=web.1 connect=1ms service=8860ms status=200 bytes=631 protocol=https
2019-08-02T23:58:43.213071+00:00 heroku[router]: at=info method=POST path="/_dash-update-component" host=hours-estimate.herokuapp.com request_id=cd6087c5-9725-4cf6-8346-981dea941ef5 fwd="69.174.154.31" dyno=web.1 connect=1ms service=9412ms status=200 bytes=631 protocol=https
2019-08-02T23:58:43.209034+00:00 app[web.1]: 10.45.93.206 - - [02/Aug/2019:23:58:43 +0000] "POST /_dash-update-component HTTP/1.1" 200 478 "https://hours-estimate.herokuapp.com/predictions" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-02T23:58:43.209356+00:00 app[web.1]: 10.31.250.70 - - [02/Aug/2019:23:58:43 +0000] "POST /_dash-update-component HTTP/1.1" 200 478 "https://hours-estimate.herokuapp.com/predictions" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-03T00:32:50.211235+00:00 heroku[web.1]: Idling
2019-08-03T00:32:50.229215+00:00 heroku[web.1]: State changed from up to down
2019-08-03T00:32:51.265859+00:00 heroku[web.1]: Stopping all processes with SIGTERM
2019-08-03T00:32:51.282160+00:00 app[web.1]: [2019-08-03 00:32:51 +0000] [11] [INFO] Worker exiting (pid: 11)
2019-08-03T00:32:51.282173+00:00 app[web.1]: [2019-08-03 00:32:51 +0000] [10] [INFO] Worker exiting (pid: 10)
2019-08-03T00:32:51.282299+00:00 app[web.1]: [2019-08-03 00:32:51 +0000] [4] [INFO] Handling signal: term
2019-08-03T00:32:51.385772+00:00 app[web.1]: [2019-08-03 00:32:51 +0000] [4] [INFO] Shutting down: Master
2019-08-03T00:32:51.466745+00:00 heroku[web.1]: Process exited with status 0
2019-08-03T00:32:59.173496+00:00 heroku[web.1]: Unidling
2019-08-03T00:32:59.195210+00:00 heroku[web.1]: State changed from down to starting
2019-08-03T00:33:10.168596+00:00 heroku[web.1]: Starting process with command `gunicorn run:server`
2019-08-03T00:33:12.850584+00:00 app[web.1]: [2019-08-03 00:33:12 +0000] [4] [INFO] Starting gunicorn 19.9.0
2019-08-03T00:33:12.851256+00:00 app[web.1]: [2019-08-03 00:33:12 +0000] [4] [INFO] Listening at: http://0.0.0.0:18190 (4)
2019-08-03T00:33:12.851400+00:00 app[web.1]: [2019-08-03 00:33:12 +0000] [4] [INFO] Using worker: sync
2019-08-03T00:33:12.856020+00:00 app[web.1]: [2019-08-03 00:33:12 +0000] [10] [INFO] Booting worker with pid: 10
2019-08-03T00:33:12.956076+00:00 app[web.1]: [2019-08-03 00:33:12 +0000] [11] [INFO] Booting worker with pid: 11
2019-08-03T00:33:13.873800+00:00 heroku[web.1]: State changed from starting to up
2019-08-03T00:33:29.328245+00:00 heroku[router]: at=info method=GET path="/" host=hours-estimate.herokuapp.com request_id=0b1d92e3-ad2c-4989-99c4-2cef02e5a08d fwd="69.174.154.31" dyno=web.1 connect=1ms service=14047ms status=200 bytes=884 protocol=https
2019-08-03T00:33:29.328080+00:00 app[web.1]: 10.31.80.242 - - [03/Aug/2019:00:33:29 +0000] "GET / HTTP/1.1" 200 676 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-03T00:33:29.453576+00:00 app[web.1]: 10.31.80.242 - - [03/Aug/2019:00:33:29 +0000] "GET /_dash-component-suites/dash_renderer/react@16.8.6.min.js?v=1.0.0&m=1564743930 HTTP/1.1" 200 4888 "https://hours-estimate.herokuapp.com/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-03T00:33:29.514996+00:00 app[web.1]: 10.31.80.242 - - [03/Aug/2019:00:33:29 +0000] "GET /_dash-component-suites/dash_renderer/react-dom@16.8.6.min.js?v=1.0.0&m=1564743930 HTTP/1.1" 200 34843 "https://hours-estimate.herokuapp.com/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-03T00:33:29.522135+00:00 app[web.1]: 10.143.95.56 - - [03/Aug/2019:00:33:29 +0000] "GET /_dash-component-suites/dash_renderer/prop-types@15.7.2.min.js?v=1.0.0&m=1564743930 HTTP/1.1" 200 832 "https://hours-estimate.herokuapp.com/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-03T00:33:29.572230+00:00 app[web.1]: 10.143.95.56 - - [03/Aug/2019:00:33:29 +0000] "GET /_dash-component-suites/dash_core_components/highlight.pack.js?v=1.0.0&m=1564743936 HTTP/1.1" 200 14091 "https://hours-estimate.herokuapp.com/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-03T00:33:29.453355+00:00 heroku[router]: at=info method=GET path="/_dash-component-suites/dash_renderer/react@16.8.6.min.js?v=1.0.0&m=1564743930" host=hours-estimate.herokuapp.com request_id=430c5b22-e830-43bb-8603-894442c17ff1 fwd="69.174.154.31" dyno=web.1 connect=1ms service=19ms status=200 bytes=5110 protocol=https
2019-08-03T00:33:29.516219+00:00 heroku[router]: at=info method=GET path="/_dash-component-suites/dash_renderer/react-dom@16.8.6.min.js?v=1.0.0&m=1564743930" host=hours-estimate.herokuapp.com request_id=6f284b6c-fff5-4959-b6f7-a16dcbac45a0 fwd="69.174.154.31" dyno=web.1 connect=1ms service=20ms status=200 bytes=35066 protocol=https
2019-08-03T00:33:29.521157+00:00 heroku[router]: at=info method=GET path="/_dash-component-suites/dash_renderer/prop-types@15.7.2.min.js?v=1.0.0&m=1564743930" host=hours-estimate.herokuapp.com request_id=fea32d25-dc14-4dc2-8c28-f87910e4a79c fwd="69.174.154.31" dyno=web.1 connect=1ms service=5ms status=200 bytes=1053 protocol=https
2019-08-03T00:33:29.687684+00:00 heroku[router]: at=info method=GET path="/_dash-component-suites/dash_core_components/dash_core_components.min.js?v=1.0.0&m=1564743936" host=hours-estimate.herokuapp.com request_id=0a98703c-070b-41cb-b9cf-9e19edf7a36d fwd="69.174.154.31" dyno=web.1 connect=1ms service=82ms status=200 bytes=279930 protocol=https
2019-08-03T00:33:29.572001+00:00 heroku[router]: at=info method=GET path="/_dash-component-suites/dash_core_components/highlight.pack.js?v=1.0.0&m=1564743936" host=hours-estimate.herokuapp.com request_id=706a0e53-dd27-4986-b901-b567c06a9f5c fwd="69.174.154.31" dyno=web.1 connect=1ms service=8ms status=200 bytes=14314 protocol=https
2019-08-03T00:33:29.676154+00:00 app[web.1]: 10.31.80.242 - - [03/Aug/2019:00:33:29 +0000] "GET /_dash-component-suites/dash_core_components/dash_core_components.min.js?v=1.0.0&m=1564743936 HTTP/1.1" 200 279706 "https://hours-estimate.herokuapp.com/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-03T00:33:29.691836+00:00 app[web.1]: 10.143.95.56 - - [03/Aug/2019:00:33:29 +0000] "GET /_dash-component-suites/dash_html_components/dash_html_components.min.js?v=1.0.0&m=1564743930 HTTP/1.1" 200 18902 "https://hours-estimate.herokuapp.com/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-03T00:33:29.762264+00:00 app[web.1]: 10.143.95.56 - - [03/Aug/2019:00:33:29 +0000] "GET /_dash-component-suites/dash_bootstrap_components/_components/dash_bootstrap_components.min.js?v=0.7.0&m=1564743930 HTTP/1.1" 200 45782 "https://hours-estimate.herokuapp.com/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-03T00:33:29.777665+00:00 app[web.1]: 10.158.137.35 - - [03/Aug/2019:00:33:29 +0000] "GET /_dash-component-suites/dash_core_components/plotly-1.48.3.min.js?v=1.0.0&m=1564743936 HTTP/1.1" 200 918102 "https://hours-estimate.herokuapp.com/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-03T00:33:29.861527+00:00 app[web.1]: 10.31.80.242 - - [03/Aug/2019:00:33:29 +0000] "GET /_dash-component-suites/dash_renderer/dash_renderer.min.js?v=1.0.0&m=1564743930 HTTP/1.1" 200 79167 "https://hours-estimate.herokuapp.com/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-03T00:33:29.865057+00:00 heroku[router]: at=info method=GET path="/_dash-component-suites/dash_renderer/dash_renderer.min.js?v=1.0.0&m=1564743930" host=hours-estimate.herokuapp.com request_id=3a437d9e-2dc8-482c-9dc4-92e235732e1f fwd="69.174.154.31" dyno=web.1 connect=1ms service=26ms status=200 bytes=79390 protocol=https
2019-08-03T00:33:29.692242+00:00 heroku[router]: at=info method=GET path="/_dash-component-suites/dash_html_components/dash_html_components.min.js?v=1.0.0&m=1564743930" host=hours-estimate.herokuapp.com request_id=9d4eb19c-fa3a-4d12-a45d-b31d5dcbaaeb fwd="69.174.154.31" dyno=web.1 connect=1ms service=66ms status=200 bytes=19125 protocol=https
2019-08-03T00:33:29.803295+00:00 heroku[router]: at=info method=GET path="/_dash-component-suites/dash_core_components/plotly-1.48.3.min.js?v=1.0.0&m=1564743936" host=hours-estimate.herokuapp.com request_id=8e87b234-1255-46ba-8814-9b06f00dbcd5 fwd="69.174.154.31" dyno=web.1 connect=1ms service=272ms status=200 bytes=918326 protocol=https
2019-08-03T00:33:29.764531+00:00 heroku[router]: at=info method=GET path="/_dash-component-suites/dash_bootstrap_components/_components/dash_bootstrap_components.min.js?v=0.7.0&m=1564743930" host=hours-estimate.herokuapp.com request_id=1b9827e7-3c34-4648-8b9b-aa86a9b8bc87 fwd="69.174.154.31" dyno=web.1 connect=1ms service=25ms status=200 bytes=46005 protocol=https
2019-08-03T00:33:30.735165+00:00 heroku[router]: at=info method=GET path="/_dash-dependencies" host=hours-estimate.herokuapp.com request_id=39faa1ff-3f9d-477a-b610-fd58687c6a2f fwd="69.174.154.31" dyno=web.1 connect=1ms service=2ms status=200 bytes=274 protocol=https
2019-08-03T00:33:30.738615+00:00 heroku[router]: at=info method=GET path="/_dash-layout" host=hours-estimate.herokuapp.com request_id=dd0fe969-e038-4311-abee-962a8a2c4ac2 fwd="69.174.154.31" dyno=web.1 connect=1ms service=6ms status=200 bytes=715 protocol=https
2019-08-03T00:33:30.735182+00:00 app[web.1]: 10.31.80.242 - - [03/Aug/2019:00:33:30 +0000] "GET /_dash-dependencies HTTP/1.1" 200 121 "https://hours-estimate.herokuapp.com/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-03T00:33:30.738920+00:00 app[web.1]: 10.158.137.35 - - [03/Aug/2019:00:33:30 +0000] "GET /_dash-layout HTTP/1.1" 200 515 "https://hours-estimate.herokuapp.com/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-03T00:33:30.792464+00:00 app[web.1]: 10.158.137.35 - - [03/Aug/2019:00:33:30 +0000] "POST /_dash-update-component HTTP/1.1" 200 144 "https://hours-estimate.herokuapp.com/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-03T00:33:30.923108+00:00 app[web.1]: 10.31.80.242 - - [03/Aug/2019:00:33:30 +0000] "POST /_dash-update-component HTTP/1.1" 200 72697 "https://hours-estimate.herokuapp.com/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-03T00:33:30.926360+00:00 heroku[router]: at=info method=POST path="/_dash-update-component" host=hours-estimate.herokuapp.com request_id=1105e1a8-0547-40b7-a325-749ddd3e82c2 fwd="69.174.154.31" dyno=web.1 connect=1ms service=123ms status=200 bytes=72899 protocol=https
2019-08-03T00:33:30.792197+00:00 heroku[router]: at=info method=POST path="/_dash-update-component" host=hours-estimate.herokuapp.com request_id=259a4a44-04a9-4666-856d-40ae2a2200aa fwd="69.174.154.31" dyno=web.1 connect=1ms service=3ms status=200 bytes=297 protocol=https
2019-08-03T00:53:49.104982+00:00 heroku[router]: at=info method=GET path="/_dash-component-suites/dash_renderer/react@16.8.6.min.js?v=1.0.0&m=1564743930" host=hours-estimate.herokuapp.com request_id=c762ac0f-dd93-4176-97c6-3891be8e7699 fwd="69.174.154.31" dyno=web.1 connect=0ms service=2ms status=200 bytes=5110 protocol=https
2019-08-03T00:53:49.018479+00:00 app[web.1]: 10.33.205.91 - - [03/Aug/2019:00:53:49 +0000] "GET / HTTP/1.1" 200 676 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-03T00:53:49.106869+00:00 app[web.1]: 10.33.205.91 - - [03/Aug/2019:00:53:49 +0000] "GET /_dash-component-suites/dash_renderer/react@16.8.6.min.js?v=1.0.0&m=1564743930 HTTP/1.1" 200 4888 "https://hours-estimate.herokuapp.com/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-03T00:53:49.155068+00:00 app[web.1]: 10.33.205.91 - - [03/Aug/2019:00:53:49 +0000] "GET /_dash-component-suites/dash_renderer/react-dom@16.8.6.min.js?v=1.0.0&m=1564743930 HTTP/1.1" 200 34843 "https://hours-estimate.herokuapp.com/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-03T00:53:49.181338+00:00 app[web.1]: 10.5.172.81 - - [03/Aug/2019:00:53:49 +0000] "GET /_dash-component-suites/dash_renderer/prop-types@15.7.2.min.js?v=1.0.0&m=1564743930 HTTP/1.1" 200 832 "https://hours-estimate.herokuapp.com/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-03T00:53:49.184952+00:00 app[web.1]: 10.43.178.117 - - [03/Aug/2019:00:53:49 +0000] "GET /_dash-component-suites/dash_core_components/highlight.pack.js?v=1.0.0&m=1564743936 HTTP/1.1" 200 14091 "https://hours-estimate.herokuapp.com/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-03T00:53:49.243135+00:00 app[web.1]: 10.33.205.91 - - [03/Aug/2019:00:53:49 +0000] "GET /_dash-component-suites/dash_core_components/dash_core_components.min.js?v=1.0.0&m=1564743936 HTTP/1.1" 200 279706 "https://hours-estimate.herokuapp.com/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-03T00:53:49.251510+00:00 app[web.1]: 10.51.192.112 - - [03/Aug/2019:00:53:49 +0000] "GET /_dash-component-suites/dash_html_components/dash_html_components.min.js?v=1.0.0&m=1564743930 HTTP/1.1" 200 18902 "https://hours-estimate.herokuapp.com/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-03T00:53:49.263152+00:00 app[web.1]: 10.5.172.81 - - [03/Aug/2019:00:53:49 +0000] "GET /_dash-component-suites/dash_bootstrap_components/_components/dash_bootstrap_components.min.js?v=0.7.0&m=1564743930 HTTP/1.1" 200 45782 "https://hours-estimate.herokuapp.com/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-03T00:53:49.184149+00:00 heroku[router]: at=info method=GET path="/_dash-component-suites/dash_core_components/highlight.pack.js?v=1.0.0&m=1564743936" host=hours-estimate.herokuapp.com request_id=deff47b3-2c64-425e-aafc-0f46092064f2 fwd="69.174.154.31" dyno=web.1 connect=0ms service=3ms status=200 bytes=14314 protocol=https
2019-08-03T00:53:49.180761+00:00 heroku[router]: at=info method=GET path="/_dash-component-suites/dash_renderer/prop-types@15.7.2.min.js?v=1.0.0&m=1564743930" host=hours-estimate.herokuapp.com request_id=b63925ec-7d42-4c50-becc-d505ca1cfb96 fwd="69.174.154.31" dyno=web.1 connect=1ms service=3ms status=200 bytes=1053 protocol=https
2019-08-03T00:53:49.016713+00:00 heroku[router]: at=info method=GET path="/" host=hours-estimate.herokuapp.com request_id=ec7abd80-d40f-4a76-982b-211b4444a8b1 fwd="69.174.154.31" dyno=web.1 connect=0ms service=4ms status=200 bytes=884 protocol=https
2019-08-03T00:53:49.154122+00:00 heroku[router]: at=info method=GET path="/_dash-component-suites/dash_renderer/react-dom@16.8.6.min.js?v=1.0.0&m=1564743930" host=hours-estimate.herokuapp.com request_id=384cc212-bf36-45cb-86fe-e8251e71e511 fwd="69.174.154.31" dyno=web.1 connect=0ms service=8ms status=200 bytes=35066 protocol=https
2019-08-03T00:53:49.353622+00:00 heroku[router]: at=info method=GET path="/_dash-component-suites/dash_core_components/plotly-1.48.3.min.js?v=1.0.0&m=1564743936" host=hours-estimate.herokuapp.com request_id=ebeb1017-b8bf-496b-bfad-1d06c3f25728 fwd="69.174.154.31" dyno=web.1 connect=1ms service=177ms status=200 bytes=918326 protocol=https
2019-08-03T00:53:49.264306+00:00 heroku[router]: at=info method=GET path="/_dash-component-suites/dash_bootstrap_components/_components/dash_bootstrap_components.min.js?v=0.7.0&m=1564743930" host=hours-estimate.herokuapp.com request_id=fef7fb6c-dbdb-4b48-95a5-1794aedac2dd fwd="69.174.154.31" dyno=web.1 connect=1ms service=44ms status=200 bytes=46005 protocol=https
2019-08-03T00:53:49.250034+00:00 heroku[router]: at=info method=GET path="/_dash-component-suites/dash_core_components/dash_core_components.min.js?v=1.0.0&m=1564743936" host=hours-estimate.herokuapp.com request_id=53b7f28a-b590-4a95-a8a9-54f305d1cc73 fwd="69.174.154.31" dyno=web.1 connect=0ms service=69ms status=200 bytes=279930 protocol=https
2019-08-03T00:53:49.282680+00:00 heroku[router]: at=info method=GET path="/_dash-component-suites/dash_renderer/dash_renderer.min.js?v=1.0.0&m=1564743930" host=hours-estimate.herokuapp.com request_id=2d932b69-0ca0-476a-952f-984e153e8d3c fwd="69.174.154.31" dyno=web.1 connect=0ms service=52ms status=200 bytes=79390 protocol=https
2019-08-03T00:53:49.281303+00:00 app[web.1]: 10.43.178.117 - - [03/Aug/2019:00:53:49 +0000] "GET /_dash-component-suites/dash_renderer/dash_renderer.min.js?v=1.0.0&m=1564743930 HTTP/1.1" 200 79167 "https://hours-estimate.herokuapp.com/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-03T00:53:49.339087+00:00 app[web.1]: 10.51.213.16 - - [03/Aug/2019:00:53:49 +0000] "GET /_dash-component-suites/dash_core_components/plotly-1.48.3.min.js?v=1.0.0&m=1564743936 HTTP/1.1" 200 918102 "https://hours-estimate.herokuapp.com/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-03T00:53:49.249394+00:00 heroku[router]: at=info method=GET path="/_dash-component-suites/dash_html_components/dash_html_components.min.js?v=1.0.0&m=1564743930" host=hours-estimate.herokuapp.com request_id=970043e7-1b69-4959-8ea0-4328b03cd838 fwd="69.174.154.31" dyno=web.1 connect=1ms service=65ms status=200 bytes=19125 protocol=https
2019-08-03T00:53:50.560590+00:00 heroku[router]: at=info method=GET path="/_dash-layout" host=hours-estimate.herokuapp.com request_id=ee124ea3-d1b5-4f72-8652-60b4f50d6a26 fwd="69.174.154.31" dyno=web.1 connect=1ms service=4ms status=200 bytes=715 protocol=https
2019-08-03T00:53:50.571328+00:00 heroku[router]: at=info method=GET path="/_favicon.ico?v=1.0.2" host=hours-estimate.herokuapp.com request_id=a606c966-c70f-424d-91b6-50bfc9332a1b fwd="69.174.154.31" dyno=web.1 connect=0ms service=3ms status=200 bytes=15237 protocol=https
2019-08-03T00:53:50.615663+00:00 heroku[router]: at=info method=POST path="/_dash-update-component" host=hours-estimate.herokuapp.com request_id=3e7a6de9-3142-4f9e-a6dc-8fc1aabe7565 fwd="69.174.154.31" dyno=web.1 connect=0ms service=4ms status=200 bytes=297 protocol=https
2019-08-03T00:53:50.560804+00:00 app[web.1]: 10.51.213.16 - - [03/Aug/2019:00:53:50 +0000] "GET /_dash-layout HTTP/1.1" 200 515 "https://hours-estimate.herokuapp.com/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-03T00:53:50.564683+00:00 app[web.1]: 10.33.205.91 - - [03/Aug/2019:00:53:50 +0000] "GET /_dash-dependencies HTTP/1.1" 200 121 "https://hours-estimate.herokuapp.com/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-03T00:53:50.571829+00:00 app[web.1]: 10.43.178.117 - - [03/Aug/2019:00:53:50 +0000] "GET /_favicon.ico?v=1.0.2 HTTP/1.1" 200 15086 "https://hours-estimate.herokuapp.com/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-03T00:53:50.617833+00:00 app[web.1]: 10.33.205.91 - - [03/Aug/2019:00:53:50 +0000] "POST /_dash-update-component HTTP/1.1" 200 144 "https://hours-estimate.herokuapp.com/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-03T00:53:50.758682+00:00 app[web.1]: 10.43.178.117 - - [03/Aug/2019:00:53:50 +0000] "POST /_dash-update-component HTTP/1.1" 200 72697 "https://hours-estimate.herokuapp.com/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-03T00:53:50.562829+00:00 heroku[router]: at=info method=GET path="/_dash-dependencies" host=hours-estimate.herokuapp.com request_id=8a3d4792-caea-4a7b-9760-a6c4c5531c00 fwd="69.174.154.31" dyno=web.1 connect=0ms service=2ms status=200 bytes=274 protocol=https
2019-08-03T00:53:50.760829+00:00 heroku[router]: at=info method=POST path="/_dash-update-component" host=hours-estimate.herokuapp.com request_id=81faa9d7-2584-45cf-95eb-7a0e1b1b9757 fwd="69.174.154.31" dyno=web.1 connect=0ms service=134ms status=200 bytes=72899 protocol=https
2019-08-03T00:53:52.756167+00:00 heroku[router]: at=info method=POST path="/_dash-update-component" host=hours-estimate.herokuapp.com request_id=573f5ded-011f-4594-9c9a-c5f68844b689 fwd="69.174.154.31" dyno=web.1 connect=0ms service=2ms status=200 bytes=631 protocol=https
2019-08-03T00:53:52.757074+00:00 app[web.1]: 10.43.178.117 - - [03/Aug/2019:00:53:52 +0000] "POST /_dash-update-component HTTP/1.1" 200 478 "https://hours-estimate.herokuapp.com/predictions" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-03T01:16:11.387053+00:00 heroku[router]: at=info method=GET path="/" host=hours-estimate.herokuapp.com request_id=28104717-a9ba-4a67-bd7c-6ea5244d704f fwd="99.100.99.240" dyno=web.1 connect=1ms service=3ms status=200 bytes=884 protocol=https
2019-08-03T01:16:11.386765+00:00 app[web.1]: 10.5.253.6 - - [03/Aug/2019:01:16:11 +0000] "GET / HTTP/1.1" 200 676 "-" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-03T01:16:11.531281+00:00 app[web.1]: 10.5.253.6 - - [03/Aug/2019:01:16:11 +0000] "GET /_dash-component-suites/dash_renderer/react@16.8.6.min.js?v=1.0.0&m=1564743930 HTTP/1.1" 200 4888 "https://hours-estimate.herokuapp.com/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-03T01:16:11.539843+00:00 app[web.1]: 10.7.255.157 - - [03/Aug/2019:01:16:11 +0000] "GET /_dash-component-suites/dash_renderer/react-dom@16.8.6.min.js?v=1.0.0&m=1564743930 HTTP/1.1" 200 34843 "https://hours-estimate.herokuapp.com/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-03T01:16:11.604802+00:00 app[web.1]: 10.5.253.6 - - [03/Aug/2019:01:16:11 +0000] "GET /_dash-component-suites/dash_renderer/prop-types@15.7.2.min.js?v=1.0.0&m=1564743930 HTTP/1.1" 200 832 "https://hours-estimate.herokuapp.com/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-03T01:16:11.663988+00:00 heroku[router]: at=info method=GET path="/_dash-component-suites/dash_core_components/highlight.pack.js?v=1.0.0&m=1564743936" host=hours-estimate.herokuapp.com request_id=6082d13e-4f10-48a2-8987-2a4dbd86f313 fwd="99.100.99.240" dyno=web.1 connect=1ms service=4ms status=200 bytes=14314 protocol=https
2019-08-03T01:16:11.531888+00:00 heroku[router]: at=info method=GET path="/_dash-component-suites/dash_renderer/react@16.8.6.min.js?v=1.0.0&m=1564743930" host=hours-estimate.herokuapp.com request_id=dca2621e-54c1-4665-aa1c-984aa0be64f9 fwd="99.100.99.240" dyno=web.1 connect=1ms service=5ms status=200 bytes=5110 protocol=https
2019-08-03T01:16:11.733169+00:00 heroku[router]: at=info method=GET path="/_dash-component-suites/dash_core_components/dash_core_components.min.js?v=1.0.0&m=1564743936" host=hours-estimate.herokuapp.com request_id=f733e69b-3f2f-449c-a6a5-892cf1061284 fwd="99.100.99.240" dyno=web.1 connect=1ms service=79ms status=200 bytes=279930 protocol=https
2019-08-03T01:16:11.539133+00:00 heroku[router]: at=info method=GET path="/_dash-component-suites/dash_renderer/react-dom@16.8.6.min.js?v=1.0.0&m=1564743930" host=hours-estimate.herokuapp.com request_id=5208ca7b-1810-440d-847d-1a2196311969 fwd="99.100.99.240" dyno=web.1 connect=1ms service=10ms status=200 bytes=35066 protocol=https
2019-08-03T01:16:11.605147+00:00 heroku[router]: at=info method=GET path="/_dash-component-suites/dash_renderer/prop-types@15.7.2.min.js?v=1.0.0&m=1564743930" host=hours-estimate.herokuapp.com request_id=4a3863ad-1571-4e85-a523-f38ae9e40d4d fwd="99.100.99.240" dyno=web.1 connect=1ms service=3ms status=200 bytes=1053 protocol=https
2019-08-03T01:16:11.735617+00:00 heroku[router]: at=info method=GET path="/_dash-component-suites/dash_html_components/dash_html_components.min.js?v=1.0.0&m=1564743930" host=hours-estimate.herokuapp.com request_id=4ad471b8-da81-4cae-8431-53f95a717419 fwd="99.100.99.240" dyno=web.1 connect=11ms service=60ms status=200 bytes=19125 protocol=https
2019-08-03T01:16:11.661550+00:00 app[web.1]: 10.41.177.72 - - [03/Aug/2019:01:16:11 +0000] "GET /_dash-component-suites/dash_core_components/highlight.pack.js?v=1.0.0&m=1564743936 HTTP/1.1" 200 14091 "https://hours-estimate.herokuapp.com/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-03T01:16:11.725332+00:00 app[web.1]: 10.41.137.142 - - [03/Aug/2019:01:16:11 +0000] "GET /_dash-component-suites/dash_core_components/dash_core_components.min.js?v=1.0.0&m=1564743936 HTTP/1.1" 200 279706 "https://hours-estimate.herokuapp.com/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-03T01:16:11.734914+00:00 app[web.1]: 10.33.152.107 - - [03/Aug/2019:01:16:11 +0000] "GET /_dash-component-suites/dash_html_components/dash_html_components.min.js?v=1.0.0&m=1564743930 HTTP/1.1" 200 18902 "https://hours-estimate.herokuapp.com/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-03T01:16:11.750320+00:00 app[web.1]: 10.5.253.6 - - [03/Aug/2019:01:16:11 +0000] "GET /_dash-component-suites/dash_bootstrap_components/_components/dash_bootstrap_components.min.js?v=0.7.0&m=1564743930 HTTP/1.1" 200 45782 "https://hours-estimate.herokuapp.com/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-03T01:16:11.770463+00:00 app[web.1]: 10.7.255.157 - - [03/Aug/2019:01:16:11 +0000] "GET /_dash-component-suites/dash_renderer/dash_renderer.min.js?v=1.0.0&m=1564743930 HTTP/1.1" 200 79167 "https://hours-estimate.herokuapp.com/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-03T01:16:11.819608+00:00 app[web.1]: 10.47.219.154 - - [03/Aug/2019:01:16:11 +0000] "GET /_dash-component-suites/dash_core_components/plotly-1.48.3.min.js?v=1.0.0&m=1564743936 HTTP/1.1" 200 918102 "https://hours-estimate.herokuapp.com/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-03T01:16:11.763215+00:00 heroku[router]: at=info method=GET path="/_dash-component-suites/dash_bootstrap_components/_components/dash_bootstrap_components.min.js?v=0.7.0&m=1564743930" host=hours-estimate.herokuapp.com request_id=57aff4e4-e600-464a-915c-e3b9b4c38f54 fwd="99.100.99.240" dyno=web.1 connect=1ms service=72ms status=200 bytes=46005 protocol=https
2019-08-03T01:16:11.771315+00:00 heroku[router]: at=info method=GET path="/_dash-component-suites/dash_renderer/dash_renderer.min.js?v=1.0.0&m=1564743930" host=hours-estimate.herokuapp.com request_id=362f594b-b4d8-49a7-a123-af3fdaa02efa fwd="99.100.99.240" dyno=web.1 connect=1ms service=79ms status=200 bytes=79390 protocol=https
2019-08-03T01:16:11.836373+00:00 heroku[router]: at=info method=GET path="/_dash-component-suites/dash_core_components/plotly-1.48.3.min.js?v=1.0.0&m=1564743936" host=hours-estimate.herokuapp.com request_id=ad9ea924-a773-41f0-9e5d-d3d04f11a778 fwd="99.100.99.240" dyno=web.1 connect=1ms service=181ms status=200 bytes=918326 protocol=https
2019-08-03T01:16:12.769849+00:00 heroku[router]: at=info method=GET path="/_dash-layout" host=hours-estimate.herokuapp.com request_id=d9d82628-dbbf-40c7-a8f3-c15c921b2440 fwd="99.100.99.240" dyno=web.1 connect=1ms service=3ms status=200 bytes=715 protocol=https
2019-08-03T01:16:12.766995+00:00 heroku[router]: at=info method=GET path="/_dash-dependencies" host=hours-estimate.herokuapp.com request_id=3385e4cb-2dac-460d-99e8-e0620480e944 fwd="99.100.99.240" dyno=web.1 connect=1ms service=2ms status=200 bytes=274 protocol=https
2019-08-03T01:16:12.770085+00:00 app[web.1]: 10.47.219.154 - - [03/Aug/2019:01:16:12 +0000] "GET /_dash-layout HTTP/1.1" 200 515 "https://hours-estimate.herokuapp.com/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-03T01:16:12.770593+00:00 app[web.1]: 10.41.137.142 - - [03/Aug/2019:01:16:12 +0000] "GET /_dash-dependencies HTTP/1.1" 200 121 "https://hours-estimate.herokuapp.com/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-03T01:16:12.967586+00:00 app[web.1]: 10.41.137.142 - - [03/Aug/2019:01:16:12 +0000] "POST /_dash-update-component HTTP/1.1" 200 144 "https://hours-estimate.herokuapp.com/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-03T01:16:12.964008+00:00 heroku[router]: at=info method=POST path="/_dash-update-component" host=hours-estimate.herokuapp.com request_id=0d3385d4-2cff-4351-8e10-0152e0c99566 fwd="99.100.99.240" dyno=web.1 connect=1ms service=3ms status=200 bytes=297 protocol=https
2019-08-03T01:16:13.078959+00:00 app[web.1]: 10.47.219.154 - - [03/Aug/2019:01:16:13 +0000] "POST /_dash-update-component HTTP/1.1" 200 72697 "https://hours-estimate.herokuapp.com/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-03T01:16:13.080954+00:00 heroku[router]: at=info method=POST path="/_dash-update-component" host=hours-estimate.herokuapp.com request_id=5cfe1ed7-ff99-494d-9297-df012fde8030 fwd="99.100.99.240" dyno=web.1 connect=1ms service=100ms status=200 bytes=72899 protocol=https
2019-08-03T01:20:37.262946+00:00 heroku[router]: at=info method=POST path="/_dash-update-component" host=hours-estimate.herokuapp.com request_id=35e9f5ff-d268-4cf0-b497-e9de0acb4127 fwd="99.100.99.240" dyno=web.1 connect=1ms service=4ms status=200 bytes=631 protocol=https
2019-08-03T01:20:37.262615+00:00 app[web.1]: 10.65.239.45 - - [03/Aug/2019:01:20:37 +0000] "POST /_dash-update-component HTTP/1.1" 200 478 "https://hours-estimate.herokuapp.com/predictions" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-03T01:20:38.462152+00:00 heroku[router]: at=info method=POST path="/_dash-update-component" host=hours-estimate.herokuapp.com request_id=a942f35b-9087-4111-9bb5-20eed503d273 fwd="99.100.99.240" dyno=web.1 connect=1ms service=8ms status=200 bytes=3312 protocol=https
2019-08-03T01:20:38.461596+00:00 app[web.1]: 10.65.239.45 - - [03/Aug/2019:01:20:38 +0000] "POST /_dash-update-component HTTP/1.1" 200 3111 "https://hours-estimate.herokuapp.com/insights" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-03T01:20:49.285929+00:00 heroku[router]: at=info method=POST path="/_dash-update-component" host=hours-estimate.herokuapp.com request_id=6d4915f3-6348-458e-bc13-d8de49a12c2b fwd="99.100.99.240" dyno=web.1 connect=1ms service=167ms status=200 bytes=72899 protocol=https
2019-08-03T01:20:49.281483+00:00 app[web.1]: 10.65.239.45 - - [03/Aug/2019:01:20:49 +0000] "POST /_dash-update-component HTTP/1.1" 200 72697 "https://hours-estimate.herokuapp.com/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-03T01:21:04.392642+00:00 heroku[router]: at=info method=POST path="/_dash-update-component" host=hours-estimate.herokuapp.com request_id=b47a7f3d-e1db-4e0f-b779-135ba464e2bd fwd="99.100.99.240" dyno=web.1 connect=1ms service=6ms status=200 bytes=3312 protocol=https
2019-08-03T01:21:04.391727+00:00 app[web.1]: 10.65.239.45 - - [03/Aug/2019:01:21:04 +0000] "POST /_dash-update-component HTTP/1.1" 200 3111 "https://hours-estimate.herokuapp.com/insights" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-03T01:21:13.305230+00:00 heroku[router]: at=info method=POST path="/_dash-update-component" host=hours-estimate.herokuapp.com request_id=0d8b9b69-28ed-4bb7-b132-7e589870b3c1 fwd="99.100.99.240" dyno=web.1 connect=1ms service=5ms status=200 bytes=2374 protocol=https
2019-08-03T01:21:13.305037+00:00 app[web.1]: 10.65.239.45 - - [03/Aug/2019:01:21:13 +0000] "POST /_dash-update-component HTTP/1.1" 200 2173 "https://hours-estimate.herokuapp.com/process" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-03T01:56:31.166210+00:00 heroku[web.1]: Idling
2019-08-03T01:56:31.171192+00:00 heroku[web.1]: State changed from up to down
2019-08-03T01:56:31.849826+00:00 heroku[web.1]: Stopping all processes with SIGTERM
2019-08-03T01:56:31.863718+00:00 app[web.1]: [2019-08-03 01:56:31 +0000] [11] [INFO] Worker exiting (pid: 11)
2019-08-03T01:56:31.863738+00:00 app[web.1]: [2019-08-03 01:56:31 +0000] [10] [INFO] Worker exiting (pid: 10)
2019-08-03T01:56:31.863742+00:00 app[web.1]: [2019-08-03 01:56:31 +0000] [4] [INFO] Handling signal: term
2019-08-03T01:56:31.969819+00:00 app[web.1]: [2019-08-03 01:56:31 +0000] [4] [INFO] Shutting down: Master
2019-08-03T01:56:32.053543+00:00 heroku[web.1]: Process exited with status 0
2019-08-03T02:31:39.378408+00:00 heroku[web.1]: Unidling
2019-08-03T02:31:39.384954+00:00 heroku[web.1]: State changed from down to starting
2019-08-03T02:31:49.187278+00:00 heroku[web.1]: Starting process with command `gunicorn run:server`
2019-08-03T02:31:50.903798+00:00 app[web.1]: [2019-08-03 02:31:50 +0000] [4] [INFO] Starting gunicorn 19.9.0
2019-08-03T02:31:50.904331+00:00 app[web.1]: [2019-08-03 02:31:50 +0000] [4] [INFO] Listening at: http://0.0.0.0:47166 (4)
2019-08-03T02:31:50.904424+00:00 app[web.1]: [2019-08-03 02:31:50 +0000] [4] [INFO] Using worker: sync
2019-08-03T02:31:50.908546+00:00 app[web.1]: [2019-08-03 02:31:50 +0000] [10] [INFO] Booting worker with pid: 10
2019-08-03T02:31:50.921129+00:00 app[web.1]: [2019-08-03 02:31:50 +0000] [11] [INFO] Booting worker with pid: 11
2019-08-03T02:31:51.476739+00:00 heroku[web.1]: State changed from starting to up
2019-08-03T02:32:01.515886+00:00 heroku[router]: at=info method=GET path="/" host=hours-estimate.herokuapp.com request_id=bb60c120-14e4-44da-a91f-6cd738f20136 fwd="99.100.99.240" dyno=web.1 connect=1ms service=8043ms status=200 bytes=885 protocol=https
2019-08-03T02:32:01.517051+00:00 app[web.1]: 10.143.219.100 - - [03/Aug/2019:02:32:01 +0000] "GET / HTTP/1.1" 200 677 "-" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-03T02:32:01.706165+00:00 app[web.1]: 10.143.219.100 - - [03/Aug/2019:02:32:01 +0000] "GET /_dash-component-suites/dash_renderer/react@16.8.6.min.js?v=1.0.0&m=1564743930 HTTP/1.1" 200 4888 "https://hours-estimate.herokuapp.com/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-03T02:32:01.705307+00:00 heroku[router]: at=info method=GET path="/_dash-component-suites/dash_renderer/react@16.8.6.min.js?v=1.0.0&m=1564743930" host=hours-estimate.herokuapp.com request_id=fbe325f9-2aa2-4b25-bc17-0a4c85e0be18 fwd="99.100.99.240" dyno=web.1 connect=2ms service=4ms status=200 bytes=5110 protocol=https
2019-08-03T02:32:01.792926+00:00 heroku[router]: at=info method=GET path="/_dash-component-suites/dash_renderer/react-dom@16.8.6.min.js?v=1.0.0&m=1564743930" host=hours-estimate.herokuapp.com request_id=121efd2a-27d1-451d-83d5-0f75883e46ea fwd="99.100.99.240" dyno=web.1 connect=1ms service=18ms status=200 bytes=35066 protocol=https
2019-08-03T02:32:01.919350+00:00 heroku[router]: at=info method=GET path="/_dash-component-suites/dash_bootstrap_components/_components/dash_bootstrap_components.min.js?v=0.7.0&m=1564743930" host=hours-estimate.herokuapp.com request_id=28a43ccb-fa4b-412e-bd5a-b75135311546 fwd="99.100.99.240" dyno=web.1 connect=0ms service=11ms status=200 bytes=46005 protocol=https
2019-08-03T02:32:01.833725+00:00 heroku[router]: at=info method=GET path="/_dash-component-suites/dash_renderer/prop-types@15.7.2.min.js?v=1.0.0&m=1564743930" host=hours-estimate.herokuapp.com request_id=820b6d16-c194-4d90-86cd-5f61daa96d44 fwd="99.100.99.240" dyno=web.1 connect=0ms service=2ms status=200 bytes=1053 protocol=https
2019-08-03T02:32:01.791193+00:00 app[web.1]: 10.143.219.100 - - [03/Aug/2019:02:32:01 +0000] "GET /_dash-component-suites/dash_renderer/react-dom@16.8.6.min.js?v=1.0.0&m=1564743930 HTTP/1.1" 200 34843 "https://hours-estimate.herokuapp.com/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-03T02:32:01.835096+00:00 app[web.1]: 10.63.72.93 - - [03/Aug/2019:02:32:01 +0000] "GET /_dash-component-suites/dash_renderer/prop-types@15.7.2.min.js?v=1.0.0&m=1564743930 HTTP/1.1" 200 832 "https://hours-estimate.herokuapp.com/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-03T02:32:01.864439+00:00 app[web.1]: 10.95.238.212 - - [03/Aug/2019:02:32:01 +0000] "GET /_dash-component-suites/dash_html_components/dash_html_components.min.js?v=1.0.0&m=1564743930 HTTP/1.1" 200 18902 "https://hours-estimate.herokuapp.com/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-03T02:32:01.920430+00:00 app[web.1]: 10.63.72.93 - - [03/Aug/2019:02:32:01 +0000] "GET /_dash-component-suites/dash_bootstrap_components/_components/dash_bootstrap_components.min.js?v=0.7.0&m=1564743930 HTTP/1.1" 200 45782 "https://hours-estimate.herokuapp.com/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-03T02:32:02.041224+00:00 app[web.1]: 10.95.238.212 - - [03/Aug/2019:02:32:02 +0000] "GET /_dash-component-suites/dash_core_components/highlight.pack.js?v=1.0.0&m=1564743936 HTTP/1.1" 200 14091 "https://hours-estimate.herokuapp.com/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-03T02:32:01.863820+00:00 heroku[router]: at=info method=GET path="/_dash-component-suites/dash_html_components/dash_html_components.min.js?v=1.0.0&m=1564743930" host=hours-estimate.herokuapp.com request_id=cb185695-be54-4f25-8e75-761f9b1b0085 fwd="99.100.99.240" dyno=web.1 connect=1ms service=6ms status=200 bytes=19125 protocol=https
2019-08-03T02:32:02.040606+00:00 heroku[router]: at=info method=GET path="/_dash-component-suites/dash_core_components/highlight.pack.js?v=1.0.0&m=1564743936" host=hours-estimate.herokuapp.com request_id=eb4cee86-454b-428f-96c1-17b7b77675e2 fwd="99.100.99.240" dyno=web.1 connect=0ms service=4ms status=200 bytes=14314 protocol=https
2019-08-03T02:32:02.188026+00:00 heroku[router]: at=info method=GET path="/_dash-component-suites/dash_core_components/dash_core_components.min.js?v=1.0.0&m=1564743936" host=hours-estimate.herokuapp.com request_id=fe5d027f-c36c-4d73-9210-b96939956232 fwd="99.100.99.240" dyno=web.1 connect=0ms service=57ms status=200 bytes=279930 protocol=https
2019-08-03T02:32:02.097324+00:00 app[web.1]: 10.143.219.100 - - [03/Aug/2019:02:32:02 +0000] "GET /_dash-component-suites/dash_core_components/plotly-1.48.3.min.js?v=1.0.0&m=1564743936 HTTP/1.1" 200 918102 "https://hours-estimate.herokuapp.com/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-03T02:32:02.175839+00:00 app[web.1]: 10.95.238.212 - - [03/Aug/2019:02:32:02 +0000] "GET /_dash-component-suites/dash_core_components/dash_core_components.min.js?v=1.0.0&m=1564743936 HTTP/1.1" 200 279706 "https://hours-estimate.herokuapp.com/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-03T02:32:02.180380+00:00 app[web.1]: 10.63.72.93 - - [03/Aug/2019:02:32:02 +0000] "GET /_dash-component-suites/dash_renderer/dash_renderer.min.js?v=1.0.0&m=1564743930 HTTP/1.1" 200 79167 "https://hours-estimate.herokuapp.com/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-03T02:32:02.184175+00:00 heroku[router]: at=info method=GET path="/_dash-component-suites/dash_renderer/dash_renderer.min.js?v=1.0.0&m=1564743930" host=hours-estimate.herokuapp.com request_id=dbbb4558-0cea-4a18-a87e-10946ece6049 fwd="99.100.99.240" dyno=web.1 connect=0ms service=21ms status=200 bytes=79390 protocol=https
2019-08-03T02:32:02.129233+00:00 heroku[router]: at=info method=GET path="/_dash-component-suites/dash_core_components/plotly-1.48.3.min.js?v=1.0.0&m=1564743936" host=hours-estimate.herokuapp.com request_id=6529e08a-3897-4486-9a4d-39ae779743d9 fwd="99.100.99.240" dyno=web.1 connect=1ms service=203ms status=200 bytes=918326 protocol=https
2019-08-03T02:32:03.148761+00:00 heroku[router]: at=info method=GET path="/_dash-dependencies" host=hours-estimate.herokuapp.com request_id=b8afbad8-497c-403a-b853-83a1407f8014 fwd="99.100.99.240" dyno=web.1 connect=0ms service=2ms status=200 bytes=274 protocol=https
2019-08-03T02:32:03.149398+00:00 heroku[router]: at=info method=GET path="/_dash-layout" host=hours-estimate.herokuapp.com request_id=f33a53c3-9879-4dd0-a418-72f5c4ef1b67 fwd="99.100.99.240" dyno=web.1 connect=1ms service=5ms status=200 bytes=715 protocol=https
2019-08-03T02:32:03.251642+00:00 heroku[router]: at=info method=POST path="/_dash-update-component" host=hours-estimate.herokuapp.com request_id=bdc019c8-728f-495d-a607-2e80801b7eca fwd="99.100.99.240" dyno=web.1 connect=1ms service=4ms status=200 bytes=297 protocol=https
2019-08-03T02:32:03.149323+00:00 app[web.1]: 10.95.238.212 - - [03/Aug/2019:02:32:03 +0000] "GET /_dash-dependencies HTTP/1.1" 200 121 "https://hours-estimate.herokuapp.com/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-03T02:32:03.150622+00:00 app[web.1]: 10.143.219.100 - - [03/Aug/2019:02:32:03 +0000] "GET /_dash-layout HTTP/1.1" 200 515 "https://hours-estimate.herokuapp.com/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-03T02:32:03.252843+00:00 app[web.1]: 10.143.219.100 - - [03/Aug/2019:02:32:03 +0000] "POST /_dash-update-component HTTP/1.1" 200 144 "https://hours-estimate.herokuapp.com/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-03T02:32:03.380650+00:00 app[web.1]: 10.95.238.212 - - [03/Aug/2019:02:32:03 +0000] "POST /_dash-update-component HTTP/1.1" 200 72697 "https://hours-estimate.herokuapp.com/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-03T02:32:03.381976+00:00 heroku[router]: at=info method=POST path="/_dash-update-component" host=hours-estimate.herokuapp.com request_id=d1204f3c-1990-49e7-865d-577655f36ff9 fwd="99.100.99.240" dyno=web.1 connect=0ms service=104ms status=200 bytes=72899 protocol=https
2019-08-03T02:34:54.544193+00:00 heroku[router]: at=info method=POST path="/_dash-update-component" host=hours-estimate.herokuapp.com request_id=49bc4e69-037c-4862-9da6-7bc69901c932 fwd="99.100.99.240" dyno=web.1 connect=1ms service=7ms status=200 bytes=3312 protocol=https
2019-08-03T02:34:54.543885+00:00 app[web.1]: 10.52.13.4 - - [03/Aug/2019:02:34:54 +0000] "POST /_dash-update-component HTTP/1.1" 200 3111 "https://hours-estimate.herokuapp.com/insights" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
2019-08-03T02:35:00.071872+00:00 heroku[router]: at=info method=POST path="/_dash-update-component" host=hours-estimate.herokuapp.com request_id=5cce2de2-ae81-4309-b5a6-405e07b50718 fwd="99.100.99.240" dyno=web.1 connect=1ms service=3ms status=200 bytes=2374 protocol=https
2019-08-03T02:35:00.071441+00:00 app[web.1]: 10.52.13.4 - - [03/Aug/2019:02:35:00 +0000] "POST /_dash-update-component HTTP/1.1" 200 2173 "https://hours-estimate.herokuapp.com/process" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment