Skip to content

Instantly share code, notes, and snippets.

@zorgnax
Created June 2, 2010 03:27
Show Gist options
  • Save zorgnax/421893 to your computer and use it in GitHub Desktop.
Save zorgnax/421893 to your computer and use it in GitHub Desktop.
Lost in Order
#!/usr/bin/perl
use Data::Dumper;
use Term::ANSIColor;
# plays lost files in order
#
# B jacob and smokey
# black rock
# |
# |
# V
# b flashbacks
# |
# |
# V
# p plane crash
# |
# i |
# V
# hatch
# raft
# |
# |
# V
# hatch explodes
# michael leaves
# |
# |
# V
# freighter
# ben moves island
# |
# |
# V
# o oceanic 6
# off island till locke comes
# |
# |
# V
# f flashes till locke stops them
# |
# |
# V
# O oceanic 6 till return on ajira 316
# |
# |
# V
# d dharma 1970s
# |
# |
# V
# incident
# |
# |
# V
# I ben kills jacob
# smokeys attack on the temple
# |
# |
# V
# widmore and nerds arrive
# desmond in electromagnetism
# sub marine explodes
# glowey cave
# man in blacks death
# jacks death
# |
# |
# V
# a afterlife
# move on
# order of the flash forward episodes
# paddling towards shore of some island
# ensign ro on plane to question them
# sun buys paik automotive
# christian shephards funeral
# hugos family throws him a party
# sun gives birth
# hugo visits sun and jins grave
# ben comes to tsunisia
# ben visits sayid burying nadia
# ben visits widmore in hotel room
# hugo goes to mental institution
# sayid is an assasin
# kate is on trial
# kate + jack
# jack visits hugo at night
# christian visits jack
# jack begins taking clonozipam and oxycodone
# walt visits hugo
# sayid visits hugo says bentham is dead
# claire visits aaron and kate
# sun visits widmore to kill ben
# jack drinks on plane rides
# jack revisits benthams body. ben talks to him
#
# faraday talking with desmond in alt universe
use constant n => -4815162342; # placeholder to ignore
use constant B => 0000; # backstories++
use constant b => 1000; # backstories
use constant p => 2000; # plane
use constant i => 3000; # island
use constant o => 4000; # oceanic6
use constant f => 5000; # flashes
use constant O => 6000; # oceanic6+bentham
use constant d => 7000; # dharma
use constant I => 8000; # island+ajira
use constant a => 9000; # alternate universe
sub ep_to_file {
my ($episode) = @_;
chdir '/media/sift/TV/Lost' or die "$!";
my ($file) = grep m/$episode/, glob '*/*.avi';
#my ($file) = grep m/$episode/, <*/*.mkv>, <*/*.avi>;
$file;
}
sub time_to_sec {
my ($time) = @_;
$time =~ s/\.(.*)//;
my $x = $1;
my ($s, $m, $h) = reverse split /:/, $time;
$h * 60 * 60 + $m * 60 + $s + $x/24;
}
my @seq;
my $episode;
my $title;
my $character;
sub ep {
($episode, $title, $character) = @_;
}
sub seq {
my %h;
$h{n} = shift or return;
$h{from} = shift;
$h{to} = shift;
$h{desc} = join ' ', @_;
$h{episode} = $episode;
$h{title} = $title;
$h{character} = $character;
$h{n} = eval $h{n};
for ($h{from}, $h{to}) {
next if !/^\d+$/;
my @n;
while (s/(\d{1,2})$//) {
push @n, $1;
}
$_ = join ':', map {sprintf "%02d", $_} reverse @n;
}
#if (time_to_sec($h{from}) > time_to_sec($h{to})) {
# die "seq $h{n} from time is greater than to time\n";
#}
return if $h{n} == n;
push @seq, \%h;
}
sub seq_print {
my ($filter) = @_;
my $time = 0;
my @seq = filter_seq($filter);
for (sort {$a->{n} <=> $b->{n}} @seq) {
$time += time_to_sec($_->{to}) - time_to_sec($_->{from});
my $desc = $_->{desc};
$desc =~ s/^(.{44}).+/$1.../;
printf "%-10s %-9s %8s => %-8s %s\n",
$_->{n},
$_->{episode},
$_->{from},
$_->{to},
$desc;
}
printf "%g hours\n", $time / (60 * 60);
print "\n\n";
}
sub _system {
print colored(['bold blue'], @_, "\n");
system @_;
}
sub play {
my ($filter) = @_;
my @seq = filter_seq($filter);
my @cmd = 'vlc';
for (sort {$a->{n} <=> $b->{n}} @seq) {
push @cmd, ep_to_file($_->{episode});
push @cmd, ":start-time=" . time_to_sec($_->{from});
push @cmd, ":stop-time=" . time_to_sec($_->{to});
}
print "@cmd\n";
system "@cmd 2>/dev/null";
}
sub create_movie {
my ($movie, $filter, $holdup) = @_;
$movie = 'output' if !defined $movie;
seq_print($filter) if $filter;
return if $holdup;
my @seq = filter_seq($filter);
unlink glob('/tmp/intermediate*');
for (sort {$a->{n} <=> $b->{n}} @seq) {
_system "mkfifo /tmp/intermediate.$_->{n}.mpg";
_system "ffmpeg -y -i " .
ep_to_file($_->{episode}) .
" -ss " . time_to_sec($_->{from}) .
" -t " . (time_to_sec($_->{to}) - time_to_sec($_->{from})) .
" -s 624x352" .
" -sameq -y /tmp/intermediate.$_->{n}.mpg < /dev/null >/dev/null 2>&1 &" ;
}
my $ifiles = '';
for (sort {$a->{n} <=> $b->{n}} @seq) {
$ifiles .= "/tmp/intermediate.$_->{n}.mpg ";
}
_system "cat $ifiles | " .
"ffmpeg " .
"-y -benchmark " .
"-i - " .
"-vcodec mpeg4 " .
"-vtag XVID " .
"-b 2000kb " .
"-r 29.97 " .
"-mbd rd -cmp 2 -subcmp 2 -g 300 " .
#"-acodec libmp3lame -ab 192kb -ac 2 -async 1 " .
"-acodec ac3 -ab 192kb -ac 2 -async 1 " .
#"-s 624x352 " .
"~/lostinorder/$movie.avi";
}
ep 'S01E01', 'pilot pt1';
seq i+1, qw/0012 2112/, "crash on island";
seq p+0.999, qw/2112 2344/, "jack on plane";
seq i+2, qw/2344 4126/, 'trek to get tranciever jack kate and charlie';
ep 'S01E02', 'pilot pt2';
seq i+3, qw/0218 0314/, 'jack kate charlie walk back to the beach holding non-working tranceiver';
seq p+1, qw/0315 0609/, 'charlie on plane';
seq i+4, qw/0609 3337/, 'group on beach, sawyer kate shannon boone sayid trek to bring tranceiver to high ground, sawyer kills polar bear';
seq p+2, qw/3338 3616/, 'kate on plane';
seq i+5, qw/3616 4135/, 'sayid sawyer kate shannon boone charlie hear french woman. charlie: "where are we?"';
ep 'S01E03', 'tabula rosa', 'kate';
seq i+6, qw/0039 0711/, 'jack addresses mars wound. kate should hold the gun.';
seq b+0.9999, qw/0711 0857/, 'kate is on the run sleeping in a lefty farmer guys barn';
seq i+7, qw/0858 1732/, 'sayid talks to everyone to give everyone a task';
seq b+1, qw/1733 1917/, 'kate plans to leave the farmers house at night but he talks her into staying till the next morning so he can drive her to the train station';
seq i+8, qw/1918 2122/, 'kate asks jack if they can kill mars';
seq b+2, qw/2123 2249/, 'farmer snitches. mars makes gun with fingers';
seq i+9, qw/2250 2955/, 'she got to you too';
seq b+3, qw/2957 3152/, 'kate farmer mars car crash kate good so she saves farmer only to get busted by mars';
seq i+10, qw/3153 3212/, 'what was the favor?';
seq p+2.1, qw/3214 3250/, 'kate on a plane 2';
seq i+10.01, qw/3252 4227/, 'sawyer shoots mars. locke gives michael vincent to give to walt';
ep 'S01E04', 'walkabout', 'locke';
seq i+1.1, qw/0000 0048/, 'locke awakes on island after plane crash and his legs work ftw';
seq i+11, qw/0049 0903/, 'locke wants to go hunt boar. hugo "who is this guy" after seeing all his knives';
seq b+4.999, qw/0905 0946/, 'locke works at box company';
seq i+12, qw/0947 1942/, 'locke is boar hunting he hurts his leg but its alright';
seq b+5, qw/1944 2139/, 'locke on his lunch break playing risk. norman croucher double amputee climbed to the top of mount everest because it was his destiny';
seq i+13, qw/2140 2624/, 'hugo and charlie try to fish but suck at it';
seq b+6, qw/2626 2809/, 'locke calls his phoneline gf (called helen) about walkabout';
seq i+14, qw/2810 3900/, 'locke gets the boar and brings it back to bush where jack sees his father';
seq b+7, qw/3901 4027/, 'locke is denied from going on walkabout';
seq i+15, qw/4126 4151/, 'locke reflects at his condition while looking at his wheelchair by the fire';
ep 'S01E05', 'white rabbit', 'jack';
seq b+8, qw/0000 0031/, 'shoulda stayed down jack';
seq i+16, qw/0035 1041/, 'jack saves woman who was drowning in the ocean. kate and claire sort clothes';
seq b+9, qw/1042 1230/, 'christian tells jack that he doesnt have what it takes';
seq i+17, qw/1231 1425/, 'shoulda let me drown jack';
seq b+10, qw/1428 1609/, 'jacks mother tells him to bring his father back from australia';
seq i+18, qw/1611 1849/, 'where are you?';
seq b+11, qw/1850 2003/, 'jack inspects the hotel room his father stayed in in australia';
seq i+19, qw/2004 3054/, 'locke saves jack whos holding onto the ledge of a cliff';
seq b+12, qw/3057 3157/, 'jack verifies his fathers dead body';
seq i+20, qw/3158 3424/, 'jack finds the caves';
seq b+13, qw/3427 3535/, 'jack flips out at the counter of the airline when they give him a problem about the casket';
seq i+21.1, qw/3537 3919/, 'if we cant live together were going to die alone';
seq i+21.2, qw/3919 4133/, 'night on the beach';
ep 'S01E06', 'house of the rising sun', 'sun';
seq i+22, qw/0135 0309/, 'charlie to jack and kate "when youre done verbally copulating we gotta get water for the people"';
seq b+14.099, qw/0311 0453/, 'jin makes out with sun at party even though he works as a waiter';
seq i+23, qw/0454 1012/, 'jin beats michael becuase hes wearing watch. some people move with jack to the caves';
seq b+15, qw/1014 1158/, 'jin is getting money from mr paik so he can give sun diamond';
seq i+24, qw/1200 1528/, 'charlie is standing on a beehive';
seq b+16, qw/1529 1635/, 'sun in nice apartment gets a puppy as a present';
seq i+25, qw/1637 1955/, 'jin is handcuffed to something';
seq b+17, qw/1957 2131/, 'jin washes someones blood off his hands';
seq i+26, qw/2133 2858/, 'island';
seq b+18, qw/2902 3055/, 'sun decides to run away';
seq i+27, qw/3057 3638/, 'island';
seq b+19, qw/3640 3903/, 'sun decides to stay with jin at the sydnie airport';
seq i+27.001, qw/3905 3910/, 'sun finishes pondering';
seq i+28, qw/3911 4200/, 'island at night';
ep 'S01E07', 'the moth', 'charlie';
seq i+29, qw/0000 0233/, 'charlie withdrawal and locke sees this and tells him he should go for a walk. jack moves to caves and sawer takes his digs kate believes there will be rescue so she stays at the beach';
seq b+20.999, qw/0237 0437/, 'charlie confesses that females like him so he now must quit band. however brother says he gonna be rock god since the band was signed';
seq i+30, qw/0439 0513/, 'charlie makes good bate. So glad i may oblidge now give me my bloody drugs o_0';
seq i+31, qw/0532 1001/, 'sayid explains how they are going to triangulate the position of the frech womans signal';
seq b+21, qw/1004 1112/, 'charlie says that if he decides later on to walk away they walk away';
seq i+32, qw/1114 1511/, 'jack gets trapped when the cave collapses. charlie goes to the beach to get help.';
seq b+22, qw/1514 1647/, 'liam sings charlies part in you all everybody';
seq i+33, qw/1648 2538/, 'locke talks to charlie about a moth coccoon. Then he goes into the cave to rescue jack';
seq b+23, qw/2543 2808/, 'charlie decides that his brother is using too much drugs and that too many females like him that the tour must end. liam says no. charlie takes drugs';
seq i+34, qw/2810 3102/, 'charlie pops jacks shoulder back into place';
seq b+24, qw/3105 3333/, 'charlie booked a gig in la for driveshaft and tried to get liam to go with him but liam said no';
seq i+35, qw/3335 4229/, 'kate starts digging for jack really hard but then feels punkd when charlie follows a moth out another way and all her digging is pointless. charlie throws his drugs into fire';
ep 'S01E08', 'confidence man', 'sawyer';
seq i+36, qw/0023 0126/, 'sawyer comes out of water when kate comes by holding a bushel of bananas looks at his copy of watershed down';
seq b+25.999, qw/0130 0251/, 'sawyer in bed with someone is late for meeting and accidentally shows money in his briefcase';
seq i+37, qw/0254 0434/, 'sayid will do what he needs to do to find the guy that hit him in the head after locating the signal';
seq i+38, qw/0452 0757/, 'jack goes through sawyers stuff and have a bit of a showdown before kate asks wutup';
seq b+26, qw/0759 0908/, 'jessica wants to give sawyer her money so that he can buy an oil thing in baton rouge. hook baited';
seq i+39, qw/0910 1557/, 'locke blames sawyer for hitting sayid. jack punches sawyer for the inhalers';
seq b+27, qw/1601 1715/, 'sawyer tells the guy he can even hold onto the cash if hes not feeling like it. the guy considers going through with it';
seq i+40, qw/1718 2521/, 'sayid tortures sawyer. sawyer will only tell kate';
seq b+28, qw/2524 2650/, 'the kingpin is complaining to sawyer about letting him take all that money with him';
seq i+41, qw/2653 3309/, 'sayid stabs sawyer in the arm and jack holds the wound together. sun gets eucaliptus for shannon';
seq b+29, qw/3311 3427/, 'sawyer sees kid in jessicas house and it reminds him of himself so he ends the con';
seq i+42, qw/3429 4220/, 'sayid shamedly goes off to map the island. charlie and clair have extra smooth peanut butter';
ep 'S01E09', 'solitary', 'sayid';
seq i+43, qw/0000 0332/, 'sayid trips a wire in the forest';
seq i+44, qw/0350 0713/, 'sayid gets taken by the french woman - where is alex';
seq b+30.999, qw/0715 0909/, 'sayid as iraqi guard';
seq i+45, qw/0911 1310/, 'her name is nadia';
seq b+31, qw/1313 1550/, 'sayid questions nadia';
seq i+46, qw/1552 2600/, 'hurley tells of the benefits of fun. sayid with rousseau';
seq b+32, qw/2603 2711/, 'this isnt a game nadia. yet you keep playing it sayid';
seq i+47, qw/2714 2946/, 'boone has to see the golfing. sayid fixes the musicbox';
seq b+33, qw/2950 3045/, 'sayid is asked to kill nadia';
seq i+48, qw/3047 3326/, 'walt finds michael playing golf. sayid escapes rousseau';
seq b+34, qw/3328 3545/, 'nadia writes a message on her picture when sayid shoots his commanding officer one time in the stomache and then himself to make his story more convincing. nadia escapes';
seq i+49, qw/3547 4208/, 'sayid hears whispers in the jungle after escaping the showdown with rousseau';
ep 'S01E10', 'raised by another', 'claire';
seq i+50, qw/0052 0411/, 'clairs dream';
seq i+51, qw/0427 0548/, 'jack bandages claire after her dream';
seq b+35.999, qw/0550 0805/, 'thomas and claire found out they are going to have a baby';
seq i+52, qw/0806 1135/, 'island';
seq b+36, qw/1137 1352/, 'claire gets a psychic reading';
seq i+53, qw/1354 1646/, 'claire is attacked but didnt see who did it';
seq b+37, qw/1648 1914/, 'claire has argument with thomas';
seq i+54, qw/1916 2416/, 'hurley takes a census of locke and ethan';
seq b+38, qw/2418 2825/, 'claire revisits the psychic';
seq i+55, qw/2827 3229/, 'hugo asks sawyer for ship manifest. claire has contractions';
seq b+39, qw/3231 3500/, 'claire tries to give her baby up to adoption but the pen doesnt work and she changes her mind. also she wants them to sing catch a falling star to it';
seq i+56, qw/3501 3612/, 'charlie tells ethan to get jack because shes having babby';
seq b+40, qw/3614 3706/, 'psychic wants claire to take flight to la to give babby away';
seq i+57, qw/3708 3755/, 'claire and charlie talking about psychics i know';
seq b+40.0001, qw/3757 3819/, 'flight 815';
seq i+57.0001, qw/3821 3828/, 'there was no plane in los angeles';
seq b+40.0002, qw/3830 3843/, 'omg he knew';
seq i+57.0002, qw/3846 4156/, 'ethan wheres jack';
ep 'S01E11', 'all the best cowboys have daddy issues', 'jack';
seq i+58, qw/0047 0222/, 'jack and locke go after claire because they think ethan is going to hurt her';
seq i+59, qw/0239 0356/, 'jack is running through jungle';
seq b+9.1, qw/0358 0523/, 'call it jack. shes dead o_0';
seq i+60, qw/0525 0713/, 'locke boone jack kate search party to find claire and charlie';
seq b+9.2, qw/0715 0848/, 'they called christian even though jack was up stairs and jack fucked the operation up';
seq i+61, qw/0850 1815/, 'walt talks to sawyer about others. kate gets lost on the trail since shes not as good as locke';
seq b+9.3, qw/1817 2215/, 'christian pleads for his career with jack to not mention alcohol';
seq i+62, qw/2217 2944/, 'they teach you how to predict the weather at a box company?';
seq b+9.4, qw/2948 3032/, 'christian consoles the husband of the woman he murdered, err, helped in surger but didnt make it';
seq i+63, qw/3034 3100/, 'jack wakes up from the mudslide';
seq b+9.5, qw/3103 3303/, 'jack told the story as it actually happened. christian was too drunk to do surgury and accidentally cut the patients appatic artery';
seq i+64, qw/3305 4122/, 'boone and locke find the hatch when locke throws him a flashlight and he misses it';
ep 'S01E12', 'whatever the case may be', 'kate';
seq i+65, qw/0000 0424/, 'kate and sawyer take a dip in the pool by the waterfall and notice dead bodies from the plane at the bottom';
seq i+66, qw/0444 1041/, 'everyones things get swept out to sea. jack asks sayid about rousseau to find claire';
seq b+0.1, qw/1043 1157/, 'kate in new mexico acting like shes not robbing a bank';
seq i+67, qw/1200 1924/, 'sawyer tries to open briefcase with impact velocity. physics my ass. kate tries to take it but cant';
seq b+0.2, qw/1927 2057/, 'kate acting like she doesnt know how to use a gun';
seq i+68, qw/2102 2616/, 'kate and jack dig up the body of the marshal';
seq b+0.3, qw/2619 2714/, 'bank robbers threaten to kill kate for vault key';
seq i+69, qw/2719 3311/, 'kate slight of hands the key from marss wallet. jack and her about to open case';
seq b+0.4, qw/3314 3502/, 'kate shoots her bank robber team to get access to save deposit box 815';
seq i+70, qw/3505 4225/, 'jack and kate open briefcase. shannon beautifully sings la mer';
ep 'S01E13', 'hearts and minds', 'boone';
seq i+71, qw/0123 0246/, 'sayid brings shannon some shoes because of her excellent job translating the other day';
seq b+41.999, qw/0248 0324/, 'shannon is in bad relationship in sydnie australia';
seq i+72, qw/0326 0450/, 'boone mad sayid try to hit on shannon. locke and boone say that hatch is priority';
seq i+73, qw/0508 1043/, 'locke tells story of michalangelo staring at marble that would be david and relates it to opening the hatch';
seq b+42, qw/1046 1142/, 'enjoy your friends';
seq i+74, qw/1145 1543/, 'locke ties boone up in the woods';
seq b+43, qw/1545 1750/, 'boone bribes bf to break up with shannon for 50k';
seq i+75, qw/1753 2621/, 'hurley hurts his foot fishing. boone and shannon are scared of something';
seq b+44, qw/2624 2753/, 'shannon set boone up the bomb. she knew hed pay him off';
seq i+76, qw/2755 3553/, 'boone loses shannon to the smoke monster';
seq b+45, qw/3556 3816/, 'boone makes out with shannon (no blood relation no worries)';
seq i+77, qw/3818 4226/, 'boone makes it back and finds out he was hallucinating';
ep 'S01E14', 'special', 'michael', 'walt';
seq i+78, qw/0027 0200/, 'michael hates being a dad';
seq b+46, qw/0202 0319/, 'michael and female pick out crib for walt';
seq i+79, qw/0321 0557/, 'locke shows walt how to throw knives. michael gets mad at locke';
seq b+47, qw/0614 0836/, 'female gets job in amsterdam and wants to take baby walt with her but michael cant go and fights her about this';
seq i+80, qw/0838 1250/, 'michael decides to build a raft';
seq b+48, qw/1252 1351/, 'michael declares his intent to get his son back then gets hit by a car';
seq i+81, qw/1355 1942/, 'michael tells locke that if he ever sees him with his son, hell kill him';
seq b+49, qw/1944 2239/, 'susan will cover michaels medical bills if he lets brian adopt walt';
seq i+82, qw/2242 2625/, 'walt walks off. vincent runs away from him';
seq b+50, qw/2627 2801/, 'walt requests attention from susan and brian. a bird flies into the window';
seq i+83, qw/2804 2829/, 'something frightens walt in jungle';
seq b+51, qw/2832 3112/, 'brian wants michael to have custody of walt after susan dies';
seq i+84, qw/3114 3129/, 'locke and michael looking for walt and hear him in trouble in the distance';
seq b+52, qw/3131 3253/, 'michael sees that all his letters were saved yet never given to walt';
seq i+85, qw/3256 3321/, 'walt is about to be mauled by a polar bear';
seq b+53, qw/3323 3541/, 'walt meets michael and says that hes not going anywhere with him';
seq i+86, qw/3543 4127/, 'michael and locke save walt. michael shows walt the letters he wrote to him';
seq i+86.1, qw/4128 4226/, 'claire emerges from the jungle';
ep 'S01E15', 'homecoming', 'charlie';
seq i+87, qw/0035 0205/, 'claire is treated by jack after coming back to the camp';
seq i+88, qw/0224 0629/, 'claire doesnt remember crashing on the island';
seq b+23.1, qw/0631 0813/, 'charlie buys drugs and needs money so he decides to make a girl fall in love with him so he can steal from her father';
seq i+89, qw/0815 1341/, 'ethan delivers a message to charlie to give him claire or he kill a person every day';
seq b+23.2, qw/1343 1446/, 'charlie enters females house and looks at loot';
seq i+90, qw/1448 1659/, 'the survivors get ready for an attack by the others';
seq b+23.3, qw/1701 1954/, 'charlie has food with females father. charlie decides to get job. drug supplier expects to get paid for all the drugs hes given him';
seq i+91, qw/1956 2426/, 'ethan kills scott by coming in from the water. claire gets mad charlie lied to her';
seq b+23.4, qw/2428 2628/, 'charlie gettting ready to work selling copiers steals winston churchils cigarette case';
seq i+92, qw/2630 2920/, 'the plan is to go into the jungle and use claire as bait before shooting ethan';
seq b+23.5, qw/2923 3010/, 'charlie throws up on copier because of the withdrawal from heroin';
seq i+93, qw/3012 3712/, 'charlie kills ethan in the jungle with jacks dropped gun';
seq b+23.6, qw/3715 3858/, 'lucy is upset he stole and got sick at the job. she says hell never take care of anyone';
seq i+94, qw/3900 4042/, 'claire remembers peanut butter';
ep 'S01E16', 'outlaws', 'sawyer';
seq b+25.1, qw/0108 0240/, 'james as a kid watches under bed as father kills mom and then himself';
seq i+95, qw/0242 0409/, 'james hits boar rummaging through his stuff and chases him out to jungle when he hears whispers';
seq i+96, qw/0424 0606/, 'sawyer and sayid talk about hearing whispers';
seq b+29.1, qw/0608 0906/, 'sawyers old con partner tells him about the real sawyer in australia';
seq i+97, qw/0908 1312/, 'sawyer is attacked by that same boar and then goes off to kill it for revenge';
seq b+29.2, qw/1315 1435/, 'no refunds on the gun that sawyer buys';
seq i+98, qw/1437 2542/, 'locke tells a story about his sister and a dog and his mother thinking this dog was his sister';
seq b+29.3, qw/2544 3249/, 'christian convinces sawyer to kill the guy';
seq i+99, qw/3251 3546/, 'sayid talks to charlie about killing people. sawyer and kate find the boars wallow';
seq b+29.4, qw/3548 3727/, 'sawyer kills the shrimp guy accidentally thinking he was the real sawyer';
seq i+100, qw/3729 4217/, 'sawyer gives gun back to jack and finds out that christian in the bar was actually jacks father';
ep 'S01E17', 'in translation', 'jin';
seq i+101, qw/0000 0016/, 'jin looks at ocean';
seq b+14.1, qw/0018 0207/, 'jin gets the approval of mr paik to marry sun';
seq i+102, qw/0209 0332/, 'michael steps in after jin tries to cover up his wifes hotness';
seq i+103, qw/0348 0413/, 'jin asks sun whats up with her and michael';
seq b+15.1, qw/0414 0624/, 'jin explains to sun hes pushing off the honeymoon a few months so mr paik can be proud of him';
seq i+104, qw/0626 1346/, 'the raft is torched prbably jin still mad at michael for his wife slapping him';
seq b+15.2, qw/1348 1606/, 'jin delivers mr paiks message and gets a sweet dog out of it too ftw';
seq i+105, qw/1609 2032/, 'sayid gets idea about shannon from boone, shannon finds out and gets pissed at boone, locke talks with shannon to not care about boones thoughts on the matter';
seq b+16.1, qw/2034 2546/, 'jin kicks ass the guy who gave him the dog to save his life from the other guy that was going to kill him';
seq i+106, qw/2547 3319/, 'sun reveals that she speaks english to stop michael from beating jin. locke blames others for the burning of the boat';
seq b+17.1, qw/3321 3603/, 'hotshot jin visits his father and he plans to run away with sun once he reaches america (like sun)';
seq i+107, qw/3605 4214/, 'jin and sun split up. jin helps michael build his raft. hugos headphones stop working';
ep 'S01E18', 'numbers', 'hugo';
seq i+108, qw/0026 0233/, 'jack plans to go to rousseau for something to make an sos';
seq b+54.0999, qw/0235 0339/, 'hugo wins the lottery';
seq i+109, qw/0357 0537/, 'hugo asks sayid about the numbers and steals one of her papers';
seq b+55, qw/0539 0657/, 'hugos grandfather tito has heart attack dies while hugo is being interviewed about winning money';
seq i+110, qw/0700 1009/, 'hugo goes after rousseau. jack sayid and charlie go after him';
seq b+56, qw/1011 1240/, 'hurley brings his mother to her new house but she breaks her ankle, the house is on fire, and hugo gets arrested';
seq i+111, qw/1244 1308/, 'hugo follows wire up into the jungle';
seq b+57, qw/1309 1451/, 'hugos money++ while people die in burned down sneaker factory and a guy commits suicide out the window. hugo realizes the numbers are cursed';
seq i+112, qw/1453 1809/, 'sawyer is bothered by the banging on the raft. hugo steps on pressure trigger but gets out of the way of spikey log because hes spry';
seq b+58, qw/1810 2119/, 'hugo visits lenny about the numbers finds out about sam who heard them';
seq i+113, qw/2121 2401/, 'hugo and charlie make it across the rope bridge. sayid and jack will try to go around';
seq b+59, qw/2403 2800/, 'hugo visits sams wife about the numbers in the middle of nowhere';
seq i+114, qw/2802 4218/, 'rousseau reaffirms hugo that the numbers are cursed. he gets a battery tells sayid she sayd watup and heads back. charlie and hugo talk by fire';
ep 'S01E19', 'deus ex machina', 'locke';
seq b+4.1, qw/0026 0135/, 'locke, working in toy store, shows kid mousetrap game when he is approached by older woman';
seq i+115, qw/0136 0415/, 'locke uses a trebuchet to try and open hatch. he injures his foot but is ok however he cant feel anything there';
seq i+116, qw/0433 0510/, 'locke and boone trying something else to open hatch. if this doesnt work locke believes the island will tell him what to do next';
seq b+4.2, qw/0512 0719/, 'locke meets woman who says he was immaculately concieved';
seq i+117, qw/0721 1100/, 'locke dreams of working on opeing the hatch. he sees a small plane crash. and boone saying theresa falls up/down the stairs. they wake up early to check it out';
seq b+4.3, qw/1102 1445/, 'locke hires pi and he says that mother was a slight schitzo. locke meets anthony cooper, his father, and they plan to go hunting';
seq i+118, qw/1447 1924/, 'sawyer is having headaches. locke and boone find decaying body with a cross necklass';
seq b+4.4, qw/1926 2035/, 'locke comes to coopers house early to see he needs a new kidney';
seq i+119, qw/2036 2452/, 'jack diagnoses sawyer in front of kate. locke tells boone that he used to be paralyzed when his legs have trouble working';
seq b+4.5, qw/2453 2537/, 'locke and cooper enjoy hunting birds together';
seq i+120, qw/2538 2734/, 'boone tells locke about theresa. nanny who broke neck when he called her too much. boone climbs up to find out whats in plane';
seq b+4.6, qw/2736 2805/, 'locke gives kidney to cooper';
seq i+121, qw/2806 3708/, 'jack gives sawyer eyeglasses. boone dies when plane crashes';
seq b+4.7, qw/3709 4105/, 'locke finds out he was tricked into giving his kidney away and breaks down';
seq i+122, qw/4106 4144/, 'locke distraught and hatch lights up';
ep 'S01E20', 'do no harm', 'jack';
seq i+123, qw/0029 0215/, 'jack treats boone';
seq b+9.01, qw/0216 0308/, 'jack and someone else is getting a suit for his wedding';
seq i+124, qw/0309 0340/, 'jack treats boone';
seq i+125, qw/0359 0639/, 'jack treats boone';
seq b+9.02, qw/0641 0801/, 'fiancee toasts at jacks wedding rehearsal';
seq i+126, qw/0802 1427/, 'jack continues to treat boone. claire starts to have baby in jungle';
seq b+9.03, qw/1428 1633/, 'jack and fiancee talk about wedding vows while playing piano';
seq i+127, qw/1636 2455/, 'jack treats boone. charlie and jin and kate help claire continue to have baby';
seq b+9.04, qw/2456 2737/, 'jack drinking by pool tries to write vows with christian. commitment is what makes you tick jack the problem is that your just not good at letting go';
seq i+128, qw/2738 3212/, 'jack decides whether or not to use plane door to cut boones leg off';
seq b+9.05, qw/3216 3415/, 'at wedding, sarah recite her vows to jack. jack unprepared makes awesome vows on the spot. i didnt fix you, you fixed me';
seq i+129, qw/3417 4225/, 'jack doesnt cut boones leg off. boone dies. claire delivers baby. jack believes locke is responsible for boones death';
ep 'S01E21', 'the greater good', 'sayid';
seq i+130, qw/0127 0235/, 'sayid watches as shannon mourns boone';
seq b+34.1, qw/0238 0444/, 'in london cia get sayid to undercover terrorist plot in australia to find nadia';
seq i+131, qw/0446 0937/, 'survivors bury boone. locke tells of the plane part. jack flipstf out about where locke was after he dropped boone off with him';
seq i+132, qw/0954 1045/, 'everyone thinks jack needs rest but jack knows locke is hiding something';
seq b+34.2, qw/1047 1354/, 'sayid makes contact with his cairo university roommate who is now terrorist';
seq i+133, qw/1356 2057/, 'sun gives claire advice to sleep. locke asks shannon to forgive him about boone. shannon asks sayid to do something about locke killing her brother';
seq b+34.3, qw/2059 2313/, 'sayid learns assam is the martar but is having second thoughts but sayid needs to convince him to do it for nadia';
seq i+134, qw/2313 2750/, 'charlie and hugo try to cheer baby up. locke admits to hitting sayid in the head';
seq b+34.4, qw/2753 2928/, 'sayid convinces assam to go through with it. sayid agrees to do it with him';
seq i+135, qw/2929 3349/, 'shannon still wants locke dead. sawyer calms baby. shannon steals guns';
seq b+34.5, qw/3351 3646/, 'sayid confesses to working for cia right before suicide bombing. assam commits suicide';
seq i+136, qw/3647 4029/, 'shannon shoots at locke but misses when sayid pushes her out the way';
seq b+34.6, qw/4030 4123/, 'cia gets c4. sayid claims assams body and gets tickets on flight 815';
seq i+137, qw/4124 4221/, 'sayid knows about the hatch and gets locke to agree to taking him there';
ep 'S01E22', 'born to run', 'kate';
seq b+0.01, qw/0000 0230/, 'kate on the run goes in motel. she changes licence plate from nebraska to ohio and changes hair color from blond to brown';
seq i+138, qw/0231 0527/, 'arzt talks about monsoon season and that the raft has to leave yesterday. kate wants in';
seq i+139, qw/0543 0627/, 'kate is denied passage on the raft';
seq b+0.02, qw/0629 0759/, 'kate holds flowers in hospital. she meets tom in his car';
seq i+140, qw/0800 1603/, 'jack sayid and locke look at hatch. michael gets sick';
seq b+0.03, qw/1605 1813/, 'kate meets tom at his house. they dig up timecapsule with his toy airplane';
seq i+141, qw/1815 2222/, 'jack finds powder in water bottle. thinks he was poisoned';
seq b+0.04, qw/2223 2612/, 'kate and tom still dig up timecapsule (its in a nkotb lunchbox)';
seq i+142, qw/2613 2931/, 'sawyer exposes kate as the con';
seq b+0.05, qw/2932 3402/, 'kate visits mother in hospital. mother calls for help. in escape, police shoot tom';
seq i+143, qw/3404 4228/, 'turns out sun poisoned michael trying to make jin sick but failed. walt admits to burning the raft. actually it was kate who told sun to poison the water';
ep 'S01E23', 'exodus pt1';
seq b+53.1, qw/0102 0211/, 'michael and walt in sydnie hotel watches power rangers then runs out';
seq i+144, qw/0212 0431/, 'rousseau goes to camp to warn that the others are coming';
seq i+145, qw/0447 1028/, 'jack and sayid show the hatch to hugo and rousseau who tells them they can get dynamite to open the hatch from the black rock';
seq b+13.1, qw/1030 1324/, 'jack drinks with ana lucia before getting on the plane';
seq i+146, qw/1326 1457/, 'arzt wants to help with the dynomite. michael and jin fix raft';
seq b+29.5, qw/1458 1631/, 'sawyer headbutted warren trust and so he was in australia police precinct getting deported';
seq i+147, qw/1632 2018/, 'jack hands sawyer a gun for the trip and sawyer tells jack about meeting christian in bar';
seq b+3.1, qw/2020 2232/, 'mars talks about why he needs 5 guns to marshal kate';
seq i+148, qw/2234 3231/, 'arzt comes out of jungle scared of smoke monster. walt gives vincent to shannon';
seq b+45.1, qw/3232 3354/, 'shannon tells security guard that sayid left his bags on the chair near her';
seq i+149, qw/3355 3503/, 'rousseau brings them to the black rock';
seq b+19.1, qw/3505 3604/, 'sun is helpful to jin and other passengers think shes subjected';
seq i+150, qw/3606 4219/, 'sun writes jin english words he might want to know. raft is launched';
ep 'S01E24E25', 'exodus pt2';
seq i+151, qw/0249 1143/, 'kate having problems with baby. jack kate rousseau hugo arzt locke get dynamite. arzt blows up';
seq b+19.2, qw/1145 1357/, 'jin is threatened by mr paiks employee in airport bathroom';
seq i+152, qw/1359 2212/, 'rousseau asks to hold baby which claire denies';
seq b+24.1, qw/2214 2422/, 'charlie holds on to drugs in sydnie hotel';
seq i+153, qw/2423 3014/, 'rousseau takes claires baby. locke kate and jack draw sticks to see who carries dynamite. sawyer reads notes in bottle. claire names the baby aaron';
seq b+53.2, qw/3016 3218/, 'michael complains about having to take care of walt';
seq i+154, qw/3220 5115/, 'locke faces smoke monster. sun brings claire tea. sayid fixes charlies wound with gunpowder';
seq b+59.1, qw/5118 5649/, 'hugo runs to catch plane';
seq i+155, qw/5650 010249/, 'jack and locke talk about destiny and island. raft radar blipt';
seq b+7.1, qw/010251 010414/, 'locke gets carried on to the plane';
seq i+156, qw/010416 011921/, 'charlie gets baby from rousseau. jack and locke blow up hatch door despite hugo runs after them saying not to. raft explodes';
seq p+0.1, qw/011923 012232/, 'claire kate sawyer locke jack charlie sayid jin sun michael walt shannon boone hugo arzt get on plane and take their seats';
seq i+157, qw/012234 012348/, 'jack locke hugo and kate open hatch and look down into its depths';
ep 'S02E01', 'man of science man of faith', 'jack';
seq i+158, qw/0033 0356/, 'desmond hears explosion and looks through glass at jack and locke';
seq i+159, qw/0412 0606/, 'theres no ladder so jack decides to pack up and leave';
seq b+9.001, qw/0608 0753/, 'jack operates on sarah after she was in a car crash';
seq i+160, qw/0755 1456/, 'hugo tells jack his bedside manner sucks dude';
seq b+9.002, qw/1458 1716/, 'jack tells sarah her back is broken then talks to christian about giving hope';
seq i+161, qw/1718 2204/, 'jack addresses people at the caves. locke goes to hatch. kate goes with him';
seq b+9.003, qw/2207 2435/, 'jack talks to sarahs fiancee about her injuries. jack talks to sarah before operating that hes going to fix her. OR staff is like WHAT?';
seq i+162, qw/2437 3004/, 'kate locke and jack go down the hatch';
seq b+9.004, qw/3005 3358/, 'jack and desmond working out in empty stadium. girl patient';
seq i+163, qw/3400 3756/, 'jack explores hatch and finds locke with a gun in his face';
seq b+9.005, qw/3759 4122/, 'jack tells sarah that she will be paralyzed but sarah can wiggle her toes';
seq i+164, qw/4124 4219/, 'jack recognizes desmond while he has a gun on locke';
ep 'S02E02', 'adrift', 'michael';
seq i+165, qw/0205 0406/, 'michael and sawyer trying not to drown';
seq i+166, qw/0421 0501/, 'sawyer revives michael';
seq b+49.1, qw/0503 0648/, 'michael does not want susan to take walt away from him to rome';
seq i+167, qw/0649 1243/, 'sawyer goes onto another piece of raft debris after argument with michael';
seq b+49.2, qw/1245 1440/, 'michael and susan sitting down with lawyers to gain custody';
seq i+168, qw/1442 2254/, 'locke ties kate up and gives her a knife. michael breaks sawyers raft piece';
seq b+49.3, qw/2256 2520/, 'ill do it by doing it. susan asks for michael to give walt up';
seq i+169, qw/2522 3603/, 'michael shoots whale and both get on larger piece of raft';
seq b+49.4, qw/3605 3901/, 'michael talks to toddler walt';
seq i+170, qw/3903 4125/, 'michael and sawyer get back on land. jin comes out of jungle and they are confronted by others';
ep 'S02E03', 'orientation', 'locke';
seq i+171, qw/0149 0307/, 'others put michael sawyer and jin in hole';
seq b+4.71, qw/0309 0542/, 'locke goes to a complain meeting and complains better than someone else and meets helen';
seq i+172, qw/0543 0818/, 'kate comes to standoff. desmond accidentally shoots computer';
seq b+4.72, qw/0820 1102/, 'locke leaves helen in morning to sit outside coopers place they meet and cooper says to stop';
seq i+173, qw/1103 2040/, 'locke and jack watch the orientation film for the swan';
seq b+4.73, qw/2041 2257/, 'locke and helen have 6 month aniversary dinner';
seq i+174, qw/2258 2927/, 'sawyer tells ana lucia next time eko opens hole hes gonna show him a real howdy doody. everyone runs out of hatch leaving john not knowing what to do with broken computer';
seq b+4.74, qw/2928 3152/, 'locke goes again to wait outside coopers house';
seq i+175, qw/3153 4152/, 'sayid fixes computer. locke gets jack to push button';
ep 'S02E04', 'everybody hates hugo', 'hugo';
seq i+176, qw/0050 0546/, 'hugo dreaming again. jin and michael are taken out of hole';
seq b+54.1, qw/0559 0740/, 'hugo wins lottery tells mother it musta been something he ate';
seq i+177, qw/0741 1419/, 'hugo is charge of food inventory';
seq b+54.2, qw/1420 1623/, 'hugo is called to boss (i think its the same guy whos boss of locke at the box company) and he quits. so does his friend';
seq i+178, qw/1624 2322/, 'charlie finds out about hatch and complains to hugo that he wont give him peanut butter';
seq b+54.21, qw/2324 2500/, 'hugo asks female out';
seq i+179, qw/2501 3213/, 'sawyer michael jin meet whats left of tail section survivors. hugo decides to blow up the food';
seq b+54.3, qw/3215 3408/, 'hugo ans someone else write cluck you in lawn gnomes on bosses lawn. hugo has him promise that they will gold no matter what changes';
seq i+180, qw/3409 3442/, 'hugo sets food up the bomb. rose notices this';
seq b+54.4, qw/3443 3517/, 'hugo outside store that sold winning lottery ticket';
seq i+181, qw/3518 3541/, 'hugo tells rose she wouldnt get it';
seq b+54.5, qw/3542 3549/, 'dude somebody won the lottery';
seq i+182, qw/3550 3603/, 'hugo rose steve potato chips';
seq b+54.6, qw/3604 3613/, 'thats the guy';
seq i+183, qw/3614 3649/, 'hugo doesnt know what to do';
seq b+54.7, qw/3650 3702/, 'hugo in van while news takes pictures of him since he just won the lottery';
seq i+184, qw/3703 4203/, 'hugo distributes food';
ep 'S02E05', 'and found', 'jin', 'sun';
seq i+185, qw/0059 0144/, 'claire and sun talk about the bottle they found. sun loses wedding ring';
seq b+14.01, qw/0145 0437/, 'sun plans for date. jin gets ready for interview';
seq i+186, qw/0438 0546/, 'tail section and captured jin sawyer and michael are going back to main survivors';
seq i+187, qw/0600 1016/, 'sun looks for wedding ring. jin catches fish';
seq b+14.02, qw/1017 1206/, 'jin is hired as a hotel doorman';
seq i+188, qw/1207 1745/, 'jin goes off to help michael. sun and hugo wait for vincent to poop';
seq b+14.03, qw/1747 1956/, 'sun meets guy at hotel';
seq i+189, qw/1957 2441/, 'jin sees goodwin. sun trashes garden';
seq b+14.04, qw/2443 2738/, 'sun has lunch with hotel guy but doesnt stay for dessert';
seq i+190, qw/2739 3054/, 'jin see others from behind a bush';
seq b+14.05, qw/3055 3221/, 'jin quits after getting a warning from his boss for letting poor kids pee in his hotel';
seq i+191, qw/3223 4026/, 'jin and eko find michael. sun finds ring';
seq b+14.06, qw/4027 4111/, 'jin bumps into sun by a river in seoul';
seq i+192, qw/4112 4130/, 'sun and kate look to sunset';
ep 'S02E06', 'abandoned', 'shannon';
seq i+193, qw/0126 0658/, 'sayid makes shannon a tent then makes out with her. then she sees walt covered in water';
seq i+194, qw/0713 0850/, 'claire wakes baby to go see what shannon was screaming about. shannon leaves sayid and his fancy tent';
seq b+41.1, qw/0851 1057/, 'shannon teaching ballet learns her father has died in a car accident (same accident as sarah?)';
seq i+195, qw/1058 1557/, 'babies like feeling constricted. shannon uses vincent to find walt but instead finds boones grave';
seq b+41.2, qw/1559 1837/, 'boone and shannon drink at her fathers wake';
seq i+196, qw/1838 2515/, 'ana lucia tells about the others. shannon and sayid at boones grave';
seq b+41.3, qw/2516 2833/, 'shannon requests money from her fathers will but step mother wont give her any';
seq i+197, qw/2834 3611/, 'they make a stretcher for sawyer. cindy is taken';
seq b+41.4, qw/3612 3815/, 'shannon denies boones money';
seq i+198, qw/3816 4150/, 'shannon and sayid see walt in jungle. ana lucia shoots shannon';
ep 'S02E07', 'the other 48 days';
seq i+0.1, qw/0000 0330/, 'tail section falls into ocean';
seq i+1.2, qw/0347 1042/, 'that night eko kills 2 others';
seq i+1.3, qw/1045 1247/, 'day 2 eko makes stick. cindy tells that they were off course and need to stay on beach';
seq i+5.1, qw/1249 1329/, 'day 3 libby tells ana lucia that donalds leg is getting worse hes gonna be the fourth to go';
seq i+13.1, qw/1330 1401/, 'day 5 they bury donald along with several other people';
seq i+27.1, qw/1402 1524/, 'day 7 they catch a chicken. libby sits beside eko who doesnt talk after killing people';
seq i+46.1, qw/1525 1958/, 'day 12 others take 9 tailies including the kids';
seq i+51.1, qw/1959 2102/, 'day 15 they find a good spot in the jungle for camp';
seq i+64.1, qw/2103 2146/, 'day 17 ana lucia digs hole';
seq i+70.1, qw/2148 2412/, 'day 19 they put nathan in pit';
seq i+70.2, qw/2414 2756/, 'day 23 nathan still in pit. goodwin murdurs him';
seq i+70.3, qw/2757 2842/, 'day 24 they see nathan is gone so they decide to move';
seq i+77.1, qw/2845 2913/, 'day 26 on the move, ana lucia eyes goodwin';
seq i+86.2, qw/2915 3733/, 'day 27 tailies find the arrow station. ana lucia outs then kills goodwin';
seq i+121.1, qw/3736 4104/, 'day 41 bernhard talks with boone before he dies in small plane. eko speaks with ana lucia';
seq i+170.1, qw/4106 4330/, 'day 45 libby and cindy find jin washed up from the raft explosion. ana lucia goes in pit with them';
seq i+175.1, qw/4332 4353/, 'day 46 they take michael jin and sawyer to the arrow station';
seq i+175.2, qw/4356 4422/, 'day 47 they walk back to jacks beach';
seq i+197.1, qw/4425 4521/, 'day 48 ana lucia shoots shannon';
ep 'S02E08', 'collision', 'ana lucia';
seq b+60, qw/0102 0256/, 'ana lucia at psychiatrist gets badge back';
seq i+199, qw/0257 0400/, 'sayid flipstf out on eko and ana lucia';
seq i+200, qw/0414 0534/, 'ana lucia wants sayid tied up';
seq b+61, qw/0535 0742/, 'ana lucia gets a patrol car from her mother the police capn. her mother tell sher that they got her a cake and that she should act surprised';
seq i+201, qw/0743 1052/, 'jack and kate play golf. eko brings sawyer back to his camp';
seq b+62, qw/1053 1257/, 'ana lucia responds to a disturbance and flipstf out on guy after seeing female with baby';
seq i+202, qw/1259 2014/, 'michael gives sayid water. jack and kate play golf. eko brings jack sawyer. ana lucia demands bullets blankets and clothes for sayid';
seq b+63, qw/2016 2155/, 'ana lucia doesnt id the guy who shot her previously';
seq i+203, qw/2156 3350/, 'kate gives sawyer a pill. ana lucia is alone with sayid';
seq b+64, qw/3352 3504/, 'ana lucia murders jason';
seq i+204, qw/3505 4131/, 'ana lucia lets sayid go. he goes to shannon. tailies reunite with survivors';
ep 'S02E09', 'what kate did', 'kate';
seq i+205, qw/0000 0242/, 'sayid burying shannon. sawyer loves kate. kate collects food and sees horse in jungle';
seq b+0.001, qw/0243 0508/, 'kate blows up her step father in a house';
seq b+0.002, qw/0524 0727/, 'kate visits mother in diner and gives her insurance money for the house she just blew up';
seq i+206, qw/0728 1434/, 'kate tends sawyer. eko tells ana lucia hes going to shannons funeral. sawyer acts like step father asking why did you kill me';
seq b+0.003, qw/1436 1543/, 'mars gets kate before train ride to talahassee';
seq i+207, qw/1244 2305/, 'locke michael and eko watch the orientation film. kate sayid think they may be going crazy because of the things theyve seen';
seq b+0.004, qw/2306 2615/, 'kate escapes from mars custody after a black horse makes him crash the car';
seq i+208, qw/2616 3212/, 'jack chops wood. hugo stops by. kate goes back to sawyer';
seq b+0.005, qw/3213 3522/, 'kate visits her real father sam austin in the army recruitment office and says that the guy she killed (wayne?) was her biological father';
seq i+209, qw/3523 4459/, 'kate and sawyer see black horse. locke and eko view the missing pieces. michael uses the computer to talk with walt';
ep 'S02E10', 'the 23rd psalm', 'eko';
seq b+65.999, qw/0054 0341/, 'in nigeria ekos brother is forced to kill someone but cant so eko does it for him then the marauders take eko in';
seq i+210, qw/0343 0552/, 'eko sits with claire who finds out that charlie has a statue of mary containing drugs';
seq i+211, qw/0608 0816/, 'eko approaches charlie who is fishing with jin and singing the kinks to take him to the place he found the statue';
seq b+66, qw/0817 1052/, 'eko agrees to take the heroin for 50 then kills them and tells a young guy that he can live';
seq i+212, qw/1053 1509/, 'eko catches charlie in a lie about the statue and wants him to take him to the plane';
seq b+67, qw/1511 1802/, 'eko meets his brother who is now priest and asks if he can use one of his planes to transport the drugs';
seq i+213, qw/1803 2146/, 'sawyer has his hair cut by kate. eko prays by corpse of fallen drug dealer';
seq b+68, qw/2147 2409/, 'eko gets his brother to sign paper saying he and crew are now priests. eko buys mary statues';
seq i+214, qw/2411 3041/, 'charlie climbs tree. eko faces smoke monster. michael speaks with walt over computer';
seq b+69, qw/3042 3249/, 'ekos brother calls military which shoots him. the plane takes off leaving eko as a priest';
seq i+215, qw/3250 3419/, 'eko finds his brothers corpse in the plane';
seq b+70, qw/3420 3443/, 'soldier thinks eko is a priest';
seq i+216, qw/3444 4042/, 'eko and charlie pray by the burning plane. claire mad that charlie lied about the statue. hugo and libby help each other pitch tents. charlie hides a stash of statues';
ep 'S02E11', 'the hunting party', 'jack';
seq b+9.051, qw/0041 0312/, 'rich guy wants jack to operate on his spinal tumor hoping that a miracle can occur';
seq i+217, qw/0313 0427/, 'michael locks jack and locke up and leaves to get WAAALLLTT!!';
seq i+218, qw/0441 0806/, 'sawyer locke and jack plan to go after michael';
seq b+9.052, qw/0807 1145/, 'jack is being thorough with patient then comes home to sarah who says something about a pregnancy test being negative';
seq i+219, qw/1147 1643/, 'jin decides not to go after michael due to suns insistence. jack locke and sawyer still going after michael';
seq b+9.053, qw/1645 1854/, 'jack meets with daughter and christian comes in and says to be careful of the line';
seq i+220, qw/1856 2147/, 'trekking after michael they hear shots fired';
seq b+9.054, qw/2148 2417/, 'the man died in surgury. jack is kissed by gabriella';
seq i+221, qw/2418 3453/, 'the group is approached by mr friendly in the jungle and told to go back and to make sure they do they point a gun at kate who didnt listen and tried to follow them';
seq b+9.055, qw/3455 3826/, 'sarah tells jack that shes leaving him and that he shouldnt try to keep fixing things';
seq i+222, qw/3829 4039/, 'how long will it take to train an army';
ep 'S02E12', 'fire + water', 'charlie';
seq i+223, qw/0100 0436/, 'charlies dream where aaron is trapped in piano. then he gets jealous of lockes relationship with claire';
seq i+224, qw/0453 0623/, 'charlie asks claire if the babies been asking for him';
seq b+23.01, qw/0625 0849/, 'charlie views liams baby megan. liam is a junkie sleeping in on couch';
seq i+225, qw/0850 1513/, 'charlie hears baby at sea and tries to rescue it then his mum and claire tell him that the baby is in danager and that he has to rescue it. claire slaps him for taking the baby';
seq b+23.02, qw/1515 1701/, 'driveshaft is filming a babies commercial. liam is a bloody disaster';
seq i+226, qw/1702 2313/, 'hugo and libby do laundry. jack and ana lucia build a tent. charlie opens a herion statue';
seq b+23.03, qw/2315 2532/, 'liam dropped megan. charlie is writing again';
seq i+227, qw/2533 3049/, 'charlie starts a fire';
seq b+23.04, qw/3051 3230/, 'liam sold charlies piano for smack money and goes to australia';
seq i+228, qw/3232 4032/, 'while the rest puts out fire charlie tries to baptise the baby. locke punches charlie in the face. eko baptises claire and the baby';
ep 'S02E13', 'the long con', 'sawyer';
seq i+229, qw/0108 0429/, 'jack and locke lock room to guns. jack takes back group pills from sawyer';
seq b+29.01, qw/0445 0714/, 'sawyer running his con on cassidy and doesnt work. but shes to do this sort of thing too';
seq i+230, qw/0715 1552/, 'sun is attacked by unknown perpetrator';
seq b+29.02, qw/1553 1732/, 'sawyer and cassidy sell fake necklaces';
seq i+231, qw/1733 2147/, 'jack accuses ana lucia of suns attack. jin wants a gun. kate thinks ana lucia wants the guns';
seq b+29.03, qw/2149 2342/, 'cassidy wants to do long con and she has money';
seq i+232, qw/2343 2548/, 'sawyer warns locke that jack is coming to get guns. locke asks sawyer to push button';
seq b+29.04, qw/2550 2759/, 'sawyer meets his con partner in kates moms diner and he convinces him to go through with the con';
seq i+233, qw/2800 3301/, 'theres a new sheriff in town boys';
seq b+29.05, qw/3302 3525/, 'sawyer packs cassidy up with no money and tells her to get out acting like hes giving up con';
seq i+234, qw/3526 4121/, 'kate then charlie asks sawyer how he thinks of these cons';
seq b+29.06, qw/4123 4300/, 'sawyer finishes the con. goes back in the house and takes the money';
seq i+235, qw/4302 4327/, 'im not a good person charlie';
ep 'S02E14', 'one of them', 'sayid';
seq b+30.1, qw/0110 0419/, 'sayid is captured in iraq (yo kates father). sayid is asked to question his commanding officer';
seq i+236, qw/0420 0541/, 'sayid meets rousseau in jungle';
seq i+237, qw/0556 0716/, 'rousseau wants to take sayid to see something';
seq b+30.2, qw/0718 0852/, 'sayid questions his commanding officer';
seq i+238, qw/0853 1406/, 'sawyer is annoyed by a sound frog makes. finds hugo sneaking food. sayid finds henry gale. cuts him down from trap and shoots an arrow through his chest';
seq b+30.3, qw/1407 1645/, 'sayid talks to kelvin (yo desmonds hatchmate) who shows him that tariq his commanding officer used sarin gas on a village that sayid had relatives in. he tells sayid to use things in a box to torture him to reveal where a pilot is';
seq i+239, qw/1646 2346/, 'ben tells his story as henry gale. jack treats his arrow wound. they put him in the armory and sayid lockes himself in there to question him';
seq b+30.4, qw/2347 2619/, 'sayid tortures tariq and finds the pilot was executed a few days ago';
seq i+240, qw/2620 3943/, 'sayid questions benry. sawyer kills the treefrog';
seq b+30.5, qw/3945 4158/, 'kelvin lets sayid go in the middle of nowhere';
seq i+241, qw/4200 4348/, 'sayid talks with charlie about knowing benry is lying because he doesnt feel guilt';
ep 'S02E15', 'maternity leave', 'claire';
seq i+242, qw/0131 0425/, 'aaron has a fever locke goes to get jack from the hatch. rousseau approaches claire. kate chases her away';
seq i+243, qw/0442 1014/, 'claire wants libby to help her remember the ethan ordeal. locke gives benry a book';
seq i+86.01, qw/1015 1121/, 'ethan injects claire with something';
seq i+244, qw/1122 1537/, 'claire wants to find the medicine ethan injected her with. kate wants to help claire go to rousseau for medicine. claire leaves the baby with sun';
seq i+86.02, qw/1538 1841/, 'ethan shows her a nursury. mr friendly mad ethan didnt make full list';
seq i+245, qw/1842 2351/, 'claire and kate departs and meet rousseau in the jungle. eko tells jack he wants to talk with the man in the hatch';
seq i+86.03, qw/2352 2623/, 'ethan takes claire for a walk and tells her that hes going to take the baby and claire will go back to the beach';
seq i+246, qw/2625 3035/, 'claire uncovers the darma medical station';
seq i+86.04, qw/3037 3138/, 'alex wants claire to escape. she then chloroforms her';
seq i+247, qw/3139 3246/, 'claire doesnt find vaccine in cabinet';
#seq i+86.05, qw/3247 3250/, 'claire scratches rousseau';
seq i+248, qw/3251 3259/, 'claire looks at rousseaus scratch wound';
seq i+86.06, qw/3301 3416/, 'rousseau quiets claire with the butt of her rifle so others cant find her';
seq i+249, qw/3418 4511/, 'claire realizes rousseau wasnt trying to bring her back to others. claire told rousseau about alex helping her. eko tells benry about killing two of his men. locke is affected by something benry said';
ep 'S02E16', 'the whole truth', 'sun';
seq b+17.01, qw/0031 0315/, 'jin and sun want to have a baby';
seq i+250, qw/0316 0432/, 'jin rips apart suns garden to protect her from attackers';
seq i+251, qw/0448 0735/, 'locke gets ana lucia to question benry. sun is feeling queesy';
seq b+17.02, qw/0737 0957/, 'sun is getting english lessons from jae';
seq i+252, qw/0959 1645/, 'ana lucia questions ben. sun gets a pregnancy test';
seq b+17.03, qw/1647 1841/, 'doctor tells jin and sun they couldnt get married';
seq i+253, qw/1843 2521/, 'sayid charlie and ana lucia go to benrys balloon. sun is pregnant';
seq b+17.04, qw/2525 2717/, 'sun is already fluent in english yet still having lessons';
seq i+254, qw/2719 3346/, 'ana lucia talks to sayid about killing shannon. jin foxes his mistake in the garden';
seq b+17.05, qw/3348 3518/, 'doctor tells sun he lied and that jin is the one who cant reproduce';
seq i+254.9, qw/3519 4210/, 'sun tells jin shes pregnant. jack takes benry out for breakfast';
ep 'S02E17', 'lockdown', 'locke';
seq b+4.741, qw/0113 0248/, 'locke gets ready to propose to helen on picknick. helen reads that anthony cooper is dead';
seq i+255, qw/0251 0516/, 'why isnt it raining here? sayid ana lucia and charlie look up to see the balloon';
seq i+256, qw/0530 0828/, 'locke hears sounds coming from hatch pa system';
seq b+4.742, qw/0830 1018/, 'locke says that he forgives cooper at his funeral';
seq i+257, qw/1020 1308/, 'the blast doors come down on locke and benry in hatch. jack puts his mangos where his mouth is';
seq b+4.743, qw/1310 1607/, 'nadia hires locke to check her house. cooper tells locke that he faked his death so he can get 700k of which locke can have 200k of';
seq i+258, qw/1609 2154/, 'jack and sawyer play cards. blast doors come down on lockes legs';
seq b+4.744, qw/2156 2514/, 'locke is visited by two gangsters';
seq i+259, qw/2516 3110/, 'jack wins card game. henry goes to push button';
seq b+4.745, qw/3112 3521/, 'locke gives cooper money. helen walks in and denies his marriage proposal because of this';
seq i+260, qw/3523 4210/, 'airdrop. sayid group comes back and tells that they found henry gales body';
ep 'S02E18', 'dave', 'hugo';
seq i+270, qw/0000 0545/, 'hugo litters his food stash over jungle. survivors find the airdropped food. hugo goes after dave apparition';
seq i+271, qw/0603 0708/, 'libby is proud of hugo for not freakin out';
seq b+54.01, qw/0710 1003/, 'hugo and dave hang out in mental institution';
seq i+272, qw/1004 1708/, 'jack dresses lockes wound. sayid almost kills benry but ana lucia moves his arm at the last moment. dave throws coconuts at hugo';
seq b+54.02, qw/1710 1938/, 'hugo plays connect 4 with the numbers guy. doctor takes a picture of hugo with dave';
seq i+273, qw/1940 2446/, 'hugo fights sawyer. eats peanut butter';
seq b+54.03, qw/2448 3119/, 'dave doesnt exist. hugo doesnt leave mental institution with him';
seq i+274, qw/3122 4445/, 'dave explores the idea that he never left santa rosa and wants him to jump off the cliff';
seq b+54.021, qw/4448 4523/, 'libby was in santa rosa with hugo';
ep 'S02E19', 'sos', 'bernhard';
seq i+275, qw/0039 0508/, 'bernhard puts dharma food on beach cabinets. jack dresses benrys wound';
seq b+71, qw/0523 0723/, 'bernhard helps rose get her car out of the snow';
seq i+276, qw/0724 1144/, 'jack gets kate to go ask others for walt to trade. bernhard wants to build a sign';
seq b+72, qw/1146 1450/, 'bernhard proposes to rose at restaraunt by niagra falls. rose says shes dying';
seq i+277, qw/1452 1903/, 'bernhard talks to eko and charlie who are building a church';
seq b+73, qw/1905 2122/, 'bernhard and rose in australia see faith healer';
seq i+278, qw/2124 2851/, 'jack and kate get caught up in a trap and shoot their way out. bernhard builds sign';
seq b+74, qw/2853 3140/, 'isaac cant do shit for rose. rose decides to lie to bernhard about it';
seq i+279, qw/3142 3508/, 'jack and kate back at the line. bernhard working on sos. rose says shes healed';
seq b+75, qw/3511 3530/, 'bernhard and rose boarding plane';
seq i+280, qw/3531 3612/, 'its this place';
seq b+76, qw/3613 3639/, 'locke picks up roses bottle of pills';
seq i+280.9, qw/3640 4208/, 'bernhard decides not to finish sign. locke works on recreating what he saw on blast doors. michael comes out of jungle meeting kate and jack';
ep 'S02E20', 'two for the road', 'ana lucia';
seq i+281, qw/0046 0149/, 'jack and kate tend to unconscious michael after coming out of jungle';
seq b+64.1, qw/0150 0359/, 'ana lucias mother ids jasons body and knows ana lucia did it. she then quits the force';
seq i+282, qw/0400 0551/, 'locke tells ana lucia that shes the killer';
seq b+64.2, qw/0607 0907/, 'ana lucia works as airport security and talks to christian at bar who offers she come with him as a body guard';
seq i+283, qw/0908 1335/, 'benry tells locke hes one of the good ones and thats why he tried to kill ana lucia';
seq b+64.3, qw/1337 1606/, 'ana lucia accompanies christian when he goes to see claires mother';
seq i+284, qw/1607 2004/, 'hugo plans date with libby. jack treats michael who is unconscious ana lucia kisses the gun off of sawyer';
seq b+64.4, qw/2006 2234/, 'ana lucia and christian outside bar in australia';
seq i+285, qw/2235 3521/, 'jack kate and locke go to sawyer for guns. ana lucia points gun at benry';
seq b+64.5, qw/3522 3728/, 'ana lucia calls her mother from the sydnie airport';
seq i+286, qw/3730 4215/, 'im sorry, for what, blam! ana lucia and libby are dead. michael shoots himself in shoulder and allows benry to escape';
ep 'S02E21', '?', 'eko';
seq i+287, qw/0125 0612/, 'eko has a dream to follow john to the ?. libby is not quite dead';
seq i+288, qw/0630 0829/, 'john and eko go to find escaped benry';
seq b+70.1, qw/0831 1108/, 'priest eko is asked to verify a miracle on behalf of the church';
seq i+289, qw/1110 1407/, 'eko headbutts locke to get him to show him the ?';
seq b+70.2, qw/1409 1542/, 'eko listens to tape of coroner doing an autopsy of the girl who comes back to life';
seq i+290, qw/1544 2319/, 'eko and locke come across the plane. kate and sawyer gets heroin for libby. lockes dream as eko';
seq b+70.3, qw/2321 2531/, 'eko checks out the story. psychic tells him it was not a miracle';
seq i+291, qw/2532 3755/, 'eko climbs the side of the cliff and finds the ?. they go down into the pearl station. and see the orientation film';
seq b+70.4, qw/3756 3931/, 'eko is approached by the girl who drowned and she said that yemi says hello';
seq i+292, qw/3932 4518/, 'libby dies. michael looks sinister';
ep 'S02E22', 'three minutes', 'michael';
seq i+217.1, qw/0104 0331/, '13 days ago michael knocks locke out talks with walt on the computer then locks locke and jack in the armory';
seq i+293, qw/0337 0555/, 'michael wants to go after others with a small party';
seq i+219.1, qw/0617 0745/, 'michael is captured by tom friendly';
seq i+294, qw/0750 1433/, 'michael comes back to the beach. they bury ana lucia and libby';
seq i+221.1, qw/1439 1806/, 'mr friendly draws the line';
seq i+295, qw/1809 2254/, 'sayid joins the team. eko pushes the button';
seq i+221.2, qw/2301 2609/, '11 days ago ms clue asks michael about walt at the others tents';
seq i+296, qw/2613 3326/, 'michael tells sayid hes not coming. charlie throws more heroin away. sawyer talks with jack about ana lucia';
seq i+221.3, qw/3332 3907/, 'michael is told to bring benry back to others. he gets to see walt';
seq i+297, qw/3908 4419/, 'funeral for ana lucia and libby. sun notices a boat';
ep 'S02E23', 'live together die alone pt1', 'desmond';
seq i+298, qw/0201 0406/, 'jack sayid and sawyer swim out to boat and find a drunk desmond';
seq i+299, qw/0422 0617/, 'desmond asks jack if hes still pushing it and jack replies that he is';
seq b+177.999, qw/0618 0933/, 'desmond is dishonorably discharged from the scottish military. meets widmore who show him his... sentiments and offers him money to stay away from penny';
seq i+300, qw/0935 1438/, 'locke doesnt want eko to push button. michael jack kate hugo and sawyer get on their way. sayid is about to take boat';
seq b+178, qw/1440 1804/, 'desmond talks with libby about race around the world. she gives him daves boat';
seq i+301, qw/1806 2318/, 'team trekking. sayid jin and sun skippering. locke goes to talk to descmond about the button';
seq b+179, qw/2320 2558/, 'desmond about to do a tour de stad and talks to penny';
seq i+302, qw/2559 3214/, 'locke talks with desmond about stopping to push the button. boat party sees statue of a four toed foot. l and d get eko out the way then start waiting';
seq b+180, qw/3216 3643/, 'kelvin rescues desmond after washing out and introduces him to button';
seq i+303, qw/3645 4241/, 'sawyer kills one guy whos following the group. michael confesses to killing everybody. jack says they should continue going furthur';
ep 'S02E24', 'live together die alone pt2', 'desmond';
seq i+304, qw/0000 0222/, 'eko and charlie get ready to blow open the blast doors';
seq b+181, qw/0224 0532/, 'kelvin shows desmond the stains of radzinskys blood and denies that desmond be allowed to go out';
seq i+305, qw/0534 0712/, 'eko blows up the hatch';
seq b+182, qw/0713 0923/, 'kelvin explains the failsafe to the button but doesnt have the courage to turn the key';
seq i+306, qw/0924 1629/, 'sayid finds others fake camp. trek team is hit with tranquilizer darts. desmond reads pearl station printouts';
seq b+183, qw/1630 2151/, 'kelvin goes out. desmond follows him. finds hes planning on leaving. desmond accidentally kills him. he pushes the button late';
seq i+307, qw/2153 2648/, 'trekking team is lined on dock. desmond thinks by not pushing the button he crashed oceanic 815. locke destroys computer';
seq i+122.1, qw/2650 2953/, 'desmond suicide ready, opens "our mutual friend", and reads pennys letter. flips out "its all gone". then he hears locke lamenting outside the hatch';
seq i+308, qw/2954 4301/, 'the station starts to be destroyed. locke was wrong. desmond turns the failsafe key. the island glows and shines brightly. hatch door is blown off. ben lets michael and walt go on boat to follow coordinates 325. hugo is sent back and the rest are taken back to the others camp. antarctic team calls penny saying that they have found the island';
ep 'S03E01', 'a tale of two cities', 'jack';
seq i+0.01, qw/0030 0421/, 'juliet burns hands and muffins thens has a book club meeting. they experience an earthquake go outside to see oceanic 815 break apart. ben sends goodwin and ethan to infiltrate';
seq b+9.0551, qw/0437 0521/, 'jack spies on sarah teaching school and getting close to another man';
seq i+309, qw/0522 1036/, 'jack awakes in holding cell. kate asked to shower. sawyer in outdoor cages. jack meets juliet';
seq b+9.0552, qw/1038 1233/, 'jack and sarah meet to discuss divorce settlement';
seq i+310, qw/1235 1732/, 'jack pulls on chain. kate takes a shower, wears dress, then meets ben for brunch';
seq b+9.0553, qw/1733 1919/, 'jack tries all the numbers on sarahs phone bill to find him then sees christian getting a call from her and suspects hes the one';
seq i+311, qw/1921 2704/, 'sawyer and carl try to escape. juliet tranqs sawyer. jack sits at far end of his cell so juliet can give him food';
seq b+9.0554, qw/2705 2943/, 'jack flips out on christian at an aa meeting';
seq i+312, qw/2944 3828/, 'jack opens door. the place floods with water. jack and juliet close the door. sawyer figures out how to get food and gives some to the newly arrived kate';
seq b+9.0555, qw/3830 4024/, 'sarah bails jack out of prison. it doesnt matter who he is it matters who hes not';
seq i+313, qw/4025 4213/, 'juliet tells jack sarah is happy then goes to feed him. ben congratulates her on a job well done';
ep 'S03E02', 'the glass ballerina', 'sun';
seq b+14.001, qw/0031 0154/, 'sun breaks glass ballerina and lies about it to mr paik';
seq i+314, qw/0155 0550/, 'sayid wants to light another smoke signal another place on the island. jack imprisoned. ben sends colleen to get the elizabeth';
seq i+315, qw/0604 0823/, 'sawyer and kate are taken out to do some work';
seq b+17.051, qw/0824 1020/, 'mr paik walks in on sun and jae sleeping together';
seq i+316, qw/1022 1207/, 'sawyer and kate are set up to work';
seq b+17.052, qw/1209 1407/, 'mr paik sends jin on a mission to kill jae';
seq i+317, qw/1409 1901/, 'sawyer and kate working. jin sun sayid build fire';
seq b+17.053, qw/1903 2122/, 'sun and jin have dinner. sun is unsure that jin knows about her infidelity';
seq i+318, qw/2124 2632/, 'jin asks for gun and sends sun to hide in ship. sawyer kisses kate while shes working in dress. hostiles board ship';
seq b+17.054, qw/2634 2906/, 'jin tells jae to disappear or hell kill him. other mr paik employee throws him out the window onto jins car holding pearls';
seq i+319, qw/2908 3237/, 'sun shoots colleen and escapes from boat meeting jin in water';
seq b+17.055, qw/3238 3356/, 'sun and mr paik attend jaes funeral';
seq i+320, qw/3358 4212/, 'sawyer and kate back to their cages. ben shows jack red sox victory';
ep 'S03E03', 'further instructions', 'locke';
seq i+321, qw/0137 0443/, 'locke wakes up from hatch mute and wants to speak with the island';
seq i+322, qw/0501 0604/, 'locke needs charlies help while he communes';
seq b+4.7451, qw/0606 0904/, 'locke picks up eddie. they get pulled over';
seq i+323, qw/0905 1619/, 'locke takes his hallucinogenics. locke and charlie go to save eko';
seq b+4.7452, qw/1612 1840/, 'locke invites eddie to work with him on the compound';
seq i+324, qw/1842 2251/, 'charlie and locke find hatch imploded and are chased by the polar bear. hugo meets them on his way back to the beach';
seq b+4.7453, qw/2253 2456/, 'eddie notices greenhouse and wants in on whatever they are trying to blow up';
seq i+325.999, qw/2458 2826/, 'hugo finds naked desmond. locke goes into cave to find eko';
seq b+4.7454, qw/2828 3006/, 'eddie is discovered to be a cop. locke offers to take care of him';
seq i+326, qw/3008 3348/, 'locke saves eko from polar bear in cave. desmond is having visions of future events';
seq b+4.7455, qw/3350 3624/, 'johns a hunter but decides not to shoot eddie';
seq i+327, qw/3626 4102/, 'locke gives speech that hes going to get jack kate and sawyer back. hugo is confounded';
ep 'S03E04', 'every man fo himself', 'sawyer';
seq i+328, qw/0034 0523/, 'desmond offers to fix claires roof. jack and juliet talk. sawyer sees colleen injured and thinks thats their ticket out';
seq i+329, qw/0539 0731/, 'sawyer thinks of a way to electify picket';
seq b+29.061, qw/0733 1013/, 'sawyer in prison';
seq i+330, qw/1015 1902/, 'ben has someone inject sawyers heart with something. desmond gets golf club. ben shows the effect of what he injected sawyer with using a bunny. sawyer tries to lower his heart rate while kate changes nearby';
seq b+29.062, qw/1904 2054/, 'sawyer in prison. sawyer finds out he has a daughter clementine';
seq i+331, qw/2056 2630/, 'others bring jack to operate on colleen who dies on the table. picket flips out';
seq b+29.063, qw/2632 2748/, 'sawyer in prison';
seq i+332, qw/2750 3504/, 'kate and sawyer dont leave their cages even though kate can get out through the bars in the top. jack notices bens spinal xrays. desmond sets up the golf lightning rod. ben takes sawyer for a walk';
seq b+29.064, qw/3506 3725/, 'sawyer gets out of jail by getting the governments money from the guy who took it';
seq i+333, qw/3727 4215/, 'ben sawyer walk reveal heart poison con and that theyre on another island';
ep 'S03E05', 'the cost of living', 'eko';
seq b+65.1, qw/0054 0229/, 'eko steals crackers for yemi';
seq i+334, qw/0231 0319/, 'eko is unconscious';
#seq i+335, qw/0321 0410/, 'eko dreams about what happened in S02E21 flashbacks';
seq i+336, qw/0411 0551/, 'eko sees his brother tell him that he needs to be judged. his tent burns down and he disappears';
seq i+337, qw/0608 1107/, 'jack and ben go to colleens funeral. locke sayid and desmond go to communicate with the others at another dharma hatch';
seq b+70.01, qw/1108 1321/, 'eko takes yemis place in his church and on his trip to london in the upcoming week';
seq i+338, qw/1323 1617/, 'eko has visions stating that he should confess. locke goes to pearl station. nikki and paulo comes along. eko stops for some water';
seq b+70.02, qw/1619 1830/, 'eko is confronted by badman who wants the vaccine and to make his point he shoots a random woman';
seq i+339, qw/1832 2340/, 'ben talks with jack about getting him to do his surgery. locke meets up with eko';
seq b+70.03, qw/2342 2459/, 'eko goes to old partner to sell some vaccine';
seq i+340, qw/2501 2805/, 'eko waits by plane. lockes group goes into the pearl station';
seq b+70.04, qw/2807 2955/, 'eko kills the guys who wanted the vaccine';
seq i+341, qw/2957 3456/, 'lockes group find the station with computers in it and a guy with a patch. juliet gives jack conflicting messages';
seq b+70.05, qw/3458 3623/, 'eko owes yemi a church';
seq i+342, qw/3625 4126/, 'eko follows yemi and cofesses that he did nothing wrong. he did the best with the life he was given. yemi says that hes not yemi. smoke monster kills eko';
seq b+65.2, qw/4127 4139/, 'eko with yemi';
seq i+343, qw/4139 4218/, 'eko dies. everyone else is next';
ep 'S03E06', 'i do', 'kate';
seq b+0.051, qw/0028 0152/, 'kate and cop kevin are a couple';
seq i+344, qw/0154 0441/, 'jack denies bens request for surgery';
seq b+0.052, qw/0458 0622/, 'kate is going to marry kevin';
seq i+345, qw/0624 1141/, 'kate sawyer cages work team. locke and sayid go back to beach with detour first. kate goes with juliet to save sawyers life';
seq b+0.053, qw/1143 1409/, 'kevin and kate get married';
seq i+346, qw/1411 1739/, 'kate visits jack and asks that he perform the surgery';
seq b+0.054, qw/1741 2002/, 'kate shops for taco night groceries and calls mars asking him to stop chasing her';
seq i+347, qw/2004 2556/, 'kate and sawyer make love in cages';
seq b+0.055, qw/2558 2714/, 'kevin presents kate with tickets on an oceanic plane for their honeymoon';
seq i+348, qw/2716 3150/, 'sawyer says he loves kate. jack sees kate and sawyer together. jack says he will do bens operation';
seq b+0.056, qw/3152 3433/, 'kate doesnt do taco night';
seq i+349, qw/3435 4209/, 'jack operates on bens spine. picket goes to kill sawyer. jack makes an incision on bens kidney and tells kate to run';
ep 'S03E07', 'not in portland', 'juliet';
seq b+77, qw/0050 0324/, 'juliet injects her cancer pregnant sister with medicine';
seq i+350, qw/0400 0511/, 'juliet sends people to retrieve kate and sawyer';
seq b+78, qw/0529 0754/, 'juliet steals medicine and runs into her boss';
seq i+351, qw/0755 1237/, 'alex help sawyer and kate get away. ben wakes up during surgery and tells them to get juliet';
seq b+79, qw/1240 1445/, 'ed wants in on juliets research';
seq i+352, qw/1446 1847/, 'juliet speaks with ben then goes to help kate and sawyer escape';
seq b+80, qw/1850 2058/, 'richard pitches juliet join middlos science as fertility researcher';
seq i+353, qw/2100 2535/, 'sawyer kate and alex rescue carl from brainwashing';
seq b+81, qw/2537 2800/, 'juliets sister gets pregnant. ed gets hits by a bus';
seq i+354, qw/2802 3504/, 'juliet kills picket. kate tells jack the story about being afraid while giving surgery over the walkie talkie';
seq b+82, qw/3506 3552/, 'juliet sees eds body in morgue';
seq i+355, qw/3554 3729/, 'jack wants to know what ben said';
seq b+83, qw/3731 3949/, 'richard and ethan visits juliet';
seq i+356, qw/3951 4043/, 'juliet tells jack that ben said he would let juliet go home';
ep 'S03E08', 'flashes before your eyes', 'desmond';
seq i+357, qw/0100 0500/, 'desmond saves claire from drowning in the ocean';
seq i+358, qw/0516 1043/, 'charlie hugo and desmond drink mccutchins';
seq b+177.1, qw/1126 3638/, 'desmond wakes up in apartment covered in red paint. he goes to interview with widmore who tells him he in unworthy of his daughter. he gets a wedding ring, talks with aloise hawking, breaks up with penny, throws the ring into the river, and gets hit with a cricket bat when he changes the past';
seq i+325.1, qw/3643 3829/, 'desmond wakes up after the hatch implodes and asks to go back to make things right with penny';
seq i+359, qw/3910 4212/, 'desmond tells charlie that he was really saving him not claire and that hes gonna die anyway';
ep 'S03E09', 'stranger in a strange land', 'jack';
seq i+360, qw/0032 0335/, 'sawyer and kate on boat. jack is moved while juliet takes his spot in the aquarium cell';
seq b+9.05501, qw/0352 0604/, 'jack is in thailand meets achara while trying to fly a kite';
seq i+361, qw/0606 1135/, 'sawyer kate and carl set up camp. juliet asks jack for help on ben';
seq b+9.05502, qw/1137 1322/, 'jack eats food with achara';
seq i+362, qw/1324 1639/, 'isabelle takes jack to answer a few questions. jack denies that juliet told him to botch the surgery';
seq b+9.05503, qw/1642 1835/, 'stop asking questions lets have fu...';
seq i+363, qw/1837 2709/, 'jack meets cindy. sawyer talks to carl. jack offers medical care to ben if he commutes juliet';
seq b+9.05504, qw/2711 3057/, 'acharas gift was that she sees who people are and defines that on the tattoo she gives him';
seq i+364, qw/3058 3208/, 'alex brings the note from ben. juliet will be marked';
seq b+9.05505, qw/3211 3407/, 'thai locals beat jack telling him he must leave thailand and can never return';
seq i+365, qw/3409 4039/, 'juliet is marked. jack takes a boat back to main island with ben';
ep 'S03E10', 'tricia tanaka is dead', 'hugo';
seq b+54.001, qw/0000 0255/, 'kid hugo. father leaves to work in vegas';
seq i+366, qw/0257 0655/, 'hugo follows vincent to vw bus';
seq b+58.1, qw/0710 0933/, 'tricia tanaka dies in hugos new mr clucks store when it gets hit by an asteroid';
seq i+367, qw/0935 1431/, 'hugo gets people to fix up the bus. kate and sawyer get back';
seq b+58.2, qw/1433 1555/, 'cheech comes back to hugos mother';
seq i+368, qw/1557 2024/, 'jin and hurley work on bus sawyer join them. kate goes to get help (from who? rousseau)';
seq b+58.3, qw/2026 2256/, 'hugo wants to give his money away. hugo shows cheech the car he saved';
seq i+369, qw/2258 2551/, 'jin cant make the bus to work';
seq b+58.4, qw/2553 2856/, 'hugo and cheech visit psychic for an exorcism. its found that cheech put the psychic up to it';
seq i+370, qw/2858 3219/, 'hugo gets charlie to help with car. they push it to a precipice';
seq b+58.5, qw/3221 3418/, 'hugo packs for australia';
seq i+371, qw/3420 4211/, 'hugo and charlie ride down the hill and start the car. kate meets rousseau sayid and locke to get jack back';
ep 'S03E11', 'enter 77', 'sayid';
seq i+372, qw/0048 0418/, 'survivors set up a ping pong table. sayid finds the flame';
seq i+373, qw/0434 0737/, 'sawyer plans ping pong game for his stuff back. sayid plans on going unarmed to meet the guy with a patch';
seq b+34.01, qw/0739 0911/, 'sayid is approached by a fellow iraqi to cook in his restaurant';
seq i+374, qw/0913 1438/, 'sayid is shot. mikhail says hes the last member of the dharma initiative';
seq b+34.02, qw/1440 1601/, 'sayid is jumped when najira said sayid is the one who tortured her';
seq i+375, qw/1603 2114/, 'sayid wound is cleaned out. hurley destroys sawyer at ping pong. the group beats up mikhail';
seq b+34.03, qw/2116 2358/, 'sayid is tied up in pantry denies he tortured sammys wife';
seq i+376, qw/2400 2432/, 'sayid uncovers hidden basement';
seq b+34.04, qw/2434 2625/, 'sayid is tortured';
seq i+377, qw/2627 3552/, 'kate and sayid explore basement. mikhail shoots other other. mr chang says to enter 77 if the hostiles took over. sayid can follow the wire map to the barracks';
seq b+34.05, qw/3554 4023/, 'najira tells sayid that she rescued the cat that never fully feels safe. she also wants sayid to remember her. sayid confesses. she will let him go';
seq i+378, qw/4025 4206/, 'locke entered 77 and the flame blows up';
ep 'S03E12', 'par avion', 'claire';
seq b+35.1, qw/0044 0138/, 'claire is in a car crash. mother died';
seq i+379, qw/0139 0507/, 'charlie day siezes with claire';
seq i+380, qw/0522 0709/, 'claire has an idea to add a message to a bird migrating south';
seq b+35.2, qw/0711 0841/, 'claire gets sticked up then asked a few questions from police';
seq i+381, qw/0843 1434/, 'charlie doesnt see the point in the bird thing. sayid locke kate mikhail come to the pilons';
seq b+35.3, qw/1436 1653/, 'claires mother is in coma. someone is taking care of payment';
seq i+382, qw/1655 2327/, 'desmond messes up claire bird plan. locke sends mikhail through sonic fence';
seq b+35.4, qw/2329 2527/, 'christian visits claires mother and says he her father';
seq i+383, qw/2528 2839/, 'group goes over pilons. claire goes to get some answers';
seq b+35.5, qw/2841 3231/, 'christian has coffee with claire asks her to unplug mother';
seq i+384, qw/3233 3538/, 'desmond gets bird and gives it to claire';
seq b+37.1, qw/3540 3849/, 'claire visits mother in hospital';
seq i+385, qw/3851 4206/, 'charlie and claire set message in the birds band. the group finds the barracks';
ep 'S03E13', 'the man from tallahassee', 'locke';
seq b+4.81, qw/0040 0206/, 'locke wants unemployment for depression';
seq i+385.1, qw/0208 0342/, 'jack seems to have defected';
seq i+385.2, qw/0359 0451/, 'locke plans to wait till dark to approach jack';
seq b+4.82, qw/0453 0710/, 'peter visits locke about cooper';
seq i+386, qw/0712 1303/, 'kate sneaks into jacks house while hes playing piano then get caught with sayid. locke is still free though. locke visits ben and wants info about the submarine. ben tells richard to get him the man from tallahassee. locke sends alex to retrieve his bag';
seq b+4.83, qw/1305 1501/, 'locke tells cooper to leave the current con';
seq i+387, qw/1503 2138/, 'john talks with ben. jack talks with kate';
seq b+4.84, qw/2141 2243/, 'feds tell locke peter talbits dead';
seq i+388, qw/2245 3319/, 'locke and ben talk about the healing power of the island. alex gets sayids pack';
seq b+4.85, qw/3321 3452/, 'cooper throws locke out the window';
seq b+4.86, qw/3542 3638/, 'locke gets the wheelchair';
seq i+389, qw/3640 4039/, 'ben is pleased. ben shows locke a bound cooper';
ep 'S03E14', 'expose', 'nikki', 'paulo';
seq i+390, qw/0000 0029/, 'nikki is running through the jungle buring something';
seq b+84, qw/0031 0258/, 'mr lashod is the cobra. nikki gets shot in her role on the show expose';
seq i+391, qw/0300 0355/, 'nikki comes out of jungle saying something like pa..li..s..d';
seq b+85, qw/0412 0639/, '84 days ago paulo and nikki drug and steal this old guys diamond. razzle frickn dazzle';
seq i+392, qw/0642 0732/, 'plywood, power lines, paulo lies!';
seq b+86, qw/0734 0855/, 'paulo nikki happy that theyre getting away with murder and see shannon boone';
seq i+1.11, qw/0857 1043/, 'nikki paulo retconned into 815 plane crash';
seq i+393, qw/1045 1158/, 'sawyer spills out possibly poison water. jin suggests monster did it';
seq i+21.11, qw/1200 1354/, '75 days ago nikki paulo meets ethan. retconned into jacks "if we cant live together were gonna die alone"';
seq i+394, qw/1356 1440/, 'sawyer jin and hugo discuss apparent deaths of nikki and paulo';
seq i+77.2, qw/1442 1736/, 'nikki talks with arzt. they find the pearl but dont go in';
seq i+395, qw/1738 1905/, 'hugo finds expose script. immediately reads that mr lashod was the cobra. sawyer finds walkie talkie in their belongings and say that they were working with the others';
seq i+107.1, qw/1907 2055/, 'paulo dives into water finding bag of diamonds then lies about it';
seq i+396, qw/2057 2155/, 'sawyer goes on a perimeter sweep';
seq i+209.1, qw/2157 2513/, 'paulo hides diamonds in the bathroom of the pearl and overhears ben plotting with juliet';
seq i+397, qw/2515 2742/, 'desmond tells hugo that nikki was yelling at sawyer this morning. charlie confesses to attacking sun';
seq i+340.1, qw/2744 2906/, '9 days ago nikki paulo attends group to pearl and puts diamonds in pants';
seq i+398, qw/2908 3050/, 'sawyer confesses that he had nothing to do with their deaths';
seq i+389.1, qw/3053 3301/, '12 hours ago nikki notices nicotine gum fell out of paulos pocket then asks sawyer for a gun';
seq i+399, qw/3303 3512/, 'sun slaps sawyer for the events of the long con. nikki paulo funeral';
seq i+389.2, qw/3514 3910/, 'nikki throws medusa spider on paulo. he becomes paralyzed. nikki gets diamonds then is bitten too. she buries the diamonds then becomes paralyzed herself';
seq i+400, qw/3912 3957/, 'nikki paulo are buried alive';
ep 'S03E15', 'left behind', 'kate';
seq i+401, qw/0113 0204/, 'kate gets pwnt by juliet';
seq b+0.0051, qw/0206 0420/, 'kate helps cassidy with the necklace scam';
seq i+402, qw/0422 0557/, 'locke talks to kate that hes going with the others';
seq i+403, qw/0613 0904/, 'hugo tells sawyer theyre thinking of banishing him. others gas kate';
seq b+0.0052, qw/0906 1104/, 'cassidy agrees to help kate talk with her mother';
seq i+404, qw/1106 1553/, 'kate wakes up in jungle attached to juliet. sawyer wants to make ammens';
seq b+0.0053, qw/1555 1857/, 'cassidy just selling bibles. kate wants to know why her mother betrayed her';
seq i+405, qw/1859 2709/, 'kate and juliet fight then hide from smokey. sawyer is nice to claire. kate pops juliets arm back in the socket. sawyer goes hunting with desmond';
seq b+0.0054, qw/2711 2951/, 'kate visits mother in diner bathroom';
seq i+406, qw/2953 3925/, 'kate juliet run from smokey fall in mud and use pilons to evade the smoke monster. it is revealed that hugo has run the lamest con on sawyer. kate meets jack who plans on going back';
seq b+0.0055, qw/3927 4043/, 'kate says goodbye to cassidy (who reveals she is pregnant with sawyers baby)';
seq i+407, qw/4045 4207/, 'juliet is coming with them because they left her behind too';
ep 'S03E16', 'one of us', 'juliet';
seq i+408, qw/0038 0306/, 'kate sayid jack and juliet make camp';
seq b+83.1, qw/0308 0514/, 'juliet says goodbye to her sister before starting to work for mittlos science';
seq i+409, qw/0516 0614/, 'sayid must wait till juliet is ready to tell him about her life. shes under jacks protection';
seq i+410, qw/0629 0820/, 'claire doesnt hear aaron crying. charlie takes him for a bit';
seq b+83.2, qw/0822 1313/, 'juliet drinks the orange juice and comes to the island on the sub';
seq i+411, qw/1315 1719/, 'jack kate sayid and juliet come back to the beach. juliet is ostracised';
seq b+83.3, qw/1721 2043/, 'juliet loses a patient. ben says that jacob will cure rachels cancer if she stays';
seq i+412, qw/2045 2543/, 'jack sticks up for juliet. claire becomes sick. juliet explains';
seq b+83.4, qw/2545 2926/, 'ben is diagnosed with cancer. juliet wants to go home';
seq i+413, qw/2928 3147/, 'sayid and sawyer confront juliet as she gets the case of medicine';
seq i+0.02, qw/3149 3624/, '815 crashes. ben shows juliet rachel with her baybay at the flame';
seq i+414, qw/3626 4008/, 'juliet cures claire. jack tells juliet that because she wanted to get off the island shes "one of us"';
seq i+400.1, qw/4010 4106/, 'juliet and ben go over how shes going to infiltrate the survivors (claire has an implant that the others can trigger her sickness?)';
seq i+400.2, qw/4128 4159/, 'ben says that hell see juliet in a week';
seq i+415, qw/4200 4216/, 'juliet finishes building her shelter';
ep 'S03E17', 'catch-22', 'desmond';
seq i+416, qw/0113 0357/, 'desmond has a flash of charlie getting an arrow through his neck. desmond asks hugo where the wire is because someones coming';
seq b+177.01, qw/0415 0554/, 'desmond is a monk finishing the vow of silence';
seq i+417, qw/0556 1343/, 'do you need me to make you a mix tape. desmond and hugo get jin and charlie to go camp near wire in the sand';
seq b+177.02, qw/1345 1459/, 'desmond packages moriah wine gets punched in the face';
seq i+418, qw/1501 2235/, 'kate and sawyer sleep together. jin tells scary stories by the campfire. they see a light from someone who jumped from a helicopter';
seq b+177.03, qw/2237 2513/, 'desmond tells ruth why he flaked on the wedding';
seq i+419, qw/2515 3117/, 'jack and sawyer play ping pong. desmond climbs on hugo to get a pack containing a picture of penny';
seq b+177.04, qw/3119 3342/, 'desmond drinks the monestaries wine and is fired from being a monk there';
seq i+420, qw/3344 3730/, 'desmond pushes charlie out the way of the arrow. they find the parachuter unmoving and caught in a tree';
seq b+177.05, qw/3732 3844/, 'desmond loads the cases of wine into pennys car before leaving the monestary';
seq i+421, qw/3846 3902/, 'desmond climbs the tree to cut the parachuter down';
seq b+177.06, qw/3904 3938/, 'desmond talks with penny';
seq i+422, qw/3940 3948/, 'desmond cuts the parachuter down from the tree';
seq b+177.07, qw/3950 4006/, 'penny invites desmond to carslyle with her to help unload the wine from her car';
seq i+423, qw/4008 4013/, 'parachuter falls from the tree';
seq b+177.08, qw/4014 4039/, 'penny introduces herself';
seq i+424, qw/4039 4119/, 'desmond uncovers the parachuter to find naomi not penny';
ep 'S03E18', 'DOC', 'sun';
seq i+425, qw/0039 0221/, 'jack checks in on sun';
seq b+15.11, qw/0223 0432/, 'jins mother threatens to reveal that jins mother is a prostitute if sun doesnt pay her $100k';
seq i+426, qw/0434 0616/, 'naomi has a branch in her gut. hugo uses flare gun';
seq b+15.12, qw/0630 0801/, 'jin has no pictures of his family';
seq i+427, qw/0803 1437/, 'sun asks juliet what happens to pregnant women. mikhail approaches the group offering to help naomi';
seq b+15.13, qw/1439 1741/, 'sun visits jins father';
seq i+428, qw/1743 1954/, 'juliet wants to take sun to check on her baby';
seq b+15.14, qw/1956 2246/, 'sun requests money from mr paik who says jin will have the debt';
seq i+429, qw/2247 3231/, 'mikhail punctures naomis lung to drain it of blood. desmond lets him walk away. juliet checks suns fetus';
seq b+15.15, qw/3233 3458/, 'jin finds money in suns purse and asks sun to return it to her father';
seq i+430, qw/3500 3643/, 'sun sees her baby and determines that its jins';
seq b+15.16, qw/3645 3746/, 'sun gives jins mother the money';
seq i+431, qw/3748 4214/, 'juliet gives ben a message about suns pregnancy. naomi tells hugo they found the plane with no survivors';
ep 'S03E19', 'the brig', 'locke';
seq i+432, qw/0102 0137/, 'locke burns the others file on cooper';
seq i+389.01, qw/0140 0305/, '8 days ago locke gets bit by bound cooper and decides to come with others when they move';
seq i+433, qw/0307 0506/, 'kate sleeping with sawyer goes back to her tent. sawyer taking a leak is approached by locke';
seq i+434, qw/0521 0701/, 'locke asks sawyer to kill ben for him';
seq i+431.1, qw/0703 0956/, '3 days ago others set up camp. ben tells locke hes going to have to kill cooper to join them';
seq i+435, qw/0958 1812/, 'locke sawyer trek. sayid talks with naomi who says that penny sent her to find desmond';
seq i+431.2, qw/1814 2154/, '3 days ago ben gives locke a knife to kill cooper with. but locke is unable to go through with it';
seq i+436, qw/2156 2558/, 'locke locks sawyer in the brig with cooper. sayid fixes sat phone but theres interference';
seq i+431.3, qw/2600 2803/, 'richard gives locke a file on sawyer';
seq i+437, qw/2805 3205/, 'sawyer finds out that the man in the brig is the sawyer he wantd to kill';
seq i+431.4, qw/3207 3335/, 'others move out. ben tells locke that he can track them if hes carrying hers fathers corpse on his back';
seq i+438, qw/3337 4212/, 'sawyer gives cooper his letter then kills him with chains. kate tells jack and juliet about the woman who parachuted on the island. sawyer goes back to the camp to expose juliet. locke takes the body with him';
ep 'S03E20', 'the man behind the curtain', 'ben';
#seq d+1, qw/0054 0304/, '1964 bens mother dies in childbirth in portland. horace stops car to help';
seq b+1E-5, qw/0054 0304/, '1964 bens mother dies in childbirth in portland. horace stops car to help';
seq i+439, qw/0306 0427/, 'ben lost recorder. locke makes it back to his camp with dead cooper';
seq i+440, qw/0444 0645/, 'ben tells locke that jacob gives him orders';
#seq d+2, qw/0646 0931/, 'ben is kid and he arrives on the island. roger unpleased to be a workman';
seq b+2E-5, qw/0646 0931/, 'ben is kid and he arrives on the island. roger is not pleased to be a workman';
seq i+441, qw/0933 1256/, 'ben surprised to find out that a woman from the freighter parachuted onto the island. but they cant do anything because ben needs to take locke to see jacob. alex gives locke a gun for the trip';
#seq d+3, qw/1258 1526/, 'the hostiles attack while ben is in school. later he sees his mother';
seq b+3E-5, qw/1258 1526/, 'the hostiles attack while ben is in school. later he sees his mother';
seq i+442, qw/1528 1712/, 'sawyer tells kate about the tape. locke and ben go to see jacob';
#seq d+4, qw/1712 2018/, 'roger tells ben happy birthday despite killing his mother the day he was born. ben runs towards pilons and sees mother again';
seq b+4E-5, qw/1712 2018/, 'roger tells ben happy birthday despite killing his mother the day he was born. ben runs towards pilons and sees mother again';
seq i+443, qw/2020 2316/, 'the survivors listen to juliet and bens tape';
#seq d+5, qw/2318 2709/, 'ben goes into the others jungle and richard tells him that to join them hes going ot have to be very patient';
seq b+5E-5, qw/2318 2709/, 'ben goes into the others jungle and richard tells him that to join them hes going ot have to be very patient';
seq i+444, qw/2711 3400/, 'locke and ben see jacob in the cabin';
#seq d+6, qw/3402 4004/, 'ben kills roger with poison gas';
seq b+6E-5, qw/3402 4004/, 'ben kills roger with poison gas';
seq i+445, qw/4006 4214/, 'ben shoots locke and leaves him in the dharma mass grave';
ep 'S03E21', 'greatest hits', 'charlie';
seq i+446, qw/0107 0408/, 'jack tells everyone that he juliet and rousseau are planning on blowing others up with dynomite';
seq b+20.1, qw/0424 0530/, 'charlie first hears his song on the radio';
seq i+447, qw/0532 1028/, 'juliet tells sayid and jack about the looking glass blocking signals. desmond tells charlie that he has to die in order for rescue to occur';
seq b+20.01, qw/1030 1140/, 'youre swimming charlie!';
seq i+448, qw/1142 1734/, 'charlie writes the event down on paper. charlie volunteers for suicide mission saying he can hold his breath for 4 minutes. carl comes and tells everyone the others are coming soomer than was originally expected';
seq i+445.1, qw/1741 2025/, 'ben gets back from trying to kill locke and expedites the attack on the 815 survivors. alex sends carl to warn them';
seq i+449, qw/2027 2204/, 'a plan is hatched. jack needs charlie and desmond to turn off the signal jamming at the looking glass';
seq b+20.2, qw/2206 2419/, 'liam gives charlie the ds ring (driveshaft is named after dexter stratton? whos that?)';
seq i+450, qw/2421 2706/, 'charlie and claire kiss';
seq b+23.041, qw/2709 2838/, 'charlie busking. saves nadia from a mugger. she tells him hes a hero';
seq i+451, qw/2840 3458/, 'getting ready for the attack. hugo is denied passage on charlies boat';
seq i+1.01, qw/3500 3653/, 'charlie meets claire';
seq i+452, qw/3655 4220/, 'finishes writing his top five list. charlie hits desmond and goes down to looking glass';
ep 'S03E22', 'through the looking glass pt1', 'jack';
seq O+1, qw/0000 0356/, 'jack is on plane reads that bentham died. he tries to suicide but someone is in a car crash and he decides to help them';
seq i+453, qw/0358 0724/, 'jack leads everyone out leaving sayid bernhard and jin to shoot at the tents';
seq i+454, qw/0741 1434/, 'jin messes up shooting the dynomite. the shooters are captured';
seq O+2, qw/1436 1654/, 'sarah visits jack in the hospital';
seq i+455, qw/1656 2704/, 'jack leading everyone to radio tower. ben is also going there to talk them out of it. desmond wakes up and goes down the looking glass';
seq O+3, qw/2706 2937/, 'jack wants to do the surgury on the woman he saved but dr hamil says someone else is going to do it';
seq i+456, qw/2939 3930/, 'sawyer and juliet go back to the camp. ben explains to mikhail why jammed the signals. locke in mass grave sees walt';
ep 'S03E23', 'through the looking glass pt2', 'jack';
seq i+457, qw/0000 0126/, 'jack says he loves kate';
seq O+4, qw/0128 0429/, 'jack is the only one that goes to benthams funeral';
seq i+458, qw/0431 0827/, 'ben approaches jacks group. mikhail shoots both female others in the looking glass. desmond shoots mikhail';
seq O+5, qw/0829 0927/, 'jack tries to get more oxycodone. pharmacist wont refill it';
seq i+459, qw/0929 1413/, 'ben and jack talk. jack hears tom kill bernhard jin and sayid';
seq i+460, qw/1414 2118/, 'charlie gets the code for the jamming device. hugo sawyer and juliet rescues jin sayid and berhard';
seq O+6, qw/2120 2431/, 'dr hamil asks what jack was doing on the bridge';
seq i+461, qw/2433 3729/, 'hugo tells jack what happened. charlie types in good vibrations and talks with penny. mikhail blows up the room charlies in. charlie writes "not pennys boat" on hand before drowning. locke kills naomi. jack answers the phone and talks to minkowski';
seq O+7, qw/3731 4325/, 'jack talks to kate: "We have to go baaack!"';
ep 'S04E01', 'the beginning of the end', 'hugo';
seq o+1, qw/0054 0322/, 'hugo car chase arrest';
seq o+2, qw/0339 0615/, 'hugo thanks the detective for offering to put him in the nut house';
seq i+462, qw/0617 1505/, 'desmond tells hugo and rest on beach the people on the boat arent who they say they are. they go to warn jacks group';
seq o+3, qw/1507 1722/, 'abaddon visits hugo in the mental institution';
seq i+463, qw/1724 2806/, 'naomi dies again. hugo finds jacobs shack. everyone meets up. hugo tells claire charlies dead';
seq o+4, qw/2808 3050/, 'hugo talks with dead charlie';
seq i+464, qw/3052 3718/, 'hugo claire ben sawyer decide to go with locke. the rest still want rescue with jack';
seq o+5, qw/3720 4008/, 'jack visits hugo. they play horse';
seq i+465, qw/4010 4147/, 'jack meets faraday';
ep 'S04E02', 'confirmed dead', 'science team';
seq i+365.1, qw/0050 0300/, 'faraday upset they found the remains of flight 815';
seq i+464.1, qw/0302 0431/, 'faraday is here to rescue jack';
seq i+466, qw/0449 1308/, 'locke looks for cabin. faraday team finds miles';
seq i+365.2, qw/1310 1710/, 'miles talks to dead gang member and finds his stash of money';
seq i+467, qw/1712 2234/, 'jack gets miles and faradays guns';
seq i+365.3, qw/2236 2431/, 'charlotte uncovers polah beh with dharma collar in tunsia';
seq i+468, qw/2433 2959/, 'jack finds that locke has charlotte';
seq i+365.4, qw/3001 3202/, 'lapidus notices theres no ring on fake pilots hand';
seq i+469, qw/3204 3542/, 'ben shoots charlotte. lapidus shows the helicopter';
seq i+365.5, qw/3544 3654/, 'abbadon talks to naomi before mission';
seq i+470, qw/3656 4213/, 'miles then ben tell that the people on the boat are here for ben';
ep 'S04E03', 'the economist', 'sayid';
seq i+471, qw/0102 0308/, 'sayid agrees to bring charlotte back safe for passage on the helicopter';
seq o+11, qw/0310 0558/, 'sayid kills avellino during golf';
seq o+7, qw/0612 0918/, 'sayid starts to seduce elsa';
seq i+472, qw/0920 1536/, 'sayid and miles go to get charlotte';
seq o+8, qw/1538 1739/, 'sayid and elsa get ready to go to opera';
seq i+473, qw/1741 3047/, 'faraday does an experiment';
seq o+9, qw/3049 3554/, 'sayid kills elsa';
seq i+474, qw/3556 4008/, 'helicopter takes off with sayid desmond lapidus';
seq o+10, qw/4010 4212/, 'ben stiches sayid up';
ep 'S04E04', 'eggtown', 'kate';
seq i+475, qw/0000 0408/, 'locke in the barracks brings ben food';
seq o+12, qw/0410 0601/, 'kate is on trial for murdur of wayne';
seq i+476, qw/0617 1032/, 'kate talks to miles';
seq o+13, qw/1034 1158/, 'lawyer wants to make case about kates character';
seq i+477, qw/1200 1347/, 'kate talks with claire';
seq o+14, qw/1349 1723/, 'jack testifies at kates trial';
seq i+478, qw/1725 2554/, 'kate gets miles to ben asks for 3.2 million to lie';
seq o+15, qw/2556 2834/, 'kates mother drops the charges';
seq i+479, qw/2836 3531/, 'sawyer unbanishes kate but kate still leaves';
seq o+16, qw/3533 4140/, 'kate agrees 10 years probation. visits aaron';
ep 'S04E05', 'the constant', 'desmond';
seq i+480, qw/0000 0143/, 'desmond sayid and lapidus on helicopter going to the freighter';
seq b+177.2, qw/0144 0308/, 'desmond wakes up in army';
seq i+481, qw/0309 0708/, 'desmond, disoriented, lands on the kahana';
seq b+177.3, qw/0709 0851/, 'desmond goes to make a call in the rain';
seq i+482, qw/0853 1400/, 'desmond sayid meets minkowski and doctor in ships infirmary';
seq b+177.4, qw/1401 1530/, 'desmond calls penny';
seq i+483, qw/1532 1814/, 'desmond talks with faraday about what he must do';
seq b+177.5, qw/1816 2334/, 'desmond visits faraday at oxfords queens college and he runs an experiment on eloise his mouse';
seq i+484, qw/2336 2456/, 'minkowski says that he was under orders to never pick up calls from penny';
seq b+177.6, qw/2259 2334/, 'faraday explains that desmond must find his constant';
seq i+485, qw/2335 2458/, 'desmond on boat';
seq b+177.7, qw/2500 2736/, 'faraday explains that desmond must find his constant';
seq i+485.1, qw/2738 2900/, 'minksowsky tells them the radio room is one floor up';
seq b+177.71, qw/2902 3155/, 'desmond meets widmore at an auction';
seq i+486, qw/3157 3421/, 'minksowsky dies in the radio room';
seq b+177.8, qw/3423 3744/, 'desmond gets pennys phone number';
seq i+487, qw/3746 3823/, 'desmond dials pennys number at 7946-0893';
seq b+177.81, qw/3825 3847/, 'desmond walks away';
seq i+488, qw/3849 3859/, 'penny picks up';
seq b+177.82, qw/3901 3907/, 'desmond walking away';
seq i+489, qw/3909 4206/, 'desmond speaks with penny on the phone';
ep 'S04E06', 'the other woman', 'juliet';
seq b+83.21, qw/0034 0322/, 'juliet has a therapy session with harper. before ben gives her a house';
seq i+490, qw/0324 0512/, 'jack juliet at al go after faraday and charlotte. juliet meets harper in jungle';
seq i+491, qw/0528 0657/, 'harper tells juliet that they were headed to the tempest to deploy the gas';
seq b+83.22, qw/0659 1003/, 'after losing henrietta. juliet addresses goodwins wound';
seq i+492, qw/1005 1330/, 'faraday and charlotte knock out kate. juliet brags about how bad her file is';
seq b+83.23, qw/1332 1635/, 'goodwin brings juliet a sandwich then bad therapy session with harper';
seq i+493, qw/1637 2009/, 'locke starting to feel the pressure of being BOSS';
seq i+0.015, qw/2011 2245/, 'juliet picnics with goodwin. later ben sends goodwin to tail section';
seq i+494, qw/2247 3002/, 'jack meets up with the knocked out kate. juliet goes on ahead to the tempest';
seq i+49.1, qw/3004 3158/, 'ben has juliet for dinner party of two';
seq i+495, qw/3200 3525/, 'faraday and charlotte stop the poison gas. juliet tries to stop them thinking they were doing something else';
seq i+122.2, qw/3527 3820/, 'ben shows juliet goodwins dead body';
seq i+496, qw/3822 4137/, 'jack and juliet make out. ben is released';
ep 'S04E07', 'ji yeon', 'sun', 'jin';
seq i+497, qw/0110 0457/, 'lapidus brings sayid and desmond lima beans. jin wants to name female baby ji yeon';
seq o+0.1, qw/0459 0600/, 'sun thinks somethings wrong with her pregnancy';
seq b+17.001, qw/0616 0746/, 'jin buys a panda';
seq i+498, qw/0748 1412/, 'sun wants to join lockes group but needs juliets vitamins before she leaves';
seq o+0.2, qw/1414 1540/, 'dr bae tells sun the baby is in distress';
seq b+17.002, qw/1542 1715/, 'jin loses the first panda and buys another one';
seq i+499, qw/1717 2910/, 'juliet tells jin that sun had an affair. the capn gault sees desmond and sayid. regina jumps overboard';
seq o+0.3, qw/2912 3048/, 'sun delivers ji yeon';
seq i+500, qw/3050 3559/, 'sayid and desmond meet kevin johnson. jin and sayid make up and sun decides to stay on the beach';
seq b+17.003, qw/3601 3737/, 'jin delivers panda to someone who is not sun';
seq o+0.4, qw/3739 4126/, 'hugo comes to see sun and ji yeon and then they go to jins grave';
ep 'S04E08', 'meet kevin johnson', 'michael';
seq i+501, qw/0127 0518/, 'locke gathers everyone so ben can tell them michael is his man on the boat. capn gault makes sure no one leaves. sayid and desmond meet up with kevin johnson';
seq i+502, qw/0535 0940/, 'ben sends alex carl and rousseau off. sayid questions kevin how he came to be on the boat';
seq i+365.6, qw/0942 3744/, 'michael tries to commit suicide by running his car into something. he lives then tries to shoot himself in the head but meets friendly. boards boat and deploys bomb but its not really a bomb. he talks to ben who asks that he compile a list of names';
seq i+503, qw/3746 4143/, 'sayid gives kevin up to capn gault. rousseau and carl get killed. alex is taken';
ep 'S04E09', 'the shape of things to come', 'ben';
seq i+504, qw/0059 0556/, 'dr ray washes up on the shore. locke sawyer hugo play risk when they get a code 14J. they tell ben and get ready for the attack';
seq o+0.5, qw/0613 0831/, 'ben wakes up in the middle of the sahara desert and is accosted by two bedouins';
seq i+505, qw/0833 1148/, 'ben and locke get ready for attack. sawyer goes to rescue claire';
seq o+0.6, qw/1150 1321/, 'ben in tunisia';
seq i+506, qw/1323 1619/, 'sawyer rescues claire. miles brings walkie to ben';
seq o+0.7, qw/1621 1952/, 'ben visits sayid in tikrit. he tells him ishmael is at his wifes procession and was also the one who murdered nadia';
seq i+507, qw/1954 2551/, 'ben talks with keemy on the walkie and alex is killed. ben goes to hidden area of the house';
seq o+0.8, qw/2553 2853/, 'sayid kills ishmael. ben will be in touch';
seq i+508, qw/2855 3719/, 'ben says goodbye to alex. sawyer miles claire and the baby go back to the beach. locke ben and hugo go to find jacob';
seq o+0.9, qw/3721 4156/, 'ben visits widmore in london at night';
ep 'S04E10', 'something nice back home', 'jack';
seq i+509, qw/0000 0142/, 'jack feeling sick';
seq o+17, qw/0144 0354/, 'jack now lives with kate';
seq o+18, qw/0408 0623/, 'jack reads to aaron';
seq i+510, qw/0625 1421/, 'sawyer gives miles a restraining order for claire. juliet gets erady to give jacka an appendectemy';
seq o+19, qw/1423 1800/, 'jack visits hugo in the mental institution at night. hugo tells jack that someones going to visit him too';
seq i+511, qw/1802 2232/, 'jin sun faraday and charlotte get medical supplies. lapidus them keemy and the rest of the wet team almost find sawyer claire and miles';
seq o+20, qw/2234 2506/, 'jack proposes to kate';
seq i+512, qw/2508 2842/, 'jin talks to charlotte in korean to get sun on the helicopter. jack begins his appendectemy';
seq o+21, qw/2844 3314/, 'jack sees christian very briefly at st sebastions. erika writes jack a prescription for clonozipam';
seq i+513, qw/3316 3601/, 'jack is ok after surgery';
seq o+22, qw/3603 3959/, 'jack drunk asks kate where she was today. youre not even related to him!';
seq i+514, qw/4001 4136/, 'claire walked off into the jungle last night';
ep 'S04E11', 'cabin fever', 'locke';
seq b+4.01, qw/0000 0224/, 'emily get hit by a car and gives birth to a premature john';
seq i+515, qw/0226 0910/, 'locke ben and hugo make camp. keemy finds out michael gave him up. locke sees horace cutting down trees in the forest';
seq b+4.02, qw/0912 1047/, 'emily cant hold john. richard comes by';
seq i+516, qw/1049 1214/, 'locke hugo and ben go to the darma mass grave';
seq b+4.03, qw/1216 1619/, 'richard visits locke in the orphanage and asks him to identify his compass but he chooses the knife instead';
seq i+517, qw/1621 2222/, 'richard finds a map to horaces cabin. keemy opens the secondary protocol. capn gault agrees to give sayid and desmond a boat so they can ferry people off the island';
seq b+4.04, qw/2224 2422/, 'locke is stuffed into a locker and a prof tells him about science camp but his interest lie elsewhere';
seq i+518, qw/2424 2817/, 'omar attaches the failsafe device to keemy. sayid takes a boat back to the island. locke ben and hugo make it to the cabin';
seq b+4.9, qw/2819 3112/, 'abbadon tells locke to take a awalkabout in australia';
seq i+519, qw/3114 4207/, 'keemy kills dr ray then capn gault then lapidus takes the wet team to the island dropping a locator on the beach for jack et al to know where keemy team is at. locke meets christian and tells him to move the island. claire is there too';
ep 'S04E12', 'theres no place like home pt1';
seq o+0.01, qw/0041 0520/, 'oceanic 6 on board airplane going to a military base near honolulu. they reunite with their family';
seq i+520, qw/0522 0725/, 'faraday hears that they are going to the orchid and knows that he has to get off the island. jack and kate go after the wet team';
seq i+521, qw/0741 1058/, 'jack and kate meet sawyer miles and the baby. kate takes the baby back to the beach and sawyer goes with jack to the chopper';
seq o+0.02, qw/1100 1542/, 'oceanic 6 answer a few questions. sayid meets nadia';
seq i+522, qw/1544 2044/, 'sayid gets back to the island. he and kate go to get jack and sawyer. faraday ferries the first group';
seq o+0.03, qw/2046 2643/, 'sun buys a cotrolling interest in paik industries. hugo has an island themed party';
seq i+523, qw/2645 3222/, 'locke ben and hugo arrive at the orchid. faraday deposits first group on the boat and heads back. desmond gets the boats engines working but theres still interference in their instruments. sawyer and jack meet lapidus handcuffed to the chopper';
seq o+0.04, qw/3224 3633/, 'christians funeral. carole tells jack claire was his sister';
seq i+524, qw/3635 4130/, 'desmond finds bomb on boat. sayid and kate are approached by richard and others. ben gives himself up';
ep 'S04E13E14', 'theres no place like home pt2';
seq O+8, qw/0201 0406/, 'right after "we have to go baaack!". kate explains why shes never going to do that';
seq i+525, qw/0408 0704/, 'jack and sawyer meet up with hugo and locke. desmond jin and michael diagnose bomb';
seq i+526, qw/0720 1344/, 'red ferno flank. kate sayid and others kill neutralize most of the wet team freeing ben. ben allows sayid and kate to take the helicopter off the island';
seq O+6.1, qw/1346 1613/, 'walt visits hugo at the mental institution';
seq i+527, qw/1615 4104/, 'locke tells jack not to go, but if so, he must lie. ben and locke go down to the orchid. michael uses liquid n2 on bomb. faraday reaches the island gets ready for next trip. locke watches orientation while ben piles metal object in the vault. sayid jack kate hugo sawyer lapidus travel back to boat. keemy comes down to orchid station when ben kills him. sawyer jumps out the helicopter';
seq O+6.2, qw/4106 4341/, 'sayid kills man in car then takes hurley someplace safe';
seq i+528, qw/4343 5058/, 'keemy dies. light goes red. chopper quickly refuels. it takes off without jin. the boat explodes';
seq O+0.1, qw/5100 5254/, 'sun confronts widmore and suggests they help each other';
seq i+529, qw/5256 010600/, 'ben blows up the vault. locke goes to the others as their leader. ben turns the donkey wheel. the island disappears. the chopper goes down. oceanic 6 and desmond and lapidus in life raft';
seq O+9, qw/010602 010834/, 'claire tells kate not to bring aaron back but was a dream';
seq i+530, qw/010836 011420/, 'they are picked up by pennys boat';
seq i+531, qw/011422 011808/, 'they go to membata';
seq O+10, qw/011810 012258/, 'jack breaks in to funeral home sees ben and lockes body';
ep 'S05E01', 'because you left';
seq d+300, qw/0040 0509/, 'pierre tends to miles then does an orientation film but is interupted by a problem at the orchid. he tells them to stop drilling. faraday bumps into pierre';
seq O+11, qw/0511 0751/, 'jack asks why all this happened. ben: because you left. jack shaves';
seq f+1, qw/0753 1144/, '3 years earlier the large flash cause locke faraday sawyer juliet charlotte miles to time shift (now 2001 - 2002)';
seq O+12, qw/1159 1429/, 'lawyer dan norton requests blood samples from kate and aaron. kate packs and they run away';
seq f+2, qw/1431 2003/, 'juliet sawyer faraday charlotte go to the swan. farday tries to explain whats happening is like a skipping record. locke sees yemmis plane crash. ethan shoots at locke';
seq f+3, qw/2003 2040/, '2nd shift (day 4 2007)';
seq O+13, qw/2042 2632/, 'widmore talks with sun at heathrow about killing ben. ben and jack see that hugo is a suspect in a murder. sayid fends off attackers in the safe place';
seq f+4, qw/2635 4021/, 'sawyer faraday et al get to the imploded swan hatch. richard visits locke and tends to his bullet wound and gives locke his compass. 3rd shift (2001 - 2002). sawyer tries to get food in the swan hatch. faraday stays behind to tell desmond to get help from eloise. fourth shift (late 1954)';
seq O+0.01, qw/4023 4139/, 'desmond wakes up and goes to oxford per faradays mother';
ep 'S05E02', 'the lie', 'hugo';
seq i+530.2, qw/0003 0240/, 'on pennys boat, hugo is not ok with lying';
seq O+14, qw/0242 0504/, 'hugo gets pulled over by ana lucia';
seq f+5, qw/0507 0718/, 'on the beach miles goes to get food. juliet the water. and faraday needs to determine where they are in time';
seq O+15, qw/0720 1746/, 'hugo buys the i <3 shitzhus shirt. kate is running with aaron meets sun. ben brings lockes body to butcher';
seq f+6, qw/1748 2142/, 'flaming arrows come down on the people on the beach';
seq O+16, qw/2144 3133/, 'cheech takes sayid to jack. kate tells sun shes sorry for jin. hugo tells mother the truth';
seq f+7, qw/3135 3258/, 'sawyer and juliet are caught by widmore';
seq O+17, qw/3301 3724/, 'jack treats sayid. ben visits hugo who runs out and gives himself up to the police';
seq f+8, qw/3726 3837/, 'locke saves sawyer and juliet';
seq O+18, qw/3839 4038/, 'eloise determines how to get back to the island. she tells ben he has 70 hours';
ep 'S05E03', 'jughead', 'desmond';
seq o+0.41, qw/0038 0302/, 'penny gives birth to charlie';
seq O+0.02, qw/0304 0455/, 'desmond goes to great brittain to find faradays mother';
seq f+9, qw/0457 0714/, 'eloise and more others surround miles faraday charlotte et al group';
seq O+0.03, qw/0731 0911/, 'desmond and penny talk on the boat';
seq f+10, qw/0913 1256/, 'widmore and cunningham are captured. eloise takes charlotte faraday and miles back to their camp';
seq O+0.04, qw/1258 1705/, 'desmond visits oxford';
seq f+11, qw/1707 2149/, 'faraday talks with richard. widmore kills cunningham and runs off. locke doesnt shoot him';
seq O+0.05, qw/2151 2412/, 'desmond visits theresa';
seq f+12, qw/2414 3218/, 'faraday checks jughead and tells them to bury it. sawyer and juliet get the upper hand on ellie';
seq O+0.06, qw/3220 3513/, 'desmond visits widmore and gets eloises address in los angeles';
seq f+13, qw/3515 3646/, 'locke goes into the camp to talk with richard';
seq O+0.07, qw/3648 3904/, 'penny allows desmond to go to los angeles';
seq f+14, qw/3906 4143/, 'locke tells richard to visit him when hes born. 5th shift (Nov 1, 2004). charlotte collapses';
ep 'S05E04', 'the little prince', 'kate';
seq i+530.1, qw/0112 0342/, 'jack asks kate to be with him in the lie';
seq O+19, qw/0348 0546/, 'kate goes to deal with norton. sun gets gun and info on ben';
seq f+15, qw/0602 0736/, 'faraday tends to charlottes sickness';
seq O+20, qw/0738 0926/, 'kate gives an offer to norton but is refused';
seq f+16, qw/0928 1201/, 'sawyer locke miles faraday and charlotte decide to go to the orchid';
seq O+21, qw/1203 1635/, 'sayid is attacked by someone in the hospital. kates address is in his pocket. jack calls kate';
seq f+17, qw/1638 2036/, 'locke sees the hatch light. sawyer claire giving birth. 6th shift (2007)';
seq O+22, qw/2038 2205/, 'jack and kate follow norton';
seq f+18, qw/2207 2802/, 'sawyer group explore their old beach camp and take boats they find and are shot at till the 7th shift (Nov 18 1988) when they find themself in the middle of a rainstorm at night';
seq O+23, qw/2804 3344/, 'jack and kate follow norton to carole and jack goes in to talk to her but its not her lawsuit. norton meets ben (sayids there too) re hugo';
seq f+19, qw/3346 3706/, 'sawyer locke et al land on teh beach but arent sure where they are. rousseaus expedition team find jin washed up after besixdouze shipwreck';
seq O+24, qw/3708 3939/, 'jack kate sayid and ben meet up. sun ready to put in some work. aaron in the back seat';
seq f+20, qw/3941 4142/, 'jin meets young rousseau and the expedition team';
ep 'S05E05', 'this place is death', 'jin', 'sun';
seq O+25, qw/0054 0303/, 'sun points a gun at ben then learns that jin is still alive';
seq f+21, qw/0305 1753/, 'jin goes with expedition team to the radio tower. smoke monster attacks them bringing them under the temple. expedition team go under the temple to rescue him. 8th shift (3-17 january 1989) jin sees rousseau kill robert. 9th shift. sawyer finds jin. they head to orchid';
seq O+26, qw/1755 1932/, 'kate and sayid leave. ben takes jack and sun to eloise re jin and island';
seq f+22, qw/1934 2157/, '10th shift 11th shift. charlotte: "this place is death"';
seq O+27, qw/2159 2238/, 'ben explains how much he does for jack and suns benefit that they dont realize';
seq f+23, qw/2240 3831/, '12th shift (after the orchid is destroyed) charlotte is getting really sick and delirius. faraday stays with her while the rest follow locke to the orchid. 13th shift (before 1974) charlotte tells faraday he told her not to come back to the island when she was little. locke promises to jin not to bring sun back. he goes down into the well when the 14th shift (before 1867) occurs. locke falls and breaks his legs. charlotte dies. locke speaks with christian then turns the donkey wheel 15th shift (1974)';
seq O+28, qw/3833 4143/, 'ben gives sun jins ring they meet up with desmond before meeting eloise';
ep 'S05E06', '316', 'jack';
seq d+200, qw/0037 0334/, 'jack wakes up on the island again saves hugo and kate';
seq O+29, qw/0340 0543/, 'jack sun desmond and ben talk with eloise in the lamppost';
seq O+30, qw/0559 1634/, 'eloise tells them their window to get to island is on ajira 316. desmond is done with the island. eloise gives jack lockes suicide note. ben finishes some business';
seq O+31, qw/1636 2211/, 'jack visits ray in old folks home and takes his fathers shoes. kate decides to go with jack so long as he never asks about aaron';
seq O+32, qw/2213 2712/, 'next morning kate says shell meet jack at the airport. jack gets a phone call from ben to get lockes body from jill. jack puts christians shoes on locke';
# jack
# kate \
# hugo |
# sun |
# sayid |
# not aaron | all on ajira 316
# ben |
# lapidus |
# ilana /
# caesar
seq O+33, qw/2714 3919/, 'jack and everyone at the airport boarding ajira 316. plane takes off. jack surprised to find lapidus is the pilot. ben reads ulysses. jack reads lockes note. a flash takes some of them to 1977';
seq d+201, qw/3919 4141/, 'jack wakes up on island saves hugo and kate then run into jin';
ep 'S05E07', 'the life and death of jeremy bentham', 'locke';
seq I+1, qw/0100 0347/, 'caesar searches bens office at the hydra and finds a gun. ilana walks in and brings him to see not-locke alive wtf';
seq I+2, qw/0403 0605/, 'ilana tells not-locke that sun and lapidus took one of the boats. not-locke remembers dying';
seq O+0.001, qw/0625 3253/, 'locke wakes up in tunisia. he is treated by local doctors and widmore talks to him, names him bentham and gives him abaddon to help him get everyone back. he tries sayid then visits walt then tries hugo then kate. locke visits helens grave. ben shoots abaddon. locke runs and gets in a car crash meeting jack and tries to get him to go back. locke tells him christian says hello';
#seq O+0.08, qw/3255 4220/, 'locke is about to commit suicide when ben breaks in and murders him after finding out that eloise will help them get back';
seq O+0.001001, qw/3255 4220/, 'locke is about to commit suicide when ben breaks in and murders him after finding out that eloise will help them get back';
seq I+3, qw/4222 4500/, 'caesar brings not-locke to see ben';
ep 'S05E08', 'lafleur', 'sawyer';
seq f+24, qw/0109 0240/, 'the last two flashes before they land in 1974';
seq d+10, qw/0240 0407/, 'flashes are over. now they wait for the rest to come back. as long as it takes';
seq d+100, qw/0414 0647/, 'jerry dances with rosie. phil comes in. they notice horace drunk by the pilons. they wake lafleur up at 3am';
seq d+101, qw/0701 0907/, 'lafleur and miles retrieve horace and bring him back to amy who starts to think shes about to deliver a baby';
seq d+11, qw/0914 1800/, 'faraday upset that charlotte died. they head to beach and save amy from the hostiles. her husband paul was killed';
seq d+102, qw/1806 2146/, 'lafleur gets juliet to help amy deliver ethan';
seq d+12, qw/2148 3513/, 'lafleur talks with horace. richard comes to dharmaville. lafleur talks with him and agree to give others pauls body. juliet sawyer miles jin decide to stay';
seq d+103, qw/3518 3943/, 'juliet and lafleur live together. lafleur talks with horace';
seq d+202, qw/3943 4144/, 'in bed with juliet. jin calls telling him that theyre back. he meets up with them in the north valley';
ep 'S05E09', 'namaste';
seq O+34, qw/0000 0203/, 'ajira 316 has turbulance and some experience a large flash of light';
seq I+0.1, qw/0203 0456/, 'ajira goes down. caesar talks to ilana. lapidus helps sun. ben tells them that jack kate hugo et al are gone but doesnt know where';
seq d+203, qw/0504 0726/, 'lafleur greets kate jack and hugo telling them that its 1977';
seq d+204, qw/0743 1300/, 'sawyer gets ready to make them look theyre new dharma arrivals. jin runs to the flame to see if a plane landed';
seq I+0.2, qw/1302 1543/, 'sun and lapidus walk after ben';
seq d+205, qw/1545 2308/, 'amy asks juliete when she and lafleur are gonna have one of these. jin finds sayid. jack kate and hugo become new dharma recruits';
seq I+0.3, qw/2310 2556/, 'sun hits ben with an oar before she and lapidus head to the other island';
seq d+206, qw/2559 3104/, 'jack kate and hugo are processed. lafleur and jin talk to sayid. radzinsky suggests they shoot sayid';
seq I+0.4, qw/3106 3423/, 'sun and lapidus talk with christian who tells her that jin is in 1977';
seq d+207, qw/3425 4145/, 'new recruits get their picture taken. sawyer takes sayid to the jail. jack talks with sawyer about sayid. ben brings sayid a sandwich';
ep 'S05E10', 'hes our you', 'sayid';
seq b+30.01, qw/0107 0312/, 'sayid kills a chicken for omer';
seq d+208, qw/0314 0447/, 'ben brings sayid another sandwich';
seq o+16.1, qw/0503 0725/, 'sayid kills andropov, the last that ben wants him to kill. thats it';
seq d+209, qw/0727 1549/, 'horace cuts sayids cuffs. sawyer tries to get sayid into dharma but sayid refuses to go along with it';
seq O+0.09, qw/1551 1805/, 'ben visits sayid getting him to help hugo from retaliation attacks';
seq d+210, qw/1807 2123/, 'dharma people take sayid to oldham';
seq O+30.1, qw/2201 2423/, 'sayid talks to ilana at a bar drinking mccutchens';
seq d+211, qw/2325 3056/, 'oldham questions sayid. juliet tells kate to stay away from sawyer. dharma decides to kill sayid';
seq O+30.2, qw/3058 3217/, 'sayid is captured by ilana';
seq d+212, qw/3219 3654/, 'sayid still wont let sawyer get him out of jail. ben uses a flaming bus to get sayid out';
seq O+32.1, qw/3656 3835/, 'sayid boards ajira 316';
seq d+213, qw/3837 4113/, 'sayid takes out jin then shoots ben';
ep 'S05E11', 'whatever happened happened', 'kate';
seq d+214, qw/0121 0445/, 'jin finds injured ben. kate helps roger with the winch';
seq o+0.021, qw/0447 0613/, 'kate visits cassidy';
seq o+0.022, qw/0629 0900/, 'kate gives some money to cassidy for clementine as sawyer wished';
seq d+215, qw/0902 2312/, 'ben is in surgery. miles keeps jack kate hugo in the house. jack refuses to help ben. kate takes ben to the others';
seq O+30.01, qw/2314 2542/, 'kate loses aaron in grocery store';
seq d+216, qw/2544 2654/, 'damnit freckles im not here to stop you. Im here to help you';
seq O+30.3, qw/2656 2856/, 'kate brings aaron to cassidys house';
seq d+217, qw/2858 3350/, 'kate sawyer and ben cross the pilons. juliet mad at jack';
seq O+30.4, qw/3352 3812/, 'kate gives carole aaron and tells her shes going back to find claire';
seq d+218, qw/3814 4059/, 'kate and sawyer give ben to richard who brings him to the temple';
seq I+4, qw/4101 4140/, 'not-locke welcomes ben back to the land of the living';
ep 'S05E12', 'dead is dead', 'ben';
seq d+219, qw/0048 0304/, 'widmore talks with recuperating ben in a tent';
seq I+5, qw/0306 0433/, 'ben tells not-locke he was going to be judged';
seq I+6, qw/0450 0651/, 'caesar shows ben his shotgun and says he got bens back should not-locke do something';
seq b+5.1E-5, qw/0653 0850/, 'ben takes alex from rousseau';
seq I+7, qw/0852 1535/, 'ben and not-locke talk about the elephant. ben shoots caesar to take the boat';
seq b+5.2E-5, qw/1537 1730/, 'ben takes alex to widmore and they decide not to kill it';
seq I+8, qw/1732 2343/, 'ben and not-locke meet sun and lapidus. ben drains the muddy water in the secret room in his house';
seq b+5.3E-5, qw/2345 2535/, 'ben sees widmore off after he broke the rules';
seq I+9, qw/2537 2829/, 'ben and not-locke and sun go to the smoke monster';
seq O+31.1, qw/2831 2920/, 'ben talks with widmore before killing penny';
seq I+10, qw/2922 3208/, 'ben not-locke and sun arrive at the temple';
seq O+31.2, qw/3210 3345/, 'ben goes to kill penny but hesitates and desmond beats him up';
seq I+11, qw/3347 4144/, 'ilana says its time and knocks out lapidus. ben is engulfed by the smoke monster and shown visions of his past (I really wish they hadnt used clips from previous episodes... his memories arent shot from the same angle we saw them before). smoke clears and he sees alex who tells him to follow whatever not-locke says';
ep 'S05E13', 'some like it hoth', 'miles';
seq b+87, qw/0000 0231/, 'miles as a kid find dead man in room 4 of an apartment complex';
seq d+220, qw/0233 0636/, 'sawyer tells miles to delete the tapes with him on it near the pilons. horace sends him to radzinsky who gives him a dead body';
seq b+88, qw/0653 0923/, 'miles visits his sick mother. she tells him his father his dead and his body is someplace miles can never go';
seq d+221, qw/0925 1446/, 'miles and hugo get in the van to bring the dead body to pierre. roger is mad ben is missing. hugo tells miles he can talk with dead people too';
seq b+89, qw/1448 1722/, 'miles offers his services to football dad. naomi recruits miles';
seq d+222, qw/1724 2153/, 'roger drinks with kate then thinks she has something to do with ben disapearance. miles brings pierre the body at the orchid worksite';
seq i+365.21, qw/2155 2420/, 'miles does his thing on felix for naomi. she offers him $1.6 million';
seq d+223, qw/2422 3025/, 'miles and hugo take pierre to radzinsky. roger and jack talk. hugo and miles notice them building the swan';
seq i+365.22, qw/3027 3237/, 'bram tries to talk miles out of going on widmores boat';
seq d+224, qw/3239 3704/, 'hugo writes empire strikes back. phil find the tape and brings it to sawyer who punches him out';
seq i+365.23, qw/3706 3816/, 'miles gives football dad his money back';
seq d+225, qw/3818 4144/, 'hugo talks with miles about his dad and how it relates to luke and darth. pierre: "miles i need you". miles: "you do?". faraday comes back to the island';
ep 'S05E14', 'the variable', 'faraday';
seq O+32.01, qw/0030 0147/, 'desmond goes to er for his gunshot wound. eloise speaks with penny';
seq d+226, qw/0151 0328/, 'faraday talks with jack';
seq b+90, qw/0336 0532/, 'eloise tells faraday to do physics not piano';
seq d+227, qw/0534 0821/, 'faraday goes to orchid. sawyer brings jack in on phil kidnap. faraday goes down';
seq d+301, qw/0821 1046/, 'faraday tells pierre to evac everyone from the island before the incident';
seq b+91, qw/1048 1359/, 'faraday graduates from oxford first in his class. eloise gives him his notebook';
seq d+302, qw/1401 1621/, 'faraday comes in to sawyers meeting';
seq i+365.11, qw/1623 2030/, 'widmore visits faraday giving him the oportunity to go to the island';
seq d+303, qw/2032 2659/, 'jack and kate go to the motorpool for some guns. faraday tells charlotte to be sure to be on the sub. jack kate and faraday shootout with radzinsky and his men';
seq i+365.12, qw/2701 2929/, 'eloise tells faraday to go on widmores boat';
seq d+304, qw/2931 3557/, 'kate jack and faraday on their way to eloise in the others camp. radzinsky find phil in sawyers closet. faraday plans to detonate a h-bomb on the pocket of energy';
seq O+32.02, qw/3559 3838/, 'for the first time in a long time eloise doesnt know whats going to happen next';
seq d+305, qw/3840 4134/, 'eloise shoots faraday';
ep 'S05E15', 'follow the leader', 'richard';
seq d+306, qw/0058 0324/, 'eloise shoots faraday. widmore captures jack and kate';
seq I+12, qw/0331 0629/, 'richard building a ship in a bottle meets not-locke. ben tells sun that richard is an... advisor... of sorts. richard tells sun he watched all the dharma 815ers die in the 70s (that never happens why did he say this?)';
seq I+13, qw/0645 0802/, 'not-locke gets ben to join him on the trip. not-locke tells sun that if theres a way to save their people hell find it';
seq d+307, qw/0804 1954/, 'its was not all misery. enough of it was. jack gets eloise to help him execute faradays plan. radzinsky and phil question sawyer and juliet. pierre talks with miles hugo and jin';
seq I+14, qw/1956 2441/, 'not-locke tells richard to fix lockes bullet wound and tells him to bring back everyone who left and that he must die to do so';
seq d+308, qw/2443 3328/, 'pierre tells people to evac. sawyer will give up information so he and juliet can get on the sub. sayid kills two others who are about to kill kate. miles hugo and jin see people evacing the island. sawyer and juliet get in the sub. jack goes through the water entrance to the tunnels';
seq I+15, qw/3330 3605/, 'not-locke is eager to get going to see jacob and gets everyone to go with him';
seq d+309, qw/3607 4005/, 'kate joins sawyer and juliet in the sub. the group get to jughead in the tunnels';
seq I+16, qw/4007 4142/, 'not-locke tells ben the reason hes going to jacob is so he can kill him';
ep 'S05E16E17', 'the incident', 'jacob';
seq b+1E-6, qw/0023 0343/, 'jacob works on a tapestry then makes fish. the man in black tells jacob he wants to kill him';
seq b+0.0001, qw/0400 0600/, 'jacob pays for nkotb lunchbox that katie steals';
seq d+310, qw/0602 0940/, 'sawyer is not going to stop jack from detonating the bomb. sayid starts working on removing the plutonium core from jughead. radzinsky is not giving up';
seq I+17, qw/0944 1349/, 'not-locke tells richard once hes done with jacob. hes going to need to deal with the people from the ajira 316 flight. ilana and bram bring a large box';
seq b+25.2, qw/1351 1631/, 'jacob gives sawyer a pen';
seq d+311, qw/1634 1954/, 'juliet changes her mind. kate sawyer and juliet leave the sub. sayid takes the bomb core out';
seq I+18, qw/1956 2120/, 'not-locke tells ben hes going to kill jacob for him';
seq o+0.42, qw/2122 2231/, 'jacob asks sayid for directions before nadia is hit';
seq d+312, qw/2233 3129/, 'sayid finishes with taking out the plutonium core of the bomb. richard knocks eloise out (htf is richard going to take an unconscious woman through the water entrance?). sayid and jack walk through dharmaville. roger shoots sayid. hugo rescues everyone again with the dharma van. sawyer kate and juliet meet bernhard rose and vincent';
seq I+19, qw/3131 3247/, 'ilana and bram notice the ash around horaces cabin is breached. ilana goes on';
# no way to tell when this next scene took place
seq i+365.7, qw/3249 3409/, 'jacob visits injured ilana and gets her to help him';
seq I+20, qw/3411 3600/, 'ilana finds a note telling them to go to the statue of taweret. they torch the cabin';
seq b+4.851, qw/3602 3704/, 'jacob tells locke hes sorry he was pushed out the window';
seq I+21, qw/3706 4101/, 'not-locke goes through their old camp. sun picks up charlies ring';
seq b+15.101, qw/4103 4304/, 'during jin and suns wedding, jacob congratulates them';
seq d+313, qw/4306 4357/, 'sawyer kate and juliet meet jack hugo and the rest';
seq I+22, qw/4359 4453/, 'not-locke gets to the statue of taweret';
seq d+314, qw/4455 4534/, 'jack agrees to talk to sawyer for five minutes';
seq b+9.0001, qw/4536 4838/, 'jack counts to five after cutting someones dural sack. jacob gives him the apollo bar he tried to get';
seq d+315, qw/4840 5303/, 'jack and sawyer talk. sawyer and jack fight. juliet changes her mind (wtf)';
seq b+76.99, qw/5305 5357/, 'juliets parents split up. juliet doesnt want to understand';
seq d+316, qw/5359 5841/, 'juliet explains why she changed her mind. radzinsky tells phil to get more men to fortify the swan';
seq O+30.21, qw/5843 010156/, 'jacob visits hugo as hes released from jail and tells him to go back to the island';
seq d+317, qw/010158 010356/, 'sayid finishes rigging the core to explode on impact. jack goes past sawyer to the drop the bomb';
seq I+23, qw/010358 010705/, 'ben follows not-locke in to the statue to kill jacob';
seq d+318, qw/010707 011506/, 'big shootout by the swan. jack drops the bomb. it doesnt explode. juliet falls in';
seq I+24, qw/011508 012215/, 'ilana shows richard lockes dead body. ben kills jacob. he says "theyre coming" before not-locke kicks him into the fire';
seq d+319, qw/012217 012408/, 'everything goes crazy. metal objects are flying everywhere. juliet detonates the son of a bitch';
ep 'S06E01E02', 'la x';
seq a+1, qw/0141 0646/, '815 doesnt crash. it experiences turbulance rose comforts jack. bernhard comes back from bathroom. jack goes there. comes back and talks with desmond. down below the island is under water';
seq I+25, qw/0742 1200/, 'kate wakes up in a tree. sawyer mad about juliet and not being in lax';
seq a+2, qw/1202 1406/, 'kate walks out of the bathroom into jack. sawyer walks into mars. arzt talks with hugo. hugo says hes lucky';
seq I+26, qw/1408 1715/, 'sawyer goes into the swan to save juliet. jacob visits hugo';
seq a+3, qw/1717 1919/, 'jin and sun see rose and bernhard. jack talks with boone';
seq I+27, qw/1921 2602/, 'not-locke cuts a piece of the red rug and asks ben to bring richard in to talk to him. richard shows ben lockes body. sawyer team try to get in to save juliet. hugo talks with jacob. jin brings hugo sayid and the van to help remove rubble';
seq a+4, qw/2604 2814/, 'sayid busts open the door. jack saves charlie';
seq I+28, qw/2816 3802/, 'juliet dies in sawyers arms. jack cant save sayid. hugo plans to take him to the temple. smokey turned into the monster and kills bram and some of his men';
seq a+5, qw/3804 4245/, 'charlie wishes jack let him die. 815 lands in la x';
seq I+29, qw/4248 4430/, 'sawyer has miles come with him to bury juliet. jack kate and hugo take sayid to the temple';
seq a+6, qw/4432 4533/, 'there was a mixup with jacks... cargo... he checked in sydnie';
seq I+30, qw/4535 4937/, 'others capture jack kate hugo and jin and bring them to the temple';
seq a+7, qw/4939 5251/, 'austin knocks out mars and runs away getting in an elevator with sawyer';
seq I+31, qw/5253 5836/, 'miles says juliet wanted to tell sawyer that it worked. dogen and lennon are about to shoot hugo et al when hugo tells them that jacob sent him. dogen breaks the ankh and decides to not kill them. they take sayid to the well';
seq a+8, qw/5838 010011/, 'tsa take jins money';
seq I+32, qw/010013 010551/, 'others drown sayid in the muddy water';
seq a+9, qw/010553 010813/, 'sayid waits for his bag. kate gets in claires taxi';
seq I+33, qw/010815 011531/, 'others captured sawyer and miles and brought him to the temple. hugo tells dogen and lennon that jacob is dead. they get ready for smokey. smokey talks with ben. sawyer isnt going to kill jack';
seq a+10, qw/011533 011826/, 'jack gives locke his business card';
seq I+34, qw/011828 012117/, 'smokey beats up richard and takes him into the jungle. sayid is alive';
ep 'S06E03', 'what kate does', 'kate';
seq I+35, qw/0038 0221/, 'sayid lives. sawyer is thinking about running';
seq a+11, qw/0223 0417/, 'kate takes taxi. kicks claire out after taking her purse';
seq I+36, qw/0419 0703/, 'dogen wishes to talk to sayid in private. sawyer leaves the temple';
seq I+37, qw/0719 0807/, 'kate agrees to get sawyer';
seq a+12, qw/0809 1018/, 'kate visits car repair shop to have her cuffs taken off, opens claires bag and feels bad about taking it';
seq I+38, qw/1020 1345/, 'kate jin aldo and justin go to get sawyer back. dogen blows some dust on sayid, electrifies him, then burns him with a hot poker. lennon explains it was a test that he passed but really he says that he failed';
seq a+13, qw/1347 1508/, 'kate gives claire a ride to brentwood';
seq I+39, qw/1510 2317/, 'kate knocks aldo out then trips a rousseau trap to knock out justin then escapes. dogen gives jack a pill to give to sayid';
seq a+14, qw/2319 2532/, 'the adopter changes her mind. calire thinks the baby is coming';
seq I+40, qw/2534 2755/, 'kate finds sawyer upset at his old dharma home';
seq a+15, qw/2757 3039/, 'ethan gives claire some drugs to prolong the pregnancy';
seq I+41, qw/3041 3626/, 'sawyer throws the ring he was going to give to juliet into the bay. jack takes the pill but dogen gets it out of him telling him that its poison';
seq a+16, qw/3628 3839/, 'claire covers for kate when cops ask';
seq I+42, qw/3841 4208/, 'dogen explains that a darkness is growing in sayid just like claire. jin gets stuck in a bear trap. claire kills aldo and justin';
ep 'S06E04', 'the substitute', 'locke';
seq a+17, qw/0056 0408/, 'locke falls on his lawn just as the sprinklers come on. helen comes out of house to help';
seq I+43, qw/0410 0517/, 'not-locke cuts richard down from a trap and tells him its time to talk';
seq a+18, qw/0536 0713/, 'randy fires locke from the box company for not attending the seminar';
seq I+44, qw/0715 1425/, 'not-locke looks like locke because it would give him access to jacob being that hes a candidate. richard does not go anywhere with not-locke. richard tells illana what happened to her team. ilana takes some of jacobs ashe. not-locke recruits sawyer';
seq a+19, qw/1427 1637/, 'locke gets mad at hugo for parking bad. hugo gives locke another job by going to his temp agency';
seq I+45, qw/1639 2015/, 'ilana sun lapidus et al head to the temple but first need to bury locke. kidd reminds not-locke of the rules which state among other things that he cant kill him (sawyer?). richard tries to get sawyer back to the temple';
seq a+20, qw/2017 2239/, 'locke talks with rose for a job. wrong person to ask what they know about "realistic"';
seq I+46, qw/2241 2711/, 'sawyer almost shoots not-locke but doesnt. it probably wouldnt have any effect anyway. sun ilana lapdus and ben bury locke';
seq a+21, qw/2713 3141/, 'not-locke tells helen he didnt attend the conference and tried to go on a walkabout in sydnie';
seq I+47, qw/3143 3533/, 'sawyer and not-locke climb down to oceanfront cave. not-locke shows sawyer the names on the wall';
seq a+22, qw/3535 3658/, 'locke is now a substitute teacher teaching reproduction and meeting ben in the teachers lounge';
seq I+48, qw/3700 4118/, 'not-locke goes over the each candidate and tells sawyer that he has a few choices to make being that hes a cadidate. one popular choice is to get off the island';
ep 'S06E05', 'lighthouse', 'jack';
seq a+23, qw/0056 0300/, 'jack picks david up from school';
seq I+49, qw/0302 0454/, 'jacob visits hugo telling him he needs him to help someone find the island';
seq a+24, qw/0512 0654/, 'jack has a strained relationship with david';
seq I+50, qw/0656 1605/, 'jack tells sayid about the poison pill. claire frees jins foot from the bear trap. hugo tells dogen he cant do whatever he wants since hes a candidate. hugo tells jack he has what it takes to get him to go with him. jack and hugo meet kate in the jungle. she is going after claire and not joining them on the trip to the lighthouse';
seq a+25, qw/1607 1803/, 'jack and his mother search for christians will. it mentions claire';
seq I+51, qw/1805 2234/, 'claire stiches jins leg up. jack and hugo walk through the old caves';
seq a+26, qw/2236 2530/, 'jack brings pizza back to david whos gone so jack goes to davids mothers house and finds out hes at a recital';
seq I+52, qw/2532 3006/, 'hugo and jack old school trippin. jin tells claire that kate took aaron. claire axes justin. jack and hugo go inside the lighthouse';
seq a+27, qw/3008 3212/, 'jack catches the last minute of david playing chopin and talks with dogen and his son about how good he is at it';
seq I+53, qw/3214 3551/, 'jack sees that jacob was watching him with the lighthouse so he destroys it';
seq a+28, qw/3553 3827/, 'jack tells david that he saw him playing, doesnt want to pressure him, and wants to be a part of his life';
seq I+54, qw/3829 4221/, 'jacob wanted to jack to see what was in the mirror so hed know how important he was. jin lies saying he lied about kate taking aaron. not-locke stops by claires tent';
ep 'S06E06', 'sundown', 'sayid';
seq a+29, qw/0054 0338/, 'sayid visits nadia who is maried to omar. kids are annoying and omar looks shook after his phone call';
seq I+55, qw/0340 0737/, 'dogen and sayid fight. not-locke sends claire in to the temple';
seq a+30, qw/0753 0947/, 'omar asks sayid for help with the loansharks';
seq I+56, qw/0949 1359/, 'claire sets up a meeting with not-locke. dogen sends sayid to kill not-locke';
seq a+31, qw/1402 1541/, 'omar in the hospital. nadia tells him not to react';
seq I+57, qw/1543 2053/, 'kate comes back talks to miles. sayid tries to kill not-locke but it doesnt work. not-locke gets sayid to deliver a message in exchange for a nadia gf';
seq a+32, qw/2055 2250/, 'sayid cant be with nadia because he doesnt deserve her';
seq I+58, qw/2252 2654/, 'sayid delivers the message: leave or die. kate tells claire that she took aaron. many people, cindy included, leave the temple. sayid goes to return the knife';
seq a+33, qw/2656 3135/, 'sayid kills keemy omar and someone else then finds jin tied up in the refrigerator';
seq I+59, qw/3137 4112/, 'dogen tells his story to sayid. sayid then kills dogen and lennon. smoke monster attacks the temple. kate goes to claire. ben tries to get sayid but sayid is now killer zombie. illana sun lapidus and miles take secret passageway out the temple. kate claire sayid go with not-locke';
ep 'S06E07', 'dr linus', 'ben';
seq I+60, qw/0035 0134/, 'ben finds ilanas group they head to the beach. at least its familiar territory and they have the water at their backs';
seq a+28.01, qw/0136 0408/, 'principle reynolds is an administrator not a teacher. he forgot what the public school system is about... taking care of the kids. locke supports ben becoming the principle';
seq I+61, qw/0410 0609/, 'miles finds out how jacob died and tells ilana';
seq I+62, qw/0627 0738/, 'group reaches the beach. ilana mad at ben';
seq a+28.02, qw/0740 1021/, 'ben tends roger when alex stops by. youre the best dr linus!';
seq I+63, qw/1023 1459/, 'ilana wants to get jin so she can protect him as a candidate. jack and hugo leave for the temple and meet richard. ilana makes ben dig his grave';
seq a+28.03, qw/1501 1729/, 'ben tutors alex about charter act of 1813. alex tells ben that reynolds has sex with the nurse';
seq I+64, qw/1731 2052/, 'miles tells ben jacob cared about dying right up till ben killed him. richard goes into the black rock to die';
seq a+28.04, qw/2054 2255/, 'ben gets arzt to hack nurses email to make a play for the big seat';
seq I+65, qw/2257 3054/, 'jack talks with richard over a lit piece of dynamite. it doesnt explode. not-locke frees ben and wants him to be the island protector when he leaves';
seq a+28.05, qw/3056 3325/, 'ben threatens reynolds job. reynolds threatens to not recommend alex for yale. (ben shoulda waited before blackmailing him)';
seq I+66, qw/3327 3615/, 'ben gets to the gun before ilana and gets to explain why he killed jacob. ilana decides against killing him';
seq a+28.06, qw/3617 3815/, 'ben delivers reynolds the detention sign up sheet. he may have quit too';
seq I+67, qw/3817 4120/, 'ilanas group set up camp. richard jack and hugo join them. widmores sub comes to the island';
ep 'S06E08', 'recon', 'sawyer';
seq I+68, qw/0000 0150/, 'sawyer wakes up jin. not-locke comes back to the camp with everyone';
seq a+28.061, qw/0152 0428/, 'sawyer is a cop doing the pigeon drop on ava. it goes bad, so he says the word "lafleur" and other cops bust in and take her prisoner';
seq I+69, qw/0445 0718/, 'not-locke gathers everyone around saying they have to make use of the daylight to go somewhere. kate talks with claire who tells her the cow skull was all she had to take the place of the baby';
seq a+28.062, qw/0720 0902/, 'sawyer phones all anthony coopers. miles thinks hes lying about it being an old buddy who will give him lakers tickets';
seq I+70, qw/0904 1159/, 'not-locke sends sawyer to do some recon on some of the other passengers';
seq a+28.063, qw/1201 1554/, 'sawyer dates charlotte. he kicks her out when she reads his file in sawyer';
seq I+71, qw/1556 2037/, 'claire attempts to kill kate. locke slaps some sense into claire. sawyer goes past the ajira plane seeing a pile of dead bodies. he discovers zoe who says shes the only one left from flight ajira';
seq a+28.064, qw/2039 2219/, 'miles doesnt want to be sawyers partner after discovering that he lied about the palm springs trip';
seq I+72, qw/2221 3008/, 'sawyer talks with zoe. not-locke talks with kate about claire. zoe and widmores people capture sawyer. not-locke talks about crazy mothers';
seq a+28.065, qw/3010 3210/, 'after watching little house on the prairie, sawyer apologizes to charlotte tells him he blew it';
seq I+73, qw/3212 3808/, 'sawyer tells not-locke about widmores plan';
seq a+28.066, qw/3810 4039/, 'sawyer tells miles about wanting to kill cooper. kate crashes into sawyers car and sawyer catches her';
seq I+74, qw/4041 4217/, 'sawyer tells kate hes going to let widmore and not-locke fight it out while he and kate takes the sub';
ep 'S06E09', 'ab aeterno', 'richard';
seq i+365.71, qw/0035 0131/, 'jacob visits ilana in the hospital';
seq I+75, qw/0133 0201/, 'candidates? candidates for what? to replace jacob. so now what do we do?';
seq i+365.72, qw/0203 0215/, 'jacob tells her to ask ricardos what to do after she brings them to the temple';
seq I+76, qw/0217 0345/, 'richard doesnt know what to do next. he goes to not-locke';
seq I+77, qw/0402 0601/, 'ilana plans on going after richard. hugo talks to ghost in spanish';
seq b+.99E-6, qw/0603 1532/, 'richard tries to help wife in tenerife, canary islands in 1867. he accidentally kills the doctor. isabella dies. on the day of richard execution magnus hanso buys him as a slave boarding the black rock for america';
seq b+2E-6, qw/1534 3941/, 'the boat crashes on the island breaking the statue of taweret along the way. whitfield kills the prisoners but couldnt get to richard before the smoke monster killed him. richard spends a while attached to his chains till the smoke monster kills him. man in black frees him telling him to kill jacob. jacob tells richard the island is a cork. richard brings a white rock back to man in black who tells him he can change his mind whenever';
seq I+78, qw/3943 4505/, 'richard diggs up the cross. hugo helps him talk with isabella. then tells him she said he needs to stop the man in black';
seq b+3E-6, qw/4507 4649/, 'jacob brings the man in black the bottle of wine which he smashes';
ep 'S06E10', 'the package', 'jin', 'sun';
seq I+79, qw/0057 0232/, 'not-locke tells jin he needs to get sun in order to get off the island';
seq a+8.2, qw/0234 0412/, 'tsa confiscates jins 25k. alt universe they are not married';
seq I+80, qw/0414 0614/, 'widmores people attack not-lockes camp when hes gone and take jin';
seq I+81, qw/0629 0840/, 'jack talks with sun in the garden';
seq a+28.1, qw/0842 1042/, 'sun unbuttons when jin visits her hotel room';
seq I+82, qw/1044 1234/, 'not-locke tries to get sun to come to his camp with him. she runs and hts her head';
seq a+28.2, qw/1236 1430/, 'martin keemy visits sun in her hotel room. jin hides';
seq I+83, qw/1432 2039/, 'sun forgot how to talk. not-locke discovers what happened to his group. jin awakes in room 23';
seq a+28.3, qw/2041 2348/, 'keemy gets mikhail to talk with sun and jin. he takes her to the bank and keemy takes jin to the restaurant';
seq I+84, qw/2350 2756/, 'richard comes back to to the group at the beach. not-locke talks with widmore';
seq a+28.4, qw/2758 3103/, 'keemy ties jin up in the refrigerator';
seq I+85, qw/3104 3340/, 'widmore takes jin to see the package';
seq a+33.1, qw/3342 3656/, 'sayid frees jin. jin shoots mikhail in the eye. sun is shot and pregnant';
seq I+86, qw/3658 4214/, 'sun can write. jack promises hell reunite her with jin. not-locke doesnt like secrets. sayid notices desmond being dragged from the sub';
ep 'S06E11', 'happily ever after', 'desmond';
seq I+87, qw/0000 0455/, 'widmore tells desmond he brought him back to island. after on of widmores men dies in the solenoid shack they bring desmond in';
seq I+88, qw/0511 0826/, 'widmore puts desmond in the electromagnetism chamber and turns it on';
seq a+8.1, qw/0826 1130/, 'hugo tells desmond it carousel 4. desmond helps claire with her bag. minkowski picks him up';
seq a+16.1, qw/1132 3713/, 'desmond is now widmores right hand man. they drink mccutchens. he picks up charlie. car accident where he notices hes in an alternate universe. desmond asks eloise about penny. faraday tells him where to find her. desmond meets penny doing a tour de stad';
seq I+89, qw/3714 3931/, 'desmond wakes up in the emshack with an understanding';
seq a+16.2, qw/3933 4205/, 'desmond and penny set up a coffee date. desmond asks minkowski for a list of 815 passengers';
# 4 locke
# 8 reyes
# 15 sayid
# 16 ford
# 23 shephard (yo jack sat in 23b on flight 815)
# 42 kwon
ep 'S06E12', 'everybody loves hugo', 'hugo';
seq a+28.0661, qw/0040 0312/, 'pierre awards hugo for the paleontology wing of the museum';
seq I+90, qw/0314 0507/, 'ilana tells hugo she plans on getting dynamite for the plane. michael appears to hugo';
seq I+91, qw/0524 0611/, 'michael tells hugo not to blow up the plane';
seq a+28.0662, qw/0613 0900/, 'hugo meets libby while waiting for his blind date with rosalita';
seq I+92, qw/0902 1337/, 'ilana blows up (why hugo didnt say "dude"?). not-locke isnt doing nothing, hes waiting. not-locke meets the tied up desmond. richard plans on going to get more dynamite. hugo agrees';
seq a+28.0663, qw/1339 1552/, 'desmond meets hugo in a mr clucks and tells him to go after libby';
seq I+93, qw/1554 2020/, 'not-locke frees desmond takes him for a walk. hugo blows up the black rock';
seq a+28.0664, qw/2022 2504/, 'hugo donates to dr brooks to meet libby and set up a beach picnic';
seq I+94, qw/2506 3227/, 'richard hugo split. richard, miles, ben go to dharma barracks for grenades. hugo, jack, sun and lapidus go to not-locke. on the trek michale tells hugo where to go';
seq a+28.0665, qw/3229 3459/, 'on picnic, memories of real universe come back when hugo kisses libby';
seq I+95, qw/3502 4008/, 'locke throws desmond down the well. hugo et al arrive at not-lockes camp';
seq a+51, qw/4010 4147/, 'desmond hits locke with his car';
ep 'S06E13', 'the last recruit';
seq I+96, qw/0101 0411/, 'not-locke admits he took the apearance of christian to help jack in day 3';
seq a+52, qw/0413 0530/, 'ben accompanies locke to hospital and enters the same time jin and sun';
seq I+97, qw/0532 0720/, 'claire tells jack he already made up his mind to join not-locke';
seq I+98, qw/0737 0836/, 'sawyer tells hugo that they are taking widmores sub';
seq a+53, qw/0838 1118/, 'kate talks with sawyer at precinct. miles finds sayid';
seq I+99, qw/1120 1327/, 'zoe visits not-lockes camp shows him what the nerds are capable of and asks for desmond back';
seq a+54, qw/1329 1638/, 'desmond gets claire to accept ilanas help in adoption';
seq I+100, qw/1640 2057/, 'sawyer tells jack his plan to get widmores sub. sayid about to kill desmond in well';
seq a+55, qw/2059 2224/, 'miles questions nadia. sawyer arrests sayid';
seq I+101, qw/2226 2854/, 'sawyer and kate swim to boat. jack, hugo, sun, and lapidus ditch not-locke. claire follows';
seq a+56, qw/2856 3133/, 'david and jack meet ilana to read christians will and meet claire but jack needs to reschedule to work on locke';
seq I+102, qw/3135 3457/, 'sawyer talks with jack and jack jumps off the boat';
seq a+57, qw/3459 3737/, 'sun awakes. jack operates on locke';
seq I+103, qw/3739 4120/, 'jack reaches shore. sawyer group reaches nerds. sun reunites with jin. nerds take sawyers group captive then fires a missile on not-locke and jack';
ep 'S06E14', 'the candidate';
seq a+58, qw/0000 0207/, 'jack tells locke hes a candidate for surgery';
seq I+104, qw/0209 0405/, 'sayid takes jack to hydra island. nerds put sawyer into hydra cages';
seq a+59, qw/0420 0618/, 'jack visits bernard about locke and he tells him about cooper';
seq I+105, qw/0620 1208/, 'sayid turns off the pilons. smoke monster kills nerds. jack gets sawyer and everyone out of the cages. they head to the plane';
seq a+60, qw/1210 1357/, 'jack visits cooper and meets helen';
seq I+106, qw/1359 1810/, 'locke takes bomb off of plane. group heads to sub';
seq a+61, qw/1813 2113/, 'claire visits jack and shows him a music box christian gave her. jack invites her to stay by him';
seq I+107, qw/2115 3607/, 'group enters sub. kate is shot. claire and not-locke are left out. jack finds a bomb in his pack. sawyer takes the wires out. and sayid takes it with him to explode. jin and sun die together. jack kate hugo and sawyer (lapidus) get out';
seq a+62, qw/3609 3924/, 'jack and locke talk about letting go. jack wish locke believed him';
seq I+108, qw/3926 4121/, 'jack kate hugo and sawyer wash up on the shore. jin and suns death hits them. locke goes to finish what he started';
ep 'S06E15', 'across the sea', 'jacob and mib';
seq b+1E-7, qw/0000 0528/, 'claudia washes up on the island, delivers jacob and mib then mother kills claudia';
seq b+2E-7, qw/0544 4043/, 'jacob plays senet with mib. find others. see glowey cave. mib sees claudia and joins people. 30 years later. mib wants to use the people (theyre smart) to get off the island. mib builds the donkey wheel. mother attacks mib, annoints jacob, and kills the people. mib kills his mother. jacob throws mib into glowey cave. he becomes smoke monster. jacob buries mother and mib in the cave';
seq b+3E-7, qw/4058 4109/, 'lays them to rest';
seq b+4E-7, qw/4120 4134/, 'puts the senet pieces in mibs hand';
seq b+5E-7, qw/4151 4208/, 'and says goodbye';
ep 'S06E16', 'what they died for';
seq a+63, qw/0045 0254/, 'jack david and claire have breakfast (who puts milk into another container?). desmond acting like hes oceanic says he has christians body';
seq I+109, qw/0256 0414/, 'jack sutures kates bullet wound';
seq I+110, qw/0430 0540/, 'jack hugo kate and sawyer stare out to the ocean before head to desmond';
seq a+64, qw/0542 0648/, 'desmond beats ben';
seq I+111, qw/0650 1144/, 'miles ben and richard go to dharma houses for the C4. zoe and widmore visit. locke comes and they hide';
seq a+65, qw/1146 1439/, 'locke talks with ben in nurses office. desmond gives himself in to sawyer and gets locked up with kate and sayid';
seq I+112, qw/1441 2040/, 'heading to desmond, jacob takes his ashes from hugo and puts them in the fire. widmore and zoe hide. smoke monster knocks out richard. ben gives widmore up';
seq a+66, qw/2042 2314/, 'alex and rousseau invite ben over for dinner';
seq I+113, qw/2316 2829/, 'not-locke kills zoe. ben kills widmore just after he tells not-locke why he brought desmond. ben is ready to kill more people. jacob speaks to jack hugo sawyer and kate';
seq a+67, qw/2831 3051/, 'locke is ready to get out of the chair';
seq I+114, qw/3052 3706/, 'jacob chose them because he created the smoke monster and they were flawed. jacob annoints jack';
seq a+68, qw/3708 4036/, 'desmond breaks sayid and kate out (ana lucia!) and head to the concert';
seq I+115, qw/4038 4217/, 'not-locke and ben find desmond missing from the well. this is ok with not-locke, becuase now he can use desmond to destroy the island';
ep 'S06E17', 'the end';
seq a+69, qw/0103 0150/, 'christian arrives at lax. jack prepares for surgery';
seq I+116, qw/0152 0158/, 'jack washes his face and looks at his hands';
seq a+70, qw/0200 0210/, 'ben makes tea';
seq I+117, qw/0212 0222/, 'ben loads bullets into his gun. not-locke wraps a rope';
seq a+71, qw/0224 0248/, 'locke looks at wheelchair. christian gets loaded into truck. sawyer puts badge on and looks at broken mirror';
seq I+118, qw/0250 0253/, 'hugo sits by fire. sawyer looks at kates wound';
seq a+72, qw/0255 0300/, 'truck moves out';
seq I+119, qw/0302 0305/, 'sawyer tends to kates wound';
seq a+73, qw/0307 0535/, 'kate waits in car while desmond signs for christians body. no one can tell you why youre here';
seq I+120, qw/0537 0801/, 'jack tells kate sawyer hugo they have to go to glowey cave. sawyer goes to get desmond';
seq a+74, qw/0816 1039/, 'hugo leaves sayid in car while he goes to get charlie. he traqs him and puts him in his trunk';
seq I+121, qw/1041 1725/, 'kate tells jack that nothing is irreversible. sawyer meets up with ben and not-locke, then goes away when he finds that desmond isnt there. desmond wakes up in rose and bernards camp. not-locke gets desmond to come with him. richard still wants to blow up the plane';
seq a+75, qw/1727 2149/, 'miles sees sayid and calls sawyer to keep an eye on them. juliet ultrasounds sun and they remember';
seq I+122, qw/2151 2239/, 'jack kate and hugo set out for glowey cave';
seq a+76, qw/2241 2353/, 'jack talks to locke before the surgery';
seq I+123, qw/2355 2757/, 'miles and richard head to plane and find lapidus in water. lockes group meets jacks group and they head to glowey cave';
seq a+77, qw/2759 2902/, 'jack meets juliet before sugery. sawyer comes in looking for sun';
seq I+124, qw/2904 3244/, 'jack desmond and not-locke head into the glowey cave';
seq a+78, qw/3246 3529/, 'hugo brings sayid outside a bar where he comes to the aid of shannon, they remember. hugo and boone give them a minute to make out';
seq I+125, qw/3531 3900/, 'claire refuses to go with richard miles and lapidus. desmond is lowered into the cave';
seq a+79, qw/3902 4248/, 'juliet is called back to the hospital. charlie is awoken for the concert. widmore greets charlotte. faraday starts playing, chrlie sees claire, claire has contractions, kate and charlie follow';
seq I+126, qw/4250 4556/, 'desmond uncorks the energy, the light dies, and the island starts to fall apart. jack hits not-locke finding that he is mortal before not-locke hits jack with a rock and gets away';
seq a+80, qw/4558 5129/, 'claire delivers aaron. kate claire and charlie remember';
seq I+127, qw/5131 5302/, 'ben gets trapped under tree';
ep 'S06E18', 'the end';
seq I+128, qw/0000 0357/, 'jack and not-locke fight on the cliffs. kate shoots not-locke and jack kicks him over the edge';
seq a+81, qw/0359 0658/, 'it worked. lockes surgery. locke hopes someone does for jack what jack did for locke';
seq I+129, qw/0701 0759/, 'hugo and sawyer meet up with jack and kate on the cliffs';
seq a+82, qw/0801 0857/, 'sawyer comes in just as jin and sun are leaving to the benefit';
seq I+130, qw/0859 1350/, 'lapidus gives miles some duct tape to fix the planes hydraulics. jack hugo and ben head back to glowey cave. last time jack sees kate. they kiss. sawyer and kate jump off the cliff to the boat. sawyer head first ftw';
seq a+83, qw/1352 1931/, 'sawyer and juliet remember by the hospital vending machines. jack and kate meet outside after the concert';
seq I+131, qw/1933 3201/, 'jack annoints hugo then gets lowered into the glowey cave. jack attached desmond to the rope. kate offers to help claire back. sawyer stops the plane just before take off. jack recorks. the plane takes off. the water comes back to the cave and the light starts shining. hugo and ben pull up desmond';
seq a+84, qw/3203 3508/, 'ben stays outside. locke ditches the chair and goes inside';
seq I+132, qw/3510 3704/, 'hugo overwealmed by new role asks ben to help him';
seq a+85, qw/3706 3909/, 'hugo tells ben he was a great no 2. kate tells jack he can go inside when hes ready';
seq I+133, qw/3911 3949/, 'jack washes up and starts walking badly injured';
seq a+86, qw/3951 4632/, 'jack finds his fathers casket. touches it and remembers. christian appears and speaks to him. he realizes that he died. he joins the others in the church.';
seq I+134, qw/4634 4637/, 'jack steps forward';
seq a+87, qw/4639 4647/, 'locke greets jack';
seq I+135, qw/4649 4650/, 'jack steps forward';
seq a+88, qw/4652 4714/, 'jack hugs desmond then boone';
seq I+136, qw/4716 4722/, 'jack walks through the bamboo forest';
seq a+89, qw/4724 4727/, 'jack hugs hugo';
seq I+137, qw/4729 4731/, 'jack stops';
seq a+90, qw/4733 4759/, 'charlie holds aaron with claire and shannon sayid and sun. jack hugs sawyer then approaches kate';
seq I+138, qw/4801 4803/, 'jack walks a bit further into the bamboo';
seq a+91, qw/4805 4813/, 'jack holds kates hand';
seq I+139, qw/4815 4818/, 'jack in bamboo forest';
seq a+92, qw/4820 4823/, 'jack and kate sit';
seq a+93, qw/4825 4826/, 'jack and kate sit';
seq I+140, qw/4827 4828/, 'jack lies down';
seq a+94, qw/4829 4830/, 'jack and kate sit';
seq I+141, qw/4830 4832/, 'jack lies down';
seq a+95, qw/4833 4836/, 'kate holds jacks hand';
seq I+142, qw/4837 4840/, 'jack holds his wound';
seq a+96, qw/4840 4908/, 'jack looks at kate. sayid and shannon sit. locke, desmond, penny, charlie, bernard, rose, sun, jin, hugo, libby, juliet, sawyer, (poor boone). christian puts his hand on jacks shoulder';
seq I+143, qw/4909 4933/, 'vincent lies down beside jack as he looks up';
seq a+97, qw/4934 5008/, 'christian walks to the back of the room and opens the door and floods the church with light. jack looks at kate';
seq I+144, qw/5008 5026/, 'jack sees the plane fly overhead';
seq a+98, qw/5027 5033/, 'jack fades into the light';
seq I+145, qw/5033 5046/, 'jack closes his eye';
sub in {
my ($w, $r) = @_;
my $n = $_->{n};
!$r ? $n >= $w && $n < $w + 900
: $n > $w - $r && $n < $w + $r
}
sub filter_seq {
my ($filter) = @_;
return grep {
$e = $_->{episode};
$c = $_->{character};
$n = $_->{n};
$filter->()
} @seq if $filter;
grep {
my $e = $_->{episode};
my $c = $_->{character};
my $n = $_->{n};
in(O)
#$n >= b+15 && $n <= b+15.11
#$c eq 'sayid' && $n < i
#$n >= o-120
#$_->{episode} eq $episode
#$_->{character} ~~ /jin|sun/
#&& $_->{n} < i
#i - 25 < $_->{n} && $_->{n} < i + 25
#$_->{n} > o && $_->{n} < I
#$_->{episode} eq 'S01E18' && $_->{n} > i
#1
} @seq;
}
seq_print;
#play;
#create_movie;
=for comment
create_movie '01b.jacob_and_mib', sub {$n < b+8E-7};
create_movie '02b.richard_alpert', sub {$n > b+8E-7 && $n < b+1E-5};
create_movie '03b.benjamin_linus', sub {$n >= b+1E-5 && $n < b+1E-4};
create_movie '04b.kate_austen', sub {$n >= b+1E-4 && $n < b+4};
create_movie '05b.john_locke', sub {$n > b+4 && $n < b+8};
create_movie '06b.jack_shepherd', sub {$n >= b+8 && $n < b+14};
create_movie '07b.sun_and_jin_kwon', sub {$n > b+14 && $n < b+20};
create_movie '08b.charlie_pace', sub {$n > b+20 && $n < b+25};
create_movie '09b.sawyer', sub {$n > b+25 && $n < b+30};
create_movie '10b.sayid_jarrah', sub {$n > b+30 && $n < b+35};
create_movie '11b.claire_littleton', sub {$n > b+35 && $n < b+41};
create_movie '12b.shannon_rutherford_and_boone_carlyle', sub {$n > b+41 && $n < b+46};
create_movie '13b.michael_dawson', sub {$n >= b+46 && $n < b+54};
create_movie '14b.hugo_reyes', sub {$n > b+54 && $n < b+60};
create_movie '15b.ana_lucia_cortez', sub {$n >= b+60 && $n < b+65};
create_movie '16b.eko', sub {$n > b+65 && $n < b+71};
create_movie '17b.rose_and_bernard_nadler', sub {$n >= b+71 && $n <= b+76};
create_movie '18b.juliet_burke', sub {$n > b+76 && $n < b+84};
create_movie '19b.nikki_fernandez_and_paulo', sub {$n >= b+84 && $n < b+86};
create_movie '20b.miles_straume_and_daniel_faraday', sub {$n >= b+87 && $n < b+100};
create_movie '21b.desmond_hume', sub {$n > b+100 && $n < b+200};
create_movie '22i.crash_live_together_die_alone', sub {$n >= p && $n < i+29};
create_movie '23i.cave_golf_guns_walt_polar_bear', sub {$n >= i+29 && $n <= i+86};
create_movie '24i.claire_captured_goodwin_dies', sub {$n > i+86 && $n < i+87};
create_movie '25i.raft_fire_and_rebuild_boone_dies', sub {$n >= i+87 && $n <= i+143};
create_movie '26i.losties_take_over_hatch_raft_explodes', sub {$n > i+143 && $n <= i+192};
create_movie '27i.tailies_rejoin_light_em_uup_benry', sub {$n > i+192 && $n < i+250};
create_movie '28i.sun_preg_hatch_explodes_taken_prisoner', sub {$n >= i+250 && $n < i+314};
create_movie '29i.eko_dies_bens_surgery_sawyer_kate_return', sub {$n >= i+314 && $n <= i+365};
create_movie '30i.science_team_board_kahana_michael_moles', sub {$n > i+365 && $n < i+366};
create_movie '31i.van_the_flame_sub_explodes_jacks_return', sub {$n >= i+366 && $n < i+416};
create_movie '32i.science_team_charlie_dies_jack_locke_split', sub {$n >= i+416 && $n <= i+473};
create_movie '33i.wet_team_kahana_explodes_island_moves', sub {$n > i+473 && $n < i+800};
create_movie '34o.oceanic_six', sub {in(o)};
create_movie '35f.time_flashes', sub {in(f)};
# following lockes consciousness to...
create_movie '36O.oceanic_six_plus_bentham', sub {in(O)};
create_movie '37d.dharma_and_incident', sub {in(d)};
create_movie '38I.after_ajira_jacobs_death_losties_return', sub {$n > I && $n < I+35};
create_movie '39I.attack_on_the_temple_widmore_arrives', sub {$n >= I+35 && $n < I+90};
create_movie '40I.sub_explodes_glowey_cave', sub {$n >= I+90 && $n < I+200};
create_movie '41a.815_doesnt_crash', sub {$n > a && $n < a+29};
create_movie '42a.they_remember', sub {$n >= a+29};
=cut
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment