activemodel 5.2.4 → 6.0.2.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +129 -65
- data/MIT-LICENSE +1 -1
- data/README.rdoc +4 -2
- data/lib/active_model.rb +1 -1
- data/lib/active_model/attribute.rb +3 -4
- data/lib/active_model/attribute/user_provided_default.rb +1 -2
- data/lib/active_model/attribute_assignment.rb +1 -1
- data/lib/active_model/attribute_methods.rb +54 -15
- data/lib/active_model/attribute_mutation_tracker.rb +88 -34
- data/lib/active_model/attribute_set.rb +2 -10
- data/lib/active_model/attribute_set/builder.rb +1 -3
- data/lib/active_model/attribute_set/yaml_encoder.rb +1 -2
- data/lib/active_model/attributes.rb +60 -33
- data/lib/active_model/callbacks.rb +10 -7
- data/lib/active_model/conversion.rb +1 -1
- data/lib/active_model/dirty.rb +36 -99
- data/lib/active_model/errors.rb +104 -20
- data/lib/active_model/gem_version.rb +4 -4
- data/lib/active_model/naming.rb +19 -3
- data/lib/active_model/railtie.rb +6 -0
- data/lib/active_model/secure_password.rb +47 -48
- data/lib/active_model/serializers/json.rb +10 -9
- data/lib/active_model/type/binary.rb +1 -1
- data/lib/active_model/type/date.rb +0 -4
- data/lib/active_model/type/date_time.rb +3 -7
- data/lib/active_model/type/float.rb +0 -2
- data/lib/active_model/type/helpers/accepts_multiparameter_time.rb +4 -0
- data/lib/active_model/type/helpers/numeric.rb +9 -2
- data/lib/active_model/type/helpers/time_value.rb +17 -4
- data/lib/active_model/type/integer.rb +7 -19
- data/lib/active_model/type/registry.rb +2 -10
- data/lib/active_model/type/string.rb +2 -2
- data/lib/active_model/type/time.rb +1 -5
- data/lib/active_model/validations.rb +0 -2
- data/lib/active_model/validations/acceptance.rb +33 -25
- data/lib/active_model/validations/clusivity.rb +1 -1
- data/lib/active_model/validations/confirmation.rb +2 -2
- data/lib/active_model/validations/inclusion.rb +1 -1
- data/lib/active_model/validations/length.rb +1 -1
- data/lib/active_model/validations/numericality.rb +2 -2
- data/lib/active_model/validations/validates.rb +2 -2
- data/lib/active_model/validator.rb +1 -1
- metadata +11 -8
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: b4361493397a7e9725e325a9bc85c14a62d3ce266c0d15559589a33d0a332d3d
|
4
|
+
data.tar.gz: 6756d7429476b91219a46a358583adfae81828c06f502625e7b93c45763b49cb
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b39eef293c79969e7cf34d409d84c14a35b5aef8f00dd5e787c5f8c4fb07a32ad7653b77b5f36f6d92eea3aa79c23f4db52b569b041fe7a9f03bfde7a5e2cc3b
|
7
|
+
data.tar.gz: f388266ffe9fcd133a0219c62510c395a771de5f9cd0f0fee537c510653bafb5671dcfe917a5d6a05a1e8c1d359c4731580bf3dda8ccb0e5103b29bbf1c0d95e
|
data/CHANGELOG.md
CHANGED
@@ -1,4 +1,29 @@
|
|
1
|
-
## Rails
|
1
|
+
## Rails 6.0.2.1 (December 18, 2019) ##
|
2
|
+
|
3
|
+
* No changes.
|
4
|
+
|
5
|
+
|
6
|
+
## Rails 6.0.2 (December 13, 2019) ##
|
7
|
+
|
8
|
+
* No changes.
|
9
|
+
|
10
|
+
|
11
|
+
## Rails 6.0.1 (November 5, 2019) ##
|
12
|
+
|
13
|
+
* No changes.
|
14
|
+
|
15
|
+
|
16
|
+
## Rails 6.0.0 (August 16, 2019) ##
|
17
|
+
|
18
|
+
* No changes.
|
19
|
+
|
20
|
+
|
21
|
+
## Rails 6.0.0.rc2 (July 22, 2019) ##
|
22
|
+
|
23
|
+
* No changes.
|
24
|
+
|
25
|
+
|
26
|
+
## Rails 6.0.0.rc1 (April 24, 2019) ##
|
2
27
|
|
3
28
|
* Type cast falsy boolean symbols on boolean attribute as false.
|
4
29
|
|
@@ -6,8 +31,36 @@
|
|
6
31
|
|
7
32
|
*Ryuta Kamizono*
|
8
33
|
|
34
|
+
* Change how validation error translation strings are fetched: The new behavior
|
35
|
+
will first try the more specific keys, including doing locale fallback, then try
|
36
|
+
the less specific ones.
|
37
|
+
|
38
|
+
For example, this is the order in which keys will now be tried for a `blank`
|
39
|
+
error on a `product`'s `title` attribute with current locale set to `en-US`:
|
9
40
|
|
10
|
-
|
41
|
+
en-US.activerecord.errors.models.product.attributes.title.blank
|
42
|
+
en-US.activerecord.errors.models.product.blank
|
43
|
+
en-US.activerecord.errors.messages.blank
|
44
|
+
|
45
|
+
en.activerecord.errors.models.product.attributes.title.blank
|
46
|
+
en.activerecord.errors.models.product.blank
|
47
|
+
en.activerecord.errors.messages.blank
|
48
|
+
|
49
|
+
en-US.errors.attributes.title.blank
|
50
|
+
en-US.errors.messages.blank
|
51
|
+
|
52
|
+
en.errors.attributes.title.blank
|
53
|
+
en.errors.messages.blank
|
54
|
+
|
55
|
+
*Hugo Vacher*
|
56
|
+
|
57
|
+
|
58
|
+
## Rails 6.0.0.beta3 (March 11, 2019) ##
|
59
|
+
|
60
|
+
* No changes.
|
61
|
+
|
62
|
+
|
63
|
+
## Rails 6.0.0.beta2 (February 25, 2019) ##
|
11
64
|
|
12
65
|
* Fix date value when casting a multiparameter date hash to not convert
|
13
66
|
from Gregorian date to Julian date.
|
@@ -15,109 +68,120 @@
|
|
15
68
|
Before:
|
16
69
|
|
17
70
|
Day.new({"day(1i)"=>"1", "day(2i)"=>"1", "day(3i)"=>"1"})
|
18
|
-
=> #<Day id: nil, day: "0001-01-03", created_at: nil, updated_at: nil>
|
71
|
+
# => #<Day id: nil, day: "0001-01-03", created_at: nil, updated_at: nil>
|
19
72
|
|
20
73
|
After:
|
21
74
|
|
22
75
|
Day.new({"day(1i)"=>"1", "day(2i)"=>"1", "day(3i)"=>"1"})
|
23
|
-
=> #<Day id: nil, day: "0001-01-01", created_at: nil, updated_at: nil>
|
76
|
+
# => #<Day id: nil, day: "0001-01-01", created_at: nil, updated_at: nil>
|
24
77
|
|
25
78
|
Fixes #28521.
|
26
79
|
|
27
80
|
*Sayan Chakraborty*
|
28
81
|
|
29
|
-
* Fix
|
30
|
-
by casting to `BigDecimal` on both ends of the validation.
|
31
|
-
|
32
|
-
*Gannon McGibbon*
|
82
|
+
* Fix year value when casting a multiparameter time hash.
|
33
83
|
|
84
|
+
When assigning a hash to a time attribute that's missing a year component
|
85
|
+
(e.g. a `time_select` with `:ignore_date` set to `true`) then the year
|
86
|
+
defaults to 1970 instead of the expected 2000. This results in the attribute
|
87
|
+
changing as a result of the save.
|
34
88
|
|
35
|
-
|
89
|
+
Before:
|
90
|
+
```
|
91
|
+
event = Event.new(start_time: { 4 => 20, 5 => 30 })
|
92
|
+
event.start_time # => 1970-01-01 20:30:00 UTC
|
93
|
+
event.save
|
94
|
+
event.reload
|
95
|
+
event.start_time # => 2000-01-01 20:30:00 UTC
|
96
|
+
```
|
36
97
|
|
37
|
-
|
98
|
+
After:
|
99
|
+
```
|
100
|
+
event = Event.new(start_time: { 4 => 20, 5 => 30 })
|
101
|
+
event.start_time # => 2000-01-01 20:30:00 UTC
|
102
|
+
event.save
|
103
|
+
event.reload
|
104
|
+
event.start_time # => 2000-01-01 20:30:00 UTC
|
105
|
+
```
|
38
106
|
|
107
|
+
*Andrew White*
|
39
108
|
|
40
|
-
## Rails 5.2.2 (December 04, 2018) ##
|
41
109
|
|
42
|
-
|
110
|
+
## Rails 6.0.0.beta1 (January 18, 2019) ##
|
43
111
|
|
44
|
-
|
112
|
+
* Internal calls to `human_attribute_name` on an `Active Model` now pass attributes as strings instead of symbols
|
113
|
+
in some cases.
|
45
114
|
|
46
|
-
|
115
|
+
This is in line with examples in Rails docs and puts the code in line with the intention -
|
116
|
+
the potential use of strings or symbols.
|
47
117
|
|
118
|
+
It is recommended to cast the attribute input to your desired type as if you you are overriding that methid.
|
48
119
|
|
49
|
-
|
120
|
+
*Martin Larochelle*
|
50
121
|
|
51
|
-
*
|
122
|
+
* Add `ActiveModel::Errors#of_kind?`.
|
52
123
|
|
124
|
+
*bogdanvlviv*, *Rafael Mendonça França*
|
53
125
|
|
54
|
-
|
55
|
-
|
56
|
-
* No changes.
|
57
|
-
|
126
|
+
* Fix numericality equality validation of `BigDecimal` and `Float`
|
127
|
+
by casting to `BigDecimal` on both ends of the validation.
|
58
128
|
|
59
|
-
|
129
|
+
*Gannon McGibbon*
|
60
130
|
|
61
|
-
*
|
131
|
+
* Add `#slice!` method to `ActiveModel::Errors`.
|
62
132
|
|
63
|
-
*
|
133
|
+
*Daniel López Prat*
|
64
134
|
|
65
|
-
*
|
135
|
+
* Fix numericality validator to still use value before type cast except Active Record.
|
66
136
|
|
67
|
-
Fixes #
|
137
|
+
Fixes #33651, #33686.
|
68
138
|
|
69
|
-
*
|
139
|
+
*Ryuta Kamizono*
|
70
140
|
|
71
|
-
* Fix
|
141
|
+
* Fix `ActiveModel::Serializers::JSON#as_json` method for timestamps.
|
72
142
|
|
73
|
-
|
143
|
+
Before:
|
144
|
+
```
|
145
|
+
contact = Contact.new(created_at: Time.utc(2006, 8, 1))
|
146
|
+
contact.as_json["created_at"] # => 2006-08-01 00:00:00 UTC
|
147
|
+
```
|
74
148
|
|
75
|
-
|
149
|
+
After:
|
150
|
+
```
|
151
|
+
contact = Contact.new(created_at: Time.utc(2006, 8, 1))
|
152
|
+
contact.as_json["created_at"] # => "2006-08-01T00:00:00.000Z"
|
153
|
+
```
|
76
154
|
|
77
|
-
*
|
155
|
+
*Bogdan Gusiev*
|
78
156
|
|
79
|
-
*
|
157
|
+
* Allows configurable attribute name for `#has_secure_password`. This
|
158
|
+
still defaults to an attribute named 'password', causing no breaking
|
159
|
+
change. There is a new method `#authenticate_XXX` where XXX is the
|
160
|
+
configured attribute name, making the existing `#authenticate` now an
|
161
|
+
alias for this when the attribute is the default 'password'.
|
80
162
|
|
81
|
-
|
163
|
+
Example:
|
82
164
|
|
83
|
-
|
165
|
+
class User < ActiveRecord::Base
|
166
|
+
has_secure_password :recovery_password, validations: false
|
167
|
+
end
|
84
168
|
|
85
|
-
|
169
|
+
user = User.new()
|
170
|
+
user.recovery_password = "42password"
|
171
|
+
user.recovery_password_digest # => "$2a$04$iOfhwahFymCs5weB3BNH/uX..."
|
172
|
+
user.authenticate_recovery_password('42password') # => user
|
86
173
|
|
87
|
-
*
|
88
|
-
values with more scale than the schema.
|
174
|
+
*Unathi Chonco*
|
89
175
|
|
90
|
-
|
176
|
+
* Add `config.active_model.i18n_customize_full_message` in order to control whether
|
177
|
+
the `full_message` error format can be overridden at the attribute or model
|
178
|
+
level in the locale files. This is `false` by default.
|
91
179
|
|
92
|
-
*
|
180
|
+
*Martin Larochelle*
|
93
181
|
|
94
|
-
|
182
|
+
* Rails 6 requires Ruby 2.5.0 or newer.
|
95
183
|
|
96
|
-
|
184
|
+
*Jeremy Daer*, *Kasper Timm Hansen*
|
97
185
|
|
98
|
-
Example:
|
99
186
|
|
100
|
-
|
101
|
-
person = Person.new
|
102
|
-
person.errors.keys # => []
|
103
|
-
person.errors.values # => []
|
104
|
-
person.errors.messages # => {}
|
105
|
-
person.errors[:name] # => []
|
106
|
-
person.errors.messages # => {:name => []}
|
107
|
-
person.errors.keys # => [:name]
|
108
|
-
person.errors.values # => [[]]
|
109
|
-
|
110
|
-
# After
|
111
|
-
person = Person.new
|
112
|
-
person.errors.keys # => []
|
113
|
-
person.errors.values # => []
|
114
|
-
person.errors.messages # => {}
|
115
|
-
person.errors[:name] # => []
|
116
|
-
person.errors.messages # => {:name => []}
|
117
|
-
person.errors.keys # => []
|
118
|
-
person.errors.values # => []
|
119
|
-
|
120
|
-
*bogdanvlviv*
|
121
|
-
|
122
|
-
|
123
|
-
Please check [5-1-stable](https://github.com/rails/rails/blob/5-1-stable/activemodel/CHANGELOG.md) for previous changes.
|
187
|
+
Please check [5-2-stable](https://github.com/rails/rails/blob/5-2-stable/activemodel/CHANGELOG.md) for previous changes.
|
data/MIT-LICENSE
CHANGED
data/README.rdoc
CHANGED
@@ -5,6 +5,8 @@ They allow for Action Pack helpers to interact with non-Active Record models,
|
|
5
5
|
for example. Active Model also helps with building custom ORMs for use outside of
|
6
6
|
the Rails framework.
|
7
7
|
|
8
|
+
You can read more about Active Model in the {Active Model Basics}[https://edgeguides.rubyonrails.org/active_model_basics.html] guide.
|
9
|
+
|
8
10
|
Prior to Rails 3.0, if a plugin or gem developer wanted to have an object
|
9
11
|
interact with Action Pack helpers, it was required to either copy chunks of
|
10
12
|
code from Rails, or monkey patch entire helpers to make them handle objects
|
@@ -239,7 +241,7 @@ The latest version of Active Model can be installed with RubyGems:
|
|
239
241
|
|
240
242
|
Source code can be downloaded as part of the Rails project on GitHub
|
241
243
|
|
242
|
-
* https://github.com/rails/rails/tree/
|
244
|
+
* https://github.com/rails/rails/tree/master/activemodel
|
243
245
|
|
244
246
|
|
245
247
|
== License
|
@@ -253,7 +255,7 @@ Active Model is released under the MIT license:
|
|
253
255
|
|
254
256
|
API documentation is at:
|
255
257
|
|
256
|
-
*
|
258
|
+
* https://api.rubyonrails.org
|
257
259
|
|
258
260
|
Bug reports for the Ruby on Rails project can be filed here:
|
259
261
|
|
data/lib/active_model.rb
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
2
|
|
3
3
|
#--
|
4
|
-
# Copyright (c) 2004-
|
4
|
+
# Copyright (c) 2004-2019 David Heinemeier Hansson
|
5
5
|
#
|
6
6
|
# Permission is hereby granted, free of charge, to any person obtaining
|
7
7
|
# a copy of this software and associated documentation files (the
|
@@ -133,10 +133,6 @@ module ActiveModel
|
|
133
133
|
end
|
134
134
|
|
135
135
|
protected
|
136
|
-
|
137
|
-
attr_reader :original_attribute
|
138
|
-
alias_method :assigned?, :original_attribute
|
139
|
-
|
140
136
|
def original_value_for_database
|
141
137
|
if assigned?
|
142
138
|
original_attribute.original_value_for_database
|
@@ -146,6 +142,9 @@ module ActiveModel
|
|
146
142
|
end
|
147
143
|
|
148
144
|
private
|
145
|
+
attr_reader :original_attribute
|
146
|
+
alias :assigned? :original_attribute
|
147
|
+
|
149
148
|
def initialize_dup(other)
|
150
149
|
if defined?(@value) && @value.duplicable?
|
151
150
|
@value = @value.dup
|
@@ -27,7 +27,7 @@ module ActiveModel
|
|
27
27
|
# cat.status # => 'sleeping'
|
28
28
|
def assign_attributes(new_attributes)
|
29
29
|
if !new_attributes.respond_to?(:stringify_keys)
|
30
|
-
raise ArgumentError, "When assigning attributes, you must pass a hash as an argument."
|
30
|
+
raise ArgumentError, "When assigning attributes, you must pass a hash as an argument, #{new_attributes.class} passed."
|
31
31
|
end
|
32
32
|
return if new_attributes.empty?
|
33
33
|
|
@@ -286,12 +286,12 @@ module ActiveModel
|
|
286
286
|
method_name = matcher.method_name(attr_name)
|
287
287
|
|
288
288
|
unless instance_method_already_implemented?(method_name)
|
289
|
-
generate_method = "define_method_#{matcher.
|
289
|
+
generate_method = "define_method_#{matcher.target}"
|
290
290
|
|
291
291
|
if respond_to?(generate_method, true)
|
292
292
|
send(generate_method, attr_name.to_s)
|
293
293
|
else
|
294
|
-
define_proxy_call true, generated_attribute_methods, method_name, matcher.
|
294
|
+
define_proxy_call true, generated_attribute_methods, method_name, matcher.target, attr_name.to_s
|
295
295
|
end
|
296
296
|
end
|
297
297
|
end
|
@@ -352,53 +352,54 @@ module ActiveModel
|
|
352
352
|
|
353
353
|
def attribute_method_matchers_matching(method_name)
|
354
354
|
attribute_method_matchers_cache.compute_if_absent(method_name) do
|
355
|
-
#
|
356
|
-
#
|
355
|
+
# Bump plain matcher to last place so that only methods that do not
|
356
|
+
# match any other pattern match the actual attribute name.
|
357
|
+
# This is currently only needed to support legacy usage.
|
357
358
|
matchers = attribute_method_matchers.partition(&:plain?).reverse.flatten(1)
|
358
|
-
matchers.map { |
|
359
|
+
matchers.map { |matcher| matcher.match(method_name) }.compact
|
359
360
|
end
|
360
361
|
end
|
361
362
|
|
362
363
|
# Define a method `name` in `mod` that dispatches to `send`
|
363
364
|
# using the given `extra` args. This falls back on `define_method`
|
364
365
|
# and `send` if the given names cannot be compiled.
|
365
|
-
def define_proxy_call(include_private, mod, name,
|
366
|
+
def define_proxy_call(include_private, mod, name, target, *extra)
|
366
367
|
defn = if NAME_COMPILABLE_REGEXP.match?(name)
|
367
368
|
"def #{name}(*args)"
|
368
369
|
else
|
369
370
|
"define_method(:'#{name}') do |*args|"
|
370
371
|
end
|
371
372
|
|
372
|
-
extra = (extra.map!(&:inspect) << "*args").join(", "
|
373
|
+
extra = (extra.map!(&:inspect) << "*args").join(", ")
|
373
374
|
|
374
|
-
|
375
|
-
"#{"self." unless include_private}#{
|
375
|
+
body = if CALL_COMPILABLE_REGEXP.match?(target)
|
376
|
+
"#{"self." unless include_private}#{target}(#{extra})"
|
376
377
|
else
|
377
|
-
"send(:'#{
|
378
|
+
"send(:'#{target}', #{extra})"
|
378
379
|
end
|
379
380
|
|
380
381
|
mod.module_eval <<-RUBY, __FILE__, __LINE__ + 1
|
381
382
|
#{defn}
|
382
|
-
#{
|
383
|
+
#{body}
|
383
384
|
end
|
384
385
|
RUBY
|
385
386
|
end
|
386
387
|
|
387
388
|
class AttributeMethodMatcher #:nodoc:
|
388
|
-
attr_reader :prefix, :suffix, :
|
389
|
+
attr_reader :prefix, :suffix, :target
|
389
390
|
|
390
|
-
AttributeMethodMatch = Struct.new(:target, :attr_name
|
391
|
+
AttributeMethodMatch = Struct.new(:target, :attr_name)
|
391
392
|
|
392
393
|
def initialize(options = {})
|
393
394
|
@prefix, @suffix = options.fetch(:prefix, ""), options.fetch(:suffix, "")
|
394
395
|
@regex = /^(?:#{Regexp.escape(@prefix)})(.*)(?:#{Regexp.escape(@suffix)})$/
|
395
|
-
@
|
396
|
+
@target = "#{@prefix}attribute#{@suffix}"
|
396
397
|
@method_name = "#{prefix}%s#{suffix}"
|
397
398
|
end
|
398
399
|
|
399
400
|
def match(method_name)
|
400
401
|
if @regex =~ method_name
|
401
|
-
AttributeMethodMatch.new(
|
402
|
+
AttributeMethodMatch.new(target, $1)
|
402
403
|
end
|
403
404
|
end
|
404
405
|
|
@@ -474,5 +475,43 @@ module ActiveModel
|
|
474
475
|
def _read_attribute(attr)
|
475
476
|
__send__(attr)
|
476
477
|
end
|
478
|
+
|
479
|
+
module AttrNames # :nodoc:
|
480
|
+
DEF_SAFE_NAME = /\A[a-zA-Z_]\w*\z/
|
481
|
+
|
482
|
+
# We want to generate the methods via module_eval rather than
|
483
|
+
# define_method, because define_method is slower on dispatch.
|
484
|
+
# Evaluating many similar methods may use more memory as the instruction
|
485
|
+
# sequences are duplicated and cached (in MRI). define_method may
|
486
|
+
# be slower on dispatch, but if you're careful about the closure
|
487
|
+
# created, then define_method will consume much less memory.
|
488
|
+
#
|
489
|
+
# But sometimes the database might return columns with
|
490
|
+
# characters that are not allowed in normal method names (like
|
491
|
+
# 'my_column(omg)'. So to work around this we first define with
|
492
|
+
# the __temp__ identifier, and then use alias method to rename
|
493
|
+
# it to what we want.
|
494
|
+
#
|
495
|
+
# We are also defining a constant to hold the frozen string of
|
496
|
+
# the attribute name. Using a constant means that we do not have
|
497
|
+
# to allocate an object on each call to the attribute method.
|
498
|
+
# Making it frozen means that it doesn't get duped when used to
|
499
|
+
# key the @attributes in read_attribute.
|
500
|
+
def self.define_attribute_accessor_method(mod, attr_name, writer: false)
|
501
|
+
method_name = "#{attr_name}#{'=' if writer}"
|
502
|
+
if attr_name.ascii_only? && DEF_SAFE_NAME.match?(attr_name)
|
503
|
+
yield method_name, "'#{attr_name}'.freeze"
|
504
|
+
else
|
505
|
+
safe_name = attr_name.unpack1("h*")
|
506
|
+
const_name = "ATTR_#{safe_name}"
|
507
|
+
const_set(const_name, attr_name) unless const_defined?(const_name)
|
508
|
+
temp_method_name = "__temp__#{safe_name}#{'=' if writer}"
|
509
|
+
attr_name_expr = "::ActiveModel::AttributeMethods::AttrNames::#{const_name}"
|
510
|
+
yield temp_method_name, attr_name_expr
|
511
|
+
mod.alias_method method_name, temp_method_name
|
512
|
+
mod.undef_method temp_method_name
|
513
|
+
end
|
514
|
+
end
|
515
|
+
end
|
477
516
|
end
|
478
517
|
end
|