flame_channel_parser 1.2.0 → 1.3.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,3 +1,9 @@
1
+ === 1.3.0 / 2011-05-20
2
+
3
+ * Added the Extractor class that does simple per-frame baking to STDOUT
4
+ * Add bake_flame_channel binary
5
+ * Ensure linear prepolation works when counting to a linear interpolated keyframe
6
+
1
7
  === 1.2.0 / 2011-05-20
2
8
 
3
9
  * Ensure single-key channels interpolate correctly
@@ -3,13 +3,13 @@ History.txt
3
3
  Manifest.txt
4
4
  README.rdoc
5
5
  Rakefile
6
+ bin/bake_flame_channel
7
+ lib/extractor.rb
6
8
  lib/flame_channel_parser.rb
7
9
  lib/interpolator.rb
8
10
  lib/parser_2011.rb
9
11
  lib/parser_2012.rb
10
12
  lib/segments.rb
11
- plots.numbers
12
- plots_2012.numbers
13
13
  test/channel_with_constants.dat
14
14
  test/sample_channel.dat
15
15
  test/snaps/FLEM_BrokenTangents.action
@@ -19,8 +19,16 @@ test/snaps/FLEM_baked_curve.png
19
19
  test/snaps/FLEM_curves_example.action
20
20
  test/snaps/FLEM_curves_example_migrated_to_2012.action
21
21
  test/snaps/FLEM_std_curve.png
22
+ test/snaps/RefT_Steadicam.timewarp
23
+ test/snaps/RefT_Steadicam_Baked.timewarp
24
+ test/snaps/RefT_Steadicam_Extraction.txt
25
+ test/snaps/RefT_Steadicam_Extraction_F19_to_347.txt
26
+ test/snaps/RefT_Steadicam_TwoKFs.timewarp
27
+ test/snaps/RefT_Steadicam_TwoKFs_AnotherSlope.timewarp
28
+ test/snaps/RefT_Steadicam_TwoKFs_HermiteAtBegin.timewarp
22
29
  test/snaps/TW.timewarp
23
30
  test/snaps/TW_SingleFrameExtrapolated_from2011.timewarp
31
+ test/test_extractor.rb
24
32
  test/test_flame_channel_parser.rb
25
33
  test/test_interpolator.rb
26
34
  test/test_segments.rb
data/Rakefile CHANGED
@@ -6,8 +6,9 @@ require 'hoe'
6
6
  Hoe.spec 'flame_channel_parser' do | p |
7
7
  p.readme_file = 'README.rdoc'
8
8
  p.extra_rdoc_files = FileList['*.rdoc'] + FileList['*.txt']
9
+ p.extra_deps = {"update_hints" => ">=0" }
9
10
  p.developer('Julik Tarkhanov', 'me@julik.nl')
