| line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
|
1
|
|
|
|
|
|
|
package Acme::Nogizaka46::SuzukiAyane; |
|
2
|
|
|
|
|
|
|
|
|
3
|
3
|
|
|
3
|
|
9
|
use strict; |
|
|
3
|
|
|
|
|
3
|
|
|
|
3
|
|
|
|
|
64
|
|
|
4
|
3
|
|
|
3
|
|
9
|
use warnings; |
|
|
3
|
|
|
|
|
3
|
|
|
|
3
|
|
|
|
|
57
|
|
|
5
|
|
|
|
|
|
|
|
|
6
|
3
|
|
|
3
|
|
10
|
use base qw(Acme::Nogizaka46::Base); |
|
|
3
|
|
|
|
|
3
|
|
|
|
3
|
|
|
|
|
319
|
|
|
7
|
|
|
|
|
|
|
|
|
8
|
|
|
|
|
|
|
our $VERSION = 0.2; |
|
9
|
|
|
|
|
|
|
|
|
10
|
|
|
|
|
|
|
sub info { |
|
11
|
|
|
|
|
|
|
return ( |
|
12
|
3
|
|
|
3
|
0
|
16
|
first_name_ja => '絢音', |
|
13
|
|
|
|
|
|
|
family_name_ja => '鈴木', |
|
14
|
|
|
|
|
|
|
first_name_en => 'Ayane', |
|
15
|
|
|
|
|
|
|
family_name_en => 'Suzuki', |
|
16
|
|
|
|
|
|
|
nick => [qw(あーちゃん)], |
|
17
|
|
|
|
|
|
|
birthday => $_[0]->_datetime_from_date('1999-03-05'), |
|
18
|
|
|
|
|
|
|
blood_type => 'O', |
|
19
|
|
|
|
|
|
|
hometown => '秋田', |
|
20
|
|
|
|
|
|
|
class => 2, |
|
21
|
|
|
|
|
|
|
center => undef, |
|
22
|
|
|
|
|
|
|
graduate_date => undef, |
|
23
|
|
|
|
|
|
|
); |
|
24
|
|
|
|
|
|
|
} |
|
25
|
|
|
|
|
|
|
|
|
26
|
|
|
|
|
|
|
1; |