├── .gitignore ├── Part_1_Basic_Toolkit ├── Ch.02_Language_learning_bridge │ ├── Ch.02_A_Language_Learning_Bridge.ipynb │ ├── index.mjs │ └── lib │ │ ├── libFoo.mjs │ │ └── underscore.min.mjs ├── Ch.03_Reading_and_Writing_Data_with_Python.ipynb ├── Ch.04_Webdev101 │ ├── README.md │ ├── index_flex.html │ ├── index_flex_nested.html │ ├── index_javascripted_svg.html │ ├── index_placeholders.html │ ├── index_svg.html │ ├── index_svg_2.html │ ├── script.js │ └── style.css └── data │ ├── nobel_winners.csv │ ├── nobel_winners.db │ ├── nobel_winners.db-shm │ ├── nobel_winners.db-wal │ └── nobel_winners.json ├── Part_2_Getting_Your_Data ├── Ch.05 - Getting Data off the Web with Python.ipynb ├── Ch.06_Scrapy │ ├── nobel_winners │ │ ├── images │ │ │ └── full │ │ │ │ ├── 1b4d26fad5083b19bed30d737f2b770ac59a4ec2.jpg │ │ │ │ ├── 3262c0c444deb3995e1388da14c9b4f22c82f0a2.jpg │ │ │ │ ├── 3738bc56354df4f878a22ac5d325a373db9dfdc2.jpg │ │ │ │ ├── 65ac9541c305ab4728ed889385d422a2321a117d.jpg │ │ │ │ ├── 6ca7a53ff6e3c5b894a8d4b888a0380d2deb99e8.jpg │ │ │ │ ├── 78f035bb66a1028ff1f45d6f9ef4cd672acc5970.jpg │ │ │ │ ├── 7a6acc07a7fc429efbb8bd9470c67395a73a5619.jpg │ │ │ │ ├── 8375529db7a23920775df07a088fe5e9ef470d19.jpg │ │ │ │ ├── 90f95e38074a110dea891a02420273843d25e267.jpg │ │ │ │ ├── 91e7f9fb6404dd5c9d76ed57534399d71e157950.jpg │ │ │ │ ├── 976cea55c7b67dbceee0d4935c97fec5f7da2822.jpg │ │ │ │ ├── 9ffc262be2701e8e520a3664283dc620178e01c0.jpg │ │ │ │ ├── a5f763b828006e704cb291411b8b643bfb91886c.jpg │ │ │ │ ├── b4d88a037d9c0f170526571118b81450d99a8c4b.jpg │ │ │ │ ├── f9f6f9736e3164b5ea84efd778e5f82d91dd714f.jpg │ │ │ │ └── fc9d3fb009b4c857d63b40c42ae4aaf313642640.jpg │ │ ├── minibios.json │ │ ├── nobel_winners.json │ │ ├── nobel_winners │ │ │ ├── __init__.py │ │ │ ├── items.py │ │ │ ├── middlewares.py │ │ │ ├── pipelines.py │ │ │ ├── settings.py │ │ │ └── spiders │ │ │ │ ├── __init__.py │ │ │ │ ├── notes.md │ │ │ │ ├── nwinners_full_spider.py │ │ │ │ ├── nwinners_list_spider.py │ │ │ │ └── nwinners_minibio_spider.py │ │ └── scrapy.cfg │ └── nobel_winners_test │ │ ├── nobel_winners_test │ │ ├── __init__.py │ │ ├── items.py │ │ ├── middlewares.py │ │ ├── pipelines.py │ │ ├── settings.py │ │ └── spiders │ │ │ └── __init__.py │ │ └── scrapy.cfg ├── data │ ├── google_credentials.json │ └── world_country_data.json └── nobel_pages.sqlite ├── Part_3_Cleaning_and_Exploring_with_Pandas ├── 11-13.png ├── 11-14.png ├── Ch07_Introduction_to_Numpy.ipynb ├── Ch08_Introduction_to_Pandas.ipynb ├── Ch09_Cleaning_Data_with_Pandas.ipynb ├── Ch10_Visualising_Data_with_Matplotlib.ipynb ├── Ch11_Exploring_Data_with_Pandas.ipynb ├── country_absolute_prize_numbers.png ├── country_relative_prize_numbers.png ├── data │ ├── .~lock.nobel_winners.xlsx# │ ├── nobel_winners.db │ ├── nobel_winners.xlsx │ ├── nobel_winners_all_sheets.xlsx │ ├── nobel_winners_cleaned.db │ ├── nobel_winners_cleaned.db-shm │ ├── nobel_winners_cleaned.db-wal │ ├── nobel_winners_cleaned.json │ ├── nobel_winners_cleaned_test.db │ ├── nobel_winners_cleaned_test.db-shm │ ├── nobel_winners_cleaned_test.db-wal │ ├── nobel_winners_dirty.json │ ├── nobel_winners_sheet1.xlsx │ ├── scrapy_nwinners_minibio.json │ └── winning_country_data.json ├── dvpj_1103.png ├── dvpj_1104.png ├── dvpj_1110.png └── mpl_3lines_custom.png ├── Part_4_Delivering_the_Data ├── Ch.12_Delivering_the_Data │ ├── README.md │ ├── data │ │ ├── nobel_winners.db │ │ ├── nobel_winners_cleaned.db │ │ ├── nobel_winners_cleaned.db-shm │ │ └── nobel_winners_cleaned.db-wal │ ├── delivering_data_files │ │ ├── data │ │ │ ├── nobel_winners_cleaned.json │ │ │ └── winners_by_country │ │ │ │ ├── Argentina.json │ │ │ │ ├── Australia.json │ │ │ │ ├── Austria.json │ │ │ │ ├── Azerbaijan.json │ │ │ │ ├── Bangladesh.json │ │ │ │ ├── Belgium.json │ │ │ │ ├── Canada.json │ │ │ │ ├── Chile.json │ │ │ │ ├── China.json │ │ │ │ ├── Colombia.json │ │ │ │ ├── Costa Rica.json │ │ │ │ ├── Cyprus.json │ │ │ │ ├── Czech Republic.json │ │ │ │ ├── Denmark.json │ │ │ │ ├── East Timor.json │ │ │ │ ├── Egypt.json │ │ │ │ ├── Finland.json │ │ │ │ ├── France.json │ │ │ │ ├── Germany.json │ │ │ │ ├── Ghana.json │ │ │ │ ├── Greece.json │ │ │ │ ├── Guatemala.json │ │ │ │ ├── Hungary.json │ │ │ │ ├── Iceland.json │ │ │ │ ├── India.json │ │ │ │ ├── Iran.json │ │ │ │ ├── Ireland.json │ │ │ │ ├── Israel.json │ │ │ │ ├── Italy.json │ │ │ │ ├── Japan.json │ │ │ │ ├── Kenya.json │ │ │ │ ├── Korea, South.json │ │ │ │ ├── Liberia.json │ │ │ │ ├── Mexico.json │ │ │ │ ├── Myanmar (Burma).json │ │ │ │ ├── Netherlands.json │ │ │ │ ├── Nigeria.json │ │ │ │ ├── Norway.json │ │ │ │ ├── Pakistan.json │ │ │ │ ├── Palestinian Territory.json │ │ │ │ ├── Poland.json │ │ │ │ ├── Portugal.json │ │ │ │ ├── Russia.json │ │ │ │ ├── Saint Lucia.json │ │ │ │ ├── South Africa.json │ │ │ │ ├── Spain.json │ │ │ │ ├── Sweden.json │ │ │ │ ├── Switzerland.json │ │ │ │ ├── Taiwan.json │ │ │ │ ├── Turkey.json │ │ │ │ ├── United Kingdom.json │ │ │ │ ├── United States.json │ │ │ │ ├── Venezuela.json │ │ │ │ ├── Vietnam.json │ │ │ │ ├── Yemen.json │ │ │ │ └── Yugoslavia.json │ │ ├── index.html │ │ ├── index_by_country.html │ │ ├── lib │ │ │ └── d3.v7.min.js │ │ └── script.js │ ├── server.py │ ├── server_jinja.py │ ├── server_sql.py │ └── templates │ │ ├── index.html │ │ └── winner_list.html └── Ch.13_Restful_API │ ├── README.md │ ├── api.py │ ├── api_restful.py │ ├── data │ ├── nobel_winners.db │ ├── nobel_winners_cleaned.db │ ├── nobel_winners_cleaned_api.db │ └── nobel_winners_cleaned_api_test.db │ ├── heroku-python-starter │ ├── .github │ │ └── PULL_REQUEST_TEMPLATE.MD │ ├── .gitignore │ ├── Procfile │ ├── Procfile.windows │ ├── README.md │ ├── app.json │ ├── gettingstarted │ │ ├── __init__.py │ │ ├── settings.py │ │ ├── static │ │ │ └── humans.txt │ │ ├── urls.py │ │ └── wsgi.py │ ├── hello │ │ ├── __init__.py │ │ ├── admin.py │ │ ├── migrations │ │ │ ├── 0001_initial.py │ │ │ └── __init__.py │ │ ├── models.py │ │ ├── static │ │ │ └── lang-logo.png │ │ ├── templates │ │ │ ├── base.html │ │ │ ├── db.html │ │ │ └── index.html │ │ ├── tests.py │ │ └── views.py │ ├── manage.py │ ├── requirements.txt │ └── runtime.txt │ ├── heroku │ ├── Procfile │ ├── api_rest.py │ ├── data │ │ ├── nobel_winners.db │ │ ├── nobel_winners_cleaned.db │ │ ├── nobel_winners_cleaned_api.db │ │ └── nobel_winners_cleaned_api_test.db │ └── requirements.txt │ └── winners ├── Part_5_Visualizing_your_Data_with_Plotly_and_D3 ├── Ch.14-Bringing_your_Charts_to_the_Web │ ├── Ch.14-Bringing_your_Charts_to_the_Web.ipynb │ ├── README.md │ ├── data │ │ └── nobel_winners_cleaned.json │ ├── from-notebook-to-the-web │ │ ├── index.html │ │ ├── script.js │ │ └── style.css │ ├── native-js-plots-with-plotly-json │ │ ├── data │ │ │ └── nobel_winners.json │ │ ├── index.html │ │ ├── scripts │ │ │ └── index.js │ │ └── styles │ │ │ └── index.css │ ├── native-js-plots-with-plotly │ │ ├── index.html │ │ ├── script.js │ │ └── style.css │ ├── static-charts-with-matplotlib │ │ ├── images │ │ │ ├── country_absolute_prize_numbers.png │ │ │ └── country_relative_prize_numbers.png │ │ └── index_nobel_static.html │ └── user-driven-plotly-with-js-and-html │ │ ├── data │ │ └── nobel_winners.json │ │ ├── index.html │ │ ├── scripts │ │ └── index.js │ │ └── styles │ │ └── index.css ├── Ch.15-21_Nobel_Dataviz_with_D3 │ ├── README.md │ ├── index.html │ └── static │ │ ├── css │ │ └── style.css │ │ ├── data │ │ ├── api │ │ │ ├── _winners │ │ │ └── winners │ │ │ │ ├── 56e7403f26a71108192d889b │ │ │ │ ├── 56e7403f26a71108192d889c │ │ │ │ ├── 56e7403f26a71108192d889d │ │ │ │ ├── 56e7403f26a71108192d889e │ │ │ │ ├── 56e7403f26a71108192d889f │ │ │ │ ├── 56e7403f26a71108192d88a0 │ │ │ │ ├── 56e7403f26a71108192d88a1 │ │ │ │ ├── 56e7403f26a71108192d88a2 │ │ │ │ ├── 56e7403f26a71108192d88a3 │ │ │ │ ├── 56e7403f26a71108192d88a4 │ │ │ │ ├── 56e7403f26a71108192d88a5 │ │ │ │ ├── 56e7403f26a71108192d88a6 │ │ │ │ ├── 56e7403f26a71108192d88a7 │ │ │ │ ├── 56e7403f26a71108192d88a8 │ │ │ │ ├── 56e7403f26a71108192d88a9 │ │ │ │ ├── 56e7403f26a71108192d88aa │ │ │ │ ├── 56e7403f26a71108192d88ab │ │ │ │ ├── 56e7403f26a71108192d88ac │ │ │ │ ├── 56e7403f26a71108192d88ad │ │ │ │ ├── 56e7403f26a71108192d88ae │ │ │ │ ├── 56e7403f26a71108192d88af │ │ │ │ ├── 56e7403f26a71108192d88b0 │ │ │ │ ├── 56e7403f26a71108192d88b1 │ │ │ │ ├── 56e7403f26a71108192d88b2 │ │ │ │ ├── 56e7403f26a71108192d88b3 │ │ │ │ ├── 56e7403f26a71108192d88b4 │ │ │ │ ├── 56e7403f26a71108192d88b5 │ │ │ │ ├── 56e7403f26a71108192d88b6 │ │ │ │ ├── 56e7403f26a71108192d88b7 │ │ │ │ ├── 56e7403f26a71108192d88b8 │ │ │ │ ├── 56e7403f26a71108192d88b9 │ │ │ │ ├── 56e7403f26a71108192d88ba │ │ │ │ ├── 56e7403f26a71108192d88bb │ │ │ │ ├── 56e7403f26a71108192d88bc │ │ │ │ ├── 56e7403f26a71108192d88bd │ │ │ │ ├── 56e7403f26a71108192d88be │ │ │ │ ├── 56e7403f26a71108192d88bf │ │ │ │ ├── 56e7403f26a71108192d88c0 │ │ │ │ ├── 56e7403f26a71108192d88c1 │ │ │ │ ├── 56e7403f26a71108192d88c2 │ │ │ │ ├── 56e7403f26a71108192d88c3 │ │ │ │ ├── 56e7403f26a71108192d88c4 │ │ │ │ ├── 56e7403f26a71108192d88c5 │ │ │ │ ├── 56e7403f26a71108192d88c6 │ │ │ │ ├── 56e7403f26a71108192d88c7 │ │ │ │ ├── 56e7403f26a71108192d88c8 │ │ │ │ ├── 56e7403f26a71108192d88c9 │ │ │ │ ├── 56e7403f26a71108192d88ca │ │ │ │ ├── 56e7403f26a71108192d88cb │ │ │ │ ├── 56e7403f26a71108192d88cc │ │ │ │ ├── 56e7403f26a71108192d88cd │ │ │ │ ├── 56e7403f26a71108192d88ce │ │ │ │ ├── 56e7403f26a71108192d88cf │ │ │ │ ├── 56e7403f26a71108192d88d0 │ │ │ │ ├── 56e7403f26a71108192d88d1 │ │ │ │ ├── 56e7403f26a71108192d88d2 │ │ │ │ ├── 56e7403f26a71108192d88d3 │ │ │ │ ├── 56e7403f26a71108192d88d4 │ │ │ │ ├── 56e7403f26a71108192d88d5 │ │ │ │ ├── 56e7403f26a71108192d88d6 │ │ │ │ ├── 56e7403f26a71108192d88d7 │ │ │ │ ├── 56e7403f26a71108192d88d8 │ │ │ │ ├── 56e7403f26a71108192d88d9 │ │ │ │ ├── 56e7403f26a71108192d88da │ │ │ │ ├── 56e7403f26a71108192d88db │ │ │ │ ├── 56e7403f26a71108192d88dc │ │ │ │ ├── 56e7403f26a71108192d88dd │ │ │ │ ├── 56e7403f26a71108192d88de │ │ │ │ ├── 56e7403f26a71108192d88df │ │ │ │ ├── 56e7403f26a71108192d88e0 │ │ │ │ ├── 56e7403f26a71108192d88e1 │ │ │ │ ├── 56e7403f26a71108192d88e2 │ │ │ │ ├── 56e7403f26a71108192d88e3 │ │ │ │ ├── 56e7403f26a71108192d88e4 │ │ │ │ ├── 56e7403f26a71108192d88e5 │ │ │ │ ├── 56e7403f26a71108192d88e6 │ │ │ │ ├── 56e7403f26a71108192d88e7 │ │ │ │ ├── 56e7403f26a71108192d88e8 │ │ │ │ ├── 56e7403f26a71108192d88e9 │ │ │ │ ├── 56e7403f26a71108192d88ea │ │ │ │ ├── 56e7403f26a71108192d88eb │ │ │ │ ├── 56e7403f26a71108192d88ec │ │ │ │ ├── 56e7403f26a71108192d88ed │ │ │ │ ├── 56e7403f26a71108192d88ee │ │ │ │ ├── 56e7403f26a71108192d88ef │ │ │ │ ├── 56e7403f26a71108192d88f0 │ │ │ │ ├── 56e7403f26a71108192d88f1 │ │ │ │ ├── 56e7403f26a71108192d88f2 │ │ │ │ ├── 56e7403f26a71108192d88f3 │ │ │ │ ├── 56e7403f26a71108192d88f4 │ │ │ │ ├── 56e7403f26a71108192d88f5 │ │ │ │ ├── 56e7403f26a71108192d88f6 │ │ │ │ ├── 56e7403f26a71108192d88f7 │ │ │ │ ├── 56e7403f26a71108192d88f8 │ │ │ │ ├── 56e7403f26a71108192d88f9 │ │ │ │ ├── 56e7403f26a71108192d88fa │ │ │ │ ├── 56e7403f26a71108192d88fb │ │ │ │ ├── 56e7403f26a71108192d88fc │ │ │ │ ├── 56e7403f26a71108192d88fd │ │ │ │ ├── 56e7403f26a71108192d88fe │ │ │ │ ├── 56e7403f26a71108192d88ff │ │ │ │ ├── 56e7403f26a71108192d8900 │ │ │ │ ├── 56e7403f26a71108192d8901 │ │ │ │ ├── 56e7403f26a71108192d8902 │ │ │ │ ├── 56e7403f26a71108192d8903 │ │ │ │ ├── 56e7403f26a71108192d8904 │ │ │ │ ├── 56e7403f26a71108192d8905 │ │ │ │ ├── 56e7403f26a71108192d8906 │ │ │ │ ├── 56e7403f26a71108192d8907 │ │ │ │ ├── 56e7403f26a71108192d8908 │ │ │ │ ├── 56e7403f26a71108192d8909 │ │ │ │ ├── 56e7403f26a71108192d890a │ │ │ │ ├── 56e7403f26a71108192d890b │ │ │ │ ├── 56e7403f26a71108192d890c │ │ │ │ ├── 56e7403f26a71108192d890d │ │ │ │ ├── 56e7403f26a71108192d890e │ │ │ │ ├── 56e7403f26a71108192d890f │ │ │ │ ├── 56e7403f26a71108192d8910 │ │ │ │ ├── 56e7403f26a71108192d8911 │ │ │ │ ├── 56e7403f26a71108192d8912 │ │ │ │ ├── 56e7403f26a71108192d8913 │ │ │ │ ├── 56e7403f26a71108192d8914 │ │ │ │ ├── 56e7403f26a71108192d8915 │ │ │ │ ├── 56e7403f26a71108192d8916 │ │ │ │ ├── 56e7403f26a71108192d8917 │ │ │ │ ├── 56e7403f26a71108192d8918 │ │ │ │ ├── 56e7403f26a71108192d8919 │ │ │ │ ├── 56e7403f26a71108192d891a │ │ │ │ ├── 56e7403f26a71108192d891b │ │ │ │ ├── 56e7403f26a71108192d891c │ │ │ │ ├── 56e7403f26a71108192d891d │ │ │ │ ├── 56e7403f26a71108192d891e │ │ │ │ ├── 56e7403f26a71108192d891f │ │ │ │ ├── 56e7403f26a71108192d8920 │ │ │ │ ├── 56e7403f26a71108192d8921 │ │ │ │ ├── 56e7403f26a71108192d8922 │ │ │ │ ├── 56e7403f26a71108192d8923 │ │ │ │ ├── 56e7403f26a71108192d8924 │ │ │ │ ├── 56e7403f26a71108192d8925 │ │ │ │ ├── 56e7403f26a71108192d8926 │ │ │ │ ├── 56e7403f26a71108192d8927 │ │ │ │ ├── 56e7403f26a71108192d8928 │ │ │ │ ├── 56e7403f26a71108192d8929 │ │ │ │ ├── 56e7403f26a71108192d892a │ │ │ │ ├── 56e7403f26a71108192d892b │ │ │ │ ├── 56e7403f26a71108192d892c │ │ │ │ ├── 56e7403f26a71108192d892d │ │ │ │ ├── 56e7403f26a71108192d892e │ │ │ │ ├── 56e7403f26a71108192d892f │ │ │ │ ├── 56e7403f26a71108192d8930 │ │ │ │ ├── 56e7403f26a71108192d8931 │ │ │ │ ├── 56e7403f26a71108192d8932 │ │ │ │ ├── 56e7403f26a71108192d8933 │ │ │ │ ├── 56e7403f26a71108192d8934 │ │ │ │ ├── 56e7403f26a71108192d8935 │ │ │ │ ├── 56e7403f26a71108192d8936 │ │ │ │ ├── 56e7403f26a71108192d8937 │ │ │ │ ├── 56e7403f26a71108192d8938 │ │ │ │ ├── 56e7403f26a71108192d8939 │ │ │ │ ├── 56e7403f26a71108192d893a │ │ │ │ ├── 56e7403f26a71108192d893b │ │ │ │ ├── 56e7403f26a71108192d893c │ │ │ │ ├── 56e7403f26a71108192d893d │ │ │ │ ├── 56e7403f26a71108192d893e │ │ │ │ ├── 56e7403f26a71108192d893f │ │ │ │ ├── 56e7403f26a71108192d8940 │ │ │ │ ├── 56e7403f26a71108192d8941 │ │ │ │ ├── 56e7403f26a71108192d8942 │ │ │ │ ├── 56e7403f26a71108192d8943 │ │ │ │ ├── 56e7403f26a71108192d8944 │ │ │ │ ├── 56e7403f26a71108192d8945 │ │ │ │ ├── 56e7403f26a71108192d8946 │ │ │ │ ├── 56e7403f26a71108192d8947 │ │ │ │ ├── 56e7403f26a71108192d8948 │ │ │ │ ├── 56e7403f26a71108192d8949 │ │ │ │ ├── 56e7403f26a71108192d894a │ │ │ │ ├── 56e7403f26a71108192d894b │ │ │ │ ├── 56e7403f26a71108192d894c │ │ │ │ ├── 56e7403f26a71108192d894d │ │ │ │ ├── 56e7403f26a71108192d894e │ │ │ │ ├── 56e7403f26a71108192d894f │ │ │ │ ├── 56e7403f26a71108192d8950 │ │ │ │ ├── 56e7403f26a71108192d8951 │ │ │ │ ├── 56e7403f26a71108192d8952 │ │ │ │ ├── 56e7403f26a71108192d8953 │ │ │ │ ├── 56e7403f26a71108192d8954 │ │ │ │ ├── 56e7403f26a71108192d8955 │ │ │ │ ├── 56e7403f26a71108192d8956 │ │ │ │ ├── 56e7403f26a71108192d8957 │ │ │ │ ├── 56e7403f26a71108192d8958 │ │ │ │ ├── 56e7403f26a71108192d8959 │ │ │ │ ├── 56e7403f26a71108192d895a │ │ │ │ ├── 56e7403f26a71108192d895b │ │ │ │ ├── 56e7403f26a71108192d895c │ │ │ │ ├── 56e7403f26a71108192d895d │ │ │ │ ├── 56e7403f26a71108192d895e │ │ │ │ ├── 56e7403f26a71108192d895f │ │ │ │ ├── 56e7403f26a71108192d8960 │ │ │ │ ├── 56e7403f26a71108192d8961 │ │ │ │ ├── 56e7403f26a71108192d8962 │ │ │ │ ├── 56e7403f26a71108192d8963 │ │ │ │ ├── 56e7403f26a71108192d8964 │ │ │ │ ├── 56e7403f26a71108192d8965 │ │ │ │ ├── 56e7403f26a71108192d8966 │ │ │ │ ├── 56e7403f26a71108192d8967 │ │ │ │ ├── 56e7403f26a71108192d8968 │ │ │ │ ├── 56e7403f26a71108192d8969 │ │ │ │ ├── 56e7403f26a71108192d896a │ │ │ │ ├── 56e7403f26a71108192d896b │ │ │ │ ├── 56e7403f26a71108192d896c │ │ │ │ ├── 56e7403f26a71108192d896d │ │ │ │ ├── 56e7403f26a71108192d896e │ │ │ │ ├── 56e7403f26a71108192d896f │ │ │ │ ├── 56e7403f26a71108192d8970 │ │ │ │ ├── 56e7403f26a71108192d8971 │ │ │ │ ├── 56e7403f26a71108192d8972 │ │ │ │ ├── 56e7403f26a71108192d8973 │ │ │ │ ├── 56e7403f26a71108192d8974 │ │ │ │ ├── 56e7403f26a71108192d8975 │ │ │ │ ├── 56e7403f26a71108192d8976 │ │ │ │ ├── 56e7403f26a71108192d8977 │ │ │ │ ├── 56e7403f26a71108192d8978 │ │ │ │ ├── 56e7403f26a71108192d8979 │ │ │ │ ├── 56e7403f26a71108192d897a │ │ │ │ ├── 56e7403f26a71108192d897b │ │ │ │ ├── 56e7403f26a71108192d897c │ │ │ │ ├── 56e7403f26a71108192d897d │ │ │ │ ├── 56e7403f26a71108192d897e │ │ │ │ ├── 56e7403f26a71108192d897f │ │ │ │ ├── 56e7403f26a71108192d8980 │ │ │ │ ├── 56e7403f26a71108192d8981 │ │ │ │ ├── 56e7403f26a71108192d8982 │ │ │ │ ├── 56e7403f26a71108192d8983 │ │ │ │ ├── 56e7403f26a71108192d8984 │ │ │ │ ├── 56e7403f26a71108192d8985 │ │ │ │ ├── 56e7403f26a71108192d8986 │ │ │ │ ├── 56e7403f26a71108192d8987 │ │ │ │ ├── 56e7403f26a71108192d8988 │ │ │ │ ├── 56e7403f26a71108192d8989 │ │ │ │ ├── 56e7403f26a71108192d898a │ │ │ │ ├── 56e7403f26a71108192d898b │ │ │ │ ├── 56e7403f26a71108192d898c │ │ │ │ ├── 56e7403f26a71108192d898d │ │ │ │ ├── 56e7403f26a71108192d898e │ │ │ │ ├── 56e7403f26a71108192d898f │ │ │ │ ├── 56e7403f26a71108192d8990 │ │ │ │ ├── 56e7403f26a71108192d8991 │ │ │ │ ├── 56e7403f26a71108192d8992 │ │ │ │ ├── 56e7403f26a71108192d8993 │ │ │ │ ├── 56e7403f26a71108192d8994 │ │ │ │ ├── 56e7403f26a71108192d8995 │ │ │ │ ├── 56e7403f26a71108192d8996 │ │ │ │ ├── 56e7403f26a71108192d8997 │ │ │ │ ├── 56e7403f26a71108192d8998 │ │ │ │ ├── 56e7403f26a71108192d8999 │ │ │ │ ├── 56e7403f26a71108192d899a │ │ │ │ ├── 56e7403f26a71108192d899b │ │ │ │ ├── 56e7403f26a71108192d899c │ │ │ │ ├── 56e7403f26a71108192d899d │ │ │ │ ├── 56e7403f26a71108192d899e │ │ │ │ ├── 56e7403f26a71108192d899f │ │ │ │ ├── 56e7403f26a71108192d89a0 │ │ │ │ ├── 56e7403f26a71108192d89a1 │ │ │ │ ├── 56e7403f26a71108192d89a2 │ │ │ │ ├── 56e7403f26a71108192d89a3 │ │ │ │ ├── 56e7403f26a71108192d89a4 │ │ │ │ ├── 56e7403f26a71108192d89a5 │ │ │ │ ├── 56e7403f26a71108192d89a6 │ │ │ │ ├── 56e7403f26a71108192d89a7 │ │ │ │ ├── 56e7403f26a71108192d89a8 │ │ │ │ ├── 56e7403f26a71108192d89a9 │ │ │ │ ├── 56e7403f26a71108192d89aa │ │ │ │ ├── 56e7403f26a71108192d89ab │ │ │ │ ├── 56e7403f26a71108192d89ac │ │ │ │ ├── 56e7403f26a71108192d89ad │ │ │ │ ├── 56e7403f26a71108192d89ae │ │ │ │ ├── 56e7403f26a71108192d89af │ │ │ │ ├── 56e7403f26a71108192d89b0 │ │ │ │ ├── 56e7403f26a71108192d89b1 │ │ │ │ ├── 56e7403f26a71108192d89b2 │ │ │ │ ├── 56e7403f26a71108192d89b3 │ │ │ │ ├── 56e7403f26a71108192d89b4 │ │ │ │ ├── 56e7403f26a71108192d89b5 │ │ │ │ ├── 56e7403f26a71108192d89b6 │ │ │ │ ├── 56e7403f26a71108192d89b7 │ │ │ │ ├── 56e7403f26a71108192d89b8 │ │ │ │ ├── 56e7403f26a71108192d89b9 │ │ │ │ ├── 56e7403f26a71108192d89ba │ │ │ │ ├── 56e7403f26a71108192d89bb │ │ │ │ ├── 56e7403f26a71108192d89bc │ │ │ │ ├── 56e7403f26a71108192d89bd │ │ │ │ ├── 56e7403f26a71108192d89be │ │ │ │ ├── 56e7403f26a71108192d89bf │ │ │ │ ├── 56e7403f26a71108192d89c0 │ │ │ │ ├── 56e7403f26a71108192d89c1 │ │ │ │ ├── 56e7403f26a71108192d89c2 │ │ │ │ ├── 56e7403f26a71108192d89c3 │ │ │ │ ├── 56e7403f26a71108192d89c4 │ │ │ │ ├── 56e7403f26a71108192d89c5 │ │ │ │ ├── 56e7403f26a71108192d89c6 │ │ │ │ ├── 56e7403f26a71108192d89c7 │ │ │ │ ├── 56e7403f26a71108192d89c8 │ │ │ │ ├── 56e7403f26a71108192d89c9 │ │ │ │ ├── 56e7403f26a71108192d89ca │ │ │ │ ├── 56e7403f26a71108192d89cb │ │ │ │ ├── 56e7403f26a71108192d89cc │ │ │ │ ├── 56e7403f26a71108192d89cd │ │ │ │ ├── 56e7403f26a71108192d89ce │ │ │ │ ├── 56e7403f26a71108192d89cf │ │ │ │ ├── 56e7403f26a71108192d89d0 │ │ │ │ ├── 56e7403f26a71108192d89d1 │ │ │ │ ├── 56e7403f26a71108192d89d2 │ │ │ │ ├── 56e7403f26a71108192d89d3 │ │ │ │ ├── 56e7403f26a71108192d89d4 │ │ │ │ ├── 56e7403f26a71108192d89d5 │ │ │ │ ├── 56e7403f26a71108192d89d6 │ │ │ │ ├── 56e7403f26a71108192d89d7 │ │ │ │ ├── 56e7403f26a71108192d89d8 │ │ │ │ ├── 56e7403f26a71108192d89d9 │ │ │ │ ├── 56e7403f26a71108192d89da │ │ │ │ ├── 56e7403f26a71108192d89db │ │ │ │ ├── 56e7403f26a71108192d89dc │ │ │ │ ├── 56e7403f26a71108192d89dd │ │ │ │ ├── 56e7403f26a71108192d89de │ │ │ │ ├── 56e7403f26a71108192d89df │ │ │ │ ├── 56e7403f26a71108192d89e0 │ │ │ │ ├── 56e7403f26a71108192d89e1 │ │ │ │ ├── 56e7403f26a71108192d89e2 │ │ │ │ ├── 56e7403f26a71108192d89e3 │ │ │ │ ├── 56e7403f26a71108192d89e4 │ │ │ │ ├── 56e7403f26a71108192d89e5 │ │ │ │ ├── 56e7403f26a71108192d89e6 │ │ │ │ ├── 56e7403f26a71108192d89e7 │ │ │ │ ├── 56e7403f26a71108192d89e8 │ │ │ │ ├── 56e7403f26a71108192d89e9 │ │ │ │ ├── 56e7403f26a71108192d89ea │ │ │ │ ├── 56e7403f26a71108192d89eb │ │ │ │ ├── 56e7403f26a71108192d89ec │ │ │ │ ├── 56e7403f26a71108192d89ed │ │ │ │ ├── 56e7403f26a71108192d89ee │ │ │ │ ├── 56e7403f26a71108192d89ef │ │ │ │ ├── 56e7403f26a71108192d89f0 │ │ │ │ ├── 56e7403f26a71108192d89f1 │ │ │ │ ├── 56e7403f26a71108192d89f2 │ │ │ │ ├── 56e7403f26a71108192d89f3 │ │ │ │ ├── 56e7403f26a71108192d89f4 │ │ │ │ ├── 56e7403f26a71108192d89f5 │ │ │ │ ├── 56e7403f26a71108192d89f6 │ │ │ │ ├── 56e7403f26a71108192d89f7 │ │ │ │ ├── 56e7403f26a71108192d89f8 │ │ │ │ ├── 56e7403f26a71108192d89f9 │ │ │ │ ├── 56e7403f26a71108192d89fa │ │ │ │ ├── 56e7403f26a71108192d89fb │ │ │ │ ├── 56e7403f26a71108192d89fc │ │ │ │ ├── 56e7403f26a71108192d89fd │ │ │ │ ├── 56e7403f26a71108192d89fe │ │ │ │ ├── 56e7403f26a71108192d89ff │ │ │ │ ├── 56e7403f26a71108192d8a00 │ │ │ │ ├── 56e7403f26a71108192d8a01 │ │ │ │ ├── 56e7403f26a71108192d8a02 │ │ │ │ ├── 56e7403f26a71108192d8a03 │ │ │ │ ├── 56e7403f26a71108192d8a04 │ │ │ │ ├── 56e7403f26a71108192d8a05 │ │ │ │ ├── 56e7403f26a71108192d8a06 │ │ │ │ ├── 56e7403f26a71108192d8a07 │ │ │ │ ├── 56e7403f26a71108192d8a08 │ │ │ │ ├── 56e7403f26a71108192d8a09 │ │ │ │ ├── 56e7403f26a71108192d8a0a │ │ │ │ ├── 56e7403f26a71108192d8a0b │ │ │ │ ├── 56e7403f26a71108192d8a0c │ │ │ │ ├── 56e7403f26a71108192d8a0d │ │ │ │ ├── 56e7403f26a71108192d8a0e │ │ │ │ ├── 56e7403f26a71108192d8a0f │ │ │ │ ├── 56e7403f26a71108192d8a10 │ │ │ │ ├── 56e7403f26a71108192d8a11 │ │ │ │ ├── 56e7403f26a71108192d8a12 │ │ │ │ ├── 56e7403f26a71108192d8a13 │ │ │ │ ├── 56e7403f26a71108192d8a14 │ │ │ │ ├── 56e7403f26a71108192d8a15 │ │ │ │ ├── 56e7403f26a71108192d8a16 │ │ │ │ ├── 56e7403f26a71108192d8a17 │ │ │ │ ├── 56e7403f26a71108192d8a18 │ │ │ │ ├── 56e7403f26a71108192d8a19 │ │ │ │ ├── 56e7403f26a71108192d8a1a │ │ │ │ ├── 56e7403f26a71108192d8a1b │ │ │ │ ├── 56e7403f26a71108192d8a1c │ │ │ │ ├── 56e7403f26a71108192d8a1d │ │ │ │ ├── 56e7403f26a71108192d8a1e │ │ │ │ ├── 56e7403f26a71108192d8a1f │ │ │ │ ├── 56e7403f26a71108192d8a20 │ │ │ │ ├── 56e7403f26a71108192d8a21 │ │ │ │ ├── 56e7403f26a71108192d8a22 │ │ │ │ ├── 56e7403f26a71108192d8a23 │ │ │ │ ├── 56e7403f26a71108192d8a24 │ │ │ │ ├── 56e7403f26a71108192d8a25 │ │ │ │ ├── 56e7403f26a71108192d8a26 │ │ │ │ ├── 56e7403f26a71108192d8a27 │ │ │ │ ├── 56e7403f26a71108192d8a28 │ │ │ │ ├── 56e7403f26a71108192d8a29 │ │ │ │ ├── 56e7403f26a71108192d8a2a │ │ │ │ ├── 56e7403f26a71108192d8a2b │ │ │ │ ├── 56e7403f26a71108192d8a2c │ │ │ │ ├── 56e7403f26a71108192d8a2d │ │ │ │ ├── 56e7403f26a71108192d8a2e │ │ │ │ ├── 56e7403f26a71108192d8a2f │ │ │ │ ├── 56e7403f26a71108192d8a30 │ │ │ │ ├── 56e7403f26a71108192d8a31 │ │ │ │ ├── 56e7403f26a71108192d8a32 │ │ │ │ ├── 56e7403f26a71108192d8a33 │ │ │ │ ├── 56e7403f26a71108192d8a34 │ │ │ │ ├── 56e7403f26a71108192d8a35 │ │ │ │ ├── 56e7403f26a71108192d8a36 │ │ │ │ ├── 56e7403f26a71108192d8a37 │ │ │ │ ├── 56e7403f26a71108192d8a38 │ │ │ │ ├── 56e7403f26a71108192d8a39 │ │ │ │ ├── 56e7403f26a71108192d8a3a │ │ │ │ ├── 56e7403f26a71108192d8a3b │ │ │ │ ├── 56e7403f26a71108192d8a3c │ │ │ │ ├── 56e7403f26a71108192d8a3d │ │ │ │ ├── 56e7403f26a71108192d8a3e │ │ │ │ ├── 56e7403f26a71108192d8a3f │ │ │ │ ├── 56e7403f26a71108192d8a40 │ │ │ │ ├── 56e7403f26a71108192d8a41 │ │ │ │ ├── 56e7403f26a71108192d8a42 │ │ │ │ ├── 56e7403f26a71108192d8a43 │ │ │ │ ├── 56e7403f26a71108192d8a44 │ │ │ │ ├── 56e7403f26a71108192d8a45 │ │ │ │ ├── 56e7403f26a71108192d8a46 │ │ │ │ ├── 56e7403f26a71108192d8a47 │ │ │ │ ├── 56e7403f26a71108192d8a48 │ │ │ │ ├── 56e7403f26a71108192d8a49 │ │ │ │ ├── 56e7403f26a71108192d8a4a │ │ │ │ ├── 56e7403f26a71108192d8a4b │ │ │ │ ├── 56e7403f26a71108192d8a4c │ │ │ │ ├── 56e7403f26a71108192d8a4d │ │ │ │ ├── 56e7403f26a71108192d8a4e │ │ │ │ ├── 56e7403f26a71108192d8a4f │ │ │ │ ├── 56e7403f26a71108192d8a50 │ │ │ │ ├── 56e7403f26a71108192d8a51 │ │ │ │ ├── 56e7403f26a71108192d8a52 │ │ │ │ ├── 56e7403f26a71108192d8a53 │ │ │ │ ├── 56e7403f26a71108192d8a54 │ │ │ │ ├── 56e7403f26a71108192d8a55 │ │ │ │ ├── 56e7403f26a71108192d8a56 │ │ │ │ ├── 56e7403f26a71108192d8a57 │ │ │ │ ├── 56e7403f26a71108192d8a58 │ │ │ │ ├── 56e7403f26a71108192d8a59 │ │ │ │ ├── 56e7403f26a71108192d8a5a │ │ │ │ ├── 56e7403f26a71108192d8a5b │ │ │ │ ├── 56e7403f26a71108192d8a5c │ │ │ │ ├── 56e7403f26a71108192d8a5d │ │ │ │ ├── 56e7403f26a71108192d8a5e │ │ │ │ ├── 56e7403f26a71108192d8a5f │ │ │ │ ├── 56e7403f26a71108192d8a60 │ │ │ │ ├── 56e7403f26a71108192d8a61 │ │ │ │ ├── 56e7403f26a71108192d8a62 │ │ │ │ ├── 56e7403f26a71108192d8a63 │ │ │ │ ├── 56e7403f26a71108192d8a64 │ │ │ │ ├── 56e7403f26a71108192d8a65 │ │ │ │ ├── 56e7403f26a71108192d8a66 │ │ │ │ ├── 56e7403f26a71108192d8a67 │ │ │ │ ├── 56e7403f26a71108192d8a68 │ │ │ │ ├── 56e7403f26a71108192d8a69 │ │ │ │ ├── 56e7403f26a71108192d8a6a │ │ │ │ ├── 56e7403f26a71108192d8a6b │ │ │ │ ├── 56e7403f26a71108192d8a6c │ │ │ │ ├── 56e7403f26a71108192d8a6d │ │ │ │ ├── 56e7403f26a71108192d8a6e │ │ │ │ ├── 56e7403f26a71108192d8a6f │ │ │ │ ├── 56e7403f26a71108192d8a70 │ │ │ │ ├── 56e7403f26a71108192d8a71 │ │ │ │ ├── 56e7403f26a71108192d8a72 │ │ │ │ ├── 56e7403f26a71108192d8a73 │ │ │ │ ├── 56e7403f26a71108192d8a74 │ │ │ │ ├── 56e7403f26a71108192d8a75 │ │ │ │ ├── 56e7403f26a71108192d8a76 │ │ │ │ ├── 56e7403f26a71108192d8a77 │ │ │ │ ├── 56e7403f26a71108192d8a78 │ │ │ │ ├── 56e7403f26a71108192d8a79 │ │ │ │ ├── 56e7403f26a71108192d8a7a │ │ │ │ ├── 56e7403f26a71108192d8a7b │ │ │ │ ├── 56e7403f26a71108192d8a7c │ │ │ │ ├── 56e7403f26a71108192d8a7d │ │ │ │ ├── 56e7403f26a71108192d8a7e │ │ │ │ ├── 56e7403f26a71108192d8a7f │ │ │ │ ├── 56e7403f26a71108192d8a80 │ │ │ │ ├── 56e7403f26a71108192d8a81 │ │ │ │ ├── 56e7403f26a71108192d8a82 │ │ │ │ ├── 56e7403f26a71108192d8a83 │ │ │ │ ├── 56e7403f26a71108192d8a84 │ │ │ │ ├── 56e7403f26a71108192d8a85 │ │ │ │ ├── 56e7403f26a71108192d8a86 │ │ │ │ ├── 56e7403f26a71108192d8a87 │ │ │ │ ├── 56e7403f26a71108192d8a88 │ │ │ │ ├── 56e7403f26a71108192d8a89 │ │ │ │ ├── 56e7403f26a71108192d8a8a │ │ │ │ ├── 56e7403f26a71108192d8a8b │ │ │ │ ├── 56e7403f26a71108192d8a8c │ │ │ │ ├── 56e7403f26a71108192d8a8d │ │ │ │ ├── 56e7403f26a71108192d8a8e │ │ │ │ ├── 56e7403f26a71108192d8a8f │ │ │ │ ├── 56e7403f26a71108192d8a90 │ │ │ │ ├── 56e7403f26a71108192d8a91 │ │ │ │ ├── 56e7403f26a71108192d8a92 │ │ │ │ ├── 56e7403f26a71108192d8a93 │ │ │ │ ├── 56e7403f26a71108192d8a94 │ │ │ │ ├── 56e7403f26a71108192d8a95 │ │ │ │ ├── 56e7403f26a71108192d8a96 │ │ │ │ ├── 56e7403f26a71108192d8a97 │ │ │ │ ├── 56e7403f26a71108192d8a98 │ │ │ │ ├── 56e7403f26a71108192d8a99 │ │ │ │ ├── 56e7403f26a71108192d8a9a │ │ │ │ ├── 56e7403f26a71108192d8a9b │ │ │ │ ├── 56e7403f26a71108192d8a9c │ │ │ │ ├── 56e7403f26a71108192d8a9d │ │ │ │ ├── 56e7403f26a71108192d8a9e │ │ │ │ ├── 56e7403f26a71108192d8a9f │ │ │ │ ├── 56e7403f26a71108192d8aa0 │ │ │ │ ├── 56e7403f26a71108192d8aa1 │ │ │ │ ├── 56e7403f26a71108192d8aa2 │ │ │ │ ├── 56e7403f26a71108192d8aa3 │ │ │ │ ├── 56e7403f26a71108192d8aa4 │ │ │ │ ├── 56e7403f26a71108192d8aa5 │ │ │ │ ├── 56e7403f26a71108192d8aa6 │ │ │ │ ├── 56e7403f26a71108192d8aa7 │ │ │ │ ├── 56e7403f26a71108192d8aa8 │ │ │ │ ├── 56e7403f26a71108192d8aa9 │ │ │ │ ├── 56e7403f26a71108192d8aaa │ │ │ │ ├── 56e7403f26a71108192d8aab │ │ │ │ ├── 56e7403f26a71108192d8aac │ │ │ │ ├── 56e7403f26a71108192d8aad │ │ │ │ ├── 56e7403f26a71108192d8aae │ │ │ │ ├── 56e7403f26a71108192d8aaf │ │ │ │ ├── 56e7403f26a71108192d8ab0 │ │ │ │ ├── 56e7403f26a71108192d8ab1 │ │ │ │ ├── 56e7403f26a71108192d8ab2 │ │ │ │ ├── 56e7403f26a71108192d8ab3 │ │ │ │ ├── 56e7403f26a71108192d8ab4 │ │ │ │ ├── 56e7403f26a71108192d8ab5 │ │ │ │ ├── 56e7403f26a71108192d8ab6 │ │ │ │ ├── 56e7403f26a71108192d8ab7 │ │ │ │ ├── 56e7403f26a71108192d8ab8 │ │ │ │ ├── 56e7403f26a71108192d8ab9 │ │ │ │ ├── 56e7403f26a71108192d8aba │ │ │ │ ├── 56e7403f26a71108192d8abb │ │ │ │ ├── 56e7403f26a71108192d8abc │ │ │ │ ├── 56e7403f26a71108192d8abd │ │ │ │ ├── 56e7403f26a71108192d8abe │ │ │ │ ├── 56e7403f26a71108192d8abf │ │ │ │ ├── 56e7403f26a71108192d8ac0 │ │ │ │ ├── 56e7403f26a71108192d8ac1 │ │ │ │ ├── 56e7403f26a71108192d8ac2 │ │ │ │ ├── 56e7403f26a71108192d8ac3 │ │ │ │ ├── 56e7403f26a71108192d8ac4 │ │ │ │ ├── 56e7403f26a71108192d8ac5 │ │ │ │ ├── 56e7403f26a71108192d8ac6 │ │ │ │ ├── 56e7403f26a71108192d8ac7 │ │ │ │ ├── 56e7403f26a71108192d8ac8 │ │ │ │ ├── 56e7403f26a71108192d8ac9 │ │ │ │ ├── 56e7403f26a71108192d8aca │ │ │ │ ├── 56e7403f26a71108192d8acb │ │ │ │ ├── 56e7403f26a71108192d8acc │ │ │ │ ├── 56e7403f26a71108192d8acd │ │ │ │ ├── 56e7403f26a71108192d8ace │ │ │ │ ├── 56e7403f26a71108192d8acf │ │ │ │ ├── 56e7403f26a71108192d8ad0 │ │ │ │ ├── 56e7403f26a71108192d8ad1 │ │ │ │ ├── 56e7403f26a71108192d8ad2 │ │ │ │ ├── 56e7403f26a71108192d8ad3 │ │ │ │ ├── 56e7403f26a71108192d8ad4 │ │ │ │ ├── 56e7403f26a71108192d8ad5 │ │ │ │ ├── 56e7403f26a71108192d8ad6 │ │ │ │ ├── 56e7403f26a71108192d8ad7 │ │ │ │ ├── 56e7403f26a71108192d8ad8 │ │ │ │ ├── 56e7403f26a71108192d8ad9 │ │ │ │ ├── 56e7403f26a71108192d8ada │ │ │ │ ├── 56e7403f26a71108192d8adb │ │ │ │ ├── 56e7403f26a71108192d8adc │ │ │ │ ├── 56e7403f26a71108192d8add │ │ │ │ ├── 56e7403f26a71108192d8ade │ │ │ │ ├── 56e7403f26a71108192d8adf │ │ │ │ ├── 56e7403f26a71108192d8ae0 │ │ │ │ ├── 56e7403f26a71108192d8ae1 │ │ │ │ ├── 56e7403f26a71108192d8ae2 │ │ │ │ ├── 56e7403f26a71108192d8ae3 │ │ │ │ ├── 56e7403f26a71108192d8ae4 │ │ │ │ ├── 56e7403f26a71108192d8ae5 │ │ │ │ ├── 56e7403f26a71108192d8ae6 │ │ │ │ ├── 56e7403f26a71108192d8ae7 │ │ │ │ ├── 56e7403f26a71108192d8ae8 │ │ │ │ ├── 56e7403f26a71108192d8ae9 │ │ │ │ ├── 56e7403f26a71108192d8aea │ │ │ │ ├── 56e7403f26a71108192d8aeb │ │ │ │ ├── 56e7403f26a71108192d8aec │ │ │ │ ├── 56e7403f26a71108192d8aed │ │ │ │ ├── 56e7403f26a71108192d8aee │ │ │ │ ├── 56e7403f26a71108192d8aef │ │ │ │ ├── 56e7403f26a71108192d8af0 │ │ │ │ ├── 56e7403f26a71108192d8af1 │ │ │ │ ├── 56e7403f26a71108192d8af2 │ │ │ │ ├── 56e7403f26a71108192d8af3 │ │ │ │ ├── 56e7403f26a71108192d8af4 │ │ │ │ ├── 56e7403f26a71108192d8af5 │ │ │ │ ├── 56e7403f26a71108192d8af6 │ │ │ │ ├── 56e7403f26a71108192d8af7 │ │ │ │ ├── 56e7403f26a71108192d8af8 │ │ │ │ ├── 56e7403f26a71108192d8af9 │ │ │ │ ├── 56e7403f26a71108192d8afa │ │ │ │ ├── 56e7403f26a71108192d8afb │ │ │ │ ├── 56e7403f26a71108192d8afc │ │ │ │ ├── 56e7403f26a71108192d8afd │ │ │ │ ├── 56e7403f26a71108192d8afe │ │ │ │ ├── 56e7403f26a71108192d8aff │ │ │ │ ├── 56e7403f26a71108192d8b00 │ │ │ │ ├── 56e7403f26a71108192d8b01 │ │ │ │ ├── 56e7403f26a71108192d8b02 │ │ │ │ ├── 56e7403f26a71108192d8b03 │ │ │ │ ├── 56e7403f26a71108192d8b04 │ │ │ │ ├── 56e7403f26a71108192d8b05 │ │ │ │ ├── 56e7403f26a71108192d8b06 │ │ │ │ ├── 56e7403f26a71108192d8b07 │ │ │ │ ├── 56e7403f26a71108192d8b08 │ │ │ │ ├── 56e7403f26a71108192d8b09 │ │ │ │ ├── 56e7403f26a71108192d8b0a │ │ │ │ ├── 56e7403f26a71108192d8b0b │ │ │ │ ├── 56e7403f26a71108192d8b0c │ │ │ │ ├── 56e7403f26a71108192d8b0d │ │ │ │ ├── 56e7403f26a71108192d8b0e │ │ │ │ ├── 56e7403f26a71108192d8b0f │ │ │ │ ├── 56e7403f26a71108192d8b10 │ │ │ │ ├── 56e7403f26a71108192d8b11 │ │ │ │ ├── 56e7403f26a71108192d8b12 │ │ │ │ ├── 56e7403f26a71108192d8b13 │ │ │ │ ├── 56e7403f26a71108192d8b14 │ │ │ │ ├── 56e7403f26a71108192d8b15 │ │ │ │ ├── 56e7403f26a71108192d8b16 │ │ │ │ ├── 56e7403f26a71108192d8b17 │ │ │ │ ├── 56e7403f26a71108192d8b18 │ │ │ │ ├── 56e7403f26a71108192d8b19 │ │ │ │ ├── 56e7403f26a71108192d8b1a │ │ │ │ ├── 56e7403f26a71108192d8b1b │ │ │ │ ├── 56e7403f26a71108192d8b1c │ │ │ │ ├── 56e7403f26a71108192d8b1d │ │ │ │ ├── 56e7403f26a71108192d8b1e │ │ │ │ ├── 56e7403f26a71108192d8b1f │ │ │ │ ├── 56e7403f26a71108192d8b20 │ │ │ │ ├── 56e7403f26a71108192d8b21 │ │ │ │ ├── 56e7403f26a71108192d8b22 │ │ │ │ ├── 56e7403f26a71108192d8b23 │ │ │ │ ├── 56e7403f26a71108192d8b24 │ │ │ │ ├── 56e7403f26a71108192d8b25 │ │ │ │ ├── 56e7403f26a71108192d8b26 │ │ │ │ ├── 56e7403f26a71108192d8b27 │ │ │ │ ├── 56e7403f26a71108192d8b28 │ │ │ │ ├── 56e7403f26a71108192d8b29 │ │ │ │ ├── 56e7403f26a71108192d8b2a │ │ │ │ ├── 56e7403f26a71108192d8b2b │ │ │ │ ├── 56e7403f26a71108192d8b2c │ │ │ │ ├── 56e7403f26a71108192d8b2d │ │ │ │ ├── 56e7403f26a71108192d8b2e │ │ │ │ ├── 56e7403f26a71108192d8b2f │ │ │ │ ├── 56e7403f26a71108192d8b30 │ │ │ │ ├── 56e7403f26a71108192d8b31 │ │ │ │ ├── 56e7403f26a71108192d8b32 │ │ │ │ ├── 56e7403f26a71108192d8b33 │ │ │ │ ├── 56e7403f26a71108192d8b34 │ │ │ │ ├── 56e7403f26a71108192d8b35 │ │ │ │ ├── 56e7403f26a71108192d8b36 │ │ │ │ ├── 56e7403f26a71108192d8b37 │ │ │ │ ├── 56e7403f26a71108192d8b38 │ │ │ │ ├── 56e7403f26a71108192d8b39 │ │ │ │ ├── 56e7403f26a71108192d8b3a │ │ │ │ ├── 56e7403f26a71108192d8b3b │ │ │ │ ├── 56e7403f26a71108192d8b3c │ │ │ │ ├── 56e7403f26a71108192d8b3d │ │ │ │ ├── 56e7403f26a71108192d8b3e │ │ │ │ ├── 56e7403f26a71108192d8b3f │ │ │ │ ├── 56e7403f26a71108192d8b40 │ │ │ │ ├── 56e7403f26a71108192d8b41 │ │ │ │ ├── 56e7403f26a71108192d8b42 │ │ │ │ ├── 56e7403f26a71108192d8b43 │ │ │ │ ├── 56e7403f26a71108192d8b44 │ │ │ │ ├── 56e7403f26a71108192d8b45 │ │ │ │ ├── 56e7403f26a71108192d8b46 │ │ │ │ ├── 56e7403f26a71108192d8b47 │ │ │ │ ├── 56e7403f26a71108192d8b48 │ │ │ │ ├── 56e7403f26a71108192d8b49 │ │ │ │ ├── 56e7403f26a71108192d8b4a │ │ │ │ ├── 56e7403f26a71108192d8b4b │ │ │ │ ├── 56e7403f26a71108192d8b4c │ │ │ │ ├── 56e7403f26a71108192d8b4d │ │ │ │ ├── 56e7403f26a71108192d8b4e │ │ │ │ ├── 56e7403f26a71108192d8b4f │ │ │ │ ├── 56e7403f26a71108192d8b50 │ │ │ │ ├── 56e7403f26a71108192d8b51 │ │ │ │ ├── 56e7403f26a71108192d8b52 │ │ │ │ ├── 56e7403f26a71108192d8b53 │ │ │ │ ├── 56e7403f26a71108192d8b54 │ │ │ │ ├── 56e7403f26a71108192d8b55 │ │ │ │ ├── 56e7403f26a71108192d8b56 │ │ │ │ ├── 56e7403f26a71108192d8b57 │ │ │ │ ├── 56e7403f26a71108192d8b58 │ │ │ │ ├── 56e7403f26a71108192d8b59 │ │ │ │ ├── 56e7403f26a71108192d8b5a │ │ │ │ ├── 56e7403f26a71108192d8b5b │ │ │ │ ├── 56e7403f26a71108192d8b5c │ │ │ │ ├── 56e7403f26a71108192d8b5d │ │ │ │ ├── 56e7403f26a71108192d8b5e │ │ │ │ ├── 56e7403f26a71108192d8b5f │ │ │ │ ├── 56e7403f26a71108192d8b60 │ │ │ │ ├── 56e7403f26a71108192d8b61 │ │ │ │ ├── 56e7403f26a71108192d8b62 │ │ │ │ ├── 56e7403f26a71108192d8b63 │ │ │ │ ├── 56e7403f26a71108192d8b64 │ │ │ │ ├── 56e7403f26a71108192d8b65 │ │ │ │ ├── 56e7403f26a71108192d8b66 │ │ │ │ ├── 56e7403f26a71108192d8b67 │ │ │ │ ├── 56e7403f26a71108192d8b68 │ │ │ │ ├── 56e7403f26a71108192d8b69 │ │ │ │ ├── 56e7403f26a71108192d8b6a │ │ │ │ ├── 56e7403f26a71108192d8b6b │ │ │ │ ├── 56e7403f26a71108192d8b6c │ │ │ │ ├── 56e7403f26a71108192d8b6d │ │ │ │ ├── 56e7403f26a71108192d8b6e │ │ │ │ ├── 56e7403f26a71108192d8b6f │ │ │ │ ├── 56e7403f26a71108192d8b70 │ │ │ │ ├── 56e7403f26a71108192d8b71 │ │ │ │ ├── 56e7403f26a71108192d8b72 │ │ │ │ ├── 56e7403f26a71108192d8b73 │ │ │ │ ├── 56e7403f26a71108192d8b74 │ │ │ │ ├── 56e7403f26a71108192d8b75 │ │ │ │ ├── 56e7403f26a71108192d8b76 │ │ │ │ ├── 56e7403f26a71108192d8b77 │ │ │ │ ├── 56e7403f26a71108192d8b78 │ │ │ │ ├── 56e7403f26a71108192d8b79 │ │ │ │ ├── 56e7403f26a71108192d8b7a │ │ │ │ ├── 56e7403f26a71108192d8b7b │ │ │ │ ├── 56e7403f26a71108192d8b7c │ │ │ │ ├── 56e7403f26a71108192d8b7d │ │ │ │ ├── 56e7403f26a71108192d8b7e │ │ │ │ ├── 56e7403f26a71108192d8b7f │ │ │ │ ├── 56e7403f26a71108192d8b80 │ │ │ │ ├── 56e7403f26a71108192d8b81 │ │ │ │ ├── 56e7403f26a71108192d8b82 │ │ │ │ ├── 56e7403f26a71108192d8b83 │ │ │ │ ├── 56e7403f26a71108192d8b84 │ │ │ │ ├── 56e7403f26a71108192d8b85 │ │ │ │ ├── 56e7403f26a71108192d8b86 │ │ │ │ ├── 56e7403f26a71108192d8b87 │ │ │ │ ├── 56e7403f26a71108192d8b88 │ │ │ │ ├── 56e7403f26a71108192d8b89 │ │ │ │ ├── 56e7403f26a71108192d8b8a │ │ │ │ ├── 56e7403f26a71108192d8b8b │ │ │ │ ├── 56e7403f26a71108192d8b8c │ │ │ │ ├── 56e7403f26a71108192d8b8d │ │ │ │ ├── 56e7403f26a71108192d8b8e │ │ │ │ ├── 56e7403f26a71108192d8b8f │ │ │ │ ├── 56e7403f26a71108192d8b90 │ │ │ │ ├── 56e7403f26a71108192d8b91 │ │ │ │ ├── 56e7403f26a71108192d8b92 │ │ │ │ ├── 56e7403f26a71108192d8b93 │ │ │ │ ├── 56e7403f26a71108192d8b94 │ │ │ │ ├── 56e7403f26a71108192d8b95 │ │ │ │ ├── 56e7403f26a71108192d8b96 │ │ │ │ ├── 56e7403f26a71108192d8b97 │ │ │ │ ├── 56e7403f26a71108192d8b98 │ │ │ │ ├── 56e7403f26a71108192d8b99 │ │ │ │ ├── 56e7403f26a71108192d8b9a │ │ │ │ ├── 56e7403f26a71108192d8b9b │ │ │ │ ├── 56e7403f26a71108192d8b9c │ │ │ │ ├── 56e7403f26a71108192d8b9d │ │ │ │ ├── 56e7403f26a71108192d8b9e │ │ │ │ ├── 56e7403f26a71108192d8b9f │ │ │ │ ├── 56e7403f26a71108192d8ba0 │ │ │ │ ├── 56e7403f26a71108192d8ba1 │ │ │ │ ├── 56e7403f26a71108192d8ba2 │ │ │ │ ├── 56e7403f26a71108192d8ba3 │ │ │ │ ├── 56e7403f26a71108192d8ba4 │ │ │ │ ├── 56e7403f26a71108192d8ba5 │ │ │ │ ├── 56e7403f26a71108192d8ba6 │ │ │ │ ├── 56e7403f26a71108192d8ba7 │ │ │ │ ├── 56e7403f26a71108192d8ba8 │ │ │ │ ├── 56e7403f26a71108192d8ba9 │ │ │ │ ├── 56e7403f26a71108192d8baa │ │ │ │ ├── 56e7403f26a71108192d8bab │ │ │ │ ├── 56e7403f26a71108192d8bac │ │ │ │ ├── 56e7403f26a71108192d8bad │ │ │ │ ├── 56e7403f26a71108192d8bae │ │ │ │ ├── 56e7403f26a71108192d8baf │ │ │ │ ├── 56e7403f26a71108192d8bb0 │ │ │ │ ├── 56e7403f26a71108192d8bb1 │ │ │ │ ├── 56e7403f26a71108192d8bb2 │ │ │ │ ├── 56e7403f26a71108192d8bb3 │ │ │ │ ├── 56e7403f26a71108192d8bb4 │ │ │ │ ├── 56e7403f26a71108192d8bb5 │ │ │ │ ├── 56e7403f26a71108192d8bb6 │ │ │ │ ├── 56e7403f26a71108192d8bb7 │ │ │ │ ├── 56e7403f26a71108192d8bb8 │ │ │ │ ├── 56e7403f26a71108192d8bb9 │ │ │ │ ├── 56e7403f26a71108192d8bba │ │ │ │ ├── 56e7403f26a71108192d8bbb │ │ │ │ ├── 56e7403f26a71108192d8bbc │ │ │ │ ├── 56e7403f26a71108192d8bbd │ │ │ │ ├── 56e7403f26a71108192d8bbe │ │ │ │ ├── 56e7403f26a71108192d8bbf │ │ │ │ ├── 56e7403f26a71108192d8bc0 │ │ │ │ ├── 56e7403f26a71108192d8bc1 │ │ │ │ ├── 56e7403f26a71108192d8bc2 │ │ │ │ ├── 56e7403f26a71108192d8bc3 │ │ │ │ ├── 56e7403f26a71108192d8bc4 │ │ │ │ ├── 56e7403f26a71108192d8bc5 │ │ │ │ ├── 56e7403f26a71108192d8bc6 │ │ │ │ ├── 56e7403f26a71108192d8bc7 │ │ │ │ ├── 56e7403f26a71108192d8bc8 │ │ │ │ ├── 56e7403f26a71108192d8bc9 │ │ │ │ ├── 56e7403f26a71108192d8bca │ │ │ │ ├── 56e7403f26a71108192d8bcb │ │ │ │ ├── 56e7403f26a71108192d8bcc │ │ │ │ ├── 56e7403f26a71108192d8bcd │ │ │ │ ├── 56e7403f26a71108192d8bce │ │ │ │ ├── 56e7403f26a71108192d8bcf │ │ │ │ ├── 56e7403f26a71108192d8bd0 │ │ │ │ ├── 56e7403f26a71108192d8bd1 │ │ │ │ ├── 56e7403f26a71108192d8bd2 │ │ │ │ ├── 56e7403f26a71108192d8bd3 │ │ │ │ ├── 56e7403f26a71108192d8bd4 │ │ │ │ ├── 56e7403f26a71108192d8bd5 │ │ │ │ ├── 56e7403f26a71108192d8bd6 │ │ │ │ ├── 56e7403f26a71108192d8bd7 │ │ │ │ ├── 56e7403f26a71108192d8bd8 │ │ │ │ ├── 56e7403f26a71108192d8bd9 │ │ │ │ ├── 56e7403f26a71108192d8bda │ │ │ │ ├── 56e7403f26a71108192d8bdb │ │ │ │ ├── 56e7403f26a71108192d8bdc │ │ │ │ ├── 56e7403f26a71108192d8bdd │ │ │ │ ├── 56e7403f26a71108192d8bde │ │ │ │ ├── 56e7403f26a71108192d8bdf │ │ │ │ ├── 56e7403f26a71108192d8be0 │ │ │ │ ├── 56e7403f26a71108192d8be1 │ │ │ │ ├── 56e7403f26a71108192d8be2 │ │ │ │ ├── 56e7403f26a71108192d8be3 │ │ │ │ ├── 56e7403f26a71108192d8be4 │ │ │ │ ├── 56e7403f26a71108192d8be5 │ │ │ │ ├── 56e7403f26a71108192d8be6 │ │ │ │ ├── 56e7403f26a71108192d8be7 │ │ │ │ ├── 56e7403f26a71108192d8be8 │ │ │ │ ├── 56e7403f26a71108192d8be9 │ │ │ │ ├── 56e7403f26a71108192d8bea │ │ │ │ ├── 56e7403f26a71108192d8beb │ │ │ │ ├── 56e7403f26a71108192d8bec │ │ │ │ ├── 56e7403f26a71108192d8bed │ │ │ │ ├── 56e7403f26a71108192d8bee │ │ │ │ ├── 56e7403f26a71108192d8bef │ │ │ │ ├── 56e7403f26a71108192d8bf0 │ │ │ │ ├── 56e7403f26a71108192d8bf1 │ │ │ │ ├── 56e7403f26a71108192d8bf2 │ │ │ │ ├── 56e7403f26a71108192d8bf3 │ │ │ │ └── 56e7403f26a71108192d8bf4 │ │ ├── nobel_winners_biopic.json │ │ ├── winning_country_data.json │ │ ├── world-110m.json │ │ └── world-country-names-nobel.csv │ │ ├── images │ │ └── winners │ │ │ └── full │ │ │ ├── 002b4f05aa3758e2d6acadde4ed80aa991ed6357.jpg │ │ │ ├── 00d7ed381db8b5d18edc84694b7f9ce14ee57c5b.jpg │ │ │ ├── 01912f6dff5addd783a294d0cff5c999b418c7e4.jpg │ │ │ ├── 019bac396a24f1e3805dc1c3309b100c6a785045.jpg │ │ │ ├── 02862f745cc22c96aa50d3877704debd272a64ab.jpg │ │ │ ├── 02e3283d68d8972764c058431cf6c49f703d5d38.jpg │ │ │ ├── 031f3f88275e0695c7ffb255d941b506b918a241.jpg │ │ │ ├── 035ecd0267cec5aca42da1d341755d55c6baa69b.jpg │ │ │ ├── 036b505e495a214ce184b726124619f44a5bb7d1.jpg │ │ │ ├── 0383afa288831d4c47a28b5d4fc2d76885c4a47c.jpg │ │ │ ├── 038b9fe08ab9c3d1cdaf588d2566a4e9d02a163b.jpg │ │ │ ├── 03f25bc44dfcfb0e6c9ea1fa66a20d8155fd16bc.jpg │ │ │ ├── 042b05f4d87031347e3f5857e86b3d70c2ac692b.jpg │ │ │ ├── 042c34447a49f8c609b76e4f8e721542db843f22.jpg │ │ │ ├── 04d66d7af5ddcce08914f825c3374ac88055bd1a.jpg │ │ │ ├── 04f2c796a3bd28a7b2fbc3ac971c36ff01598200.jpg │ │ │ ├── 0512ae11141584da1262661992a1b05dfb20dd52.jpg │ │ │ ├── 055250cd00ee525b00d238728498228cf3beb6ae.jpg │ │ │ ├── 05dcf698d5f4eb90cb93f01ce7631414fa008109.jpg │ │ │ ├── 061f888a5b2f57de9424400bd946a2d7229e2dc0.jpg │ │ │ ├── 062165e50a7bdf2791b1325019af1ad1d6f50bb4.jpg │ │ │ ├── 06893516cb7835f97584e2d95f6861259846325a.jpg │ │ │ ├── 06ed682e14aa6440a2dbaeb44e726ef2b7de945c.jpg │ │ │ ├── 0714ae8dcc1a89e340d3eaf7f4def7f5db54f670.jpg │ │ │ ├── 0723fc4ba9d4711da440ae00e523fff6bcdc2895.jpg │ │ │ ├── 07dac13cd42a3ca0d0c85fd00d94903785052119.jpg │ │ │ ├── 083fade4a211b67e78b304ab95004a9df1c6d9e2.jpg │ │ │ ├── 0868d43da471147e807774ac7655c5a2579fc822.jpg │ │ │ ├── 08ccd022e41ff3c1461e9fc72ef72d5eaeec6917.jpg │ │ │ ├── 08d99600edac98955e8c1b703126d500858bdafc.jpg │ │ │ ├── 08f92b6acb68006ed191fc8b097a73adda978f77.jpg │ │ │ ├── 092a92689118c16b15b1613751af422439df2850.jpg │ │ │ ├── 09674b643b57ed00b065e8575b3f75e54e165ecc.jpg │ │ │ ├── 09bb1031d678930d8344a58d4cd89194f6da3431.jpg │ │ │ ├── 09bf57b7117a6f4d5dc2ae74bca92ce7f7db481d.jpg │ │ │ ├── 0a3f0e85cc425d4ca366714c99f03b0a37ae6b97.jpg │ │ │ ├── 0aa86d46be936cc0db758eb38270db56ebaa8d5d.jpg │ │ │ ├── 0aedaa51a23611440752ac16b885b9d33fe900e8.jpg │ │ │ ├── 0b6a8ca56e6ff115b7d30087df9c21da09684db1.jpg │ │ │ ├── 0b8a9c2ee861dc4c10d1cce18ca74dd88852226f.jpg │ │ │ ├── 0cc1b9210e5b3fd698bd597cd5a25f4698992486.jpg │ │ │ ├── 0e295d8ea06ae4c8b0f943e584a7b7342df43160.jpg │ │ │ ├── 0e50ad214378b0734c8f44f2be62af9372455fb4.jpg │ │ │ ├── 0e521a9bcca2f2f313a36e8195c5f22dbfd9a912.jpg │ │ │ ├── 0e6aaf3ca89fd3a5261e6abd353a30e8b6a253f6.jpg │ │ │ ├── 10191526d8d3d5183017fd0416c16911eebcfde3.jpg │ │ │ ├── 104fb78d9cd0823e6fce93fc2c0d32b58c9e8391.jpg │ │ │ ├── 1072e212ed4b8ad1d31c2a8dda2a534abb0636aa.jpg │ │ │ ├── 10ccb5bbd772a6b505e8694a4fbdaab512d92ad2.jpg │ │ │ ├── 110b0bd48be62ad72cd8a7eea9bb8ec2d6ff6252.jpg │ │ │ ├── 1169e1f86ae2fbdefe3af2ab427acd2d93738616.jpg │ │ │ ├── 1197aa95299a1fec983b3dbdeaeb97a1f7e545c9.jpg │ │ │ ├── 11b935a72c54013622a7bc9fe8f6856eb820b8c4.jpg │ │ │ ├── 1206ab279dc9e4a574381ff9b5e8345c0de3b23d.jpg │ │ │ ├── 1229c72be20189d434f2e390ac233fcbbf94cf2a.jpg │ │ │ ├── 12dc0c27eca68ed1c9a2caeee379c65610c2bfce.jpg │ │ │ ├── 135b8290342bed1c1ce6dd55b18abe81cd6c3796.jpg │ │ │ ├── 139718249cc3337bebad2a10fe5d91f279b41f23.jpg │ │ │ ├── 14336dc74f0b9e25a1b01a803f2e270d0d86994d.jpg │ │ │ ├── 153f0a0d1af8ccb21e4852573fa4a5dc242a60bd.jpg │ │ │ ├── 155264c9fbf004b8424e697520af8a82da19a8da.jpg │ │ │ ├── 157ea67b1ef26e610cc3dbccbc88587866e74841.jpg │ │ │ ├── 15d197cc23eebd9589ccdcef56f65106c8d59948.jpg │ │ │ ├── 16468986205b0d749f6d322839505c90731a9c6e.jpg │ │ │ ├── 17515323cc8966ba96464cc91700d049d883a87d.jpg │ │ │ ├── 17537cbb50b93bed268babfe6cbd0b8eae366cbb.jpg │ │ │ ├── 1819dbcac7955c2aeddd5cee5fc30f72903cbb93.jpg │ │ │ ├── 183f04c2849122a2be85bbd337d1f60ff80fc17f.jpg │ │ │ ├── 186680744ed93de1f1dd08db807ddf14e5ec55c5.jpg │ │ │ ├── 18a3b8b5c935a0cd96e0cedcf4ef28207877f1a3.jpg │ │ │ ├── 1966ceb8ee244815ca721e071b7a317c640e9556.jpg │ │ │ ├── 198857144bcf21eba04e4ea619ce9cb746ac9bd7.jpg │ │ │ ├── 19a2d653d30271b1f3a8be406ac72bda8db43f56.jpg │ │ │ ├── 19aff4f674bd7a80a50cdd62b73b577c4beacef1.jpg │ │ │ ├── 19bc6fb091d8bd6e2654a5f6a4c3104342f8d021.jpg │ │ │ ├── 1c7f3398958930caf203d41fc28cb3c887797d2b.jpg │ │ │ ├── 1ca55b97ed7ced39d34b94b19653f40209ac021a.jpg │ │ │ ├── 1ccd5d2061d3c23318139178bdc7474b14378b2d.jpg │ │ │ ├── 1dd02f9b1ccd224e4b954c4ae0b2386bd2a6d6c4.jpg │ │ │ ├── 1dd3927a5099c5d33d9f0a0017dfa2b0d7d66f28.jpg │ │ │ ├── 1e2c515e1b85bd0c8e0b6ea7cdefb80e9dc0d1de.jpg │ │ │ ├── 1e48a74f3f129c637f9d60088ca9bf60d403eea6.jpg │ │ │ ├── 1ea717819ef1d6d9313745c4d9b295bd5ee2f883.jpg │ │ │ ├── 1eb2b2250014ea91cfd2925ca9b462f7d341f33e.jpg │ │ │ ├── 1f06b487d1b2fc62d8dea8de01f0ea4258b6950b.jpg │ │ │ ├── 1f24e35146d664f718fe76792bfe7b4093534dcb.jpg │ │ │ ├── 1f2a47d9c5a84e6cbc7efbe42c3d9779e28cd893.jpg │ │ │ ├── 1f395ccb1a0d8c05b750cc9bb5ee54d4933f0923.jpg │ │ │ ├── 1f39b721d8d3841a10a82a3009e472ccffdd8d14.jpg │ │ │ ├── 1f6a080f50c6106523b53f5cac104cf478da20df.jpg │ │ │ ├── 1f6fb8e9e2241733da47328291b25bd1a78fa588.jpg │ │ │ ├── 1fa4057a70b64362414babe304c53fff1ca8a762.jpg │ │ │ ├── 203715a3d006e70c74ac25bd2d3c0b1c533c7aa3.jpg │ │ │ ├── 207acbac916b65c513bcafb05a569682ac0eca3d.jpg │ │ │ ├── 20bd6294c07ec55ba4c400117e22d520319ae3ef.jpg │ │ │ ├── 2129d0a8bcbabe9cf5127fc4a1a30465365e186f.jpg │ │ │ ├── 21653c806674a25ea409e9afb90eb76547fc9c86.jpg │ │ │ ├── 2166d44bf93afba115529f354ebb16afe266c459.jpg │ │ │ ├── 225826439c3b37afb0830e7c88f64c213d2c452f.jpg │ │ │ ├── 226c6cf3d52250ea95d2c9e054e2c564f4738c95.jpg │ │ │ ├── 24706a408a862f01b6faa274514051682090ec2a.jpg │ │ │ ├── 24e240712980f24866d021b2fbc4a1edfeed97cd.jpg │ │ │ ├── 25623395755f7398e7e9611e8ed857b7f5b3d472.jpg │ │ │ ├── 25b75c2f09d063e5a6ae20ba21046d8379e0ce79.jpg │ │ │ ├── 25c3caa105ee6f9eb85ed388ce27c138c1fbe423.jpg │ │ │ ├── 2678d2cb2a7733d5139a9c03bc1d2e8734ab2414.jpg │ │ │ ├── 2686f240eab1fce85d1f3aa7c3da5b23d8f0f121.jpg │ │ │ ├── 269f4a8d7e7ca16a9098645ce571a87422bec73f.jpg │ │ │ ├── 26b81181df8c58bb5c13554a8013aa44b880534d.jpg │ │ │ ├── 272590ec79fa603f4f63d46b71044e9174ee6cc0.jpg │ │ │ ├── 27288148482fa77d00c6349ef61cc9f5eeb0f93b.jpg │ │ │ ├── 272cf1b089c7a28ea0109ad8655bc3ef1c03fb52.jpg │ │ │ ├── 27660c1a440f3c8d7da9615ea9c9b119baf08437.jpg │ │ │ ├── 27dd2d6a087533c8cf4bf146deefca7f536d2f6c.jpg │ │ │ ├── 28520d4a7c3441d16816511dc713d5d4bfa3335f.jpg │ │ │ ├── 2866154ecf41730345bac48636bcce8d6c3622cc.jpg │ │ │ ├── 28a6ff69b40c5fecf85597c7c67e7c067bcd3a8b.jpg │ │ │ ├── 28b6a39cee63f0d4532f67529e2eb50a8bfda061.jpg │ │ │ ├── 28dcc7978d9d5710f0c29d6dfcf09caa7e13a1d0.jpg │ │ │ ├── 296d55a53eb8c896bb490e19faf08386275355d5.jpg │ │ │ ├── 2978983b71e5630f9059a8602e4733976546ec7a.jpg │ │ │ ├── 29d1fb6cf6b9c77e24f36e34a6138dfffb82aa8f.jpg │ │ │ ├── 2a824468e3b7ad1acc5a4a2f041c6041d38e3c4c.jpg │ │ │ ├── 2a85be2faf8a0bf74ee383e03a4d96895b93edad.jpg │ │ │ ├── 2ade4e2617ad5f5dc65c3ce72f219883e6449d5c.jpg │ │ │ ├── 2c0e4a4503a48661703606ad16931e4c46dd031e.jpg │ │ │ ├── 2c3d055aa2a03470cd0968d9f4d2fa582c140e08.jpg │ │ │ ├── 2c41ce8e3c5f7f40a1ac19bce184ea17d95ba945.jpg │ │ │ ├── 2cc5ceb933ed3d3e5c142f75a79fd7b2892692df.jpg │ │ │ ├── 2cfb680e2b714e4a9ae3d413af9a3fbd3e64b096.jpg │ │ │ ├── 2dde2056a8f7a44c964d4357ed5f77159224d16c.jpg │ │ │ ├── 2f07c325ef93092ef79d5f8f16bd6dd2d0e88f94.jpg │ │ │ ├── 2f5419cad19f19a0a3dd59545812429c60fc7530.jpg │ │ │ ├── 2f76ca945c98bda109bb4d4f6e7ce9eccbfb6387.jpg │ │ │ ├── 3020c999eefba27c174223edd31cd0e484a596bc.jpg │ │ │ ├── 302cdb8430d7c2beb0f70cf8946f2f419a18b07f.jpg │ │ │ ├── 3085e8cf9d25d3c9189b5a2a1f9fa3bdec051daf.jpg │ │ │ ├── 311852ae20b10d2f462d85cd44065d66c800bb6a.jpg │ │ │ ├── 315e19c2fa374aaed8c95f8c76b5c4a3c73853e0.jpg │ │ │ ├── 3160ba8b9743401a3329d3868ad0494986a6a46b.jpg │ │ │ ├── 316e05e148ee465f5f202ea59844aac8df127adf.jpg │ │ │ ├── 31881e96acefd12185058b97b1cfd7e8410209f2.jpg │ │ │ ├── 31bd46279ace7286af4e0f441d3a7c944dfb067e.jpg │ │ │ ├── 31cfdfc440453adfde6be129ecc757238d501f48.jpg │ │ │ ├── 323bfa7a2d018d4c9ef8fa1cd08b31dc997ed1f4.jpg │ │ │ ├── 3262c0c444deb3995e1388da14c9b4f22c82f0a2.jpg │ │ │ ├── 32acdf192e9989489ec46ff3b335a3a57b3f3f88.jpg │ │ │ ├── 330feadcf1d452643d5a2383fd60c2ba76fc3e1b.jpg │ │ │ ├── 332717959180a66ef3f0d41454ffd692479de055.jpg │ │ │ ├── 333c101e5746b7ab52fd95d8a68103e1895f2089.jpg │ │ │ ├── 33749d0e5218d87f972e26d55bf0f138f3c9a7fd.jpg │ │ │ ├── 337f5c1f51c2aa19f215a544bf34e75f26830a4f.jpg │ │ │ ├── 33955bec6c570ff4be2ecfb28e6592fcb576b080.jpg │ │ │ ├── 33a58a62b583bebdaa9e145829320e32ea2836b5.jpg │ │ │ ├── 33b0365cc1f7cdff8c5ec832ab6356a526c89434.jpg │ │ │ ├── 33d672637ef01e5ab3fc6c4f3352d70b25879af1.jpg │ │ │ ├── 33f565bb58deee8c3d4b9c6b0e70d20dbad42bc1.jpg │ │ │ ├── 3404f6bd16a3fa3c36d8f4aacc2afd80d12601dd.jpg │ │ │ ├── 341ba36a536f3c50c1bf9b6480da8701afef8d0e.jpg │ │ │ ├── 343d5f0a45e05291307a85f63a1c01f3f708ef46.jpg │ │ │ ├── 345d3adefea55c230cf4a842760022f4a9b50682.jpg │ │ │ ├── 34b29168c1eae5422ce1c1b58a358e604d20760b.jpg │ │ │ ├── 34d1ab881f8eb6b73b81847c4ff56404cba6390f.jpg │ │ │ ├── 352810c9981b81a34ff52b92494b474670958412.jpg │ │ │ ├── 3563dc0505aafdf1a06b9065a4a117390eff1e6d.jpg │ │ │ ├── 3576f533437506a409ce989c177ccc0acb0d0fc4.jpg │ │ │ ├── 357cd9d36139e12989acdf863c136832a5d4b6e9.jpg │ │ │ ├── 35eb645148d2eb545af7b9c6742642fc86bfb6ee.jpg │ │ │ ├── 35f29be0e17fcee2bb4fa12e2fb6534f5d2b2207.jpg │ │ │ ├── 36bebe96e7df9f35899ebe9e74a418b89cab6080.jpg │ │ │ ├── 3711dd0c8a3eef9924c75820fffe70adb86f5999.jpg │ │ │ ├── 3749c233ba52fd80bddb105110cbb7fc2ea8b8b2.jpg │ │ │ ├── 37a54645e19c9b7e2b1797ea9db97e3f623b749a.jpg │ │ │ ├── 380cbeb670affa8a9598a00659d34ffeac28f8cf.jpg │ │ │ ├── 383063a2499edadfa1b4c7538cf96a9c334d7d58.jpg │ │ │ ├── 387ad1a73f9772549b5d3b32200948390af3d9b9.jpg │ │ │ ├── 38cd91c36852d86c672c5fb04766f963d8802717.jpg │ │ │ ├── 38ee72226c5743196020f48a54911cb7c04671e9.jpg │ │ │ ├── 390c5cb5ca7608f4971c2dc0752d4423c48b25b7.jpg │ │ │ ├── 391bdc55726177ea8fca9647d604ae9b71c26014.jpg │ │ │ ├── 397b318954c571aba28b72e81a8a43ad861f623b.jpg │ │ │ ├── 39801e710c50a51e12c7172821458e3466ef3364.jpg │ │ │ ├── 39db2616698a9e41dcc8995f0157cb9e87193f5b.jpg │ │ │ ├── 3bc92e3cce4f9d4b188298140eca9ed0a7b44b14.jpg │ │ │ ├── 3bd4ce9bd564997dd37d3c8efa05b1ad2d898b76.jpg │ │ │ ├── 3be13a576b8c654b91886307c4073fbc91ee7a77.jpg │ │ │ ├── 3c84767c25985cb2f5ad207f0e8c62d8a838c8c6.jpg │ │ │ ├── 3caa3731ad1695aa38c6f12f374a357db6a50b5e.jpg │ │ │ ├── 3d2ebb088077db6d8cc826bb4f20a0f9fc2026dd.jpg │ │ │ ├── 3d8e99895cb46cdb5b6c7fb232d7b530a171d53a.jpg │ │ │ ├── 3e4321f1022a1478ee2ffbdfc0680d722c3a6441.jpg │ │ │ ├── 3f968dc82e24c4b9fb8641ff47412cfdf4158e18.jpg │ │ │ ├── 3fd0337ad9f3b90d00621d99453fad6c2d559e6f.jpg │ │ │ ├── 402d7de92a22c38e150e06de59a186216f9e2b73.jpg │ │ │ ├── 4054692cb2f9ef618acf43c26b63681cbfeba7da.jpg │ │ │ ├── 4059751d8df889850ea8b2fa68ca08fddedadf9d.jpg │ │ │ ├── 41797147b136d1e18bb093360374263e6ec7e1ad.jpg │ │ │ ├── 41df87270510bef942a985936a4c2233667ae43d.jpg │ │ │ ├── 4213abc7b19e0ea33c3eb561dfe62e4ec89166fe.jpg │ │ │ ├── 4220bea7e274923d87faeb3d24dd9249ee082192.jpg │ │ │ ├── 42341e13cfd4256122dddfd15bcac29d1949591e.jpg │ │ │ ├── 42511323896c7f9c951511756c51bde7b6ce959b.jpg │ │ │ ├── 42ea000897d734358e23931f6efdcad486d4a197.jpg │ │ │ ├── 430ef18b72341cbae53a48ed38e2408a57220bcf.jpg │ │ │ ├── 4320b23aef0e86a99a2e87a7c7a3bf4c7fbfa8f7.jpg │ │ │ ├── 436cbb9b0f446df0e8038844dbbf4f31dad8760c.jpg │ │ │ ├── 437167a9271a0cb07c35366b6e0fd3c390d477e6.jpg │ │ │ ├── 43975ea68da9764639b8aa7223936368b01bef0c.jpg │ │ │ ├── 43e381a22c1e053a5ffed492fe7f969e8e7005f3.jpg │ │ │ ├── 44361f075c9def1f1efeeb6143bbc98fd85940b4.jpg │ │ │ ├── 4445f6be20efbdc2db17db43a8145fabdada09f3.jpg │ │ │ ├── 456c6690547d666e8565d38d3bf90ce055976ac7.jpg │ │ │ ├── 456c6a76f3d0db8f305fb8e7cb40efa6223ce2f2.jpg │ │ │ ├── 45a39ce6adc7211dbaa5f39f98ffc08ece9cb284.jpg │ │ │ ├── 45d6d00b468d47bc49af9c37290a136d204e1388.jpg │ │ │ ├── 45f91c5962d9169428e882201a1e9aa3f79c67d0.jpg │ │ │ ├── 4600ca180dcce81c974fe709d67bb419c603a136.jpg │ │ │ ├── 462d85175300bfc44af7498d3ab0df64f9010100.jpg │ │ │ ├── 463940c0b1ea6baf85418f3782c6d4c3c9e46960.jpg │ │ │ ├── 464bd2c12d22c5bc2e76f7605b49783bb77d3a13.jpg │ │ │ ├── 4689bedbb392d472f130b49247ffccff697d8d83.jpg │ │ │ ├── 4696d78094ee71769a2ccf3392c106853a794bb4.jpg │ │ │ ├── 4714bcb7867da72c000a7509a2c5ed0ff6c9101e.jpg │ │ │ ├── 479d74e799e8eeedee34e7d8e716656b4eac18e4.jpg │ │ │ ├── 47d27d79f9fb8184aa25ec1c16717dda19fc311e.jpg │ │ │ ├── 480dc85cb1c55a27d1baea063037a0a652905728.jpg │ │ │ ├── 48b2e40139f96d28692c95358597c14a0259b931.jpg │ │ │ ├── 48bcb167eb801ecbd15a31e2e841ed221090ec1b.jpg │ │ │ ├── 48e620d8050aba9b58ee3ae270d9c5313dd59c80.jpg │ │ │ ├── 49296c67453b6f370fac21686716a919e6ac1094.jpg │ │ │ ├── 4932c286fa8d89c0f60df663d5f7c0bdcb151943.jpg │ │ │ ├── 49708e1097191e85859aea40762a3a5051195697.jpg │ │ │ ├── 49b466caa137596c2594c55a93e902083e18ed96.jpg │ │ │ ├── 4a0d372d622d9dba6d2e74135f9c2907f53ac1ee.jpg │ │ │ ├── 4a0d3ec719f39e5af15b1d5a4858d8472ea6eb68.jpg │ │ │ ├── 4a683b6f7faa729810d426f87b5b5e357bf9c852.jpg │ │ │ ├── 4af052a2afb9fd48f6e54f5337a40f54c03f1b1b.jpg │ │ │ ├── 4b4a1f4025a93c2217379769ff8d381e54e10366.jpg │ │ │ ├── 4b9705c7703e4c2032ef664c8cba106ae2fffd74.jpg │ │ │ ├── 4be4e96aa8bd2c1195881223a536fea1271fc601.jpg │ │ │ ├── 4c1890fd5c851a3d5b6acde642b06f930be1303b.jpg │ │ │ ├── 4c29da3cf993770373b45075ff60903613c77c1c.jpg │ │ │ ├── 4c2d928f2688a300a3285cdc111d9eb381a9e4ba.jpg │ │ │ ├── 4ce41f9fa2f87319fe69b6caeb8e14cd4de66e7a.jpg │ │ │ ├── 4cebc78fd6c1e67d4ef3dba786a8f37af901f31d.jpg │ │ │ ├── 4d1e87c5d721060a10a44ecfd830f65d22005131.jpg │ │ │ ├── 4d25810421dc87188416f8171f36a10980dcacf0.jpg │ │ │ ├── 4d3171c20a662d27fb92c32e3e106ce69914411f.jpg │ │ │ ├── 4d3861cdac2c7a45071ec619649d90547ca6a6b7.jpg │ │ │ ├── 4da075ad7f42bf05c4b4b450f49be2c03eab38a6.jpg │ │ │ ├── 4df623b036d7667d9c4e8877faf970bbf9dbd713.jpg │ │ │ ├── 4e4c859f0925b832bea9cff8205c863d702d7393.jpg │ │ │ ├── 4e9b43302c524415abe840edfa9ccf7d4de3f3d3.jpg │ │ │ ├── 4ecc4dfea4255abfa5250654a1e4efc50e292dcb.jpg │ │ │ ├── 4ece79f660bf28a869b63f2f0d8cfc3c304b5182.jpg │ │ │ ├── 4f24336fa6409808dce7266cbc8c7c3d84a658f1.jpg │ │ │ ├── 4f53046617ccae340f97998726f7fef9a803417c.jpg │ │ │ ├── 4fbacf91957d0c530ff6dffcc99cf4de42c82896.jpg │ │ │ ├── 4ff5f4f51b5447c84aa2a33c8cd3e1e776731963.jpg │ │ │ ├── 4ff73dd665c0582de8557d3c7043ab5e1358bbcf.jpg │ │ │ ├── 502f07059eef794c2360d00d5785afa3248427ac.jpg │ │ │ ├── 504f8ac893778618989513bc5be718cc43458eb3.jpg │ │ │ ├── 50bd982e1653b33dfb8f50c6c9b472b44634c712.jpg │ │ │ ├── 5152612d6f4a153f5bc5eec3512c1934b5f60e0e.jpg │ │ │ ├── 51a6a2274fb568ac884979d861779b61b6e931ff.jpg │ │ │ ├── 51e1065928d5e599bd5ba75ccaa25ee440e63236.jpg │ │ │ ├── 51fe50914265d4fc9820dd487163cdb077b1a4e4.jpg │ │ │ ├── 521abdb891c1759b81fda4fba0c01f692bf8af10.jpg │ │ │ ├── 5229051834009b5503eeb940a7faf35a7e869393.jpg │ │ │ ├── 5277829f9996afb7c4ff49c2b1d0ad472b94f94c.jpg │ │ │ ├── 52941374f6891d31b489cc8f0c78989e6675ea9e.jpg │ │ │ ├── 52c71e226e8968e604e0b8a2bfed55527e39a107.jpg │ │ │ ├── 52d6636339275b4baca1db8d4fb819e86e2f817e.jpg │ │ │ ├── 5380b3f79fb9508949e2a25e1c594f345159e01e.jpg │ │ │ ├── 53be591c9e80bf8350700110a144f6b0091a1f85.jpg │ │ │ ├── 545155e0a740cbfc94252b4949538ba9bd1628e2.jpg │ │ │ ├── 55847ce84c9e16f2786b83e2fae4b4a490cc2fa2.jpg │ │ │ ├── 55d56efe9c496d3b8d4df694b4c9d7225a3e6ceb.jpg │ │ │ ├── 56f6b370825d4b7bde3292182fa8adaa755f8b43.jpg │ │ │ ├── 56f9eb8fdedbf43fdc20bc6fb510d6002f392a55.jpg │ │ │ ├── 574e10a4ddf758c5b4d44c45e969bb873778439e.jpg │ │ │ ├── 57808f5aca7b8e327c79321b6b81fe7cc4075c71.jpg │ │ │ ├── 57970d517b048744ef74653359dc02333ea0e522.jpg │ │ │ ├── 57a4ecbf1887fa29e944eaea54d1f78b48394056.jpg │ │ │ ├── 584539f9ce7b9acb43812eb408e0c6fc5086e325.jpg │ │ │ ├── 58453dc2a43b7d0d08927d623b1c5fa12fbf5cc8.jpg │ │ │ ├── 584caaf767fd39d78c80fce76d9a7dcc786cdf0a.jpg │ │ │ ├── 586d7c6fd107300b4548e579a832cac663db9f4e.jpg │ │ │ ├── 58909e23609ddd543849a127cfee7a510417b7f8.jpg │ │ │ ├── 59bf95acd3bacf684fcf345174661fa95ddff409.jpg │ │ │ ├── 59dd0bafc72eca4eae23baa9ea9ee61558669c87.jpg │ │ │ ├── 5a5f820254dac907049ea7f3d4818a9b355728ed.jpg │ │ │ ├── 5a72dbb0cc8238a6349459ac5a89b7dd8a999394.jpg │ │ │ ├── 5a72fe0630a21e4476d2530996312154cd5ecd31.jpg │ │ │ ├── 5addd171616a25f271bd1535b569b8f9db918945.jpg │ │ │ ├── 5aee28268219facc85aa8733ec7f425a67742bfa.jpg │ │ │ ├── 5af5d8d5efe75146d5de3b423c3765db834b7854.jpg │ │ │ ├── 5bafddbee2cc94a8d7263fe51c3e3d67efbb9043.jpg │ │ │ ├── 5bed23c6687af4a44a506d32d528d899214c767d.jpg │ │ │ ├── 5c015e01a7b0dc3bd8d9520679953b5228a7666e.jpg │ │ │ ├── 5c2416b3e5aa74131ab79107943bc28a8dfa7a0a.jpg │ │ │ ├── 5c745d9a6d1875055a7a5814598412113dfe64dc.jpg │ │ │ ├── 5cfc0d644e7fb1b164ba34ae55ddfd6b001bd160.jpg │ │ │ ├── 5d009aa624d1b0ccec66335e04a7f608175b2e2d.jpg │ │ │ ├── 5dcbe6d1568d278fe674b6e2e3296ea7fda3578b.jpg │ │ │ ├── 5f423b6893951ccee0fd4ea58845ba6f92186151.jpg │ │ │ ├── 5f7e95b31abf8f0a97aa2779d81f27360c373ba0.jpg │ │ │ ├── 5f83607618abbfc5ecaebb245a9bd54a6aaefd33.jpg │ │ │ ├── 5fa4223470f97f6d88f71df18948eb75fea9cf1a.jpg │ │ │ ├── 5ffdf9eab13525b05b2943a03fcf4b68c0478bf0.jpg │ │ │ ├── 60b3c25d4f4d8b0458712451a2e9f6db79cd6d20.jpg │ │ │ ├── 60cfa1f0e407c0488d9e101562987e1ce810e024.jpg │ │ │ ├── 6121ebfcd72b766c4c33fe3e721ad250cea52d91.jpg │ │ │ ├── 61444f24123c2d4ad3e413d632e3a854a069d9c8.jpg │ │ │ ├── 6193dd8a7b25b02a18a78d63028ca60de96358f5.jpg │ │ │ ├── 628ec97a4fa6e0e805b05151f6198b1c268750df.jpg │ │ │ ├── 62e483e615f1c1e27ba18a13e5d8a963135684f2.jpg │ │ │ ├── 6341e0e240546e7404125729ee9edfd9a1be900c.jpg │ │ │ ├── 6392a5346a921e5fa95f51d983678b628ee2211d.jpg │ │ │ ├── 63ec15cc53c4bfd703982cc4dc434c6ea894ab85.jpg │ │ │ ├── 6432a8876c99e80a839d6e2ec839084f514bf559.jpg │ │ │ ├── 657f40e07d70c0a68bf4742f101a0225f959939a.jpg │ │ │ ├── 65868590dae9cdafb04f1b123bafbc498cbcd7db.jpg │ │ │ ├── 658c280c5209859a653a043625d6f106bddb9104.jpg │ │ │ ├── 65b406989878672081e859035ea0715b58f45f40.jpg │ │ │ ├── 65b7adf6e31fb34c1cd6fe856d5f76d7daf41920.jpg │ │ │ ├── 66942e82595cd242c1f499d3c00449f78d53d57e.jpg │ │ │ ├── 67844fd497fba58de9993608b756a1a11ef984f5.jpg │ │ │ ├── 67cb7e3f7b897cecb1e9cdd2dd2457cb4218784f.jpg │ │ │ ├── 6b00f9f2101d2d0a66cb6e1e57058f9eac914046.jpg │ │ │ ├── 6b2c03cf2c537e27e2ddc2ab87e7dc7ac72cca7c.jpg │ │ │ ├── 6b540d1cf7e9c6e9e62c1468f95c6ccb4f016e7b.jpg │ │ │ ├── 6b89fa512fb677b7e60004ea0973b350438472bd.jpg │ │ │ ├── 6b9ad8cfe309644ca584160a31704400806374c6.jpg │ │ │ ├── 6be06bd5958ef9dfacd098d8c1ec9295c533221e.jpg │ │ │ ├── 6bf65058d573e07b72231407842018afc98fd3ea.jpg │ │ │ ├── 6c6772753bc386b720a0ce84cb8261daacc333f6.jpg │ │ │ ├── 6ca7a53ff6e3c5b894a8d4b888a0380d2deb99e8.jpg │ │ │ ├── 6cb3831bff8559d728f79361d83063c6c07f81fe.jpg │ │ │ ├── 6d63dba65b062a4393fc626244de7c8f3e1b6c47.jpg │ │ │ ├── 6dba31c1626659d8a8f86ead059263f87784fce5.jpg │ │ │ ├── 6dc8f9e12735763bb1696a217f3bb4891f4df65c.jpg │ │ │ ├── 6df0559667c792ccce208879e806ec8892ed4b53.jpg │ │ │ ├── 6e086e379ac1e88dc4bc5bc6802b4d839fd28dc5.jpg │ │ │ ├── 6e421fae983614a40563f68c1a3b38ea7103d332.jpg │ │ │ ├── 6e944e2ead9c967cc82eebb1e92db8f94bc5287e.jpg │ │ │ ├── 6ee6949628aa24f1ea747542edf33bf1cddc54bf.jpg │ │ │ ├── 6eea3a6584af11dbb7358b7e468b04451ffe2eab.jpg │ │ │ ├── 6f50d7aa9d2a6007be802597fa21bcb6f09869c0.jpg │ │ │ ├── 6f600a97d8334805c750441f7191eb80b6f7efaa.jpg │ │ │ ├── 6f7ff30b92361ee53ba6f22ba1011e8d8c4cb02a.jpg │ │ │ ├── 6f9af1c47c34824230b9dd3547659eb06ca9bcf4.jpg │ │ │ ├── 703657747e08cc0e551449d84ed71742e2c5a42d.jpg │ │ │ ├── 70acd7eeb6cbf80f4a513b2871943f0ca530bcf2.jpg │ │ │ ├── 70c259994e2c42dbf05b5b8ccd344dccf9bf2e17.jpg │ │ │ ├── 714b0413df0b668d5f416bfe7f0ae295f4524926.jpg │ │ │ ├── 72060a17a67a4d0dfdb9fcb560804ddf26419268.jpg │ │ │ ├── 733857c9f3ed612d12d55158484f6741a8761e88.jpg │ │ │ ├── 735d638e461541049ba50e7c0d8e624b810f98ca.jpg │ │ │ ├── 7404334e48acf8df71eebb70b05be6302cee5671.jpg │ │ │ ├── 740983533439eafd4c3807af19e0cd14f38e590f.jpg │ │ │ ├── 742859760b1771530fdf1b30a826135aed3ec81a.jpg │ │ │ ├── 748badc70ebb3d025fc3f7dd6c98f759254f95ac.jpg │ │ │ ├── 76c2dcff90293bc716e2dc21246083ed31d0af38.jpg │ │ │ ├── 76e0f20adae4a1c6750cee17d1ec48d4142f964d.jpg │ │ │ ├── 785ec3c85c34f0af99cc060309fc8c617211ac86.jpg │ │ │ ├── 788f705652bbcf9993a99af7c0bab28aa1aa568b.jpg │ │ │ ├── 78a1728551d1d99addb1cf26cf2ab7ef7c1f4323.jpg │ │ │ ├── 78b98404680e01d9c06e1dee7bd5b7989a9ef431.jpg │ │ │ ├── 78c708053a48238cef65df00494024f4e50c7af0.jpg │ │ │ ├── 7923bf887ccc01de264c9949d6721b87595321fb.jpg │ │ │ ├── 793609e9dcd2520cdf93a7ca7eda90f1ebd4f691.jpg │ │ │ ├── 7968b08dbd745b75b53ca1cc2016846b797e0412.jpg │ │ │ ├── 7a6acc07a7fc429efbb8bd9470c67395a73a5619.jpg │ │ │ ├── 7a6d11164dc43af351f74f91c91a9a4cf76b3116.jpg │ │ │ ├── 7aba56a9a17f0deb07503d5b4c65ebb3cf9a44bd.jpg │ │ │ ├── 7be6055d3364df0e3731169bf6bd5137e23c319d.jpg │ │ │ ├── 7c909f27b7b529dd050d0e02289b45c65120f5fe.jpg │ │ │ ├── 7c98022aedc808dfa620d950bd7d7a78aa5508e2.jpg │ │ │ ├── 7c9d5b7a772c81f0c2e08911a8cbfc203f4ce28d.jpg │ │ │ ├── 7d4599247f4c8abd27ce8f4eed36f606502be2c2.jpg │ │ │ ├── 7dd47d96d4e98dce38ddeb2281b645747fff5935.jpg │ │ │ ├── 7e598fee933c424bc9f790f63a15e054601c1149.jpg │ │ │ ├── 7e8f8adf9d2d6a77ca4dc87fdd5c1b8d3dea17a4.jpg │ │ │ ├── 7f01b16a4649ba4ba39280ac118efb1195e3c50a.jpg │ │ │ ├── 7f61b9b39b232188b01f7be41ef911dd86d7c33e.jpg │ │ │ ├── 7f9f2108d6213bce22d17cb7ee9a3864dcfd5dd6.jpg │ │ │ ├── 8123762ff8a62d9e7f5f9e2d52ad51599eae6965.jpg │ │ │ ├── 81e7b94fa407e51c69ef4bf2acdb3133dcb6f65e.jpg │ │ │ ├── 824952f0a191d155b04f56d1d31bda91bb8f68b6.jpg │ │ │ ├── 826fa81032e7f3d3b8d65b6907d5341920c22265.jpg │ │ │ ├── 82806e9bf696861176f26cc046c864e0975c6c55.jpg │ │ │ ├── 82a3877f674fec738cea90bd2cba3089dbe94c4b.jpg │ │ │ ├── 82b6564d251c1ef1ac8b42d20ef3cf96cca1d764.jpg │ │ │ ├── 83113f87ede78d7b130d13789167c771525ab619.jpg │ │ │ ├── 831149a9c62701ce180878066f3afe70c947504b.jpg │ │ │ ├── 832d7e94aeee6f1b5424c6445dfd830ec1c0080a.jpg │ │ │ ├── 833f0b8e3aaf8d9417ce2f5aef1606226446a839.jpg │ │ │ ├── 8372c9ed89a0af1eb3b6214d8efed1d0fc2f02b0.jpg │ │ │ ├── 8375529db7a23920775df07a088fe5e9ef470d19.jpg │ │ │ ├── 839a4c0b799669df6037ae50ed3ff6773e8019c0.jpg │ │ │ ├── 83eb0689395d2a0c98c5a94662755ad58ca29356.jpg │ │ │ ├── 843cb2dd6e8e598cfea3a0f3b00772f0c531f5cf.jpg │ │ │ ├── 846c2d79fd57df5bb6302765944c2bc00a0aefac.jpg │ │ │ ├── 8495639f41d1591bff60403583a0f3df0f74384e.jpg │ │ │ ├── 8569cfbcf577ec43a683afeed0b65e16f9259290.jpg │ │ │ ├── 8582cf1d919e98b586273afd292670c71f5ed87c.jpg │ │ │ ├── 85f27dfd4f06c7eb80cea6707ae8dd4ed9ba2ede.jpg │ │ │ ├── 861aa1bbc7c2e30ae122ac6becb110001ec74df4.jpg │ │ │ ├── 862b4d67616e1d17052e919610fdccf2e8c73ddf.jpg │ │ │ ├── 8637c88fcda652ec278736658602213c4a790639.jpg │ │ │ ├── 8724da10e7e3680f3a2e2949674e501b27bc2e6b.jpg │ │ │ ├── 8750210d3f6cdf441add83908a95339c2221f24a.jpg │ │ │ ├── 87c573262d23320f769a03908e81e8e97ceb166a.jpg │ │ │ ├── 87cef99cd3e270408362492e52f54ae634298b99.jpg │ │ │ ├── 88472b63f0dd80f15c526d484af06dd2d6fbffae.jpg │ │ │ ├── 884bd1022d3906dfb08bc40307d7cd0bcff44e49.jpg │ │ │ ├── 89289dcf8cb5b9e1f5a8f616dd6f04f0c8ad9c10.jpg │ │ │ ├── 892ad68b6666a98aec5669cd55d3edc673847a11.jpg │ │ │ ├── 897520e9df709a3a2924e2b048ca9b96df01edde.jpg │ │ │ ├── 8a1d21b6d1f7d497ac6dbcd73135352b5bd32ba4.jpg │ │ │ ├── 8a67a35e69f5d75fb7c6c775108b62dbb57d7af0.jpg │ │ │ ├── 8ab44a74556f33685e65a7673e288fd740cc107f.jpg │ │ │ ├── 8b3d8ed28c700e80ac023b3b367b0153ae93bd5f.jpg │ │ │ ├── 8b8ee31ce9fcf545278c40c3d175aa464d8a19f2.jpg │ │ │ ├── 8be0286c8cdb37f57b05ea01ef07a632adebdfd7.jpg │ │ │ ├── 8cc5910f8f20ee4c0dab8b8959000a8c23642b57.jpg │ │ │ ├── 8d1272afd86e449b8f9725d1b9f33b456b03fcc0.jpg │ │ │ ├── 8d6cdf1c10fe6b9a4f5d30956cd91330911d2fc1.jpg │ │ │ ├── 8d753ca6bb2160aa74a2291b15e8fc207b3c7a9b.jpg │ │ │ ├── 8d85ac344b6f63a68c8cc4aa7ad8372bcbc9ab77.jpg │ │ │ ├── 8da4085b7b2c584c7504b601249954a3f58d26ff.jpg │ │ │ ├── 8dd287bcdf3f64502c078c3beb47f0bb7578e4ff.jpg │ │ │ ├── 8e17aa8f69a5df96759044f948555a57ee15764e.jpg │ │ │ ├── 8e40ffbbf44e98439ef5787854472f1d155bd52b.jpg │ │ │ ├── 8e4d8d6ef3bc2a195fcec6a1760e0f160018e569.jpg │ │ │ ├── 8e5b1b20da203846ab53f73801026433c2207ba0.jpg │ │ │ ├── 8ea681ac0f398327725464fb6bae92529f8eba44.jpg │ │ │ ├── 8ead1269f73e7393577e51972431922824fec7f2.jpg │ │ │ ├── 8eadccf8f6a0f47fded9f8f347af4ef27d612db3.jpg │ │ │ ├── 8ef90c3c73e6743d11c2a326676bc840a185c47e.jpg │ │ │ ├── 8f4eff87f9054c3ceb3a7a953f514fd39c044640.jpg │ │ │ ├── 8ff4b87a01b11ceff1ec23a2cecc642778b07bd2.jpg │ │ │ ├── 902915c0033a070622cf0a19250141d55fe1546f.jpg │ │ │ ├── 9082274e47931916020989a95199730d36f04de9.jpg │ │ │ ├── 9094a5e2173d226cff93381d9c2e18b98036a796.jpg │ │ │ ├── 911368f0859c5516862475cc628099b149fce5a0.jpg │ │ │ ├── 9119312e704b6987da8ccbcd61fe67d3a02262f4.jpg │ │ │ ├── 9130470924da0a5a4d2fe53d60aebbeac24b3646.jpg │ │ │ ├── 91723beff0ffab08bedbb13bd1e58fc74c51da29.jpg │ │ │ ├── 91969ac6eaf132c829ac3f1eba76a78c1f4d7af2.jpg │ │ │ ├── 919abc788423efc73530b9f83138ce7ccfef18fa.jpg │ │ │ ├── 91e7f9fb6404dd5c9d76ed57534399d71e157950.jpg │ │ │ ├── 9228904d8eac7ab325b3665370720a207975083e.jpg │ │ │ ├── 9288e6c12b562561e00015a3f47b07b3476a704b.jpg │ │ │ ├── 92aaa63d9976be4f9c530cc25c4593e249a906b4.jpg │ │ │ ├── 9315a46aa4baa47aa4a7c39592b5e991c407b80a.jpg │ │ │ ├── 937266f85b6e7b095a04925e98b62ce1e5f5329a.jpg │ │ │ ├── 9392a61272634cbaff006d97bc8e9009ba3af644.jpg │ │ │ ├── 93ad96208a88db9b13ec6280f67caeb91892ca09.jpg │ │ │ ├── 93b60a00c3364f14408efef3b18cfd30058ac415.jpg │ │ │ ├── 9407a78fd735e51c51edf8bab110f11222990874.jpg │ │ │ ├── 945a31a0afd2e821513e0d676dfa251f4605c1e5.jpg │ │ │ ├── 9464780bf92b6e63cbe527d422161a5fb60c2911.jpg │ │ │ ├── 950fb1fc07af1989e77b4f255113d89774774f9b.jpg │ │ │ ├── 95102a56f0cc7c7ec892fe2e0bcf7c12057df42a.jpg │ │ │ ├── 95693b8a45b613c2491c3e03458b870578148bc0.jpg │ │ │ ├── 95783582ebf52f512304ccb8ed7ff11d17707303.jpg │ │ │ ├── 95afda2799ad6e8d0b1f16a40a1829836061b740.jpg │ │ │ ├── 961f78f2401ba7de26d69d84a37c6bef262d96b6.jpg │ │ │ ├── 9670c1bc2027b8f027ef6af8833d25b528df69fd.jpg │ │ │ ├── 96a84651e86928ad9228b561b6cbf63cb4f07eb5.jpg │ │ │ ├── 96c396737a2765531e16b9f7efcf2cc62d0ec677.jpg │ │ │ ├── 96f64d34106d13df731f0a14aaa76b566f1fcfd9.jpg │ │ │ ├── 9778458121b67c4e2a32fb6cded6a84f38717386.jpg │ │ │ ├── 97ebb70c735cb7598af1df3e8f2c8531c1c4b594.jpg │ │ │ ├── 98eae4783055a35096aec282755d6bf519e46cf5.jpg │ │ │ ├── 9a2acbd5340b57f9ed1a7424bbfb5567648f3e9d.jpg │ │ │ ├── 9a776c42ead043e71341343f59379c3eb5052a9c.jpg │ │ │ ├── 9aa2cf79de0439429c32f9f4af05824222c6dd1e.jpg │ │ │ ├── 9abd60f6af67fa255310f576444f47182b58ef3e.jpg │ │ │ ├── 9b3100fc4f307512b6a5ff60b80fae30712ec367.jpg │ │ │ ├── 9b5ca9aa2d10d3167df3c19883e81cbed37ae7f8.jpg │ │ │ ├── 9b66fc04d4c263edc02c396533f6fd888798a2fc.jpg │ │ │ ├── 9b879f6094c543d511d0b57b73a35318561a07cd.jpg │ │ │ ├── 9be36274028f24c0b4f84df229f9753342360bb3.jpg │ │ │ ├── 9c729d71e851866b689b52624c3d2ffb2bf5b119.jpg │ │ │ ├── 9dc10c7d6029672ccc0b0b80c4fceaaa030b4c1e.jpg │ │ │ ├── 9ddfad4e8c2c5e7c44be3a5106642d4376254c2f.jpg │ │ │ ├── 9de949a3d453edf070315af40039f300b7adafd3.jpg │ │ │ ├── 9eefac8bd9c67217bbcf8a3108246eab625c703d.jpg │ │ │ ├── 9f92dbb0374f24245c81083b971ce09b6941544d.jpg │ │ │ ├── 9fde596f4a3568f03c7a4be7dc386222b5c94398.jpg │ │ │ ├── a07e541621e4eee632d7a04731fb4e465cedbf35.jpg │ │ │ ├── a09145ddecbc2daa0da78e1ad04c2314fff52978.jpg │ │ │ ├── a108e04c2fe25b9087835e5f276a6995b14d36df.jpg │ │ │ ├── a14fdc21cd58d0fdb5a30a32b8f9332bdd643654.jpg │ │ │ ├── a160a3bb2724e40d44e359be2cc2a53071423a69.jpg │ │ │ ├── a168a60dcdbc52c9a52ac91f01d19bde4b8ae1dd.jpg │ │ │ ├── a25d2fb64f891b1035306c0ebcfd34cd1c28d72e.jpg │ │ │ ├── a270ad2c959a108ac0eef44d4b96eceead395634.jpg │ │ │ ├── a2f66026f5c8bdddfd47ff5b0fc87505d05b6eb7.jpg │ │ │ ├── a31b1a17eaf27377b4ff468b49b04486e3d5acab.jpg │ │ │ ├── a32fa76a566e9b1ed4a46a595bda5a9b24c58527.jpg │ │ │ ├── a33489be1596587df2c38f50aa4746ab0abe5a8c.jpg │ │ │ ├── a3367659238117d03722c039c084e60c4b8c4f09.jpg │ │ │ ├── a3368c0910bbf036d4cd1cf5b8d55e5b4e0dbfbc.jpg │ │ │ ├── a39bee39c68c08a0c2eaba84e03fdf593e6c64f3.jpg │ │ │ ├── a3a91e302f003db5b6ad9fcaf5dd99712cfb7258.jpg │ │ │ ├── a3f7d77fabcb07818b788db492c351e2c2cc5eab.jpg │ │ │ ├── a3f84e8da6536c354045e88207d6f58fccb97ab3.jpg │ │ │ ├── a3fbd29d24d0fbe6648cd55bca38f555d342fd39.jpg │ │ │ ├── a477ce7c7b5d05d465a08b6ebec2c314634e9b6c.jpg │ │ │ ├── a486218f9f080e7967c3d144d455733563f9405f.jpg │ │ │ ├── a4f3ad41928028b2128dfb6283f9556549b42cf5.jpg │ │ │ ├── a52ed4c43dfdc70f0251dbca1769addba5fed95a.jpg │ │ │ ├── a574d1b70c21ea1a17abee9fbc6ae8c2825bd1fe.jpg │ │ │ ├── a5f763b828006e704cb291411b8b643bfb91886c.jpg │ │ │ ├── a61a67cd20674d865eb33a0076becfb910b954c6.jpg │ │ │ ├── a65a4036ec084c90018bfc8b38850e9cd66b5080.jpg │ │ │ ├── a65e4d446a636285dce6b725084c1c432a4a99eb.jpg │ │ │ ├── a6b2122842e0f0b4901c47a5ad7e0c5d6894a67c.jpg │ │ │ ├── a6f118f6257a35e6ad1babfa596eab817d8a6aa4.jpg │ │ │ ├── a7281d9a4317225716ec31c88c6e16b798042054.jpg │ │ │ ├── a742ce32de9454f21c0b7d916f9c6826a3eea548.jpg │ │ │ ├── a77e374db826d9462131cb500fcc49c6a00a6303.jpg │ │ │ ├── a7efa6bd62338a1881964af084d984ba5116ce6f.jpg │ │ │ ├── a845620c67d214ca29e6a89cf31062e58ed7f033.jpg │ │ │ ├── a8bd80b67e044186341520a3f3c814b4e8754f8c.jpg │ │ │ ├── a8d90abc3dd05ff6b600bebf11bc85f33db6c436.jpg │ │ │ ├── a903a51876dbe851e7ed0eeb130c72dc9a87133e.jpg │ │ │ ├── a905ba8c631e9576097759f7e9760eb0bf0157ca.jpg │ │ │ ├── a94cc619d820f03e51bd9517ba584765897ab48f.jpg │ │ │ ├── a9a7f50235194026f4b2fb5c7aeffc9642d6ec9e.jpg │ │ │ ├── aa9f0dc35c1a4c139fab4f27f857f918d6b06a8a.jpg │ │ │ ├── aab99e57a5fd8315b71ec421e63343d3528e23d5.jpg │ │ │ ├── aaffc7016840d23c89c54bc438d9bb962fb66f95.jpg │ │ │ ├── ab3949c676474de324113b5d2e23a1a33e11a06d.jpg │ │ │ ├── ab3b352060f99e33d9c4bb7c96184db8194847ae.jpg │ │ │ ├── abfbd31366594dfb3f640f85297c38815358765f.jpg │ │ │ ├── ac85b045d1909896c4ace4805b0f8cac93e9aa44.jpg │ │ │ ├── acc8de92b882aee1cb36ba15ce4ea168767229fd.jpg │ │ │ ├── ad61af3e68a48a06207d1eebb96cdf7d53276472.jpg │ │ │ ├── ada7a817bfa59c0a9b2028689131468ff8b59237.jpg │ │ │ ├── ada95160d5a7a8ff0743dee7d0166137a29d78f5.jpg │ │ │ ├── adc6a2ec4265c66c8f99672e0ace7bdcd4712617.jpg │ │ │ ├── ae02e41722111077baca50503f6e1a43ec8d7de7.jpg │ │ │ ├── ae25185cc45aa5020158e86f703ea32c6da59727.jpg │ │ │ ├── ae70db80cbff4995f54f29aa791c83f12b78edc8.jpg │ │ │ ├── ae89ad7462d957103498405a898b35adbd8e8eab.jpg │ │ │ ├── aed114c3941e8e34c11141afc6699eb2f63e3923.jpg │ │ │ ├── af1d7af332d6599f4ce7330cfe058b5a1c58a158.jpg │ │ │ ├── afa5959a31db7214276ed7612a3dfa3a39bb8dd2.jpg │ │ │ ├── afd2d31e5c118a24fe5c6d7c5dff4e5769843b66.jpg │ │ │ ├── b01c55edba56c745865d9c8950d95e665edea3ef.jpg │ │ │ ├── b0258cdd8216cf3fa00ac85ebc179aef38cd0822.jpg │ │ │ ├── b0485cd068930d71e7102fef5ec9e72e55de66a2.jpg │ │ │ ├── b065c86427c814cfe5fd12aa819bbf2ad7a0ef3d.jpg │ │ │ ├── b0bfd78d98540360e183f5f29efb01c3cef31432.jpg │ │ │ ├── b1c243f3264b90126acecac7ab96b3db098d2405.jpg │ │ │ ├── b1ff194bb7987c9e704f918bb646b9e44ba3d9fc.jpg │ │ │ ├── b2e9f39db4b4e7236d0d8b1cc1ccfa638836897e.jpg │ │ │ ├── b301f83abe6eb92c2ff22f0f3a0bea3105d3cc8e.jpg │ │ │ ├── b30b4ee60879670ef124607f219c3c8b53f61ebb.jpg │ │ │ ├── b45ab31446d5cef0afc385984bb368f897b00671.jpg │ │ │ ├── b4d88a037d9c0f170526571118b81450d99a8c4b.jpg │ │ │ ├── b517717005911dddd3d8b4231fa10ad7d4ece128.jpg │ │ │ ├── b5826871aa503c247c6727040bddecc42855ab40.jpg │ │ │ ├── b5cef745bd18cbc4b838b42a1c98de2f44bcb8d7.jpg │ │ │ ├── b67b82e8f50e6d8bdd7dd0ef1e7272430c5e650d.jpg │ │ │ ├── b70c0649aaa1341d256455227ccf003ce6243abf.jpg │ │ │ ├── b73239cf87e6126f541c43176dd5d2ee7d739584.jpg │ │ │ ├── b73366c79d2bd9bd1bc7f01ce3184ed0a2f69708.jpg │ │ │ ├── b742bbd437e5eb3d56d774ce4d3ae0b89609fec4.jpg │ │ │ ├── b745630478fc57b55dcd200bbdf8afb577ed6296.jpg │ │ │ ├── b78fe67084a538e28d0d2ca5d2a47730918cdafc.jpg │ │ │ ├── b7f45cf93dcba929cb0b78f4fb62865d8e42060c.jpg │ │ │ ├── b8239d8b05d8ef23ffda285f5cb84622349fb77a.jpg │ │ │ ├── b840d0447e63cf49f602d836d2b681bd5bf2eec4.jpg │ │ │ ├── b9e0142c3a5d51f881039625d9bd87617aeb8719.jpg │ │ │ ├── ba42fb8c99a235713d39828013de57c50d145027.jpg │ │ │ ├── ba583471ab56e556c3f34b70e52f981775644d67.jpg │ │ │ ├── bab60cbd4e29baef7d8a9af1cc9ae886a7ec7c7a.jpg │ │ │ ├── babf1a60fd3545943ed2c06747c66326b78edc09.jpg │ │ │ ├── bad7fdc31a30fd6b4ba4c992b8b476af20c7627f.jpg │ │ │ ├── bafdd8709e8b532f35654f254f6624651d856c2e.jpg │ │ │ ├── bb00573caa27dca16161e8c5d12b3d24d707381d.jpg │ │ │ ├── bc4dc0996e6628efe567cfffe54bd5bb950160c7.jpg │ │ │ ├── bceaf25142dc27487c2e4cd01f86003f1c0ec15f.jpg │ │ │ ├── bd18c88ea4a8716fe988dedeb627cae080677645.jpg │ │ │ ├── bd3b4a7af5e5dcdcddae3615bf9e245c6a5030e7.jpg │ │ │ ├── be87cf62193574c57d3b7a1cb9e325c552ac770a.jpg │ │ │ ├── be8df4c398e0ca03cdd02cc1640c7ab58f70e05b.jpg │ │ │ ├── bfada00e38050b2101cdc0a49ab08a74fcd131e0.jpg │ │ │ ├── c005c3c5f34082d1ee171245c30e8db6dc1d2410.jpg │ │ │ ├── c15ee1629ef6000cd3e243af20740236dea38607.jpg │ │ │ ├── c1a16003a446e91abbf5eabc1d35af8e22c2ea9f.jpg │ │ │ ├── c22c568b7d5a7c28a2e3f2aeaf07dce1d077e486.jpg │ │ │ ├── c28618f41ba9ca3cf917e8009b31a7bd080556c9.jpg │ │ │ ├── c29f72a7f4084dfbab497fb0f523cb9d17b725f8.jpg │ │ │ ├── c2e56d9db309ae80c873a928ab9a68df7dac9388.jpg │ │ │ ├── c32df227ca00b780d755aab013be2ebde9d8fe83.jpg │ │ │ ├── c351e39819e78d23fadeca93bf91bd861db94c25.jpg │ │ │ ├── c38d30d3e65ce3d1b9c5797a1f8d65871a1f8793.jpg │ │ │ ├── c391878510dff7796870c0398cd6644f6e871e71.jpg │ │ │ ├── c3f50f09abb11cb58b5122654f2134522b7fae86.jpg │ │ │ ├── c497b9f521ee5d8fb93131bf5fe9f4b9c37c4f15.jpg │ │ │ ├── c4bda37622f809881d91e28e4daf964251913e1c.jpg │ │ │ ├── c4bdf0692e5b8feaa9a81fceb877895b98b0578e.jpg │ │ │ ├── c4dcd09a49f8e1373f8ca3cf52166ef6c9fa1eda.jpg │ │ │ ├── c581ecbeb3a52e8572401f7c81916a739a91601f.jpg │ │ │ ├── c60c37721842195430934befa3d487827ac00703.jpg │ │ │ ├── c61511e5140c2f6d08916d22b6963cbffe36f89d.jpg │ │ │ ├── c6a84e1248e01b599f188d90e6da7a8715d2f37a.jpg │ │ │ ├── c6b9cbeda8d3886250e870f673c195daa402de00.jpg │ │ │ ├── c6d52e4bde708b9ebc2b8fe94991ad09319d879d.jpg │ │ │ ├── c7109d723a66578bd5fdb3011a4d5d20efca5ec0.jpg │ │ │ ├── c739fd6daaf546ad868a5c2e46fe778dab5bc6aa.jpg │ │ │ ├── c74dc5b083f191a104a4e651cd60f54d643d11ee.jpg │ │ │ ├── c76f6e5ea5d91dcaee3ed509396996ce6e9159df.jpg │ │ │ ├── c79d412c9e5b350970feb24ee976a44be4e819a7.jpg │ │ │ ├── c7edc6314b250c955390f979c086ba4bff262d43.jpg │ │ │ ├── c7fcb254c5b964d4881a944716de6ba953e4d7fb.jpg │ │ │ ├── c8957dcdc44816b6737bb14e33049878e7d2596b.jpg │ │ │ ├── c897af3ffdb116c77c37942b7c3492971bf88a3e.jpg │ │ │ ├── c8a335ae991c093a6c02f5f0e8306ce13a5e5eca.jpg │ │ │ ├── c8b056104b9f1eb1a628c03b047c60170fbf7a95.jpg │ │ │ ├── c8ff8972c6d4ccaba6bf6d31eee94c0a3e901fc1.jpg │ │ │ ├── c98b3190dd6e8f1d414908c0321cdde143f9a183.jpg │ │ │ ├── ca068494a1688d5999a03f1d17a97817dc26a3f8.jpg │ │ │ ├── ca1ed8626711354496ab27a3d68e66452c3ce5dd.jpg │ │ │ ├── ca62b462531f13b9abf663fd92c7b0fe20d60392.jpg │ │ │ ├── cac633fcbd8d850429bb9d386a551ab38a021553.jpg │ │ │ ├── cb707270f47f3edd3017f46213ea4395a349b4bd.jpg │ │ │ ├── cb9d404d36a7467af7aa4c07913a407afb26c163.jpg │ │ │ ├── cbd4969a89ff7aa8b1c759e4723826da6ce6f81f.jpg │ │ │ ├── cbdbc241d64c06414b530033cd0cbf282721f6ff.jpg │ │ │ ├── cbe68a2a6948e1af146d69a77ed1a70ece84d757.jpg │ │ │ ├── cc1a8d08ab4501b06cc5213756b48c4a245486cc.jpg │ │ │ ├── cc329fb4dc11320276567e5ec31eb7dac344ef9e.jpg │ │ │ ├── cd0f2c4c8e3ab0beed36c3225f8997a2a995e427.jpg │ │ │ ├── cd2b71308e1cb8cf5f79d4778c1549fa854229bd.jpg │ │ │ ├── cda7b5aa32e880d65af181a63ff221ab706910f4.jpg │ │ │ ├── cdfcea127e9c87b7b735467cbd26bedc023b9917.jpg │ │ │ ├── ce15c426c010427808055739e2957762231e4d04.jpg │ │ │ ├── ce22a05aac433b3cbca0bab660a583466b019e1b.jpg │ │ │ ├── ce5b9c7259f4b7b1fad77b046df4fe491894aa3e.jpg │ │ │ ├── ced10ef3f063025083fe47bc0b50fdca4b707cc7.jpg │ │ │ ├── cf34ac80af1c67dd46c193912f2bc2423862a096.jpg │ │ │ ├── d0c65a29be8597856800595a2dd6e9cd10c3023a.jpg │ │ │ ├── d1a1a33f83847ed39e1285285621ba4840894f07.jpg │ │ │ ├── d1ced052af37ca947c675a4ea6085a36f5e54a81.jpg │ │ │ ├── d24c72b12a2725ed2e13208a1c6b4136b1c7b421.jpg │ │ │ ├── d2be93cfc04b93ac7ffdf33888241172fbf3f5f6.jpg │ │ │ ├── d33e3556d06cde899f3dadf7430471dabf3727f1.jpg │ │ │ ├── d34584746babcc1e2efdb032135f53aa7324d989.jpg │ │ │ ├── d360cdc0cc3bdff8a0b3c780bad2ce6de8d190f0.jpg │ │ │ ├── d3771fc4cdda8d689d7efed2afb5cb00ad9d7eb7.jpg │ │ │ ├── d4bfc82bf02bff97b7cd8a50964de5cb78429560.jpg │ │ │ ├── d507998ec0f28d66f30ab90518f91ec0cbdbb818.jpg │ │ │ ├── d588218524a231bfc604b88f43bf9c25f642a7a0.jpg │ │ │ ├── d5932144693aee539ab542f4c395ac05c42cb93b.jpg │ │ │ ├── d60dae401f0b17435ad353da74c510d3f262a2ee.jpg │ │ │ ├── d6ee104c2123e1ab49c9ea6f589a7001332bad5f.jpg │ │ │ ├── d709b68a73ff92205df139fb7fbe334d859e561e.jpg │ │ │ ├── d7149c7173cc68efbc551b7101d8ff0724844207.jpg │ │ │ ├── d74777e272e44be1defe970404117172dc2c07b5.jpg │ │ │ ├── d810abcd83ccebab36206cc7469fe9599fef2b1b.jpg │ │ │ ├── d84c31f2c6c9253e742485bd8b232166260efb23.jpg │ │ │ ├── d913a7f3ab96da233a2ff61aed3e445744c7c975.jpg │ │ │ ├── d9254072227a1904fae23b77ae1722b0fc13be2f.jpg │ │ │ ├── d97b57fbb0b6ba70ca972021641f363ecc7eb8c5.jpg │ │ │ ├── da377aba42a8f2aac0a2b8ec94ee687c52280681.jpg │ │ │ ├── da39d34b2e2a8292042b594b1595a4ff23205753.jpg │ │ │ ├── da58f6dd3d0cfc2dfe1f097bd1f69e4ac67ed225.jpg │ │ │ ├── da6830d248fea4aa7217bc37c4562f24442c1b6a.jpg │ │ │ ├── dadfb1f69a39fad1f523d30ccc2d53cc645cbf4f.jpg │ │ │ ├── dae856c51fc43d1d26c331ca6c2999334c43744b.jpg │ │ │ ├── db5f8485cbd810b6bbccce025245b8fa10e1ef71.jpg │ │ │ ├── dbeee25a2f7eccf41c2659d68bec903a363dd048.jpg │ │ │ ├── dbfd9a572254b50aeea6aa4eced5793164fedde4.jpg │ │ │ ├── dc1d4b7465ad830a5798fc3d9ca7fb06abfabfff.jpg │ │ │ ├── dcaafe5df426412f6a9f7660908b433f71160b0f.jpg │ │ │ ├── dcdc53194f4fc555d33e2298f48ac73f7b9f2b4d.jpg │ │ │ ├── dd3365c4ce671aa2670a8339f677030c6873889b.jpg │ │ │ ├── dd452c944756cc21cc7f737642c2dc94629ba07d.jpg │ │ │ ├── dd46f444478937ea7d6b75696f376cb5443e2538.jpg │ │ │ ├── ddc9ea7a15db88728254e74d6bcbe50a6f395af3.jpg │ │ │ ├── de2e0c8c3f48c21259286452ca7885bc87d2d4e1.jpg │ │ │ ├── de3d1315fa1be6b58eff0cbc92443297f68ccf4e.jpg │ │ │ ├── df89ecb1704792830e9887ced6eddd358fe5a3a2.jpg │ │ │ ├── e0279974d9cbf103ebdc07a71c6b9091c59584c7.jpg │ │ │ ├── e03227b6f59a8969b78ae9e8244c383bb6b88b2a.jpg │ │ │ ├── e0329aa0406f749498a3002bc7710d122662d108.jpg │ │ │ ├── e0473b1d0aee04e542ed147797ddfddbace0f9e0.jpg │ │ │ ├── e131c75d0549ec6beecd861bec1c5d78224e974d.jpg │ │ │ ├── e1fba1dcbe0016fb76e59932c224bcc5051649b3.jpg │ │ │ ├── e221bcf475f7c9c74d83c28e26478d768fb0f76c.jpg │ │ │ ├── e26cce92ea361023ecb900b28448af23806f966f.jpg │ │ │ ├── e280ff30506b22c3570522461a7c558ea6e5c4b3.jpg │ │ │ ├── e2895c52bdbd794af93aa4cf9498241cfd18d92c.jpg │ │ │ ├── e292cde11b074a9bfeddfabf1882cdac08c9538a.jpg │ │ │ ├── e29dba03d04b57b3aae34f5a26ce5f1284fcf5b7.jpg │ │ │ ├── e2f97c986f7f51794f14317e79089d527e053d37.jpg │ │ │ ├── e2ff061f62debb79453fadd30cac37b15bc04efd.jpg │ │ │ ├── e31de153fa80dfa3baaba84f70a41733f15f1473.jpg │ │ │ ├── e320344544c650c9bc6c717fec8278e31609cc77.jpg │ │ │ ├── e35553199a0d6f4ea53ba0fcf9006cbc3e7abf8a.jpg │ │ │ ├── e35d33d1a8c11cf5b1d75d5c522d39ff281af2e0.jpg │ │ │ ├── e365f77430f742c5cc582334f32ecb4e3e0dd9cb.jpg │ │ │ ├── e38d45b14db24d5f73b82fac7b11e185b9a3d4e7.jpg │ │ │ ├── e3de63a6546d4f0e84ed1805f6718b971a27fa84.jpg │ │ │ ├── e4557af51296bb532f49f7a6a390273a1c7ebe81.jpg │ │ │ ├── e46c94adc3b10487488470110f232cc40b7922b6.jpg │ │ │ ├── e49a435ba7560b8c40c4ee412f59a8810f10f896.jpg │ │ │ ├── e4adb05411b52347f49896065db1dbedeafdd9ab.jpg │ │ │ ├── e4f4252890d9f601d29f221ee6024cf1db00f8c6.jpg │ │ │ ├── e58cb2de494b27ee17cacff0b0f3f750a169b746.jpg │ │ │ ├── e6229fed91703e95666718dfdf342b78a8b7c8b3.jpg │ │ │ ├── e63ac46098a59340eb69a83860c5a527ed41d245.jpg │ │ │ ├── e654ca42a6cc6202e3c8be7b57578902ac8b5b58.jpg │ │ │ ├── e671d94bf0d2f0151c9a4451c0eeb2b8b3253733.jpg │ │ │ ├── e6cab9540df1f95701bf2e5cf7fa8586f5fa7ccf.jpg │ │ │ ├── e7e486365d211cc8db3f57af471b5a0ada50cb21.jpg │ │ │ ├── e7f010db804fefecd456cd5ef9f1a6f2ce05e1a9.jpg │ │ │ ├── e8dcff2608a24c7abeeee932960bf6635bd15769.jpg │ │ │ ├── e92f3c43d3b951bd642dab6def6d90e9d056e1bb.jpg │ │ │ ├── e930ee11b9d36437c0ada8e964926450442c0c9a.jpg │ │ │ ├── e96462213ec577f4a0578a713543230862931980.jpg │ │ │ ├── ea1db004d3452da06dbeb7df125068c571b3b7f8.jpg │ │ │ ├── ea7aa30b47259bf76121729b27846fe894bfe80b.jpg │ │ │ ├── eb58741a710531b5f95cc6c045a76901257a99de.jpg │ │ │ ├── ebe7512b1ee917e17e162cb4d630a8718c8e1062.jpg │ │ │ ├── ec0bdd0c31e96dbbd2e2564fccdeee755b8d5842.jpg │ │ │ ├── ec46dc9c8830d790887dfc01bc1f557e5957ab74.jpg │ │ │ ├── ec6583165894fbe6fd7bafbc89e9e85e1bf22cf8.jpg │ │ │ ├── ec997f0fd1c87da5d963c96ed375d513b9d8a06c.jpg │ │ │ ├── eca5ddb051b6ffd6f98a6487aab39a5344063a5d.jpg │ │ │ ├── ecc8978eaef40b04689691d3ff661c1a351ed73f.jpg │ │ │ ├── ece3ac7b9be9f1dc261be17782d5ffa48efb92bc.jpg │ │ │ ├── ed2418279d7517e91f58d32962573f78fe571dcd.jpg │ │ │ ├── ed2956349f0e8b83bbe5065c09488814853cca6e.jpg │ │ │ ├── ed76d0e3af9c2ba349877c8fc4566a279d9b21a8.jpg │ │ │ ├── ed79b8f14fa5b5552efeef501a846a19920a6111.jpg │ │ │ ├── edbf135c2d74f7c1c3013d923b5076b1ac5a8267.jpg │ │ │ ├── eef72b13ef9d7e0dc3ca9a4d8967b14c7c5f97db.jpg │ │ │ ├── ef04c5c3c89ccb3e5cd84ea7aa1292f07af28977.jpg │ │ │ ├── ef8999e6b48a547c18aa08c55eebddc9b2f2f6bf.jpg │ │ │ ├── efb225756cab2d82a4815bdf8f536c98a84b1f11.jpg │ │ │ ├── efdf9561fa9815baadbf81ca180c1bab57811618.jpg │ │ │ ├── f05be369f630eefe518b8af1cb5a4316f9370a5f.jpg │ │ │ ├── f0a70ec59ba31bdbbd9ee9ab5566774ddde366e5.jpg │ │ │ ├── f0b7670e02afdcac4b49597b3c2a714dac82bab5.jpg │ │ │ ├── f0f79573cb63a0a679bb8d7e2f8a479ccc026845.jpg │ │ │ ├── f10a5b17f25538d259827cf357b13f04b15e5db5.jpg │ │ │ ├── f187727a43d2cdbe35d8507196698377f2e96a04.jpg │ │ │ ├── f1ebd44a9953b036c658cf05dbd222834ae76223.jpg │ │ │ ├── f1ec7217512dbf68a93adb6b224300e0c91f14fe.jpg │ │ │ ├── f353b9ae5f956300a530a7e286c23086e485bd6b.jpg │ │ │ ├── f359e64958c3d70d01f1b0b3051ea35334e11523.jpg │ │ │ ├── f35f98c4f5f28c40728ef150f7845d762d8043bb.jpg │ │ │ ├── f3b4303ec0bc74c30ac29e98f9f8c5fdcf43bc5e.jpg │ │ │ ├── f3baee5c1f0bcd14d33c61fd1cac4772d1cc3fbd.jpg │ │ │ ├── f4a18b4b9c46b35338264f2adf9936f3a359da29.jpg │ │ │ ├── f529ce4cc6ec6d255860b3cc903bb1a47e07e1f1.jpg │ │ │ ├── f547c16a0d5a43277bf7ceb8ee848248ba96cf7f.jpg │ │ │ ├── f5608f7cc6fed95fd8bd3ae6e4a995b972cc276b.jpg │ │ │ ├── f64811abd62d9d1a5589bf936df940f91603b6eb.jpg │ │ │ ├── f6ab169c575ea2eee2815bd0c2cc1649533faa57.jpg │ │ │ ├── f6bd25d16e7fa705977c8f81e9d2cdbbb9ccafc0.jpg │ │ │ ├── f7192caf2b2c5192da4f2ce9ea1c8d4c534e62bf.jpg │ │ │ ├── f835ab631c459242abedb897823c69911e8e398f.jpg │ │ │ ├── f85db05ab81ab68919218d9396e2001def297a42.jpg │ │ │ ├── f88b724144cddc2ec9e0110408a7cff5ed8152df.jpg │ │ │ ├── f8c5c2c273a8b4c7326d4be76831387827c988cf.jpg │ │ │ ├── f8cbb597009314f51977422c0cb82a80bba6a9b9.jpg │ │ │ ├── f9aab3ce57cd6aa747a6dabe1a9120709f4d5586.jpg │ │ │ ├── f9f6f9736e3164b5ea84efd778e5f82d91dd714f.jpg │ │ │ ├── fa908107053a9895523b01e97c160bc76d1a808f.jpg │ │ │ ├── fa96d662d896271b4af230e6d2d185f7cdb1cab7.jpg │ │ │ ├── faffb3dcbfbea25affcbaf300aed87859daf428f.jpg │ │ │ ├── fc0a9c723baacb64f6d8ccfc448ad9e4c8b43be7.jpg │ │ │ ├── fc192abb73e85c14697856091072702399327a79.jpg │ │ │ ├── fcc1c631c91cecdb35248d599c12e0d26ed3d2e1.jpg │ │ │ └── ff07685164e8d921fc97d8588798bbb4b766fc02.jpg │ │ ├── js │ │ ├── nbviz_bar.mjs │ │ ├── nbviz_core.mjs │ │ ├── nbviz_details.mjs │ │ ├── nbviz_main.mjs │ │ ├── nbviz_map.mjs │ │ ├── nbviz_menu.mjs │ │ └── nbviz_time.mjs │ │ └── libs │ │ ├── crossfilter.min.js │ │ ├── d3-fetch.min.js │ │ ├── d3.min.js │ │ └── topojson.min.js ├── Nobel_dataviz.png └── README.md ├── README.md ├── data ├── .~lock.nobel_winners.xlsx# ├── _.oecd.org ├── google_credentials.json ├── nobel_prize (copy).db ├── nobel_prize.db ├── nobel_winners.csv ├── nobel_winners.db ├── nobel_winners.db-shm ├── nobel_winners.db-wal ├── nobel_winners.json ├── nobel_winners.xlsx ├── nobel_winners_all_sheets.xlsx ├── nobel_winners_asdf.db ├── nobel_winners_baa.db ├── nobel_winners_biopic.json ├── nobel_winners_ch03.db ├── nobel_winners_ch03b.db ├── nobel_winners_ch03bc.db ├── nobel_winners_cleaned.db ├── nobel_winners_cleaned.json ├── nobel_winners_cleaned_asdf.db ├── nobel_winners_cleaned_test.db ├── nobel_winners_cleaned_test.db-shm ├── nobel_winners_cleaned_test.db-wal ├── nobel_winners_cleaned_test19.db ├── nobel_winners_cleaned_test192.db ├── nobel_winners_dirty.json ├── nobel_winners_foo.db ├── nobel_winners_food.db ├── nobel_winners_plus_bornin.json ├── nobel_winners_sheet1.xlsx ├── oecd_cert_file.cert ├── scrapy_nwinners_minibio.json ├── v2 │ ├── nobel_winners_clean_wbi.json │ ├── nobel_winners_cleaned.json │ └── nobel_winners_cleaned_wbi.json ├── winning_country_data.json └── world_country_data.json └── requirements.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/.gitignore -------------------------------------------------------------------------------- /Part_1_Basic_Toolkit/Ch.02_Language_learning_bridge/Ch.02_A_Language_Learning_Bridge.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_1_Basic_Toolkit/Ch.02_Language_learning_bridge/Ch.02_A_Language_Learning_Bridge.ipynb -------------------------------------------------------------------------------- /Part_1_Basic_Toolkit/Ch.02_Language_learning_bridge/index.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_1_Basic_Toolkit/Ch.02_Language_learning_bridge/index.mjs -------------------------------------------------------------------------------- /Part_1_Basic_Toolkit/Ch.02_Language_learning_bridge/lib/libFoo.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_1_Basic_Toolkit/Ch.02_Language_learning_bridge/lib/libFoo.mjs -------------------------------------------------------------------------------- /Part_1_Basic_Toolkit/Ch.02_Language_learning_bridge/lib/underscore.min.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_1_Basic_Toolkit/Ch.02_Language_learning_bridge/lib/underscore.min.mjs -------------------------------------------------------------------------------- /Part_1_Basic_Toolkit/Ch.03_Reading_and_Writing_Data_with_Python.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_1_Basic_Toolkit/Ch.03_Reading_and_Writing_Data_with_Python.ipynb -------------------------------------------------------------------------------- /Part_1_Basic_Toolkit/Ch.04_Webdev101/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_1_Basic_Toolkit/Ch.04_Webdev101/README.md -------------------------------------------------------------------------------- /Part_1_Basic_Toolkit/Ch.04_Webdev101/index_flex.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_1_Basic_Toolkit/Ch.04_Webdev101/index_flex.html -------------------------------------------------------------------------------- /Part_1_Basic_Toolkit/Ch.04_Webdev101/index_flex_nested.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_1_Basic_Toolkit/Ch.04_Webdev101/index_flex_nested.html -------------------------------------------------------------------------------- /Part_1_Basic_Toolkit/Ch.04_Webdev101/index_javascripted_svg.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_1_Basic_Toolkit/Ch.04_Webdev101/index_javascripted_svg.html -------------------------------------------------------------------------------- /Part_1_Basic_Toolkit/Ch.04_Webdev101/index_placeholders.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_1_Basic_Toolkit/Ch.04_Webdev101/index_placeholders.html -------------------------------------------------------------------------------- /Part_1_Basic_Toolkit/Ch.04_Webdev101/index_svg.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_1_Basic_Toolkit/Ch.04_Webdev101/index_svg.html -------------------------------------------------------------------------------- /Part_1_Basic_Toolkit/Ch.04_Webdev101/index_svg_2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_1_Basic_Toolkit/Ch.04_Webdev101/index_svg_2.html -------------------------------------------------------------------------------- /Part_1_Basic_Toolkit/Ch.04_Webdev101/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_1_Basic_Toolkit/Ch.04_Webdev101/script.js -------------------------------------------------------------------------------- /Part_1_Basic_Toolkit/Ch.04_Webdev101/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_1_Basic_Toolkit/Ch.04_Webdev101/style.css -------------------------------------------------------------------------------- /Part_1_Basic_Toolkit/data/nobel_winners.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_1_Basic_Toolkit/data/nobel_winners.csv -------------------------------------------------------------------------------- /Part_1_Basic_Toolkit/data/nobel_winners.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_1_Basic_Toolkit/data/nobel_winners.db -------------------------------------------------------------------------------- /Part_1_Basic_Toolkit/data/nobel_winners.db-shm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_1_Basic_Toolkit/data/nobel_winners.db-shm -------------------------------------------------------------------------------- /Part_1_Basic_Toolkit/data/nobel_winners.db-wal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_1_Basic_Toolkit/data/nobel_winners.db-wal -------------------------------------------------------------------------------- /Part_1_Basic_Toolkit/data/nobel_winners.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_1_Basic_Toolkit/data/nobel_winners.json -------------------------------------------------------------------------------- /Part_2_Getting_Your_Data/Ch.05 - Getting Data off the Web with Python.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_2_Getting_Your_Data/Ch.05 - Getting Data off the Web with Python.ipynb -------------------------------------------------------------------------------- /Part_2_Getting_Your_Data/Ch.06_Scrapy/nobel_winners/images/full/1b4d26fad5083b19bed30d737f2b770ac59a4ec2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_2_Getting_Your_Data/Ch.06_Scrapy/nobel_winners/images/full/1b4d26fad5083b19bed30d737f2b770ac59a4ec2.jpg -------------------------------------------------------------------------------- /Part_2_Getting_Your_Data/Ch.06_Scrapy/nobel_winners/images/full/3262c0c444deb3995e1388da14c9b4f22c82f0a2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_2_Getting_Your_Data/Ch.06_Scrapy/nobel_winners/images/full/3262c0c444deb3995e1388da14c9b4f22c82f0a2.jpg -------------------------------------------------------------------------------- /Part_2_Getting_Your_Data/Ch.06_Scrapy/nobel_winners/images/full/3738bc56354df4f878a22ac5d325a373db9dfdc2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_2_Getting_Your_Data/Ch.06_Scrapy/nobel_winners/images/full/3738bc56354df4f878a22ac5d325a373db9dfdc2.jpg -------------------------------------------------------------------------------- /Part_2_Getting_Your_Data/Ch.06_Scrapy/nobel_winners/images/full/65ac9541c305ab4728ed889385d422a2321a117d.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_2_Getting_Your_Data/Ch.06_Scrapy/nobel_winners/images/full/65ac9541c305ab4728ed889385d422a2321a117d.jpg -------------------------------------------------------------------------------- /Part_2_Getting_Your_Data/Ch.06_Scrapy/nobel_winners/images/full/6ca7a53ff6e3c5b894a8d4b888a0380d2deb99e8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_2_Getting_Your_Data/Ch.06_Scrapy/nobel_winners/images/full/6ca7a53ff6e3c5b894a8d4b888a0380d2deb99e8.jpg -------------------------------------------------------------------------------- /Part_2_Getting_Your_Data/Ch.06_Scrapy/nobel_winners/images/full/78f035bb66a1028ff1f45d6f9ef4cd672acc5970.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_2_Getting_Your_Data/Ch.06_Scrapy/nobel_winners/images/full/78f035bb66a1028ff1f45d6f9ef4cd672acc5970.jpg -------------------------------------------------------------------------------- /Part_2_Getting_Your_Data/Ch.06_Scrapy/nobel_winners/images/full/7a6acc07a7fc429efbb8bd9470c67395a73a5619.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_2_Getting_Your_Data/Ch.06_Scrapy/nobel_winners/images/full/7a6acc07a7fc429efbb8bd9470c67395a73a5619.jpg -------------------------------------------------------------------------------- /Part_2_Getting_Your_Data/Ch.06_Scrapy/nobel_winners/images/full/8375529db7a23920775df07a088fe5e9ef470d19.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_2_Getting_Your_Data/Ch.06_Scrapy/nobel_winners/images/full/8375529db7a23920775df07a088fe5e9ef470d19.jpg -------------------------------------------------------------------------------- /Part_2_Getting_Your_Data/Ch.06_Scrapy/nobel_winners/images/full/90f95e38074a110dea891a02420273843d25e267.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_2_Getting_Your_Data/Ch.06_Scrapy/nobel_winners/images/full/90f95e38074a110dea891a02420273843d25e267.jpg -------------------------------------------------------------------------------- /Part_2_Getting_Your_Data/Ch.06_Scrapy/nobel_winners/images/full/91e7f9fb6404dd5c9d76ed57534399d71e157950.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_2_Getting_Your_Data/Ch.06_Scrapy/nobel_winners/images/full/91e7f9fb6404dd5c9d76ed57534399d71e157950.jpg -------------------------------------------------------------------------------- /Part_2_Getting_Your_Data/Ch.06_Scrapy/nobel_winners/images/full/976cea55c7b67dbceee0d4935c97fec5f7da2822.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_2_Getting_Your_Data/Ch.06_Scrapy/nobel_winners/images/full/976cea55c7b67dbceee0d4935c97fec5f7da2822.jpg -------------------------------------------------------------------------------- /Part_2_Getting_Your_Data/Ch.06_Scrapy/nobel_winners/images/full/9ffc262be2701e8e520a3664283dc620178e01c0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_2_Getting_Your_Data/Ch.06_Scrapy/nobel_winners/images/full/9ffc262be2701e8e520a3664283dc620178e01c0.jpg -------------------------------------------------------------------------------- /Part_2_Getting_Your_Data/Ch.06_Scrapy/nobel_winners/images/full/a5f763b828006e704cb291411b8b643bfb91886c.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_2_Getting_Your_Data/Ch.06_Scrapy/nobel_winners/images/full/a5f763b828006e704cb291411b8b643bfb91886c.jpg -------------------------------------------------------------------------------- /Part_2_Getting_Your_Data/Ch.06_Scrapy/nobel_winners/images/full/b4d88a037d9c0f170526571118b81450d99a8c4b.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_2_Getting_Your_Data/Ch.06_Scrapy/nobel_winners/images/full/b4d88a037d9c0f170526571118b81450d99a8c4b.jpg -------------------------------------------------------------------------------- /Part_2_Getting_Your_Data/Ch.06_Scrapy/nobel_winners/images/full/f9f6f9736e3164b5ea84efd778e5f82d91dd714f.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_2_Getting_Your_Data/Ch.06_Scrapy/nobel_winners/images/full/f9f6f9736e3164b5ea84efd778e5f82d91dd714f.jpg -------------------------------------------------------------------------------- /Part_2_Getting_Your_Data/Ch.06_Scrapy/nobel_winners/images/full/fc9d3fb009b4c857d63b40c42ae4aaf313642640.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_2_Getting_Your_Data/Ch.06_Scrapy/nobel_winners/images/full/fc9d3fb009b4c857d63b40c42ae4aaf313642640.jpg -------------------------------------------------------------------------------- /Part_2_Getting_Your_Data/Ch.06_Scrapy/nobel_winners/minibios.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_2_Getting_Your_Data/Ch.06_Scrapy/nobel_winners/minibios.json -------------------------------------------------------------------------------- /Part_2_Getting_Your_Data/Ch.06_Scrapy/nobel_winners/nobel_winners.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_2_Getting_Your_Data/Ch.06_Scrapy/nobel_winners/nobel_winners.json -------------------------------------------------------------------------------- /Part_2_Getting_Your_Data/Ch.06_Scrapy/nobel_winners/nobel_winners/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Part_2_Getting_Your_Data/Ch.06_Scrapy/nobel_winners/nobel_winners/items.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_2_Getting_Your_Data/Ch.06_Scrapy/nobel_winners/nobel_winners/items.py -------------------------------------------------------------------------------- /Part_2_Getting_Your_Data/Ch.06_Scrapy/nobel_winners/nobel_winners/middlewares.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_2_Getting_Your_Data/Ch.06_Scrapy/nobel_winners/nobel_winners/middlewares.py -------------------------------------------------------------------------------- /Part_2_Getting_Your_Data/Ch.06_Scrapy/nobel_winners/nobel_winners/pipelines.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_2_Getting_Your_Data/Ch.06_Scrapy/nobel_winners/nobel_winners/pipelines.py -------------------------------------------------------------------------------- /Part_2_Getting_Your_Data/Ch.06_Scrapy/nobel_winners/nobel_winners/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_2_Getting_Your_Data/Ch.06_Scrapy/nobel_winners/nobel_winners/settings.py -------------------------------------------------------------------------------- /Part_2_Getting_Your_Data/Ch.06_Scrapy/nobel_winners/nobel_winners/spiders/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_2_Getting_Your_Data/Ch.06_Scrapy/nobel_winners/nobel_winners/spiders/__init__.py -------------------------------------------------------------------------------- /Part_2_Getting_Your_Data/Ch.06_Scrapy/nobel_winners/nobel_winners/spiders/notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_2_Getting_Your_Data/Ch.06_Scrapy/nobel_winners/nobel_winners/spiders/notes.md -------------------------------------------------------------------------------- /Part_2_Getting_Your_Data/Ch.06_Scrapy/nobel_winners/nobel_winners/spiders/nwinners_full_spider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_2_Getting_Your_Data/Ch.06_Scrapy/nobel_winners/nobel_winners/spiders/nwinners_full_spider.py -------------------------------------------------------------------------------- /Part_2_Getting_Your_Data/Ch.06_Scrapy/nobel_winners/nobel_winners/spiders/nwinners_list_spider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_2_Getting_Your_Data/Ch.06_Scrapy/nobel_winners/nobel_winners/spiders/nwinners_list_spider.py -------------------------------------------------------------------------------- /Part_2_Getting_Your_Data/Ch.06_Scrapy/nobel_winners/nobel_winners/spiders/nwinners_minibio_spider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_2_Getting_Your_Data/Ch.06_Scrapy/nobel_winners/nobel_winners/spiders/nwinners_minibio_spider.py -------------------------------------------------------------------------------- /Part_2_Getting_Your_Data/Ch.06_Scrapy/nobel_winners/scrapy.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_2_Getting_Your_Data/Ch.06_Scrapy/nobel_winners/scrapy.cfg -------------------------------------------------------------------------------- /Part_2_Getting_Your_Data/Ch.06_Scrapy/nobel_winners_test/nobel_winners_test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Part_2_Getting_Your_Data/Ch.06_Scrapy/nobel_winners_test/nobel_winners_test/items.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_2_Getting_Your_Data/Ch.06_Scrapy/nobel_winners_test/nobel_winners_test/items.py -------------------------------------------------------------------------------- /Part_2_Getting_Your_Data/Ch.06_Scrapy/nobel_winners_test/nobel_winners_test/middlewares.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_2_Getting_Your_Data/Ch.06_Scrapy/nobel_winners_test/nobel_winners_test/middlewares.py -------------------------------------------------------------------------------- /Part_2_Getting_Your_Data/Ch.06_Scrapy/nobel_winners_test/nobel_winners_test/pipelines.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_2_Getting_Your_Data/Ch.06_Scrapy/nobel_winners_test/nobel_winners_test/pipelines.py -------------------------------------------------------------------------------- /Part_2_Getting_Your_Data/Ch.06_Scrapy/nobel_winners_test/nobel_winners_test/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_2_Getting_Your_Data/Ch.06_Scrapy/nobel_winners_test/nobel_winners_test/settings.py -------------------------------------------------------------------------------- /Part_2_Getting_Your_Data/Ch.06_Scrapy/nobel_winners_test/nobel_winners_test/spiders/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_2_Getting_Your_Data/Ch.06_Scrapy/nobel_winners_test/nobel_winners_test/spiders/__init__.py -------------------------------------------------------------------------------- /Part_2_Getting_Your_Data/Ch.06_Scrapy/nobel_winners_test/scrapy.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_2_Getting_Your_Data/Ch.06_Scrapy/nobel_winners_test/scrapy.cfg -------------------------------------------------------------------------------- /Part_2_Getting_Your_Data/data/google_credentials.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_2_Getting_Your_Data/data/google_credentials.json -------------------------------------------------------------------------------- /Part_2_Getting_Your_Data/data/world_country_data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_2_Getting_Your_Data/data/world_country_data.json -------------------------------------------------------------------------------- /Part_2_Getting_Your_Data/nobel_pages.sqlite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_2_Getting_Your_Data/nobel_pages.sqlite -------------------------------------------------------------------------------- /Part_3_Cleaning_and_Exploring_with_Pandas/11-13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_3_Cleaning_and_Exploring_with_Pandas/11-13.png -------------------------------------------------------------------------------- /Part_3_Cleaning_and_Exploring_with_Pandas/11-14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_3_Cleaning_and_Exploring_with_Pandas/11-14.png -------------------------------------------------------------------------------- /Part_3_Cleaning_and_Exploring_with_Pandas/Ch07_Introduction_to_Numpy.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_3_Cleaning_and_Exploring_with_Pandas/Ch07_Introduction_to_Numpy.ipynb -------------------------------------------------------------------------------- /Part_3_Cleaning_and_Exploring_with_Pandas/Ch08_Introduction_to_Pandas.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_3_Cleaning_and_Exploring_with_Pandas/Ch08_Introduction_to_Pandas.ipynb -------------------------------------------------------------------------------- /Part_3_Cleaning_and_Exploring_with_Pandas/Ch09_Cleaning_Data_with_Pandas.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_3_Cleaning_and_Exploring_with_Pandas/Ch09_Cleaning_Data_with_Pandas.ipynb -------------------------------------------------------------------------------- /Part_3_Cleaning_and_Exploring_with_Pandas/Ch10_Visualising_Data_with_Matplotlib.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_3_Cleaning_and_Exploring_with_Pandas/Ch10_Visualising_Data_with_Matplotlib.ipynb -------------------------------------------------------------------------------- /Part_3_Cleaning_and_Exploring_with_Pandas/Ch11_Exploring_Data_with_Pandas.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_3_Cleaning_and_Exploring_with_Pandas/Ch11_Exploring_Data_with_Pandas.ipynb -------------------------------------------------------------------------------- /Part_3_Cleaning_and_Exploring_with_Pandas/country_absolute_prize_numbers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_3_Cleaning_and_Exploring_with_Pandas/country_absolute_prize_numbers.png -------------------------------------------------------------------------------- /Part_3_Cleaning_and_Exploring_with_Pandas/country_relative_prize_numbers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_3_Cleaning_and_Exploring_with_Pandas/country_relative_prize_numbers.png -------------------------------------------------------------------------------- /Part_3_Cleaning_and_Exploring_with_Pandas/data/.~lock.nobel_winners.xlsx#: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_3_Cleaning_and_Exploring_with_Pandas/data/.~lock.nobel_winners.xlsx# -------------------------------------------------------------------------------- /Part_3_Cleaning_and_Exploring_with_Pandas/data/nobel_winners.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_3_Cleaning_and_Exploring_with_Pandas/data/nobel_winners.db -------------------------------------------------------------------------------- /Part_3_Cleaning_and_Exploring_with_Pandas/data/nobel_winners.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_3_Cleaning_and_Exploring_with_Pandas/data/nobel_winners.xlsx -------------------------------------------------------------------------------- /Part_3_Cleaning_and_Exploring_with_Pandas/data/nobel_winners_all_sheets.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_3_Cleaning_and_Exploring_with_Pandas/data/nobel_winners_all_sheets.xlsx -------------------------------------------------------------------------------- /Part_3_Cleaning_and_Exploring_with_Pandas/data/nobel_winners_cleaned.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_3_Cleaning_and_Exploring_with_Pandas/data/nobel_winners_cleaned.db -------------------------------------------------------------------------------- /Part_3_Cleaning_and_Exploring_with_Pandas/data/nobel_winners_cleaned.db-shm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_3_Cleaning_and_Exploring_with_Pandas/data/nobel_winners_cleaned.db-shm -------------------------------------------------------------------------------- /Part_3_Cleaning_and_Exploring_with_Pandas/data/nobel_winners_cleaned.db-wal: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Part_3_Cleaning_and_Exploring_with_Pandas/data/nobel_winners_cleaned.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_3_Cleaning_and_Exploring_with_Pandas/data/nobel_winners_cleaned.json -------------------------------------------------------------------------------- /Part_3_Cleaning_and_Exploring_with_Pandas/data/nobel_winners_cleaned_test.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_3_Cleaning_and_Exploring_with_Pandas/data/nobel_winners_cleaned_test.db -------------------------------------------------------------------------------- /Part_3_Cleaning_and_Exploring_with_Pandas/data/nobel_winners_cleaned_test.db-shm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_3_Cleaning_and_Exploring_with_Pandas/data/nobel_winners_cleaned_test.db-shm -------------------------------------------------------------------------------- /Part_3_Cleaning_and_Exploring_with_Pandas/data/nobel_winners_cleaned_test.db-wal: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Part_3_Cleaning_and_Exploring_with_Pandas/data/nobel_winners_dirty.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_3_Cleaning_and_Exploring_with_Pandas/data/nobel_winners_dirty.json -------------------------------------------------------------------------------- /Part_3_Cleaning_and_Exploring_with_Pandas/data/nobel_winners_sheet1.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_3_Cleaning_and_Exploring_with_Pandas/data/nobel_winners_sheet1.xlsx -------------------------------------------------------------------------------- /Part_3_Cleaning_and_Exploring_with_Pandas/data/scrapy_nwinners_minibio.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_3_Cleaning_and_Exploring_with_Pandas/data/scrapy_nwinners_minibio.json -------------------------------------------------------------------------------- /Part_3_Cleaning_and_Exploring_with_Pandas/data/winning_country_data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_3_Cleaning_and_Exploring_with_Pandas/data/winning_country_data.json -------------------------------------------------------------------------------- /Part_3_Cleaning_and_Exploring_with_Pandas/dvpj_1103.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_3_Cleaning_and_Exploring_with_Pandas/dvpj_1103.png -------------------------------------------------------------------------------- /Part_3_Cleaning_and_Exploring_with_Pandas/dvpj_1104.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_3_Cleaning_and_Exploring_with_Pandas/dvpj_1104.png -------------------------------------------------------------------------------- /Part_3_Cleaning_and_Exploring_with_Pandas/dvpj_1110.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_3_Cleaning_and_Exploring_with_Pandas/dvpj_1110.png -------------------------------------------------------------------------------- /Part_3_Cleaning_and_Exploring_with_Pandas/mpl_3lines_custom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_3_Cleaning_and_Exploring_with_Pandas/mpl_3lines_custom.png -------------------------------------------------------------------------------- /Part_4_Delivering_the_Data/Ch.12_Delivering_the_Data/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_4_Delivering_the_Data/Ch.12_Delivering_the_Data/README.md -------------------------------------------------------------------------------- /Part_4_Delivering_the_Data/Ch.12_Delivering_the_Data/data/nobel_winners.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_4_Delivering_the_Data/Ch.12_Delivering_the_Data/data/nobel_winners.db -------------------------------------------------------------------------------- /Part_4_Delivering_the_Data/Ch.12_Delivering_the_Data/data/nobel_winners_cleaned.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_4_Delivering_the_Data/Ch.12_Delivering_the_Data/data/nobel_winners_cleaned.db -------------------------------------------------------------------------------- /Part_4_Delivering_the_Data/Ch.12_Delivering_the_Data/data/nobel_winners_cleaned.db-shm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_4_Delivering_the_Data/Ch.12_Delivering_the_Data/data/nobel_winners_cleaned.db-shm -------------------------------------------------------------------------------- /Part_4_Delivering_the_Data/Ch.12_Delivering_the_Data/data/nobel_winners_cleaned.db-wal: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Part_4_Delivering_the_Data/Ch.12_Delivering_the_Data/delivering_data_files/data/nobel_winners_cleaned.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_4_Delivering_the_Data/Ch.12_Delivering_the_Data/delivering_data_files/data/nobel_winners_cleaned.json -------------------------------------------------------------------------------- /Part_4_Delivering_the_Data/Ch.12_Delivering_the_Data/delivering_data_files/data/winners_by_country/Argentina.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_4_Delivering_the_Data/Ch.12_Delivering_the_Data/delivering_data_files/data/winners_by_country/Argentina.json -------------------------------------------------------------------------------- /Part_4_Delivering_the_Data/Ch.12_Delivering_the_Data/delivering_data_files/data/winners_by_country/Australia.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_4_Delivering_the_Data/Ch.12_Delivering_the_Data/delivering_data_files/data/winners_by_country/Australia.json -------------------------------------------------------------------------------- /Part_4_Delivering_the_Data/Ch.12_Delivering_the_Data/delivering_data_files/data/winners_by_country/Austria.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_4_Delivering_the_Data/Ch.12_Delivering_the_Data/delivering_data_files/data/winners_by_country/Austria.json -------------------------------------------------------------------------------- /Part_4_Delivering_the_Data/Ch.12_Delivering_the_Data/delivering_data_files/data/winners_by_country/Azerbaijan.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_4_Delivering_the_Data/Ch.12_Delivering_the_Data/delivering_data_files/data/winners_by_country/Azerbaijan.json -------------------------------------------------------------------------------- /Part_4_Delivering_the_Data/Ch.12_Delivering_the_Data/delivering_data_files/data/winners_by_country/Bangladesh.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_4_Delivering_the_Data/Ch.12_Delivering_the_Data/delivering_data_files/data/winners_by_country/Bangladesh.json -------------------------------------------------------------------------------- /Part_4_Delivering_the_Data/Ch.12_Delivering_the_Data/delivering_data_files/data/winners_by_country/Belgium.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_4_Delivering_the_Data/Ch.12_Delivering_the_Data/delivering_data_files/data/winners_by_country/Belgium.json -------------------------------------------------------------------------------- /Part_4_Delivering_the_Data/Ch.12_Delivering_the_Data/delivering_data_files/data/winners_by_country/Canada.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_4_Delivering_the_Data/Ch.12_Delivering_the_Data/delivering_data_files/data/winners_by_country/Canada.json -------------------------------------------------------------------------------- /Part_4_Delivering_the_Data/Ch.12_Delivering_the_Data/delivering_data_files/data/winners_by_country/Chile.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_4_Delivering_the_Data/Ch.12_Delivering_the_Data/delivering_data_files/data/winners_by_country/Chile.json -------------------------------------------------------------------------------- /Part_4_Delivering_the_Data/Ch.12_Delivering_the_Data/delivering_data_files/data/winners_by_country/China.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_4_Delivering_the_Data/Ch.12_Delivering_the_Data/delivering_data_files/data/winners_by_country/China.json -------------------------------------------------------------------------------- /Part_4_Delivering_the_Data/Ch.12_Delivering_the_Data/delivering_data_files/data/winners_by_country/Colombia.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_4_Delivering_the_Data/Ch.12_Delivering_the_Data/delivering_data_files/data/winners_by_country/Colombia.json -------------------------------------------------------------------------------- /Part_4_Delivering_the_Data/Ch.12_Delivering_the_Data/delivering_data_files/data/winners_by_country/Costa Rica.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_4_Delivering_the_Data/Ch.12_Delivering_the_Data/delivering_data_files/data/winners_by_country/Costa Rica.json -------------------------------------------------------------------------------- /Part_4_Delivering_the_Data/Ch.12_Delivering_the_Data/delivering_data_files/data/winners_by_country/Cyprus.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_4_Delivering_the_Data/Ch.12_Delivering_the_Data/delivering_data_files/data/winners_by_country/Cyprus.json -------------------------------------------------------------------------------- /Part_4_Delivering_the_Data/Ch.12_Delivering_the_Data/delivering_data_files/data/winners_by_country/Czech Republic.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_4_Delivering_the_Data/Ch.12_Delivering_the_Data/delivering_data_files/data/winners_by_country/Czech Republic.json -------------------------------------------------------------------------------- /Part_4_Delivering_the_Data/Ch.12_Delivering_the_Data/delivering_data_files/data/winners_by_country/Denmark.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_4_Delivering_the_Data/Ch.12_Delivering_the_Data/delivering_data_files/data/winners_by_country/Denmark.json -------------------------------------------------------------------------------- /Part_4_Delivering_the_Data/Ch.12_Delivering_the_Data/delivering_data_files/data/winners_by_country/East Timor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_4_Delivering_the_Data/Ch.12_Delivering_the_Data/delivering_data_files/data/winners_by_country/East Timor.json -------------------------------------------------------------------------------- /Part_4_Delivering_the_Data/Ch.12_Delivering_the_Data/delivering_data_files/data/winners_by_country/Egypt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_4_Delivering_the_Data/Ch.12_Delivering_the_Data/delivering_data_files/data/winners_by_country/Egypt.json -------------------------------------------------------------------------------- /Part_4_Delivering_the_Data/Ch.12_Delivering_the_Data/delivering_data_files/data/winners_by_country/Finland.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_4_Delivering_the_Data/Ch.12_Delivering_the_Data/delivering_data_files/data/winners_by_country/Finland.json -------------------------------------------------------------------------------- /Part_4_Delivering_the_Data/Ch.12_Delivering_the_Data/delivering_data_files/data/winners_by_country/France.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_4_Delivering_the_Data/Ch.12_Delivering_the_Data/delivering_data_files/data/winners_by_country/France.json -------------------------------------------------------------------------------- /Part_4_Delivering_the_Data/Ch.12_Delivering_the_Data/delivering_data_files/data/winners_by_country/Germany.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_4_Delivering_the_Data/Ch.12_Delivering_the_Data/delivering_data_files/data/winners_by_country/Germany.json -------------------------------------------------------------------------------- /Part_4_Delivering_the_Data/Ch.12_Delivering_the_Data/delivering_data_files/data/winners_by_country/Ghana.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_4_Delivering_the_Data/Ch.12_Delivering_the_Data/delivering_data_files/data/winners_by_country/Ghana.json -------------------------------------------------------------------------------- /Part_4_Delivering_the_Data/Ch.12_Delivering_the_Data/delivering_data_files/data/winners_by_country/Greece.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_4_Delivering_the_Data/Ch.12_Delivering_the_Data/delivering_data_files/data/winners_by_country/Greece.json -------------------------------------------------------------------------------- /Part_4_Delivering_the_Data/Ch.12_Delivering_the_Data/delivering_data_files/data/winners_by_country/Guatemala.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_4_Delivering_the_Data/Ch.12_Delivering_the_Data/delivering_data_files/data/winners_by_country/Guatemala.json -------------------------------------------------------------------------------- /Part_4_Delivering_the_Data/Ch.12_Delivering_the_Data/delivering_data_files/data/winners_by_country/Hungary.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_4_Delivering_the_Data/Ch.12_Delivering_the_Data/delivering_data_files/data/winners_by_country/Hungary.json -------------------------------------------------------------------------------- /Part_4_Delivering_the_Data/Ch.12_Delivering_the_Data/delivering_data_files/data/winners_by_country/Iceland.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_4_Delivering_the_Data/Ch.12_Delivering_the_Data/delivering_data_files/data/winners_by_country/Iceland.json -------------------------------------------------------------------------------- /Part_4_Delivering_the_Data/Ch.12_Delivering_the_Data/delivering_data_files/data/winners_by_country/India.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_4_Delivering_the_Data/Ch.12_Delivering_the_Data/delivering_data_files/data/winners_by_country/India.json -------------------------------------------------------------------------------- /Part_4_Delivering_the_Data/Ch.12_Delivering_the_Data/delivering_data_files/data/winners_by_country/Iran.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_4_Delivering_the_Data/Ch.12_Delivering_the_Data/delivering_data_files/data/winners_by_country/Iran.json -------------------------------------------------------------------------------- /Part_4_Delivering_the_Data/Ch.12_Delivering_the_Data/delivering_data_files/data/winners_by_country/Ireland.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_4_Delivering_the_Data/Ch.12_Delivering_the_Data/delivering_data_files/data/winners_by_country/Ireland.json -------------------------------------------------------------------------------- /Part_4_Delivering_the_Data/Ch.12_Delivering_the_Data/delivering_data_files/data/winners_by_country/Israel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_4_Delivering_the_Data/Ch.12_Delivering_the_Data/delivering_data_files/data/winners_by_country/Israel.json -------------------------------------------------------------------------------- /Part_4_Delivering_the_Data/Ch.12_Delivering_the_Data/delivering_data_files/data/winners_by_country/Italy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_4_Delivering_the_Data/Ch.12_Delivering_the_Data/delivering_data_files/data/winners_by_country/Italy.json -------------------------------------------------------------------------------- /Part_4_Delivering_the_Data/Ch.12_Delivering_the_Data/delivering_data_files/data/winners_by_country/Japan.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_4_Delivering_the_Data/Ch.12_Delivering_the_Data/delivering_data_files/data/winners_by_country/Japan.json -------------------------------------------------------------------------------- /Part_4_Delivering_the_Data/Ch.12_Delivering_the_Data/delivering_data_files/data/winners_by_country/Kenya.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_4_Delivering_the_Data/Ch.12_Delivering_the_Data/delivering_data_files/data/winners_by_country/Kenya.json -------------------------------------------------------------------------------- /Part_4_Delivering_the_Data/Ch.12_Delivering_the_Data/delivering_data_files/data/winners_by_country/Korea, South.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_4_Delivering_the_Data/Ch.12_Delivering_the_Data/delivering_data_files/data/winners_by_country/Korea, South.json -------------------------------------------------------------------------------- /Part_4_Delivering_the_Data/Ch.12_Delivering_the_Data/delivering_data_files/data/winners_by_country/Liberia.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_4_Delivering_the_Data/Ch.12_Delivering_the_Data/delivering_data_files/data/winners_by_country/Liberia.json -------------------------------------------------------------------------------- /Part_4_Delivering_the_Data/Ch.12_Delivering_the_Data/delivering_data_files/data/winners_by_country/Mexico.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_4_Delivering_the_Data/Ch.12_Delivering_the_Data/delivering_data_files/data/winners_by_country/Mexico.json -------------------------------------------------------------------------------- /Part_4_Delivering_the_Data/Ch.12_Delivering_the_Data/delivering_data_files/data/winners_by_country/Myanmar (Burma).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_4_Delivering_the_Data/Ch.12_Delivering_the_Data/delivering_data_files/data/winners_by_country/Myanmar (Burma).json -------------------------------------------------------------------------------- /Part_4_Delivering_the_Data/Ch.12_Delivering_the_Data/delivering_data_files/data/winners_by_country/Netherlands.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_4_Delivering_the_Data/Ch.12_Delivering_the_Data/delivering_data_files/data/winners_by_country/Netherlands.json -------------------------------------------------------------------------------- /Part_4_Delivering_the_Data/Ch.12_Delivering_the_Data/delivering_data_files/data/winners_by_country/Nigeria.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_4_Delivering_the_Data/Ch.12_Delivering_the_Data/delivering_data_files/data/winners_by_country/Nigeria.json -------------------------------------------------------------------------------- /Part_4_Delivering_the_Data/Ch.12_Delivering_the_Data/delivering_data_files/data/winners_by_country/Norway.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_4_Delivering_the_Data/Ch.12_Delivering_the_Data/delivering_data_files/data/winners_by_country/Norway.json -------------------------------------------------------------------------------- /Part_4_Delivering_the_Data/Ch.12_Delivering_the_Data/delivering_data_files/data/winners_by_country/Pakistan.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_4_Delivering_the_Data/Ch.12_Delivering_the_Data/delivering_data_files/data/winners_by_country/Pakistan.json -------------------------------------------------------------------------------- /Part_4_Delivering_the_Data/Ch.12_Delivering_the_Data/delivering_data_files/data/winners_by_country/Palestinian Territory.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_4_Delivering_the_Data/Ch.12_Delivering_the_Data/delivering_data_files/data/winners_by_country/Palestinian Territory.json -------------------------------------------------------------------------------- /Part_4_Delivering_the_Data/Ch.12_Delivering_the_Data/delivering_data_files/data/winners_by_country/Poland.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_4_Delivering_the_Data/Ch.12_Delivering_the_Data/delivering_data_files/data/winners_by_country/Poland.json -------------------------------------------------------------------------------- /Part_4_Delivering_the_Data/Ch.12_Delivering_the_Data/delivering_data_files/data/winners_by_country/Portugal.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_4_Delivering_the_Data/Ch.12_Delivering_the_Data/delivering_data_files/data/winners_by_country/Portugal.json -------------------------------------------------------------------------------- /Part_4_Delivering_the_Data/Ch.12_Delivering_the_Data/delivering_data_files/data/winners_by_country/Russia.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_4_Delivering_the_Data/Ch.12_Delivering_the_Data/delivering_data_files/data/winners_by_country/Russia.json -------------------------------------------------------------------------------- /Part_4_Delivering_the_Data/Ch.12_Delivering_the_Data/delivering_data_files/data/winners_by_country/Saint Lucia.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_4_Delivering_the_Data/Ch.12_Delivering_the_Data/delivering_data_files/data/winners_by_country/Saint Lucia.json -------------------------------------------------------------------------------- /Part_4_Delivering_the_Data/Ch.12_Delivering_the_Data/delivering_data_files/data/winners_by_country/South Africa.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_4_Delivering_the_Data/Ch.12_Delivering_the_Data/delivering_data_files/data/winners_by_country/South Africa.json -------------------------------------------------------------------------------- /Part_4_Delivering_the_Data/Ch.12_Delivering_the_Data/delivering_data_files/data/winners_by_country/Spain.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_4_Delivering_the_Data/Ch.12_Delivering_the_Data/delivering_data_files/data/winners_by_country/Spain.json -------------------------------------------------------------------------------- /Part_4_Delivering_the_Data/Ch.12_Delivering_the_Data/delivering_data_files/data/winners_by_country/Sweden.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_4_Delivering_the_Data/Ch.12_Delivering_the_Data/delivering_data_files/data/winners_by_country/Sweden.json -------------------------------------------------------------------------------- /Part_4_Delivering_the_Data/Ch.12_Delivering_the_Data/delivering_data_files/data/winners_by_country/Switzerland.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_4_Delivering_the_Data/Ch.12_Delivering_the_Data/delivering_data_files/data/winners_by_country/Switzerland.json -------------------------------------------------------------------------------- /Part_4_Delivering_the_Data/Ch.12_Delivering_the_Data/delivering_data_files/data/winners_by_country/Taiwan.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_4_Delivering_the_Data/Ch.12_Delivering_the_Data/delivering_data_files/data/winners_by_country/Taiwan.json -------------------------------------------------------------------------------- /Part_4_Delivering_the_Data/Ch.12_Delivering_the_Data/delivering_data_files/data/winners_by_country/Turkey.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_4_Delivering_the_Data/Ch.12_Delivering_the_Data/delivering_data_files/data/winners_by_country/Turkey.json -------------------------------------------------------------------------------- /Part_4_Delivering_the_Data/Ch.12_Delivering_the_Data/delivering_data_files/data/winners_by_country/United Kingdom.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_4_Delivering_the_Data/Ch.12_Delivering_the_Data/delivering_data_files/data/winners_by_country/United Kingdom.json -------------------------------------------------------------------------------- /Part_4_Delivering_the_Data/Ch.12_Delivering_the_Data/delivering_data_files/data/winners_by_country/United States.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_4_Delivering_the_Data/Ch.12_Delivering_the_Data/delivering_data_files/data/winners_by_country/United States.json -------------------------------------------------------------------------------- /Part_4_Delivering_the_Data/Ch.12_Delivering_the_Data/delivering_data_files/data/winners_by_country/Venezuela.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_4_Delivering_the_Data/Ch.12_Delivering_the_Data/delivering_data_files/data/winners_by_country/Venezuela.json -------------------------------------------------------------------------------- /Part_4_Delivering_the_Data/Ch.12_Delivering_the_Data/delivering_data_files/data/winners_by_country/Vietnam.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_4_Delivering_the_Data/Ch.12_Delivering_the_Data/delivering_data_files/data/winners_by_country/Vietnam.json -------------------------------------------------------------------------------- /Part_4_Delivering_the_Data/Ch.12_Delivering_the_Data/delivering_data_files/data/winners_by_country/Yemen.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_4_Delivering_the_Data/Ch.12_Delivering_the_Data/delivering_data_files/data/winners_by_country/Yemen.json -------------------------------------------------------------------------------- /Part_4_Delivering_the_Data/Ch.12_Delivering_the_Data/delivering_data_files/data/winners_by_country/Yugoslavia.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_4_Delivering_the_Data/Ch.12_Delivering_the_Data/delivering_data_files/data/winners_by_country/Yugoslavia.json -------------------------------------------------------------------------------- /Part_4_Delivering_the_Data/Ch.12_Delivering_the_Data/delivering_data_files/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_4_Delivering_the_Data/Ch.12_Delivering_the_Data/delivering_data_files/index.html -------------------------------------------------------------------------------- /Part_4_Delivering_the_Data/Ch.12_Delivering_the_Data/delivering_data_files/index_by_country.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_4_Delivering_the_Data/Ch.12_Delivering_the_Data/delivering_data_files/index_by_country.html -------------------------------------------------------------------------------- /Part_4_Delivering_the_Data/Ch.12_Delivering_the_Data/delivering_data_files/lib/d3.v7.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_4_Delivering_the_Data/Ch.12_Delivering_the_Data/delivering_data_files/lib/d3.v7.min.js -------------------------------------------------------------------------------- /Part_4_Delivering_the_Data/Ch.12_Delivering_the_Data/delivering_data_files/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_4_Delivering_the_Data/Ch.12_Delivering_the_Data/delivering_data_files/script.js -------------------------------------------------------------------------------- /Part_4_Delivering_the_Data/Ch.12_Delivering_the_Data/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_4_Delivering_the_Data/Ch.12_Delivering_the_Data/server.py -------------------------------------------------------------------------------- /Part_4_Delivering_the_Data/Ch.12_Delivering_the_Data/server_jinja.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_4_Delivering_the_Data/Ch.12_Delivering_the_Data/server_jinja.py -------------------------------------------------------------------------------- /Part_4_Delivering_the_Data/Ch.12_Delivering_the_Data/server_sql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_4_Delivering_the_Data/Ch.12_Delivering_the_Data/server_sql.py -------------------------------------------------------------------------------- /Part_4_Delivering_the_Data/Ch.12_Delivering_the_Data/templates/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |

