add test data to project

This commit is contained in:
Jakub Miazek 2022-06-05 19:56:55 +02:00
parent 38ac92e95a
commit 5a69a44aa0
4 changed files with 1018 additions and 0 deletions

View File

@ -57,3 +57,7 @@ format: ## Format project code.
slim-build: ## with power of docker-slim build smaller and safer images
docker-slim build --compose-file docker-compose.yml --target-compose-svc app --dep-include-target-compose-svc-deps true --http-probe-exec app fastapi-sqlalchemy-asyncpg_app:latest
.PHONY: feed_db
feed_db: ## create database objects and insert data
docker-compose exec db psql devdb user -f /home/gx/code/shakespeare_work.sql | true
docker-compose exec db psql devdb user -f /home/gx/code/shakespeare_chapter.sql | true

View File

@ -3,3 +3,8 @@ FROM postgres:14-alpine
# run create.sql on init
ADD create.sql /docker-entrypoint-initdb.d
WORKDIR /home/gx/code
COPY shakespeare_chapter.sql /home/gx/code/shakespeare_chapter.sql
COPY shakespeare_work.sql /home/gx/code/shakespeare_work.sql

965
db/shakespeare_chapter.sql Normal file
View File

@ -0,0 +1,965 @@
insert into shakespeare.chapter (id, work_id, section_number, chapter_number, description)
values (18934, 'henry5', 0, 1, 'Prologue.'),
(19544, 'tamingshrew', 4, 5, 'A public road'),
(18704, '12night', 1, 1, 'DUKE ORSINO''s palace.'),
(18705, '12night', 1, 2, 'The sea-coast.'),
(18706, '12night', 1, 3, 'OLIVIA''S house.'),
(18707, '12night', 1, 4, 'DUKE ORSINO''s palace.'),
(18708, '12night', 1, 5, 'OLIVIA''S house.'),
(18709, '12night', 2, 1, 'The sea-coast.'),
(18710, '12night', 2, 2, 'A street.'),
(18711, '12night', 2, 3, 'OLIVIA''s house.'),
(18712, '12night', 2, 4, 'DUKE ORSINO''s palace.'),
(18713, '12night', 2, 5, 'OLIVIA''s garden.'),
(18714, '12night', 3, 1, 'OLIVIA''s garden.'),
(18715, '12night', 3, 2, 'OLIVIA''s house.'),
(18716, '12night', 3, 3, 'A street.'),
(18717, '12night', 3, 4, 'OLIVIA''s garden.'),
(18718, '12night', 4, 1, 'Before OLIVIA''s house.'),
(18719, '12night', 4, 2, 'OLIVIA''s house.'),
(18720, '12night', 4, 3, 'OLIVIA''s garden.'),
(18721, '12night', 5, 1, 'Before OLIVIA''s house.'),
(18722, 'allswell', 1, 1, 'Rousillon. The COUNT''s palace.'),
(18723, 'allswell', 1, 2, 'Paris. The KING''s palace.'),
(18724, 'allswell', 1, 3, 'Rousillon. The COUNT''s palace.'),
(18725, 'allswell', 2, 1, 'Paris. The KING''s palace.'),
(18726, 'allswell', 2, 2, 'Rousillon. The COUNT''s palace.'),
(18727, 'allswell', 2, 3, 'Paris. The KING''s palace.'),
(18728, 'allswell', 2, 4, 'Paris. The KING''s palace.'),
(18729, 'allswell', 2, 5, 'Paris. The KING''s palace.'),
(18730, 'allswell', 3, 1, 'Florence. The DUKE''s palace.'),
(18731, 'allswell', 3, 2, 'Rousillon. The COUNT''s palace.'),
(18732, 'allswell', 3, 3, 'Florence. Before the DUKE''s palace.'),
(18733, 'allswell', 3, 4, 'Rousillon. The COUNT''s palace.'),
(18734, 'allswell', 3, 5, 'Florence. Without the walls. A tucket afar off.'),
(18735, 'allswell', 3, 6, 'Camp before Florence.'),
(18736, 'allswell', 3, 7, 'Florence. The Widow''s house.'),
(18737, 'allswell', 4, 1, 'Without the Florentine camp.'),
(18738, 'allswell', 4, 2, 'Florence. The Widow''s house.'),
(18739, 'allswell', 4, 3, 'The Florentine camp.'),
(18740, 'allswell', 4, 4, 'Florence. The Widow''s house.'),
(18741, 'allswell', 4, 5, 'Rousillon. The COUNT''s palace.'),
(18742, 'allswell', 5, 1, 'Marseilles. A street.'),
(18743, 'allswell', 5, 2, 'Rousillon. Before the COUNT''s palace.'),
(18744, 'allswell', 5, 3, 'Rousillon. The COUNT''s palace.'),
(18745, 'antonycleo', 1, 1, 'Alexandria. A room in CLEOPATRA''s palace.'),
(18746, 'antonycleo', 1, 2, 'The same. Another room.'),
(18747, 'antonycleo', 1, 3, 'The same. Another room.'),
(18748, 'antonycleo', 1, 4, 'Rome. OCTAVIUS CAESAR''s house.'),
(18749, 'antonycleo', 1, 5, 'Alexandria. CLEOPATRA''s palace.'),
(18750, 'antonycleo', 2, 1, 'Messina. POMPEY''s house.'),
(18751, 'antonycleo', 2, 2, 'Rome. The house of LEPIDUS.'),
(18752, 'antonycleo', 2, 3, 'The same. OCTAVIUS CAESAR''s house.'),
(18753, 'antonycleo', 2, 4, 'The same. A street.'),
(18754, 'antonycleo', 2, 5, 'Alexandria. CLEOPATRA''s palace.'),
(18755, 'antonycleo', 2, 6, 'Near Misenum.'),
(18756, 'antonycleo', 2, 7, 'On board POMPEY''s galley, off Misenum.'),
(18757, 'antonycleo', 3, 1, 'A plain in Syria.'),
(18758, 'antonycleo', 3, 2, 'Rome. An ante-chamber in OCTAVIUS CAESAR''s house.'),
(18759, 'antonycleo', 3, 3, 'Alexandria. CLEOPATRA''s palace.'),
(18760, 'antonycleo', 3, 4, 'Athens. A room in MARK ANTONY''s house.'),
(18761, 'antonycleo', 3, 5, 'The same. Another room.'),
(18762, 'antonycleo', 3, 6, 'Rome. OCTAVIUS CAESAR''s house.'),
(18763, 'antonycleo', 3, 7, 'Near Actium. MARK ANTONY''s camp.'),
(18764, 'antonycleo', 3, 8, 'A plain near Actium.'),
(18765, 'antonycleo', 3, 9, 'Another part of the plain.'),
(18766, 'antonycleo', 3, 10, 'Another part of the plain.
'),
(18767, 'antonycleo', 3, 11, 'Alexandria. CLEOPATRA''s palace.
'),
(18768, 'antonycleo', 3, 12, 'Egypt. OCTAVIUS CAESAR''s camp.
'),
(18769, 'antonycleo', 3, 13, 'Alexandria. CLEOPATRA''s palace.
'),
(18770, 'antonycleo', 4, 1, 'Before Alexandria. OCTAVIUS CAESAR''s camp.'),
(18771, 'antonycleo', 4, 2, 'Alexandria. CLEOPATRA''s palace.'),
(18772, 'antonycleo', 4, 3, 'The same. Before the palace.'),
(18773, 'antonycleo', 4, 4, 'The same. A room in the palace.'),
(18774, 'antonycleo', 4, 5, 'Alexandria. MARK ANTONY''s camp.'),
(18775, 'antonycleo', 4, 6, 'Alexandria. OCTAVIUS CAESAR''s camp.'),
(18776, 'antonycleo', 4, 7, 'Field of battle between the camps.'),
(19491, 'sonnets', 1, 113, ''),
(18777, 'antonycleo', 4, 8, 'Under the walls of Alexandria.'),
(18778, 'antonycleo', 4, 9, 'OCTAVIUS CAESAR''s camp.'),
(18779, 'antonycleo', 4, 10, 'Between the two camps.
'),
(18780, 'antonycleo', 4, 11, 'Another part of the same.
'),
(18781, 'antonycleo', 4, 12, 'Another part of the same.
'),
(18782, 'antonycleo', 4, 13, 'Alexandria. Cleopatra''s palace.
'),
(18783, 'antonycleo', 4, 14, 'The same. Another room.
'),
(18784, 'antonycleo', 4, 15, 'The same. A monument.
'),
(18785, 'antonycleo', 5, 1, 'Alexandria. OCTAVIUS CAESAR''s camp.'),
(18786, 'antonycleo', 5, 2, 'Alexandria. A room in the monument.'),
(18787, 'asyoulikeit', 1, 1, 'Orchard of OLIVER''S house'),
(18788, 'asyoulikeit', 1, 2, 'A lawn before the DUKE''S palace'),
(18789, 'asyoulikeit', 1, 3, 'The DUKE''s palace'),
(18790, 'asyoulikeit', 2, 1, 'The Forest of Arden'),
(18791, 'asyoulikeit', 2, 2, 'The DUKE''S palace'),
(18792, 'asyoulikeit', 2, 3, 'Before OLIVER''S house'),
(18793, 'asyoulikeit', 2, 4, 'The Forest of Arden'),
(18794, 'asyoulikeit', 2, 5, 'Another part of the forest'),
(18795, 'asyoulikeit', 2, 6, 'The forest'),
(18796, 'asyoulikeit', 2, 7, 'The forest'),
(18797, 'asyoulikeit', 3, 1, 'The palace'),
(18798, 'asyoulikeit', 3, 2, 'The forest'),
(18799, 'asyoulikeit', 3, 3, 'The forest'),
(18800, 'asyoulikeit', 3, 4, 'The forest'),
(18801, 'asyoulikeit', 3, 5, 'Another part of the forest'),
(18802, 'asyoulikeit', 4, 1, 'The forest'),
(18803, 'asyoulikeit', 4, 2, 'The forest'),
(18804, 'asyoulikeit', 4, 3, 'The forest'),
(18805, 'asyoulikeit', 5, 1, 'The forest'),
(18806, 'asyoulikeit', 5, 2, 'The forest'),
(18807, 'asyoulikeit', 5, 3, 'The forest'),
(18808, 'asyoulikeit', 5, 4, 'The forest'),
(18809, 'comedyerrors', 1, 1, 'A hall in DUKE SOLINUS''S palace.'),
(18810, 'comedyerrors', 1, 2, 'The Mart.'),
(18811, 'comedyerrors', 2, 1, 'The house of ANTIPHOLUS of Ephesus.'),
(18812, 'comedyerrors', 2, 2, 'A public place.'),
(18813, 'comedyerrors', 3, 1, 'Before the house of ANTIPHOLUS of Ephesus.'),
(18814, 'comedyerrors', 3, 2, 'The same.'),
(18815, 'comedyerrors', 4, 1, 'A public place.'),
(18816, 'comedyerrors', 4, 2, 'The house of ANTIPHOLUS of Ephesus.'),
(18817, 'comedyerrors', 4, 3, 'A public place.'),
(18818, 'comedyerrors', 4, 4, 'A street.'),
(18819, 'comedyerrors', 5, 1, 'A street before a Priory.'),
(18820, 'coriolanus', 1, 1, 'Rome. A street.'),
(18821, 'coriolanus', 1, 2, 'Corioli. The Senate-house.'),
(18822, 'coriolanus', 1, 3, 'Rome. A room in CORIOLANUS'' house.'),
(18823, 'coriolanus', 1, 4, 'Before Corioli.'),
(18824, 'coriolanus', 1, 5, 'Corioli. A street.'),
(18825, 'coriolanus', 1, 6, 'Near the camp of Cominius.'),
(18826, 'coriolanus', 1, 7, 'The gates of Corioli.'),
(18827, 'coriolanus', 1, 8, 'A field of battle.'),
(18828, 'coriolanus', 1, 9, 'The Roman camp.'),
(18829, 'coriolanus', 1, 10, 'The camp of the Volsces.
'),
(18830, 'coriolanus', 2, 1, 'Rome. A public place.'),
(18831, 'coriolanus', 2, 2, 'The same. The Capitol.'),
(18832, 'coriolanus', 2, 3, 'The same. The Forum.'),
(18833, 'coriolanus', 3, 1, 'Rome. A street.'),
(18834, 'coriolanus', 3, 2, 'A room in CORIOLANUS''S house.'),
(18835, 'coriolanus', 3, 3, 'The same. The Forum.'),
(18836, 'coriolanus', 4, 2, 'The same. A street near the gate.'),
(18837, 'coriolanus', 4, 3, 'A highway between Rome and Antium.'),
(18838, 'coriolanus', 4, 4, 'Antium. Before Aufidius''s house.'),
(18839, 'coriolanus', 4, 5, 'The same. A hall in Aufidius''s house.'),
(18840, 'coriolanus', 4, 6, 'Rome. A public place.'),
(18841, 'coriolanus', 4, 7, 'A camp, at a small distance from Rome.'),
(18842, 'coriolanus', 5, 1, 'Rome. A public place.'),
(18843, 'coriolanus', 5, 2, 'Entrance of the Volscian camp before Rome.'),
(18844, 'coriolanus', 5, 3, 'The tent of Coriolanus.'),
(18845, 'coriolanus', 5, 4, 'Rome. A public place.'),
(18846, 'coriolanus', 5, 5, 'The same. A street near the gate.'),
(18847, 'coriolanus', 5, 6, 'Antium. A public place.'),
(18848, 'cymbeline', 1, 1, 'Britain. The garden of Cymbeline''s palace.'),
(18849, 'cymbeline', 1, 2, 'The same. A public place.'),
(18850, 'cymbeline', 1, 3, 'A room in Cymbeline''s palace.'),
(18851, 'cymbeline', 1, 4, 'Rome. Philario''s house.'),
(18852, 'cymbeline', 1, 5, 'Britain. A room in Cymbeline''s palace.'),
(18853, 'cymbeline', 1, 6, 'The same. Another room in the palace.'),
(18854, 'cymbeline', 2, 1, 'Britain. Before Cymbeline''s palace.'),
(18855, 'cymbeline', 2, 2, 'Imogen''s bedchamber in Cymbeline''s palace:'),
(18856, 'cymbeline', 2, 3, 'An ante-chamber adjoining Imogen''s apartments.'),
(18857, 'cymbeline', 2, 4, 'Rome. Philario''s house.'),
(18858, 'cymbeline', 2, 5, 'Another room in Philario''s house.'),
(18859, 'cymbeline', 3, 1, 'Britain. A hall in Cymbeline''s palace.'),
(18860, 'cymbeline', 3, 2, 'Another room in the palace.'),
(18861, 'cymbeline', 3, 3, 'Wales: a mountainous country with a cave.'),
(18862, 'cymbeline', 3, 4, 'Country near Milford-Haven.'),
(18863, 'cymbeline', 3, 5, 'A room in Cymbeline''s palace.'),
(18864, 'cymbeline', 3, 6, 'Wales. Before the cave of Belarius.'),
(18865, 'cymbeline', 3, 7, 'Rome. A public place.'),
(18866, 'cymbeline', 4, 1, 'Wales: near the cave of Belarius.'),
(18867, 'cymbeline', 4, 2, 'Before the cave of Belarius.'),
(18868, 'cymbeline', 4, 3, 'A room in Cymbeline''s palace.'),
(18869, 'cymbeline', 4, 4, 'Wales: before the cave of Belarius.'),
(18870, 'cymbeline', 5, 1, 'Britain. The Roman camp.'),
(18871, 'cymbeline', 5, 2, 'Field of battle between the British and Roman camps.'),
(18872, 'cymbeline', 5, 3, 'Another part of the field.'),
(18873, 'cymbeline', 5, 4, 'A British prison.'),
(18874, 'cymbeline', 5, 5, 'Cymbeline''s tent.'),
(18875, 'hamlet', 1, 1, 'Elsinore. A platform before the Castle.'),
(18876, 'hamlet', 1, 2, 'Elsinore. A room of state in the Castle.'),
(18877, 'hamlet', 1, 3, 'Elsinore. A room in the house of Polonius.'),
(18878, 'hamlet', 1, 4, 'Elsinore. The platform before the Castle.'),
(18879, 'hamlet', 1, 5, 'Elsinore. The Castle. Another part of the fortifications.'),
(18880, 'hamlet', 2, 1, 'Elsinore. A room in the house of Polonius.'),
(18881, 'hamlet', 2, 2, 'Elsinore. A room in the Castle.'),
(18882, 'hamlet', 3, 1, 'Elsinore. A room in the Castle.'),
(18883, 'hamlet', 3, 2, 'Elsinore. hall in the Castle.'),
(18884, 'hamlet', 3, 3, 'A room in the Castle.'),
(18885, 'hamlet', 3, 4, 'The Queen''s closet.'),
(18886, 'hamlet', 4, 1, 'Elsinore. A room in the Castle.'),
(18887, 'hamlet', 4, 2, 'Elsinore. A passage in the Castle.'),
(18888, 'hamlet', 4, 3, 'Elsinore. A room in the Castle.'),
(18889, 'hamlet', 4, 4, 'Near Elsinore.'),
(18890, 'hamlet', 4, 5, 'Elsinore. A room in the Castle.'),
(18891, 'hamlet', 4, 6, 'Elsinore. Another room in the Castle.'),
(18892, 'hamlet', 4, 7, 'Elsinore. Another room in the Castle.'),
(18893, 'hamlet', 5, 1, 'Elsinore. A churchyard.'),
(18894, 'hamlet', 5, 2, 'Elsinore. A hall in the Castle.'),
(18895, 'henry4p1', 1, 1, 'London. The palace.'),
(18896, 'henry4p1', 1, 2, 'London. An apartment of the Prince''s.'),
(18897, 'henry4p1', 1, 3, 'London. The palace.'),
(18898, 'henry4p1', 2, 1, 'Rochester. An inn yard.'),
(18899, 'henry4p1', 2, 2, 'The highway, near Gadshill.'),
(18900, 'henry4p1', 2, 3, 'Warkworth castle'),
(18901, 'henry4p1', 2, 4, 'The Boar''s-Head Tavern, Eastcheap.'),
(18902, 'henry4p1', 3, 1, 'Bangor. The Archdeacon''s house.'),
(18903, 'henry4p1', 3, 2, 'London. The palace.'),
(18904, 'henry4p1', 3, 3, 'Eastcheap. The Boar''s-Head Tavern.'),
(18905, 'henry4p1', 4, 1, 'The rebel camp near Shrewsbury.'),
(18906, 'henry4p1', 4, 2, 'A public road near Coventry.'),
(18907, 'henry4p1', 4, 3, 'The rebel camp near Shrewsbury.'),
(18908, 'henry4p1', 4, 4, 'York. The ARCHBISHOP''S palace.'),
(18909, 'henry4p1', 5, 1, 'KING HENRY IV''s camp near Shrewsbury.'),
(18910, 'henry4p1', 5, 2, 'The rebel camp.'),
(18911, 'henry4p1', 5, 3, 'Plain between the camps.'),
(18912, 'henry4p1', 5, 4, 'Another part of the field.'),
(18913, 'henry4p1', 5, 5, 'Another part of the field.'),
(18914, 'henry4p2', 0, 1, 'Warkworth. Before NORTHUMBERLAND''S Castle'),
(18915, 'henry4p2', 1, 1, 'Warkworth. Before NORTHUMBERLAND''S Castle'),
(18916, 'henry4p2', 1, 2, 'London. A street'),
(18917, 'henry4p2', 1, 3, 'York. The ARCHBISHOP''S palace'),
(18918, 'henry4p2', 2, 1, 'London. A street'),
(18919, 'henry4p2', 2, 2, 'London. Another street'),
(18920, 'henry4p2', 2, 3, 'Warkworth. Before the castle'),
(18921, 'henry4p2', 2, 4, 'London. The Boar''s Head Tavern in Eastcheap'),
(18922, 'henry4p2', 3, 1, 'Westminster. The palace'),
(18923, 'henry4p2', 3, 2, 'Gloucestershire. Before Justice, SHALLOW''S house'),
(18924, 'henry4p2', 4, 1, 'Yorkshire. Within the Forest of Gaultree'),
(18925, 'henry4p2', 4, 2, 'Another part of the forest'),
(18926, 'henry4p2', 4, 3, 'Another part of the forest'),
(18927, 'henry4p2', 4, 4, 'Westminster. The Jerusalem Chamber'),
(18928, 'henry4p2', 4, 5, 'Westminster. Another chamber'),
(18929, 'henry4p2', 5, 1, 'Gloucestershire. SHALLOW''S house'),
(18930, 'henry4p2', 5, 2, 'Westminster. The palace'),
(18931, 'henry4p2', 5, 3, 'Gloucestershire. SHALLOW''S orchard'),
(18932, 'henry4p2', 5, 4, 'London. A street'),
(18933, 'henry4p2', 5, 5, 'Westminster. Near the Abbey'),
(18935, 'henry5', 1, 1, 'London. An ante-chamber in the KING''S palace.'),
(18936, 'henry5', 1, 2, 'The same. The Presence chamber.'),
(18937, 'henry5', 2, 0, 'Prologue.'),
(18938, 'henry5', 2, 1, 'London. A street.'),
(18939, 'henry5', 2, 2, 'Southampton. A council-chamber.'),
(18940, 'henry5', 2, 3, 'London. Before a tavern.'),
(18941, 'henry5', 2, 4, 'France. The KING''S palace.'),
(18942, 'henry5', 3, 0, 'Prologue.'),
(18943, 'henry5', 3, 1, 'France. Before Harfleur.'),
(18944, 'henry5', 3, 2, 'The same.'),
(18945, 'henry5', 3, 3, 'The same. Before the gates.'),
(18946, 'henry5', 3, 4, 'The FRENCH KING''s palace.'),
(18947, 'henry5', 3, 5, 'The same.'),
(18948, 'henry5', 3, 6, 'The English camp in Picardy.'),
(18949, 'henry5', 3, 7, 'The French camp, near Agincourt:'),
(18950, 'henry5', 4, 0, 'Prologue.'),
(18951, 'henry5', 4, 1, 'The English camp at Agincourt.'),
(18952, 'henry5', 4, 2, 'The French camp.'),
(18953, 'henry5', 4, 3, 'The English camp.'),
(18954, 'henry5', 4, 4, 'The field of battle.'),
(18955, 'henry5', 4, 5, 'Another part of the field.'),
(18956, 'henry5', 4, 6, 'Another part of the field.'),
(18957, 'henry5', 4, 7, 'Another part of the field.'),
(18958, 'henry5', 4, 8, 'Before KING HENRY''S pavilion.'),
(18959, 'henry5', 5, 0, 'Prologue.'),
(18960, 'henry5', 5, 1, 'France. The English camp.'),
(18961, 'henry5', 5, 2, 'France. A royal palace.'),
(18962, 'henry6p1', 1, 1, 'Westminster Abbey.'),
(18963, 'henry6p1', 1, 2, 'France. Before Orleans.'),
(18964, 'henry6p1', 1, 3, 'London. Before the Tower.'),
(18965, 'henry6p1', 1, 4, 'Orleans.'),
(18966, 'henry6p1', 1, 5, 'The same.'),
(18967, 'henry6p1', 1, 6, 'The same.'),
(18968, 'henry6p1', 2, 1, 'Before Orleans.'),
(18969, 'henry6p1', 2, 2, 'Orleans. Within the town.'),
(18970, 'henry6p1', 2, 3, 'Auvergne. The COUNTESS''s castle.'),
(18971, 'henry6p1', 2, 4, 'London. The Temple-garden.'),
(18972, 'henry6p1', 2, 5, 'The Tower of London.'),
(18973, 'henry6p1', 3, 1, 'London. The Parliament-house.'),
(18974, 'henry6p1', 3, 2, 'France. Before Rouen.'),
(18975, 'henry6p1', 3, 3, 'The plains near Rouen.'),
(18976, 'henry6p1', 3, 4, 'Paris. The palace.'),
(18977, 'henry6p1', 4, 1, 'Paris. A hall of state.'),
(18978, 'henry6p1', 4, 2, 'Before Bourdeaux.'),
(18979, 'henry6p1', 4, 3, 'Plains in Gascony.'),
(18980, 'henry6p1', 4, 4, 'Other plains in Gascony.'),
(18981, 'henry6p1', 4, 5, 'The English camp near Bourdeaux.'),
(18982, 'henry6p1', 4, 6, 'A field of battle.'),
(18983, 'henry6p1', 4, 7, 'Another part of the field.'),
(18984, 'henry6p1', 5, 1, 'London. The palace.'),
(18985, 'henry6p1', 5, 2, 'France. Plains in Anjou.'),
(18986, 'henry6p1', 5, 3, 'Before Angiers.'),
(18987, 'henry6p1', 5, 4, 'Camp of the YORK in Anjou.'),
(18988, 'henry6p1', 5, 5, 'London. The palace.'),
(18989, 'henry6p2', 1, 1, 'London. The palace.'),
(18990, 'henry6p2', 1, 2, 'GLOUCESTER''S house.'),
(18991, 'henry6p2', 1, 3, 'The palace.'),
(18992, 'henry6p2', 1, 4, 'GLOUCESTER''s garden.'),
(18993, 'henry6p2', 2, 1, 'Saint Alban''s.'),
(18994, 'henry6p2', 2, 2, 'London. YORK''S garden.'),
(18995, 'henry6p2', 2, 3, 'A hall of justice.'),
(18996, 'henry6p2', 2, 4, 'A street.'),
(18997, 'henry6p2', 3, 1, 'The Abbey at Bury St. Edmund''s.'),
(18998, 'henry6p2', 3, 2, 'Bury St. Edmund''s. A room of state.'),
(18999, 'henry6p2', 3, 3, 'A bedchamber.'),
(19000, 'henry6p2', 4, 1, 'The coast of Kent.'),
(19001, 'henry6p2', 4, 2, 'Blackheath.'),
(19002, 'henry6p2', 4, 3, 'Another part of Blackheath.'),
(19003, 'henry6p2', 4, 4, 'London. The palace.'),
(19004, 'henry6p2', 4, 5, 'London. The Tower.'),
(19005, 'henry6p2', 4, 6, 'London. Cannon Street.'),
(19006, 'henry6p2', 4, 7, 'London. Smithfield.'),
(19007, 'henry6p2', 4, 8, 'Southwark.'),
(19008, 'henry6p2', 4, 9, 'Kenilworth Castle.'),
(19009, 'henry6p2', 4, 10, 'Kent. IDEN''s garden.
'),
(19010, 'henry6p2', 5, 1, 'Fields between Dartford and Blackheath.'),
(19011, 'henry6p2', 5, 2, 'Saint Alban''s.'),
(19012, 'henry6p2', 5, 3, 'Fields near St. Alban''s.'),
(19013, 'henry6p3', 1, 1, 'London. The Parliament-house.'),
(19014, 'henry6p3', 1, 2, 'Sandal Castle.'),
(19015, 'henry6p3', 1, 3, 'Field of battle betwixt Sandal Castle and Wakefield.'),
(19016, 'henry6p3', 1, 4, 'Another part of the field.'),
(19017, 'henry6p3', 2, 1, 'A plain near Mortimer''s Cross in Herefordshire.'),
(19018, 'henry6p3', 2, 2, 'Before York.'),
(19019, 'henry6p3', 2, 3, 'A field of battle between Towton and Saxton, in'),
(19020, 'henry6p3', 2, 4, 'Another part of the field.'),
(19021, 'henry6p3', 2, 5, 'Another part of the field.'),
(19022, 'henry6p3', 2, 6, 'Another part of the field.'),
(19023, 'henry6p3', 3, 1, 'A forest in the north of England.'),
(19024, 'henry6p3', 3, 2, 'London. The palace.'),
(19025, 'henry6p3', 3, 3, 'France. KING LEWIS XI''s palace.'),
(19026, 'henry6p3', 4, 1, 'London. The palace.'),
(19027, 'henry6p3', 4, 2, 'A plain in Warwickshire.'),
(19028, 'henry6p3', 4, 3, 'Edward''s camp, near Warwick.'),
(19029, 'henry6p3', 4, 4, 'London. The palace.'),
(19030, 'henry6p3', 4, 5, 'A park near Middleham Castle In Yorkshire.'),
(19031, 'henry6p3', 4, 6, 'London. The Tower.'),
(19032, 'henry6p3', 4, 7, 'Before York.'),
(19033, 'henry6p3', 4, 8, 'London. The palace.'),
(19034, 'henry6p3', 5, 1, 'Coventry.'),
(19035, 'henry6p3', 5, 2, 'A field of battle near Barnet.'),
(19036, 'henry6p3', 5, 3, 'Another part of the field.'),
(19037, 'henry6p3', 5, 4, 'Plains near Tewksbury.'),
(19038, 'henry6p3', 5, 5, 'Another part of the field.'),
(19039, 'henry6p3', 5, 6, 'London. The Tower.'),
(19040, 'henry6p3', 5, 7, 'London. The palace.'),
(19041, 'henry8', 1, 0, 'Prologue.'),
(19042, 'henry8', 1, 1, 'London. An ante-chamber in the palace.'),
(19043, 'henry8', 1, 2, 'The same. The council-chamber.'),
(19044, 'henry8', 1, 3, 'An ante-chamber in the palace.'),
(19045, 'henry8', 1, 4, 'A Hall in York Place.'),
(19046, 'henry8', 2, 1, 'Westminster. A street.'),
(19047, 'henry8', 2, 2, 'An ante-chamber in the palace.'),
(19048, 'henry8', 2, 3, 'An ante-chamber of the QUEEN''S apartments.'),
(19049, 'henry8', 2, 4, 'A hall in Black-Friars.'),
(19050, 'henry8', 3, 1, 'London. QUEEN KATHARINE''s apartments.'),
(19051, 'henry8', 3, 2, 'Ante-chamber to KING HENRY VIII''s apartment.'),
(19052, 'henry8', 4, 1, 'A street in Westminster.'),
(19053, 'henry8', 4, 2, 'Kimbolton.'),
(19054, 'henry8', 5, 1, 'London. A gallery in the palace.'),
(19055, 'henry8', 5, 2, 'Before the council-chamber. Pursuivants, Pages, &c.'),
(19056, 'henry8', 5, 3, 'The Council-Chamber.'),
(19057, 'henry8', 5, 4, 'The palace yard.'),
(19058, 'henry8', 5, 5, 'The palace.'),
(19059, 'juliuscaesar', 1, 1, 'Rome. A street.'),
(19060, 'juliuscaesar', 1, 2, 'A public place.'),
(19061, 'juliuscaesar', 1, 3, 'The same. A street.'),
(19062, 'juliuscaesar', 2, 1, 'Rome. BRUTUS''s orchard.'),
(19063, 'juliuscaesar', 2, 2, 'CAESAR''s house.'),
(19064, 'juliuscaesar', 2, 3, 'A street near the Capitol.'),
(19065, 'juliuscaesar', 2, 4, 'Another part of the same street, before the house of BRUTUS.'),
(19066, 'juliuscaesar', 3, 1, 'Rome. Before the Capitol; the Senate sitting above.'),
(19067, 'juliuscaesar', 3, 2, 'The Forum.'),
(19068, 'juliuscaesar', 3, 3, 'A street.'),
(19069, 'juliuscaesar', 4, 1, 'A house in Rome.'),
(19070, 'juliuscaesar', 4, 2, 'Camp near Sardis. Before BRUTUS''s tent.'),
(19071, 'juliuscaesar', 4, 3, 'Brutus''s tent.'),
(19072, 'juliuscaesar', 5, 1, 'The plains of Philippi.'),
(19073, 'juliuscaesar', 5, 2, 'The same. The field of battle.'),
(19074, 'juliuscaesar', 5, 3, 'Another part of the field.'),
(19075, 'juliuscaesar', 5, 4, 'Another part of the field.'),
(19076, 'juliuscaesar', 5, 5, 'Another part of the field.'),
(19077, 'kingjohn', 1, 1, 'KING JOHN''S palace.'),
(19078, 'kingjohn', 2, 1, 'France. Before Angiers.'),
(19079, 'kingjohn', 3, 1, 'The French King''s pavilion.'),
(19080, 'kingjohn', 3, 2, 'The same. Plains near Angiers.'),
(19081, 'kingjohn', 3, 3, 'The same.'),
(19082, 'kingjohn', 3, 4, 'The same. KING PHILIP''S tent.'),
(19083, 'kingjohn', 4, 1, 'A room in a castle.'),
(19084, 'kingjohn', 4, 2, 'KING JOHN''S palace.'),
(19085, 'kingjohn', 4, 3, 'Before the castle.'),
(19086, 'kingjohn', 5, 1, 'KING JOHN''S palace.'),
(19087, 'kingjohn', 5, 2, 'LEWIS''s camp at St. Edmundsbury.'),
(19088, 'kingjohn', 5, 3, 'The field of battle.'),
(19089, 'kingjohn', 5, 4, 'Another part of the field.'),
(19090, 'kingjohn', 5, 5, 'The French camp.'),
(19091, 'kingjohn', 5, 6, 'An open place in the neighbourhood of Swinstead Abbey.'),
(19092, 'kingjohn', 5, 7, 'The orchard in Swinstead Abbey.'),
(19093, 'kinglear', 1, 1, 'King Lear''s Palace.'),
(19094, 'kinglear', 1, 2, 'The Earl of Gloucester''s Castle.'),
(19095, 'kinglear', 1, 3, 'The Duke of Albany''s Palace.'),
(19096, 'kinglear', 1, 4, 'The Duke of Albany''s Palace. Enter Kent, [disguised].'),
(19097, 'kinglear', 1, 5, 'Court before the Duke of Albany''s Palace. Enter Lear, Kent, and Fool.'),
(19098, 'kinglear', 2, 1, 'A court within the Castle of the Earl of Gloucester.'),
(19099, 'kinglear', 2, 2, 'Before Gloucester''s Castle. Enter Kent and [Oswald the] Steward, severally.'),
(19100, 'kinglear', 2, 3, 'The open country.'),
(19101, 'kinglear', 2, 4, 'Before Gloucester''s Castle; Kent in the stocks.'),
(19102, 'kinglear', 3, 1, 'A heath. Storm still.'),
(19103, 'kinglear', 3, 2, 'Another part of the heath. Storm still.'),
(19104, 'kinglear', 3, 3, 'Gloucester''s Castle.'),
(19105, 'kinglear', 3, 4, 'The heath. Before a hovel. Storm still.'),
(19106, 'kinglear', 3, 5, 'Gloucester''s Castle.'),
(19107, 'kinglear', 3, 6, 'A farmhouse near Gloucester''s Castle.'),
(19108, 'kinglear', 3, 7, 'Gloucester''s Castle. Enter Cornwall, Regan, Goneril, [Edmund the] Bastard, and Servants.'),
(19109, 'kinglear', 4, 1, 'The heath.'),
(19110, 'kinglear', 4, 2, 'Before the Duke of Albany''s Palace.'),
(19111, 'kinglear', 4, 3, 'The French camp near Dover.'),
(19112, 'kinglear', 4, 4, 'The French camp.'),
(19113, 'kinglear', 4, 5, 'Gloucester''s Castle.'),
(19114, 'kinglear', 4, 6, 'The country near Dover. Enter Gloucester, and Edgar [like a Peasant].'),
(19115, 'kinglear', 4, 7, 'A tent in the French camp.'),
(19116, 'kinglear', 5, 1, 'The British camp near Dover.'),
(19117, 'kinglear', 5, 2, 'A field between the two camps. Alarum within.'),
(19118, 'kinglear', 5, 3, 'The British camp, near Dover.'),
(19119, 'loverscomplaint', 1, 1, 'A Lover''s Complaint.'),
(19120, 'loveslabours', 1, 1, 'The king of Navarre''s park.'),
(19121, 'loveslabours', 1, 2, 'The same.'),
(19122, 'loveslabours', 2, 1, 'The same.'),
(19123, 'loveslabours', 3, 1, 'The same.'),
(19124, 'loveslabours', 4, 1, 'The same.'),
(19125, 'loveslabours', 4, 2, 'The same.'),
(19126, 'loveslabours', 4, 3, 'The same.'),
(19127, 'loveslabours', 5, 1, 'The same.'),
(19128, 'loveslabours', 5, 2, 'The same.'),
(19129, 'macbeth', 1, 1, 'A desert place.'),
(19130, 'macbeth', 1, 2, 'A camp near Forres.'),
(19131, 'macbeth', 1, 3, 'A heath near Forres.'),
(19132, 'macbeth', 1, 4, 'Forres. The palace.'),
(19133, 'macbeth', 1, 5, 'Inverness. Macbeth''s castle.'),
(19134, 'macbeth', 1, 6, 'Before Macbeth''s castle.'),
(19135, 'macbeth', 1, 7, 'Macbeth''s castle.'),
(19136, 'macbeth', 2, 1, 'Court of Macbeth''s castle.'),
(19137, 'macbeth', 2, 2, 'The same.'),
(19138, 'macbeth', 2, 3, 'The same.'),
(19139, 'macbeth', 2, 4, 'Outside Macbeth''s castle.'),
(19140, 'macbeth', 3, 1, 'Forres. The palace.'),
(19141, 'macbeth', 3, 2, 'The palace.'),
(19142, 'macbeth', 3, 3, 'A park near the palace.'),
(19143, 'macbeth', 3, 4, 'The same. Hall in the palace.'),
(19144, 'macbeth', 3, 5, 'A Heath.'),
(19145, 'macbeth', 3, 6, 'Forres. The palace.'),
(19146, 'macbeth', 4, 1, 'A cavern. In the middle, a boiling cauldron.'),
(19147, 'macbeth', 4, 2, 'Fife. Macduff''s castle.'),
(19148, 'macbeth', 4, 3, 'England. Before the King''s palace.'),
(19149, 'macbeth', 5, 1, 'Dunsinane. Ante-room in the castle.'),
(19150, 'macbeth', 5, 2, 'The country near Dunsinane.'),
(19151, 'macbeth', 5, 3, 'Dunsinane. A room in the castle.'),
(19152, 'macbeth', 5, 4, 'Country near Birnam wood.'),
(19153, 'macbeth', 5, 5, 'Dunsinane. Within the castle.'),
(19154, 'macbeth', 5, 6, 'Dunsinane. Before the castle.'),
(19155, 'macbeth', 5, 7, 'Another part of the field.'),
(19156, 'macbeth', 5, 8, 'Another part of the field.'),
(19157, 'measure', 1, 1, 'An apartment in the DUKE''S palace.'),
(19158, 'measure', 1, 2, 'A Street.'),
(19159, 'measure', 1, 3, 'A monastery.'),
(19160, 'measure', 1, 4, 'A nunnery.'),
(19161, 'measure', 2, 1, 'A hall In ANGELO''s house.'),
(19162, 'measure', 2, 2, 'Another room in the same.'),
(19163, 'measure', 2, 3, 'A room in a prison.'),
(19164, 'measure', 2, 4, 'A room in ANGELO''s house.'),
(19165, 'measure', 3, 1, 'A room in the prison.'),
(19166, 'measure', 3, 2, 'The street before the prison.'),
(19167, 'measure', 4, 1, 'The moated grange at ST. LUKE''s.'),
(19168, 'measure', 4, 2, 'A room in the prison.'),
(19169, 'measure', 4, 3, 'Another room in the same.'),
(19170, 'measure', 4, 4, 'A room in ANGELO''s house.'),
(19171, 'measure', 4, 5, 'Fields without the town.'),
(19172, 'measure', 4, 6, 'Street near the city gate.'),
(19173, 'measure', 5, 1, 'The city gate.'),
(19174, 'merchantvenice', 1, 1, 'Venice. A street.'),
(19175, 'merchantvenice', 1, 2, 'Belmont. A room in PORTIA''S house.'),
(19176, 'merchantvenice', 1, 3, 'Venice. A public place.'),
(19177, 'merchantvenice', 2, 1, 'Belmont. A room in PORTIA''S house.'),
(19178, 'merchantvenice', 2, 2, 'Venice. A street.'),
(19179, 'merchantvenice', 2, 3, 'The same. A room in SHYLOCK''S house.'),
(19180, 'merchantvenice', 2, 4, 'The same. A street.'),
(19181, 'merchantvenice', 2, 5, 'The same. Before SHYLOCK''S house.'),
(19182, 'merchantvenice', 2, 6, 'The same.'),
(19183, 'merchantvenice', 2, 7, 'Belmont. A room in PORTIA''S house.'),
(19184, 'merchantvenice', 2, 8, 'Venice. A street.'),
(19185, 'merchantvenice', 2, 9, 'Belmont. A room in PORTIA''S house.'),
(19186, 'merchantvenice', 3, 1, 'Venice. A street.'),
(19187, 'merchantvenice', 3, 2, 'Belmont. A room in PORTIA''S house.'),
(19188, 'merchantvenice', 3, 3, 'Venice. A street.'),
(19189, 'merchantvenice', 3, 4, 'Belmont. A room in PORTIA''S house.'),
(19190, 'merchantvenice', 3, 5, 'The same. A garden.'),
(19191, 'merchantvenice', 4, 1, 'Venice. A court of justice.'),
(19192, 'merchantvenice', 4, 2, 'The same. A street.'),
(19193, 'merchantvenice', 5, 1, 'Belmont. Avenue to PORTIA''S house.'),
(19194, 'merrywives', 1, 1, 'Windsor. Before PAGE''s house.'),
(19195, 'merrywives', 1, 2, 'The same.'),
(19196, 'merrywives', 1, 3, 'A room in the Garter Inn.'),
(19197, 'merrywives', 1, 4, 'A room in DOCTOR CAIUS'' house.'),
(19198, 'merrywives', 2, 1, 'Before PAGE''S house.'),
(19199, 'merrywives', 2, 2, 'A room in the Garter Inn.'),
(19200, 'merrywives', 2, 3, 'A field near Windsor.'),
(19201, 'merrywives', 3, 1, 'A field near Frogmore.'),
(19202, 'merrywives', 3, 2, 'A street.'),
(19203, 'merrywives', 3, 3, 'A room in FORD''S house.'),
(19204, 'merrywives', 3, 4, 'A room in PAGE''S house.'),
(19205, 'merrywives', 3, 5, 'A room in the Garter Inn.'),
(19206, 'merrywives', 4, 1, 'A street.'),
(19207, 'merrywives', 4, 2, 'A room in FORD''S house.'),
(19208, 'merrywives', 4, 3, 'A room in the Garter Inn.'),
(19209, 'merrywives', 4, 4, 'A room in FORD''S house.'),
(19210, 'merrywives', 4, 5, 'A room in the Garter Inn.'),
(19211, 'merrywives', 4, 6, 'Another room in the Garter Inn.'),
(19212, 'merrywives', 5, 1, 'A room in the Garter Inn.'),
(19213, 'merrywives', 5, 2, 'Windsor Park.'),
(19214, 'merrywives', 5, 3, 'A street leading to the Park.'),
(19215, 'merrywives', 5, 4, 'Windsor Park.'),
(19216, 'merrywives', 5, 5, 'Another part of the Park.'),
(19217, 'midsummer', 1, 1, 'Athens. The palace of THESEUS.'),
(19218, 'midsummer', 1, 2, 'Athens. QUINCE''S house.'),
(19219, 'midsummer', 2, 1, 'A wood near Athens.'),
(19220, 'midsummer', 2, 2, 'Another part of the wood.'),
(19221, 'midsummer', 3, 1, 'The wood. TITANIA lying asleep.'),
(19222, 'midsummer', 3, 2, 'Another part of the wood.'),
(19223, 'midsummer', 4, 1, 'The same. LYSANDER, DEMETRIUS, HELENA, and HERMIA'),
(19224, 'midsummer', 4, 2, 'Athens. QUINCE''S house.'),
(19225, 'midsummer', 5, 1, 'Athens. The palace of THESEUS.'),
(19226, 'muchado', 1, 1, 'Before LEONATO''S house.'),
(19227, 'muchado', 1, 2, 'A room in LEONATO''s house.'),
(19228, 'muchado', 1, 3, 'The same.'),
(19229, 'muchado', 2, 1, 'A hall in LEONATO''S house.'),
(19230, 'muchado', 2, 2, 'The same.'),
(19231, 'muchado', 2, 3, 'LEONATO''S orchard.'),
(19232, 'muchado', 3, 1, 'LEONATO''S garden.'),
(19233, 'muchado', 3, 2, 'A room in LEONATO''S house'),
(19234, 'muchado', 3, 3, 'A street.'),
(19235, 'muchado', 3, 4, 'HERO''s apartment.'),
(19236, 'muchado', 3, 5, 'Another room in LEONATO''S house.'),
(19237, 'muchado', 4, 1, 'A church.'),
(19238, 'muchado', 4, 2, 'A prison.'),
(19239, 'muchado', 5, 1, 'Before LEONATO''S house.'),
(19240, 'muchado', 5, 2, 'LEONATO''S garden.'),
(19241, 'muchado', 5, 3, 'A church.'),
(19242, 'muchado', 5, 4, 'A room in LEONATO''S house.'),
(19243, 'othello', 1, 1, 'Venice. A street.'),
(19244, 'othello', 1, 2, 'Another street.'),
(19245, 'othello', 1, 3, 'A council-chamber.'),
(19246, 'othello', 2, 1, 'A Sea-port in Cyprus. An open place near the quay.'),
(19247, 'othello', 2, 2, 'A street.'),
(19248, 'othello', 2, 3, 'A hall in the castle.'),
(19249, 'othello', 3, 1, 'Before the castle.'),
(19250, 'othello', 3, 2, 'A room in the castle.'),
(19251, 'othello', 3, 3, 'The garden of the castle.'),
(19252, 'othello', 3, 4, 'Before the castle.'),
(19253, 'othello', 4, 1, 'Cyprus. Before the castle.'),
(19254, 'othello', 4, 2, 'A room in the castle.'),
(19255, 'othello', 4, 3, 'Another room in the castle.'),
(19256, 'othello', 5, 1, 'Cyprus. A street.'),
(19257, 'othello', 5, 2, 'A bedchamber in the castle: DESDEMONA in bed asleep;'),
(19273, 'passionatepilgrim', 1, 16, 'Sonnet to sundry notes of music
'),
(19274, 'passionatepilgrim', 1, 17, 'Sonnet to sundry notes of music
'),
(19275, 'passionatepilgrim', 1, 18, 'Sonnet to sundry notes of music
'),
(19276, 'passionatepilgrim', 1, 19, 'Sonnet to sundry notes of music
'),
(19277, 'passionatepilgrim', 1, 20, 'Sonnet to sundry notes of music
'),
(19278, 'passionatepilgrim', 1, 21, 'Sonnet to sundry notes of music
'),
(19279, 'pericles', 1, 0, 'Prologue.'),
(19280, 'pericles', 1, 1, 'Antioch. A room in the palace.'),
(19281, 'pericles', 1, 2, 'Tyre. A room in the palace.'),
(19282, 'pericles', 1, 3, 'Tyre. An ante-chamber in the palace.'),
(19283, 'pericles', 1, 4, 'Tarsus. A room in the Governor''s house.'),
(19284, 'pericles', 2, 1, 'Pentapolis. An open place by the sea-side.'),
(19285, 'pericles', 2, 2, 'The same. A public way or platform leading to the'),
(19286, 'pericles', 2, 3, 'The same. A hall of state: a banquet prepared.'),
(19287, 'pericles', 2, 4, 'Tyre. A room in the Governor''s house.'),
(19288, 'pericles', 2, 5, 'Pentapolis. A room in the palace.'),
(19289, 'pericles', 3, 0, 'Chorus.'),
(19290, 'pericles', 3, 1, 'On ship.'),
(19291, 'pericles', 3, 2, 'Ephesus. A room in CERIMON''s house.'),
(19292, 'pericles', 3, 3, 'Tarsus. A room in CLEON''s house.'),
(19293, 'pericles', 3, 4, 'Ephesus. A room in CERIMON''s house.'),
(19294, 'pericles', 4, 0, 'Near the seashore.'),
(19295, 'pericles', 4, 1, 'Tarsus. An open place near the sea-shore.'),
(19296, 'pericles', 4, 2, 'Mytilene. A room in a brothel.'),
(19297, 'pericles', 4, 3, 'Tarsus. A room in CLEON''s house.'),
(19298, 'pericles', 4, 4, 'Chorus.'),
(19299, 'pericles', 4, 5, 'Mytilene. A street before the brothel.'),
(19300, 'pericles', 4, 6, 'The same. A room in the brothel.'),
(19301, 'pericles', 5, 0, 'Chorus.'),
(19302, 'pericles', 5, 1, 'On board PERICLES'' ship, off Mytilene. A close'),
(19303, 'pericles', 5, 2, 'Chorus.'),
(19304, 'pericles', 5, 3, 'The temple of Diana at Ephesus; THAISA standing'),
(19305, 'phoenixturtle', 1, 1, 'The Phoenix and the Turtle'),
(19306, 'rapelucrece', 1, 0, 'Dedication'),
(19307, 'rapelucrece', 1, 1, 'The Argument'),
(19308, 'rapelucrece', 1, 2, 'The Rape of Lucrece'),
(19309, 'richard2', 1, 1, 'London. KING RICHARD II''s palace.'),
(19310, 'richard2', 1, 2, 'The DUKE OF LANCASTER''S palace.'),
(19311, 'richard2', 1, 3, 'The lists at Coventry.'),
(19312, 'richard2', 1, 4, 'The court.'),
(19313, 'richard2', 2, 1, 'Ely House.'),
(19314, 'richard2', 2, 2, 'The palace.'),
(19315, 'richard2', 2, 3, 'Wilds in Gloucestershire.'),
(19316, 'richard2', 2, 4, 'A camp in Wales.'),
(19317, 'richard2', 3, 1, 'Bristol. Before the castle.'),
(19318, 'richard2', 3, 2, 'The coast of Wales. A castle in view.'),
(19319, 'richard2', 3, 3, 'Wales. Before Flint castle.'),
(19320, 'richard2', 3, 4, 'LANGLEY. The DUKE OF YORK''s garden.'),
(19321, 'richard2', 4, 1, 'Westminster Hall.'),
(19406, 'sonnets', 1, 28, ''),
(19322, 'richard2', 5, 1, 'London. A street leading to the Tower.'),
(19323, 'richard2', 5, 2, 'The DUKE OF YORK''s palace.'),
(19324, 'richard2', 5, 3, 'A royal palace.'),
(19325, 'richard2', 5, 4, 'The same.'),
(19326, 'richard2', 5, 5, 'Pomfret castle.'),
(19327, 'richard2', 5, 6, 'Windsor castle.'),
(19328, 'richard3', 1, 1, 'London. A street.'),
(19329, 'richard3', 1, 2, 'The same. Another street.'),
(19330, 'richard3', 1, 3, 'The palace.'),
(19331, 'richard3', 1, 4, 'London. The Tower.'),
(19332, 'richard3', 2, 1, 'London. The palace.'),
(19333, 'richard3', 2, 2, 'The palace.'),
(19334, 'richard3', 2, 3, 'London. A street.'),
(19335, 'richard3', 2, 4, 'London. The palace.'),
(19336, 'richard3', 3, 1, 'London. A street.'),
(19337, 'richard3', 3, 2, 'Before Lord Hastings'' house.'),
(19338, 'richard3', 3, 3, 'Pomfret Castle.'),
(19339, 'richard3', 3, 4, 'The Tower of London.'),
(19340, 'richard3', 3, 5, 'The Tower-walls.'),
(19341, 'richard3', 3, 6, 'The same.'),
(19342, 'richard3', 3, 7, 'Baynard''s Castle.'),
(19343, 'richard3', 4, 1, 'Before the Tower.'),
(19344, 'richard3', 4, 2, 'London. The palace.'),
(19345, 'richard3', 4, 3, 'The same.'),
(19346, 'richard3', 4, 4, 'Before the palace.'),
(19347, 'richard3', 4, 5, 'Lord Derby''s house.'),
(19348, 'richard3', 5, 1, 'Salisbury. An open place.'),
(19349, 'richard3', 5, 2, 'The camp near Tamworth.'),
(19350, 'richard3', 5, 3, 'Bosworth Field.'),
(19351, 'richard3', 5, 4, 'Another part of the field.'),
(19352, 'richard3', 5, 5, 'Another part of the field.'),
(19353, 'romeojuliet', 0, 1, 'Verona: Mantua.'),
(19354, 'romeojuliet', 1, 1, 'Verona. A public place.'),
(19355, 'romeojuliet', 1, 2, 'A street.'),
(19356, 'romeojuliet', 1, 3, 'A room in Capulet''s house.'),
(19357, 'romeojuliet', 1, 4, 'A street.'),
(19358, 'romeojuliet', 1, 5, 'A hall in Capulet''s house.'),
(19359, 'romeojuliet', 2, 0, 'Prologue.'),
(19360, 'romeojuliet', 2, 1, 'A lane by the wall of Capulet''s orchard.'),
(19361, 'romeojuliet', 2, 2, 'Capulet''s orchard.'),
(19362, 'romeojuliet', 2, 3, 'Friar Laurence''s cell.'),
(19363, 'romeojuliet', 2, 4, 'A street.'),
(19364, 'romeojuliet', 2, 5, 'Capulet''s orchard.'),
(19365, 'romeojuliet', 2, 6, 'Friar Laurence''s cell.'),
(19366, 'romeojuliet', 3, 1, 'A public place.'),
(19367, 'romeojuliet', 3, 2, 'Capulet''s orchard.'),
(19368, 'romeojuliet', 3, 3, 'Friar Laurence''s cell.'),
(19369, 'romeojuliet', 3, 4, 'A room in Capulet''s house.'),
(19370, 'romeojuliet', 3, 5, 'Capulet''s orchard.'),
(19371, 'romeojuliet', 4, 1, 'Friar Laurence''s cell.'),
(19372, 'romeojuliet', 4, 2, 'Hall in Capulet''s house.'),
(19373, 'romeojuliet', 4, 3, 'Juliet''s chamber.'),
(19374, 'romeojuliet', 4, 4, 'Hall in Capulet''s house.'),
(19375, 'romeojuliet', 4, 5, 'Juliet''s chamber.'),
(19376, 'romeojuliet', 5, 1, 'Mantua. A street.'),
(19377, 'romeojuliet', 5, 2, 'Friar Laurence''s cell.'),
(19378, 'romeojuliet', 5, 3, 'A churchyard; in it a tomb belonging to the Capulets.'),
(19533, 'tamingshrew', 0, 1, 'Before an alehouse on a heath'),
(19534, 'tamingshrew', 0, 2, 'A bedchamber in the LORD''S house'),
(19535, 'tamingshrew', 1, 1, 'Padua. A public place'),
(19536, 'tamingshrew', 1, 2, 'Padua. Before HORTENSIO''S house'),
(19537, 'tamingshrew', 2, 1, 'Padua. BAPTISTA''S house'),
(19538, 'tamingshrew', 3, 1, 'Padua. BAPTISTA''S house'),
(19539, 'tamingshrew', 3, 2, 'Padua. Before BAPTISTA''So house'),
(19540, 'tamingshrew', 4, 1, 'PETRUCHIO''S country house'),
(19541, 'tamingshrew', 4, 2, 'Padua. Before BAPTISTA''S house'),
(19542, 'tamingshrew', 4, 3, 'PETRUCHIO''S house'),
(19543, 'tamingshrew', 4, 4, 'Padua. Before BAPTISTA''S house'),
(19545, 'tamingshrew', 5, 1, 'Padua. Before LUCENTIO''S house'),
(19546, 'tamingshrew', 5, 2, 'LUCENTIO''S house'),
(19547, 'tempest', 1, 1, 'On a ship at sea: a tempestuous noise'),
(19548, 'tempest', 1, 2, 'The island. Before PROSPERO''S cell.'),
(19549, 'tempest', 2, 1, 'Another part of the island.'),
(19550, 'tempest', 2, 2, 'Another part of the island.'),
(19551, 'tempest', 3, 1, 'Before PROSPERO''S Cell.'),
(19552, 'tempest', 3, 2, 'Another part of the island.'),
(19553, 'tempest', 3, 3, 'Another part of the island.'),
(19554, 'tempest', 4, 1, 'Before PROSPERO''S cell.'),
(19555, 'tempest', 5, 1, 'Before PROSPERO''S cell.'),
(19556, 'timonathens', 1, 1, 'Athens. A hall in Timon''s house.'),
(19557, 'timonathens', 1, 2, 'A banqueting-room in Timon''s house.'),
(19558, 'timonathens', 2, 1, 'A Senator''s house.'),
(19559, 'timonathens', 2, 2, 'The same. A hall in Timon''s house.'),
(19560, 'timonathens', 3, 1, 'A room in Lucullus'' house.'),
(19561, 'timonathens', 3, 2, 'A public place.'),
(19562, 'timonathens', 3, 3, 'A room in Sempronius'' house.'),
(19563, 'timonathens', 3, 4, 'The same. A hall in Timon''s house.'),
(19564, 'timonathens', 3, 5, 'The same. The senate-house. The Senate sitting.'),
(19565, 'timonathens', 3, 6, 'The same. A banqueting-room in Timon''s house.'),
(19566, 'timonathens', 4, 1, 'Without the walls of Athens.'),
(19567, 'timonathens', 4, 2, 'Athens. A room in Timon''s house.'),
(19568, 'timonathens', 4, 3, 'Woods and cave, near the seashore.'),
(19569, 'timonathens', 5, 1, 'The woods. Before Timon''s cave.'),
(19570, 'timonathens', 5, 2, 'Before the walls of Athens.'),
(19571, 'timonathens', 5, 3, 'The woods. Timon''s cave, and a rude tomb seen.'),
(19572, 'timonathens', 5, 4, 'Before the walls of Athens.'),
(19573, 'titus', 1, 1, 'Rome. Before the Capitol.'),
(19574, 'titus', 2, 1, 'Rome. Before the Palace.'),
(19575, 'titus', 2, 2, 'A forest near Rome. Horns and cry of hounds heard.'),
(19576, 'titus', 2, 3, 'A lonely part of the forest.'),
(19577, 'titus', 2, 4, 'Another part of the forest.'),
(19578, 'titus', 3, 1, 'Rome. A street.'),
(19579, 'titus', 3, 2, 'A room in Titus''s house. A banquet set out.'),
(19580, 'titus', 4, 1, 'Rome. Titus''s garden.'),
(19581, 'titus', 4, 2, 'The same. A room in the palace.'),
(19582, 'titus', 4, 3, 'The same. A public place.'),
(19583, 'titus', 4, 4, 'The same. Before the palace.'),
(19584, 'titus', 5, 1, 'Plains near Rome.'),
(19585, 'titus', 5, 2, 'Rome. Before TITUS''s house.'),
(19586, 'titus', 5, 3, 'Court of TITUS''s house. A banquet set out.'),
(19587, 'troilus', 1, 0, 'Prologue.'),
(19588, 'troilus', 1, 1, 'Troy. Before Priam''s palace.'),
(19589, 'troilus', 1, 2, 'The Same. A street.'),
(19590, 'troilus', 1, 3, 'The Grecian camp. Before Agamemnon''s tent.'),
(19591, 'troilus', 2, 1, 'A part of the Grecian camp.'),
(19592, 'troilus', 2, 2, 'Troy. A room in Priam''s palace.'),
(19593, 'troilus', 2, 3, 'The Grecian camp. Before Achilles'' tent.'),
(19594, 'troilus', 3, 1, 'Troy. Priam''s palace.'),
(19595, 'troilus', 3, 2, 'The same. Pandarus'' orchard.'),
(19596, 'troilus', 3, 3, 'The Grecian camp. Before Achilles'' tent.'),
(19597, 'troilus', 4, 1, 'Troy. A street.'),
(19598, 'troilus', 4, 2, 'The same. Court of Pandarus'' house.'),
(19599, 'troilus', 4, 3, 'The same. Street before Pandarus'' house.'),
(19600, 'troilus', 4, 4, 'The same. Pandarus'' house.'),
(19601, 'troilus', 4, 5, 'The Grecian camp. Lists set out.'),
(19602, 'troilus', 5, 1, 'The Grecian camp. Before Achilles'' tent.'),
(19603, 'troilus', 5, 2, 'The same. Before Calchas'' tent.'),
(19604, 'troilus', 5, 3, 'Troy. Before Priam''s palace.'),
(19605, 'troilus', 5, 4, 'Plains between Troy and the Grecian camp.'),
(19606, 'troilus', 5, 5, 'Another part of the plains.'),
(19607, 'troilus', 5, 6, 'Another part of the plains.'),
(19608, 'troilus', 5, 7, 'Another part of the plains.'),
(19609, 'troilus', 5, 8, 'Another part of the plains.'),
(19610, 'troilus', 5, 9, 'Another part of the plains.'),
(19611, 'troilus', 5, 10, 'Another part of the plains.
'),
(19612, 'twogents', 1, 1, 'Verona. An open place.'),
(19613, 'twogents', 1, 2, 'The same. Garden of JULIA''s house.'),
(19614, 'twogents', 1, 3, 'The same. ANTONIO''s house.'),
(19615, 'twogents', 2, 1, 'Milan. The DUKE''s palace.'),
(19616, 'twogents', 2, 2, 'Verona. JULIA''S house.'),
(19617, 'twogents', 2, 3, 'The same. A street.'),
(19618, 'twogents', 2, 4, 'Milan. The DUKE''s palace.'),
(19619, 'twogents', 2, 5, 'The same. A street.'),
(19620, 'twogents', 2, 6, 'The same. The DUKE''S palace.'),
(19621, 'twogents', 2, 7, 'Verona. JULIA''S house.'),
(19622, 'twogents', 3, 1, 'Milan. The DUKE''s palace.'),
(19623, 'twogents', 3, 2, 'The same. The DUKE''s palace.'),
(19624, 'twogents', 4, 1, 'The frontiers of Mantua. A forest.'),
(19625, 'twogents', 4, 2, 'Milan. Outside the DUKE''s palace, under SILVIA''s chamber.'),
(19626, 'twogents', 4, 3, 'The same.'),
(19627, 'twogents', 4, 4, 'The same.'),
(19628, 'twogents', 5, 1, 'Milan. An abbey.'),
(19629, 'twogents', 5, 2, 'The same. The DUKE''s palace.'),
(19630, 'twogents', 5, 3, 'The frontiers of Mantua. The forest.'),
(19631, 'twogents', 5, 4, 'Another part of the forest.'),
(19632, 'venusadonis', 1, 0, 'Dedication.'),
(19633, 'venusadonis', 1, 1, 'Venus and Adonis.'),
(19634, 'winterstale', 1, 1, 'Antechamber in LEONTES'' palace.'),
(19635, 'winterstale', 1, 2, 'A room of state in the same.'),
(19636, 'winterstale', 2, 1, 'A room in LEONTES'' palace.'),
(19637, 'winterstale', 2, 2, 'A prison.'),
(19638, 'winterstale', 2, 3, 'A room in LEONTES'' palace.'),
(19639, 'winterstale', 3, 1, 'A sea-port in Sicilia.'),
(19640, 'winterstale', 3, 2, 'A court of Justice.'),
(19641, 'winterstale', 3, 3, 'Bohemia. A desert country near the sea.'),
(19642, 'winterstale', 4, 1, 'Chorus as Time speaks.'),
(19643, 'winterstale', 4, 2, 'Bohemia. The palace of POLIXENES.'),
(19644, 'winterstale', 4, 3, 'A road near the Shepherd''s cottage.'),
(19645, 'winterstale', 4, 4, 'The Shepherd''s cottage.'),
(19646, 'winterstale', 5, 1, 'A room in LEONTES'' palace.'),
(19647, 'winterstale', 5, 2, 'Before LEONTES'' palace.'),
(19648, 'winterstale', 5, 3, 'A chapel in PAULINA''S house.'),
(19258, 'passionatepilgrim', 1, 1, ''),
(19259, 'passionatepilgrim', 1, 2, ''),
(19260, 'passionatepilgrim', 1, 3, ''),
(19261, 'passionatepilgrim', 1, 4, ''),
(19262, 'passionatepilgrim', 1, 5, ''),
(19263, 'passionatepilgrim', 1, 6, ''),
(19264, 'passionatepilgrim', 1, 7, ''),
(19265, 'passionatepilgrim', 1, 8, ''),
(19266, 'passionatepilgrim', 1, 9, ''),
(19267, 'passionatepilgrim', 1, 10, ''),
(19268, 'passionatepilgrim', 1, 11, ''),
(19269, 'passionatepilgrim', 1, 12, ''),
(19270, 'passionatepilgrim', 1, 13, ''),
(19271, 'passionatepilgrim', 1, 14, ''),
(19272, 'passionatepilgrim', 1, 15, ''),
(19379, 'sonnets', 1, 1, ''),
(19380, 'sonnets', 1, 2, ''),
(19381, 'sonnets', 1, 3, ''),
(19382, 'sonnets', 1, 4, ''),
(19383, 'sonnets', 1, 5, ''),
(19384, 'sonnets', 1, 6, ''),
(19385, 'sonnets', 1, 7, ''),
(19386, 'sonnets', 1, 8, ''),
(19387, 'sonnets', 1, 9, ''),
(19388, 'sonnets', 1, 10, ''),
(19389, 'sonnets', 1, 11, ''),
(19390, 'sonnets', 1, 12, ''),
(19391, 'sonnets', 1, 13, ''),
(19392, 'sonnets', 1, 14, ''),
(19393, 'sonnets', 1, 15, ''),
(19394, 'sonnets', 1, 16, ''),
(19395, 'sonnets', 1, 17, ''),
(19396, 'sonnets', 1, 18, ''),
(19397, 'sonnets', 1, 19, ''),
(19398, 'sonnets', 1, 20, ''),
(19399, 'sonnets', 1, 21, ''),
(19400, 'sonnets', 1, 22, ''),
(19401, 'sonnets', 1, 23, ''),
(19402, 'sonnets', 1, 24, ''),
(19403, 'sonnets', 1, 25, ''),
(19404, 'sonnets', 1, 26, ''),
(19405, 'sonnets', 1, 27, ''),
(19407, 'sonnets', 1, 29, ''),
(19408, 'sonnets', 1, 30, ''),
(19409, 'sonnets', 1, 31, ''),
(19410, 'sonnets', 1, 32, ''),
(19411, 'sonnets', 1, 33, ''),
(19412, 'sonnets', 1, 34, ''),
(19413, 'sonnets', 1, 35, ''),
(19414, 'sonnets', 1, 36, ''),
(19415, 'sonnets', 1, 37, ''),
(19416, 'sonnets', 1, 38, ''),
(19417, 'sonnets', 1, 39, ''),
(19418, 'sonnets', 1, 40, ''),
(19419, 'sonnets', 1, 41, ''),
(19420, 'sonnets', 1, 42, ''),
(19421, 'sonnets', 1, 43, ''),
(19422, 'sonnets', 1, 44, ''),
(19423, 'sonnets', 1, 45, ''),
(19424, 'sonnets', 1, 46, ''),
(19425, 'sonnets', 1, 47, ''),
(19426, 'sonnets', 1, 48, ''),
(19427, 'sonnets', 1, 49, ''),
(19428, 'sonnets', 1, 50, ''),
(19429, 'sonnets', 1, 51, ''),
(19430, 'sonnets', 1, 52, ''),
(19431, 'sonnets', 1, 53, ''),
(19432, 'sonnets', 1, 54, ''),
(19433, 'sonnets', 1, 55, ''),
(19434, 'sonnets', 1, 56, ''),
(19435, 'sonnets', 1, 57, ''),
(19436, 'sonnets', 1, 58, ''),
(19437, 'sonnets', 1, 59, ''),
(19438, 'sonnets', 1, 60, ''),
(19439, 'sonnets', 1, 61, ''),
(19440, 'sonnets', 1, 62, ''),
(19441, 'sonnets', 1, 63, ''),
(19442, 'sonnets', 1, 64, ''),
(19443, 'sonnets', 1, 65, ''),
(19444, 'sonnets', 1, 66, ''),
(19445, 'sonnets', 1, 67, ''),
(19446, 'sonnets', 1, 68, ''),
(19447, 'sonnets', 1, 69, ''),
(19448, 'sonnets', 1, 70, ''),
(19449, 'sonnets', 1, 71, ''),
(19450, 'sonnets', 1, 72, ''),
(19451, 'sonnets', 1, 73, ''),
(19452, 'sonnets', 1, 74, ''),
(19453, 'sonnets', 1, 75, ''),
(19454, 'sonnets', 1, 76, ''),
(19455, 'sonnets', 1, 77, ''),
(19456, 'sonnets', 1, 78, ''),
(19457, 'sonnets', 1, 79, ''),
(19458, 'sonnets', 1, 80, ''),
(19459, 'sonnets', 1, 81, ''),
(19460, 'sonnets', 1, 82, ''),
(19461, 'sonnets', 1, 83, ''),
(19462, 'sonnets', 1, 84, ''),
(19463, 'sonnets', 1, 85, ''),
(19464, 'sonnets', 1, 86, ''),
(19465, 'sonnets', 1, 87, ''),
(19466, 'sonnets', 1, 88, ''),
(19467, 'sonnets', 1, 89, ''),
(19468, 'sonnets', 1, 90, ''),
(19469, 'sonnets', 1, 91, ''),
(19470, 'sonnets', 1, 92, ''),
(19471, 'sonnets', 1, 93, ''),
(19472, 'sonnets', 1, 94, ''),
(19473, 'sonnets', 1, 95, ''),
(19474, 'sonnets', 1, 96, ''),
(19475, 'sonnets', 1, 97, ''),
(19476, 'sonnets', 1, 98, ''),
(19477, 'sonnets', 1, 99, ''),
(19478, 'sonnets', 1, 100, ''),
(19479, 'sonnets', 1, 101, ''),
(19480, 'sonnets', 1, 102, ''),
(19481, 'sonnets', 1, 103, ''),
(19482, 'sonnets', 1, 104, ''),
(19483, 'sonnets', 1, 105, ''),
(19484, 'sonnets', 1, 106, ''),
(19485, 'sonnets', 1, 107, ''),
(19486, 'sonnets', 1, 108, ''),
(19487, 'sonnets', 1, 109, ''),
(19488, 'sonnets', 1, 110, ''),
(19489, 'sonnets', 1, 111, ''),
(19490, 'sonnets', 1, 112, ''),
(19492, 'sonnets', 1, 114, ''),
(19493, 'sonnets', 1, 115, ''),
(19494, 'sonnets', 1, 116, ''),
(19495, 'sonnets', 1, 117, ''),
(19496, 'sonnets', 1, 118, ''),
(19497, 'sonnets', 1, 119, ''),
(19498, 'sonnets', 1, 120, ''),
(19499, 'sonnets', 1, 121, ''),
(19500, 'sonnets', 1, 122, ''),
(19501, 'sonnets', 1, 123, ''),
(19502, 'sonnets', 1, 124, ''),
(19503, 'sonnets', 1, 125, ''),
(19504, 'sonnets', 1, 126, ''),
(19505, 'sonnets', 1, 127, ''),
(19506, 'sonnets', 1, 128, ''),
(19507, 'sonnets', 1, 129, ''),
(19508, 'sonnets', 1, 130, ''),
(19509, 'sonnets', 1, 131, ''),
(19510, 'sonnets', 1, 132, ''),
(19511, 'sonnets', 1, 133, ''),
(19512, 'sonnets', 1, 134, ''),
(19513, 'sonnets', 1, 135, ''),
(19514, 'sonnets', 1, 136, ''),
(19515, 'sonnets', 1, 137, ''),
(19516, 'sonnets', 1, 138, ''),
(19517, 'sonnets', 1, 139, ''),
(19518, 'sonnets', 1, 140, ''),
(19519, 'sonnets', 1, 141, ''),
(19520, 'sonnets', 1, 142, ''),
(19521, 'sonnets', 1, 143, ''),
(19522, 'sonnets', 1, 144, ''),
(19523, 'sonnets', 1, 145, ''),
(19524, 'sonnets', 1, 146, ''),
(19525, 'sonnets', 1, 147, ''),
(19526, 'sonnets', 1, 148, ''),
(19527, 'sonnets', 1, 149, ''),
(19528, 'sonnets', 1, 150, ''),
(19529, 'sonnets', 1, 151, ''),
(19530, 'sonnets', 1, 152, ''),
(19531, 'sonnets', 1, 153, ''),
(19532, 'sonnets', 1, 154, '');

44
db/shakespeare_work.sql Normal file
View File

@ -0,0 +1,44 @@
insert into shakespeare.work (id, title, long_title, year, genre_type, notes, source, total_words, total_paragraphs)
values ('12night', 'Twelfth Night', 'Twelfth Night, Or What You Will', 1599, 'c', null, 'Moby', 19837, 1031),
('allswell', 'All''s Well That Ends Well', 'All''s Well That Ends Well', 1602, 'c', null, 'Moby', 22997, 1025),
('antonycleo', 'Antony and Cleopatra', 'Antony and Cleopatra', 1606, 't', null, 'Moby', 24905, 1344),
('asyoulikeit', 'As You Like It', 'As You Like It', 1599, 'c', null, 'Gutenberg', 21690, 872),
('comedyerrors', 'Comedy of Errors', 'The Comedy of Errors', 1589, 'c', null, 'Moby', 14692, 661),
('coriolanus', 'Coriolanus', 'Coriolanus', 1607, 't', null, 'Moby', 27577, 1226),
('cymbeline', 'Cymbeline', 'Cymbeline, King of Britain', 1609, 'h', null, 'Moby', 27565, 971),
('hamlet', 'Hamlet', 'Tragedy of Hamlet, Prince of Denmark, The', 1600, 't', null, 'Gutenberg', 30558, 1275),
('henry4p1', 'Henry IV, Part I', 'History of Henry IV, Part I', 1597, 'h', null, 'Moby', 24579, 884),
('henry4p2', 'Henry IV, Part II', 'History of Henry IV, Part II', 1597, 'h', null, 'Gutenberg', 25692, 1013),
('henry5', 'Henry V', 'History of Henry V', 1598, 'h', null, 'Moby', 26119, 846),
('henry6p1', 'Henry VI, Part I', 'History of Henry VI, Part I', 1591, 'h', null, 'Moby', 21575, 772),
('henry6p2', 'Henry VI, Part II', 'History of Henry VI, Part II', 1590, 'h', null, 'Moby', 25411, 904),
('henry6p3', 'Henry VI, Part III', 'History of Henry VI, Part III', 1590, 'h', null, 'Moby', 24284, 935),
('henry8', 'Henry VIII', 'History of Henry VIII', 1612, 'h', null, 'Moby', 24629, 779),
('juliuscaesar', 'Julius Caesar', 'The Tragedy of Julius Caesar', 1599, 't', null, 'Moby', 19703, 888),
('kingjohn', 'King John', 'History of King John', 1596, 'h', null, 'Moby', 20760, 615),
('kinglear', 'King Lear', 'The Tragedy of King Lear', 1605, 't', null, 'Gutenberg', 26119, 1177),
('loverscomplaint', 'Lover''s Complaint', 'A Lover''s Complaint', 1609, 'p', null, 'Moby', 2559, 47),
('loveslabours', 'Love''s Labour''s Lost', 'Love''s Labour''s Lost', 1594, 'c', null, 'Moby', 21450, 1120),
('macbeth', 'Macbeth', 'The Tragedy of Macbeth', 1605, 't', null, 'Moby', 17121, 758),
('measure', 'Measure for Measure', 'Measure for Measure', 1604, 'c', null, 'Moby', 21773, 980),
('merchantvenice', 'Merchant of Venice', 'Merchant of Venice, The', 1596, 'c', null, 'Moby', 21291, 718),
('merrywives', 'Merry Wives of Windsor', 'Merry Wives of Windsor, The', 1600, 'c', null, 'Moby', 21845, 1161),
('midsummer', 'Midsummer Night''s Dream', 'A Midsummer Night''s Dream', 1595, 'c', null, 'Moby', 16511, 603),
('muchado', 'Much Ado about Nothing', 'Much Ado about Nothing', 1598, 'c', null, 'Moby', 21157, 1059),
('othello', 'Othello', 'The Tragedy of Othello, Moor of Venice', 1604, 't', null, 'Moby', 26450, 1308),
('passionatepilgrim', 'Passionate Pilgrim', 'The Passionate Pilgrim', 1598, 'p', null, 'Moby', 3124, 43),
('pericles', 'Pericles', 'Pericles, Prince of Tyre', 1608, 'h', null, 'Moby', 18529, 748),
('phoenixturtle', 'Phoenix and the Turtle', 'The Phoenix and the Turtle', 1601, 'p', null, 'Moby', 353, 19),
('rapelucrece', 'Rape of Lucrece', 'The Rape of Lucrece', 1594, 'p', null, 'Moby', 15003, 269),
('richard2', 'Richard II', 'History of Richard II', 1595, 'h', null, 'Moby', 22411, 628),
('richard3', 'Richard III', 'History of Richard III', 1592, 'h', null, 'Moby', 29278, 1210),
('romeojuliet', 'Romeo and Juliet', 'The Tragedy of Romeo and Juliet', 1594, 't', null, 'Moby', 24553, 989),
('sonnets', 'Sonnets', 'Sonnets', 1609, 's', null, 'Moby', 17515, 154),
('tamingshrew', 'Taming of the Shrew', 'The Taming of the Shrew', 1593, 'c', null, 'Gutenberg', 21055, 965),
('tempest', 'Tempest', 'The Tempest', 1611, 'c', null, 'Moby', 16628, 698),
('timonathens', 'Timon of Athens', 'The Tragedy of Timon of Athens', 1607, 't', null, 'Moby', 18206, 865),
('titus', 'Titus Andronicus', 'Titus Andronicus', 1593, 't', null, 'Moby', 20710, 654),
('troilus', 'Troilus and Cressida', 'Troilus and Cressida', 1601, 't', null, 'Moby', 26089, 1295),
('twogents', 'Two Gentlemen of Verona', 'Two Gentlemen of Verona', 1594, 'c', null, 'Moby', 17129, 943),
('venusadonis', 'Venus and Adonis', 'Venus and Adonis', 1593, 'p', null, 'Moby', 9870, 201),
('winterstale', 'The Winter''s Tale', 'The Winter''s Tale', 1610, 'c', null, 'Moby', 24914, 812);