10
- p.clean_globs = %w( **/.DS_Store coverage.info **/*.rbc .idea .yardoc)
11
+ p.clean_globs = %w( **/.DS_Store coverage.info **/*.rbc .idea .yardoc *.numbers)
11
12
  end
12
13
 
13
14
  # vim: syntax=ruby
@@ -0,0 +1,31 @@
1
+ #!/usr/bin/env ruby
2
+ require File.dirname(__FILE__) + '/../lib/flame_channel_parser'
3
+ require 'optparse'
4
+
5
+ options = {}
6
+
7
+ op = OptionParser.new
8
+ op.banner = "Usage: bake_flame_channel --channel \"Timing/Timing\" -e 123 /usr/discreet/projects/Luxury/timewarp/shot2_tw.timewarp > /mnt/3d/curves/shot2_tw.framecurve.txt\n" +
9
+ "The output file can be used as Time+Value ASCII input for Nuke\n" +
10
+ "or parsed with any simple script"
11
+ op.on(" -c", "--channel CHANNEL_NAME", String,
12
+ "Select the channel to bake (for example in Timewarp setups the useful one is Timing/Timing)"
13
+ ) {|chan| options[:channel] = chan }
14
+ op.on(" -s", "--startframe FRAME", Integer,
15
+ "Bake the curve from this specific frame onwards (defaults to the first keyframe in the setup"
16
+ ) {|from| options[:start_frame] = from }
17
+ op.on(" -e", "--endframe FRAME", Integer,
18
+ "Bake the curve upto this specific frame (defaults to the last keyframe in the setup"
19
+ ) {|upto| options[:end_frame] = upto }
20
+ op.on(" -f", "--to-file FILENAME", String,
21
+ "Write the curve to a file at this path instead of printing it to STDOUT"
22
+ ) {|path| options[:destination] = File.open(path, "wb") }
23
+
24
+ op.parse!
25
+ setup_path = ARGV.shift
26
+ raise "No input file path provided" unless setup_path
27
+
28
+ FlameChannelParser::Extractor.new.extract(setup_path, options)
29
+ options[:destination].close if options[:destination].respond_to?(:close)
30
+
31
+ UpdateHints.version_check("flame_channel_parser", FlameChannelParser::VERSION)
@@ -0,0 +1,40 @@
1
+ # Extracts and bakes a specific animation channel
2
+ class FlameChannelParser::Extractor
3
+
4
+ DEFAULTS = {:destination => $stdout, :start_frame => nil, :end_frame => nil, :channel => "Timing/Timing" }
5
+
6
+ # Raised when a channel is not found in the setup file
7
+ class ChannelNotFoundError < RuntimeError
8
+ end
9
+
10
+ # Pass the path to Flame setup here and you will get the timewarp curve on STDOUT
11
+ def self.extract(path, options = {})
12
+ options = DEFAULTS.merge(options)
13
+ File.open(path) do | f |
14
+ channels = FlameChannelParser.parse(f)
15
+ selected_channel = channels.find{|c| options[:channel] == c.name }
16
+ unless selected_channel
17
+ message = "Channel not #{options[:channel]}found in this setup (set the channel with the --channel option). Found other channels though:"
18
+ message << "\n"
19
+ message += channels.map{|c| c.name }.join("\n")
20
+ raise ChannelNotFoundError, message
21
+ end
22
+
23
+ write_channel(selected_channel, options[:destination], options[:start_frame], options[:end_frame])
24
+ end
25
+ end
26
+
27
+ private
28
+
29
+ def self.write_channel(channel, to_io, start_frame, end_frame)
30
+ interpolator = FlameChannelParser::Interpolator.new(channel)
31
+
32
+ from_frame = start_frame || interpolator.first_defined_frame
33
+ to_frame = end_frame || interpolator.last_defined_frame
34
+
35
+ (from_frame..to_frame).each do | frame |
36
+ to_io.puts("%d\t%.5f" % [frame, interpolator.sample_at(frame)])
37
+ end
38
+ end
39
+
40
+ end
@@ -1,7 +1,7 @@
1
1
  require "delegate"
2
2
 
3
3
  module FlameChannelParser
4
- VERSION = '1.2.0'
4
+ VERSION = '1.3.0'
5
5
 
6
6
  # Parse a Flame setup into an array of ChannelBlock objects
7
7
  def self.parse(io)
@@ -13,17 +13,16 @@ module FlameChannelParser
13
13
 
14
14
  def self.detect_parser_class_from(io)
15
15
  # Scan the IO
16
- parser_class = Parser2011
17
16
  until io.eof?
18
17
  str = io.gets
19
18
  if str =~ /RHandleX/ # Flame 2012, use that parser
20
- parser_class = Parser2012
21
- break
19
+ io.rewind
20
+ return Parser2012
22
21
  end
23
22
  end
24
- io.rewind
25
23
 
26
- return parser_class
24
+ io.rewind
25
+ Parser2011
27
26
  end
28
27
  end
29
28
 
@@ -31,3 +30,4 @@ require File.expand_path(File.dirname(__FILE__)) + "/parser_2011"
31
30
  require File.expand_path(File.dirname(__FILE__)) + "/parser_2012"
32
31
  require File.expand_path(File.dirname(__FILE__)) + "/segments"
33
32
  require File.expand_path(File.dirname(__FILE__)) + "/interpolator"
33
+ require File.expand_path(File.dirname(__FILE__)) + "/extractor"
@@ -23,7 +23,7 @@ class FlameChannelParser::Interpolator
23
23
  else
24
24
 
25
25
  # First the prepolating segment
26
- @segments << pick_prepolation(channel.extrapolation, channel[0])
26
+ @segments << pick_prepolation(channel.extrapolation, channel[0], channel[1])
27
27
 
28
28
  # Then all the intermediate segments, one segment between each pair of keys
29
29
  channel[0..-2].each_with_index do | key, index |
@@ -61,9 +61,16 @@ class FlameChannelParser::Interpolator
61
61
 
62
62
  private
63
63
 
64
- def pick_prepolation(extrap_symbol, first_key)
65
- if extrap_symbol == :linear
66
- LinearPrepolate.new(first_key.frame, first_key.value, first_key.left_slope)
64
+ def pick_prepolation(extrap_symbol, first_key, second_key)
65
+ if extrap_symbol == :linear && second_key
66
+ if first_key.interpolation != :linear
67
+ LinearPrepolate.new(first_key.frame, first_key.value, first_key.left_slope)
68
+ else
69
+ # For linear keys the tangent actually does not do anything, so we need to look a frame
70
+ # ahead and compute the increment
71
+ increment = (second_key.value - first_key.value) / (second_key.frame - first_key.frame)
72
+ LinearPrepolate.new(first_key.frame, first_key.value, increment)
73
+ end
67
74
  else
68
75
  ConstantPrepolate.new(first_key.frame, first_key.value)
69
76
  end
@@ -4,14 +4,12 @@ require "delegate"
4
4
  class FlameChannelParser::Parser2011
5
5
 
6
6
  # Represents a keyframe
7
- class Key
8
- attr_accessor :frame, :value, :interpolation, :extrapolation, :left_slope, :right_slope, :break_slope
9
- alias_method :to_s, :inspect
7
+ class Key < Struct.new(:frame, :value, :interpolation, :extrapolation, :left_slope, :right_slope, :break_slope)
10
8
 
11
9
  # Unless the key is broken? we should just use the right slope
12
10
  def left_slope
13
11
  return right_slope unless broken?
14
- @left_slope
12
+ super
15
13
  end
16
14
 
17
15
  # Tells whether the slope of this keyframe is broken (not smooth)
@@ -39,20 +37,25 @@ class FlameChannelParser::Parser2011
39
37
 
40
38
  # Represents a channel parsed from the Flame setup. Contains
41
39
  # the channel metadata and keyframes
42
- class ChannelBlock < DelegateClass(Array)
40
+ class Channel < DelegateClass(Array)
41
+ attr_reader :node_type
42
+ attr_reader :node_name
43
43
  attr_accessor :base_value
44
44
  attr_accessor :name
45
45
  attr_accessor :extrapolation
46
46
 
47
- def initialize(io, channel_name, parent_parser)
47
+ def initialize(io, channel_name, parent_parser, node_type, node_name)
48
48
  super([])
49
49
 
50
+ @node_type = node_type
51
+ @node_name = node_name
50
52
  @parser = parent_parser
51
53
  @name = channel_name.strip
52
54
 
53
55
  base_value_matcher = /Value ([\-\d\.]+)/
54
56
  keyframe_count_matcher = /Size (\d+)/
55
57
  extrapolation_matcher = /Extrapolation (\w+)/
58
+
56
59
  indent = nil
57
60
 
58
61
  while line = io.gets
@@ -75,6 +78,10 @@ class FlameChannelParser::Parser2011
75
78
 
76
79
  end
77
80
 
81
+ def path
82
+ [@node_name, name].compact.join("/")
83
+ end
84
+
78
85
  # Get an Interpolator from this channel
79
86
  def to_interpolator
80
87
  FlameChannelParser::Interpolator.new(self)
@@ -120,13 +127,21 @@ class FlameChannelParser::Parser2011
120
127
  end
121
128
 
122
129
  CHANNEL_MATCHER = /Channel (.+)\n/
130
+ NODE_TYPE_MATCHER = /Node (\w+)/
131
+ NODE_NAME_MATCHER = /Name (\w+)/
123
132
 
124
133
  def parse(io)
125
134
  channels = []
135
+ node_name, node_type = nil, nil
136
+
126
137
  until io.eof?
127
138
  line = io.gets
128
- if line =~ CHANNEL_MATCHER && channel_is_useful?($1)
129
- channels << ChannelBlock.new(io, $1, self)
139
+ if line =~ NODE_TYPE_MATCHER
140
+ node_type = $1
141
+ elsif line =~ NODE_NAME_MATCHER
142
+ node_name = $1
143
+ elsif line =~ CHANNEL_MATCHER && channel_is_useful?($1)
144
+ channels << Channel.new(io, $1, self, node_type, node_name)
130
145
  end
131
146
  end
132
147
  channels
@@ -4,16 +4,15 @@ require File.dirname(__FILE__) + "/interpolator"
4
4
  # This parser is automatically used for 2012 setups
5
5
  class FlameChannelParser::Parser2012 < FlameChannelParser::Parser2011
6
6
 
7
- class ModernKey
8
- attr_accessor :frame, :value, :r_handle_x, :l_handle_x, :r_handle_y, :l_handle_y, :curve_mode, :curve_order, :break_slope
7
+ class ModernKey < Struct.new(:frame, :value, :r_handle_x, :l_handle_x, :r_handle_y, :l_handle_y, :curve_mode, :curve_order, :break_slope)
9
8
  alias_method :to_s, :inspect
10
9
 
11
10
  # Adapter for old interpolation
12
11
  def interpolation
13
- return :constant if @curve_order.to_s == "constant"
14
- return :hermite if @curve_order.to_s == "cubic" && (@curve_mode.to_s == "hermite" || @curve_mode.to_s == "natural")
15
- return :bezier if @curve_order.to_s == "cubic" && @curve_mode.to_s == "bezier"
16
- return :linear if @curve_order.to_s == "linear"
12
+ return :constant if curve_order.to_s == "constant"
13
+ return :hermite if curve_order.to_s == "cubic" && (curve_mode.to_s == "hermite" || curve_mode.to_s == "natural")
14
+ return :bezier if curve_order.to_s == "cubic" && curve_mode.to_s == "bezier"
15
+ return :linear if curve_order.to_s == "linear"
17
16
 
18
17
  raise "Cannot determine interpolation for #{self.inspect}"
19
18
  end
@@ -202,6 +202,7 @@ module FlameChannelParser::Segments
202
202
  @end_frame = upto_frame
203
203
  @start_frame = NEG_INF
204
204
  @tangent = tangent.to_f
205
+
205
206
  end
206
207
 
207
208
  def value_at(frame)
@@ -0,0 +1,94 @@
1
+ TimewarpFileVersion 1.0
2
+ CreationDate Tue May 24 14:08:47 2011
3
+
4
+
5
+ Fields 0
6
+ Frames 230
7
+ Origin 1
8
+ RenderType no
9
+ SamplingStep 0
10
+ Interpolation 0
11
+ FlowQuality 2
12
+ Animation
13
+ Channel Speed
14
+ Extrapolation constant
15
+ Value -200
16
+ Size 3
17
+ KeyVersion 1
18
+ Key 0
19
+ Frame 41
20
+ Value -200
21
+ Interpolation constant
22
+ RightAutomaticSlope no
23
+ LeftAutomaticSlope no
24
+ BreakSlope yes
25
+ End
26
+ Key 1
27
+ Frame 42
28
+ Value -200
29
+ Interpolation constant
30
+ RightAutomaticSlope no
31
+ LeftAutomaticSlope no
32
+ BreakSlope yes
33
+ End
34
+ Key 2
35
+ Frame 230
36
+ Value 0
37
+ Interpolation constant
38
+ RightAutomaticSlope no
39
+ LeftAutomaticSlope no
40
+ BreakSlope yes
41
+ End
42
+ Uncollapsed
43
+ End
44
+ Channel Timing/Timing
45
+ Extrapolation linear
46
+ Value 459
47
+ Size 3
48
+ KeyVersion 1
49
+ Key 0
50
+ Frame 41
51
+ Value 379
52
+ Interpolation linear
53
+ RightSlope 1
54
+ RightAutomaticSlope no
55
+ LeftAutomaticSlope no
56
+ End
57
+ Key 1
58
+ Frame 42
59
+ Value 377
60
+ Interpolation linear
61
+ RightSlope -2
62
+ LeftSlope -2
63
+ End
64
+ Key 2
65
+ Frame 230
66
+ Value 1
67
+ Interpolation linear
68
+ RightSlope -1.57143
69
+ LeftSlope -1.57143
70
+ End
71
+ Uncollapsed
72
+ End
73
+ Channel Mix/Mix
74
+ Extrapolation constant
75
+ Value 0
76
+ End
77
+ Channel Trail/Pre_Trail
78
+ Extrapolation constant
79
+ Value 1
80
+ End
81
+ Channel Trail/Pre_Weight
82
+ Extrapolation constant
83
+ Value 100
84
+ End
85
+ Channel Trail/Post_Trail
86
+ Extrapolation constant
87
+ Value 1
88
+ End
89
+ Channel Trail/Post_Weight
90
+ Extrapolation constant
91
+ Value 100
92
+ End
93
+ ChannelEnd
94
+ End
@@ -0,0 +1,3498 @@
1
+ TimewarpFileVersion 1.0
2
+ CreationDate Tue May 24 14:09:27 2011
3
+
4
+
5
+ Fields 0
6
+ Frames 230
7
+ Origin 1
8
+ RenderType no
9
+ SamplingStep 0
10
+ Interpolation 0
11
+ FlowQuality 2
12
+ Animation
13
+ Channel Speed
14
+ Extrapolation constant
15
+ Value -200
16
+ Size 230
17
+ KeyVersion 1
18
+ Key 0
19
+ Frame 1
20
+ Value -200
21
+ Interpolation constant
22
+ RightAutomaticSlope no
23
+ LeftAutomaticSlope no
24
+ BreakSlope yes
25
+ End
26
+ Key 1
27
+ Frame 2
28
+ Value -200
29
+ Interpolation constant
30
+ RightAutomaticSlope no
31
+ LeftAutomaticSlope no
32
+ BreakSlope yes
33
+ End
34
+ Key 2
35
+ Frame 3
36
+ Value -200
37
+ Interpolation constant
38
+ RightAutomaticSlope no
39
+ LeftAutomaticSlope no
40
+ BreakSlope yes
41
+ End
42
+ Key 3
43
+ Frame 4
44
+ Value -200
45
+ Interpolation constant
46
+ RightAutomaticSlope no
47
+ LeftAutomaticSlope no
48
+ BreakSlope yes
49
+ End
50
+ Key 4
51
+ Frame 5
52
+ Value -200
53
+ Interpolation constant
54
+ RightAutomaticSlope no
55
+ LeftAutomaticSlope no
56
+ BreakSlope yes
57
+ End
58
+ Key 5
59
+ Frame 6
60
+ Value -200
61
+ Interpolation constant
62
+ RightAutomaticSlope no
63
+ LeftAutomaticSlope no
64
+ BreakSlope yes
65
+ End
66
+ Key 6
67
+ Frame 7
68
+ Value -200
69
+ Interpolation constant
70
+ RightAutomaticSlope no
71
+ LeftAutomaticSlope no
72
+ BreakSlope yes
73
+ End
74
+ Key 7
75
+ Frame 8
76
+ Value -200
77
+ Interpolation constant
78
+ RightAutomaticSlope no
79
+ LeftAutomaticSlope no
80
+ BreakSlope yes
81
+ End
82
+ Key 8
83
+ Frame 9
84
+ Value -200
85
+ Interpolation constant
86
+ RightAutomaticSlope no
87
+ LeftAutomaticSlope no
88
+ BreakSlope yes
89
+ End
90
+ Key 9
91
+ Frame 10
92
+ Value -200
93
+ Interpolation constant
94
+ RightAutomaticSlope no
95
+ LeftAutomaticSlope no
96
+ BreakSlope yes
97
+ End
98
+ Key 10
99
+ Frame 11
100
+ Value -200
101
+ Interpolation constant
102
+ RightAutomaticSlope no
103
+ LeftAutomaticSlope no
104
+ BreakSlope yes
105
+ End
106
+ Key 11
107
+ Frame 12
108
+ Value -200
109
+ Interpolation constant
110
+ RightAutomaticSlope no
111
+ LeftAutomaticSlope no
112
+ BreakSlope yes
113
+ End
114
+ Key 12
115
+ Frame 13
116
+ Value -200
117
+ Interpolation constant
118
+ RightAutomaticSlope no
119
+ LeftAutomaticSlope no
120
+ BreakSlope yes
121
+ End
122
+ Key 13
123
+ Frame 14
124
+ Value -200
125
+ Interpolation constant
126
+ RightAutomaticSlope no
127
+ LeftAutomaticSlope no
128
+ BreakSlope yes
129
+ End
130
+ Key 14
131
+ Frame 15
132
+ Value -200
133
+ Interpolation constant
134
+ RightAutomaticSlope no
135
+ LeftAutomaticSlope no
136
+ BreakSlope yes
137
+ End
138
+ Key 15
139
+ Frame 16
140
+ Value -200
141
+ Interpolation constant
142
+ RightAutomaticSlope no
143
+ LeftAutomaticSlope no
144
+ BreakSlope yes
145
+ End
146
+ Key 16
147
+ Frame 17
148
+ Value -200
149
+ Interpolation constant
150
+ RightAutomaticSlope no
151
+ LeftAutomaticSlope no
152
+ BreakSlope yes
153
+ End
154
+ Key 17
155
+ Frame 18
156
+ Value -200
157
+ Interpolation constant
158
+ RightAutomaticSlope no
159
+ LeftAutomaticSlope no
160
+ BreakSlope yes
161
+ End
162
+ Key 18
163
+ Frame 19
164
+ Value -200
165
+ Interpolation constant
166
+ RightAutomaticSlope no
167
+ LeftAutomaticSlope no
168
+ BreakSlope yes
169
+ End
170
+ Key 19
171
+ Frame 20
172
+ Value -200
173
+ Interpolation constant
174
+ RightAutomaticSlope no
175
+ LeftAutomaticSlope no
176
+ BreakSlope yes
177
+ End
178
+ Key 20
179
+ Frame 21
180
+ Value -200
181
+ Interpolation constant
182
+ RightAutomaticSlope no
183
+ LeftAutomaticSlope no
184
+ BreakSlope yes
185
+ End
186
+ Key 21
187
+ Frame 22
188
+ Value -200
189
+ Interpolation constant
190
+ RightAutomaticSlope no
191
+ LeftAutomaticSlope no
192
+ BreakSlope yes
193
+ End
194
+ Key 22
195
+ Frame 23
196
+ Value -200
197
+ Interpolation constant
198
+ RightAutomaticSlope no
199
+ LeftAutomaticSlope no
200
+ BreakSlope yes
201
+ End
202
+ Key 23
203
+ Frame 24
204
+ Value -200
205
+ Interpolation constant
206
+ RightAutomaticSlope no
207
+ LeftAutomaticSlope no
208
+ BreakSlope yes
209
+ End
210
+ Key 24
211
+ Frame 25
212
+ Value -200
213
+ Interpolation constant
214
+ RightAutomaticSlope no
215
+ LeftAutomaticSlope no
216
+ BreakSlope yes
217
+ End
218
+ Key 25
219
+ Frame 26
220
+ Value -200
221
+ Interpolation constant
222
+ RightAutomaticSlope no
223
+ LeftAutomaticSlope no
224
+ BreakSlope yes
225
+ End
226
+ Key 26
227
+ Frame 27
228
+ Value -200
229
+ Interpolation constant
230
+ RightAutomaticSlope no
231
+ LeftAutomaticSlope no
232
+ BreakSlope yes
233
+ End
234
+ Key 27
235
+ Frame 28
236
+ Value -200
237
+ Interpolation constant
238
+ RightAutomaticSlope no
239
+ LeftAutomaticSlope no
240
+ BreakSlope yes
241
+ End
242
+ Key 28
243
+ Frame 29
244
+ Value -200
245
+ Interpolation constant
246
+ RightAutomaticSlope no
247
+ LeftAutomaticSlope no
248
+ BreakSlope yes
249
+ End
250
+ Key 29
251
+ Frame 30
252
+ Value -200
253
+ Interpolation constant
254
+ RightAutomaticSlope no
255
+ LeftAutomaticSlope no
256
+ BreakSlope yes
257
+ End
258
+ Key 30
259
+ Frame 31
260
+ Value -200
261
+ Interpolation constant
262
+ RightAutomaticSlope no
263
+ LeftAutomaticSlope no
264
+ BreakSlope yes
265
+ End
266
+ Key 31
267
+ Frame 32
268
+ Value -200
269
+ Interpolation constant
270
+ RightAutomaticSlope no
271
+ LeftAutomaticSlope no
272
+ BreakSlope yes
273
+ End
274
+ Key 32
275
+ Frame 33
276
+ Value -200
277
+ Interpolation constant
278
+ RightAutomaticSlope no
279
+ LeftAutomaticSlope no
280
+ BreakSlope yes
281
+ End
282
+ Key 33
283
+ Frame 34
284
+ Value -200
285
+ Interpolation constant
286
+ RightAutomaticSlope no
287
+ LeftAutomaticSlope no
288
+ BreakSlope yes
289
+ End
290
+ Key 34
291
+ Frame 35
292
+ Value -200
293
+ Interpolation constant
294
+ RightAutomaticSlope no
295
+ LeftAutomaticSlope no
296
+ BreakSlope yes
297
+ End
298
+ Key 35
299
+ Frame 36
300
+ Value -200
301
+ Interpolation constant
302
+ RightAutomaticSlope no
303
+ LeftAutomaticSlope no
304
+ BreakSlope yes
305
+ End
306
+ Key 36
307
+ Frame 37
308
+ Value -200
309
+ Interpolation constant
310
+ RightAutomaticSlope no
311
+ LeftAutomaticSlope no
312
+ BreakSlope yes
313
+ End
314
+ Key 37
315
+ Frame 38
316
+ Value -200
317
+ Interpolation constant
318
+ RightAutomaticSlope no
319
+ LeftAutomaticSlope no
320
+ BreakSlope yes
321
+ End
322
+ Key 38
323
+ Frame 39
324
+ Value -200
325
+ Interpolation constant
326
+ RightAutomaticSlope no
327
+ LeftAutomaticSlope no
328
+ BreakSlope yes
329
+ End
330
+ Key 39
331
+ Frame 40
332
+ Value -200
333
+ Interpolation constant
334
+ RightAutomaticSlope no
335
+ LeftAutomaticSlope no
336
+ BreakSlope yes
337
+ End
338
+ Key 40
339
+ Frame 41
340
+ Value -200
341
+ Interpolation constant
342
+ RightAutomaticSlope no
343
+ LeftAutomaticSlope no
344
+ BreakSlope yes
345
+ End
346
+ Key 41
347
+ Frame 42
348
+ Value -200
349
+ Interpolation constant
350
+ RightAutomaticSlope no
351
+ LeftAutomaticSlope no
352
+ BreakSlope yes
353
+ End
354
+ Key 42
355
+ Frame 43
356
+ Value -200
357
+ Interpolation constant
358
+ RightAutomaticSlope no
359
+ LeftAutomaticSlope no
360
+ BreakSlope yes
361
+ End
362
+ Key 43
363
+ Frame 44
364
+ Value -200
365
+ Interpolation constant
366
+ RightAutomaticSlope no
367
+ LeftAutomaticSlope no
368
+ BreakSlope yes
369
+ End
370
+ Key 44
371
+ Frame 45
372
+ Value -200
373
+ Interpolation constant
374
+ RightAutomaticSlope no
375
+ LeftAutomaticSlope no
376
+ BreakSlope yes
377
+ End
378
+ Key 45
379
+ Frame 46
380
+ Value -200
381
+ Interpolation constant
382
+ RightAutomaticSlope no
383
+ LeftAutomaticSlope no
384
+ BreakSlope yes
385
+ End
386
+ Key 46
387
+ Frame 47
388
+ Value -200
389
+ Interpolation constant
390
+ RightAutomaticSlope no
391
+ LeftAutomaticSlope no
392
+ BreakSlope yes
393
+ End
394
+ Key 47
395
+ Frame 48
396
+ Value -200
397
+ Interpolation constant
398
+ RightAutomaticSlope no
399
+ LeftAutomaticSlope no
400
+ BreakSlope yes
401
+ End
402
+ Key 48
403
+ Frame 49
404
+ Value -200
405
+ Interpolation constant
406
+ RightAutomaticSlope no
407
+ LeftAutomaticSlope no
408
+ BreakSlope yes
409
+ End
410
+ Key 49
411
+ Frame 50
412
+ Value -200
413
+ Interpolation constant
414
+ RightAutomaticSlope no
415
+ LeftAutomaticSlope no
416
+ BreakSlope yes
417
+ End
418
+ Key 50
419
+ Frame 51
420
+ Value -200
421
+ Interpolation constant
422
+ RightAutomaticSlope no
423
+ LeftAutomaticSlope no
424
+ BreakSlope yes
425
+ End
426
+ Key 51
427
+ Frame 52
428
+ Value -200
429
+ Interpolation constant
430
+ RightAutomaticSlope no
431
+ LeftAutomaticSlope no
432
+ BreakSlope yes
433
+ End
434
+ Key 52
435
+ Frame 53
436
+ Value -200
437
+ Interpolation constant
438
+ RightAutomaticSlope no
439
+ LeftAutomaticSlope no
440
+ BreakSlope yes
441
+ End
442
+ Key 53
443
+ Frame 54
444
+ Value -200
445
+ Interpolation constant
446
+ RightAutomaticSlope no
447
+ LeftAutomaticSlope no
448
+ BreakSlope yes
449
+ End
450
+ Key 54
451
+ Frame 55
452
+ Value -200
453
+ Interpolation constant
454
+ RightAutomaticSlope no
455
+ LeftAutomaticSlope no
456
+ BreakSlope yes
457
+ End
458
+ Key 55
459
+ Frame 56
460
+ Value -200
461
+ Interpolation constant
462
+ RightAutomaticSlope no
463
+ LeftAutomaticSlope no
464
+ BreakSlope yes
465
+ End
466
+ Key 56
467
+ Frame 57
468
+ Value -200
469
+ Interpolation constant
470
+ RightAutomaticSlope no
471
+ LeftAutomaticSlope no
472
+ BreakSlope yes
473
+ End
474
+ Key 57
475
+ Frame 58
476
+ Value -200
477
+ Interpolation constant
478
+ RightAutomaticSlope no
479
+ LeftAutomaticSlope no
480
+ BreakSlope yes
481
+ End
482
+ Key 58
483
+ Frame 59
484
+ Value -200
485
+ Interpolation constant
486
+ RightAutomaticSlope no
487
+ LeftAutomaticSlope no
488
+ BreakSlope yes
489
+ End
490
+ Key 59
491
+ Frame 60
492
+ Value -200
493
+ Interpolation constant
494
+ RightAutomaticSlope no
495
+ LeftAutomaticSlope no
496
+ BreakSlope yes
497
+ End
498
+ Key 60
499
+ Frame 61
500
+ Value -200
501
+ Interpolation constant
502
+ RightAutomaticSlope no
503
+ LeftAutomaticSlope no
504
+ BreakSlope yes
505
+ End
506
+ Key 61
507
+ Frame 62
508
+ Value -200
509
+ Interpolation constant
510
+ RightAutomaticSlope no
511
+ LeftAutomaticSlope no
512
+ BreakSlope yes
513
+ End
514
+ Key 62
515
+ Frame 63
516
+ Value -200
517
+ Interpolation constant
518
+ RightAutomaticSlope no
519
+ LeftAutomaticSlope no
520
+ BreakSlope yes
521
+ End
522
+ Key 63
523
+ Frame 64
524
+ Value -200
525
+ Interpolation constant
526
+ RightAutomaticSlope no
527
+ LeftAutomaticSlope no
528
+ BreakSlope yes
529
+ End
530
+ Key 64
531
+ Frame 65
532
+ Value -200
533
+ Interpolation constant
534
+ RightAutomaticSlope no
535
+ LeftAutomaticSlope no
536
+ BreakSlope yes
537
+ End
538
+ Key 65
539
+ Frame 66
540
+ Value -200
541
+ Interpolation constant
542
+ RightAutomaticSlope no
543
+ LeftAutomaticSlope no
544
+ BreakSlope yes
545
+ End
546
+ Key 66
547
+ Frame 67
548
+ Value -200
549
+ Interpolation constant
550
+ RightAutomaticSlope no
551
+ LeftAutomaticSlope no
552
+ BreakSlope yes
553
+ End
554
+ Key 67
555
+ Frame 68
556
+ Value -200
557
+ Interpolation constant
558
+ RightAutomaticSlope no
559
+ LeftAutomaticSlope no
560
+ BreakSlope yes
561
+ End
562
+ Key 68
563
+ Frame 69
564
+ Value -200
565
+ Interpolation constant
566
+ RightAutomaticSlope no
567
+ LeftAutomaticSlope no
568
+ BreakSlope yes
569
+ End
570
+ Key 69
571
+ Frame 70
572
+ Value -200
573
+ Interpolation constant
574
+ RightAutomaticSlope no
575
+ LeftAutomaticSlope no
576
+ BreakSlope yes
577
+ End
578
+ Key 70
579
+ Frame 71
580
+ Value -200
581
+ Interpolation constant
582
+ RightAutomaticSlope no
583
+ LeftAutomaticSlope no
584
+ BreakSlope yes
585
+ End
586
+ Key 71
587
+ Frame 72
588
+ Value -200
589
+ Interpolation constant
590
+ RightAutomaticSlope no
591
+ LeftAutomaticSlope no
592
+ BreakSlope yes
593
+ End
594
+ Key 72
595
+ Frame 73
596
+ Value -200
597
+ Interpolation constant
598
+ RightAutomaticSlope no
599
+ LeftAutomaticSlope no
600
+ BreakSlope yes
601
+ End
602
+ Key 73
603
+ Frame 74
604
+ Value -200
605
+ Interpolation constant
606
+ RightAutomaticSlope no
607
+ LeftAutomaticSlope no
608
+ BreakSlope yes
609
+ End
610
+ Key 74
611
+ Frame 75
612
+ Value -200
613
+ Interpolation constant
614
+ RightAutomaticSlope no
615
+ LeftAutomaticSlope no
616
+ BreakSlope yes
617
+ End
618
+ Key 75
619
+ Frame 76
620
+ Value -200
621
+ Interpolation constant
622
+ RightAutomaticSlope no
623
+ LeftAutomaticSlope no
624
+ BreakSlope yes
625
+ End
626
+ Key 76
627
+ Frame 77
628
+ Value -200
629
+ Interpolation constant
630
+ RightAutomaticSlope no
631
+ LeftAutomaticSlope no
632
+ BreakSlope yes
633
+ End
634
+ Key 77
635
+ Frame 78
636
+ Value -200
637
+ Interpolation constant
638
+ RightAutomaticSlope no
639
+ LeftAutomaticSlope no
640
+ BreakSlope yes
641
+ End
642
+ Key 78
643
+ Frame 79
644
+ Value -200
645
+ Interpolation constant
646
+ RightAutomaticSlope no
647
+ LeftAutomaticSlope no
648
+ BreakSlope yes
649
+ End
650
+ Key 79
651
+ Frame 80
652
+ Value -200
653
+ Interpolation constant
654
+ RightAutomaticSlope no
655
+ LeftAutomaticSlope no
656
+ BreakSlope yes
657
+ End
658
+ Key 80
659
+ Frame 81
660
+ Value -200
661
+ Interpolation constant
662
+ RightAutomaticSlope no
663
+ LeftAutomaticSlope no
664
+ BreakSlope yes
665
+ End
666
+ Key 81
667
+ Frame 82
668
+ Value -200
669
+ Interpolation constant
670
+ RightAutomaticSlope no
671
+ LeftAutomaticSlope no
672
+ BreakSlope yes
673
+ End
674
+ Key 82
675
+ Frame 83
676
+ Value -200
677
+ Interpolation constant
678
+ RightAutomaticSlope no
679
+ LeftAutomaticSlope no
680
+ BreakSlope yes
681
+ End
682
+ Key 83
683
+ Frame 84
684
+ Value -200
685
+ Interpolation constant
686
+ RightAutomaticSlope no
687
+ LeftAutomaticSlope no
688
+ BreakSlope yes
689
+ End
690
+ Key 84
691
+ Frame 85
692
+ Value -200
693
+ Interpolation constant
694
+ RightAutomaticSlope no
695
+ LeftAutomaticSlope no
696
+ BreakSlope yes
697
+ End
698
+ Key 85
699
+ Frame 86
700
+ Value -200
701
+ Interpolation constant
702
+ RightAutomaticSlope no
703
+ LeftAutomaticSlope no
704
+ BreakSlope yes
705
+ End
706
+ Key 86
707
+ Frame 87
708
+ Value -200
709
+ Interpolation constant
710
+ RightAutomaticSlope no
711
+ LeftAutomaticSlope no
712
+ BreakSlope yes
713
+ End
714
+ Key 87
715
+ Frame 88
716
+ Value -200
717
+ Interpolation constant
718
+ RightAutomaticSlope no
719
+ LeftAutomaticSlope no
720
+ BreakSlope yes
721
+ End
722
+ Key 88
723
+ Frame 89
724
+ Value -200
725
+ Interpolation constant
726
+ RightAutomaticSlope no
727
+ LeftAutomaticSlope no
728
+ BreakSlope yes
729
+ End
730
+ Key 89
731
+ Frame 90
732
+ Value -200
733
+ Interpolation constant
734
+ RightAutomaticSlope no
735
+ LeftAutomaticSlope no
736
+ BreakSlope yes
737
+ End
738
+ Key 90
739
+ Frame 91
740
+ Value -200
741
+ Interpolation constant
742
+ RightAutomaticSlope no
743
+ LeftAutomaticSlope no
744
+ BreakSlope yes
745
+ End
746
+ Key 91
747
+ Frame 92
748
+ Value -200
749
+ Interpolation constant
750
+ RightAutomaticSlope no
751
+ LeftAutomaticSlope no
752
+ BreakSlope yes
753
+ End
754
+ Key 92
755
+ Frame 93
756
+ Value -200
757
+ Interpolation constant
758
+ RightAutomaticSlope no
759
+ LeftAutomaticSlope no
760
+ BreakSlope yes
761
+ End
762
+ Key 93
763
+ Frame 94
764
+ Value -200
765
+ Interpolation constant
766
+ RightAutomaticSlope no
767
+ LeftAutomaticSlope no
768
+ BreakSlope yes
769
+ End
770
+ Key 94
771
+ Frame 95
772
+ Value -200
773
+ Interpolation constant
774
+ RightAutomaticSlope no
775
+ LeftAutomaticSlope no
776
+ BreakSlope yes
777
+ End
778
+ Key 95
779
+ Frame 96
780
+ Value -200
781
+ Interpolation constant
782
+ RightAutomaticSlope no
783
+ LeftAutomaticSlope no
784
+ BreakSlope yes
785
+ End
786
+ Key 96
787
+ Frame 97
788
+ Value -200
789
+ Interpolation constant
790
+ RightAutomaticSlope no
791
+ LeftAutomaticSlope no
792
+ BreakSlope yes
793
+ End
794
+ Key 97
795
+ Frame 98
796
+ Value -200
797
+ Interpolation constant
798
+ RightAutomaticSlope no
799
+ LeftAutomaticSlope no
800
+ BreakSlope yes
801
+ End
802
+ Key 98
803
+ Frame 99
804
+ Value -200
805
+ Interpolation constant
806
+ RightAutomaticSlope no
807
+ LeftAutomaticSlope no
808
+ BreakSlope yes
809
+ End
810
+ Key 99
811
+ Frame 100
812
+ Value -200
813
+ Interpolation constant
814
+ RightAutomaticSlope no
815
+ LeftAutomaticSlope no
816
+ BreakSlope yes
817
+ End
818
+ Key 100
819
+ Frame 101
820
+ Value -200
821
+ Interpolation constant
822
+ RightAutomaticSlope no
823
+ LeftAutomaticSlope no
824
+ BreakSlope yes
825
+ End
826
+ Key 101
827
+ Frame 102
828
+ Value -200
829
+ Interpolation constant
830
+ RightAutomaticSlope no
831
+ LeftAutomaticSlope no
832
+ BreakSlope yes
833
+ End
834
+ Key 102
835
+ Frame 103
836
+ Value -200
837
+ Interpolation constant
838
+ RightAutomaticSlope no
839
+ LeftAutomaticSlope no
840
+ BreakSlope yes
841
+ End
842
+ Key 103
843
+ Frame 104
844
+ Value -200
845
+ Interpolation constant
846
+ RightAutomaticSlope no
847
+ LeftAutomaticSlope no
848
+ BreakSlope yes
849
+ End
850
+ Key 104
851
+ Frame 105
852
+ Value -200
853
+ Interpolation constant
854
+ RightAutomaticSlope no
855
+ LeftAutomaticSlope no
856
+ BreakSlope yes
857
+ End
858
+ Key 105
859
+ Frame 106
860
+ Value -200
861
+ Interpolation constant
862
+ RightAutomaticSlope no
863
+ LeftAutomaticSlope no
864
+ BreakSlope yes
865
+ End
866
+ Key 106
867
+ Frame 107
868
+ Value -200
869
+ Interpolation constant
870
+ RightAutomaticSlope no
871
+ LeftAutomaticSlope no
872
+ BreakSlope yes
873
+ End
874
+ Key 107
875
+ Frame 108
876
+ Value -200
877
+ Interpolation constant
878
+ RightAutomaticSlope no
879
+ LeftAutomaticSlope no
880
+ BreakSlope yes
881
+ End
882
+ Key 108
883
+ Frame 109
884
+ Value -200
885
+ Interpolation constant
886
+ RightAutomaticSlope no
887
+ LeftAutomaticSlope no
888
+ BreakSlope yes
889
+ End
890
+ Key 109
891
+ Frame 110
892
+ Value -200
893
+ Interpolation constant
894
+ RightAutomaticSlope no
895
+ LeftAutomaticSlope no
896
+ BreakSlope yes
897
+ End
898
+ Key 110
899
+ Frame 111
900
+ Value -200
901
+ Interpolation constant
902
+ RightAutomaticSlope no
903
+ LeftAutomaticSlope no
904
+ BreakSlope yes
905
+ End
906
+ Key 111
907
+ Frame 112
908
+ Value -200
909
+ Interpolation constant
910
+ RightAutomaticSlope no
911
+ LeftAutomaticSlope no
912
+ BreakSlope yes
913
+ End
914
+ Key 112
915
+ Frame 113
916
+ Value -200
917
+ Interpolation constant
918
+ RightAutomaticSlope no
919
+ LeftAutomaticSlope no
920
+ BreakSlope yes
921
+ End
922
+ Key 113
923
+ Frame 114
924
+ Value -200
925
+ Interpolation constant
926
+ RightAutomaticSlope no
927
+ LeftAutomaticSlope no
928
+ BreakSlope yes
929
+ End
930
+ Key 114
931
+ Frame 115
932
+ Value -200
933
+ Interpolation constant
934
+ RightAutomaticSlope no
935
+ LeftAutomaticSlope no
936
+ BreakSlope yes
937
+ End
938
+ Key 115
939
+ Frame 116
940
+ Value -200
941
+ Interpolation constant
942
+ RightAutomaticSlope no
943
+ LeftAutomaticSlope no
944
+ BreakSlope yes
945
+ End
946
+ Key 116
947
+ Frame 117
948
+ Value -200
949
+ Interpolation constant
950
+ RightAutomaticSlope no
951
+ LeftAutomaticSlope no
952
+ BreakSlope yes
953
+ End
954
+ Key 117
955
+ Frame 118
956
+ Value -200
957
+ Interpolation constant
958
+ RightAutomaticSlope no
959
+ LeftAutomaticSlope no
960
+ BreakSlope yes
961
+ End
962
+ Key 118
963
+ Frame 119
964
+ Value -200
965
+ Interpolation constant
966
+ RightAutomaticSlope no
967
+ LeftAutomaticSlope no
968
+ BreakSlope yes
969
+ End
970
+ Key 119
971
+ Frame 120
972
+ Value -200
973
+ Interpolation constant
974
+ RightAutomaticSlope no
975
+ LeftAutomaticSlope no
976
+ BreakSlope yes
977
+ End
978
+ Key 120
979
+ Frame 121
980
+ Value -200
981
+ Interpolation constant
982
+ RightAutomaticSlope no
983
+ LeftAutomaticSlope no
984
+ BreakSlope yes
985
+ End
986
+ Key 121
987
+ Frame 122
988
+ Value -200
989
+ Interpolation constant
990
+ RightAutomaticSlope no
991
+ LeftAutomaticSlope no
992
+ BreakSlope yes
993
+ End
994
+ Key 122
995
+ Frame 123
996
+ Value -200
997
+ Interpolation constant
998
+ RightAutomaticSlope no
999
+ LeftAutomaticSlope no
1000
+ BreakSlope yes
1001
+ End
1002
+ Key 123
1003
+ Frame 124
1004
+ Value -200
1005
+ Interpolation constant
1006
+ RightAutomaticSlope no
1007
+ LeftAutomaticSlope no
1008
+ BreakSlope yes
1009
+ End
1010
+ Key 124
1011
+ Frame 125
1012
+ Value -200
1013
+ Interpolation constant
1014
+ RightAutomaticSlope no
1015
+ LeftAutomaticSlope no
1016
+ BreakSlope yes
1017
+ End
1018
+ Key 125
1019
+ Frame 126
1020
+ Value -200
1021
+ Interpolation constant
1022
+ RightAutomaticSlope no
1023
+ LeftAutomaticSlope no
1024
+ BreakSlope yes
1025
+ End
1026
+ Key 126
1027
+ Frame 127
1028
+ Value -200
1029
+ Interpolation constant
1030
+ RightAutomaticSlope no
1031
+ LeftAutomaticSlope no
1032
+ BreakSlope yes
1033
+ End
1034
+ Key 127
1035
+ Frame 128
1036
+ Value -200
1037
+ Interpolation constant
1038
+ RightAutomaticSlope no
1039
+ LeftAutomaticSlope no
1040
+ BreakSlope yes
1041
+ End
1042
+ Key 128
1043
+ Frame 129
1044
+ Value -200
1045
+ Interpolation constant
1046
+ RightAutomaticSlope no
1047
+ LeftAutomaticSlope no
1048
+ BreakSlope yes
1049
+ End
1050
+ Key 129
1051
+ Frame 130
1052
+ Value -200
1053
+ Interpolation constant
1054
+ RightAutomaticSlope no
1055
+ LeftAutomaticSlope no
1056
+ BreakSlope yes
1057
+ End
1058
+ Key 130
1059
+ Frame 131
1060
+ Value -200
1061
+ Interpolation constant
1062
+ RightAutomaticSlope no
1063
+ LeftAutomaticSlope no
1064
+ BreakSlope yes
1065
+ End
1066
+ Key 131
1067
+ Frame 132
1068
+ Value -200
1069
+ Interpolation constant
1070
+ RightAutomaticSlope no
1071
+ LeftAutomaticSlope no
1072
+ BreakSlope yes
1073
+ End
1074
+ Key 132
1075
+ Frame 133
1076
+ Value -200
1077
+ Interpolation constant
1078
+ RightAutomaticSlope no
1079
+ LeftAutomaticSlope no
1080
+ BreakSlope yes
1081
+ End
1082
+ Key 133
1083
+ Frame 134
1084
+ Value -200
1085
+ Interpolation constant
1086
+ RightAutomaticSlope no
1087
+ LeftAutomaticSlope no
1088
+ BreakSlope yes
1089
+ End
1090
+ Key 134
1091
+ Frame 135
1092
+ Value -200
1093
+ Interpolation constant
1094
+ RightAutomaticSlope no
1095
+ LeftAutomaticSlope no
1096
+ BreakSlope yes
1097
+ End
1098
+ Key 135
1099
+ Frame 136
1100
+ Value -200
1101
+ Interpolation constant
1102
+ RightAutomaticSlope no
1103
+ LeftAutomaticSlope no
1104
+ BreakSlope yes
1105
+ End
1106
+ Key 136
1107
+ Frame 137
1108
+ Value -200
1109
+ Interpolation constant
1110
+ RightAutomaticSlope no
1111
+ LeftAutomaticSlope no
1112
+ BreakSlope yes
1113
+ End
1114
+ Key 137
1115
+ Frame 138
1116
+ Value -200
1117
+ Interpolation constant
1118
+ RightAutomaticSlope no
1119
+ LeftAutomaticSlope no
1120
+ BreakSlope yes
1121
+ End
1122
+ Key 138
1123
+ Frame 139
1124
+ Value -200
1125
+ Interpolation constant
1126
+ RightAutomaticSlope no
1127
+ LeftAutomaticSlope no
1128
+ BreakSlope yes
1129
+ End
1130
+ Key 139
1131
+ Frame 140
1132
+ Value -200
1133
+ Interpolation constant
1134
+ RightAutomaticSlope no
1135
+ LeftAutomaticSlope no
1136
+ BreakSlope yes
1137
+ End
1138
+ Key 140
1139
+ Frame 141
1140
+ Value -200
1141
+ Interpolation constant
1142
+ RightAutomaticSlope no
1143
+ LeftAutomaticSlope no
1144
+ BreakSlope yes
1145
+ End
1146
+ Key 141
1147
+ Frame 142
1148
+ Value -200
1149
+ Interpolation constant
1150
+ RightAutomaticSlope no
1151
+ LeftAutomaticSlope no
1152
+ BreakSlope yes
1153
+ End
1154
+ Key 142
1155
+ Frame 143
1156
+ Value -200
1157
+ Interpolation constant
1158
+ RightAutomaticSlope no
1159
+ LeftAutomaticSlope no
1160
+ BreakSlope yes
1161
+ End
1162
+ Key 143
1163
+ Frame 144
1164
+ Value -200
1165
+ Interpolation constant
1166
+ RightAutomaticSlope no
1167
+ LeftAutomaticSlope no
1168
+ BreakSlope yes
1169
+ End
1170
+ Key 144
1171
+ Frame 145
1172
+ Value -200
1173
+ Interpolation constant
1174
+ RightAutomaticSlope no
1175
+ LeftAutomaticSlope no
1176
+ BreakSlope yes
1177
+ End
1178
+ Key 145
1179
+ Frame 146
1180
+ Value -200
1181
+ Interpolation constant
1182
+ RightAutomaticSlope no
1183
+ LeftAutomaticSlope no
1184
+ BreakSlope yes
1185
+ End
1186
+ Key 146
1187
+ Frame 147
1188
+ Value -200
1189
+ Interpolation constant
1190
+ RightAutomaticSlope no
1191
+ LeftAutomaticSlope no
1192
+ BreakSlope yes
1193
+ End
1194
+ Key 147
1195
+ Frame 148
1196
+ Value -200
1197
+ Interpolation constant
1198
+ RightAutomaticSlope no
1199
+ LeftAutomaticSlope no
1200
+ BreakSlope yes
1201
+ End
1202
+ Key 148
1203
+ Frame 149
1204
+ Value -200
1205
+ Interpolation constant
1206
+ RightAutomaticSlope no
1207
+ LeftAutomaticSlope no
1208
+ BreakSlope yes
1209
+ End
1210
+ Key 149
1211
+ Frame 150
1212
+ Value -200
1213
+ Interpolation constant
1214
+ RightAutomaticSlope no
1215
+ LeftAutomaticSlope no
1216
+ BreakSlope yes
1217
+ End
1218
+ Key 150
1219
+ Frame 151
1220
+ Value -200
1221
+ Interpolation constant
1222
+ RightAutomaticSlope no
1223
+ LeftAutomaticSlope no
1224
+ BreakSlope yes
1225
+ End
1226
+ Key 151
1227
+ Frame 152
1228
+ Value -200
1229
+ Interpolation constant
1230
+ RightAutomaticSlope no
1231
+ LeftAutomaticSlope no
1232
+ BreakSlope yes
1233
+ End
1234
+ Key 152
1235
+ Frame 153
1236
+ Value -200
1237
+ Interpolation constant
1238
+ RightAutomaticSlope no
1239
+ LeftAutomaticSlope no
1240
+ BreakSlope yes
1241
+ End
1242
+ Key 153
1243
+ Frame 154
1244
+ Value -200
1245
+ Interpolation constant
1246
+ RightAutomaticSlope no
1247
+ LeftAutomaticSlope no
1248
+ BreakSlope yes
1249
+ End
1250
+ Key 154
1251
+ Frame 155
1252
+ Value -200
1253
+ Interpolation constant
1254
+ RightAutomaticSlope no
1255
+ LeftAutomaticSlope no
1256
+ BreakSlope yes
1257
+ End
1258
+ Key 155
1259
+ Frame 156
1260
+ Value -200
1261
+ Interpolation constant
1262
+ RightAutomaticSlope no
1263
+ LeftAutomaticSlope no
1264
+ BreakSlope yes
1265
+ End
1266
+ Key 156
1267
+ Frame 157
1268
+ Value -200
1269
+ Interpolation constant
1270
+ RightAutomaticSlope no
1271
+ LeftAutomaticSlope no
1272
+ BreakSlope yes
1273
+ End
1274
+ Key 157
1275
+ Frame 158
1276
+ Value -200
1277
+ Interpolation constant
1278
+ RightAutomaticSlope no
1279
+ LeftAutomaticSlope no
1280
+ BreakSlope yes
1281
+ End
1282
+ Key 158
1283
+ Frame 159
1284
+ Value -200
1285
+ Interpolation constant
1286
+ RightAutomaticSlope no
1287
+ LeftAutomaticSlope no
1288
+ BreakSlope yes
1289
+ End
1290
+ Key 159
1291
+ Frame 160
1292
+ Value -200
1293
+ Interpolation constant
1294
+ RightAutomaticSlope no
1295
+ LeftAutomaticSlope no
1296
+ BreakSlope yes
1297
+ End
1298
+ Key 160
1299
+ Frame 161
1300
+ Value -200
1301
+ Interpolation constant
1302
+ RightAutomaticSlope no
1303
+ LeftAutomaticSlope no
1304
+ BreakSlope yes
1305
+ End
1306
+ Key 161
1307
+ Frame 162
1308
+ Value -200
1309
+ Interpolation constant
1310
+ RightAutomaticSlope no
1311
+ LeftAutomaticSlope no
1312
+ BreakSlope yes
1313
+ End
1314
+ Key 162
1315
+ Frame 163
1316
+ Value -200
1317
+ Interpolation constant
1318
+ RightAutomaticSlope no
1319
+ LeftAutomaticSlope no
1320
+ BreakSlope yes
1321
+ End
1322
+ Key 163
1323
+ Frame 164
1324
+ Value -200
1325
+ Interpolation constant
1326
+ RightAutomaticSlope no
1327
+ LeftAutomaticSlope no
1328
+ BreakSlope yes
1329
+ End
1330
+ Key 164
1331
+ Frame 165
1332
+ Value -200
1333
+ Interpolation constant
1334
+ RightAutomaticSlope no
1335
+ LeftAutomaticSlope no
1336
+ BreakSlope yes
1337
+ End
1338
+ Key 165
1339
+ Frame 166
1340
+ Value -200
1341
+ Interpolation constant
1342
+ RightAutomaticSlope no
1343
+ LeftAutomaticSlope no
1344
+ BreakSlope yes
1345
+ End
1346
+ Key 166
1347
+ Frame 167
1348
+ Value -200
1349
+ Interpolation constant
1350
+ RightAutomaticSlope no
1351
+ LeftAutomaticSlope no
1352
+ BreakSlope yes
1353
+ End
1354
+ Key 167
1355
+ Frame 168
1356
+ Value -200
1357
+ Interpolation constant
1358
+ RightAutomaticSlope no
1359
+ LeftAutomaticSlope no
1360
+ BreakSlope yes
1361
+ End
1362
+ Key 168
1363
+ Frame 169
1364
+ Value -200
1365
+ Interpolation constant
1366
+ RightAutomaticSlope no
1367
+ LeftAutomaticSlope no
1368
+ BreakSlope yes
1369
+ End
1370
+ Key 169
1371
+ Frame 170
1372
+ Value -200
1373
+ Interpolation constant
1374
+ RightAutomaticSlope no
1375
+ LeftAutomaticSlope no
1376
+ BreakSlope yes
1377
+ End
1378
+ Key 170
1379
+ Frame 171
1380
+ Value -200
1381
+ Interpolation constant
1382
+ RightAutomaticSlope no
1383
+ LeftAutomaticSlope no
1384
+ BreakSlope yes
1385
+ End
1386
+ Key 171
1387
+ Frame 172
1388
+ Value -200
1389
+ Interpolation constant
1390
+ RightAutomaticSlope no
1391
+ LeftAutomaticSlope no
1392
+ BreakSlope yes
1393
+ End
1394
+ Key 172
1395
+ Frame 173
1396
+ Value -200
1397
+ Interpolation constant
1398
+ RightAutomaticSlope no
1399
+ LeftAutomaticSlope no
1400
+ BreakSlope yes
1401
+ End
1402
+ Key 173
1403
+ Frame 174
1404
+ Value -200
1405
+ Interpolation constant
1406
+ RightAutomaticSlope no
1407
+ LeftAutomaticSlope no
1408
+ BreakSlope yes
1409
+ End
1410
+ Key 174
1411
+ Frame 175
1412
+ Value -200
1413
+ Interpolation constant
1414
+ RightAutomaticSlope no
1415
+ LeftAutomaticSlope no
1416
+ BreakSlope yes
1417
+ End
1418
+ Key 175
1419
+ Frame 176
1420
+ Value -200
1421
+ Interpolation constant
1422
+ RightAutomaticSlope no
1423
+ LeftAutomaticSlope no
1424
+ BreakSlope yes
1425
+ End
1426
+ Key 176
1427
+ Frame 177
1428
+ Value -200
1429
+ Interpolation constant
1430
+ RightAutomaticSlope no
1431
+ LeftAutomaticSlope no
1432
+ BreakSlope yes
1433
+ End
1434
+ Key 177
1435
+ Frame 178
1436
+ Value -200
1437
+ Interpolation constant
1438
+ RightAutomaticSlope no
1439
+ LeftAutomaticSlope no
1440
+ BreakSlope yes
1441
+ End
1442
+ Key 178
1443
+ Frame 179
1444
+ Value -200
1445
+ Interpolation constant
1446
+ RightAutomaticSlope no
1447
+ LeftAutomaticSlope no
1448
+ BreakSlope yes
1449
+ End
1450
+ Key 179
1451
+ Frame 180
1452
+ Value -200
1453
+ Interpolation constant
1454
+ RightAutomaticSlope no
1455
+ LeftAutomaticSlope no
1456
+ BreakSlope yes
1457
+ End
1458
+ Key 180
1459
+ Frame 181
1460
+ Value -200
1461
+ Interpolation constant
1462
+ RightAutomaticSlope no
1463
+ LeftAutomaticSlope no
1464
+ BreakSlope yes
1465
+ End
1466
+ Key 181
1467
+ Frame 182
1468
+ Value -200
1469
+ Interpolation constant
1470
+ RightAutomaticSlope no
1471
+ LeftAutomaticSlope no
1472
+ BreakSlope yes
1473
+ End
1474
+ Key 182
1475
+ Frame 183
1476
+ Value -200
1477
+ Interpolation constant
1478
+ RightAutomaticSlope no
1479
+ LeftAutomaticSlope no
1480
+ BreakSlope yes
1481
+ End
1482
+ Key 183
1483
+ Frame 184
1484
+ Value -200
1485
+ Interpolation constant
1486
+ RightAutomaticSlope no
1487
+ LeftAutomaticSlope no
1488
+ BreakSlope yes
1489
+ End
1490
+ Key 184
1491
+ Frame 185
1492
+ Value -200
1493
+ Interpolation constant
1494
+ RightAutomaticSlope no
1495
+ LeftAutomaticSlope no
1496
+ BreakSlope yes
1497
+ End
1498
+ Key 185
1499
+ Frame 186
1500
+ Value -200
1501
+ Interpolation constant
1502
+ RightAutomaticSlope no
1503
+ LeftAutomaticSlope no
1504
+ BreakSlope yes
1505
+ End
1506
+ Key 186
1507
+ Frame 187
1508
+ Value -200
1509
+ Interpolation constant
1510
+ RightAutomaticSlope no
1511
+ LeftAutomaticSlope no
1512
+ BreakSlope yes
1513
+ End
1514
+ Key 187
1515
+ Frame 188
1516
+ Value -200
1517
+ Interpolation constant
1518
+ RightAutomaticSlope no
1519
+ LeftAutomaticSlope no
1520
+ BreakSlope yes
1521
+ End
1522
+ Key 188
1523
+ Frame 189
1524
+ Value -200
1525
+ Interpolation constant
1526
+ RightAutomaticSlope no
1527
+ LeftAutomaticSlope no
1528
+ BreakSlope yes
1529
+ End
1530
+ Key 189
1531
+ Frame 190
1532
+ Value -200
1533
+ Interpolation constant
1534
+ RightAutomaticSlope no
1535
+ LeftAutomaticSlope no
1536
+ BreakSlope yes
1537
+ End
1538
+ Key 190
1539
+ Frame 191
1540
+ Value -200
1541
+ Interpolation constant
1542
+ RightAutomaticSlope no
1543
+ LeftAutomaticSlope no
1544
+ BreakSlope yes
1545
+ End
1546
+ Key 191
1547
+ Frame 192
1548
+ Value -200
1549
+ Interpolation constant
1550
+ RightAutomaticSlope no
1551
+ LeftAutomaticSlope no
1552
+ BreakSlope yes
1553
+ End
1554
+ Key 192
1555
+ Frame 193
1556
+ Value -200
1557
+ Interpolation constant
1558
+ RightAutomaticSlope no
1559
+ LeftAutomaticSlope no
1560
+ BreakSlope yes
1561
+ End
1562
+ Key 193
1563
+ Frame 194
1564
+ Value -200
1565
+ Interpolation constant
1566
+ RightAutomaticSlope no
1567
+ LeftAutomaticSlope no
1568
+ BreakSlope yes
1569
+ End
1570
+ Key 194
1571
+ Frame 195
1572
+ Value -200
1573
+ Interpolation constant
1574
+ RightAutomaticSlope no
1575
+ LeftAutomaticSlope no
1576
+ BreakSlope yes
1577
+ End
1578
+ Key 195
1579
+ Frame 196
1580
+ Value -200
1581
+ Interpolation constant
1582
+ RightAutomaticSlope no
1583
+ LeftAutomaticSlope no
1584
+ BreakSlope yes
1585
+ End
1586
+ Key 196
1587
+ Frame 197
1588
+ Value -200
1589
+ Interpolation constant
1590
+ RightAutomaticSlope no
1591
+ LeftAutomaticSlope no
1592
+ BreakSlope yes
1593
+ End
1594
+ Key 197
1595
+ Frame 198
1596
+ Value -200
1597
+ Interpolation constant
1598
+ RightAutomaticSlope no
1599
+ LeftAutomaticSlope no
1600
+ BreakSlope yes
1601
+ End
1602
+ Key 198
1603
+ Frame 199
1604
+ Value -200
1605
+ Interpolation constant
1606
+ RightAutomaticSlope no
1607
+ LeftAutomaticSlope no
1608
+ BreakSlope yes
1609
+ End
1610
+ Key 199
1611
+ Frame 200
1612
+ Value -200
1613
+ Interpolation constant
1614
+ RightAutomaticSlope no
1615
+ LeftAutomaticSlope no
1616
+ BreakSlope yes
1617
+ End
1618
+ Key 200
1619
+ Frame 201
1620
+ Value -200
1621
+ Interpolation constant
1622
+ RightAutomaticSlope no
1623
+ LeftAutomaticSlope no
1624
+ BreakSlope yes
1625
+ End
1626
+ Key 201
1627
+ Frame 202
1628
+ Value -200
1629
+ Interpolation constant
1630
+ RightAutomaticSlope no
1631
+ LeftAutomaticSlope no
1632
+ BreakSlope yes
1633
+ End
1634
+ Key 202
1635
+ Frame 203
1636
+ Value -200
1637
+ Interpolation constant
1638
+ RightAutomaticSlope no
1639
+ LeftAutomaticSlope no
1640
+ BreakSlope yes
1641
+ End
1642
+ Key 203
1643
+ Frame 204
1644
+ Value -200
1645
+ Interpolation constant
1646
+ RightAutomaticSlope no
1647
+ LeftAutomaticSlope no
1648
+ BreakSlope yes
1649
+ End
1650
+ Key 204
1651
+ Frame 205
1652
+ Value -200
1653
+ Interpolation constant
1654
+ RightAutomaticSlope no
1655
+ LeftAutomaticSlope no
1656
+ BreakSlope yes
1657
+ End
1658
+ Key 205
1659
+ Frame 206
1660
+ Value -200
1661
+ Interpolation constant
1662
+ RightAutomaticSlope no
1663
+ LeftAutomaticSlope no
1664
+ BreakSlope yes
1665
+ End
1666
+ Key 206
1667
+ Frame 207
1668
+ Value -200
1669
+ Interpolation constant
1670
+ RightAutomaticSlope no
1671
+ LeftAutomaticSlope no
1672
+ BreakSlope yes
1673
+ End
1674
+ Key 207
1675
+ Frame 208
1676
+ Value -200
1677
+ Interpolation constant
1678
+ RightAutomaticSlope no
1679
+ LeftAutomaticSlope no
1680
+ BreakSlope yes
1681
+ End
1682
+ Key 208
1683
+ Frame 209
1684
+ Value -200
1685
+ Interpolation constant
1686
+ RightAutomaticSlope no
1687
+ LeftAutomaticSlope no
1688
+ BreakSlope yes
1689
+ End
1690
+ Key 209
1691
+ Frame 210
1692
+ Value -200
1693
+ Interpolation constant
1694
+ RightAutomaticSlope no
1695
+ LeftAutomaticSlope no
1696
+ BreakSlope yes
1697
+ End
1698
+ Key 210
1699
+ Frame 211
1700
+ Value -200
1701
+ Interpolation constant
1702
+ RightAutomaticSlope no
1703
+ LeftAutomaticSlope no
1704
+ BreakSlope yes
1705
+ End
1706
+ Key 211
1707
+ Frame 212
1708
+ Value -200
1709
+ Interpolation constant
1710
+ RightAutomaticSlope no
1711
+ LeftAutomaticSlope no
1712
+ BreakSlope yes
1713
+ End
1714
+ Key 212
1715
+ Frame 213
1716
+ Value -200
1717
+ Interpolation constant
1718
+ RightAutomaticSlope no
1719
+ LeftAutomaticSlope no
1720
+ BreakSlope yes
1721
+ End
1722
+ Key 213
1723
+ Frame 214
1724
+ Value -200
1725
+ Interpolation constant
1726
+ RightAutomaticSlope no
1727
+ LeftAutomaticSlope no
1728
+ BreakSlope yes
1729
+ End
1730
+ Key 214
1731
+ Frame 215
1732
+ Value -200
1733
+ Interpolation constant
1734
+ RightAutomaticSlope no
1735
+ LeftAutomaticSlope no
1736
+ BreakSlope yes
1737
+ End
1738
+ Key 215
1739
+ Frame 216
1740
+ Value -200
1741
+ Interpolation constant
1742
+ RightAutomaticSlope no
1743
+ LeftAutomaticSlope no
1744
+ BreakSlope yes
1745
+ End
1746
+ Key 216
1747
+ Frame 217
1748
+ Value -200
1749
+ Interpolation constant
1750
+ RightAutomaticSlope no
1751
+ LeftAutomaticSlope no
1752
+ BreakSlope yes
1753
+ End
1754
+ Key 217
1755
+ Frame 218
1756
+ Value -200
1757
+ Interpolation constant
1758
+ RightAutomaticSlope no
1759
+ LeftAutomaticSlope no
1760
+ BreakSlope yes
1761
+ End
1762
+ Key 218
1763
+ Frame 219
1764
+ Value -200
1765
+ Interpolation constant
1766
+ RightAutomaticSlope no
1767
+ LeftAutomaticSlope no
1768
+ BreakSlope yes
1769
+ End
1770
+ Key 219
1771
+ Frame 220
1772
+ Value -200
1773
+ Interpolation constant
1774
+ RightAutomaticSlope no
1775
+ LeftAutomaticSlope no
1776
+ BreakSlope yes
1777
+ End
1778
+ Key 220
1779
+ Frame 221
1780
+ Value -200
1781
+ Interpolation constant
1782
+ RightAutomaticSlope no
1783
+ LeftAutomaticSlope no
1784
+ BreakSlope yes
1785
+ End
1786
+ Key 221
1787
+ Frame 222
1788
+ Value -200
1789
+ Interpolation constant
1790
+ RightAutomaticSlope no
1791
+ LeftAutomaticSlope no
1792
+ BreakSlope yes
1793
+ End
1794
+ Key 222
1795
+ Frame 223
1796
+ Value -200
1797
+ Interpolation constant
1798
+ RightAutomaticSlope no
1799
+ LeftAutomaticSlope no
1800
+ BreakSlope yes
1801
+ End
1802
+ Key 223
1803
+ Frame 224
1804
+ Value -200
1805
+ Interpolation constant
1806
+ RightAutomaticSlope no
1807
+ LeftAutomaticSlope no
1808
+ BreakSlope yes
1809
+ End
1810
+ Key 224
1811
+ Frame 225
1812
+ Value -200
1813
+ Interpolation constant
1814
+ RightAutomaticSlope no
1815
+ LeftAutomaticSlope no
1816
+ BreakSlope yes
1817
+ End
1818
+ Key 225
1819
+ Frame 226
1820
+ Value -200
1821
+ Interpolation constant
1822
+ RightAutomaticSlope no
1823
+ LeftAutomaticSlope no
1824
+ BreakSlope yes
1825
+ End
1826
+ Key 226
1827
+ Frame 227
1828
+ Value -200
1829
+ Interpolation constant
1830
+ RightAutomaticSlope no
1831
+ LeftAutomaticSlope no
1832
+ BreakSlope yes
1833
+ End
1834
+ Key 227
1835
+ Frame 228
1836
+ Value -200
1837
+ Interpolation constant
1838
+ RightAutomaticSlope no
1839
+ LeftAutomaticSlope no
1840
+ BreakSlope yes
1841
+ End
1842
+ Key 228
1843
+ Frame 229
1844
+ Value -200
1845
+ Interpolation constant
1846
+ RightAutomaticSlope no
1847
+ LeftAutomaticSlope no
1848
+ BreakSlope yes
1849
+ End
1850
+ Key 229
1851
+ Frame 230
1852
+ Value 0
1853
+ Interpolation constant
1854
+ RightAutomaticSlope no
1855
+ LeftAutomaticSlope no
1856
+ BreakSlope yes
1857
+ End
1858
+ Uncollapsed
1859
+ End
1860
+ Channel Timing/Timing
1861
+ Extrapolation linear
1862
+ Value 459
1863
+ Size 230
1864
+ KeyVersion 1
1865
+ Key 0
1866
+ Frame 1
1867
+ Value 459
1868
+ Interpolation linear
1869
+ RightSlope -2
1870
+ LeftSlope -2
1871
+ End
1872
+ Key 1
1873
+ Frame 2
1874
+ Value 457
1875
+ Interpolation linear
1876
+ RightSlope -2
1877
+ LeftSlope -2
1878
+ End
1879
+ Key 2
1880
+ Frame 3
1881
+ Value 455
1882
+ Interpolation linear
1883
+ RightSlope -2
1884
+ LeftSlope -2
1885
+ End
1886
+ Key 3
1887
+ Frame 4
1888
+ Value 453
1889
+ Interpolation linear
1890
+ RightSlope -2
1891
+ LeftSlope -2
1892
+ End
1893
+ Key 4
1894
+ Frame 5
1895
+ Value 451
1896
+ Interpolation linear
1897
+ RightSlope -2
1898
+ LeftSlope -2
1899
+ End
1900
+ Key 5
1901
+ Frame 6
1902
+ Value 449
1903
+ Interpolation linear
1904
+ RightSlope -2
1905
+ LeftSlope -2
1906
+ End
1907
+ Key 6
1908
+ Frame 7
1909
+ Value 447
1910
+ Interpolation linear
1911
+ RightSlope -2
1912
+ LeftSlope -2
1913
+ End
1914
+ Key 7
1915
+ Frame 8
1916
+ Value 445
1917
+ Interpolation linear
1918
+ RightSlope -2
1919
+ LeftSlope -2
1920
+ End
1921
+ Key 8
1922
+ Frame 9
1923
+ Value 443
1924
+ Interpolation linear
1925
+ RightSlope -2
1926
+ LeftSlope -2
1927
+ End
1928
+ Key 9
1929
+ Frame 10
1930
+ Value 441
1931
+ Interpolation linear
1932
+ RightSlope -2
1933
+ LeftSlope -2
1934
+ End
1935
+ Key 10
1936
+ Frame 11
1937
+ Value 439
1938
+ Interpolation linear
1939
+ RightSlope -2
1940
+ LeftSlope -2
1941
+ End
1942
+ Key 11
1943
+ Frame 12
1944
+ Value 437
1945
+ Interpolation linear
1946
+ RightSlope -2
1947
+ LeftSlope -2
1948
+ End
1949
+ Key 12
1950
+ Frame 13
1951
+ Value 435
1952
+ Interpolation linear
1953
+ RightSlope -2
1954
+ LeftSlope -2
1955
+ End
1956
+ Key 13
1957
+ Frame 14
1958
+ Value 433
1959
+ Interpolation linear
1960
+ RightSlope -2
1961
+ LeftSlope -2
1962
+ End
1963
+ Key 14
1964
+ Frame 15
1965
+ Value 431
1966
+ Interpolation linear
1967
+ RightSlope -2
1968
+ LeftSlope -2
1969
+ End
1970
+ Key 15
1971
+ Frame 16
1972
+ Value 429
1973
+ Interpolation linear
1974
+ RightSlope -2
1975
+ LeftSlope -2
1976
+ End
1977
+ Key 16
1978
+ Frame 17
1979
+ Value 427
1980
+ Interpolation linear
1981
+ RightSlope -2
1982
+ LeftSlope -2
1983
+ End
1984
+ Key 17
1985
+ Frame 18
1986
+ Value 425
1987
+ Interpolation linear
1988
+ RightSlope -2
1989
+ LeftSlope -2
1990
+ End
1991
+ Key 18
1992
+ Frame 19
1993
+ Value 423
1994
+ Interpolation linear
1995
+ RightSlope -2
1996
+ LeftSlope -2
1997
+ End
1998
+ Key 19
1999
+ Frame 20
2000
+ Value 421
2001
+ Interpolation linear
2002
+ RightSlope -2
2003
+ LeftSlope -2
2004
+ End
2005
+ Key 20
2006
+ Frame 21
2007
+ Value 419
2008
+ Interpolation linear
2009
+ RightSlope -2
2010
+ LeftSlope -2
2011
+ End
2012
+ Key 21
2013
+ Frame 22
2014
+ Value 417
2015
+ Interpolation linear
2016
+ RightSlope -2
2017
+ LeftSlope -2
2018
+ End
2019
+ Key 22
2020
+ Frame 23
2021
+ Value 415
2022
+ Interpolation linear
2023
+ RightSlope -2
2024
+ LeftSlope -2
2025
+ End
2026
+ Key 23
2027
+ Frame 24
2028
+ Value 413
2029
+ Interpolation linear
2030
+ RightSlope -2
2031
+ LeftSlope -2
2032
+ End
2033
+ Key 24
2034
+ Frame 25
2035
+ Value 411
2036
+ Interpolation linear
2037
+ RightSlope -2
2038
+ LeftSlope -2
2039
+ End
2040
+ Key 25
2041
+ Frame 26
2042
+ Value 409
2043
+ Interpolation linear
2044
+ RightSlope -2
2045
+ LeftSlope -2
2046
+ End
2047
+ Key 26
2048
+ Frame 27
2049
+ Value 407
2050
+ Interpolation linear
2051
+ RightSlope -2
2052
+ LeftSlope -2
2053
+ End
2054
+ Key 27
2055
+ Frame 28
2056
+ Value 405
2057
+ Interpolation linear
2058
+ RightSlope -2
2059
+ LeftSlope -2
2060
+ End
2061
+ Key 28
2062
+ Frame 29
2063
+ Value 403
2064
+ Interpolation linear
2065
+ RightSlope -2
2066
+ LeftSlope -2
2067
+ End
2068
+ Key 29
2069
+ Frame 30
2070
+ Value 401
2071
+ Interpolation linear
2072
+ RightSlope -2
2073
+ LeftSlope -2
2074
+ End
2075
+ Key 30
2076
+ Frame 31
2077
+ Value 399
2078
+ Interpolation linear
2079
+ RightSlope -2
2080
+ LeftSlope -2
2081
+ End
2082
+ Key 31
2083
+ Frame 32
2084
+ Value 397
2085
+ Interpolation linear
2086
+ RightSlope -2
2087
+ LeftSlope -2
2088
+ End
2089
+ Key 32
2090
+ Frame 33
2091
+ Value 395
2092
+ Interpolation linear
2093
+ RightSlope -2
2094
+ LeftSlope -2
2095
+ End
2096
+ Key 33
2097
+ Frame 34
2098
+ Value 393
2099
+ Interpolation linear
2100
+ RightSlope -2
2101
+ LeftSlope -2
2102
+ End
2103
+ Key 34
2104
+ Frame 35
2105
+ Value 391
2106
+ Interpolation linear
2107
+ RightSlope -2
2108
+ LeftSlope -2
2109
+ End
2110
+ Key 35
2111
+ Frame 36
2112
+ Value 389
2113
+ Interpolation linear
2114
+ RightSlope -2
2115
+ LeftSlope -2
2116
+ End
2117
+ Key 36
2118
+ Frame 37
2119
+ Value 387
2120
+ Interpolation linear
2121
+ RightSlope -2
2122
+ LeftSlope -2
2123
+ End
2124
+ Key 37
2125
+ Frame 38
2126
+ Value 385
2127
+ Interpolation linear
2128
+ RightSlope -2
2129
+ LeftSlope -2
2130
+ End
2131
+ Key 38
2132
+ Frame 39
2133
+ Value 383
2134
+ Interpolation linear
2135
+ RightSlope -2
2136
+ LeftSlope -2
2137
+ End
2138
+ Key 39
2139
+ Frame 40
2140
+ Value 381
2141
+ Interpolation linear
2142
+ RightSlope -2
2143
+ LeftSlope -2
2144
+ End
2145
+ Key 40
2146
+ Frame 41
2147
+ Value 379
2148
+ Interpolation linear
2149
+ RightSlope -2
2150
+ LeftSlope -2
2151
+ End
2152
+ Key 41
2153
+ Frame 42
2154
+ Value 377
2155
+ Interpolation linear
2156
+ RightSlope -2
2157
+ LeftSlope -2
2158
+ End
2159
+ Key 42
2160
+ Frame 43
2161
+ Value 375
2162
+ Interpolation linear
2163
+ RightSlope -2
2164
+ LeftSlope -2
2165
+ End
2166
+ Key 43
2167
+ Frame 44
2168
+ Value 373
2169
+ Interpolation linear
2170
+ RightSlope -2
2171
+ LeftSlope -2
2172
+ End
2173
+ Key 44
2174
+ Frame 45
2175
+ Value 371
2176
+ Interpolation linear
2177
+ RightSlope -2
2178
+ LeftSlope -2
2179
+ End
2180
+ Key 45
2181
+ Frame 46
2182
+ Value 369
2183
+ Interpolation linear
2184
+ RightSlope -2
2185
+ LeftSlope -2
2186
+ End
2187
+ Key 46
2188
+ Frame 47
2189
+ Value 367
2190
+ Interpolation linear
2191
+ RightSlope -2
2192
+ LeftSlope -2
2193
+ End
2194
+ Key 47
2195
+ Frame 48
2196
+ Value 365
2197
+ Interpolation linear
2198
+ RightSlope -2
2199
+ LeftSlope -2
2200
+ End
2201
+ Key 48
2202
+ Frame 49
2203
+ Value 363
2204
+ Interpolation linear
2205
+ RightSlope -2
2206
+ LeftSlope -2
2207
+ End
2208
+ Key 49
2209
+ Frame 50
2210
+ Value 361
2211
+ Interpolation linear
2212
+ RightSlope -2
2213
+ LeftSlope -2
2214
+ End
2215
+ Key 50
2216
+ Frame 51
2217
+ Value 359
2218
+ Interpolation linear
2219
+ RightSlope -2
2220
+ LeftSlope -2
2221
+ End
2222
+ Key 51
2223
+ Frame 52
2224
+ Value 357
2225
+ Interpolation linear
2226
+ RightSlope -2
2227
+ LeftSlope -2
2228
+ End
2229
+ Key 52
2230
+ Frame 53
2231
+ Value 355
2232
+ Interpolation linear
2233
+ RightSlope -2
2234
+ LeftSlope -2
2235
+ End
2236
+ Key 53
2237
+ Frame 54
2238
+ Value 353
2239
+ Interpolation linear
2240
+ RightSlope -2
2241
+ LeftSlope -2
2242
+ End
2243
+ Key 54
2244
+ Frame 55
2245
+ Value 351
2246
+ Interpolation linear
2247
+ RightSlope -2
2248
+ LeftSlope -2
2249
+ End
2250
+ Key 55
2251
+ Frame 56
2252
+ Value 349
2253
+ Interpolation linear
2254
+ RightSlope -2
2255
+ LeftSlope -2
2256
+ End
2257
+ Key 56
2258
+ Frame 57
2259
+ Value 347
2260
+ Interpolation linear
2261
+ RightSlope -2
2262
+ LeftSlope -2
2263
+ End
2264
+ Key 57
2265
+ Frame 58
2266
+ Value 345
2267
+ Interpolation linear
2268
+ RightSlope -2
2269
+ LeftSlope -2
2270
+ End
2271
+ Key 58
2272
+ Frame 59
2273
+ Value 343
2274
+ Interpolation linear
2275
+ RightSlope -2
2276
+ LeftSlope -2
2277
+ End
2278
+ Key 59
2279
+ Frame 60
2280
+ Value 341
2281
+ Interpolation linear
2282
+ RightSlope -2
2283
+ LeftSlope -2
2284
+ End
2285
+ Key 60
2286
+ Frame 61
2287
+ Value 339
2288
+ Interpolation linear
2289
+ RightSlope -2
2290
+ LeftSlope -2
2291
+ End
2292
+ Key 61
2293
+ Frame 62
2294
+ Value 337
2295
+ Interpolation linear
2296
+ RightSlope -2
2297
+ LeftSlope -2
2298
+ End
2299
+ Key 62
2300
+ Frame 63
2301
+ Value 335
2302
+ Interpolation linear
2303
+ RightSlope -2
2304
+ LeftSlope -2
2305
+ End
2306
+ Key 63
2307
+ Frame 64
2308
+ Value 333
2309
+ Interpolation linear
2310
+ RightSlope -2
2311
+ LeftSlope -2
2312
+ End
2313
+ Key 64
2314
+ Frame 65
2315
+ Value 331
2316
+ Interpolation linear
2317
+ RightSlope -2
2318
+ LeftSlope -2
2319
+ End
2320
+ Key 65
2321
+ Frame 66
2322
+ Value 329
2323
+ Interpolation linear
2324
+ RightSlope -2
2325
+ LeftSlope -2
2326
+ End
2327
+ Key 66
2328
+ Frame 67
2329
+ Value 327
2330
+ Interpolation linear
2331
+ RightSlope -2
2332
+ LeftSlope -2
2333
+ End
2334
+ Key 67
2335
+ Frame 68
2336
+ Value 325
2337
+ Interpolation linear
2338
+ RightSlope -2
2339
+ LeftSlope -2
2340
+ End
2341
+ Key 68
2342
+ Frame 69
2343
+ Value 323
2344
+ Interpolation linear
2345
+ RightSlope -2
2346
+ LeftSlope -2
2347
+ End
2348
+ Key 69
2349
+ Frame 70
2350
+ Value 321
2351
+ Interpolation linear
2352
+ RightSlope -2
2353
+ LeftSlope -2
2354
+ End
2355
+ Key 70
2356
+ Frame 71
2357
+ Value 319
2358
+ Interpolation linear
2359
+ RightSlope -2
2360
+ LeftSlope -2
2361
+ End
2362
+ Key 71
2363
+ Frame 72
2364
+ Value 317
2365
+ Interpolation linear
2366
+ RightSlope -2
2367
+ LeftSlope -2
2368
+ End
2369
+ Key 72
2370
+ Frame 73
2371
+ Value 315
2372
+ Interpolation linear
2373
+ RightSlope -2
2374
+ LeftSlope -2
2375
+ End
2376
+ Key 73
2377
+ Frame 74
2378
+ Value 313
2379
+ Interpolation linear
2380
+ RightSlope -2
2381
+ LeftSlope -2
2382
+ End
2383
+ Key 74
2384
+ Frame 75
2385
+ Value 311
2386
+ Interpolation linear
2387
+ RightSlope -2
2388
+ LeftSlope -2
2389
+ End
2390
+ Key 75
2391
+ Frame 76
2392
+ Value 309
2393
+ Interpolation linear
2394
+ RightSlope -2
2395
+ LeftSlope -2
2396
+ End
2397
+ Key 76
2398
+ Frame 77
2399
+ Value 307
2400
+ Interpolation linear
2401
+ RightSlope -2
2402
+ LeftSlope -2
2403
+ End
2404
+ Key 77
2405
+ Frame 78
2406
+ Value 305
2407
+ Interpolation linear
2408
+ RightSlope -2
2409
+ LeftSlope -2
2410
+ End
2411
+ Key 78
2412
+ Frame 79
2413
+ Value 303
2414
+ Interpolation linear
2415
+ RightSlope -2
2416
+ LeftSlope -2
2417
+ End
2418
+ Key 79
2419
+ Frame 80
2420
+ Value 301
2421
+ Interpolation linear
2422
+ RightSlope -2
2423
+ LeftSlope -2
2424
+ End
2425
+ Key 80
2426
+ Frame 81
2427
+ Value 299
2428
+ Interpolation linear
2429
+ RightSlope -2
2430
+ LeftSlope -2
2431
+ End
2432
+ Key 81
2433
+ Frame 82
2434
+ Value 297
2435
+ Interpolation linear
2436
+ RightSlope -2
2437
+ LeftSlope -2
2438
+ End
2439
+ Key 82
2440
+ Frame 83
2441
+ Value 295
2442
+ Interpolation linear
2443
+ RightSlope -2
2444
+ LeftSlope -2
2445
+ End
2446
+ Key 83
2447
+ Frame 84
2448
+ Value 293
2449
+ Interpolation linear
2450
+ RightSlope -2
2451
+ LeftSlope -2
2452
+ End
2453
+ Key 84
2454
+ Frame 85
2455
+ Value 291
2456
+ Interpolation linear
2457
+ RightSlope -2
2458
+ LeftSlope -2
2459
+ End
2460
+ Key 85
2461
+ Frame 86
2462
+ Value 289
2463
+ Interpolation linear
2464
+ RightSlope -2
2465
+ LeftSlope -2
2466
+ End
2467
+ Key 86
2468
+ Frame 87
2469
+ Value 287
2470
+ Interpolation linear
2471
+ RightSlope -2
2472
+ LeftSlope -2
2473
+ End
2474
+ Key 87
2475
+ Frame 88
2476
+ Value 285
2477
+ Interpolation linear
2478
+ RightSlope -2
2479
+ LeftSlope -2
2480
+ End
2481
+ Key 88
2482
+ Frame 89
2483
+ Value 283
2484
+ Interpolation linear
2485
+ RightSlope -2
2486
+ LeftSlope -2
2487
+ End
2488
+ Key 89
2489
+ Frame 90
2490
+ Value 281
2491
+ Interpolation linear
2492
+ RightSlope -2
2493
+ LeftSlope -2
2494
+ End
2495
+ Key 90
2496
+ Frame 91
2497
+ Value 279
2498
+ Interpolation linear
2499
+ RightSlope -2
2500
+ LeftSlope -2
2501
+ End
2502
+ Key 91
2503
+ Frame 92
2504
+ Value 277
2505
+ Interpolation linear
2506
+ RightSlope -2
2507
+ LeftSlope -2
2508
+ End
2509
+ Key 92
2510
+ Frame 93
2511
+ Value 275
2512
+ Interpolation linear
2513
+ RightSlope -2
2514
+ LeftSlope -2
2515
+ End
2516
+ Key 93
2517
+ Frame 94
2518
+ Value 273
2519
+ Interpolation linear
2520
+ RightSlope -2
2521
+ LeftSlope -2
2522
+ End
2523
+ Key 94
2524
+ Frame 95
2525
+ Value 271
2526
+ Interpolation linear
2527
+ RightSlope -2
2528
+ LeftSlope -2
2529
+ End
2530
+ Key 95
2531
+ Frame 96
2532
+ Value 269
2533
+ Interpolation linear
2534
+ RightSlope -2
2535
+ LeftSlope -2
2536
+ End
2537
+ Key 96
2538
+ Frame 97
2539
+ Value 267
2540
+ Interpolation linear
2541
+ RightSlope -2
2542
+ LeftSlope -2
2543
+ End
2544
+ Key 97
2545
+ Frame 98
2546
+ Value 265
2547
+ Interpolation linear
2548
+ RightSlope -2
2549
+ LeftSlope -2
2550
+ End
2551
+ Key 98
2552
+ Frame 99
2553
+ Value 263
2554
+ Interpolation linear
2555
+ RightSlope -2
2556
+ LeftSlope -2
2557
+ End
2558
+ Key 99
2559
+ Frame 100
2560
+ Value 261
2561
+ Interpolation linear
2562
+ RightSlope -2
2563
+ LeftSlope -2
2564
+ End
2565
+ Key 100
2566
+ Frame 101
2567
+ Value 259
2568
+ Interpolation linear
2569
+ RightSlope -2
2570
+ LeftSlope -2
2571
+ End
2572
+ Key 101
2573
+ Frame 102
2574
+ Value 257
2575
+ Interpolation linear
2576
+ RightSlope -2
2577
+ LeftSlope -2
2578
+ End
2579
+ Key 102
2580
+ Frame 103
2581
+ Value 255
2582
+ Interpolation linear
2583
+ RightSlope -2
2584
+ LeftSlope -2
2585
+ End
2586
+ Key 103
2587
+ Frame 104
2588
+ Value 253
2589
+ Interpolation linear
2590
+ RightSlope -2
2591
+ LeftSlope -2
2592
+ End
2593
+ Key 104
2594
+ Frame 105
2595
+ Value 251
2596
+ Interpolation linear
2597
+ RightSlope -2
2598
+ LeftSlope -2
2599
+ End
2600
+ Key 105
2601
+ Frame 106
2602
+ Value 249
2603
+ Interpolation linear
2604
+ RightSlope -2
2605
+ LeftSlope -2
2606
+ End
2607
+ Key 106
2608
+ Frame 107
2609
+ Value 247
2610
+ Interpolation linear
2611
+ RightSlope -2
2612
+ LeftSlope -2
2613
+ End
2614
+ Key 107
2615
+ Frame 108
2616
+ Value 245
2617
+ Interpolation linear
2618
+ RightSlope -2
2619
+ LeftSlope -2
2620
+ End
2621
+ Key 108
2622
+ Frame 109
2623
+ Value 243
2624
+ Interpolation linear
2625
+ RightSlope -2
2626
+ LeftSlope -2
2627
+ End
2628
+ Key 109
2629
+ Frame 110
2630
+ Value 241
2631
+ Interpolation linear
2632
+ RightSlope -2
2633
+ LeftSlope -2
2634
+ End
2635
+ Key 110
2636
+ Frame 111
2637
+ Value 239
2638
+ Interpolation linear
2639
+ RightSlope -2
2640
+ LeftSlope -2
2641
+ End
2642
+ Key 111
2643
+ Frame 112
2644
+ Value 237
2645
+ Interpolation linear
2646
+ RightSlope -2
2647
+ LeftSlope -2
2648
+ End
2649
+ Key 112
2650
+ Frame 113
2651
+ Value 235
2652
+ Interpolation linear
2653
+ RightSlope -2
2654
+ LeftSlope -2
2655
+ End
2656
+ Key 113
2657
+ Frame 114
2658
+ Value 233
2659
+ Interpolation linear
2660
+ RightSlope -2
2661
+ LeftSlope -2
2662
+ End
2663
+ Key 114
2664
+ Frame 115
2665
+ Value 231
2666
+ Interpolation linear
2667
+ RightSlope -2
2668
+ LeftSlope -2
2669
+ End
2670
+ Key 115
2671
+ Frame 116
2672
+ Value 229
2673
+ Interpolation linear
2674
+ RightSlope -2
2675
+ LeftSlope -2
2676
+ End
2677
+ Key 116
2678
+ Frame 117
2679
+ Value 227
2680
+ Interpolation linear
2681
+ RightSlope -2
2682
+ LeftSlope -2
2683
+ End
2684
+ Key 117
2685
+ Frame 118
2686
+ Value 225
2687
+ Interpolation linear
2688
+ RightSlope -2
2689
+ LeftSlope -2
2690
+ End
2691
+ Key 118
2692
+ Frame 119
2693
+ Value 223
2694
+ Interpolation linear
2695
+ RightSlope -2
2696
+ LeftSlope -2
2697
+ End
2698
+ Key 119
2699
+ Frame 120
2700
+ Value 221
2701
+ Interpolation linear
2702
+ RightSlope -2
2703
+ LeftSlope -2
2704
+ End
2705
+ Key 120
2706
+ Frame 121
2707
+ Value 219
2708
+ Interpolation linear
2709
+ RightSlope -2
2710
+ LeftSlope -2
2711
+ End
2712
+ Key 121
2713
+ Frame 122
2714
+ Value 217
2715
+ Interpolation linear
2716
+ RightSlope -2
2717
+ LeftSlope -2
2718
+ End
2719
+ Key 122
2720
+ Frame 123
2721
+ Value 215
2722
+ Interpolation linear
2723
+ RightSlope -2
2724
+ LeftSlope -2
2725
+ End
2726
+ Key 123
2727
+ Frame 124
2728
+ Value 213
2729
+ Interpolation linear
2730
+ RightSlope -2
2731
+ LeftSlope -2
2732
+ End
2733
+ Key 124
2734
+ Frame 125
2735
+ Value 211
2736
+ Interpolation linear
2737
+ RightSlope -2
2738
+ LeftSlope -2
2739
+ End
2740
+ Key 125
2741
+ Frame 126
2742
+ Value 209
2743
+ Interpolation linear
2744
+ RightSlope -2
2745
+ LeftSlope -2
2746
+ End
2747
+ Key 126
2748
+ Frame 127
2749
+ Value 207
2750
+ Interpolation linear
2751
+ RightSlope -2
2752
+ LeftSlope -2
2753
+ End
2754
+ Key 127
2755
+ Frame 128
2756
+ Value 205
2757
+ Interpolation linear
2758
+ RightSlope -2
2759
+ LeftSlope -2
2760
+ End
2761
+ Key 128
2762
+ Frame 129
2763
+ Value 203
2764
+ Interpolation linear
2765
+ RightSlope -2
2766
+ LeftSlope -2
2767
+ End
2768
+ Key 129
2769
+ Frame 130
2770
+ Value 201
2771
+ Interpolation linear
2772
+ RightSlope -2
2773
+ LeftSlope -2
2774
+ End
2775
+ Key 130
2776
+ Frame 131
2777
+ Value 199
2778
+ Interpolation linear
2779
+ RightSlope -2
2780
+ LeftSlope -2
2781
+ End
2782
+ Key 131
2783
+ Frame 132
2784
+ Value 197
2785
+ Interpolation linear
2786
+ RightSlope -2
2787
+ LeftSlope -2
2788
+ End
2789
+ Key 132
2790
+ Frame 133
2791
+ Value 195
2792
+ Interpolation linear
2793
+ RightSlope -2
2794
+ LeftSlope -2
2795
+ End
2796
+ Key 133
2797
+ Frame 134
2798
+ Value 193
2799
+ Interpolation linear
2800
+ RightSlope -2
2801
+ LeftSlope -2
2802
+ End
2803
+ Key 134
2804
+ Frame 135
2805
+ Value 191
2806
+ Interpolation linear
2807
+ RightSlope -2
2808
+ LeftSlope -2
2809
+ End
2810
+ Key 135
2811
+ Frame 136
2812
+ Value 189
2813
+ Interpolation linear
2814
+ RightSlope -2
2815
+ LeftSlope -2
2816
+ End
2817
+ Key 136
2818
+ Frame 137
2819
+ Value 187
2820
+ Interpolation linear
2821
+ RightSlope -2
2822
+ LeftSlope -2
2823
+ End
2824
+ Key 137
2825
+ Frame 138
2826
+ Value 185
2827
+ Interpolation linear
2828
+ RightSlope -2
2829
+ LeftSlope -2
2830
+ End
2831
+ Key 138
2832
+ Frame 139
2833
+ Value 183
2834
+ Interpolation linear
2835
+ RightSlope -2
2836
+ LeftSlope -2
2837
+ End
2838
+ Key 139
2839
+ Frame 140
2840
+ Value 181
2841
+ Interpolation linear
2842
+ RightSlope -2
2843
+ LeftSlope -2
2844
+ End
2845
+ Key 140
2846
+ Frame 141
2847
+ Value 179
2848
+ Interpolation linear
2849
+ RightSlope -2
2850
+ LeftSlope -2
2851
+ End
2852
+ Key 141
2853
+ Frame 142
2854
+ Value 177
2855
+ Interpolation linear
2856
+ RightSlope -2
2857
+ LeftSlope -2
2858
+ End
2859
+ Key 142
2860
+ Frame 143
2861
+ Value 175
2862
+ Interpolation linear
2863
+ RightSlope -2
2864
+ LeftSlope -2
2865
+ End
2866
+ Key 143
2867
+ Frame 144
2868
+ Value 173
2869
+ Interpolation linear
2870
+ RightSlope -2
2871
+ LeftSlope -2
2872
+ End
2873
+ Key 144
2874
+ Frame 145
2875
+ Value 171
2876
+ Interpolation linear
2877
+ RightSlope -2
2878
+ LeftSlope -2
2879
+ End
2880
+ Key 145
2881
+ Frame 146
2882
+ Value 169
2883
+ Interpolation linear
2884
+ RightSlope -2
2885
+ LeftSlope -2
2886
+ End
2887
+ Key 146
2888
+ Frame 147
2889
+ Value 167
2890
+ Interpolation linear
2891
+ RightSlope -2
2892
+ LeftSlope -2
2893
+ End
2894
+ Key 147
2895
+ Frame 148
2896
+ Value 165
2897
+ Interpolation linear
2898
+ RightSlope -2
2899
+ LeftSlope -2
2900
+ End
2901
+ Key 148
2902
+ Frame 149
2903
+ Value 163
2904
+ Interpolation linear
2905
+ RightSlope -2
2906
+ LeftSlope -2
2907
+ End
2908
+ Key 149
2909
+ Frame 150
2910
+ Value 161
2911
+ Interpolation linear
2912
+ RightSlope -2
2913
+ LeftSlope -2
2914
+ End
2915
+ Key 150
2916
+ Frame 151
2917
+ Value 159
2918
+ Interpolation linear
2919
+ RightSlope -2
2920
+ LeftSlope -2
2921
+ End
2922
+ Key 151
2923
+ Frame 152
2924
+ Value 157
2925
+ Interpolation linear
2926
+ RightSlope -2
2927
+ LeftSlope -2
2928
+ End
2929
+ Key 152
2930
+ Frame 153
2931
+ Value 155
2932
+ Interpolation linear
2933
+ RightSlope -2
2934
+ LeftSlope -2
2935
+ End
2936
+ Key 153
2937
+ Frame 154
2938
+ Value 153
2939
+ Interpolation linear
2940
+ RightSlope -2
2941
+ LeftSlope -2
2942
+ End
2943
+ Key 154
2944
+ Frame 155
2945
+ Value 151
2946
+ Interpolation linear
2947
+ RightSlope -2
2948
+ LeftSlope -2
2949
+ End
2950
+ Key 155
2951
+ Frame 156
2952
+ Value 149
2953
+ Interpolation linear
2954
+ RightSlope -2
2955
+ LeftSlope -2
2956
+ End
2957
+ Key 156
2958
+ Frame 157
2959
+ Value 147
2960
+ Interpolation linear
2961
+ RightSlope -2
2962
+ LeftSlope -2
2963
+ End
2964
+ Key 157
2965
+ Frame 158
2966
+ Value 145
2967
+ Interpolation linear
2968
+ RightSlope -2
2969
+ LeftSlope -2
2970
+ End
2971
+ Key 158
2972
+ Frame 159
2973
+ Value 143
2974
+ Interpolation linear
2975
+ RightSlope -2
2976
+ LeftSlope -2
2977
+ End
2978
+ Key 159
2979
+ Frame 160
2980
+ Value 141
2981
+ Interpolation linear
2982
+ RightSlope -2
2983
+ LeftSlope -2
2984
+ End
2985
+ Key 160
2986
+ Frame 161
2987
+ Value 139
2988
+ Interpolation linear
2989
+ RightSlope -2
2990
+ LeftSlope -2
2991
+ End
2992
+ Key 161
2993
+ Frame 162
2994
+ Value 137
2995
+ Interpolation linear
2996
+ RightSlope -2
2997
+ LeftSlope -2
2998
+ End
2999
+ Key 162
3000
+ Frame 163
3001
+ Value 135
3002
+ Interpolation linear
3003
+ RightSlope -2
3004
+ LeftSlope -2
3005
+ End
3006
+ Key 163
3007
+ Frame 164
3008
+ Value 133
3009
+ Interpolation linear
3010
+ RightSlope -2
3011
+ LeftSlope -2
3012
+ End
3013
+ Key 164
3014
+ Frame 165
3015
+ Value 131
3016
+ Interpolation linear
3017
+ RightSlope -2
3018
+ LeftSlope -2
3019
+ End
3020
+ Key 165
3021
+ Frame 166
3022
+ Value 129
3023
+ Interpolation linear
3024
+ RightSlope -2
3025
+ LeftSlope -2
3026
+ End
3027
+ Key 166
3028
+ Frame 167
3029
+ Value 127
3030
+ Interpolation linear
3031
+ RightSlope -2
3032
+ LeftSlope -2
3033
+ End
3034
+ Key 167
3035
+ Frame 168
3036
+ Value 125
3037
+ Interpolation linear
3038
+ RightSlope -2
3039
+ LeftSlope -2
3040
+ End
3041
+ Key 168
3042
+ Frame 169
3043
+ Value 123
3044
+ Interpolation linear
3045
+ RightSlope -2
3046
+ LeftSlope -2
3047
+ End
3048
+ Key 169
3049
+ Frame 170
3050
+ Value 121
3051
+ Interpolation linear
3052
+ RightSlope -2
3053
+ LeftSlope -2
3054
+ End
3055
+ Key 170
3056
+ Frame 171
3057
+ Value 119
3058
+ Interpolation linear
3059
+ RightSlope -2
3060
+ LeftSlope -2
3061
+ End
3062
+ Key 171
3063
+ Frame 172
3064
+ Value 117
3065
+ Interpolation linear
3066
+ RightSlope -2
3067
+ LeftSlope -2
3068
+ End
3069
+ Key 172
3070
+ Frame 173
3071
+ Value 115
3072
+ Interpolation linear
3073
+ RightSlope -2
3074
+ LeftSlope -2
3075
+ End
3076
+ Key 173
3077
+ Frame 174
3078
+ Value 113
3079
+ Interpolation linear
3080
+ RightSlope -2
3081
+ LeftSlope -2
3082
+ End
3083
+ Key 174
3084
+ Frame 175
3085
+ Value 111
3086
+ Interpolation linear
3087
+ RightSlope -2
3088
+ LeftSlope -2
3089
+ End
3090
+ Key 175
3091
+ Frame 176
3092
+ Value 109
3093
+ Interpolation linear
3094
+ RightSlope -2
3095
+ LeftSlope -2
3096
+ End
3097
+ Key 176
3098
+ Frame 177
3099
+ Value 107
3100
+ Interpolation linear
3101
+ RightSlope -2
3102
+ LeftSlope -2
3103
+ End
3104
+ Key 177
3105
+ Frame 178
3106
+ Value 105
3107
+ Interpolation linear
3108
+ RightSlope -2
3109
+ LeftSlope -2
3110
+ End
3111
+ Key 178
3112
+ Frame 179
3113
+ Value 103
3114
+ Interpolation linear
3115
+ RightSlope -2
3116
+ LeftSlope -2
3117
+ End
3118
+ Key 179
3119
+ Frame 180
3120
+ Value 101
3121
+ Interpolation linear
3122
+ RightSlope -2
3123
+ LeftSlope -2
3124
+ End
3125
+ Key 180
3126
+ Frame 181
3127
+ Value 99
3128
+ Interpolation linear
3129
+ RightSlope -2
3130
+ LeftSlope -2
3131
+ End
3132
+ Key 181
3133
+ Frame 182
3134
+ Value 97
3135
+ Interpolation linear
3136
+ RightSlope -2
3137
+ LeftSlope -2
3138
+ End
3139
+ Key 182
3140
+ Frame 183
3141
+ Value 95
3142
+ Interpolation linear
3143
+ RightSlope -2
3144
+ LeftSlope -2
3145
+ End
3146
+ Key 183
3147
+ Frame 184
3148
+ Value 93
3149
+ Interpolation linear
3150
+ RightSlope -2
3151
+ LeftSlope -2
3152
+ End
3153
+ Key 184
3154
+ Frame 185
3155
+ Value 91
3156
+ Interpolation linear
3157
+ RightSlope -2
3158
+ LeftSlope -2
3159
+ End
3160
+ Key 185
3161
+ Frame 186
3162
+ Value 89
3163
+ Interpolation linear
3164
+ RightSlope -2
3165
+ LeftSlope -2
3166
+ End
3167
+ Key 186
3168
+ Frame 187
3169
+ Value 87
3170
+ Interpolation linear
3171
+ RightSlope -2
3172
+ LeftSlope -2
3173
+ End
3174
+ Key 187
3175
+ Frame 188
3176
+ Value 85
3177
+ Interpolation linear
3178
+ RightSlope -2
3179
+ LeftSlope -2
3180
+ End
3181
+ Key 188
3182
+ Frame 189
3183
+ Value 83
3184
+ Interpolation linear
3185
+ RightSlope -2
3186
+ LeftSlope -2
3187
+ End
3188
+ Key 189
3189
+ Frame 190
3190
+ Value 81
3191
+ Interpolation linear
3192
+ RightSlope -2
3193
+ LeftSlope -2
3194
+ End
3195
+ Key 190
3196
+ Frame 191
3197
+ Value 79
3198
+ Interpolation linear
3199
+ RightSlope -2
3200
+ LeftSlope -2
3201
+ End
3202
+ Key 191
3203
+ Frame 192
3204
+ Value 77
3205
+ Interpolation linear
3206
+ RightSlope -2
3207
+ LeftSlope -2
3208
+ End
3209
+ Key 192
3210
+ Frame 193
3211
+ Value 75
3212
+ Interpolation linear
3213
+ RightSlope -2
3214
+ LeftSlope -2
3215
+ End
3216
+ Key 193
3217
+ Frame 194
3218
+ Value 73
3219
+ Interpolation linear
3220
+ RightSlope -2
3221
+ LeftSlope -2
3222
+ End
3223
+ Key 194
3224
+ Frame 195
3225
+ Value 71
3226
+ Interpolation linear
3227
+ RightSlope -2
3228
+ LeftSlope -2
3229
+ End
3230
+ Key 195
3231
+ Frame 196
3232
+ Value 69
3233
+ Interpolation linear
3234
+ RightSlope -2
3235
+ LeftSlope -2
3236
+ End
3237
+ Key 196
3238
+ Frame 197
3239
+ Value 67
3240
+ Interpolation linear
3241
+ RightSlope -2
3242
+ LeftSlope -2
3243
+ End
3244
+ Key 197
3245
+ Frame 198
3246
+ Value 65
3247
+ Interpolation linear
3248
+ RightSlope -2
3249
+ LeftSlope -2
3250
+ End
3251
+ Key 198
3252
+ Frame 199
3253
+ Value 63
3254
+ Interpolation linear
3255
+ RightSlope -2
3256
+ LeftSlope -2
3257
+ End
3258
+ Key 199
3259
+ Frame 200
3260
+ Value 61
3261
+ Interpolation linear
3262
+ RightSlope -2
3263
+ LeftSlope -2
3264
+ End
3265
+ Key 200
3266
+ Frame 201
3267
+ Value 59
3268
+ Interpolation linear
3269
+ RightSlope -2
3270
+ LeftSlope -2
3271
+ End
3272
+ Key 201
3273
+ Frame 202
3274
+ Value 57
3275
+ Interpolation linear
3276
+ RightSlope -2
3277
+ LeftSlope -2
3278
+ End
3279
+ Key 202
3280
+ Frame 203
3281
+ Value 55
3282
+ Interpolation linear
3283
+ RightSlope -2
3284
+ LeftSlope -2
3285
+ End
3286
+ Key 203
3287
+ Frame 204
3288
+ Value 53
3289
+ Interpolation linear
3290
+ RightSlope -2
3291
+ LeftSlope -2
3292
+ End
3293
+ Key 204
3294
+ Frame 205
3295
+ Value 51
3296
+ Interpolation linear
3297
+ RightSlope -2
3298
+ LeftSlope -2
3299
+ End
3300
+ Key 205
3301
+ Frame 206
3302
+ Value 49
3303
+ Interpolation linear
3304
+ RightSlope -2
3305
+ LeftSlope -2
3306
+ End
3307
+ Key 206
3308
+ Frame 207
3309
+ Value 47
3310
+ Interpolation linear
3311
+ RightSlope -2
3312
+ LeftSlope -2
3313
+ End
3314
+ Key 207
3315
+ Frame 208
3316
+ Value 45
3317
+ Interpolation linear
3318
+ RightSlope -2
3319
+ LeftSlope -2
3320
+ End
3321
+ Key 208
3322
+ Frame 209
3323
+ Value 43
3324
+ Interpolation linear
3325
+ RightSlope -2
3326
+ LeftSlope -2
3327
+ End
3328
+ Key 209
3329
+ Frame 210
3330
+ Value 41
3331
+ Interpolation linear
3332
+ RightSlope -2
3333
+ LeftSlope -2
3334
+ End
3335
+ Key 210
3336
+ Frame 211
3337
+ Value 39
3338
+ Interpolation linear
3339
+ RightSlope -2
3340
+ LeftSlope -2
3341
+ End
3342
+ Key 211
3343
+ Frame 212
3344
+ Value 37
3345
+ Interpolation linear
3346
+ RightSlope -2
3347
+ LeftSlope -2
3348
+ End
3349
+ Key 212
3350
+ Frame 213
3351
+ Value 35
3352
+ Interpolation linear
3353
+ RightSlope -2
3354
+ LeftSlope -2
3355
+ End
3356
+ Key 213
3357
+ Frame 214
3358
+ Value 33
3359
+ Interpolation linear
3360
+ RightSlope -2
3361
+ LeftSlope -2
3362
+ End
3363
+ Key 214
3364
+ Frame 215
3365
+ Value 31
3366
+ Interpolation linear
3367
+ RightSlope -2
3368
+ LeftSlope -2
3369
+ End
3370
+ Key 215
3371
+ Frame 216
3372
+ Value 29
3373
+ Interpolation linear
3374
+ RightSlope -2
3375
+ LeftSlope -2
3376
+ End
3377
+ Key 216
3378
+ Frame 217
3379
+ Value 27
3380
+ Interpolation linear
3381
+ RightSlope -2
3382
+ LeftSlope -2
3383
+ End
3384
+ Key 217
3385
+ Frame 218
3386
+ Value 25
3387
+ Interpolation linear
3388
+ RightSlope -2
3389
+ LeftSlope -2
3390
+ End
3391
+ Key 218
3392
+ Frame 219
3393
+ Value 23
3394
+ Interpolation linear
3395
+ RightSlope -2
3396
+ LeftSlope -2
3397
+ End
3398
+ Key 219
3399
+ Frame 220
3400
+ Value 21
3401
+ Interpolation linear
3402
+ RightSlope -2
3403
+ LeftSlope -2
3404
+ End
3405
+ Key 220
3406
+ Frame 221
3407
+ Value 19
3408
+ Interpolation linear
3409
+ RightSlope -2
3410
+ LeftSlope -2
3411
+ End
3412
+ Key 221
3413
+ Frame 222
3414
+ Value 17
3415
+ Interpolation linear
3416
+ RightSlope -2
3417
+ LeftSlope -2
3418
+ End
3419
+ Key 222
3420
+ Frame 223
3421
+ Value 15
3422
+ Interpolation linear
3423
+ RightSlope -2
3424
+ LeftSlope -2
3425
+ End
3426
+ Key 223
3427
+ Frame 224
3428
+ Value 13
3429
+ Interpolation linear
3430
+ RightSlope -2
3431
+ LeftSlope -2
3432
+ End
3433
+ Key 224
3434
+ Frame 225
3435
+ Value 11
3436
+ Interpolation linear
3437
+ RightSlope -2
3438
+ LeftSlope -2
3439
+ End
3440
+ Key 225
3441
+ Frame 226
3442
+ Value 9
3443
+ Interpolation linear
3444
+ RightSlope -2
3445
+ LeftSlope -2
3446
+ End
3447
+ Key 226
3448
+ Frame 227
3449
+ Value 7
3450
+ Interpolation linear
3451
+ RightSlope -2
3452
+ LeftSlope -2
3453
+ End
3454
+ Key 227
3455
+ Frame 228
3456
+ Value 5
3457
+ Interpolation linear
3458
+ RightSlope -2
3459
+ LeftSlope -2
3460
+ End
3461
+ Key 228
3462
+ Frame 229
3463
+ Value 3
3464
+ Interpolation linear
3465
+ RightSlope -2
3466
+ LeftSlope -2
3467
+ End
3468
+ Key 229
3469
+ Frame 230
3470
+ Value 1
3471
+ Interpolation linear
3472
+ RightSlope -2
3473
+ LeftSlope -2
3474
+ End
3475
+ Uncollapsed
3476
+ End
3477
+ Channel Mix/Mix
3478
+ Extrapolation constant
3479
+ Value 0
3480
+ End
3481
+ Channel Trail/Pre_Trail
3482
+ Extrapolation constant
3483
+ Value 1
3484
+ End
3485
+ Channel Trail/Pre_Weight
3486
+ Extrapolation constant
3487
+ Value 100
3488
+ End
3489
+ Channel Trail/Post_Trail
3490
+ Extrapolation constant
3491
+ Value 1
3492
+ End
3493
+ Channel Trail/Post_Weight
3494
+ Extrapolation constant
3495
+ Value 100
3496
+ End
3497
+ ChannelEnd
3498
+ End