{{message}}

5 | -------------------------------------------------------------------------------- /Part_4_Delivering_the_Data/Ch.12_Delivering_the_Data/templates/winner_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_4_Delivering_the_Data/Ch.12_Delivering_the_Data/templates/winner_list.html -------------------------------------------------------------------------------- /Part_4_Delivering_the_Data/Ch.13_Restful_API/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_4_Delivering_the_Data/Ch.13_Restful_API/README.md -------------------------------------------------------------------------------- /Part_4_Delivering_the_Data/Ch.13_Restful_API/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_4_Delivering_the_Data/Ch.13_Restful_API/api.py -------------------------------------------------------------------------------- /Part_4_Delivering_the_Data/Ch.13_Restful_API/api_restful.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_4_Delivering_the_Data/Ch.13_Restful_API/api_restful.py -------------------------------------------------------------------------------- /Part_4_Delivering_the_Data/Ch.13_Restful_API/data/nobel_winners.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_4_Delivering_the_Data/Ch.13_Restful_API/data/nobel_winners.db -------------------------------------------------------------------------------- /Part_4_Delivering_the_Data/Ch.13_Restful_API/data/nobel_winners_cleaned.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_4_Delivering_the_Data/Ch.13_Restful_API/data/nobel_winners_cleaned.db -------------------------------------------------------------------------------- /Part_4_Delivering_the_Data/Ch.13_Restful_API/data/nobel_winners_cleaned_api.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_4_Delivering_the_Data/Ch.13_Restful_API/data/nobel_winners_cleaned_api.db -------------------------------------------------------------------------------- /Part_4_Delivering_the_Data/Ch.13_Restful_API/data/nobel_winners_cleaned_api_test.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_4_Delivering_the_Data/Ch.13_Restful_API/data/nobel_winners_cleaned_api_test.db -------------------------------------------------------------------------------- /Part_4_Delivering_the_Data/Ch.13_Restful_API/heroku-python-starter/.github/PULL_REQUEST_TEMPLATE.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_4_Delivering_the_Data/Ch.13_Restful_API/heroku-python-starter/.github/PULL_REQUEST_TEMPLATE.MD -------------------------------------------------------------------------------- /Part_4_Delivering_the_Data/Ch.13_Restful_API/heroku-python-starter/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_4_Delivering_the_Data/Ch.13_Restful_API/heroku-python-starter/.gitignore -------------------------------------------------------------------------------- /Part_4_Delivering_the_Data/Ch.13_Restful_API/heroku-python-starter/Procfile: -------------------------------------------------------------------------------- 1 | web: gunicorn gettingstarted.wsgi 2 | -------------------------------------------------------------------------------- /Part_4_Delivering_the_Data/Ch.13_Restful_API/heroku-python-starter/Procfile.windows: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_4_Delivering_the_Data/Ch.13_Restful_API/heroku-python-starter/Procfile.windows -------------------------------------------------------------------------------- /Part_4_Delivering_the_Data/Ch.13_Restful_API/heroku-python-starter/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_4_Delivering_the_Data/Ch.13_Restful_API/heroku-python-starter/README.md -------------------------------------------------------------------------------- /Part_4_Delivering_the_Data/Ch.13_Restful_API/heroku-python-starter/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_4_Delivering_the_Data/Ch.13_Restful_API/heroku-python-starter/app.json -------------------------------------------------------------------------------- /Part_4_Delivering_the_Data/Ch.13_Restful_API/heroku-python-starter/gettingstarted/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Part_4_Delivering_the_Data/Ch.13_Restful_API/heroku-python-starter/gettingstarted/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_4_Delivering_the_Data/Ch.13_Restful_API/heroku-python-starter/gettingstarted/settings.py -------------------------------------------------------------------------------- /Part_4_Delivering_the_Data/Ch.13_Restful_API/heroku-python-starter/gettingstarted/static/humans.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Part_4_Delivering_the_Data/Ch.13_Restful_API/heroku-python-starter/gettingstarted/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_4_Delivering_the_Data/Ch.13_Restful_API/heroku-python-starter/gettingstarted/urls.py -------------------------------------------------------------------------------- /Part_4_Delivering_the_Data/Ch.13_Restful_API/heroku-python-starter/gettingstarted/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_4_Delivering_the_Data/Ch.13_Restful_API/heroku-python-starter/gettingstarted/wsgi.py -------------------------------------------------------------------------------- /Part_4_Delivering_the_Data/Ch.13_Restful_API/heroku-python-starter/hello/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Part_4_Delivering_the_Data/Ch.13_Restful_API/heroku-python-starter/hello/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_4_Delivering_the_Data/Ch.13_Restful_API/heroku-python-starter/hello/admin.py -------------------------------------------------------------------------------- /Part_4_Delivering_the_Data/Ch.13_Restful_API/heroku-python-starter/hello/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_4_Delivering_the_Data/Ch.13_Restful_API/heroku-python-starter/hello/migrations/0001_initial.py -------------------------------------------------------------------------------- /Part_4_Delivering_the_Data/Ch.13_Restful_API/heroku-python-starter/hello/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Part_4_Delivering_the_Data/Ch.13_Restful_API/heroku-python-starter/hello/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_4_Delivering_the_Data/Ch.13_Restful_API/heroku-python-starter/hello/models.py -------------------------------------------------------------------------------- /Part_4_Delivering_the_Data/Ch.13_Restful_API/heroku-python-starter/hello/static/lang-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_4_Delivering_the_Data/Ch.13_Restful_API/heroku-python-starter/hello/static/lang-logo.png -------------------------------------------------------------------------------- /Part_4_Delivering_the_Data/Ch.13_Restful_API/heroku-python-starter/hello/templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_4_Delivering_the_Data/Ch.13_Restful_API/heroku-python-starter/hello/templates/base.html -------------------------------------------------------------------------------- /Part_4_Delivering_the_Data/Ch.13_Restful_API/heroku-python-starter/hello/templates/db.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_4_Delivering_the_Data/Ch.13_Restful_API/heroku-python-starter/hello/templates/db.html -------------------------------------------------------------------------------- /Part_4_Delivering_the_Data/Ch.13_Restful_API/heroku-python-starter/hello/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_4_Delivering_the_Data/Ch.13_Restful_API/heroku-python-starter/hello/templates/index.html -------------------------------------------------------------------------------- /Part_4_Delivering_the_Data/Ch.13_Restful_API/heroku-python-starter/hello/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_4_Delivering_the_Data/Ch.13_Restful_API/heroku-python-starter/hello/tests.py -------------------------------------------------------------------------------- /Part_4_Delivering_the_Data/Ch.13_Restful_API/heroku-python-starter/hello/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_4_Delivering_the_Data/Ch.13_Restful_API/heroku-python-starter/hello/views.py -------------------------------------------------------------------------------- /Part_4_Delivering_the_Data/Ch.13_Restful_API/heroku-python-starter/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_4_Delivering_the_Data/Ch.13_Restful_API/heroku-python-starter/manage.py -------------------------------------------------------------------------------- /Part_4_Delivering_the_Data/Ch.13_Restful_API/heroku-python-starter/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_4_Delivering_the_Data/Ch.13_Restful_API/heroku-python-starter/requirements.txt -------------------------------------------------------------------------------- /Part_4_Delivering_the_Data/Ch.13_Restful_API/heroku-python-starter/runtime.txt: -------------------------------------------------------------------------------- 1 | python-3.10.4 2 | -------------------------------------------------------------------------------- /Part_4_Delivering_the_Data/Ch.13_Restful_API/heroku/Procfile: -------------------------------------------------------------------------------- 1 | web: gunicorn api_rest:app 2 | -------------------------------------------------------------------------------- /Part_4_Delivering_the_Data/Ch.13_Restful_API/heroku/api_rest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_4_Delivering_the_Data/Ch.13_Restful_API/heroku/api_rest.py -------------------------------------------------------------------------------- /Part_4_Delivering_the_Data/Ch.13_Restful_API/heroku/data/nobel_winners.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_4_Delivering_the_Data/Ch.13_Restful_API/heroku/data/nobel_winners.db -------------------------------------------------------------------------------- /Part_4_Delivering_the_Data/Ch.13_Restful_API/heroku/data/nobel_winners_cleaned.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_4_Delivering_the_Data/Ch.13_Restful_API/heroku/data/nobel_winners_cleaned.db -------------------------------------------------------------------------------- /Part_4_Delivering_the_Data/Ch.13_Restful_API/heroku/data/nobel_winners_cleaned_api.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_4_Delivering_the_Data/Ch.13_Restful_API/heroku/data/nobel_winners_cleaned_api.db -------------------------------------------------------------------------------- /Part_4_Delivering_the_Data/Ch.13_Restful_API/heroku/data/nobel_winners_cleaned_api_test.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_4_Delivering_the_Data/Ch.13_Restful_API/heroku/data/nobel_winners_cleaned_api_test.db -------------------------------------------------------------------------------- /Part_4_Delivering_the_Data/Ch.13_Restful_API/heroku/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_4_Delivering_the_Data/Ch.13_Restful_API/heroku/requirements.txt -------------------------------------------------------------------------------- /Part_4_Delivering_the_Data/Ch.13_Restful_API/winners: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_4_Delivering_the_Data/Ch.13_Restful_API/winners -------------------------------------------------------------------------------- /Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.14-Bringing_your_Charts_to_the_Web/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.14-Bringing_your_Charts_to_the_Web/README.md -------------------------------------------------------------------------------- /Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.14-Bringing_your_Charts_to_the_Web/data/nobel_winners_cleaned.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.14-Bringing_your_Charts_to_the_Web/data/nobel_winners_cleaned.json -------------------------------------------------------------------------------- /Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.14-Bringing_your_Charts_to_the_Web/from-notebook-to-the-web/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.14-Bringing_your_Charts_to_the_Web/from-notebook-to-the-web/index.html -------------------------------------------------------------------------------- /Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.14-Bringing_your_Charts_to_the_Web/from-notebook-to-the-web/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.14-Bringing_your_Charts_to_the_Web/from-notebook-to-the-web/script.js -------------------------------------------------------------------------------- /Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.14-Bringing_your_Charts_to_the_Web/from-notebook-to-the-web/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.14-Bringing_your_Charts_to_the_Web/from-notebook-to-the-web/style.css -------------------------------------------------------------------------------- /Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.14-Bringing_your_Charts_to_the_Web/native-js-plots-with-plotly/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.14-Bringing_your_Charts_to_the_Web/native-js-plots-with-plotly/index.html -------------------------------------------------------------------------------- /Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.14-Bringing_your_Charts_to_the_Web/native-js-plots-with-plotly/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.14-Bringing_your_Charts_to_the_Web/native-js-plots-with-plotly/script.js -------------------------------------------------------------------------------- /Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.14-Bringing_your_Charts_to_the_Web/native-js-plots-with-plotly/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.14-Bringing_your_Charts_to_the_Web/native-js-plots-with-plotly/style.css -------------------------------------------------------------------------------- /Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/README.md -------------------------------------------------------------------------------- /Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/index.html -------------------------------------------------------------------------------- /Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/css/style.css -------------------------------------------------------------------------------- /Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/_winners: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/_winners -------------------------------------------------------------------------------- /Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d889b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d889b -------------------------------------------------------------------------------- /Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d889c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d889c -------------------------------------------------------------------------------- /Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d889d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d889d -------------------------------------------------------------------------------- /Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d889e: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d889e -------------------------------------------------------------------------------- /Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d889f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d889f -------------------------------------------------------------------------------- /Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d88a0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d88a0 -------------------------------------------------------------------------------- /Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d88a1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d88a1 -------------------------------------------------------------------------------- /Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d88a2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d88a2 -------------------------------------------------------------------------------- /Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d88a3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d88a3 -------------------------------------------------------------------------------- /Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d88a4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d88a4 -------------------------------------------------------------------------------- /Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d88a5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d88a5 -------------------------------------------------------------------------------- /Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d88a6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d88a6 -------------------------------------------------------------------------------- /Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d88a7: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d88a7 -------------------------------------------------------------------------------- /Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d88a8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d88a8 -------------------------------------------------------------------------------- /Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d88a9: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d88a9 -------------------------------------------------------------------------------- /Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d88aa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d88aa -------------------------------------------------------------------------------- /Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d88ab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d88ab -------------------------------------------------------------------------------- /Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d88ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d88ac -------------------------------------------------------------------------------- /Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d88ad: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d88ad -------------------------------------------------------------------------------- /Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d88ae: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d88ae -------------------------------------------------------------------------------- /Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d88af: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d88af -------------------------------------------------------------------------------- /Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d88b0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d88b0 -------------------------------------------------------------------------------- /Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d88b1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d88b1 -------------------------------------------------------------------------------- /Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d88b2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d88b2 -------------------------------------------------------------------------------- /Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d88b3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d88b3 -------------------------------------------------------------------------------- /Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d88b4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d88b4 -------------------------------------------------------------------------------- /Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d88b5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d88b5 -------------------------------------------------------------------------------- /Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d88b6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d88b6 -------------------------------------------------------------------------------- /Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d88b7: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d88b7 -------------------------------------------------------------------------------- /Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d88b8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d88b8 -------------------------------------------------------------------------------- /Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d88b9: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d88b9 -------------------------------------------------------------------------------- /Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d88ba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d88ba -------------------------------------------------------------------------------- /Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d88bb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d88bb -------------------------------------------------------------------------------- /Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d88bc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d88bc -------------------------------------------------------------------------------- /Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d88bd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d88bd -------------------------------------------------------------------------------- /Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d88be: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d88be -------------------------------------------------------------------------------- /Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d88bf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d88bf -------------------------------------------------------------------------------- /Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d88c0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d88c0 -------------------------------------------------------------------------------- /Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d88c1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d88c1 -------------------------------------------------------------------------------- /Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d88c2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d88c2 -------------------------------------------------------------------------------- /Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d88c3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d88c3 -------------------------------------------------------------------------------- /Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d88c4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d88c4 -------------------------------------------------------------------------------- /Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d88c5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d88c5 -------------------------------------------------------------------------------- /Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d88c6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d88c6 -------------------------------------------------------------------------------- /Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d88c7: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d88c7 -------------------------------------------------------------------------------- /Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d88c8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d88c8 -------------------------------------------------------------------------------- /Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d88c9: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d88c9 -------------------------------------------------------------------------------- /Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d88ca: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d88ca -------------------------------------------------------------------------------- /Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d88cb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d88cb -------------------------------------------------------------------------------- /Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d88cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d88cc -------------------------------------------------------------------------------- /Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d88cd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d88cd -------------------------------------------------------------------------------- /Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d88ce: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d88ce -------------------------------------------------------------------------------- /Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d88cf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d88cf -------------------------------------------------------------------------------- /Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d88d0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d88d0 -------------------------------------------------------------------------------- /Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d88d1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d88d1 -------------------------------------------------------------------------------- /Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d88d2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d88d2 -------------------------------------------------------------------------------- /Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d88d3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d88d3 -------------------------------------------------------------------------------- /Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d88d4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d88d4 -------------------------------------------------------------------------------- /Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d88d5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d88d5 -------------------------------------------------------------------------------- /Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d88d6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d88d6 -------------------------------------------------------------------------------- /Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d88d7: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d88d7 -------------------------------------------------------------------------------- /Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d88d8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d88d8 -------------------------------------------------------------------------------- /Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d88d9: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d88d9 -------------------------------------------------------------------------------- /Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d88da: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d88da -------------------------------------------------------------------------------- /Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d88db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d88db -------------------------------------------------------------------------------- /Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d88dc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d88dc -------------------------------------------------------------------------------- /Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d88dd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d88dd -------------------------------------------------------------------------------- /Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d88de: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d88de -------------------------------------------------------------------------------- /Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d88df: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d88df -------------------------------------------------------------------------------- /Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d88e0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d88e0 -------------------------------------------------------------------------------- /Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d88e1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d88e1 -------------------------------------------------------------------------------- /Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d88e2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d88e2 -------------------------------------------------------------------------------- /Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d88e3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d88e3 -------------------------------------------------------------------------------- /Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d88e4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d88e4 -------------------------------------------------------------------------------- /Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d88e5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d88e5 -------------------------------------------------------------------------------- /Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d88e6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d88e6 -------------------------------------------------------------------------------- /Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d88e7: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d88e7 -------------------------------------------------------------------------------- /Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d88e8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d88e8 -------------------------------------------------------------------------------- /Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d88e9: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d88e9 -------------------------------------------------------------------------------- /Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d88ea: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d88ea -------------------------------------------------------------------------------- /Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d88eb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d88eb -------------------------------------------------------------------------------- /Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d88ec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d88ec -------------------------------------------------------------------------------- /Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d88ed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d88ed -------------------------------------------------------------------------------- /Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d88ee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d88ee -------------------------------------------------------------------------------- /Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d88ef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d88ef -------------------------------------------------------------------------------- /Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d88f0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d88f0 -------------------------------------------------------------------------------- /Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d88f1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d88f1 -------------------------------------------------------------------------------- /Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d88f2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d88f2 -------------------------------------------------------------------------------- /Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d88f3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d88f3 -------------------------------------------------------------------------------- /Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d88f4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d88f4 -------------------------------------------------------------------------------- /Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d88f5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d88f5 -------------------------------------------------------------------------------- /Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d88f6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d88f6 -------------------------------------------------------------------------------- /Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d88f7: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d88f7 -------------------------------------------------------------------------------- /Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d88f8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d88f8 -------------------------------------------------------------------------------- /Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d88f9: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d88f9 -------------------------------------------------------------------------------- /Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d88fa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d88fa -------------------------------------------------------------------------------- /Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d88fb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d88fb -------------------------------------------------------------------------------- /Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d88fc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d88fc -------------------------------------------------------------------------------- /Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d88fd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d88fd -------------------------------------------------------------------------------- /Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d88fe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d88fe -------------------------------------------------------------------------------- /Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d88ff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d88ff -------------------------------------------------------------------------------- /Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d8900: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d8900 -------------------------------------------------------------------------------- /Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d8901: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d8901 -------------------------------------------------------------------------------- /Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d8902: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d8902 -------------------------------------------------------------------------------- /Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d8903: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d8903 -------------------------------------------------------------------------------- /Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d8904: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d8904 -------------------------------------------------------------------------------- /Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d8905: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d8905 -------------------------------------------------------------------------------- /Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d8906: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d8906 -------------------------------------------------------------------------------- /Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d8907: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d8907 -------------------------------------------------------------------------------- /Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d8908: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d8908 -------------------------------------------------------------------------------- /Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d8909: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d8909 -------------------------------------------------------------------------------- /Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d890a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d890a -------------------------------------------------------------------------------- /Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d890b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d890b -------------------------------------------------------------------------------- /Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d890c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d890c -------------------------------------------------------------------------------- /Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d890d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d890d -------------------------------------------------------------------------------- /Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d890e: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d890e -------------------------------------------------------------------------------- /Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d890f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d890f -------------------------------------------------------------------------------- /Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d8910: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d8910 -------------------------------------------------------------------------------- /Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d8911: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d8911 -------------------------------------------------------------------------------- /Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d8912: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d8912 -------------------------------------------------------------------------------- /Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d8913: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d8913 -------------------------------------------------------------------------------- /Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d8914: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d8914 -------------------------------------------------------------------------------- /Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d8915: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d8915 -------------------------------------------------------------------------------- /Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d8916: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d8916 -------------------------------------------------------------------------------- /Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d8917: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d8917 -------------------------------------------------------------------------------- /Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d8918: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d8918 -------------------------------------------------------------------------------- /Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d8919: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d8919 -------------------------------------------------------------------------------- /Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d891a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d891a -------------------------------------------------------------------------------- /Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d891b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d891b -------------------------------------------------------------------------------- /Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d891c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d891c -------------------------------------------------------------------------------- /Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d891d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d891d -------------------------------------------------------------------------------- /Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d891e: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d891e -------------------------------------------------------------------------------- /Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d891f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d891f -------------------------------------------------------------------------------- /Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d8920: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d8920 -------------------------------------------------------------------------------- /Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d8921: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d8921 -------------------------------------------------------------------------------- /Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d8922: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d8922 -------------------------------------------------------------------------------- /Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d8923: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d8923 -------------------------------------------------------------------------------- /Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d8924: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d8924 -------------------------------------------------------------------------------- /Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d8925: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d8925 -------------------------------------------------------------------------------- /Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d8926: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d8926 -------------------------------------------------------------------------------- /Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d8927: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d8927 -------------------------------------------------------------------------------- /Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d8928: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d8928 -------------------------------------------------------------------------------- /Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d8929: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d8929 -------------------------------------------------------------------------------- /Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d892a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d892a -------------------------------------------------------------------------------- /Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d892b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d892b -------------------------------------------------------------------------------- /Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d892c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d892c -------------------------------------------------------------------------------- /Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d892d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d892d -------------------------------------------------------------------------------- /Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d892e: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d892e -------------------------------------------------------------------------------- /Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d892f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d892f -------------------------------------------------------------------------------- /Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d8930: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d8930 -------------------------------------------------------------------------------- /Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d8931: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d8931 -------------------------------------------------------------------------------- /Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d8932: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d8932 -------------------------------------------------------------------------------- /Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d8933: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d8933 -------------------------------------------------------------------------------- /Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d8934: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d8934 -------------------------------------------------------------------------------- /Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d8935: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d8935 -------------------------------------------------------------------------------- /Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d8936: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d8936 -------------------------------------------------------------------------------- /Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d8937: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d8937 -------------------------------------------------------------------------------- /Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d8938: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d8938 -------------------------------------------------------------------------------- /Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d8939: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d8939 -------------------------------------------------------------------------------- /Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d893a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d893a -------------------------------------------------------------------------------- /Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d893b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d893b -------------------------------------------------------------------------------- /Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d893c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d893c -------------------------------------------------------------------------------- /Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d893d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d893d -------------------------------------------------------------------------------- /Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d893e: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d893e -------------------------------------------------------------------------------- /Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d893f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d893f -------------------------------------------------------------------------------- /Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d8940: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d8940 -------------------------------------------------------------------------------- /Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d8941: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d8941 -------------------------------------------------------------------------------- /Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d8942: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d8942 -------------------------------------------------------------------------------- /Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d8943: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d8943 -------------------------------------------------------------------------------- /Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d8944: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d8944 -------------------------------------------------------------------------------- /Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d8945: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d8945 -------------------------------------------------------------------------------- /Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d8946: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d8946 -------------------------------------------------------------------------------- /Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d8947: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d8947 -------------------------------------------------------------------------------- /Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d8948: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d8948 -------------------------------------------------------------------------------- /Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d8949: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d8949 -------------------------------------------------------------------------------- /Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d894a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d894a -------------------------------------------------------------------------------- /Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d894b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d894b -------------------------------------------------------------------------------- /Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d894c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d894c -------------------------------------------------------------------------------- /Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d894d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d894d -------------------------------------------------------------------------------- /Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d894e: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d894e -------------------------------------------------------------------------------- /Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d894f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d894f -------------------------------------------------------------------------------- /Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d8950: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d8950 -------------------------------------------------------------------------------- /Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d8951: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d8951 -------------------------------------------------------------------------------- /Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d8952: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d8952 -------------------------------------------------------------------------------- /Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d8953: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d8953 -------------------------------------------------------------------------------- /Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d8954: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d8954 -------------------------------------------------------------------------------- /Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d8955: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d8955 -------------------------------------------------------------------------------- /Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d8956: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d8956 -------------------------------------------------------------------------------- /Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d8957: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d8957 -------------------------------------------------------------------------------- /Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d8958: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d8958 -------------------------------------------------------------------------------- /Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d8959: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d8959 -------------------------------------------------------------------------------- /Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d895a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d895a -------------------------------------------------------------------------------- /Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d895b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d895b -------------------------------------------------------------------------------- /Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d895c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d895c -------------------------------------------------------------------------------- /Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d895d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d895d -------------------------------------------------------------------------------- /Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d895e: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d895e -------------------------------------------------------------------------------- /Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d895f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d895f -------------------------------------------------------------------------------- /Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d8960: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d8960 -------------------------------------------------------------------------------- /Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d8961: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d8961 -------------------------------------------------------------------------------- /Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d8962: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d8962 -------------------------------------------------------------------------------- /Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d8963: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d8963 -------------------------------------------------------------------------------- /Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d8964: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d8964 -------------------------------------------------------------------------------- /Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d8965: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d8965 -------------------------------------------------------------------------------- /Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d8966: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d8966 -------------------------------------------------------------------------------- /Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d8967: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d8967 -------------------------------------------------------------------------------- /Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d8968: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d8968 -------------------------------------------------------------------------------- /Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d8969: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d8969 -------------------------------------------------------------------------------- /Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d896a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d896a -------------------------------------------------------------------------------- /Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d896b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d896b -------------------------------------------------------------------------------- /Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d896c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d896c -------------------------------------------------------------------------------- /Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d896d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d896d -------------------------------------------------------------------------------- /Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d896e: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d896e -------------------------------------------------------------------------------- /Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d896f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d896f -------------------------------------------------------------------------------- /Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d8970: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d8970 -------------------------------------------------------------------------------- /Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d8971: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d8971 -------------------------------------------------------------------------------- /Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d8972: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d8972 -------------------------------------------------------------------------------- /Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d8973: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d8973 -------------------------------------------------------------------------------- /Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d8974: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d8974 -------------------------------------------------------------------------------- /Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d8975: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d8975 -------------------------------------------------------------------------------- /Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d8976: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d8976 -------------------------------------------------------------------------------- /Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d8977: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d8977 -------------------------------------------------------------------------------- /Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d8978: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d8978 -------------------------------------------------------------------------------- /Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d8979: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d8979 -------------------------------------------------------------------------------- /Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d897a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d897a -------------------------------------------------------------------------------- /Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d897b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d897b -------------------------------------------------------------------------------- /Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d897c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d897c -------------------------------------------------------------------------------- /Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d897d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d897d -------------------------------------------------------------------------------- /Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d897e: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d897e -------------------------------------------------------------------------------- /Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d897f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d897f -------------------------------------------------------------------------------- /Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d8980: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d8980 -------------------------------------------------------------------------------- /Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d8981: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d8981 -------------------------------------------------------------------------------- /Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d8982: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d8982 -------------------------------------------------------------------------------- /Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d8983: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d8983 -------------------------------------------------------------------------------- /Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d8984: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d8984 -------------------------------------------------------------------------------- /Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d8985: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d8985 -------------------------------------------------------------------------------- /Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d8986: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d8986 -------------------------------------------------------------------------------- /Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d8987: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d8987 -------------------------------------------------------------------------------- /Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d8988: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d8988 -------------------------------------------------------------------------------- /Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d8989: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d8989 -------------------------------------------------------------------------------- /Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d898a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d898a -------------------------------------------------------------------------------- /Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d898b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d898b -------------------------------------------------------------------------------- /Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d898c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d898c -------------------------------------------------------------------------------- /Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d898d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d898d -------------------------------------------------------------------------------- /Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d898e: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d898e -------------------------------------------------------------------------------- /Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d898f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d898f -------------------------------------------------------------------------------- /Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d8990: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d8990 -------------------------------------------------------------------------------- /Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d8991: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d8991 -------------------------------------------------------------------------------- /Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d8992: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d8992 -------------------------------------------------------------------------------- /Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d8993: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d8993 -------------------------------------------------------------------------------- /Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d8994: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d8994 -------------------------------------------------------------------------------- /Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d8995: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d8995 -------------------------------------------------------------------------------- /Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d8996: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d8996 -------------------------------------------------------------------------------- /Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d8997: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d8997 -------------------------------------------------------------------------------- /Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d8998: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d8998 -------------------------------------------------------------------------------- /Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d8999: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d8999 -------------------------------------------------------------------------------- /Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d899a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d899a -------------------------------------------------------------------------------- /Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d899b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d899b -------------------------------------------------------------------------------- /Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d899c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d899c -------------------------------------------------------------------------------- /Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d899d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d899d -------------------------------------------------------------------------------- /Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d899e: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d899e -------------------------------------------------------------------------------- /Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d899f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d899f -------------------------------------------------------------------------------- /Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d89a0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d89a0 -------------------------------------------------------------------------------- /Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d89a1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d89a1 -------------------------------------------------------------------------------- /Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d89a2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d89a2 -------------------------------------------------------------------------------- /Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d89a3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d89a3 -------------------------------------------------------------------------------- /Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d89a4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d89a4 -------------------------------------------------------------------------------- /Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d89a5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d89a5 -------------------------------------------------------------------------------- /Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d89a6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d89a6 -------------------------------------------------------------------------------- /Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d89a7: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d89a7 -------------------------------------------------------------------------------- /Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d89a8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d89a8 -------------------------------------------------------------------------------- /Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d89a9: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d89a9 -------------------------------------------------------------------------------- /Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d89aa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d89aa -------------------------------------------------------------------------------- /Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d89ab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d89ab -------------------------------------------------------------------------------- /Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d89ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d89ac -------------------------------------------------------------------------------- /Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d89ad: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d89ad -------------------------------------------------------------------------------- /Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d89ae: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d89ae -------------------------------------------------------------------------------- /Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d89af: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d89af -------------------------------------------------------------------------------- /Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d89b0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d89b0 -------------------------------------------------------------------------------- /Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d89b1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d89b1 -------------------------------------------------------------------------------- /Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d89b2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d89b2 -------------------------------------------------------------------------------- /Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d89b3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d89b3 -------------------------------------------------------------------------------- /Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d89b4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d89b4 -------------------------------------------------------------------------------- /Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d89b5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d89b5 -------------------------------------------------------------------------------- /Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d89b6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d89b6 -------------------------------------------------------------------------------- /Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d89b7: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/api/winners/56e7403f26a71108192d89b7 -------------------------------------------------------------------------------- /Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/nobel_winners_biopic.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/nobel_winners_biopic.json -------------------------------------------------------------------------------- /Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/winning_country_data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/winning_country_data.json -------------------------------------------------------------------------------- /Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/world-110m.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/world-110m.json -------------------------------------------------------------------------------- /Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/world-country-names-nobel.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/data/world-country-names-nobel.csv -------------------------------------------------------------------------------- /Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/js/nbviz_bar.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/js/nbviz_bar.mjs -------------------------------------------------------------------------------- /Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/js/nbviz_core.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/js/nbviz_core.mjs -------------------------------------------------------------------------------- /Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/js/nbviz_details.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/js/nbviz_details.mjs -------------------------------------------------------------------------------- /Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/js/nbviz_main.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/js/nbviz_main.mjs -------------------------------------------------------------------------------- /Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/js/nbviz_map.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/js/nbviz_map.mjs -------------------------------------------------------------------------------- /Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/js/nbviz_menu.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/js/nbviz_menu.mjs -------------------------------------------------------------------------------- /Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/js/nbviz_time.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/js/nbviz_time.mjs -------------------------------------------------------------------------------- /Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/libs/crossfilter.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/libs/crossfilter.min.js -------------------------------------------------------------------------------- /Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/libs/d3-fetch.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/libs/d3-fetch.min.js -------------------------------------------------------------------------------- /Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/libs/d3.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/libs/d3.min.js -------------------------------------------------------------------------------- /Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/libs/topojson.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_5_Visualizing_your_Data_with_Plotly_and_D3/Ch.15-21_Nobel_Dataviz_with_D3/static/libs/topojson.min.js -------------------------------------------------------------------------------- /Part_5_Visualizing_your_Data_with_Plotly_and_D3/Nobel_dataviz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_5_Visualizing_your_Data_with_Plotly_and_D3/Nobel_dataviz.png -------------------------------------------------------------------------------- /Part_5_Visualizing_your_Data_with_Plotly_and_D3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/Part_5_Visualizing_your_Data_with_Plotly_and_D3/README.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/README.md -------------------------------------------------------------------------------- /data/.~lock.nobel_winners.xlsx#: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/data/.~lock.nobel_winners.xlsx# -------------------------------------------------------------------------------- /data/_.oecd.org: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/data/_.oecd.org -------------------------------------------------------------------------------- /data/google_credentials.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/data/google_credentials.json -------------------------------------------------------------------------------- /data/nobel_prize (copy).db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/data/nobel_prize (copy).db -------------------------------------------------------------------------------- /data/nobel_prize.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/data/nobel_prize.db -------------------------------------------------------------------------------- /data/nobel_winners.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/data/nobel_winners.csv -------------------------------------------------------------------------------- /data/nobel_winners.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/data/nobel_winners.db -------------------------------------------------------------------------------- /data/nobel_winners.db-shm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/data/nobel_winners.db-shm -------------------------------------------------------------------------------- /data/nobel_winners.db-wal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/data/nobel_winners.db-wal -------------------------------------------------------------------------------- /data/nobel_winners.json: -------------------------------------------------------------------------------- 1 | nobel_winners_plus_bornin.json -------------------------------------------------------------------------------- /data/nobel_winners.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/data/nobel_winners.xlsx -------------------------------------------------------------------------------- /data/nobel_winners_all_sheets.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/data/nobel_winners_all_sheets.xlsx -------------------------------------------------------------------------------- /data/nobel_winners_asdf.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/data/nobel_winners_asdf.db -------------------------------------------------------------------------------- /data/nobel_winners_baa.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/data/nobel_winners_baa.db -------------------------------------------------------------------------------- /data/nobel_winners_biopic.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/data/nobel_winners_biopic.json -------------------------------------------------------------------------------- /data/nobel_winners_ch03.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/data/nobel_winners_ch03.db -------------------------------------------------------------------------------- /data/nobel_winners_ch03b.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/data/nobel_winners_ch03b.db -------------------------------------------------------------------------------- /data/nobel_winners_ch03bc.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/data/nobel_winners_ch03bc.db -------------------------------------------------------------------------------- /data/nobel_winners_cleaned.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/data/nobel_winners_cleaned.db -------------------------------------------------------------------------------- /data/nobel_winners_cleaned.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/data/nobel_winners_cleaned.json -------------------------------------------------------------------------------- /data/nobel_winners_cleaned_asdf.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/data/nobel_winners_cleaned_asdf.db -------------------------------------------------------------------------------- /data/nobel_winners_cleaned_test.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/data/nobel_winners_cleaned_test.db -------------------------------------------------------------------------------- /data/nobel_winners_cleaned_test.db-shm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/data/nobel_winners_cleaned_test.db-shm -------------------------------------------------------------------------------- /data/nobel_winners_cleaned_test.db-wal: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/nobel_winners_cleaned_test19.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/data/nobel_winners_cleaned_test19.db -------------------------------------------------------------------------------- /data/nobel_winners_cleaned_test192.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/data/nobel_winners_cleaned_test192.db -------------------------------------------------------------------------------- /data/nobel_winners_dirty.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/data/nobel_winners_dirty.json -------------------------------------------------------------------------------- /data/nobel_winners_foo.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/data/nobel_winners_foo.db -------------------------------------------------------------------------------- /data/nobel_winners_food.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/data/nobel_winners_food.db -------------------------------------------------------------------------------- /data/nobel_winners_plus_bornin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/data/nobel_winners_plus_bornin.json -------------------------------------------------------------------------------- /data/nobel_winners_sheet1.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/data/nobel_winners_sheet1.xlsx -------------------------------------------------------------------------------- /data/oecd_cert_file.cert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/data/oecd_cert_file.cert -------------------------------------------------------------------------------- /data/scrapy_nwinners_minibio.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/data/scrapy_nwinners_minibio.json -------------------------------------------------------------------------------- /data/v2/nobel_winners_clean_wbi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/data/v2/nobel_winners_clean_wbi.json -------------------------------------------------------------------------------- /data/v2/nobel_winners_cleaned.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/data/v2/nobel_winners_cleaned.json -------------------------------------------------------------------------------- /data/v2/nobel_winners_cleaned_wbi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/data/v2/nobel_winners_cleaned_wbi.json -------------------------------------------------------------------------------- /data/winning_country_data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/data/winning_country_data.json -------------------------------------------------------------------------------- /data/world_country_data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/data/world_country_data.json -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyrand/dataviz-with-python-and-js-ed-2/HEAD/requirements.txt --------------------------------------------------------------------------------