cloudmersive-video-api-client 2.0.2 → 2.0.3
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +27 -18
- data/docs/AudioApi.md +248 -0
- data/docs/NsfwResult.md +14 -0
- data/docs/NsfwScannedFrame.md +12 -0
- data/docs/SplitVideoResult.md +9 -0
- data/docs/StillFrame.md +10 -0
- data/docs/StillFramesResult.md +10 -0
- data/docs/VideoApi.md +418 -46
- data/docs/VideoFile.md +9 -0
- data/lib/cloudmersive-video-api-client.rb +7 -0
- data/lib/cloudmersive-video-api-client/api/audio_api.rb +251 -0
- data/lib/cloudmersive-video-api-client/api/video_api.rb +429 -79
- data/lib/cloudmersive-video-api-client/models/nsfw_result.rb +248 -0
- data/lib/cloudmersive-video-api-client/models/nsfw_scanned_frame.rb +241 -0
- data/lib/cloudmersive-video-api-client/models/split_video_result.rb +198 -0
- data/lib/cloudmersive-video-api-client/models/still_frame.rb +221 -0
- data/lib/cloudmersive-video-api-client/models/still_frames_result.rb +208 -0
- data/lib/cloudmersive-video-api-client/models/video_file.rb +211 -0
- data/lib/cloudmersive-video-api-client/version.rb +1 -1
- data/spec/api/audio_api_spec.rb +91 -0
- data/spec/api/video_api_spec.rb +109 -17
- data/spec/models/nsfw_result_spec.rb +77 -0
- data/spec/models/nsfw_scanned_frame_spec.rb +65 -0
- data/spec/models/split_video_result_spec.rb +47 -0
- data/spec/models/still_frame_spec.rb +53 -0
- data/spec/models/still_frames_result_spec.rb +53 -0
- data/spec/models/video_file_spec.rb +47 -0
- metadata +23 -2
@@ -0,0 +1,248 @@
|
|
1
|
+
=begin
|
2
|
+
#videoapi
|
3
|
+
|
4
|
+
#The video APIs help you convert, encode, and transcode videos.
|
5
|
+
|
6
|
+
OpenAPI spec version: v1
|
7
|
+
|
8
|
+
Generated by: https://github.com/swagger-api/swagger-codegen.git
|
9
|
+
Swagger Codegen version: 2.4.14
|
10
|
+
|
11
|
+
=end
|
12
|
+
|
13
|
+
require 'date'
|
14
|
+
|
15
|
+
module CloudmersiveVideoApiClient
|
16
|
+
# The result of scanning a video file for NSFW content
|
17
|
+
class NsfwResult
|
18
|
+
# True if the operation was successful, false otherwise
|
19
|
+
attr_accessor :successful
|
20
|
+
|
21
|
+
# The highest NSFW classification of the video
|
22
|
+
attr_accessor :highest_classification_result
|
23
|
+
|
24
|
+
# The highest NSFW score out of all frames scanned
|
25
|
+
attr_accessor :highest_score
|
26
|
+
|
27
|
+
# The total number of potentially \"racy\" frames.
|
28
|
+
attr_accessor :total_racy_frames
|
29
|
+
|
30
|
+
# The total number of frames with high probability of NSFW.
|
31
|
+
attr_accessor :total_nsfw_frames
|
32
|
+
|
33
|
+
# The total number of frames scanned
|
34
|
+
attr_accessor :total_frames
|
35
|
+
|
36
|
+
# The NSFW scanning results for each frame
|
37
|
+
attr_accessor :nsfw_scanned_frames
|
38
|
+
|
39
|
+
# Attribute mapping from ruby-style variable name to JSON key.
|
40
|
+
def self.attribute_map
|
41
|
+
{
|
42
|
+
:'successful' => :'Successful',
|
43
|
+
:'highest_classification_result' => :'HighestClassificationResult',
|
44
|
+
:'highest_score' => :'HighestScore',
|
45
|
+
:'total_racy_frames' => :'TotalRacyFrames',
|
46
|
+
:'total_nsfw_frames' => :'TotalNsfwFrames',
|
47
|
+
:'total_frames' => :'TotalFrames',
|
48
|
+
:'nsfw_scanned_frames' => :'NsfwScannedFrames'
|
49
|
+
}
|
50
|
+
end
|
51
|
+
|
52
|
+
# Attribute type mapping.
|
53
|
+
def self.swagger_types
|
54
|
+
{
|
55
|
+
:'successful' => :'BOOLEAN',
|
56
|
+
:'highest_classification_result' => :'String',
|
57
|
+
:'highest_score' => :'Float',
|
58
|
+
:'total_racy_frames' => :'Integer',
|
59
|
+
:'total_nsfw_frames' => :'Integer',
|
60
|
+
:'total_frames' => :'Integer',
|
61
|
+
:'nsfw_scanned_frames' => :'Array<NsfwScannedFrame>'
|
62
|
+
}
|
63
|
+
end
|
64
|
+
|
65
|
+
# Initializes the object
|
66
|
+
# @param [Hash] attributes Model attributes in the form of hash
|
67
|
+
def initialize(attributes = {})
|
68
|
+
return unless attributes.is_a?(Hash)
|
69
|
+
|
70
|
+
# convert string to symbol for hash key
|
71
|
+
attributes = attributes.each_with_object({}) { |(k, v), h| h[k.to_sym] = v }
|
72
|
+
|
73
|
+
if attributes.has_key?(:'Successful')
|
74
|
+
self.successful = attributes[:'Successful']
|
75
|
+
end
|
76
|
+
|
77
|
+
if attributes.has_key?(:'HighestClassificationResult')
|
78
|
+
self.highest_classification_result = attributes[:'HighestClassificationResult']
|
79
|
+
end
|
80
|
+
|
81
|
+
if attributes.has_key?(:'HighestScore')
|
82
|
+
self.highest_score = attributes[:'HighestScore']
|
83
|
+
end
|
84
|
+
|
85
|
+
if attributes.has_key?(:'TotalRacyFrames')
|
86
|
+
self.total_racy_frames = attributes[:'TotalRacyFrames']
|
87
|
+
end
|
88
|
+
|
89
|
+
if attributes.has_key?(:'TotalNsfwFrames')
|
90
|
+
self.total_nsfw_frames = attributes[:'TotalNsfwFrames']
|
91
|
+
end
|
92
|
+
|
93
|
+
if attributes.has_key?(:'TotalFrames')
|
94
|
+
self.total_frames = attributes[:'TotalFrames']
|
95
|
+
end
|
96
|
+
|
97
|
+
if attributes.has_key?(:'NsfwScannedFrames')
|
98
|
+
if (value = attributes[:'NsfwScannedFrames']).is_a?(Array)
|
99
|
+
self.nsfw_scanned_frames = value
|
100
|
+
end
|
101
|
+
end
|
102
|
+
end
|
103
|
+
|
104
|
+
# Show invalid properties with the reasons. Usually used together with valid?
|
105
|
+
# @return Array for valid properties with the reasons
|
106
|
+
def list_invalid_properties
|
107
|
+
invalid_properties = Array.new
|
108
|
+
invalid_properties
|
109
|
+
end
|
110
|
+
|
111
|
+
# Check to see if the all the properties in the model are valid
|
112
|
+
# @return true if the model is valid
|
113
|
+
def valid?
|
114
|
+
true
|
115
|
+
end
|
116
|
+
|
117
|
+
# Checks equality by comparing each attribute.
|
118
|
+
# @param [Object] Object to be compared
|
119
|
+
def ==(o)
|
120
|
+
return true if self.equal?(o)
|
121
|
+
self.class == o.class &&
|
122
|
+
successful == o.successful &&
|
123
|
+
highest_classification_result == o.highest_classification_result &&
|
124
|
+
highest_score == o.highest_score &&
|
125
|
+
total_racy_frames == o.total_racy_frames &&
|
126
|
+
total_nsfw_frames == o.total_nsfw_frames &&
|
127
|
+
total_frames == o.total_frames &&
|
128
|
+
nsfw_scanned_frames == o.nsfw_scanned_frames
|
129
|
+
end
|
130
|
+
|
131
|
+
# @see the `==` method
|
132
|
+
# @param [Object] Object to be compared
|
133
|
+
def eql?(o)
|
134
|
+
self == o
|
135
|
+
end
|
136
|
+
|
137
|
+
# Calculates hash code according to all attributes.
|
138
|
+
# @return [Fixnum] Hash code
|
139
|
+
def hash
|
140
|
+
[successful, highest_classification_result, highest_score, total_racy_frames, total_nsfw_frames, total_frames, nsfw_scanned_frames].hash
|
141
|
+
end
|
142
|
+
|
143
|
+
# Builds the object from hash
|
144
|
+
# @param [Hash] attributes Model attributes in the form of hash
|
145
|
+
# @return [Object] Returns the model itself
|
146
|
+
def build_from_hash(attributes)
|
147
|
+
return nil unless attributes.is_a?(Hash)
|
148
|
+
self.class.swagger_types.each_pair do |key, type|
|
149
|
+
if type =~ /\AArray<(.*)>/i
|
150
|
+
# check to ensure the input is an array given that the attribute
|
151
|
+
# is documented as an array but the input is not
|
152
|
+
if attributes[self.class.attribute_map[key]].is_a?(Array)
|
153
|
+
self.send("#{key}=", attributes[self.class.attribute_map[key]].map { |v| _deserialize($1, v) })
|
154
|
+
end
|
155
|
+
elsif !attributes[self.class.attribute_map[key]].nil?
|
156
|
+
self.send("#{key}=", _deserialize(type, attributes[self.class.attribute_map[key]]))
|
157
|
+
end # or else data not found in attributes(hash), not an issue as the data can be optional
|
158
|
+
end
|
159
|
+
|
160
|
+
self
|
161
|
+
end
|
162
|
+
|
163
|
+
# Deserializes the data based on type
|
164
|
+
# @param string type Data type
|
165
|
+
# @param string value Value to be deserialized
|
166
|
+
# @return [Object] Deserialized data
|
167
|
+
def _deserialize(type, value)
|
168
|
+
case type.to_sym
|
169
|
+
when :DateTime
|
170
|
+
DateTime.parse(value)
|
171
|
+
when :Date
|
172
|
+
Date.parse(value)
|
173
|
+
when :String
|
174
|
+
value.to_s
|
175
|
+
when :Integer
|
176
|
+
value.to_i
|
177
|
+
when :Float
|
178
|
+
value.to_f
|
179
|
+
when :BOOLEAN
|
180
|
+
if value.to_s =~ /\A(true|t|yes|y|1)\z/i
|
181
|
+
true
|
182
|
+
else
|
183
|
+
false
|
184
|
+
end
|
185
|
+
when :Object
|
186
|
+
# generic object (usually a Hash), return directly
|
187
|
+
value
|
188
|
+
when /\AArray<(?<inner_type>.+)>\z/
|
189
|
+
inner_type = Regexp.last_match[:inner_type]
|
190
|
+
value.map { |v| _deserialize(inner_type, v) }
|
191
|
+
when /\AHash<(?<k_type>.+?), (?<v_type>.+)>\z/
|
192
|
+
k_type = Regexp.last_match[:k_type]
|
193
|
+
v_type = Regexp.last_match[:v_type]
|
194
|
+
{}.tap do |hash|
|
195
|
+
value.each do |k, v|
|
196
|
+
hash[_deserialize(k_type, k)] = _deserialize(v_type, v)
|
197
|
+
end
|
198
|
+
end
|
199
|
+
else # model
|
200
|
+
temp_model = CloudmersiveVideoApiClient.const_get(type).new
|
201
|
+
temp_model.build_from_hash(value)
|
202
|
+
end
|
203
|
+
end
|
204
|
+
|
205
|
+
# Returns the string representation of the object
|
206
|
+
# @return [String] String presentation of the object
|
207
|
+
def to_s
|
208
|
+
to_hash.to_s
|
209
|
+
end
|
210
|
+
|
211
|
+
# to_body is an alias to to_hash (backward compatibility)
|
212
|
+
# @return [Hash] Returns the object in the form of hash
|
213
|
+
def to_body
|
214
|
+
to_hash
|
215
|
+
end
|
216
|
+
|
217
|
+
# Returns the object in the form of hash
|
218
|
+
# @return [Hash] Returns the object in the form of hash
|
219
|
+
def to_hash
|
220
|
+
hash = {}
|
221
|
+
self.class.attribute_map.each_pair do |attr, param|
|
222
|
+
value = self.send(attr)
|
223
|
+
next if value.nil?
|
224
|
+
hash[param] = _to_hash(value)
|
225
|
+
end
|
226
|
+
hash
|
227
|
+
end
|
228
|
+
|
229
|
+
# Outputs non-array value in the form of hash
|
230
|
+
# For object, use to_hash. Otherwise, just return the value
|
231
|
+
# @param [Object] value Any valid value
|
232
|
+
# @return [Hash] Returns the value in the form of hash
|
233
|
+
def _to_hash(value)
|
234
|
+
if value.is_a?(Array)
|
235
|
+
value.compact.map { |v| _to_hash(v) }
|
236
|
+
elsif value.is_a?(Hash)
|
237
|
+
{}.tap do |hash|
|
238
|
+
value.each { |k, v| hash[k] = _to_hash(v) }
|
239
|
+
end
|
240
|
+
elsif value.respond_to? :to_hash
|
241
|
+
value.to_hash
|
242
|
+
else
|
243
|
+
value
|
244
|
+
end
|
245
|
+
end
|
246
|
+
|
247
|
+
end
|
248
|
+
end
|
@@ -0,0 +1,241 @@
|
|
1
|
+
=begin
|
2
|
+
#videoapi
|
3
|
+
|
4
|
+
#The video APIs help you convert, encode, and transcode videos.
|
5
|
+
|
6
|
+
OpenAPI spec version: v1
|
7
|
+
|
8
|
+
Generated by: https://github.com/swagger-api/swagger-codegen.git
|
9
|
+
Swagger Codegen version: 2.4.14
|
10
|
+
|
11
|
+
=end
|
12
|
+
|
13
|
+
require 'date'
|
14
|
+
|
15
|
+
module CloudmersiveVideoApiClient
|
16
|
+
# An individual frame scanned for NSFW content
|
17
|
+
class NsfwScannedFrame
|
18
|
+
# The number of the current frame
|
19
|
+
attr_accessor :frame_number
|
20
|
+
|
21
|
+
# The playback time of the current frame
|
22
|
+
attr_accessor :time_stamp
|
23
|
+
|
24
|
+
# The still frame in PNG format as a byte array
|
25
|
+
attr_accessor :content
|
26
|
+
|
27
|
+
# The NSFW classification of the still frame
|
28
|
+
attr_accessor :classification_result
|
29
|
+
|
30
|
+
# The NSFW score of the current frame
|
31
|
+
attr_accessor :score
|
32
|
+
|
33
|
+
# Attribute mapping from ruby-style variable name to JSON key.
|
34
|
+
def self.attribute_map
|
35
|
+
{
|
36
|
+
:'frame_number' => :'FrameNumber',
|
37
|
+
:'time_stamp' => :'TimeStamp',
|
38
|
+
:'content' => :'Content',
|
39
|
+
:'classification_result' => :'ClassificationResult',
|
40
|
+
:'score' => :'Score'
|
41
|
+
}
|
42
|
+
end
|
43
|
+
|
44
|
+
# Attribute type mapping.
|
45
|
+
def self.swagger_types
|
46
|
+
{
|
47
|
+
:'frame_number' => :'Integer',
|
48
|
+
:'time_stamp' => :'String',
|
49
|
+
:'content' => :'String',
|
50
|
+
:'classification_result' => :'String',
|
51
|
+
:'score' => :'Float'
|
52
|
+
}
|
53
|
+
end
|
54
|
+
|
55
|
+
# Initializes the object
|
56
|
+
# @param [Hash] attributes Model attributes in the form of hash
|
57
|
+
def initialize(attributes = {})
|
58
|
+
return unless attributes.is_a?(Hash)
|
59
|
+
|
60
|
+
# convert string to symbol for hash key
|
61
|
+
attributes = attributes.each_with_object({}) { |(k, v), h| h[k.to_sym] = v }
|
62
|
+
|
63
|
+
if attributes.has_key?(:'FrameNumber')
|
64
|
+
self.frame_number = attributes[:'FrameNumber']
|
65
|
+
end
|
66
|
+
|
67
|
+
if attributes.has_key?(:'TimeStamp')
|
68
|
+
self.time_stamp = attributes[:'TimeStamp']
|
69
|
+
end
|
70
|
+
|
71
|
+
if attributes.has_key?(:'Content')
|
72
|
+
self.content = attributes[:'Content']
|
73
|
+
end
|
74
|
+
|
75
|
+
if attributes.has_key?(:'ClassificationResult')
|
76
|
+
self.classification_result = attributes[:'ClassificationResult']
|
77
|
+
end
|
78
|
+
|
79
|
+
if attributes.has_key?(:'Score')
|
80
|
+
self.score = attributes[:'Score']
|
81
|
+
end
|
82
|
+
end
|
83
|
+
|
84
|
+
# Show invalid properties with the reasons. Usually used together with valid?
|
85
|
+
# @return Array for valid properties with the reasons
|
86
|
+
def list_invalid_properties
|
87
|
+
invalid_properties = Array.new
|
88
|
+
if !@content.nil? && @content !~ Regexp.new(/^(?:[A-Za-z0-9+\/]{4})*(?:[A-Za-z0-9+\/]{2}==|[A-Za-z0-9+\/]{3}=)?$/)
|
89
|
+
invalid_properties.push('invalid value for "content", must conform to the pattern /^(?:[A-Za-z0-9+\/]{4})*(?:[A-Za-z0-9+\/]{2}==|[A-Za-z0-9+\/]{3}=)?$/.')
|
90
|
+
end
|
91
|
+
|
92
|
+
invalid_properties
|
93
|
+
end
|
94
|
+
|
95
|
+
# Check to see if the all the properties in the model are valid
|
96
|
+
# @return true if the model is valid
|
97
|
+
def valid?
|
98
|
+
return false if !@content.nil? && @content !~ Regexp.new(/^(?:[A-Za-z0-9+\/]{4})*(?:[A-Za-z0-9+\/]{2}==|[A-Za-z0-9+\/]{3}=)?$/)
|
99
|
+
true
|
100
|
+
end
|
101
|
+
|
102
|
+
# Custom attribute writer method with validation
|
103
|
+
# @param [Object] content Value to be assigned
|
104
|
+
def content=(content)
|
105
|
+
if !content.nil? && content !~ Regexp.new(/^(?:[A-Za-z0-9+\/]{4})*(?:[A-Za-z0-9+\/]{2}==|[A-Za-z0-9+\/]{3}=)?$/)
|
106
|
+
fail ArgumentError, 'invalid value for "content", must conform to the pattern /^(?:[A-Za-z0-9+\/]{4})*(?:[A-Za-z0-9+\/]{2}==|[A-Za-z0-9+\/]{3}=)?$/.'
|
107
|
+
end
|
108
|
+
|
109
|
+
@content = content
|
110
|
+
end
|
111
|
+
|
112
|
+
# Checks equality by comparing each attribute.
|
113
|
+
# @param [Object] Object to be compared
|
114
|
+
def ==(o)
|
115
|
+
return true if self.equal?(o)
|
116
|
+
self.class == o.class &&
|
117
|
+
frame_number == o.frame_number &&
|
118
|
+
time_stamp == o.time_stamp &&
|
119
|
+
content == o.content &&
|
120
|
+
classification_result == o.classification_result &&
|
121
|
+
score == o.score
|
122
|
+
end
|
123
|
+
|
124
|
+
# @see the `==` method
|
125
|
+
# @param [Object] Object to be compared
|
126
|
+
def eql?(o)
|
127
|
+
self == o
|
128
|
+
end
|
129
|
+
|
130
|
+
# Calculates hash code according to all attributes.
|
131
|
+
# @return [Fixnum] Hash code
|
132
|
+
def hash
|
133
|
+
[frame_number, time_stamp, content, classification_result, score].hash
|
134
|
+
end
|
135
|
+
|
136
|
+
# Builds the object from hash
|
137
|
+
# @param [Hash] attributes Model attributes in the form of hash
|
138
|
+
# @return [Object] Returns the model itself
|
139
|
+
def build_from_hash(attributes)
|
140
|
+
return nil unless attributes.is_a?(Hash)
|
141
|
+
self.class.swagger_types.each_pair do |key, type|
|
142
|
+
if type =~ /\AArray<(.*)>/i
|
143
|
+
# check to ensure the input is an array given that the attribute
|
144
|
+
# is documented as an array but the input is not
|
145
|
+
if attributes[self.class.attribute_map[key]].is_a?(Array)
|
146
|
+
self.send("#{key}=", attributes[self.class.attribute_map[key]].map { |v| _deserialize($1, v) })
|
147
|
+
end
|
148
|
+
elsif !attributes[self.class.attribute_map[key]].nil?
|
149
|
+
self.send("#{key}=", _deserialize(type, attributes[self.class.attribute_map[key]]))
|
150
|
+
end # or else data not found in attributes(hash), not an issue as the data can be optional
|
151
|
+
end
|
152
|
+
|
153
|
+
self
|
154
|
+
end
|
155
|
+
|
156
|
+
# Deserializes the data based on type
|
157
|
+
# @param string type Data type
|
158
|
+
# @param string value Value to be deserialized
|
159
|
+
# @return [Object] Deserialized data
|
160
|
+
def _deserialize(type, value)
|
161
|
+
case type.to_sym
|
162
|
+
when :DateTime
|
163
|
+
DateTime.parse(value)
|
164
|
+
when :Date
|
165
|
+
Date.parse(value)
|
166
|
+
when :String
|
167
|
+
value.to_s
|
168
|
+
when :Integer
|
169
|
+
value.to_i
|
170
|
+
when :Float
|
171
|
+
value.to_f
|
172
|
+
when :BOOLEAN
|
173
|
+
if value.to_s =~ /\A(true|t|yes|y|1)\z/i
|
174
|
+
true
|
175
|
+
else
|
176
|
+
false
|
177
|
+
end
|
178
|
+
when :Object
|
179
|
+
# generic object (usually a Hash), return directly
|
180
|
+
value
|
181
|
+
when /\AArray<(?<inner_type>.+)>\z/
|
182
|
+
inner_type = Regexp.last_match[:inner_type]
|
183
|
+
value.map { |v| _deserialize(inner_type, v) }
|
184
|
+
when /\AHash<(?<k_type>.+?), (?<v_type>.+)>\z/
|
185
|
+
k_type = Regexp.last_match[:k_type]
|
186
|
+
v_type = Regexp.last_match[:v_type]
|
187
|
+
{}.tap do |hash|
|
188
|
+
value.each do |k, v|
|
189
|
+
hash[_deserialize(k_type, k)] = _deserialize(v_type, v)
|
190
|
+
end
|
191
|
+
end
|
192
|
+
else # model
|
193
|
+
temp_model = CloudmersiveVideoApiClient.const_get(type).new
|
194
|
+
temp_model.build_from_hash(value)
|
195
|
+
end
|
196
|
+
end
|
197
|
+
|
198
|
+
# Returns the string representation of the object
|
199
|
+
# @return [String] String presentation of the object
|
200
|
+
def to_s
|
201
|
+
to_hash.to_s
|
202
|
+
end
|
203
|
+
|
204
|
+
# to_body is an alias to to_hash (backward compatibility)
|
205
|
+
# @return [Hash] Returns the object in the form of hash
|
206
|
+
def to_body
|
207
|
+
to_hash
|
208
|
+
end
|
209
|
+
|
210
|
+
# Returns the object in the form of hash
|
211
|
+
# @return [Hash] Returns the object in the form of hash
|
212
|
+
def to_hash
|
213
|
+
hash = {}
|
214
|
+
self.class.attribute_map.each_pair do |attr, param|
|
215
|
+
value = self.send(attr)
|
216
|
+
next if value.nil?
|
217
|
+
hash[param] = _to_hash(value)
|
218
|
+
end
|
219
|
+
hash
|
220
|
+
end
|
221
|
+
|
222
|
+
# Outputs non-array value in the form of hash
|
223
|
+
# For object, use to_hash. Otherwise, just return the value
|
224
|
+
# @param [Object] value Any valid value
|
225
|
+
# @return [Hash] Returns the value in the form of hash
|
226
|
+
def _to_hash(value)
|
227
|
+
if value.is_a?(Array)
|
228
|
+
value.compact.map { |v| _to_hash(v) }
|
229
|
+
elsif value.is_a?(Hash)
|
230
|
+
{}.tap do |hash|
|
231
|
+
value.each { |k, v| hash[k] = _to_hash(v) }
|
232
|
+
end
|
233
|
+
elsif value.respond_to? :to_hash
|
234
|
+
value.to_hash
|
235
|
+
else
|
236
|
+
value
|
237
|
+
end
|
238
|
+
end
|
239
|
+
|
240
|
+
end
|
241
|
+
end
|