tracksperanto 1.0.6 → 1.1.0

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/Manifest.txt CHANGED
@@ -6,7 +6,6 @@ Rakefile
6
6
  bin/tracksperanto
7
7
  lib/.DS_Store
8
8
  lib/export/base.rb
9
- lib/export/flame_stabilizer.rb
10
9
  lib/export/mux.rb
11
10
  lib/export/pftrack.rb
12
11
  lib/export/shake_text.rb
@@ -20,6 +19,7 @@ lib/import/syntheyes.rb
20
19
  lib/middleware/base.rb
21
20
  lib/middleware/close.rb
22
21
  lib/middleware/golden.rb
22
+ lib/middleware/reformat.rb
23
23
  lib/middleware/scaler.rb
24
24
  lib/middleware/slipper.rb
25
25
  lib/pipeline/base.rb
@@ -28,6 +28,7 @@ test/.DS_Store
28
28
  test/helper.rb
29
29
  test/samples/.DS_Store
30
30
  test/samples/flyover2DP_syntheyes.txt
31
+ test/samples/fromCombustion_fromMidClip_wSnap.stabilizer
31
32
  test/samples/hugeFlameSetup.stabilizer
32
33
  test/samples/megaTrack.action.3dtrack.stabilizer
33
34
  test/samples/one_shake_tracker.txt
data/Rakefile CHANGED
@@ -7,7 +7,9 @@ require './lib/tracksperanto'
7
7
  Hoe::RUBY_FLAGS.replace ENV['RUBY_FLAGS'] || "-I#{%w(lib test).join(File::PATH_SEPARATOR)}" +
8
8
  (Hoe::RUBY_DEBUG ? " #{RUBY_DEBUG}" : '')
9
9
 
10
- Hoe.new('tracksperanto', Tracksperanto::VERSION) do |p|
10
+ Hoe.spec('tracksperanto') do | p |
11
+ p.version = Tracksperanto::VERSION
11
12
  p.rubyforge_name = 'guerilla-di'
12
13
  p.developer('Julik Tarkhanov', 'me@julik.nl')
14
+ p.extra_rdoc_files = p.extra_rdoc_files.reject{|e| e =~ "samples\/"}
13
15
  end
data/bin/tracksperanto CHANGED
@@ -5,19 +5,20 @@
5
5
  #
6
6
  # == Usage
7
7
  #
8
- # tracksperanto -f shakescript /Films/Blockbuster/Shots/001/script.shk -w 1920 -h 1080
8
+ # tracksperanto -f ShakeScript /Films/Blockbuster/Shots/001/script.shk -w 1920 -h 1080
9
9
  #
10
10
  # == Author
11
11
  # Julik <me@julik.nl>
12
12
 
13
13
  require File.dirname(__FILE__) + '/../lib/tracksperanto'
14
- require File.dirname(__FILE__) + '/../lib/pipeline'
15
14
  require 'optparse'
16
15
 
17
16
  # Sane defaults
18
17
  reader_klass = Tracksperanto::Import::ShakeScript
19
18
  width = 1920
20
19
  height = 1080
20
+ reformat_w = nil
21
+ reformat_h = nil
21
22
  scale_x = 1.0
22
23
  scale_y = 1.0
23
24
  slip = 0
@@ -46,6 +47,13 @@ parser = OptionParser.new do | p |
46
47
  p.on(" -g", "--golden", "Reset the residuals of all trackers to 0 (ignore correlation)") {|g_flag|
47
48
  golden_tracks = g_flag
48
49
  }
50
+ p.on(" -rx", "--reformat-x NEW_PIX_WIDTH", Integer, "Reformat the comp to this width and scale all tracks to it") {|rw|
51
+ reformat_w = rw
52
+ }
53
+ p.on(" -ry", "--reformat-y NEW_PIX_HEIGHT", Integer, "Reformat the comp to this height and scale all tracks to it") {|rh|
54
+ reformat_h = rh
55
+ }
56
+
49
57
  end
50
58
 
51
59
  begin
@@ -64,13 +72,13 @@ if !input_file
64
72
  end
65
73
 
66
74
  pipe = Tracksperanto::Pipeline::Base.new
67
- pipe.progress_block = lambda{|percent, msg| puts("#{msg}..#{percent.to_i}% complete") }
75
+ pipe.progress_block = lambda{|percent, msg| puts("#{msg}..#{percent.to_i}%") }
68
76
 
69
- pipe.run(input_file, width, height, reader_klass) do | scaler, slipper, golden |
77
+ pipe.run(input_file, width, height, reader_klass) do | scaler, slipper, golden, reformat |
70
78
  slipper.slip = slip
71
79
  scaler.x_factor = scale_x
72
80
  scaler.y_factor = scale_y
73
81
  golden.enabled = golden_tracks
74
- end
75
-
76
- puts "Converted #{pipe.converted_points} trackers"
82
+ reformat.width = reformat_w if reformat_w
83
+ reformat.width = reformat_h if reformat_h
84
+ end
data/lib/export/base.rb CHANGED
@@ -25,11 +25,14 @@ class Tracksperanto::Export::Base
25
25
  def end_export
26
26
  end
27
27
 
28
- # Called on tracker start, one for each tracker. Start of the next tracker
29
- # signifies that the previous tracker has passed by
28
+ # Called on tracker start, one for each tracker
30
29
  def start_tracker_segment(tracker_name)
31
30
  end
32
31
 
32
+ # Called on tracker end
33
+ def end_tracker_segment
34
+ end
35
+
33
36
  # Called for each tracker keyframe
34
37
  def export_point(at_frame_i, abs_float_x, abs_float_y, float_residual)
35
38
  end
data/lib/export/mux.rb CHANGED
@@ -19,7 +19,13 @@ class Tracksperanto::Export::Mux
19
19
  output.start_tracker_segment(tracker_name)
20
20
  end
21
21
  end
22
-
22
+
23
+ def end_tracker_segment
24
+ @outputs.each do | output |
25
+ output.end_tracker_segment
26
+ end
27
+ end
28
+
23
29
  # Called for each tracker keyframe
24
30
  def export_point(at_frame_i, abs_float_x, abs_float_y, float_residual)
25
31
  @outputs.each do | output |
@@ -6,6 +6,12 @@ class Tracksperanto::Export::Pftrack < Tracksperanto::Export::Base
6
6
  end
7
7
 
8
8
  def start_tracker_segment(tracker_name)
9
+ # Setup for the next tracker
10
+ @prev_tracker = []
11
+ @tracker_name = tracker_name
12
+ end
13
+
14
+ def end_tracker_segment
9
15
  # If there was a previous tracker, write it out
10
16
  # - now we know how many keyframes it has
11
17
  if @prev_tracker && @prev_tracker.any?
@@ -17,10 +23,6 @@ class Tracksperanto::Export::Pftrack < Tracksperanto::Export::Base
17
23
  ]
18
24
  @io.puts block.join("\n")
19
25
  end
20
-
21
- # Setup for the next tracker
22
- @prev_tracker = []
23
- @tracker_name = tracker_name
24
26
  end
25
27
 
26
28
  def export_point(frame, abs_float_x, abs_float_y, float_residual)
@@ -13,8 +13,10 @@ class Tracksperanto::Import::FlameStabilizer < Tracksperanto::Import::Base
13
13
  K = ::Tracksperanto::Keyframe
14
14
 
15
15
  class ChannelBlock < Array
16
+ include ::Tracksperanto::Casts
17
+ cast_to_string :name
18
+ cast_to_float :base_value
16
19
 
17
- attr_accessor :name
18
20
  def <=>(o)
19
21
  @name <=> o.name
20
22
  end
@@ -32,17 +34,15 @@ class Tracksperanto::Import::FlameStabilizer < Tracksperanto::Import::Base
32
34
  indent ||= line.scan(/^(\s+)/)[1]
33
35
 
34
36
  if line =~ keyframe_count_matcher
35
- # Remove the keyframes which are already there
36
- clear
37
37
  $1.to_i.times { push(extract_key_from(io)) }
