srt 0.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/.gitignore +17 -0
- data/Gemfile +4 -0
- data/LICENSE +22 -0
- data/README.md +36 -0
- data/Rakefile +8 -0
- data/lib/srt.rb +3 -0
- data/lib/srt/file.rb +48 -0
- data/lib/srt/line.rb +22 -0
- data/lib/srt/version.rb +3 -0
- data/spec/bsg-s01e01.srt +2708 -0
- data/spec/srt_spec.rb +72 -0
- data/srt.gemspec +20 -0
- metadata +98 -0
data/.gitignore
ADDED
data/Gemfile
ADDED
data/LICENSE
ADDED
@@ -0,0 +1,22 @@
|
|
1
|
+
Copyright (c) 2013 Christopher Petersen
|
2
|
+
|
3
|
+
MIT License
|
4
|
+
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
6
|
+
a copy of this software and associated documentation files (the
|
7
|
+
"Software"), to deal in the Software without restriction, including
|
8
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
9
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
10
|
+
permit persons to whom the Software is furnished to do so, subject to
|
11
|
+
the following conditions:
|
12
|
+
|
13
|
+
The above copyright notice and this permission notice shall be
|
14
|
+
included in all copies or substantial portions of the Software.
|
15
|
+
|
16
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
17
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
18
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
19
|
+
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
20
|
+
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
21
|
+
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
22
|
+
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
data/README.md
ADDED
@@ -0,0 +1,36 @@
|
|
1
|
+
# SRT
|
2
|
+
|
3
|
+
SRT stands for SubRip text file format, which is a file for storing subtitles. This is a Ruby library for manipulating SRT files.
|
4
|
+
|
5
|
+
## Installation
|
6
|
+
|
7
|
+
Add this line to your application's Gemfile:
|
8
|
+
|
9
|
+
gem 'srt'
|
10
|
+
|
11
|
+
And then execute:
|
12
|
+
|
13
|
+
$ bundle
|
14
|
+
|
15
|
+
Or install it yourself as:
|
16
|
+
|
17
|
+
$ gem install srt
|
18
|
+
|
19
|
+
## Usage
|
20
|
+
|
21
|
+
You can parse an SRT file with the following code:
|
22
|
+
|
23
|
+
```ruby
|
24
|
+
file = SRT::File.parse(File.new("MY_SRT_FILENAME.srt"))
|
25
|
+
file.lines.each do |line|
|
26
|
+
puts line.text.join(" ")
|
27
|
+
end
|
28
|
+
```
|
29
|
+
|
30
|
+
## Contributing
|
31
|
+
|
32
|
+
1. Fork it
|
33
|
+
2. Create your feature branch (`git checkout -b my-new-feature`)
|
34
|
+
3. Commit your changes (`git commit -am 'Added some feature'`)
|
35
|
+
4. Push to the branch (`git push origin my-new-feature`)
|
36
|
+
5. Create new Pull Request
|
data/Rakefile
ADDED
data/lib/srt.rb
ADDED
data/lib/srt/file.rb
ADDED
@@ -0,0 +1,48 @@
|
|
1
|
+
module SRT
|
2
|
+
class File
|
3
|
+
def self.parse(file)
|
4
|
+
result = SRT::File.new
|
5
|
+
line = SRT::Line.new
|
6
|
+
file.each_with_index do |str, index|
|
7
|
+
begin
|
8
|
+
if line.error
|
9
|
+
if str.strip.empty?
|
10
|
+
result.lines << line unless line.empty?
|
11
|
+
line = SRT::Line.new
|
12
|
+
end
|
13
|
+
else
|
14
|
+
if str.strip.empty?
|
15
|
+
result.lines << line unless line.empty?
|
16
|
+
line = SRT::Line.new
|
17
|
+
elsif line.sequence.nil?
|
18
|
+
line.sequence = str.to_i
|
19
|
+
elsif line.start_time.nil?
|
20
|
+
matcher = str.match(/(.*) -+> (.*)/)
|
21
|
+
if matcher
|
22
|
+
line.start_time = DateTime.strptime(matcher[1].strip, "%H:%M:%S,%L")
|
23
|
+
line.end_time = DateTime.strptime(matcher[2].strip, "%H:%M:%S,%L")
|
24
|
+
else
|
25
|
+
line.error = "#{line}, Invalid Time String, [#{str}]"
|
26
|
+
end
|
27
|
+
else
|
28
|
+
line.text << str.strip
|
29
|
+
end
|
30
|
+
end
|
31
|
+
rescue
|
32
|
+
line.error = "#{index}, General Error, [#{str}]"
|
33
|
+
puts line.error
|
34
|
+
end
|
35
|
+
end
|
36
|
+
result
|
37
|
+
end
|
38
|
+
|
39
|
+
attr_writer :lines
|
40
|
+
def lines
|
41
|
+
@lines ||= []
|
42
|
+
end
|
43
|
+
|
44
|
+
def errors
|
45
|
+
lines.collect { |l| l.error if l.error }.compact
|
46
|
+
end
|
47
|
+
end
|
48
|
+
end
|
data/lib/srt/line.rb
ADDED
@@ -0,0 +1,22 @@
|
|
1
|
+
module SRT
|
2
|
+
class Line
|
3
|
+
attr_accessor :sequence
|
4
|
+
attr_accessor :start_time
|
5
|
+
attr_accessor :end_time
|
6
|
+
attr_accessor :error
|
7
|
+
attr_writer :text
|
8
|
+
def text
|
9
|
+
@text ||= []
|
10
|
+
end
|
11
|
+
|
12
|
+
def initialize(options={})
|
13
|
+
options.each do |k,v|
|
14
|
+
self.send("#{k}=",v)
|
15
|
+
end
|
16
|
+
end
|
17
|
+
|
18
|
+
def empty?
|
19
|
+
sequence.nil? && start_time.nil? && end_time.nil? && text.empty?
|
20
|
+
end
|
21
|
+
end
|
22
|
+
end
|
data/lib/srt/version.rb
ADDED
data/spec/bsg-s01e01.srt
ADDED
@@ -0,0 +1,2708 @@
|
|
1
|
+
1
|
2
|
+
00:00:02,110 --> 00:00:04,578
|
3
|
+
<i>(male narrator) Previously
|
4
|
+
on Battlestar Galactica.</i>
|
5
|
+
|
6
|
+
2
|
7
|
+
00:00:05,313 --> 00:00:06,871
|
8
|
+
Now you're telling me
|
9
|
+
you're a machine.
|
10
|
+
|
11
|
+
3
|
12
|
+
00:00:07,014 --> 00:00:08,003
|
13
|
+
The robot.
|
14
|
+
|
15
|
+
4
|
16
|
+
00:00:08,082 --> 00:00:11,017
|
17
|
+
You knew I wanted access
|
18
|
+
to the defense mainframe.
|
19
|
+
|
20
|
+
|
21
|
+
|
22
|
+
5
|
23
|
+
00:00:11,085 --> 00:00:14,452
|
24
|
+
Do you have any idea what they
|
25
|
+
will do to me if they find out?
|
26
|
+
|
27
|
+
6
|
28
|
+
00:00:14,522 --> 00:00:15,784
|
29
|
+
Get down.
|
30
|
+
|
31
|
+
|
32
|
+
|
33
|
+
7
|
34
|
+
00:00:16,991 --> 00:00:19,425
|
35
|
+
<i>(Adama) Moments ago,
|
36
|
+
this ship received word...</i>
|
37
|
+
|
38
|
+
8
|
39
|
+
00:00:19,494 --> 00:00:22,952
|
40
|
+
<i>of a Cylon attack against
|
41
|
+
our home worlds is underway.</i>
|
42
|
+
|
43
|
+
9
|
44
|
+
00:00:23,030 --> 00:00:26,124
|
45
|
+
As of this moment,
|
46
|
+
we are at war.
|
47
|
+
|
48
|
+
10
|
49
|
+
00:00:26,200 --> 00:00:28,259
|
50
|
+
All right,
|
51
|
+
we can take three more people.
|
52
|
+
|
53
|
+
11
|
54
|
+
00:00:28,736 --> 00:00:30,397
|
55
|
+
Giving up my seat.
|
56
|
+
|
57
|
+
12
|
58
|
+
00:00:35,810 --> 00:00:38,802
|
59
|
+
I've decided you're an expression
|
60
|
+
of my subconscious mind...
|
61
|
+
|
62
|
+
13
|
63
|
+
00:00:38,880 --> 00:00:41,314
|
64
|
+
playing itself out
|
65
|
+
during my waking states.
|
66
|
+
|
67
|
+
14
|
68
|
+
00:00:41,382 --> 00:00:43,942
|
69
|
+
So I'm only in your head?
|
70
|
+
|
71
|
+
15
|
72
|
+
00:00:47,321 --> 00:00:48,345
|
73
|
+
No.
|
74
|
+
|
75
|
+
16
|
76
|
+
00:00:48,422 --> 00:00:50,982
|
77
|
+
There maybe Cylon agents
|
78
|
+
living among us.
|
79
|
+
|
80
|
+
17
|
81
|
+
00:00:51,058 --> 00:00:53,390
|
82
|
+
Some may not even know
|
83
|
+
they're Cylons at all.
|
84
|
+
|
85
|
+
18
|
86
|
+
00:00:53,461 --> 00:00:54,826
|
87
|
+
<i>They could be
|
88
|
+
sleeper agents...</i>
|
89
|
+
|
90
|
+
19
|
91
|
+
00:00:54,896 --> 00:00:58,889
|
92
|
+
<i>programmed to perfectly impersonate
|
93
|
+
human beings until activation.</i>
|
94
|
+
|
95
|
+
20
|
96
|
+
00:01:01,869 --> 00:01:03,393
|
97
|
+
[clock ticking]
|
98
|
+
|
99
|
+
21
|
100
|
+
00:01:15,850 --> 00:01:17,477
|
101
|
+
<i>[ticking echoing]</i>
|
102
|
+
|
103
|
+
22
|
104
|
+
00:01:29,063 --> 00:01:30,724
|
105
|
+
[controls beeping]
|
106
|
+
|
107
|
+
23
|
108
|
+
00:01:33,968 --> 00:01:35,868
|
109
|
+
And one minute to mark.
|
110
|
+
|
111
|
+
24
|
112
|
+
00:01:56,791 --> 00:01:58,315
|
113
|
+
[timer beeping]
|
114
|
+
|
115
|
+
25
|
116
|
+
00:01:59,160 --> 00:02:00,821
|
117
|
+
[woman chattering]
|
118
|
+
|
119
|
+
26
|
120
|
+
00:02:10,004 --> 00:02:11,733
|
121
|
+
[people chattering]
|
122
|
+
|
123
|
+
27
|
124
|
+
00:02:25,253 --> 00:02:29,656
|
125
|
+
God has a plan for you, Gaius. He has
|
126
|
+
a plan for everything and everyone.
|
127
|
+
|
128
|
+
28
|
129
|
+
00:02:35,730 --> 00:02:38,221
|
130
|
+
Gaius?
|
131
|
+
Are you even listening to me?
|
132
|
+
|
133
|
+
29
|
134
|
+
00:02:43,804 --> 00:02:45,738
|
135
|
+
<i>(man on P.A.) Passengers,
|
136
|
+
30 seconds to mark.</i>
|
137
|
+
|
138
|
+
30
|
139
|
+
00:02:45,806 --> 00:02:49,173
|
140
|
+
(Roslin)
|
141
|
+
Planet. Men. Women. Age.
|
142
|
+
|
143
|
+
31
|
144
|
+
00:02:49,243 --> 00:02:53,145
|
145
|
+
You know what? Do this after the
|
146
|
+
jump. It's all right. Go ahead.
|
147
|
+
|
148
|
+
32
|
149
|
+
00:02:53,214 --> 00:02:54,408
|
150
|
+
[sighs]
|
151
|
+
|
152
|
+
33
|
153
|
+
00:02:55,416 --> 00:02:56,906
|
154
|
+
[clock ticking]
|
155
|
+
|
156
|
+
34
|
157
|
+
00:02:57,418 --> 00:02:58,749
|
158
|
+
[sniffles]
|
159
|
+
|
160
|
+
35
|
161
|
+
00:03:06,427 --> 00:03:08,759
|
162
|
+
You have to
|
163
|
+
believe in something.
|
164
|
+
|
165
|
+
36
|
166
|
+
00:03:10,631 --> 00:03:13,862
|
167
|
+
I believe in a world
|
168
|
+
that I can and do understand.
|
169
|
+
|
170
|
+
37
|
171
|
+
00:03:13,968 --> 00:03:17,665
|
172
|
+
A rational universe explained
|
173
|
+
through rational means.
|
174
|
+
|
175
|
+
38
|
176
|
+
00:03:19,974 --> 00:03:21,271
|
177
|
+
[snickers]
|
178
|
+
|
179
|
+
39
|
180
|
+
00:03:24,545 --> 00:03:27,742
|
181
|
+
I love you.
|
182
|
+
That's not rational.
|
183
|
+
|
184
|
+
40
|
185
|
+
00:03:30,351 --> 00:03:31,545
|
186
|
+
I know.
|
187
|
+
|
188
|
+
41
|
189
|
+
00:03:33,220 --> 00:03:36,587
|
190
|
+
No, but you're not rational.
|
191
|
+
|
192
|
+
42
|
193
|
+
00:03:39,760 --> 00:03:41,887
|
194
|
+
You're also not really here.
|
195
|
+
|
196
|
+
43
|
197
|
+
00:03:43,664 --> 00:03:45,131
|
198
|
+
Neither am I.
|
199
|
+
|
200
|
+
44
|
201
|
+
00:03:46,867 --> 00:03:48,892
|
202
|
+
<i>(pilot) Madam President,
|
203
|
+
ladies and gentlemen...</i>
|
204
|
+
|
205
|
+
45
|
206
|
+
00:03:48,969 --> 00:03:51,130
|
207
|
+
<i>our 33 minutes
|
208
|
+
are almost up once again.</i>
|
209
|
+
|
210
|
+
46
|
211
|
+
00:03:51,205 --> 00:03:54,732
|
212
|
+
<i>Please prepare for our
|
213
|
+
faster-than-light jump. Thank you.</i>
|
214
|
+
|
215
|
+
47
|
216
|
+
00:04:01,248 --> 00:04:04,149
|
217
|
+
Cutting it a little close
|
218
|
+
this time, aren't we, Billy?
|
219
|
+
|
220
|
+
48
|
221
|
+
00:04:04,218 --> 00:04:07,585
|
222
|
+
Pilot says they've had to
|
223
|
+
reboot the FTL computer again.
|
224
|
+
|
225
|
+
49
|
226
|
+
00:04:11,525 --> 00:04:14,085
|
227
|
+
(Cally) Why do the Cylons
|
228
|
+
come every 33 minutes?
|
229
|
+
|
230
|
+
50
|
231
|
+
00:04:14,161 --> 00:04:15,924
|
232
|
+
Why isn't it 34, 35...
|
233
|
+
|
234
|
+
51
|
235
|
+
00:04:15,996 --> 00:04:17,020
|
236
|
+
(Tyrol)
|
237
|
+
Cally.
|
238
|
+
|
239
|
+
52
|
240
|
+
00:04:17,098 --> 00:04:18,190
|
241
|
+
What?
|
242
|
+
|
243
|
+
53
|
244
|
+
00:04:19,033 --> 00:04:20,261
|
245
|
+
Shut up.
|
246
|
+
|
247
|
+
54
|
248
|
+
00:04:24,038 --> 00:04:25,403
|
249
|
+
15 seconds.
|
250
|
+
|
251
|
+
55
|
252
|
+
00:04:27,274 --> 00:04:31,040
|
253
|
+
Sir, jump 237 underway.
|
254
|
+
53 ships have jumped.
|
255
|
+
|
256
|
+
56
|
257
|
+
00:04:31,112 --> 00:04:33,603
|
258
|
+
10 still reporting trouble
|
259
|
+
with their FTL drives...
|
260
|
+
|
261
|
+
57
|
262
|
+
00:04:33,681 --> 00:04:35,581
|
263
|
+
<i>including Colonial One.</i>
|
264
|
+
|
265
|
+
58
|
266
|
+
00:04:36,016 --> 00:04:37,813
|
267
|
+
We're getting slower.
|
268
|
+
|
269
|
+
59
|
270
|
+
00:04:38,486 --> 00:04:39,976
|
271
|
+
[timer beeping]
|
272
|
+
|
273
|
+
60
|
274
|
+
00:04:40,254 --> 00:04:41,846
|
275
|
+
Maybe this time.
|
276
|
+
|
277
|
+
61
|
278
|
+
00:04:53,534 --> 00:04:55,126
|
279
|
+
[timers bleeping]
|
280
|
+
|
281
|
+
62
|
282
|
+
00:04:56,904 --> 00:04:58,235
|
283
|
+
[alarm ringing]
|
284
|
+
|
285
|
+
63
|
286
|
+
00:05:04,712 --> 00:05:06,475
|
287
|
+
(Gaeta)
|
288
|
+
Dradis contact.
|
289
|
+
|
290
|
+
64
|
291
|
+
00:05:06,881 --> 00:05:08,473
|
292
|
+
It's the Cylons.
|
293
|
+
|
294
|
+
65
|
295
|
+
00:05:08,983 --> 00:05:09,972
|
296
|
+
Damn it.
|
297
|
+
|
298
|
+
66
|
299
|
+
00:05:10,050 --> 00:05:11,950
|
300
|
+
Not this time, maybe the next.
|
301
|
+
|
302
|
+
67
|
303
|
+
00:05:12,052 --> 00:05:13,576
|
304
|
+
[alarms buzzing]
|
305
|
+
|
306
|
+
68
|
307
|
+
00:05:13,654 --> 00:05:15,519
|
308
|
+
I got another idea
|
309
|
+
for the next cycle.
|
310
|
+
|
311
|
+
69
|
312
|
+
00:05:15,589 --> 00:05:16,715
|
313
|
+
<i>(pilot)
|
314
|
+
Ladies and gentlemen,</i>
|
315
|
+
|
316
|
+
70
|
317
|
+
00:05:16,791 --> 00:05:18,622
|
318
|
+
<i>I'm afraid the Cylons
|
319
|
+
have appeared again.</i>
|
320
|
+
|
321
|
+
71
|
322
|
+
00:05:18,692 --> 00:05:22,753
|
323
|
+
<i>However, our FTL drive is now
|
324
|
+
working and we will jump momentarily.</i>
|
325
|
+
|
326
|
+
72
|
327
|
+
00:05:24,465 --> 00:05:26,228
|
328
|
+
Five days now.
|
329
|
+
|
330
|
+
73
|
331
|
+
00:05:30,805 --> 00:05:32,534
|
332
|
+
There are limits...
|
333
|
+
|
334
|
+
74
|
335
|
+
00:05:33,340 --> 00:05:35,740
|
336
|
+
to the human body,
|
337
|
+
the human mind.
|
338
|
+
|
339
|
+
75
|
340
|
+
00:05:36,677 --> 00:05:39,271
|
341
|
+
Tolerances
|
342
|
+
that you can't push beyond.
|
343
|
+
|
344
|
+
76
|
345
|
+
00:05:42,016 --> 00:05:43,677
|
346
|
+
Those are facts...
|
347
|
+
|
348
|
+
77
|
349
|
+
00:05:45,052 --> 00:05:46,576
|
350
|
+
provable facts.
|
351
|
+
|
352
|
+
78
|
353
|
+
00:05:49,123 --> 00:05:51,114
|
354
|
+
Everyone has their limit.
|
355
|
+
|
356
|
+
79
|
357
|
+
00:05:51,625 --> 00:05:55,026
|
358
|
+
All right, you know the drill,
|
359
|
+
people. Scatter formation.
|
360
|
+
|
361
|
+
80
|
362
|
+
00:05:55,095 --> 00:05:56,426
|
363
|
+
<i>(Apollo)
|
364
|
+
Keep them off the civies</i>
|
365
|
+
|
366
|
+
81
|
367
|
+
00:05:56,497 --> 00:05:59,227
|
368
|
+
<i>and don't stray
|
369
|
+
beyond the recovery line.</i>
|
370
|
+
|
371
|
+
82
|
372
|
+
00:06:03,170 --> 00:06:05,035
|
373
|
+
Watch the ammo hoists
|
374
|
+
for the main guns.
|
375
|
+
|
376
|
+
83
|
377
|
+
00:06:05,105 --> 00:06:07,335
|
378
|
+
You've got a red light
|
379
|
+
right there.
|
380
|
+
|
381
|
+
84
|
382
|
+
00:06:07,408 --> 00:06:08,807
|
383
|
+
[explosions]
|
384
|
+
|
385
|
+
85
|
386
|
+
00:06:08,876 --> 00:06:10,036
|
387
|
+
[electricity surging]
|
388
|
+
|
389
|
+
86
|
390
|
+
00:06:10,110 --> 00:06:11,134
|
391
|
+
[alarm beeping]
|
392
|
+
|
393
|
+
87
|
394
|
+
00:06:11,212 --> 00:06:12,941
|
395
|
+
We have a hit
|
396
|
+
on the starboard bow.
|
397
|
+
|
398
|
+
88
|
399
|
+
00:06:13,013 --> 00:06:15,038
|
400
|
+
Away
|
401
|
+
the damage control parties.
|
402
|
+
|
403
|
+
89
|
404
|
+
00:06:15,115 --> 00:06:17,345
|
405
|
+
Basestar is launching raiders.
|
406
|
+
|
407
|
+
90
|
408
|
+
00:06:17,551 --> 00:06:19,280
|
409
|
+
[people chattering]
|
410
|
+
|
411
|
+
91
|
412
|
+
00:06:24,091 --> 00:06:25,854
|
413
|
+
[spaceships humming]
|
414
|
+
|
415
|
+
92
|
416
|
+
00:06:28,696 --> 00:06:30,926
|
417
|
+
<i>Colonial One is ready to jump.</i>
|
418
|
+
|
419
|
+
93
|
420
|
+
00:06:35,769 --> 00:06:38,169
|
421
|
+
<i>All civilian ships away,
|
422
|
+
including Colonial One.</i>
|
423
|
+
|
424
|
+
94
|
425
|
+
00:06:38,239 --> 00:06:40,639
|
426
|
+
Recover fighters.
|
427
|
+
Stand by to jump.
|
428
|
+
|
429
|
+
95
|
430
|
+
00:06:40,708 --> 00:06:42,300
|
431
|
+
Combat landings.
|
432
|
+
|
433
|
+
96
|
434
|
+
00:06:49,283 --> 00:06:50,511
|
435
|
+
All fighters aboard, sir.
|
436
|
+
|
437
|
+
97
|
438
|
+
00:06:50,584 --> 00:06:52,051
|
439
|
+
Execute jump.
|
440
|
+
|
441
|
+
98
|
442
|
+
00:07:07,835 --> 00:07:09,427
|
443
|
+
<i>[woman chattering on radio]</i>
|
444
|
+
|
445
|
+
99
|
446
|
+
00:07:09,503 --> 00:07:10,527
|
447
|
+
[bleeps]
|
448
|
+
|
449
|
+
100
|
450
|
+
00:07:10,604 --> 00:07:12,572
|
451
|
+
Jump 237 complete.
|
452
|
+
|
453
|
+
101
|
454
|
+
00:07:14,842 --> 00:07:17,470
|
455
|
+
All civilian ships present
|
456
|
+
and accounted for, sir.
|
457
|
+
|
458
|
+
102
|
459
|
+
00:07:17,545 --> 00:07:19,137
|
460
|
+
Start the clock.
|
461
|
+
|
462
|
+
103
|
463
|
+
00:07:19,380 --> 00:07:22,213
|
464
|
+
And let's start prepping
|
465
|
+
for the next jump.
|
466
|
+
|
467
|
+
104
|
468
|
+
00:07:22,349 --> 00:07:25,045
|
469
|
+
Clock is running. 33 minutes.
|
470
|
+
|
471
|
+
105
|
472
|
+
00:07:26,320 --> 00:07:27,412
|
473
|
+
Mark.
|
474
|
+
|
475
|
+
106
|
476
|
+
00:07:32,159 --> 00:07:34,218
|
477
|
+
You got 32 minutes, people.
|
478
|
+
|
479
|
+
107
|
480
|
+
00:07:56,150 --> 00:07:57,310
|
481
|
+
[moans]
|
482
|
+
|
483
|
+
108
|
484
|
+
00:07:59,553 --> 00:08:01,544
|
485
|
+
You know you're not safe.
|
486
|
+
|
487
|
+
109
|
488
|
+
00:08:02,890 --> 00:08:04,551
|
489
|
+
No, of course not.
|
490
|
+
|
491
|
+
110
|
492
|
+
00:08:05,426 --> 00:08:07,826
|
493
|
+
The Cylons
|
494
|
+
will follow us again...
|
495
|
+
|
496
|
+
111
|
497
|
+
00:08:08,862 --> 00:08:11,558
|
498
|
+
as they have
|
499
|
+
the last 237 times.
|
500
|
+
|
501
|
+
112
|
502
|
+
00:08:14,602 --> 00:08:17,332
|
503
|
+
You're right, you know.
|
504
|
+
There are limits.
|
505
|
+
|
506
|
+
113
|
507
|
+
00:08:17,771 --> 00:08:19,500
|
508
|
+
Eventually,
|
509
|
+
you'll make a mistake.
|
510
|
+
|
511
|
+
114
|
512
|
+
00:08:19,573 --> 00:08:21,700
|
513
|
+
And then you'll kill us all.
|
514
|
+
|
515
|
+
115
|
516
|
+
00:08:21,842 --> 00:08:22,900
|
517
|
+
Yes.
|
518
|
+
|
519
|
+
116
|
520
|
+
00:08:23,677 --> 00:08:25,076
|
521
|
+
Yes, I know.
|
522
|
+
|
523
|
+
117
|
524
|
+
00:08:26,580 --> 00:08:28,810
|
525
|
+
But not for
|
526
|
+
another 33 minutes.
|
527
|
+
|
528
|
+
118
|
529
|
+
00:08:32,552 --> 00:08:34,076
|
530
|
+
[clock ticking]
|
531
|
+
|
532
|
+
119
|
533
|
+
00:09:59,839 --> 00:10:01,568
|
534
|
+
[people chattering]
|
535
|
+
|
536
|
+
120
|
537
|
+
00:10:02,442 --> 00:10:05,377
|
538
|
+
(Adama) I want to try
|
539
|
+
something new this time.
|
540
|
+
|
541
|
+
121
|
542
|
+
00:10:11,117 --> 00:10:14,143
|
543
|
+
Divide the fleet
|
544
|
+
into six groups.
|
545
|
+
|
546
|
+
122
|
547
|
+
00:10:16,456 --> 00:10:17,787
|
548
|
+
Then they jump...
|
549
|
+
|
550
|
+
123
|
551
|
+
00:10:17,857 --> 00:10:19,256
|
552
|
+
[Adama sighs]
|
553
|
+
|
554
|
+
124
|
555
|
+
00:10:19,325 --> 00:10:23,056
|
556
|
+
Then they jump two more times and on
|
557
|
+
the fourth jump, we rendezvous at...
|
558
|
+
|
559
|
+
125
|
560
|
+
00:10:23,129 --> 00:10:25,256
|
561
|
+
a common set of coordinates.
|
562
|
+
|
563
|
+
126
|
564
|
+
00:10:26,733 --> 00:10:30,669
|
565
|
+
24 jumps to plot,
|
566
|
+
we're breaking our humps...
|
567
|
+
|
568
|
+
127
|
569
|
+
00:10:30,770 --> 00:10:33,967
|
570
|
+
calculating one jump
|
571
|
+
every 33 minutes.
|
572
|
+
|
573
|
+
128
|
574
|
+
00:10:35,007 --> 00:10:36,668
|
575
|
+
Get off my jacket.
|
576
|
+
|
577
|
+
129
|
578
|
+
00:10:36,809 --> 00:10:38,003
|
579
|
+
Are you eating this?
|
580
|
+
|
581
|
+
130
|
582
|
+
00:10:38,544 --> 00:10:39,943
|
583
|
+
Not anymore.
|
584
|
+
|
585
|
+
131
|
586
|
+
00:10:41,214 --> 00:10:45,480
|
587
|
+
(Apollo) Combat landings expected
|
588
|
+
again to be the order of the day...
|
589
|
+
|
590
|
+
132
|
591
|
+
00:10:47,420 --> 00:10:50,355
|
592
|
+
so double-check
|
593
|
+
your undercarriage before...
|
594
|
+
|
595
|
+
133
|
596
|
+
00:10:55,728 --> 00:10:59,095
|
597
|
+
Look, you've all done this
|
598
|
+
237 times.
|
599
|
+
|
600
|
+
134
|
601
|
+
00:11:01,067 --> 00:11:02,830
|
602
|
+
You know what to do.
|
603
|
+
|
604
|
+
135
|
605
|
+
00:11:03,770 --> 00:11:05,169
|
606
|
+
No mistakes.
|
607
|
+
|
608
|
+
136
|
609
|
+
00:11:06,072 --> 00:11:08,063
|
610
|
+
And let's make it to 238.
|
611
|
+
|
612
|
+
137
|
613
|
+
00:11:10,676 --> 00:11:13,304
|
614
|
+
And good luck
|
615
|
+
and be careful out there.
|
616
|
+
|
617
|
+
138
|
618
|
+
00:11:14,113 --> 00:11:15,842
|
619
|
+
[pilots chattering]
|
620
|
+
|
621
|
+
139
|
622
|
+
00:11:33,166 --> 00:11:36,761
|
623
|
+
Can you do me a favor? Tell
|
624
|
+
Capt. Apollo he owes me one wing.
|
625
|
+
|
626
|
+
140
|
627
|
+
00:11:36,836 --> 00:11:38,736
|
628
|
+
(Dave)
|
629
|
+
You got it, Chief.
|
630
|
+
|
631
|
+
141
|
632
|
+
00:11:39,939 --> 00:11:42,772
|
633
|
+
No, Cally, there's three.
|
634
|
+
I know there's three.
|
635
|
+
|
636
|
+
142
|
637
|
+
00:11:42,842 --> 00:11:44,434
|
638
|
+
Can you check it again
|
639
|
+
for me, please?
|
640
|
+
|
641
|
+
143
|
642
|
+
00:11:44,510 --> 00:11:45,534
|
643
|
+
Yeah.
|
644
|
+
|
645
|
+
144
|
646
|
+
00:11:45,611 --> 00:11:48,273
|
647
|
+
At least get some of them
|
648
|
+
starting to work.
|
649
|
+
|
650
|
+
145
|
651
|
+
00:11:48,714 --> 00:11:50,614
|
652
|
+
We'll sleep when we're dead.
|
653
|
+
Come on.
|
654
|
+
|
655
|
+
146
|
656
|
+
00:11:51,150 --> 00:11:52,344
|
657
|
+
Boomer.
|
658
|
+
|
659
|
+
147
|
660
|
+
00:11:53,519 --> 00:11:55,680
|
661
|
+
Heard the latest? They say
|
662
|
+
Cylons look like us now.
|
663
|
+
|
664
|
+
148
|
665
|
+
00:11:55,755 --> 00:11:56,779
|
666
|
+
[keys clicking]
|
667
|
+
|
668
|
+
149
|
669
|
+
00:11:56,856 --> 00:11:58,323
|
670
|
+
Primary fuel?
|
671
|
+
|
672
|
+
150
|
673
|
+
00:11:58,457 --> 00:12:00,482
|
674
|
+
Primary fuel 2893 KRG.
|
675
|
+
|
676
|
+
151
|
677
|
+
00:12:00,560 --> 00:12:04,189
|
678
|
+
Marine told one of the pilots that
|
679
|
+
we marooned some guy back on Ragnar...
|
680
|
+
|
681
|
+
152
|
682
|
+
00:12:04,263 --> 00:12:06,424
|
683
|
+
because they actually thought
|
684
|
+
that he was a Cylon.
|
685
|
+
|
686
|
+
153
|
687
|
+
00:12:06,499 --> 00:12:09,059
|
688
|
+
You know what?
|
689
|
+
I don't give a frak.
|
690
|
+
|
691
|
+
154
|
692
|
+
00:12:09,769 --> 00:12:11,464
|
693
|
+
Red light on
|
694
|
+
the number four thruster.
|
695
|
+
|
696
|
+
155
|
697
|
+
00:12:11,537 --> 00:12:14,267
|
698
|
+
Go make a visual ID.
|
699
|
+
See if it's blocked.
|
700
|
+
|
701
|
+
156
|
702
|
+
00:12:14,507 --> 00:12:15,667
|
703
|
+
Right.
|
704
|
+
|
705
|
+
157
|
706
|
+
00:12:16,142 --> 00:12:17,302
|
707
|
+
Right.
|
708
|
+
|
709
|
+
158
|
710
|
+
00:12:30,823 --> 00:12:33,155
|
711
|
+
A little rough on your
|
712
|
+
new ECO, don't you think?
|
713
|
+
|
714
|
+
159
|
715
|
+
00:12:33,226 --> 00:12:34,818
|
716
|
+
He's not my ECO.
|
717
|
+
|
718
|
+
160
|
719
|
+
00:12:34,961 --> 00:12:39,694
|
720
|
+
He's some refugee from Triton that I've
|
721
|
+
been saddled with and I didn't ask you.
|
722
|
+
|
723
|
+
161
|
724
|
+
00:12:44,036 --> 00:12:45,469
|
725
|
+
Helo's gone, Sharon.
|
726
|
+
|
727
|
+
162
|
728
|
+
00:12:45,538 --> 00:12:47,768
|
729
|
+
I didn't ask you that, either.
|
730
|
+
|
731
|
+
163
|
732
|
+
00:12:52,645 --> 00:12:53,805
|
733
|
+
Sorry.
|
734
|
+
|
735
|
+
164
|
736
|
+
00:12:58,084 --> 00:12:59,244
|
737
|
+
Colony?
|
738
|
+
|
739
|
+
165
|
740
|
+
00:12:59,318 --> 00:13:01,013
|
741
|
+
Saggitaron.
|
742
|
+
How many have you got?
|
743
|
+
|
744
|
+
166
|
745
|
+
00:13:01,087 --> 00:13:04,250
|
746
|
+
5,251 survivors
|
747
|
+
from Saggitaron, last count.
|
748
|
+
|
749
|
+
167
|
750
|
+
00:13:06,559 --> 00:13:10,154
|
751
|
+
We can't transmit photos yet. If you
|
752
|
+
want, you can leave them with us...
|
753
|
+
|
754
|
+
168
|
755
|
+
00:13:10,229 --> 00:13:12,959
|
756
|
+
or you can put them
|
757
|
+
on the board outside.
|
758
|
+
|
759
|
+
169
|
760
|
+
00:13:13,199 --> 00:13:14,359
|
761
|
+
Sorry.
|
762
|
+
|
763
|
+
170
|
764
|
+
00:13:14,967 --> 00:13:16,161
|
765
|
+
Thanks.
|
766
|
+
|
767
|
+
171
|
768
|
+
00:13:16,669 --> 00:13:17,761
|
769
|
+
Next.
|
770
|
+
|
771
|
+
172
|
772
|
+
00:13:21,307 --> 00:13:22,501
|
773
|
+
Colony?
|
774
|
+
|
775
|
+
173
|
776
|
+
00:14:07,553 --> 00:14:10,283
|
777
|
+
Update on the headcount,
|
778
|
+
Madam President.
|
779
|
+
|
780
|
+
174
|
781
|
+
00:14:19,298 --> 00:14:21,061
|
782
|
+
How did we lose 300?
|
783
|
+
|
784
|
+
175
|
785
|
+
00:14:21,934 --> 00:14:24,164
|
786
|
+
There were some overcounts...
|
787
|
+
|
788
|
+
176
|
789
|
+
00:14:24,837 --> 00:14:29,103
|
790
|
+
a few deaths from wounds and a
|
791
|
+
few missing during the last attack.
|
792
|
+
|
793
|
+
177
|
794
|
+
00:15:07,480 --> 00:15:09,607
|
795
|
+
Do you want children, Gaius?
|
796
|
+
|
797
|
+
178
|
798
|
+
00:15:13,552 --> 00:15:16,077
|
799
|
+
Let me think about that
|
800
|
+
for a minute.
|
801
|
+
|
802
|
+
179
|
803
|
+
00:15:17,356 --> 00:15:18,380
|
804
|
+
No.
|
805
|
+
|
806
|
+
180
|
807
|
+
00:15:21,193 --> 00:15:24,094
|
808
|
+
Procreation
|
809
|
+
is one of God's commandments.
|
810
|
+
|
811
|
+
181
|
812
|
+
00:15:24,830 --> 00:15:26,024
|
813
|
+
Really?
|
814
|
+
|
815
|
+
182
|
816
|
+
00:15:27,400 --> 00:15:30,335
|
817
|
+
I'm sure someday, if you're a
|
818
|
+
good Cylon, he'll reward you...
|
819
|
+
|
820
|
+
183
|
821
|
+
00:15:30,403 --> 00:15:33,770
|
822
|
+
with a lovely little walking
|
823
|
+
toaster of your very own.
|
824
|
+
|
825
|
+
184
|
826
|
+
00:15:34,173 --> 00:15:37,108
|
827
|
+
I want us
|
828
|
+
to have a child, Gaius.
|
829
|
+
|
830
|
+
185
|
831
|
+
00:15:37,610 --> 00:15:38,872
|
832
|
+
You can't be serious.
|
833
|
+
|
834
|
+
186
|
835
|
+
00:15:39,779 --> 00:15:41,144
|
836
|
+
It's Dr. Amarak.
|
837
|
+
|
838
|
+
187
|
839
|
+
00:15:41,213 --> 00:15:42,703
|
840
|
+
What was that?
|
841
|
+
|
842
|
+
188
|
843
|
+
00:15:48,921 --> 00:15:53,290
|
844
|
+
I'm so sorry for interrupting
|
845
|
+
you while you were speaking.
|
846
|
+
|
847
|
+
189
|
848
|
+
00:15:53,726 --> 00:15:55,523
|
849
|
+
You were just saying?
|
850
|
+
|
851
|
+
190
|
852
|
+
00:15:55,895 --> 00:15:57,157
|
853
|
+
[mutters]
|
854
|
+
|
855
|
+
191
|
856
|
+
00:15:57,630 --> 00:16:00,827
|
857
|
+
I was just saying
|
858
|
+
that a Dr. Amarak...
|
859
|
+
|
860
|
+
192
|
861
|
+
00:16:01,267 --> 00:16:03,064
|
862
|
+
had requested
|
863
|
+
to speak with the President.
|
864
|
+
|
865
|
+
193
|
866
|
+
00:16:03,135 --> 00:16:04,796
|
867
|
+
Dr. Amarak. I see.
|
868
|
+
|
869
|
+
194
|
870
|
+
00:16:06,005 --> 00:16:07,336
|
871
|
+
You know him?
|
872
|
+
|
873
|
+
195
|
874
|
+
00:16:07,406 --> 00:16:09,738
|
875
|
+
Have you always been able
|
876
|
+
to multitask like this?
|
877
|
+
|
878
|
+
196
|
879
|
+
00:16:09,809 --> 00:16:11,071
|
880
|
+
Yes. Yes.
|
881
|
+
|
882
|
+
197
|
883
|
+
00:16:12,044 --> 00:16:15,309
|
884
|
+
I used to work with him
|
885
|
+
at the Ministry of Defense.
|
886
|
+
|
887
|
+
198
|
888
|
+
00:16:16,048 --> 00:16:19,745
|
889
|
+
It says here that he's uncovered
|
890
|
+
important information...
|
891
|
+
|
892
|
+
199
|
893
|
+
00:16:19,819 --> 00:16:23,482
|
894
|
+
regarding how the Cylons were
|
895
|
+
able to defeat colonial defenses.
|
896
|
+
|
897
|
+
200
|
898
|
+
00:16:23,556 --> 00:16:25,615
|
899
|
+
I was always a little worried
|
900
|
+
he was on to us.
|
901
|
+
|
902
|
+
201
|
903
|
+
00:16:25,691 --> 00:16:27,522
|
904
|
+
Were you going
|
905
|
+
to speak to him?
|
906
|
+
|
907
|
+
202
|
908
|
+
00:16:27,593 --> 00:16:30,528
|
909
|
+
Perhaps I should speak to him
|
910
|
+
if you're busy.
|
911
|
+
|
912
|
+
203
|
913
|
+
00:16:31,097 --> 00:16:34,726
|
914
|
+
Actually, I think he wanted to
|
915
|
+
speak directly with the President.
|
916
|
+
|
917
|
+
204
|
918
|
+
00:16:34,800 --> 00:16:36,461
|
919
|
+
It sounded urgent.
|
920
|
+
|
921
|
+
205
|
922
|
+
00:16:37,636 --> 00:16:39,661
|
923
|
+
It must be very important.
|
924
|
+
|
925
|
+
206
|
926
|
+
00:16:41,040 --> 00:16:44,942
|
927
|
+
Maybe something about a certain
|
928
|
+
traitor in the President's inner circle?
|
929
|
+
|
930
|
+
207
|
931
|
+
00:16:45,010 --> 00:16:46,671
|
932
|
+
There's not enough time
|
933
|
+
before we jump.
|
934
|
+
|
935
|
+
208
|
936
|
+
00:16:46,745 --> 00:16:50,112
|
937
|
+
I want him on board first
|
938
|
+
thing during the next cycle.
|
939
|
+
|
940
|
+
209
|
941
|
+
00:16:50,516 --> 00:16:52,177
|
942
|
+
Thank you, Doctor.
|
943
|
+
|
944
|
+
210
|
945
|
+
00:16:55,087 --> 00:16:57,317
|
946
|
+
I'd say you have
|
947
|
+
a serious problem.
|
948
|
+
|
949
|
+
211
|
950
|
+
00:16:57,389 --> 00:16:58,879
|
951
|
+
If I can help.
|
952
|
+
|
953
|
+
212
|
954
|
+
00:17:05,364 --> 00:17:07,559
|
955
|
+
He's a strange one, isn't he?
|
956
|
+
|
957
|
+
213
|
958
|
+
00:17:16,041 --> 00:17:17,633
|
959
|
+
[rain pattering]
|
960
|
+
|
961
|
+
214
|
962
|
+
00:17:22,781 --> 00:17:24,043
|
963
|
+
[panting]
|
964
|
+
|
965
|
+
215
|
966
|
+
00:17:40,766 --> 00:17:41,994
|
967
|
+
[grunts]
|
968
|
+
|
969
|
+
216
|
970
|
+
00:17:53,345 --> 00:17:54,539
|
971
|
+
[remote beeps]
|
972
|
+
|
973
|
+
217
|
974
|
+
00:18:07,293 --> 00:18:08,920
|
975
|
+
[Cylon whirring]
|
976
|
+
|
977
|
+
218
|
978
|
+
00:18:09,061 --> 00:18:10,688
|
979
|
+
[metal scrapping]
|
980
|
+
|
981
|
+
219
|
982
|
+
00:18:23,409 --> 00:18:24,740
|
983
|
+
[shouting]
|
984
|
+
|
985
|
+
220
|
986
|
+
00:18:30,716 --> 00:18:31,910
|
987
|
+
[sighs]
|
988
|
+
|
989
|
+
221
|
990
|
+
00:18:44,862 --> 00:18:47,057
|
991
|
+
<i>(pilot)
|
992
|
+
Landing Bay, Team Alpha...</i>
|
993
|
+
|
994
|
+
222
|
995
|
+
00:18:47,131 --> 00:18:48,655
|
996
|
+
Did you see it?
|
997
|
+
|
998
|
+
223
|
999
|
+
00:18:50,435 --> 00:18:54,098
|
1000
|
+
Twelve more cases of nervous
|
1001
|
+
exhaustion. That makes 61.
|
1002
|
+
|
1003
|
+
224
|
1004
|
+
00:18:54,906 --> 00:18:58,364
|
1005
|
+
Have the docs start pumpin'
|
1006
|
+
them up with stimulants...
|
1007
|
+
|
1008
|
+
225
|
1009
|
+
00:18:58,576 --> 00:19:00,203
|
1010
|
+
and get them back on the line.
|
1011
|
+
|
1012
|
+
226
|
1013
|
+
00:19:00,278 --> 00:19:01,267
|
1014
|
+
Pilots, too.
|
1015
|
+
|
1016
|
+
227
|
1017
|
+
00:19:01,346 --> 00:19:02,370
|
1018
|
+
Fuel report.
|
1019
|
+
|
1020
|
+
228
|
1021
|
+
00:19:02,447 --> 00:19:04,711
|
1022
|
+
One out of every three,
|
1023
|
+
every other cycle.
|
1024
|
+
|
1025
|
+
229
|
1026
|
+
00:19:04,782 --> 00:19:07,910
|
1027
|
+
That's going to come back
|
1028
|
+
and bite us in the ass.
|
1029
|
+
|
1030
|
+
230
|
1031
|
+
00:19:07,986 --> 00:19:10,386
|
1032
|
+
We have too much work and
|
1033
|
+
not enough people to do it.
|
1034
|
+
|
1035
|
+
231
|
1036
|
+
00:19:10,455 --> 00:19:12,218
|
1037
|
+
(Dualla)
|
1038
|
+
Fuel report.
|
1039
|
+
|
1040
|
+
232
|
1041
|
+
00:19:12,857 --> 00:19:14,188
|
1042
|
+
I've already signed
|
1043
|
+
one of these.
|
1044
|
+
|
1045
|
+
233
|
1046
|
+
00:19:14,259 --> 00:19:15,590
|
1047
|
+
Yes, sir. Sorry, sir.
|
1048
|
+
|
1049
|
+
234
|
1050
|
+
00:19:15,660 --> 00:19:18,094
|
1051
|
+
Comm traffic two
|
1052
|
+
from the President.
|
1053
|
+
|
1054
|
+
235
|
1055
|
+
00:19:18,162 --> 00:19:19,891
|
1056
|
+
Is this my 10 minutes
|
1057
|
+
or this yours?
|
1058
|
+
|
1059
|
+
236
|
1060
|
+
00:19:19,964 --> 00:19:22,057
|
1061
|
+
Yours. I took 10 last time.
|
1062
|
+
|
1063
|
+
237
|
1064
|
+
00:19:23,901 --> 00:19:26,028
|
1065
|
+
I'll see you guys in combat.
|
1066
|
+
|
1067
|
+
238
|
1068
|
+
00:19:26,237 --> 00:19:27,966
|
1069
|
+
I believe
|
1070
|
+
it was your 10 minutes.
|
1071
|
+
|
1072
|
+
239
|
1073
|
+
00:19:28,039 --> 00:19:31,941
|
1074
|
+
If the old man's so tired he
|
1075
|
+
can't remember, then it's his turn.
|
1076
|
+
|
1077
|
+
240
|
1078
|
+
00:19:32,644 --> 00:19:34,373
|
1079
|
+
[people chattering]
|
1080
|
+
|
1081
|
+
241
|
1082
|
+
00:19:38,149 --> 00:19:39,844
|
1083
|
+
You see the note
|
1084
|
+
from the XO?
|
1085
|
+
|
1086
|
+
242
|
1087
|
+
00:19:39,917 --> 00:19:41,817
|
1088
|
+
Yeah, I saw it. No way.
|
1089
|
+
|
1090
|
+
243
|
1091
|
+
00:19:43,388 --> 00:19:44,582
|
1092
|
+
(Apollo)
|
1093
|
+
Kara, everyone else...
|
1094
|
+
|
1095
|
+
244
|
1096
|
+
00:19:44,656 --> 00:19:45,816
|
1097
|
+
- I don't fly with stims.
|
1098
|
+
|
1099
|
+
245
|
1100
|
+
00:19:45,890 --> 00:19:48,825
|
1101
|
+
They blunt your reflexes,
|
1102
|
+
your reaction time.
|
1103
|
+
|
1104
|
+
246
|
1105
|
+
00:19:49,694 --> 00:19:51,355
|
1106
|
+
Come on, Kara,
|
1107
|
+
give me a break. Just...
|
1108
|
+
|
1109
|
+
247
|
1110
|
+
00:19:51,429 --> 00:19:53,624
|
1111
|
+
Why are we arguing
|
1112
|
+
about this?
|
1113
|
+
|
1114
|
+
248
|
1115
|
+
00:19:53,998 --> 00:19:55,192
|
1116
|
+
I have no idea.
|
1117
|
+
|
1118
|
+
249
|
1119
|
+
00:19:55,266 --> 00:19:57,393
|
1120
|
+
Neither do I.
|
1121
|
+
You're the CAG, act like one.
|
1122
|
+
|
1123
|
+
250
|
1124
|
+
00:19:57,468 --> 00:19:59,663
|
1125
|
+
What the hell does that mean?
|
1126
|
+
|
1127
|
+
251
|
1128
|
+
00:20:00,171 --> 00:20:03,436
|
1129
|
+
It means that you're still acting
|
1130
|
+
like you're everyone's best friend.
|
1131
|
+
|
1132
|
+
252
|
1133
|
+
00:20:03,508 --> 00:20:05,908
|
1134
|
+
We're not friends,
|
1135
|
+
you're the CAG.
|
1136
|
+
|
1137
|
+
253
|
1138
|
+
00:20:06,177 --> 00:20:07,940
|
1139
|
+
"Be careful out there"?
|
1140
|
+
|
1141
|
+
254
|
1142
|
+
00:20:08,012 --> 00:20:12,176
|
1143
|
+
Our job isn't to be careful, it's to
|
1144
|
+
shoot Cylons out of the frakking sky.
|
1145
|
+
|
1146
|
+
255
|
1147
|
+
00:20:12,250 --> 00:20:14,377
|
1148
|
+
"Good hunting"
|
1149
|
+
is what you say.
|
1150
|
+
|
1151
|
+
256
|
1152
|
+
00:20:14,452 --> 00:20:17,285
|
1153
|
+
And now, one of your idiot
|
1154
|
+
pilots is acting like a child...
|
1155
|
+
|
1156
|
+
257
|
1157
|
+
00:20:17,355 --> 00:20:20,586
|
1158
|
+
and refusing to take her pills.
|
1159
|
+
So she either says, "Yes, sir"...
|
1160
|
+
|
1161
|
+
258
|
1162
|
+
00:20:20,658 --> 00:20:23,456
|
1163
|
+
and obeys a direct order or
|
1164
|
+
you smack her in the mouth...
|
1165
|
+
|
1166
|
+
259
|
1167
|
+
00:20:23,528 --> 00:20:28,124
|
1168
|
+
and you drag her sorry ass down to
|
1169
|
+
sickbay and you make her take those pills.
|
1170
|
+
|
1171
|
+
260
|
1172
|
+
00:20:31,469 --> 00:20:32,800
|
1173
|
+
[snickers]
|
1174
|
+
|
1175
|
+
261
|
1176
|
+
00:20:33,071 --> 00:20:35,699
|
1177
|
+
Well, I'm glad
|
1178
|
+
I'm not working for you.
|
1179
|
+
|
1180
|
+
262
|
1181
|
+
00:20:37,508 --> 00:20:39,738
|
1182
|
+
You're damn right you're glad.
|
1183
|
+
|
1184
|
+
263
|
1185
|
+
00:20:42,880 --> 00:20:46,407
|
1186
|
+
So, do I have to smack you
|
1187
|
+
in the mouth, Lieutenant?
|
1188
|
+
|
1189
|
+
264
|
1190
|
+
00:20:49,120 --> 00:20:51,247
|
1191
|
+
No, sir. I'll take my pills.
|
1192
|
+
|
1193
|
+
265
|
1194
|
+
00:20:53,491 --> 00:20:54,719
|
1195
|
+
Perfect.
|
1196
|
+
|
1197
|
+
266
|
1198
|
+
00:20:54,792 --> 00:20:56,316
|
1199
|
+
[clears throat]
|
1200
|
+
|
1201
|
+
267
|
1202
|
+
00:20:57,362 --> 00:20:58,624
|
1203
|
+
Carry on.
|
1204
|
+
|
1205
|
+
268
|
1206
|
+
00:20:59,330 --> 00:21:00,422
|
1207
|
+
Yes, sir.
|
1208
|
+
|
1209
|
+
269
|
1210
|
+
00:21:00,498 --> 00:21:02,898
|
1211
|
+
<i>(man on P.A.) Pilots to ready
|
1212
|
+
room for pre-flight briefing.</i>
|
1213
|
+
|
1214
|
+
270
|
1215
|
+
00:21:02,967 --> 00:21:04,764
|
1216
|
+
<i>Pilots to ready room.</i>
|
1217
|
+
|
1218
|
+
271
|
1219
|
+
00:21:09,107 --> 00:21:10,199
|
1220
|
+
What?
|
1221
|
+
|
1222
|
+
272
|
1223
|
+
00:21:19,016 --> 00:21:20,244
|
1224
|
+
[groans]
|
1225
|
+
|
1226
|
+
273
|
1227
|
+
00:22:10,601 --> 00:22:12,535
|
1228
|
+
Jump 238 complete.
|
1229
|
+
|
1230
|
+
274
|
1231
|
+
00:22:12,603 --> 00:22:14,195
|
1232
|
+
Start the clock.
|
1233
|
+
|
1234
|
+
275
|
1235
|
+
00:22:15,273 --> 00:22:16,638
|
1236
|
+
33 minutes.
|
1237
|
+
|
1238
|
+
276
|
1239
|
+
00:22:17,975 --> 00:22:19,067
|
1240
|
+
Mark.
|
1241
|
+
|
1242
|
+
277
|
1243
|
+
00:22:20,545 --> 00:22:22,911
|
1244
|
+
All civilian ships
|
1245
|
+
present and...
|
1246
|
+
|
1247
|
+
278
|
1248
|
+
00:22:22,980 --> 00:22:24,174
|
1249
|
+
[indicator bleeping]
|
1250
|
+
|
1251
|
+
279
|
1252
|
+
00:22:24,248 --> 00:22:25,772
|
1253
|
+
Strike my last.
|
1254
|
+
|
1255
|
+
280
|
1256
|
+
00:22:26,083 --> 00:22:29,314
|
1257
|
+
One civilian ship missing
|
1258
|
+
and unaccounted for, sir.
|
1259
|
+
|
1260
|
+
281
|
1261
|
+
00:22:29,387 --> 00:22:30,445
|
1262
|
+
Which one?
|
1263
|
+
|
1264
|
+
282
|
1265
|
+
00:22:30,521 --> 00:22:33,684
|
1266
|
+
<i>The Olympic Carrier.
|
1267
|
+
Commercial passenger vessel.</i>
|
1268
|
+
|
1269
|
+
283
|
1270
|
+
00:22:33,891 --> 00:22:35,722
|
1271
|
+
Were they left behind?
|
1272
|
+
|
1273
|
+
284
|
1274
|
+
00:22:35,793 --> 00:22:38,159
|
1275
|
+
I think I accounted for all
|
1276
|
+
civilian ships before we left.
|
1277
|
+
|
1278
|
+
285
|
1279
|
+
00:22:38,229 --> 00:22:40,561
|
1280
|
+
You think?
|
1281
|
+
Did you or didn't you?
|
1282
|
+
|
1283
|
+
286
|
1284
|
+
00:22:43,835 --> 00:22:47,896
|
1285
|
+
They're not logged in, sir. I think
|
1286
|
+
they may have been left behind.
|
1287
|
+
|
1288
|
+
287
|
1289
|
+
00:22:48,573 --> 00:22:50,700
|
1290
|
+
How many people aboard ship?
|
1291
|
+
|
1292
|
+
288
|
1293
|
+
00:22:50,942 --> 00:22:54,309
|
1294
|
+
1,345 souls, sir.
|
1295
|
+
|
1296
|
+
289
|
1297
|
+
00:22:56,614 --> 00:23:01,051
|
1298
|
+
You're telling me we left over 1,300
|
1299
|
+
people to die at the hands of the Cylons?
|
1300
|
+
|
1301
|
+
290
|
1302
|
+
00:23:01,118 --> 00:23:03,211
|
1303
|
+
It may not have been
|
1304
|
+
her fault, sir.
|
1305
|
+
|
1306
|
+
291
|
1307
|
+
00:23:03,287 --> 00:23:05,312
|
1308
|
+
It may have simply been
|
1309
|
+
a navigational error...
|
1310
|
+
|
1311
|
+
292
|
1312
|
+
00:23:05,389 --> 00:23:07,220
|
1313
|
+
and they jumped
|
1314
|
+
to the wrong coordinates...
|
1315
|
+
|
1316
|
+
293
|
1317
|
+
00:23:07,291 --> 00:23:09,384
|
1318
|
+
or the Cylons destroyed the
|
1319
|
+
ship before they jumped...
|
1320
|
+
|
1321
|
+
294
|
1322
|
+
00:23:09,460 --> 00:23:11,155
|
1323
|
+
Or 50 other things
|
1324
|
+
may have happened.
|
1325
|
+
|
1326
|
+
295
|
1327
|
+
00:23:11,229 --> 00:23:14,528
|
1328
|
+
The point is we don't know
|
1329
|
+
what the hell did happen.
|
1330
|
+
|
1331
|
+
296
|
1332
|
+
00:23:19,804 --> 00:23:22,705
|
1333
|
+
Yes, we're tired.
|
1334
|
+
Yes, there's no relief.
|
1335
|
+
|
1336
|
+
297
|
1337
|
+
00:23:23,341 --> 00:23:27,334
|
1338
|
+
Yes, the Cylons keep coming after
|
1339
|
+
us time after time after time...
|
1340
|
+
|
1341
|
+
298
|
1342
|
+
00:23:27,979 --> 00:23:31,574
|
1343
|
+
and yes, we are still expected
|
1344
|
+
to do our jobs.
|
1345
|
+
|
1346
|
+
299
|
1347
|
+
00:23:41,425 --> 00:23:43,620
|
1348
|
+
We make mistakes, people die.
|
1349
|
+
|
1350
|
+
300
|
1351
|
+
00:23:46,564 --> 00:23:48,759
|
1352
|
+
There aren't many of us left.
|
1353
|
+
|
1354
|
+
301
|
1355
|
+
00:23:53,170 --> 00:23:54,432
|
1356
|
+
Carry on.
|
1357
|
+
|
1358
|
+
302
|
1359
|
+
00:24:23,935 --> 00:24:27,166
|
1360
|
+
Okay. Next crisis?
|
1361
|
+
|
1362
|
+
303
|
1363
|
+
00:24:29,574 --> 00:24:30,768
|
1364
|
+
[sighs]
|
1365
|
+
|
1366
|
+
304
|
1367
|
+
00:24:31,309 --> 00:24:32,298
|
1368
|
+
List of calls?
|
1369
|
+
|
1370
|
+
305
|
1371
|
+
00:24:32,376 --> 00:24:33,434
|
1372
|
+
Yes.
|
1373
|
+
|
1374
|
+
306
|
1375
|
+
00:24:34,946 --> 00:24:38,382
|
1376
|
+
But first, where's the doctor
|
1377
|
+
that's supposed to be on board?
|
1378
|
+
|
1379
|
+
307
|
1380
|
+
00:24:38,449 --> 00:24:40,007
|
1381
|
+
What's his name?
|
1382
|
+
|
1383
|
+
308
|
1384
|
+
00:24:40,084 --> 00:24:41,142
|
1385
|
+
Dr. Amarak.
|
1386
|
+
|
1387
|
+
309
|
1388
|
+
00:24:41,218 --> 00:24:42,276
|
1389
|
+
Yes.
|
1390
|
+
|
1391
|
+
310
|
1392
|
+
00:24:43,788 --> 00:24:45,153
|
1393
|
+
Dr. Amarak.
|
1394
|
+
|
1395
|
+
311
|
1396
|
+
00:24:50,828 --> 00:24:51,852
|
1397
|
+
Oh.
|
1398
|
+
|
1399
|
+
312
|
1400
|
+
00:24:53,664 --> 00:24:54,961
|
1401
|
+
<i>He was on the Olympic Carrier.</i>
|
1402
|
+
|
1403
|
+
313
|
1404
|
+
00:24:56,300 --> 00:24:57,927
|
1405
|
+
[seagulls cawing]
|
1406
|
+
|
1407
|
+
314
|
1408
|
+
00:25:02,406 --> 00:25:04,840
|
1409
|
+
God is watching out for you,
|
1410
|
+
Gaius.
|
1411
|
+
|
1412
|
+
315
|
1413
|
+
00:25:07,111 --> 00:25:08,703
|
1414
|
+
[birds chirping]
|
1415
|
+
|
1416
|
+
316
|
1417
|
+
00:25:09,847 --> 00:25:12,645
|
1418
|
+
The universe is a vast
|
1419
|
+
and complex system.
|
1420
|
+
|
1421
|
+
317
|
1422
|
+
00:25:13,818 --> 00:25:17,618
|
1423
|
+
Coincidental,
|
1424
|
+
serendipitous events...
|
1425
|
+
|
1426
|
+
318
|
1427
|
+
00:25:17,688 --> 00:25:19,815
|
1428
|
+
are bound to occur. Indeed
|
1429
|
+
they are to be expected.
|
1430
|
+
|
1431
|
+
319
|
1432
|
+
00:25:19,890 --> 00:25:21,721
|
1433
|
+
It's part of the pattern,
|
1434
|
+
part of the plan.
|
1435
|
+
|
1436
|
+
320
|
1437
|
+
00:25:21,792 --> 00:25:24,124
|
1438
|
+
Dr. Amarak
|
1439
|
+
posed a threat to you.
|
1440
|
+
|
1441
|
+
321
|
1442
|
+
00:25:24,929 --> 00:25:27,989
|
1443
|
+
Now he's gone. Logic says
|
1444
|
+
there's a connection.
|
1445
|
+
|
1446
|
+
322
|
1447
|
+
00:25:30,001 --> 00:25:32,993
|
1448
|
+
A connection, maybe.
|
1449
|
+
But not God.
|
1450
|
+
|
1451
|
+
323
|
1452
|
+
00:25:34,705 --> 00:25:38,641
|
1453
|
+
There is no God or gods,
|
1454
|
+
singular or plural.
|
1455
|
+
|
1456
|
+
324
|
1457
|
+
00:25:38,709 --> 00:25:41,701
|
1458
|
+
There are no large invisible
|
1459
|
+
men, or women for that matter...
|
1460
|
+
|
1461
|
+
325
|
1462
|
+
00:25:41,779 --> 00:25:46,011
|
1463
|
+
in the sky taking a personal interest
|
1464
|
+
in the fortunes of Gaius Baltar.
|
1465
|
+
|
1466
|
+
326
|
1467
|
+
00:25:46,250 --> 00:25:47,615
|
1468
|
+
Be careful.
|
1469
|
+
|
1470
|
+
327
|
1471
|
+
00:25:48,152 --> 00:25:51,053
|
1472
|
+
That which God gives,
|
1473
|
+
he can also take away.
|
1474
|
+
|
1475
|
+
328
|
1476
|
+
00:25:58,929 --> 00:26:00,294
|
1477
|
+
15 seconds.
|
1478
|
+
|
1479
|
+
329
|
1480
|
+
00:26:00,798 --> 00:26:02,322
|
1481
|
+
[timer beeping]
|
1482
|
+
|
1483
|
+
330
|
1484
|
+
00:26:07,505 --> 00:26:09,097
|
1485
|
+
Maybe this time.
|
1486
|
+
|
1487
|
+
331
|
1488
|
+
00:26:20,985 --> 00:26:22,179
|
1489
|
+
Dradis?
|
1490
|
+
|
1491
|
+
332
|
1492
|
+
00:26:23,320 --> 00:26:24,981
|
1493
|
+
No enemy contacts.
|
1494
|
+
|
1495
|
+
333
|
1496
|
+
00:26:26,724 --> 00:26:28,624
|
1497
|
+
Keep the clock running.
|
1498
|
+
|
1499
|
+
334
|
1500
|
+
00:26:31,395 --> 00:26:33,056
|
1501
|
+
What do you think?
|
1502
|
+
|
1503
|
+
335
|
1504
|
+
00:26:36,333 --> 00:26:37,925
|
1505
|
+
I think we wait.
|
1506
|
+
|
1507
|
+
336
|
1508
|
+
00:26:56,352 --> 00:26:57,614
|
1509
|
+
[beeping]
|
1510
|
+
|
1511
|
+
337
|
1512
|
+
00:27:09,499 --> 00:27:10,693
|
1513
|
+
[sighs]
|
1514
|
+
|
1515
|
+
338
|
1516
|
+
00:27:12,736 --> 00:27:14,533
|
1517
|
+
Get me the President.
|
1518
|
+
|
1519
|
+
339
|
1520
|
+
00:27:21,745 --> 00:27:23,235
|
1521
|
+
Why this time?
|
1522
|
+
|
1523
|
+
340
|
1524
|
+
00:27:24,981 --> 00:27:26,881
|
1525
|
+
Was it something that you did?
|
1526
|
+
|
1527
|
+
341
|
1528
|
+
00:27:26,950 --> 00:27:30,078
|
1529
|
+
We had a new plan, but we didn't
|
1530
|
+
have time to implement it yet.
|
1531
|
+
|
1532
|
+
342
|
1533
|
+
00:27:30,153 --> 00:27:33,145
|
1534
|
+
<i>We lost that ship during the
|
1535
|
+
last cycle, the Olympic Carrier.</i>
|
1536
|
+
|
1537
|
+
343
|
1538
|
+
00:27:33,223 --> 00:27:35,851
|
1539
|
+
Does that have something
|
1540
|
+
to do with it?
|
1541
|
+
|
1542
|
+
344
|
1543
|
+
00:27:36,559 --> 00:27:38,151
|
1544
|
+
<i>(Adama)
|
1545
|
+
Possibly.</i>
|
1546
|
+
|
1547
|
+
345
|
1548
|
+
00:27:45,635 --> 00:27:47,125
|
1549
|
+
Are you there?
|
1550
|
+
|
1551
|
+
346
|
1552
|
+
00:27:47,670 --> 00:27:49,194
|
1553
|
+
Yeah, I'm here.
|
1554
|
+
|
1555
|
+
347
|
1556
|
+
00:27:51,508 --> 00:27:55,467
|
1557
|
+
What do we do now, Commander? I've
|
1558
|
+
got people on the verge over here.
|
1559
|
+
|
1560
|
+
348
|
1561
|
+
00:27:56,513 --> 00:28:00,540
|
1562
|
+
We're going to go to Condition Two. We
|
1563
|
+
have to take advantage of this time...
|
1564
|
+
|
1565
|
+
349
|
1566
|
+
00:28:00,617 --> 00:28:02,209
|
1567
|
+
<i>and let our people
|
1568
|
+
get some rest.</i>
|
1569
|
+
|
1570
|
+
350
|
1571
|
+
00:28:02,285 --> 00:28:03,616
|
1572
|
+
All right.
|
1573
|
+
|
1574
|
+
351
|
1575
|
+
00:28:04,154 --> 00:28:07,214
|
1576
|
+
And how long do we stay
|
1577
|
+
at Condition Two?
|
1578
|
+
|
1579
|
+
352
|
1580
|
+
00:28:08,324 --> 00:28:11,157
|
1581
|
+
Until I'm satisfied
|
1582
|
+
they're not going to return.
|
1583
|
+
|
1584
|
+
353
|
1585
|
+
00:28:11,227 --> 00:28:13,218
|
1586
|
+
<i>It's a military decision.</i>
|
1587
|
+
|
1588
|
+
354
|
1589
|
+
00:28:14,297 --> 00:28:16,197
|
1590
|
+
It is. I know that.
|
1591
|
+
|
1592
|
+
355
|
1593
|
+
00:28:16,266 --> 00:28:19,963
|
1594
|
+
You're right and I defer to
|
1595
|
+
your decision. And, Commander...
|
1596
|
+
|
1597
|
+
356
|
1598
|
+
00:28:21,771 --> 00:28:23,762
|
1599
|
+
<i>let your men and women...</i>
|
1600
|
+
|
1601
|
+
357
|
1602
|
+
00:28:25,241 --> 00:28:29,837
|
1603
|
+
<i>know how grateful I am for the
|
1604
|
+
job that they are doing, please.</i>
|
1605
|
+
|
1606
|
+
358
|
1607
|
+
00:28:32,081 --> 00:28:33,742
|
1608
|
+
Thank them for me.
|
1609
|
+
|
1610
|
+
359
|
1611
|
+
00:28:35,084 --> 00:28:37,177
|
1612
|
+
<i>Thank you, Madam President.</i>
|
1613
|
+
|
1614
|
+
360
|
1615
|
+
00:28:37,320 --> 00:28:38,651
|
1616
|
+
Thank you.
|
1617
|
+
|
1618
|
+
361
|
1619
|
+
00:28:43,893 --> 00:28:45,417
|
1620
|
+
Contact Apollo.
|
1621
|
+
|
1622
|
+
362
|
1623
|
+
00:28:46,062 --> 00:28:49,327
|
1624
|
+
Tell him to set up a combat
|
1625
|
+
patrol around the fleet...
|
1626
|
+
|
1627
|
+
363
|
1628
|
+
00:28:49,399 --> 00:28:52,459
|
1629
|
+
and order his other pilots
|
1630
|
+
to land immediately.
|
1631
|
+
|
1632
|
+
364
|
1633
|
+
00:28:52,735 --> 00:28:54,794
|
1634
|
+
All right, people,
|
1635
|
+
you heard the order.
|
1636
|
+
|
1637
|
+
365
|
1638
|
+
00:28:54,871 --> 00:28:59,137
|
1639
|
+
Boomer, Starbuck, form up with
|
1640
|
+
me. We'll fly the first CAP.
|
1641
|
+
|
1642
|
+
366
|
1643
|
+
00:28:59,809 --> 00:29:03,370
|
1644
|
+
<i>I want everyone else back on
|
1645
|
+
Galactica and in their racks.</i>
|
1646
|
+
|
1647
|
+
367
|
1648
|
+
00:29:03,646 --> 00:29:05,409
|
1649
|
+
<i>Three-hour rotation.</i>
|
1650
|
+
|
1651
|
+
368
|
1652
|
+
00:29:05,682 --> 00:29:06,944
|
1653
|
+
<i>(Starbuck)
|
1654
|
+
Hey, Apollo...</i>
|
1655
|
+
|
1656
|
+
369
|
1657
|
+
00:29:07,016 --> 00:29:09,746
|
1658
|
+
not that I'm not honored by being
|
1659
|
+
chosen to sit in my cockpit...
|
1660
|
+
|
1661
|
+
370
|
1662
|
+
00:29:09,819 --> 00:29:11,446
|
1663
|
+
for the next three hours but...
|
1664
|
+
|
1665
|
+
371
|
1666
|
+
00:29:11,521 --> 00:29:12,920
|
1667
|
+
But why you?
|
1668
|
+
|
1669
|
+
372
|
1670
|
+
00:29:14,123 --> 00:29:15,590
|
1671
|
+
Take a guess.
|
1672
|
+
|
1673
|
+
373
|
1674
|
+
00:29:15,892 --> 00:29:17,689
|
1675
|
+
<i>Because I'm on drugs?</i>
|
1676
|
+
|
1677
|
+
374
|
1678
|
+
00:29:18,261 --> 00:29:20,525
|
1679
|
+
You got it. This patrol
|
1680
|
+
is 100% stimulated.
|
1681
|
+
|
1682
|
+
375
|
1683
|
+
00:29:20,597 --> 00:29:21,621
|
1684
|
+
<i>[Starbuck laughing]</i>
|
1685
|
+
|
1686
|
+
376
|
1687
|
+
00:29:21,698 --> 00:29:23,325
|
1688
|
+
<i>(Crashdown)
|
1689
|
+
Anyone else feels like...</i>
|
1690
|
+
|
1691
|
+
377
|
1692
|
+
00:29:23,399 --> 00:29:26,562
|
1693
|
+
they have frakking ants
|
1694
|
+
crawling behind their eyeballs?
|
1695
|
+
|
1696
|
+
378
|
1697
|
+
00:29:26,636 --> 00:29:28,331
|
1698
|
+
<i>(Apollo)
|
1699
|
+
How about you, Boomer?</i>
|
1700
|
+
|
1701
|
+
379
|
1702
|
+
00:29:29,005 --> 00:29:32,065
|
1703
|
+
Doc tells me you're holding up
|
1704
|
+
better than anybody in the squadron.
|
1705
|
+
|
1706
|
+
380
|
1707
|
+
00:29:32,175 --> 00:29:33,904
|
1708
|
+
(Boomer)
|
1709
|
+
I'm tired like everybody else.
|
1710
|
+
|
1711
|
+
381
|
1712
|
+
00:29:33,977 --> 00:29:35,171
|
1713
|
+
<i>You never seem it.</i>
|
1714
|
+
|
1715
|
+
382
|
1716
|
+
00:29:35,245 --> 00:29:36,906
|
1717
|
+
<i>(Starbuck)
|
1718
|
+
That's 'cause she's a Cylon.</i>
|
1719
|
+
|
1720
|
+
383
|
1721
|
+
00:29:36,980 --> 00:29:39,608
|
1722
|
+
You're going to make me come
|
1723
|
+
over there and kick your ass.
|
1724
|
+
|
1725
|
+
384
|
1726
|
+
00:29:39,682 --> 00:29:42,674
|
1727
|
+
Okay. Let's set up
|
1728
|
+
a patrol here...
|
1729
|
+
|
1730
|
+
385
|
1731
|
+
00:29:42,752 --> 00:29:44,777
|
1732
|
+
before somebody gets hurt.
|
1733
|
+
|
1734
|
+
386
|
1735
|
+
00:29:45,722 --> 00:29:46,814
|
1736
|
+
Follow me.
|
1737
|
+
|
1738
|
+
387
|
1739
|
+
00:29:46,890 --> 00:29:49,017
|
1740
|
+
<i>(Starbuck)
|
1741
|
+
Copy that, Apollo.</i>
|
1742
|
+
|
1743
|
+
388
|
1744
|
+
00:29:55,765 --> 00:29:59,223
|
1745
|
+
A couple hours rack time
|
1746
|
+
does sound awfully sweet...
|
1747
|
+
|
1748
|
+
389
|
1749
|
+
00:29:59,302 --> 00:30:00,360
|
1750
|
+
right about now.
|
1751
|
+
|
1752
|
+
390
|
1753
|
+
00:30:00,436 --> 00:30:01,994
|
1754
|
+
You deserve it.
|
1755
|
+
|
1756
|
+
391
|
1757
|
+
00:30:03,973 --> 00:30:06,134
|
1758
|
+
You know, the truth is...
|
1759
|
+
|
1760
|
+
392
|
1761
|
+
00:30:07,944 --> 00:30:12,005
|
1762
|
+
all this has me feeling more
|
1763
|
+
alive than I have in years.
|
1764
|
+
|
1765
|
+
393
|
1766
|
+
00:30:14,050 --> 00:30:15,745
|
1767
|
+
You look that way, too.
|
1768
|
+
|
1769
|
+
394
|
1770
|
+
00:30:15,818 --> 00:30:18,343
|
1771
|
+
It's good to see you
|
1772
|
+
without the cup in your hand.
|
1773
|
+
|
1774
|
+
395
|
1775
|
+
00:30:18,454 --> 00:30:19,648
|
1776
|
+
Don't start.
|
1777
|
+
|
1778
|
+
396
|
1779
|
+
00:30:19,722 --> 00:30:22,885
|
1780
|
+
I know there's a whole lot
|
1781
|
+
of people aboard this ship...
|
1782
|
+
|
1783
|
+
397
|
1784
|
+
00:30:22,959 --> 00:30:25,689
|
1785
|
+
that wish you weren't feeling
|
1786
|
+
as good as you are.
|
1787
|
+
|
1788
|
+
398
|
1789
|
+
00:30:25,762 --> 00:30:29,027
|
1790
|
+
If the crew doesn't hate the
|
1791
|
+
XO, then he's not doin' his job.
|
1792
|
+
|
1793
|
+
399
|
1794
|
+
00:30:29,098 --> 00:30:32,090
|
1795
|
+
Besides, got to make
|
1796
|
+
the old man look good.
|
1797
|
+
|
1798
|
+
400
|
1799
|
+
00:30:32,769 --> 00:30:34,498
|
1800
|
+
I always look good.
|
1801
|
+
|
1802
|
+
401
|
1803
|
+
00:30:34,971 --> 00:30:36,939
|
1804
|
+
Did you look in a mirror?
|
1805
|
+
|
1806
|
+
402
|
1807
|
+
00:30:37,006 --> 00:30:37,995
|
1808
|
+
Seriously...
|
1809
|
+
|
1810
|
+
403
|
1811
|
+
00:30:38,074 --> 00:30:39,132
|
1812
|
+
Sir.
|
1813
|
+
|
1814
|
+
404
|
1815
|
+
00:30:39,208 --> 00:30:42,507
|
1816
|
+
...it's one thing to push the
|
1817
|
+
crew, it's another to break them.
|
1818
|
+
|
1819
|
+
405
|
1820
|
+
00:30:42,578 --> 00:30:43,806
|
1821
|
+
(Gaeta)
|
1822
|
+
Dradis contact.
|
1823
|
+
|
1824
|
+
406
|
1825
|
+
00:30:43,880 --> 00:30:47,043
|
1826
|
+
Bearing 348,
|
1827
|
+
carom 120, one ship.
|
1828
|
+
|
1829
|
+
407
|
1830
|
+
00:30:47,784 --> 00:30:49,274
|
1831
|
+
Getting recognition signal.
|
1832
|
+
|
1833
|
+
408
|
1834
|
+
00:30:49,352 --> 00:30:52,116
|
1835
|
+
<i>(computer) Initiating response
|
1836
|
+
flash mode. Alpha, alpha.</i>
|
1837
|
+
|
1838
|
+
409
|
1839
|
+
00:30:52,188 --> 00:30:53,849
|
1840
|
+
<i>It's the Olympic Carrier, sir.</i>
|
1841
|
+
|
1842
|
+
410
|
1843
|
+
00:30:53,923 --> 00:30:55,288
|
1844
|
+
Is that confirmed?
|
1845
|
+
|
1846
|
+
411
|
1847
|
+
00:30:55,358 --> 00:30:57,121
|
1848
|
+
It's confirmed, sir.
|
1849
|
+
|
1850
|
+
412
|
1851
|
+
00:31:02,198 --> 00:31:03,722
|
1852
|
+
Thank the gods.
|
1853
|
+
|
1854
|
+
413
|
1855
|
+
00:31:05,735 --> 00:31:07,430
|
1856
|
+
[people chattering]
|
1857
|
+
|
1858
|
+
414
|
1859
|
+
00:31:08,938 --> 00:31:10,530
|
1860
|
+
Action stations.
|
1861
|
+
|
1862
|
+
415
|
1863
|
+
00:31:13,810 --> 00:31:16,142
|
1864
|
+
Put the fleet
|
1865
|
+
into Condition One.
|
1866
|
+
|
1867
|
+
416
|
1868
|
+
00:31:16,245 --> 00:31:19,612
|
1869
|
+
I want all Vipers manned and
|
1870
|
+
ready, but keep them in the tubes.
|
1871
|
+
|
1872
|
+
417
|
1873
|
+
00:31:19,682 --> 00:31:20,706
|
1874
|
+
Mr. Gaeta.
|
1875
|
+
|
1876
|
+
418
|
1877
|
+
00:31:20,783 --> 00:31:21,772
|
1878
|
+
Sir?
|
1879
|
+
|
1880
|
+
419
|
1881
|
+
00:31:21,851 --> 00:31:24,081
|
1882
|
+
Restart the clock. 33 minutes.
|
1883
|
+
|
1884
|
+
420
|
1885
|
+
00:31:24,153 --> 00:31:25,780
|
1886
|
+
[alarms blaring]
|
1887
|
+
|
1888
|
+
421
|
1889
|
+
00:31:26,856 --> 00:31:28,016
|
1890
|
+
I hope you're wrong.
|
1891
|
+
|
1892
|
+
422
|
1893
|
+
00:31:28,091 --> 00:31:29,080
|
1894
|
+
So do I.
|
1895
|
+
|
1896
|
+
423
|
1897
|
+
00:31:29,158 --> 00:31:30,250
|
1898
|
+
<i>(Gaeta)
|
1899
|
+
Clock is running.</i>
|
1900
|
+
|
1901
|
+
424
|
1902
|
+
00:31:30,326 --> 00:31:31,554
|
1903
|
+
So do I.
|
1904
|
+
|
1905
|
+
425
|
1906
|
+
00:31:36,232 --> 00:31:39,030
|
1907
|
+
No. It's all wrong.
|
1908
|
+
|
1909
|
+
426
|
1910
|
+
00:31:40,603 --> 00:31:43,663
|
1911
|
+
If they were left behind, why
|
1912
|
+
didn't the Cylons destroy them?
|
1913
|
+
|
1914
|
+
427
|
1915
|
+
00:31:43,940 --> 00:31:46,238
|
1916
|
+
And why are they
|
1917
|
+
showing up now?
|
1918
|
+
|
1919
|
+
428
|
1920
|
+
00:31:46,376 --> 00:31:49,402
|
1921
|
+
It's God's punishment
|
1922
|
+
for your lack of faith.
|
1923
|
+
|
1924
|
+
429
|
1925
|
+
00:31:50,246 --> 00:31:52,339
|
1926
|
+
That's just great, that is.
|
1927
|
+
|
1928
|
+
430
|
1929
|
+
00:31:53,049 --> 00:31:55,984
|
1930
|
+
A more logical and useful
|
1931
|
+
explanation, please.
|
1932
|
+
|
1933
|
+
431
|
1934
|
+
00:31:56,886 --> 00:31:58,217
|
1935
|
+
All right.
|
1936
|
+
|
1937
|
+
432
|
1938
|
+
00:31:59,922 --> 00:32:03,824
|
1939
|
+
<i>The Olympic Carrier has been
|
1940
|
+
infiltrated by Cylon agents.</i>
|
1941
|
+
|
1942
|
+
433
|
1943
|
+
00:32:07,063 --> 00:32:10,555
|
1944
|
+
They've been
|
1945
|
+
tracking the ship all along.
|
1946
|
+
|
1947
|
+
434
|
1948
|
+
00:32:12,435 --> 00:32:13,459
|
1949
|
+
No.
|
1950
|
+
|
1951
|
+
435
|
1952
|
+
00:32:16,005 --> 00:32:17,734
|
1953
|
+
Then that means...
|
1954
|
+
|
1955
|
+
436
|
1956
|
+
00:32:18,007 --> 00:32:20,976
|
1957
|
+
Logically, in order
|
1958
|
+
for you to survive...
|
1959
|
+
|
1960
|
+
437
|
1961
|
+
00:32:21,344 --> 00:32:24,040
|
1962
|
+
the Olympic Carrier
|
1963
|
+
should be destroyed.
|
1964
|
+
|
1965
|
+
438
|
1966
|
+
00:32:28,284 --> 00:32:29,945
|
1967
|
+
<i>(Boomer) Olympic Carrier,
|
1968
|
+
Olympic Carrier...</i>
|
1969
|
+
|
1970
|
+
439
|
1971
|
+
00:32:30,019 --> 00:32:34,012
|
1972
|
+
<i>this is Raptor 478, call sign
|
1973
|
+
Boomer. I have you in visual contact.</i>
|
1974
|
+
|
1975
|
+
440
|
1976
|
+
00:32:34,089 --> 00:32:36,080
|
1977
|
+
<i>Please respond
|
1978
|
+
on this channel. Over.</i>
|
1979
|
+
|
1980
|
+
441
|
1981
|
+
00:32:36,158 --> 00:32:37,284
|
1982
|
+
<i>(man on radio)
|
1983
|
+
Raptor 478,</i>
|
1984
|
+
|
1985
|
+
442
|
1986
|
+
00:32:37,359 --> 00:32:40,055
|
1987
|
+
<i>this is the Olympic Carrier.
|
1988
|
+
We have you in visual contact.</i>
|
1989
|
+
|
1990
|
+
443
|
1991
|
+
00:32:40,129 --> 00:32:43,792
|
1992
|
+
<i>Thank the Lords of Kobol. You don't
|
1993
|
+
know how relieved we are to see you.</i>
|
1994
|
+
|
1995
|
+
444
|
1996
|
+
00:32:43,866 --> 00:32:47,597
|
1997
|
+
<i>Roger that, Olympic Carrier.
|
1998
|
+
Can I ask about your whereabouts?</i>
|
1999
|
+
|
2000
|
+
445
|
2001
|
+
00:32:47,670 --> 00:32:49,501
|
2002
|
+
<i>We had trouble
|
2003
|
+
with our FTL drive.</i>
|
2004
|
+
|
2005
|
+
446
|
2006
|
+
00:32:49,572 --> 00:32:51,836
|
2007
|
+
<i>Took us almost three hours
|
2008
|
+
to fix.</i>
|
2009
|
+
|
2010
|
+
447
|
2011
|
+
00:32:51,907 --> 00:32:55,070
|
2012
|
+
Have Boomer ask them
|
2013
|
+
how they escaped the Cylons.
|
2014
|
+
|
2015
|
+
448
|
2016
|
+
00:32:55,878 --> 00:32:57,539
|
2017
|
+
<i>Olympic Carrier, Boomer.</i>
|
2018
|
+
|
2019
|
+
449
|
2020
|
+
00:32:57,613 --> 00:33:00,639
|
2021
|
+
<i>I've been directed to ask how
|
2022
|
+
you escaped from the Cylons.</i>
|
2023
|
+
|
2024
|
+
450
|
2025
|
+
00:33:00,716 --> 00:33:02,411
|
2026
|
+
<i>You got me. They were
|
2027
|
+
closing in on us...</i>
|
2028
|
+
|
2029
|
+
451
|
2030
|
+
00:33:02,484 --> 00:33:03,917
|
2031
|
+
<i>when the rest of you
|
2032
|
+
were jumping.</i>
|
2033
|
+
|
2034
|
+
452
|
2035
|
+
00:33:03,986 --> 00:33:06,181
|
2036
|
+
<i>I thought we were goners,
|
2037
|
+
then they just broke off.</i>
|
2038
|
+
|
2039
|
+
453
|
2040
|
+
00:33:06,255 --> 00:33:08,416
|
2041
|
+
<i>Someone must've been
|
2042
|
+
watching out for us.</i>
|
2043
|
+
|
2044
|
+
454
|
2045
|
+
00:33:08,490 --> 00:33:09,479
|
2046
|
+
<i>Roger that.</i>
|
2047
|
+
|
2048
|
+
455
|
2049
|
+
00:33:09,558 --> 00:33:10,616
|
2050
|
+
<i>One other thing, Boomer.</i>
|
2051
|
+
|
2052
|
+
456
|
2053
|
+
00:33:10,693 --> 00:33:12,183
|
2054
|
+
<i>I've got a Dr. Amarak
|
2055
|
+
on board...</i>
|
2056
|
+
|
2057
|
+
457
|
2058
|
+
00:33:12,261 --> 00:33:14,957
|
2059
|
+
<i>who has an urgent matter
|
2060
|
+
to discuss with the President.</i>
|
2061
|
+
|
2062
|
+
458
|
2063
|
+
00:33:15,030 --> 00:33:16,190
|
2064
|
+
<i>He's been driving me crazy.</i>
|
2065
|
+
|
2066
|
+
459
|
2067
|
+
00:33:16,265 --> 00:33:18,460
|
2068
|
+
<i>Olympic Carrier,
|
2069
|
+
can you be more specific?</i>
|
2070
|
+
|
2071
|
+
460
|
2072
|
+
00:33:18,534 --> 00:33:21,992
|
2073
|
+
<i>I'm afraid I can't. He says he knows
|
2074
|
+
something about a traitor in our midst...</i>
|
2075
|
+
|
2076
|
+
461
|
2077
|
+
00:33:22,071 --> 00:33:25,131
|
2078
|
+
<i>and he's unwilling to share
|
2079
|
+
any more than that.</i>
|
2080
|
+
|
2081
|
+
462
|
2082
|
+
00:33:25,307 --> 00:33:27,036
|
2083
|
+
Madam President,
|
2084
|
+
I strongly recommend...
|
2085
|
+
|
2086
|
+
463
|
2087
|
+
00:33:27,109 --> 00:33:30,738
|
2088
|
+
that we cut off all wireless
|
2089
|
+
communication with that ship right away.
|
2090
|
+
|
2091
|
+
464
|
2092
|
+
00:33:30,813 --> 00:33:32,144
|
2093
|
+
[stuttering]
|
2094
|
+
Why?
|
2095
|
+
|
2096
|
+
465
|
2097
|
+
00:33:32,214 --> 00:33:35,183
|
2098
|
+
Look, forgive me for being
|
2099
|
+
rude, but wake up, all right?
|
2100
|
+
|
2101
|
+
466
|
2102
|
+
00:33:35,250 --> 00:33:37,548
|
2103
|
+
<i>The only reason the Olympic
|
2104
|
+
Carrier is still flying...</i>
|
2105
|
+
|
2106
|
+
467
|
2107
|
+
00:33:37,620 --> 00:33:39,588
|
2108
|
+
is because the Cylons
|
2109
|
+
let them survive.
|
2110
|
+
|
2111
|
+
468
|
2112
|
+
00:33:39,655 --> 00:33:41,486
|
2113
|
+
They've been
|
2114
|
+
tracking that ship all along.
|
2115
|
+
|
2116
|
+
469
|
2117
|
+
00:33:41,557 --> 00:33:43,684
|
2118
|
+
There's probably a Cylon
|
2119
|
+
agent aboard right now!
|
2120
|
+
|
2121
|
+
470
|
2122
|
+
00:33:43,759 --> 00:33:44,817
|
2123
|
+
Calm down.
|
2124
|
+
|
2125
|
+
471
|
2126
|
+
00:33:45,461 --> 00:33:46,826
|
2127
|
+
Start over.
|
2128
|
+
|
2129
|
+
472
|
2130
|
+
00:33:47,630 --> 00:33:51,122
|
2131
|
+
Please, Madam President,
|
2132
|
+
I implore you. Listen to me.
|
2133
|
+
|
2134
|
+
473
|
2135
|
+
00:33:51,700 --> 00:33:53,759
|
2136
|
+
Cut off radio communication
|
2137
|
+
with that ship...
|
2138
|
+
|
2139
|
+
474
|
2140
|
+
00:33:53,836 --> 00:33:56,964
|
2141
|
+
before they send via broadcast
|
2142
|
+
signal another computer virus...
|
2143
|
+
|
2144
|
+
475
|
2145
|
+
00:33:57,039 --> 00:34:00,406
|
2146
|
+
to infect our ship shortly
|
2147
|
+
before they blow us all up.
|
2148
|
+
|
2149
|
+
476
|
2150
|
+
00:34:01,944 --> 00:34:04,242
|
2151
|
+
Com. Adama,
|
2152
|
+
are you on the line?
|
2153
|
+
|
2154
|
+
477
|
2155
|
+
00:34:05,247 --> 00:34:08,239
|
2156
|
+
Cut off the speakers.
|
2157
|
+
Put it through the line.
|
2158
|
+
|
2159
|
+
478
|
2160
|
+
00:34:08,851 --> 00:34:12,753
|
2161
|
+
Yes, Madam President. And I'm
|
2162
|
+
inclined to agree with Dr. Baltar.
|
2163
|
+
|
2164
|
+
479
|
2165
|
+
00:34:15,190 --> 00:34:16,680
|
2166
|
+
Good. So do I.
|
2167
|
+
|
2168
|
+
480
|
2169
|
+
00:34:17,493 --> 00:34:19,085
|
2170
|
+
Thank the gods you're with us.
|
2171
|
+
|
2172
|
+
481
|
2173
|
+
00:34:19,161 --> 00:34:21,561
|
2174
|
+
God's got nothing
|
2175
|
+
to do with this.
|
2176
|
+
|
2177
|
+
482
|
2178
|
+
00:34:26,301 --> 00:34:27,962
|
2179
|
+
<i>Boomer, Galactica.</i>
|
2180
|
+
|
2181
|
+
483
|
2182
|
+
00:34:28,037 --> 00:34:31,768
|
2183
|
+
<i>Your orders are to jam all
|
2184
|
+
transmissions from the Olympic Carrier.</i>
|
2185
|
+
|
2186
|
+
484
|
2187
|
+
00:34:31,840 --> 00:34:34,468
|
2188
|
+
No further voice contact
|
2189
|
+
is authorized.
|
2190
|
+
|
2191
|
+
485
|
2192
|
+
00:34:35,144 --> 00:34:37,009
|
2193
|
+
<i>Roger that, Galactica.</i>
|
2194
|
+
|
2195
|
+
486
|
2196
|
+
00:34:37,346 --> 00:34:38,973
|
2197
|
+
<i>(Dualla)
|
2198
|
+
Boomer, Galactica.</i>
|
2199
|
+
|
2200
|
+
487
|
2201
|
+
00:34:39,048 --> 00:34:41,073
|
2202
|
+
<i>Orders are
|
2203
|
+
to send the Olympic Carrier...</i>
|
2204
|
+
|
2205
|
+
488
|
2206
|
+
00:34:41,150 --> 00:34:43,141
|
2207
|
+
<i>the following message
|
2208
|
+
by signal light.</i>
|
2209
|
+
|
2210
|
+
489
|
2211
|
+
00:34:43,352 --> 00:34:46,651
|
2212
|
+
Message begins,
|
2213
|
+
"Maintain present position.
|
2214
|
+
|
2215
|
+
490
|
2216
|
+
00:34:46,722 --> 00:34:50,453
|
2217
|
+
<i>"Do not, repeat, do not approach
|
2218
|
+
the fleet until further notice. "</i>
|
2219
|
+
|
2220
|
+
491
|
2221
|
+
00:34:50,526 --> 00:34:51,993
|
2222
|
+
<i>Message ends.</i>
|
2223
|
+
|
2224
|
+
492
|
2225
|
+
00:34:53,829 --> 00:34:56,992
|
2226
|
+
I'm getting a bad feeling
|
2227
|
+
about where this is headed.
|
2228
|
+
|
2229
|
+
493
|
2230
|
+
00:34:57,066 --> 00:34:58,294
|
2231
|
+
So am I.
|
2232
|
+
|
2233
|
+
494
|
2234
|
+
00:34:58,734 --> 00:35:01,862
|
2235
|
+
If the ship poses a threat to us,
|
2236
|
+
we have to eliminate that threat.
|
2237
|
+
|
2238
|
+
495
|
2239
|
+
00:35:09,712 --> 00:35:11,577
|
2240
|
+
I don't think
|
2241
|
+
they got the message, Apollo.
|
2242
|
+
|
2243
|
+
496
|
2244
|
+
00:35:11,647 --> 00:35:16,209
|
2245
|
+
Yeah, I see it. Boomer, break
|
2246
|
+
wireless silence on my authority.
|
2247
|
+
|
2248
|
+
497
|
2249
|
+
00:35:16,285 --> 00:35:19,118
|
2250
|
+
Warn them to stop their
|
2251
|
+
engines immediately.
|
2252
|
+
|
2253
|
+
498
|
2254
|
+
00:35:19,722 --> 00:35:23,556
|
2255
|
+
I suggest that we evacuate the
|
2256
|
+
passengers and destroy the ship.
|
2257
|
+
|
2258
|
+
499
|
2259
|
+
00:35:23,792 --> 00:35:26,226
|
2260
|
+
It solves the problem
|
2261
|
+
if they're tracking the ship.
|
2262
|
+
|
2263
|
+
500
|
2264
|
+
00:35:26,295 --> 00:35:28,661
|
2265
|
+
What if they're tracking
|
2266
|
+
one of the passengers?
|
2267
|
+
|
2268
|
+
501
|
2269
|
+
00:35:28,731 --> 00:35:30,631
|
2270
|
+
<i>(Boomer) Olympic Carrier,
|
2271
|
+
Olympic Carrier...</i>
|
2272
|
+
|
2273
|
+
502
|
2274
|
+
00:35:30,699 --> 00:35:34,499
|
2275
|
+
<i>you are ordered to stop your
|
2276
|
+
engines immediately. Acknowledge.</i>
|
2277
|
+
|
2278
|
+
503
|
2279
|
+
00:35:36,305 --> 00:35:38,330
|
2280
|
+
<i>Apollo,
|
2281
|
+
they're not responding.</i>
|
2282
|
+
|
2283
|
+
504
|
2284
|
+
00:35:38,407 --> 00:35:40,238
|
2285
|
+
<i>(Apollo) Are you using the same channel?</i>
|
2286
|
+
|
2287
|
+
505
|
2288
|
+
00:35:40,309 --> 00:35:42,641
|
2289
|
+
<i>Yeah, but suddenly
|
2290
|
+
nobody's home.</i>
|
2291
|
+
|
2292
|
+
506
|
2293
|
+
00:35:43,946 --> 00:35:46,642
|
2294
|
+
Starbuck, fire a burst
|
2295
|
+
across their bow.
|
2296
|
+
|
2297
|
+
507
|
2298
|
+
00:35:48,650 --> 00:35:49,981
|
2299
|
+
Copy that.
|
2300
|
+
|
2301
|
+
508
|
2302
|
+
00:35:55,524 --> 00:35:56,855
|
2303
|
+
[snickers]
|
2304
|
+
|
2305
|
+
509
|
2306
|
+
00:35:57,860 --> 00:36:01,557
|
2307
|
+
<i>Boomer, let Galactica know
|
2308
|
+
we have a problem out here.</i>
|
2309
|
+
|
2310
|
+
510
|
2311
|
+
00:36:02,197 --> 00:36:04,722
|
2312
|
+
Commander,
|
2313
|
+
message from Boomer.
|
2314
|
+
|
2315
|
+
511
|
2316
|
+
00:36:04,800 --> 00:36:07,166
|
2317
|
+
<i>The Olympic Carrier is heading
|
2318
|
+
directly for us, sir.</i>
|
2319
|
+
|
2320
|
+
512
|
2321
|
+
00:36:07,236 --> 00:36:09,727
|
2322
|
+
They're refusing all orders
|
2323
|
+
to stop.
|
2324
|
+
|
2325
|
+
513
|
2326
|
+
00:36:10,572 --> 00:36:11,834
|
2327
|
+
[beeping]
|
2328
|
+
|
2329
|
+
514
|
2330
|
+
00:36:23,485 --> 00:36:25,851
|
2331
|
+
<i>(Boomer) Galactica, they're
|
2332
|
+
still not responding...</i>
|
2333
|
+
|
2334
|
+
515
|
2335
|
+
00:36:25,921 --> 00:36:28,822
|
2336
|
+
<i>and continue to head toward
|
2337
|
+
the fleet. Request instructions.</i>
|
2338
|
+
|
2339
|
+
516
|
2340
|
+
00:36:28,891 --> 00:36:31,519
|
2341
|
+
Order the fleet
|
2342
|
+
to execute Jump 240.
|
2343
|
+
|
2344
|
+
517
|
2345
|
+
00:36:31,593 --> 00:36:33,720
|
2346
|
+
Get us between that ship
|
2347
|
+
and the fleet.
|
2348
|
+
|
2349
|
+
518
|
2350
|
+
00:36:33,796 --> 00:36:37,960
|
2351
|
+
Commander! Dradis contact. Strike
|
2352
|
+
that, multiple Dradis contacts.
|
2353
|
+
|
2354
|
+
519
|
2355
|
+
00:36:40,035 --> 00:36:41,627
|
2356
|
+
It's the Cylons.
|
2357
|
+
|
2358
|
+
520
|
2359
|
+
00:36:41,770 --> 00:36:43,328
|
2360
|
+
[alarms blaring]
|
2361
|
+
|
2362
|
+
521
|
2363
|
+
00:36:47,376 --> 00:36:49,571
|
2364
|
+
<i>(Crashdown) The Cylons
|
2365
|
+
are on an intercept course.</i>
|
2366
|
+
|
2367
|
+
522
|
2368
|
+
00:36:49,645 --> 00:36:52,978
|
2369
|
+
They'll be in weapons range
|
2370
|
+
within two minutes.
|
2371
|
+
|
2372
|
+
523
|
2373
|
+
00:36:53,949 --> 00:36:55,439
|
2374
|
+
[alarm sounds]
|
2375
|
+
|
2376
|
+
524
|
2377
|
+
00:36:55,517 --> 00:36:57,246
|
2378
|
+
Radiological alarm!
|
2379
|
+
|
2380
|
+
525
|
2381
|
+
00:36:57,653 --> 00:36:59,086
|
2382
|
+
Radiological alarm!
|
2383
|
+
|
2384
|
+
526
|
2385
|
+
00:36:59,154 --> 00:37:00,519
|
2386
|
+
From where?
|
2387
|
+
|
2388
|
+
527
|
2389
|
+
00:37:02,157 --> 00:37:04,955
|
2390
|
+
<i>The Olympic Carrier, sir.
|
2391
|
+
They've got nukes on board.</i>
|
2392
|
+
|
2393
|
+
528
|
2394
|
+
00:37:05,027 --> 00:37:09,726
|
2395
|
+
<i>Madam President, we have to eliminate
|
2396
|
+
the Olympic Carrier immediately.</i>
|
2397
|
+
|
2398
|
+
529
|
2399
|
+
00:37:10,232 --> 00:37:12,996
|
2400
|
+
There are 1,300 people
|
2401
|
+
on that ship.
|
2402
|
+
|
2403
|
+
530
|
2404
|
+
00:37:13,402 --> 00:37:14,562
|
2405
|
+
<i>(Adama)
|
2406
|
+
We don't know that.</i>
|
2407
|
+
|
2408
|
+
531
|
2409
|
+
00:37:14,636 --> 00:37:17,298
|
2410
|
+
<i>The Cylons may have
|
2411
|
+
captured them already.</i>
|
2412
|
+
|
2413
|
+
532
|
2414
|
+
00:37:17,372 --> 00:37:20,500
|
2415
|
+
She's not going to do it.
|
2416
|
+
She has to do it.
|
2417
|
+
|
2418
|
+
533
|
2419
|
+
00:37:21,410 --> 00:37:23,401
|
2420
|
+
It's not her decision, Gaius.
|
2421
|
+
|
2422
|
+
534
|
2423
|
+
00:37:23,478 --> 00:37:24,467
|
2424
|
+
No?
|
2425
|
+
|
2426
|
+
535
|
2427
|
+
00:37:25,080 --> 00:37:28,538
|
2428
|
+
It's God's choice.
|
2429
|
+
He wants you to repent.
|
2430
|
+
|
2431
|
+
536
|
2432
|
+
00:37:28,617 --> 00:37:32,576
|
2433
|
+
Look, at this point there's no
|
2434
|
+
choice. It's either them or us.
|
2435
|
+
|
2436
|
+
537
|
2437
|
+
00:37:32,754 --> 00:37:34,517
|
2438
|
+
Repent of your sins.
|
2439
|
+
|
2440
|
+
538
|
2441
|
+
00:37:34,823 --> 00:37:37,656
|
2442
|
+
Accept his true love
|
2443
|
+
and you will be saved.
|
2444
|
+
|
2445
|
+
539
|
2446
|
+
00:37:42,931 --> 00:37:46,526
|
2447
|
+
I repent. There, I repent.
|
2448
|
+
|
2449
|
+
540
|
2450
|
+
00:37:50,439 --> 00:37:53,499
|
2451
|
+
I repent.
|
2452
|
+
|
2453
|
+
541
|
2454
|
+
00:37:56,678 --> 00:37:57,838
|
2455
|
+
Do it.
|
2456
|
+
|
2457
|
+
542
|
2458
|
+
00:37:59,948 --> 00:38:02,041
|
2459
|
+
<i>(Boomer)
|
2460
|
+
We have new orders.</i>
|
2461
|
+
|
2462
|
+
543
|
2463
|
+
00:38:02,284 --> 00:38:06,345
|
2464
|
+
<i>We're directed to destroy
|
2465
|
+
the Olympic Carrier...</i>
|
2466
|
+
|
2467
|
+
544
|
2468
|
+
00:38:06,421 --> 00:38:08,389
|
2469
|
+
<i>and return to Galactica.</i>
|
2470
|
+
|
2471
|
+
545
|
2472
|
+
00:38:09,625 --> 00:38:11,422
|
2473
|
+
It's a civilian ship.
|
2474
|
+
|
2475
|
+
546
|
2476
|
+
00:38:12,995 --> 00:38:15,725
|
2477
|
+
<i>(Apollo) Yeah, a
|
2478
|
+
civilian ship with nukes.</i>
|
2479
|
+
|
2480
|
+
547
|
2481
|
+
00:38:24,339 --> 00:38:26,864
|
2482
|
+
<i>I don't see anybody in there,
|
2483
|
+
do you?</i>
|
2484
|
+
|
2485
|
+
548
|
2486
|
+
00:38:32,948 --> 00:38:34,916
|
2487
|
+
The Cylons will be here
|
2488
|
+
any second.
|
2489
|
+
|
2490
|
+
549
|
2491
|
+
00:38:34,983 --> 00:38:37,611
|
2492
|
+
If we're going to do this,
|
2493
|
+
let's just do it.
|
2494
|
+
|
2495
|
+
550
|
2496
|
+
00:38:37,686 --> 00:38:39,711
|
2497
|
+
Starbuck, form up with me.
|
2498
|
+
|
2499
|
+
551
|
2500
|
+
00:38:39,788 --> 00:38:42,086
|
2501
|
+
<i>We'll make one pass
|
2502
|
+
from astern.</i>
|
2503
|
+
|
2504
|
+
552
|
2505
|
+
00:38:43,792 --> 00:38:46,317
|
2506
|
+
<i>(Starbuck)
|
2507
|
+
Lee, what if you're wrong?</i>
|
2508
|
+
|
2509
|
+
553
|
2510
|
+
00:38:52,467 --> 00:38:53,934
|
2511
|
+
<i>Lee, come on.</i>
|
2512
|
+
|
2513
|
+
554
|
2514
|
+
00:38:54,569 --> 00:38:55,729
|
2515
|
+
<i>Lee...</i>
|
2516
|
+
|
2517
|
+
555
|
2518
|
+
00:38:58,573 --> 00:39:00,438
|
2519
|
+
Okay, fire on my mark.
|
2520
|
+
|
2521
|
+
556
|
2522
|
+
00:39:01,343 --> 00:39:03,140
|
2523
|
+
No frakking way, Lee.
|
2524
|
+
|
2525
|
+
557
|
2526
|
+
00:39:03,812 --> 00:39:06,303
|
2527
|
+
Lee? Come on!
|
2528
|
+
|
2529
|
+
558
|
2530
|
+
00:39:10,752 --> 00:39:12,014
|
2531
|
+
[beeping]
|
2532
|
+
|
2533
|
+
559
|
2534
|
+
00:39:15,057 --> 00:39:16,149
|
2535
|
+
Mark.
|
2536
|
+
|
2537
|
+
560
|
2538
|
+
00:39:48,790 --> 00:39:50,382
|
2539
|
+
[rain pattering]
|
2540
|
+
|
2541
|
+
561
|
2542
|
+
00:40:04,873 --> 00:40:06,067
|
2543
|
+
[sighs]
|
2544
|
+
|
2545
|
+
562
|
2546
|
+
00:40:07,409 --> 00:40:08,899
|
2547
|
+
Are you alive?
|
2548
|
+
|
2549
|
+
563
|
2550
|
+
00:40:09,911 --> 00:40:11,173
|
2551
|
+
[panting]
|
2552
|
+
|
2553
|
+
564
|
2554
|
+
00:40:12,714 --> 00:40:14,682
|
2555
|
+
Agathon, Karl C.
|
2556
|
+
|
2557
|
+
565
|
2558
|
+
00:40:14,750 --> 00:40:16,684
|
2559
|
+
Lieutenant, junior grade,
|
2560
|
+
Colonial Fleet.
|
2561
|
+
|
2562
|
+
566
|
2563
|
+
00:40:16,752 --> 00:40:19,687
|
2564
|
+
PK-789-9348.
|
2565
|
+
|
2566
|
+
567
|
2567
|
+
00:40:19,755 --> 00:40:21,689
|
2568
|
+
I know who you are, Helo.
|
2569
|
+
|
2570
|
+
568
|
2571
|
+
00:40:21,757 --> 00:40:23,952
|
2572
|
+
It's all right. I'm a friend.
|
2573
|
+
|
2574
|
+
569
|
2575
|
+
00:40:31,833 --> 00:40:33,300
|
2576
|
+
[guns firing]
|
2577
|
+
|
2578
|
+
570
|
2579
|
+
00:40:37,406 --> 00:40:38,634
|
2580
|
+
[groans]
|
2581
|
+
|
2582
|
+
571
|
2583
|
+
00:40:39,007 --> 00:40:40,167
|
2584
|
+
[gags]
|
2585
|
+
|
2586
|
+
572
|
2587
|
+
00:40:44,212 --> 00:40:45,406
|
2588
|
+
Sharon?
|
2589
|
+
|
2590
|
+
573
|
2591
|
+
00:40:50,652 --> 00:40:52,620
|
2592
|
+
What are you doing here?
|
2593
|
+
|
2594
|
+
574
|
2595
|
+
00:40:53,021 --> 00:40:54,488
|
2596
|
+
Can you walk?
|
2597
|
+
|
2598
|
+
575
|
2599
|
+
00:40:56,491 --> 00:40:58,686
|
2600
|
+
Yeah. Yeah, yeah, I think so.
|
2601
|
+
|
2602
|
+
576
|
2603
|
+
00:40:58,794 --> 00:41:00,022
|
2604
|
+
[grunts]
|
2605
|
+
|
2606
|
+
577
|
2607
|
+
00:41:00,195 --> 00:41:01,719
|
2608
|
+
What are you doing here,
|
2609
|
+
I thought...
|
2610
|
+
|
2611
|
+
578
|
2612
|
+
00:41:01,797 --> 00:41:03,526
|
2613
|
+
Let's move, mister.
|
2614
|
+
|
2615
|
+
579
|
2616
|
+
00:41:29,925 --> 00:41:30,983
|
2617
|
+
Sir.
|
2618
|
+
|
2619
|
+
580
|
2620
|
+
00:41:31,993 --> 00:41:33,051
|
2621
|
+
Son.
|
2622
|
+
|
2623
|
+
581
|
2624
|
+
00:41:46,641 --> 00:41:49,872
|
2625
|
+
I gave the order.
|
2626
|
+
It was my responsibility.
|
2627
|
+
|
2628
|
+
582
|
2629
|
+
00:41:53,448 --> 00:41:55,245
|
2630
|
+
I pulled the trigger.
|
2631
|
+
|
2632
|
+
583
|
2633
|
+
00:41:58,854 --> 00:42:00,253
|
2634
|
+
That's mine.
|
2635
|
+
|
2636
|
+
584
|
2637
|
+
00:42:10,232 --> 00:42:12,132
|
2638
|
+
(Billy)
|
2639
|
+
Madam President?
|
2640
|
+
|
2641
|
+
585
|
2642
|
+
00:42:14,836 --> 00:42:16,428
|
2643
|
+
Madam President?
|
2644
|
+
|
2645
|
+
586
|
2646
|
+
00:42:20,142 --> 00:42:22,667
|
2647
|
+
I'm sorry,
|
2648
|
+
you were saying something?
|
2649
|
+
|
2650
|
+
587
|
2651
|
+
00:42:27,182 --> 00:42:29,377
|
2652
|
+
Twenty-four hours, no Cylons.
|
2653
|
+
|
2654
|
+
588
|
2655
|
+
00:42:30,018 --> 00:42:32,543
|
2656
|
+
At least you know
|
2657
|
+
it was the right choice.
|
2658
|
+
|
2659
|
+
589
|
2660
|
+
00:42:32,621 --> 00:42:34,248
|
2661
|
+
The right choice.
|
2662
|
+
|
2663
|
+
590
|
2664
|
+
00:42:40,495 --> 00:42:43,862
|
2665
|
+
I'm sorry, Billy. I think I'd
|
2666
|
+
like some time alone, please.
|
2667
|
+
|
2668
|
+
591
|
2669
|
+
00:42:43,932 --> 00:42:45,263
|
2670
|
+
Of course.
|
2671
|
+
|
2672
|
+
592
|
2673
|
+
00:42:57,979 --> 00:42:59,344
|
2674
|
+
What is it?
|
2675
|
+
|
2676
|
+
593
|
2677
|
+
00:43:00,982 --> 00:43:02,950
|
2678
|
+
Update on the headcount.
|
2679
|
+
|
2680
|
+
594
|
2681
|
+
00:43:03,218 --> 00:43:04,879
|
2682
|
+
Subtract how many?
|
2683
|
+
|
2684
|
+
595
|
2685
|
+
00:43:05,520 --> 00:43:07,545
|
2686
|
+
Actually, you can add one.
|
2687
|
+
|
2688
|
+
596
|
2689
|
+
00:43:10,091 --> 00:43:13,185
|
2690
|
+
<i>A baby was born this morning
|
2691
|
+
on the Rising Star.</i>
|
2692
|
+
|
2693
|
+
597
|
2694
|
+
00:43:14,629 --> 00:43:15,789
|
2695
|
+
A boy.
|
2696
|
+
|
2697
|
+
598
|
2698
|
+
00:43:16,831 --> 00:43:18,025
|
2699
|
+
A baby.
|
2700
|
+
|
2701
|
+
599
|
2702
|
+
00:43:18,867 --> 00:43:19,959
|
2703
|
+
Yeah.
|
2704
|
+
|
2705
|
+
600
|
2706
|
+
00:43:26,808 --> 00:43:28,139
|
2707
|
+
Thank you.
|
2708
|
+
|