38
38
  elsif line =~ base_value_matcher && empty?
39
- push(Kf.new(:frame => 1, :value => $1))
39
+ self.base_value = $1
40
40
  elsif line.strip == "#{indent}End"
41
41
  break
42
42
  end
43
43
  end
44
44
 
45
- raise "Parsed a channel #{@name} with no keyframes" if length.zero?
45
+ raise "Parsed a channel #{@name} with no keyframes" if (empty? && !base_value)
46
46
  end
47
47
 
48
48
  def extract_key_from(io)
@@ -152,9 +152,11 @@ Channel tracker1/ref/x
152
152
  def report_progress(msg)
153
153
  end
154
154
 
155
+ REF_CHANNEL = "ref"
156
+
155
157
  def scavenge_trackers_from_channels(channels)
156
158
  trackers = []
157
- channels.select{|e| e.name =~ /\/track\/x/}.each do | track_x |
159
+ channels.select{|e| e.name =~ /\/#{REF_CHANNEL}\/x/}.each do | track_x |
158
160
  trackers << grab_tracker(channels, track_x)
159
161
  end
160
162
 
@@ -164,27 +166,45 @@ Channel tracker1/ref/x
164
166
  def grab_tracker(channels, track_x)
165
167
  t = T.new(:name => track_x.name.split('/').shift)
166
168
 
167
- track_y = channels.find{|e| e.name == "#{t.name}/track/y" }
169
+ track_y = channels.find{|e| e.name == "#{t.name}/#{REF_CHANNEL}/y" }
168
170
  shift_x = channels.find{|e| e.name == "#{t.name}/shift/x" }
169
- shift_y = channels.find{|e| e.name == "#{t.name}/shift/x" }
171
+ shift_y = channels.find{|e| e.name == "#{t.name}/shift/y" }
170
172
 
171
173
  shift_tuples = zip_channels(shift_x, shift_y)
172
174
  track_tuples = zip_channels(track_x, track_y)
173
175
 
174
- base_x, base_y = find_base_x_and_y(track_tuples, shift_tuples)
176
+ base_x, base_y = begin
177
+ find_base_x_and_y(track_tuples, shift_tuples)
178
+ rescue UseBase
179
+ [track_x.base_value, track_y.base_value]
180
+ end
175
181
 
176
182
  t.keyframes = shift_tuples.map do | (at, x, y) |
177
- K.new(:frame => at, :abs_x => (base_x + x.to_f), :abs_y => (base_y + y.to_f))
183
+ # Flame keyframes are sort of minus-one based, so to start at frame 0
184
+ # we need to decrement one frame, always. Also, the shift value is inverted!
185
+ K.new(:frame => (at - 1), :abs_x => (base_x - x.to_f), :abs_y => (base_y - y.to_f))
178
186
  end
179
187
 
180
188
  return t
181
189
  end
182
190
 
191
+ def cornerize(from_dimension, value_from_center)
192
+ (from_dimension / 2.0) + (value_from_center * -1)
193
+ end
194
+
195
+ UseBase = RuntimeError
196
+
183
197
  def find_base_x_and_y(track_tuples, shift_tuples)
184
198
  base_track_tuple = track_tuples.find do | track_tuple |
185
199
  shift_tuples.find { |shift_tuple| shift_tuple[0] == track_tuple [0] }
186
200
  end
187
- base_track_tuple ? base_track_tuple[1..2] : track_tuples[0][1..2]
201
+ if base_track_tuple
202
+ base_track_tuple[1..2]
203
+ elsif track_tuples[0]
204
+ track_tuples[0][1..2]
205
+ else
206
+ raise UseBase
207
+ end
188
208
  end
189
209
 
190
210
  # Zip two channel objects to tuples of [frame, valuex, valuey]
@@ -21,6 +21,11 @@ class Tracksperanto::Middleware::Base
21
21
  @exporter.start_tracker_segment(tracker_name)
22
22
  end
23
23
 
24
+ # Called on tracker end
25
+ def end_tracker_segment
26
+ @exporter.end_tracker_segment
27
+ end
28
+
24
29
  # Called for each tracker keyframe
25
30
  def export_point(at_frame_i, abs_float_x, abs_float_y, float_residual)
26
31
  @exporter.export_point(at_frame_i, abs_float_x, abs_float_y, float_residual)
@@ -0,0 +1,16 @@
1
+ require File.dirname(__FILE__) + '/scaler'
2
+
3
+ # Reformats (scales) the track setup to a specific pixel resolution
4
+ class Tracksperanto::Middleware::Reformat < Tracksperanto::Middleware::Scaler
5
+ attr_accessor :width, :height
6
+
7
+ # Called on export start
8
+ def start_export( img_width, img_height)
9
+ @width ||= img_width
10
+ @height ||= img_height
11
+
12
+ self.x_factor, self.y_factor = (@width / img_width.to_f), (@height / img_height.to_f)
13
+
14
+ super(@width, @height)
15
+ end
16
+ end
data/lib/pipeline/base.rb CHANGED
@@ -19,11 +19,12 @@ class Base
19
19
  scaler = Tracksperanto::Middleware::Scaler.new(mux)
20
20
  slipper = Tracksperanto::Middleware::Slipper.new(scaler)
21
21
  golden = Tracksperanto::Middleware::Golden.new(slipper)
22
+ reformat = Tracksperanto::Middleware::Reformat.new(golden)
22
23
 
23
24
  # Yield middlewares to the block
24
- yield(scaler, slipper, golden) if block_given?
25
+ yield(scaler, slipper, golden, reformat) if block_given?
25
26
 
26
- @converted_points, @converted_keyframes = run_export(read_data, parser, golden) do | p, m |
27
+ @converted_points, @converted_keyframes = run_export(read_data, parser, reformat) do | p, m |
27
28
  @progress_block.call(p, m) if @progress_block
28
29
  end
29
30
  end
@@ -42,6 +43,7 @@ class Base
42
43
 
43
44
  percent_per_tracker = 80.0 / trackers.length
44
45
 
46
+ # Use the width and height provided by the parser itself
45
47
  processor.start_export(parser.width, parser.height)
46
48
 
47
49
  yield(percent_complete, "Starting export") if block_given?
@@ -55,6 +57,7 @@ class Base
55
57
  processor.export_point(kf.frame, kf.abs_x, kf.abs_y, kf.residual)
56
58
  yield(percent_complete += kf_weight, "Writing keyframe") if block_given?
57
59
  end
60
+ processor.end_tracker_segment
58
61
  end
59
62
  processor.end_export
60
63
 
data/lib/tracksperanto.rb CHANGED
@@ -1,5 +1,5 @@
1
1
  module Tracksperanto
2
- VERSION = '1.0.6'
2
+ VERSION = '1.1.0'
3
3
 
4
4
  module Import; end
5
5
  module Export; end
@@ -114,6 +114,10 @@ module Tracksperanto
114
114
 
115
115
  cast_to_float :abs_x, :abs_y, :residual
116
116
  cast_to_int :frame
117
+
118
+ def inspect
119
+ [frame, abs_x, abs_y].inspect
120
+ end
117
121
  end
118
122
  end
119
123
 
@@ -0,0 +1,2028 @@
1
+ StabilizerFileVersion 5.0
2
+ CreationDate Mon Sep 7 01:19:49 2009
3
+
4
+
5
+ NbTrackers 1
6
+ Selected 0
7
+ FrameWidth 1280
8
+ FrameHeight 540
9
+ AutoKey yes
10
+ MotionPath yes
11
+ Icons yes
12
+ AutoPan no
13
+ EditMode 0
14
+ Format 0
15
+ Padding
16
+ Red 0
17
+ Green 0
18
+ Blue 0
19
+ Oversampling no
20
+ Opacity 50
21
+ Zoom 3
22
+ Field no
23
+ Backward no
24
+ Anim
25
+ Channel tracker1/tolerance
26
+ End
27
+ Channel tracker1/ref/x
28
+ Interpolation constant
29
+ Value 625.237
30
+ Size 3
31
+ Key 0
32
+ Frame 112
33
+ Value 355.131
34
+ End
35
+ Key 1
36
+ Frame 221
37
+ Value 648.394
38
+ End
39
+ Key 2
40
+ Frame 227
41
+ Value 625.237
42
+ End
43
+ End
44
+ Channel tracker1/ref/y
45
+ Interpolation constant
46
+ Value 175.775
47
+ Size 3
48
+ Key 0
49
+ Frame 112
50
+ Value 444.515
51
+ End
52
+ Key 1
53
+ Frame 221
54
+ Value 131.998
55
+ End
56
+ Key 2
57
+ Frame 227
58
+ Value 175.775
59
+ End
60
+ End
61
+ Channel tracker1/ref/width
62
+ Interpolation constant
63
+ Value 15.3024
64
+ Size 1
65
+ Key 0
66
+ Frame 112
67
+ Value 15.3024
68
+ End
69
+ End
70
+ Channel tracker1/ref/height
71
+ Interpolation constant
72
+ Value 17.3418
73
+ Size 1
74
+ Key 0
75
+ Frame 112
76
+ Value 17.3418
77
+ End
78
+ End
79
+ Channel tracker1/ref/dx
80
+ Interpolation constant
81
+ Value -270.107
82
+ Size 3
83
+ Key 0
84
+ Frame 112
85
+ Value 0
86
+ End
87
+ Key 1
88
+ Frame 221
89
+ Value -293.263
90
+ End
91
+ Key 2
92
+ Frame 227
93
+ Value -270.107
94
+ End
95
+ End
96
+ Channel tracker1/ref/dy
97
+ Interpolation constant
98
+ Value 268.74
99
+ Size 3
100
+ Key 0
101
+ Frame 112
102
+ Value 0
103
+ End
104
+ Key 1
105
+ Frame 221
106
+ Value 312.517
107
+ End
108
+ Key 2
109
+ Frame 227
110
+ Value 268.74
111
+ End
112
+ End
113
+ Channel tracker1/ref/type
114
+ End
115
+ Channel tracker1/track/x
116
+ Interpolation linear
117
+ Value 353.907
118
+ Size 1
119
+ Key 0
120
+ Frame 112
121
+ Value 353.907
122
+ End
123
+ End
124
+ Channel tracker1/track/y
125
+ Interpolation linear
126
+ Value 444.515
127
+ Size 1
128
+ Key 0
129
+ Frame 112
130
+ Value 444.515
131
+ End
132
+ End
133
+ Channel tracker1/track/width
134
+ Interpolation constant
135
+ Value 25.6048
136
+ Size 1
137
+ Key 0
138
+ Frame 112
139
+ Value 25.6048
140
+ End
141
+ End
142
+ Channel tracker1/track/height
143
+ Interpolation constant
144
+ Value 25.6048
145
+ Size 1
146
+ Key 0
147
+ Frame 112
148
+ Value 25.6048
149
+ End
150
+ End
151
+ Channel tracker1/shift/x
152
+ Interpolation linear
153
+ Value -267.879
154
+ Size 232
155
+ Key 0
156
+ Frame 1
157
+ Value -32.6442
158
+ End
159
+ Key 1
160
+ Frame 2
161
+ Value -31.5752
162
+ End
163
+ Key 2
164
+ Frame 3
165
+ Value -30.3673
166
+ End
167
+ Key 3
168
+ Frame 4
169
+ Value -29.0384
170
+ End
171
+ Key 4
172
+ Frame 5
173
+ Value -28.04
174
+ End
175
+ Key 5
176
+ Frame 6
177
+ Value -27.5305
178
+ End
179
+ Key 6
180
+ Frame 7
181
+ Value -27.6764
182
+ End
183
+ Key 7
184
+ Frame 8
185
+ Value -27.656
186
+ End
187
+ Key 8
188
+ Frame 9
189
+ Value -26.9029
190
+ End
191
+ Key 9
192
+ Frame 10
193
+ Value -25.3334
194
+ End
195
+ Key 10
196
+ Frame 11
197
+ Value -23.6726
198
+ End
199
+ Key 11
200
+ Frame 12
201
+ Value -22.1613
202
+ End
203
+ Key 12
204
+ Frame 13
205
+ Value -20.5886
206
+ End
207
+ Key 13
208
+ Frame 14
209
+ Value -18.6246
210
+ End
211
+ Key 14
212
+ Frame 15
213
+ Value -16.7411
214
+ End
215
+ Key 15
216
+ Frame 16
217
+ Value -14.9957
218
+ End
219
+ Key 16
220
+ Frame 17
221
+ Value -13.1059
222
+ End
223
+ Key 17
224
+ Frame 18
225
+ Value -11.3927
226
+ End
227
+ Key 18
228
+ Frame 19
229
+ Value -9.88418
230
+ End
231
+ Key 19
232
+ Frame 20
233
+ Value -8.50325
234
+ End
235
+ Key 20
236
+ Frame 21
237
+ Value -7.30313
238
+ End
239
+ Key 21
240
+ Frame 22
241
+ Value -6.30492
242
+ End
243
+ Key 22
244
+ Frame 23
245
+ Value -5.49712
246
+ End
247
+ Key 23
248
+ Frame 24
249
+ Value -4.7573
250
+ End
251
+ Key 24
252
+ Frame 25
253
+ Value -3.98362
254
+ End
255
+ Key 25
256
+ Frame 26
257
+ Value -3.46006
258
+ End
259
+ Key 26
260
+ Frame 27
261
+ Value -3.08691
262
+ End
263
+ Key 27
264
+ Frame 28
265
+ Value -2.71028
266
+ End
267
+ Key 28
268
+ Frame 29
269
+ Value -2.30399
270
+ End
271
+ Key 29
272
+ Frame 30
273
+ Value -2.21115
274
+ End
275
+ Key 30
276
+ Frame 31
277
+ Value -2.06406
278
+ End
279
+ Key 31
280
+ Frame 32
281
+ Value -1.8057
282
+ End
283
+ Key 32
284
+ Frame 33
285
+ Value -1.49486
286
+ End
287
+ Key 33
288
+ Frame 34
289
+ Value -1.20615
290
+ End
291
+ Key 34
292
+ Frame 35
293
+ Value -1.08123
294
+ End
295
+ Key 35
296
+ Frame 36
297
+ Value -1.02157
298
+ End
299
+ Key 36
300
+ Frame 37
301
+ Value -0.890989
302
+ End
303
+ Key 37
304
+ Frame 38
305
+ Value -0.856495
306
+ End
307
+ Key 38
308
+ Frame 39
309
+ Value -0.795591
310
+ End
311
+ Key 39
312
+ Frame 40
313
+ Value -0.590971
314
+ End
315
+ Key 40
316
+ Frame 41
317
+ Value -0.295024
318
+ End
319
+ Key 41
320
+ Frame 42
321
+ Value -0.110327
322
+ End
323
+ Key 42
324
+ Frame 43
325
+ Value 0.05068
326
+ End
327
+ Key 43
328
+ Frame 44
329
+ Value 0.363401
330
+ End
331
+ Key 44
332
+ Frame 45
333
+ Value 0.636685
334
+ End
335
+ Key 45
336
+ Frame 46
337
+ Value 0.92517
338
+ End
339
+ Key 46
340
+ Frame 47
341
+ Value 1.18642
342
+ End
343
+ Key 47
344
+ Frame 48
345
+ Value 1.40461
346
+ End
347
+ Key 48
348
+ Frame 49
349
+ Value 1.6874
350
+ End
351
+ Key 49
352
+ Frame 50
353
+ Value 1.90587
354
+ End
355
+ Key 50
356
+ Frame 51
357
+ Value 1.99965
358
+ End
359
+ Key 51
360
+ Frame 52
361
+ Value 2.04052
362
+ End
363
+ Key 52
364
+ Frame 53
365
+ Value 2.06962
366
+ End
367
+ Key 53
368
+ Frame 54
369
+ Value 2.12249
370
+ End
371
+ Key 54
372
+ Frame 55
373
+ Value 2.04204
374
+ End
375
+ Key 55
376
+ Frame 56
377
+ Value 1.95756
378
+ End
379
+ Key 56
380
+ Frame 57
381
+ Value 2.01208
382
+ End
383
+ Key 57
384
+ Frame 58
385
+ Value 1.9251
386
+ End
387
+ Key 58
388
+ Frame 59
389
+ Value 1.82078
390
+ End
391
+ Key 59
392
+ Frame 60
393
+ Value 1.76104
394
+ End
395
+ Key 60
396
+ Frame 61
397
+ Value 1.78661
398
+ End
399
+ Key 61
400
+ Frame 62
401
+ Value 1.69192
402
+ End
403
+ Key 62
404
+ Frame 63
405
+ Value 1.68632
406
+ End
407
+ Key 63
408
+ Frame 64
409
+ Value 1.74917
410
+ End
411
+ Key 64
412
+ Frame 65
413
+ Value 1.76297
414
+ End
415
+ Key 65
416
+ Frame 66
417
+ Value 1.6971
418
+ End
419
+ Key 66
420
+ Frame 67
421
+ Value 1.69172
422
+ End
423
+ Key 67
424
+ Frame 68
425
+ Value 1.69454
426
+ End
427
+ Key 68
428
+ Frame 69
429
+ Value 1.66409
430
+ End
431
+ Key 69
432
+ Frame 70
433
+ Value 1.65857
434
+ End
435
+ Key 70
436
+ Frame 71
437
+ Value 1.67846
438
+ End
439
+ Key 71
440
+ Frame 72
441
+ Value 1.67466
442
+ End
443
+ Key 72
444
+ Frame 73
445
+ Value 1.58491
446
+ End
447
+ Key 73
448
+ Frame 74
449
+ Value 1.60845
450
+ End
451
+ Key 74
452
+ Frame 75
453
+ Value 1.53215
454
+ End
455
+ Key 75
456
+ Frame 76
457
+ Value 1.3609
458
+ End
459
+ Key 76
460
+ Frame 77
461
+ Value 1.13711
462
+ End
463
+ Key 77
464
+ Frame 78
465
+ Value 0.956131
466
+ End
467
+ Key 78
468
+ Frame 79
469
+ Value 1.00906
470
+ End
471
+ Key 79
472
+ Frame 80
473
+ Value 0.810103
474
+ End
475
+ Key 80
476
+ Frame 81
477
+ Value 0.601573
478
+ End
479
+ Key 81
480
+ Frame 82
481
+ Value 0.658263
482
+ End
483
+ Key 82
484
+ Frame 83
485
+ Value 0.656216
486
+ End
487
+ Key 83
488
+ Frame 84
489
+ Value 0.536988
490
+ End
491
+ Key 84
492
+ Frame 85
493
+ Value 0.707005
494
+ End
495
+ Key 85
496
+ Frame 86
497
+ Value 0.8205
498
+ End
499
+ Key 86
500
+ Frame 87
501
+ Value 0.687269
502
+ End
503
+ Key 87
504
+ Frame 88
505
+ Value 0.588406
506
+ End
507
+ Key 88
508
+ Frame 89
509
+ Value 0.630735
510
+ End
511
+ Key 89
512
+ Frame 90
513
+ Value 0.62991
514
+ End
515
+ Key 90
516
+ Frame 91
517
+ Value 0.597503
518
+ End
519
+ Key 91
520
+ Frame 92
521
+ Value 0.631384
522
+ End
523
+ Key 92
524
+ Frame 93
525
+ Value 0.583814
526
+ End
527
+ Key 93
528
+ Frame 94
529
+ Value 0.541795
530
+ End
531
+ Key 94
532
+ Frame 95
533
+ Value 0.551582
534
+ End
535
+ Key 95
536
+ Frame 96
537
+ Value 0.465467
538
+ End
539
+ Key 96
540
+ Frame 97
541
+ Value 0.218018
542
+ End
543
+ Key 97
544
+ Frame 98
545
+ Value -0.0383567
546
+ End
547
+ Key 98
548
+ Frame 99
549
+ Value -0.212739
550
+ End
551
+ Key 99
552
+ Frame 100
553
+ Value -0.238368
554
+ End
555
+ Key 100
556
+ Frame 101
557
+ Value -0.226821
558
+ End
559
+ Key 101
560
+ Frame 102
561
+ Value -0.290002
562
+ End
563
+ Key 102
564
+ Frame 103
565
+ Value -0.234028
566
+ End
567
+ Key 103
568
+ Frame 104
569
+ Value -0.32801
570
+ End
571
+ Key 104
572
+ Frame 105
573
+ Value -0.349104
574
+ End
575
+ Key 105
576
+ Frame 106
577
+ Value -0.316746
578
+ End
579
+ Key 106
580
+ Frame 107
581
+ Value -0.256534
582
+ End
583
+ Key 107
584
+ Frame 108
585
+ Value -0.139028
586
+ End
587
+ Key 108
588
+ Frame 109
589
+ Value 0.0286208
590
+ End
591
+ Key 109
592
+ Frame 110
593
+ Value 0.0359876
594
+ End
595
+ Key 110
596
+ Frame 111
597
+ Value -0.0577473
598
+ End
599
+ Key 111
600
+ Frame 112
601
+ Value 0
602
+ End
603
+ Key 112
604
+ Frame 113
605
+ Value 0.135172
606
+ End
607
+ Key 113
608
+ Frame 114
609
+ Value 0.144464
610
+ End
611
+ Key 114
612
+ Frame 115
613
+ Value 0.308966
614
+ End
615
+ Key 115
616
+ Frame 116
617
+ Value 0.638643
618
+ End
619
+ Key 116
620
+ Frame 117
621
+ Value 0.458691
622
+ End
623
+ Key 117
624
+ Frame 118
625
+ Value 0.151324
626
+ End
627
+ Key 118
628
+ Frame 119
629
+ Value 0.123977
630
+ End
631
+ Key 119
632
+ Frame 120
633
+ Value 0.228969
634
+ End
635
+ Key 120
636
+ Frame 121
637
+ Value -0.0134058
638
+ End
639
+ Key 121
640
+ Frame 122
641
+ Value -0.281827
642
+ End
643
+ Key 122
644
+ Frame 123
645
+ Value -0.263457
646
+ End
647
+ Key 123
648
+ Frame 124
649
+ Value -0.146569
650
+ End
651
+ Key 124
652
+ Frame 125
653
+ Value -0.105439
654
+ End
655
+ Key 125
656
+ Frame 126
657
+ Value -0.139322
658
+ End
659
+ Key 126
660
+ Frame 127
661
+ Value -0.214489
662
+ End
663
+ Key 127
664
+ Frame 128
665
+ Value -0.611252
666
+ End
667
+ Key 128
668
+ Frame 129
669
+ Value -0.902011
670
+ End
671
+ Key 129
672
+ Frame 130
673
+ Value -0.821915
674
+ End
675
+ Key 130
676
+ Frame 131
677
+ Value -0.405332
678
+ End
679
+ Key 131
680
+ Frame 132
681
+ Value -0.199644
682
+ End
683
+ Key 132
684
+ Frame 133
685
+ Value -0.235475
686
+ End
687
+ Key 133
688
+ Frame 134
689
+ Value -0.533052
690
+ End
691
+ Key 134
692
+ Frame 135
693
+ Value -0.981971
694
+ End
695
+ Key 135
696
+ Frame 136
697
+ Value -1.21801
698
+ End
699
+ Key 136
700
+ Frame 137
701
+ Value -1.25673
702
+ End
703
+ Key 137
704
+ Frame 138
705
+ Value -1.92078
706
+ End
707
+ Key 138
708
+ Frame 139
709
+ Value -3.36837
710
+ End
711
+ Key 139
712
+ Frame 140
713
+ Value -5.80445
714
+ End
715
+ Key 140
716
+ Frame 141
717
+ Value -7.99067
718
+ End
719
+ Key 141
720
+ Frame 142
721
+ Value -9.62745
722
+ End
723
+ Key 142
724
+ Frame 143
725
+ Value -12.3025
726
+ End
727
+ Key 143
728
+ Frame 144
729
+ Value -14.6725
730
+ End
731
+ Key 144
732
+ Frame 145
733
+ Value -17.0058
734
+ End
735
+ Key 145
736
+ Frame 146
737
+ Value -20.9099
738
+ End
739
+ Key 146
740
+ Frame 147
741
+ Value -25.2871
742
+ End
743
+ Key 147
744
+ Frame 148
745
+ Value -30.163
746
+ End
747
+ Key 148
748
+ Frame 149
749
+ Value -35.1363
750
+ End
751
+ Key 149
752
+ Frame 150
753
+ Value -39.7407
754
+ End
755
+ Key 150
756
+ Frame 151
757
+ Value -44.8996
758
+ End
759
+ Key 151
760
+ Frame 152
761
+ Value -48.8614
762
+ End
763
+ Key 152
764
+ Frame 153
765
+ Value -51.5682
766
+ End
767
+ Key 153
768
+ Frame 154
769
+ Value -51.7673
770
+ End
771
+ Key 154
772
+ Frame 155
773
+ Value -52.2658
774
+ End
775
+ Key 155
776
+ Frame 156
777
+ Value -53.1955
778
+ End
779
+ Key 156
780
+ Frame 157
781
+ Value -51.9665
782
+ End
783
+ Key 157
784
+ Frame 158
785
+ Value -49.6651
786
+ End
787
+ Key 158
788
+ Frame 159
789
+ Value -47.8561
790
+ End
791
+ Key 159
792
+ Frame 160
793
+ Value -46.3067
794
+ End
795
+ Key 160
796
+ Frame 161
797
+ Value -43.7246
798
+ End
799
+ Key 161
800
+ Frame 162
801
+ Value -40.8219
802
+ End
803
+ Key 162
804
+ Frame 163
805
+ Value -38.6743
806
+ End
807
+ Key 163
808
+ Frame 164
809
+ Value -38.4931
810
+ End
811
+ Key 164
812
+ Frame 165
813
+ Value -42.7126
814
+ End
815
+ Key 165
816
+ Frame 166
817
+ Value -51.3884
818
+ End
819
+ Key 166
820
+ Frame 167
821
+ Value -61.6003
822
+ End
823
+ Key 167
824
+ Frame 168
825
+ Value -71.2101
826
+ End
827
+ Key 168
828
+ Frame 169
829
+ Value -81.7738
830
+ End
831
+ Key 169
832
+ Frame 170
833
+ Value -94.4345
834
+ End
835
+ Key 170
836
+ Frame 171
837
+ Value -105.595
838
+ End
839
+ Key 171
840
+ Frame 172
841
+ Value -116.086
842
+ End
843
+ Key 172
844
+ Frame 173
845
+ Value -126.908
846
+ End
847
+ Key 173
848
+ Frame 174
849
+ Value -137.744
850
+ End
851
+ Key 174
852
+ Frame 175
853
+ Value -148.149
854
+ End
855
+ Key 175
856
+ Frame 176
857
+ Value -159.155
858
+ End
859
+ Key 176
860
+ Frame 177
861
+ Value -171.855
862
+ End
863
+ Key 177
864
+ Frame 178
865
+ Value -184.524
866
+ End
867
+ Key 178
868
+ Frame 179
869
+ Value -195.355
870
+ End
871
+ Key 179
872
+ Frame 180
873
+ Value -205.388
874
+ End
875
+ Key 180
876
+ Frame 181
877
+ Value -216.154
878
+ End
879
+ Key 181
880
+ Frame 182
881
+ Value -224.747
882
+ End
883
+ Key 182
884
+ Frame 183
885
+ Value -232.459
886
+ End
887
+ Key 183
888
+ Frame 184
889
+ Value -240.356
890
+ End
891
+ Key 184
892
+ Frame 185
893
+ Value -249.56
894
+ End
895
+ Key 185
896
+ Frame 186
897
+ Value -259.278
898
+ End
899
+ Key 186
900
+ Frame 187
901
+ Value -268.402
902
+ End
903
+ Key 187
904
+ Frame 188
905
+ Value -277.509
906
+ End
907
+ Key 188
908
+ Frame 189
909
+ Value -285.819
910
+ End
911
+ Key 189
912
+ Frame 190
913
+ Value -293.845
914
+ End
915
+ Key 190
916
+ Frame 191
917
+ Value -299.905
918
+ End
919
+ Key 191
920
+ Frame 192
921
+ Value -303.047
922
+ End
923
+ Key 192
924
+ Frame 193
925
+ Value -306.635
926
+ End
927
+ Key 193
928
+ Frame 194
929
+ Value -311.912
930
+ End
931
+ Key 194
932
+ Frame 195
933
+ Value -318.308
934
+ End
935
+ Key 195
936
+ Frame 196
937
+ Value -325.878
938
+ End
939
+ Key 196
940
+ Frame 197
941
+ Value -335.494
942
+ End
943
+ Key 197
944
+ Frame 198
945
+ Value -344.221
946
+ End
947
+ Key 198
948
+ Frame 199
949
+ Value -351.154
950
+ End
951
+ Key 199
952
+ Frame 200
953
+ Value -356.298
954
+ End
955
+ Key 200
956
+ Frame 201
957
+ Value -360.166
958
+ End
959
+ Key 201
960
+ Frame 202
961
+ Value -360.423
962
+ End
963
+ Key 202
964
+ Frame 203
965
+ Value -355.595
966
+ End
967
+ Key 203
968
+ Frame 204
969
+ Value -350.418
970
+ End
971
+ Key 204
972
+ Frame 205
973
+ Value -348.627
974
+ End
975
+ Key 205
976
+ Frame 206
977
+ Value -348.639
978
+ End
979
+ Key 206
980
+ Frame 207
981
+ Value -350.394
982
+ End
983
+ Key 207
984
+ Frame 208
985
+ Value -354.164
986
+ End
987
+ Key 208
988
+ Frame 209
989
+ Value -357.05
990
+ End
991
+ Key 209
992
+ Frame 210
993
+ Value -357.072
994
+ End
995
+ Key 210
996
+ Frame 211
997
+ Value -353.343
998
+ End
999
+ Key 211
1000
+ Frame 212
1001
+ Value -348.164
1002
+ End
1003
+ Key 212
1004
+ Frame 213
1005
+ Value -341.212
1006
+ End
1007
+ Key 213
1008
+ Frame 214
1009
+ Value -331.276
1010
+ End
1011
+ Key 214
1012
+ Frame 215
1013
+ Value -320.933
1014
+ End
1015
+ Key 215
1016
+ Frame 216
1017
+ Value -312.714
1018
+ End
1019
+ Key 216
1020
+ Frame 217
1021
+ Value -307.463
1022
+ End
1023
+ Key 217
1024
+ Frame 218
1025
+ Value -305.344
1026
+ End
1027
+ Key 218
1028
+ Frame 219
1029
+ Value -302.749
1030
+ End
1031
+ Key 219
1032
+ Frame 220
1033
+ Value -298.422
1034
+ End
1035
+ Key 220
1036
+ Frame 221
1037
+ Value -293.263
1038
+ End
1039
+ Key 221
1040
+ Frame 222
1041
+ Value -285.123
1042
+ End
1043
+ Key 222
1044
+ Frame 223
1045
+ Value -277.412
1046
+ End
1047
+ Key 223
1048
+ Frame 224
1049
+ Value -272.975
1050
+ End
1051
+ Key 224
1052
+ Frame 225
1053
+ Value -270.507
1054
+ End
1055
+ Key 225
1056
+ Frame 226
1057
+ Value -269.075
1058
+ End
1059
+ Key 226
1060
+ Frame 227
1061
+ Value -270.107
1062
+ End
1063
+ Key 227
1064
+ Frame 228
1065
+ Value -271.222
1066
+ End
1067
+ Key 228
1068
+ Frame 229
1069
+ Value -270.798
1070
+ End
1071
+ Key 229
1072
+ Frame 230
1073
+ Value -269.405
1074
+ End
1075
+ Key 230
1076
+ Frame 231
1077
+ Value -268.164
1078
+ End
1079
+ Key 231
1080
+ Frame 232
1081
+ Value -267.879
1082
+ End
1083
+ End
1084
+ Channel tracker1/shift/y
1085
+ Interpolation linear
1086
+ Value 270.346
1087
+ Size 232
1088
+ Key 0
1089
+ Frame 1
1090
+ Value -69.9588
1091
+ End
1092
+ Key 1
1093
+ Frame 2
1094
+ Value -65.9829
1095
+ End
1096
+ Key 2
1097
+ Frame 3
1098
+ Value -60.9438
1099
+ End
1100
+ Key 3
1101
+ Frame 4
1102
+ Value -54.7865
1103
+ End
1104
+ Key 4
1105
+ Frame 5
1106
+ Value -47.6059
1107
+ End
1108
+ Key 5
1109
+ Frame 6
1110
+ Value -39.9318
1111
+ End
1112
+ Key 6
1113
+ Frame 7
1114
+ Value -32.745
1115
+ End
1116
+ Key 7
1117
+ Frame 8
1118
+ Value -26.817
1119
+ End
1120
+ Key 8
1121
+ Frame 9
1122
+ Value -22.0652
1123
+ End
1124
+ Key 9
1125
+ Frame 10
1126
+ Value -18.1235
1127
+ End
1128
+ Key 10
1129
+ Frame 11
1130
+ Value -14.6904
1131
+ End
1132
+ Key 11
1133
+ Frame 12
1134
+ Value -11.8061
1135
+ End
1136
+ Key 12
1137
+ Frame 13
1138
+ Value -9.43048
1139
+ End
1140
+ Key 13
1141
+ Frame 14
1142
+ Value -7.28826
1143
+ End
1144
+ Key 14
1145
+ Frame 15
1146
+ Value -5.28816
1147
+ End
1148
+ Key 15
1149
+ Frame 16
1150
+ Value -3.70167
1151
+ End
1152
+ Key 16
1153
+ Frame 17
1154
+ Value -2.47963
1155
+ End
1156
+ Key 17
1157
+ Frame 18
1158
+ Value -1.5632
1159
+ End
1160
+ Key 18
1161
+ Frame 19
1162
+ Value -0.843933
1163
+ End
1164
+ Key 19
1165
+ Frame 20
1166
+ Value -0.323502
1167
+ End
1168
+ Key 20
1169
+ Frame 21
1170
+ Value -0.0982021
1171
+ End
1172
+ Key 21
1173
+ Frame 22
1174
+ Value 0.116541
1175
+ End
1176
+ Key 22
1177
+ Frame 23
1178
+ Value 0.395207
1179
+ End
1180
+ Key 23
1181
+ Frame 24
1182
+ Value 0.574225
1183
+ End
1184
+ Key 24
1185
+ Frame 25
1186
+ Value 0.748549
1187
+ End
1188
+ Key 25
1189
+ Frame 26
1190
+ Value 0.821278
1191
+ End
1192
+ Key 26
1193
+ Frame 27
1194
+ Value 0.773526
1195
+ End
1196
+ Key 27
1197
+ Frame 28
1198
+ Value 0.594395
1199
+ End
1200
+ Key 28
1201
+ Frame 29
1202
+ Value 0.453929
1203
+ End
1204
+ Key 29
1205
+ Frame 30
1206
+ Value 0.559731
1207
+ End
1208
+ Key 30
1209
+ Frame 31
1210
+ Value 0.635142
1211
+ End
1212
+ Key 31
1213
+ Frame 32
1214
+ Value 0.690342
1215
+ End
1216
+ Key 32
1217
+ Frame 33
1218
+ Value 0.739914
1219
+ End
1220
+ Key 33
1221
+ Frame 34
1222
+ Value 0.703525
1223
+ End
1224
+ Key 34
1225
+ Frame 35
1226
+ Value 0.578092
1227
+ End
1228
+ Key 35
1229
+ Frame 36
1230
+ Value 0.43117
1231
+ End
1232
+ Key 36
1233
+ Frame 37
1234
+ Value 0.378855
1235
+ End
1236
+ Key 37
1237
+ Frame 38
1238
+ Value 0.369359
1239
+ End
1240
+ Key 38
1241
+ Frame 39
1242
+ Value 0.302804
1243
+ End
1244
+ Key 39
1245
+ Frame 40
1246
+ Value 0.259038
1247
+ End
1248
+ Key 40
1249
+ Frame 41
1250
+ Value 0.331707
1251
+ End
1252
+ Key 41
1253
+ Frame 42
1254
+ Value 0.342136
1255
+ End
1256
+ Key 42
1257
+ Frame 43
1258
+ Value 0.288911
1259
+ End
1260
+ Key 43
1261
+ Frame 44
1262
+ Value 0.305217
1263
+ End
1264
+ Key 44
1265
+ Frame 45
1266
+ Value 0.281917
1267
+ End
1268
+ Key 45
1269
+ Frame 46
1270
+ Value 0.230466
1271
+ End
1272
+ Key 46
1273
+ Frame 47
1274
+ Value 0.157158
1275
+ End
1276
+ Key 47
1277
+ Frame 48
1278
+ Value 0.0651167
1279
+ End
1280
+ Key 48
1281
+ Frame 49
1282
+ Value -0.0795324
1283
+ End
1284
+ Key 49
1285
+ Frame 50
1286
+ Value -0.264125
1287
+ End
1288
+ Key 50
1289
+ Frame 51
1290
+ Value -0.449517
1291
+ End
1292
+ Key 51
1293
+ Frame 52
1294
+ Value -0.495195
1295
+ End
1296
+ Key 52
1297
+ Frame 53
1298
+ Value -0.49724
1299
+ End
1300
+ Key 53
1301
+ Frame 54
1302
+ Value -0.492477
1303
+ End
1304
+ Key 54
1305
+ Frame 55
1306
+ Value -0.393441
1307
+ End
1308
+ Key 55
1309
+ Frame 56
1310
+ Value -0.317781
1311
+ End
1312
+ Key 56
1313
+ Frame 57
1314
+ Value -0.333838
1315
+ End
1316
+ Key 57
1317
+ Frame 58
1318
+ Value -0.293895
1319
+ End
1320
+ Key 58
1321
+ Frame 59
1322
+ Value -0.297083
1323
+ End
1324
+ Key 59
1325
+ Frame 60
1326
+ Value -0.278068
1327
+ End
1328
+ Key 60
1329
+ Frame 61
1330
+ Value -0.147333
1331
+ End
1332
+ Key 61
1333
+ Frame 62
1334
+ Value -0.00950029
1335
+ End
1336
+ Key 62
1337
+ Frame 63
1338
+ Value 0.0695884
1339
+ End
1340
+ Key 63
1341
+ Frame 64
1342
+ Value 0.087114
1343
+ End
1344
+ Key 64
1345
+ Frame 65
1346
+ Value 0.057142
1347
+ End
1348
+ Key 65
1349
+ Frame 66
1350
+ Value -0.0033728
1351
+ End
1352
+ Key 66
1353
+ Frame 67
1354
+ Value -0.0723523
1355
+ End
1356
+ Key 67
1357
+ Frame 68
1358
+ Value -0.113242
1359
+ End
1360
+ Key 68
1361
+ Frame 69
1362
+ Value -0.155703
1363
+ End
1364
+ Key 69
1365
+ Frame 70
1366
+ Value -0.212086
1367
+ End
1368
+ Key 70
1369
+ Frame 71
1370
+ Value -0.181789
1371
+ End
1372
+ Key 71
1373
+ Frame 72
1374
+ Value -0.134278
1375
+ End
1376
+ Key 72
1377
+ Frame 73
1378
+ Value -0.14862
1379
+ End
1380
+ Key 73
1381
+ Frame 74
1382
+ Value -0.134846
1383
+ End
1384
+ Key 74
1385
+ Frame 75
1386
+ Value -0.240963
1387
+ End
1388
+ Key 75
1389
+ Frame 76
1390
+ Value -0.302604
1391
+ End
1392
+ Key 76
1393
+ Frame 77
1394
+ Value -0.290048
1395
+ End
1396
+ Key 77
1397
+ Frame 78
1398
+ Value -0.229482
1399
+ End
1400
+ Key 78
1401
+ Frame 79
1402
+ Value -0.184187
1403
+ End
1404
+ Key 79
1405
+ Frame 80
1406
+ Value -0.138582
1407
+ End
1408
+ Key 80
1409
+ Frame 81
1410
+ Value -0.164238
1411
+ End
1412
+ Key 81
1413
+ Frame 82
1414
+ Value -0.188501
1415
+ End
1416
+ Key 82
1417
+ Frame 83
1418
+ Value -0.187274
1419
+ End
1420
+ Key 83
1421
+ Frame 84
1422
+ Value -0.22424
1423
+ End
1424
+ Key 84
1425
+ Frame 85
1426
+ Value -0.237306
1427
+ End
1428
+ Key 85
1429
+ Frame 86
1430
+ Value -0.22329
1431
+ End
1432
+ Key 86
1433
+ Frame 87
1434
+ Value -0.211519
1435
+ End
1436
+ Key 87
1437
+ Frame 88
1438
+ Value -0.272797
1439
+ End
1440
+ Key 88
1441
+ Frame 89
1442
+ Value -0.352047
1443
+ End
1444
+ Key 89
1445
+ Frame 90
1446
+ Value -0.508477
1447
+ End
1448
+ Key 90
1449
+ Frame 91
1450
+ Value -0.692833
1451
+ End
1452
+ Key 91
1453
+ Frame 92
1454
+ Value -0.768783
1455
+ End
1456
+ Key 92
1457
+ Frame 93
1458
+ Value -0.848778
1459
+ End
1460
+ Key 93
1461
+ Frame 94
1462
+ Value -0.939166
1463
+ End
1464
+ Key 94
1465
+ Frame 95
1466
+ Value -1.11659
1467
+ End
1468
+ Key 95
1469
+ Frame 96
1470
+ Value -1.31571
1471
+ End
1472
+ Key 96
1473
+ Frame 97
1474
+ Value -1.41553
1475
+ End
1476
+ Key 97
1477
+ Frame 98
1478
+ Value -1.3662
1479
+ End
1480
+ Key 98
1481
+ Frame 99
1482
+ Value -1.21497
1483
+ End
1484
+ Key 99
1485
+ Frame 100
1486
+ Value -1.13409
1487
+ End
1488
+ Key 100
1489
+ Frame 101
1490
+ Value -1.14733
1491
+ End
1492
+ Key 101
1493
+ Frame 102
1494
+ Value -1.14571
1495
+ End
1496
+ Key 102
1497
+ Frame 103
1498
+ Value -1.1932
1499
+ End
1500
+ Key 103
1501
+ Frame 104
1502
+ Value -1.19007
1503
+ End
1504
+ Key 104
1505
+ Frame 105
1506
+ Value -1.20247
1507
+ End
1508
+ Key 105
1509
+ Frame 106
1510
+ Value -1.19279
1511
+ End
1512
+ Key 106
1513
+ Frame 107
1514
+ Value -1.1094
1515
+ End
1516
+ Key 107
1517
+ Frame 108
1518
+ Value -1.05711
1519
+ End
1520
+ Key 108
1521
+ Frame 109
1522
+ Value -0.918409
1523
+ End
1524
+ Key 109
1525
+ Frame 110
1526
+ Value -0.573124
1527
+ End
1528
+ Key 110
1529
+ Frame 111
1530
+ Value -0.175091
1531
+ End
1532
+ Key 111
1533
+ Frame 112
1534
+ Value 0
1535
+ End
1536
+ Key 112
1537
+ Frame 113
1538
+ Value 0.302997
1539
+ End
1540
+ Key 113
1541
+ Frame 114
1542
+ Value 0.939504
1543
+ End
1544
+ Key 114
1545
+ Frame 115
1546
+ Value 1.95744
1547
+ End
1548
+ Key 115
1549
+ Frame 116
1550
+ Value 3.55089
1551
+ End
1552
+ Key 116
1553
+ Frame 117
1554
+ Value 6.01604
1555
+ End
1556
+ Key 117
1557
+ Frame 118
1558
+ Value 9.33283
1559
+ End
1560
+ Key 118
1561
+ Frame 119
1562
+ Value 13.2448
1563
+ End
1564
+ Key 119
1565
+ Frame 120
1566
+ Value 17.5411
1567
+ End
1568
+ Key 120
1569
+ Frame 121
1570
+ Value 22.3526
1571
+ End
1572
+ Key 121
1573
+ Frame 122
1574
+ Value 27.7908
1575
+ End
1576
+ Key 122
1577
+ Frame 123
1578
+ Value 32.824
1579
+ End
1580
+ Key 123
1581
+ Frame 124
1582
+ Value 36.3341
1583
+ End
1584
+ Key 124
1585
+ Frame 125
1586
+ Value 38.2119
1587
+ End
1588
+ Key 125
1589
+ Frame 126
1590
+ Value 38.9856
1591
+ End
1592
+ Key 126
1593
+ Frame 127
1594
+ Value 39.243
1595
+ End
1596
+ Key 127
1597
+ Frame 128
1598
+ Value 39.4051
1599
+ End
1600
+ Key 128
1601
+ Frame 129
1602
+ Value 39.6751
1603
+ End
1604
+ Key 129
1605
+ Frame 130
1606
+ Value 39.9933
1607
+ End
1608
+ Key 130
1609
+ Frame 131
1610
+ Value 40.2678
1611
+ End
1612
+ Key 131
1613
+ Frame 132
1614
+ Value 40.5553
1615
+ End
1616
+ Key 132
1617
+ Frame 133
1618
+ Value 40.9074
1619
+ End
1620
+ Key 133
1621
+ Frame 134
1622
+ Value 41.8278
1623
+ End
1624
+ Key 134
1625
+ Frame 135
1626
+ Value 43.8094
1627
+ End
1628
+ Key 135
1629
+ Frame 136
1630
+ Value 46.9591
1631
+ End
1632
+ Key 136
1633
+ Frame 137
1634
+ Value 51.1062
1635
+ End
1636
+ Key 137
1637
+ Frame 138
1638
+ Value 56.1728
1639
+ End
1640
+ Key 138
1641
+ Frame 139
1642
+ Value 61.3479
1643
+ End
1644
+ Key 139
1645
+ Frame 140
1646
+ Value 66.3293
1647
+ End
1648
+ Key 140
1649
+ Frame 141
1650
+ Value 72.1267
1651
+ End
1652
+ Key 141
1653
+ Frame 142
1654
+ Value 79.5033
1655
+ End
1656
+ Key 142
1657
+ Frame 143
1658
+ Value 87.5002
1659
+ End
1660
+ Key 143
1661
+ Frame 144
1662
+ Value 96.9535
1663
+ End
1664
+ Key 144
1665
+ Frame 145
1666
+ Value 107.844
1667
+ End
1668
+ Key 145
1669
+ Frame 146
1670
+ Value 119.757
1671
+ End
1672
+ Key 146
1673
+ Frame 147
1674
+ Value 132.698
1675
+ End
1676
+ Key 147
1677
+ Frame 148
1678
+ Value 147.1
1679
+ End
1680
+ Key 148
1681
+ Frame 149
1682
+ Value 164.267
1683
+ End
1684
+ Key 149
1685
+ Frame 150
1686
+ Value 181.067
1687
+ End
1688
+ Key 150
1689
+ Frame 151
1690
+ Value 196.349
1691
+ End
1692
+ Key 151
1693
+ Frame 152
1694
+ Value 210.586
1695
+ End
1696
+ Key 152
1697
+ Frame 153
1698
+ Value 226.539
1699
+ End
1700
+ Key 153
1701
+ Frame 154
1702
+ Value 243.006
1703
+ End
1704
+ Key 154
1705
+ Frame 155
1706
+ Value 257.267
1707
+ End
1708
+ Key 155
1709
+ Frame 156
1710
+ Value 268.386
1711
+ End
1712
+ Key 156
1713
+ Frame 157
1714
+ Value 278.067
1715
+ End
1716
+ Key 157
1717
+ Frame 158
1718
+ Value 287.61
1719
+ End
1720
+ Key 158
1721
+ Frame 159
1722
+ Value 297.19
1723
+ End
1724
+ Key 159
1725
+ Frame 160
1726
+ Value 308.511
1727
+ End
1728
+ Key 160
1729
+ Frame 161
1730
+ Value 321.662
1731
+ End
1732
+ Key 161
1733
+ Frame 162
1734
+ Value 335.892
1735
+ End
1736
+ Key 162
1737
+ Frame 163
1738
+ Value 348.567
1739
+ End
1740
+ Key 163
1741
+ Frame 164
1742
+ Value 362.099
1743
+ End
1744
+ Key 164
1745
+ Frame 165
1746
+ Value 380.128
1747
+ End
1748
+ Key 165
1749
+ Frame 166
1750
+ Value 399.115
1751
+ End
1752
+ Key 166
1753
+ Frame 167
1754
+ Value 413.804
1755
+ End
1756
+ Key 167
1757
+ Frame 168
1758
+ Value 421.538
1759
+ End
1760
+ Key 168
1761
+ Frame 169
1762
+ Value 422.468
1763
+ End
1764
+ Key 169
1765
+ Frame 170
1766
+ Value 418.49
1767
+ End
1768
+ Key 170
1769
+ Frame 171
1770
+ Value 413.208
1771
+ End
1772
+ Key 171
1773
+ Frame 172
1774
+ Value 407.786
1775
+ End
1776
+ Key 172
1777
+ Frame 173
1778
+ Value 402.231
1779
+ End
1780
+ Key 173
1781
+ Frame 174
1782
+ Value 396.556
1783
+ End
1784
+ Key 174
1785
+ Frame 175
1786
+ Value 389.445
1787
+ End
1788
+ Key 175
1789
+ Frame 176
1790
+ Value 382.075
1791
+ End
1792
+ Key 176
1793
+ Frame 177
1794
+ Value 375.641
1795
+ End
1796
+ Key 177
1797
+ Frame 178
1798
+ Value 370.078
1799
+ End
1800
+ Key 178
1801
+ Frame 179
1802
+ Value 364.549
1803
+ End
1804
+ Key 179
1805
+ Frame 180
1806
+ Value 359.631
1807
+ End
1808
+ Key 180
1809
+ Frame 181
1810
+ Value 355.484
1811
+ End
1812
+ Key 181
1813
+ Frame 182
1814
+ Value 353.034
1815
+ End
1816
+ Key 182
1817
+ Frame 183
1818
+ Value 353.75
1819
+ End
1820
+ Key 183
1821
+ Frame 184
1822
+ Value 355.297
1823
+ End
1824
+ Key 184
1825
+ Frame 185
1826
+ Value 353.074
1827
+ End
1828
+ Key 185
1829
+ Frame 186
1830
+ Value 348.584
1831
+ End
1832
+ Key 186
1833
+ Frame 187
1834
+ Value 343.812
1835
+ End
1836
+ Key 187
1837
+ Frame 188
1838
+ Value 338.987
1839
+ End
1840
+ Key 188
1841
+ Frame 189
1842
+ Value 333.497
1843
+ End
1844
+ Key 189
1845
+ Frame 190
1846
+ Value 325.484
1847
+ End
1848
+ Key 190
1849
+ Frame 191
1850
+ Value 317.506
1851
+ End
1852
+ Key 191
1853
+ Frame 192
1854
+ Value 313.532
1855
+ End
1856
+ Key 192
1857
+ Frame 193
1858
+ Value 312.757
1859
+ End
1860
+ Key 193
1861
+ Frame 194
1862
+ Value 312.745
1863
+ End
1864
+ Key 194
1865
+ Frame 195
1866
+ Value 310.186
1867
+ End
1868
+ Key 195
1869
+ Frame 196
1870
+ Value 307.129
1871
+ End
1872
+ Key 196
1873
+ Frame 197
1874
+ Value 305.737
1875
+ End
1876
+ Key 197
1877
+ Frame 198
1878
+ Value 306.415
1879
+ End
1880
+ Key 198
1881
+ Frame 199
1882
+ Value 308.426
1883
+ End
1884
+ Key 199
1885
+ Frame 200
1886
+ Value 307.924
1887
+ End
1888
+ Key 200
1889
+ Frame 201
1890
+ Value 302.229
1891
+ End
1892
+ Key 201
1893
+ Frame 202
1894
+ Value 295.485
1895
+ End
1896
+ Key 202
1897
+ Frame 203
1898
+ Value 293.244
1899
+ End
1900
+ Key 203
1901
+ Frame 204
1902
+ Value 294.395
1903
+ End
1904
+ Key 204
1905
+ Frame 205
1906
+ Value 295.654
1907
+ End
1908
+ Key 205
1909
+ Frame 206
1910
+ Value 296.091
1911
+ End
1912
+ Key 206
1913
+ Frame 207
1914
+ Value 295.95
1915
+ End
1916
+ Key 207
1917
+ Frame 208
1918
+ Value 297.36
1919
+ End
1920
+ Key 208
1921
+ Frame 209
1922
+ Value 301.229
1923
+ End
1924
+ Key 209
1925
+ Frame 210
1926
+ Value 306.628
1927
+ End
1928
+ Key 210
1929
+ Frame 211
1930
+ Value 312.288
1931
+ End
1932
+ Key 211
1933
+ Frame 212
1934
+ Value 319.019
1935
+ End
1936
+ Key 212
1937
+ Frame 213
1938
+ Value 326.262
1939
+ End
1940
+ Key 213
1941
+ Frame 214
1942
+ Value 331.577
1943
+ End
1944
+ Key 214
1945
+ Frame 215
1946
+ Value 333.35
1947
+ End
1948
+ Key 215
1949
+ Frame 216
1950
+ Value 332.648
1951
+ End
1952
+ Key 216
1953
+ Frame 217
1954
+ Value 330.575
1955
+ End
1956
+ Key 217
1957
+ Frame 218
1958
+ Value 327.499
1959
+ End
1960
+ Key 218
1961
+ Frame 219
1962
+ Value 323.221
1963
+ End
1964
+ Key 219
1965
+ Frame 220
1966
+ Value 317.895
1967
+ End
1968
+ Key 220
1969
+ Frame 221
1970
+ Value 312.517
1971
+ End
1972
+ Key 221
1973
+ Frame 222
1974
+ Value 307.091
1975
+ End
1976
+ Key 222
1977
+ Frame 223
1978
+ Value 301.186
1979
+ End
1980
+ Key 223
1981
+ Frame 224
1982
+ Value 293.084
1983
+ End
1984
+ Key 224
1985
+ Frame 225
1986
+ Value 281.882
1987
+ End
1988
+ Key 225
1989
+ Frame 226
1990
+ Value 272.753
1991
+ End
1992
+ Key 226
1993
+ Frame 227
1994
+ Value 268.74
1995
+ End
1996
+ Key 227
1997
+ Frame 228
1998
+ Value 269.039
1999
+ End
2000
+ Key 228
2001
+ Frame 229
2002
+ Value 270.441
2003
+ End
2004
+ Key 229
2005
+ Frame 230
2006
+ Value 270.64
2007
+ End
2008
+ Key 230
2009
+ Frame 231
2010
+ Value 270.343
2011
+ End
2012
+ Key 231
2013
+ Frame 232
2014
+ Value 270.346
2015
+ End
2016
+ End
2017
+ ChannelEnd
2018
+ Tracker 0
2019
+ Active yes
2020
+ Colour
2021
+ Red 100
2022
+ Green 0
2023
+ Blue 0
2024
+ FixedRef yes
2025
+ FixedX no
2026
+ FixedY no
2027
+ Tolerance 100
2028
+ End