-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcategory_Wa.json
More file actions
1770 lines (1770 loc) · 33.8 KB
/
category_Wa.json
File metadata and controls
1770 lines (1770 loc) · 33.8 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
[
{
"name": "Nao Wakana",
"favorite": "473",
"dateOfBirth": "1994 Feb 06",
"bloodType": "",
"cityOfBorn": "Tokyo",
"height": "171",
"bust": "88",
"waist": "59",
"hip": "88",
"hobby": "Yoga, Swimming, Piano",
"specialSkill": "",
"other": "2018年4月、Twitterにて2017年10月をもってAV女優を引退したことをツイート。引退宣言と同時に、dazzyのランジェリーモデルとして活動。"
},
{
"name": "Mizuki Hayakawa[早川瑞希,奥野絢子,宝田ありさ,星川希美,仲川美月,河原瞳]",
"favorite": "347",
"dateOfBirth": "1993 Nov 09",
"bloodType": "B",
"cityOfBorn": "Tokyo",
"height": "162",
"bust": "88",
"waist": "60",
"hip": "88",
"hobby": "Sport, massage",
"specialSkill": "",
"other": ""
},
{
"name": "Mizuna Wakatsuki[若槻みづな,渡邊里奈]",
"favorite": "191",
"dateOfBirth": "1995 Jan 19",
"bloodType": "",
"cityOfBorn": "",
"height": "169",
"bust": "99",
"waist": "66",
"hip": "97",
"hobby": "Housework",
"specialSkill": "パイズリ",
"other": ""
},
{
"name": "Maria Wakui",
"favorite": "157",
"dateOfBirth": "2000 Feb 08",
"bloodType": "",
"cityOfBorn": "Tokyo",
"height": "160",
"bust": "",
"waist": "",
"hip": "",
"hobby": "",
"specialSkill": "",
"other": ""
},
{
"name": "Hono Wakamiya[赤堀真凛]",
"favorite": "124",
"dateOfBirth": "1996 Oct 05",
"bloodType": "",
"cityOfBorn": "千葉県",
"height": "162",
"bust": "93",
"waist": "60",
"hip": "88",
"hobby": "お酒",
"specialSkill": "バドミントン",
"other": "愛称:ほにょ/マシュマロおっぱいとえくぼがチャームポイント/ペットはフェレット、猫2匹、犬"
},
{
"name": "Mirei Wakaba[Mirei]",
"favorite": "117",
"dateOfBirth": "1990 Sep 28",
"bloodType": "A",
"cityOfBorn": "Kanagawa",
"height": "168",
"bust": "82",
"waist": "58",
"hip": "88",
"hobby": "絵、写真",
"specialSkill": "",
"other": ""
},
{
"name": "Maria Wakatsuki[二ノ宮麗華,太田美穂,琴吹まりあ,吉津真理子,星まりあ,笹原由香,愛原まりあ,高槻真里菜]",
"favorite": "103",
"dateOfBirth": "1994 Oct 02",
"bloodType": "O",
"cityOfBorn": "Chiba",
"height": "162",
"bust": "82",
"waist": "56",
"hip": "84",
"hobby": "",
"specialSkill": "",
"other": ""
},
{
"name": "Sena Wakana",
"favorite": "98",
"dateOfBirth": "1978 Mar 14",
"bloodType": "A",
"cityOfBorn": "Tokyo",
"height": "158",
"bust": "84",
"waist": "58",
"hip": "83",
"hobby": "Snowboarding, Travel, Dance",
"specialSkill": "free travel",
"other": ""
},
{
"name": "Kanae Wakana",
"favorite": "98",
"dateOfBirth": "1996 Mar 14",
"bloodType": "O",
"cityOfBorn": "Osaka",
"height": "155",
"bust": "83",
"waist": "59",
"hip": "86",
"hobby": "",
"specialSkill": "",
"other": ""
},
{
"name": "Sherubee Wakatsuki",
"favorite": "89",
"dateOfBirth": "1992 Mar 05",
"bloodType": "O",
"cityOfBorn": "Portugal",
"height": "158",
"bust": "86",
"waist": "58",
"hip": "87",
"hobby": "",
"specialSkill": "Dance",
"other": ""
},
{
"name": "Ai Wakana",
"favorite": "83",
"dateOfBirth": "",
"bloodType": "O",
"cityOfBorn": "",
"height": "160",
"bust": "87",
"waist": "56",
"hip": "86",
"hobby": "",
"specialSkill": "",
"other": ""
},
{
"name": "Sara Shiina[Kokoro Noborito]",
"favorite": "75",
"dateOfBirth": "1995 Dec 03",
"bloodType": "",
"cityOfBorn": "",
"height": "149",
"bust": "78",
"waist": "58",
"hip": "87",
"hobby": "Mixed martial arts, Watching sports",
"specialSkill": "",
"other": ""
},
{
"name": "Hikaru Wakana",
"favorite": "71",
"dateOfBirth": "1985 Mar 06",
"bloodType": "O",
"cityOfBorn": "Kanagawa",
"height": "159",
"bust": "91",
"waist": "58",
"hip": "85",
"hobby": "Swimming, Animation",
"specialSkill": "体が柔らかい、確定申告ができる",
"other": ""
},
{
"name": "Akira Watase",
"favorite": "66",
"dateOfBirth": "1980 Jul 02",
"bloodType": "O",
"cityOfBorn": "Tokyo",
"height": "168",
"bust": "88",
"waist": "60",
"hip": "86",
"hobby": "Movies",
"specialSkill": "",
"other": "Shoe Size: 24.0cm"
},
{
"name": "Minami Wakana",
"favorite": "57",
"dateOfBirth": "",
"bloodType": "",
"cityOfBorn": "",
"height": "155",
"bust": "88",
"waist": "60",
"hip": "86",
"hobby": "",
"specialSkill": "",
"other": ""
},
{
"name": "Momo Watanabe",
"favorite": "56",
"dateOfBirth": "",
"bloodType": "",
"cityOfBorn": "",
"height": "149",
"bust": "90",
"waist": "61",
"hip": "90",
"hobby": "",
"specialSkill": "Calligraphy",
"other": ""
},
{
"name": "An Wakamoto",
"favorite": "56",
"dateOfBirth": "",
"bloodType": "",
"cityOfBorn": "",
"height": "150",
"bust": "90",
"waist": "62",
"hip": "88",
"hobby": "旅行,テニス,カラオケ",
"specialSkill": "",
"other": ""
},
{
"name": "Chisa Watanabe",
"favorite": "48",
"dateOfBirth": "1997 Oct 24",
"bloodType": "",
"cityOfBorn": "Wakayama",
"height": "152",
"bust": "76",
"waist": "56",
"hip": "86",
"hobby": "Reading, Observe people",
"specialSkill": "Volleyball, Cooking",
"other": ""
},
{
"name": "Kaori Wakamatsu",
"favorite": "40",
"dateOfBirth": "",
"bloodType": "",
"cityOfBorn": "",
"height": "162",
"bust": "90",
"waist": "58",
"hip": "89",
"hobby": "",
"specialSkill": "",
"other": ""
},
{
"name": "Mao Watanabe",
"favorite": "38",
"dateOfBirth": "2000 Aug 09",
"bloodType": "",
"cityOfBorn": "Miyagi",
"height": "155",
"bust": "85",
"waist": "58",
"hip": "84",
"hobby": "",
"specialSkill": "",
"other": ""
},
{
"name": "Ayumi Wakana[Eriko Otake]",
"favorite": "29",
"dateOfBirth": "",
"bloodType": "",
"cityOfBorn": "",
"height": "156",
"bust": "84",
"waist": "56",
"hip": "87",
"hobby": "",
"specialSkill": "",
"other": ""
},
{
"name": "Nana Wakui[Yuki Fuwari]",
"favorite": "26",
"dateOfBirth": "1991 Jul 24",
"bloodType": "",
"cityOfBorn": "Chiba",
"height": "153",
"bust": "85",
"waist": "57",
"hip": "82",
"hobby": "",
"specialSkill": "",
"other": ""
},
{
"name": "Kurumi Wakaba",
"favorite": "25",
"dateOfBirth": "1990 Dec 15",
"bloodType": "O",
"cityOfBorn": "Kanagawa",
"height": "161",
"bust": "84",
"waist": "58",
"hip": "83",
"hobby": "",
"specialSkill": "",
"other": ""
},
{
"name": "Sayumi Wakaba",
"favorite": "21",
"dateOfBirth": "",
"bloodType": "",
"cityOfBorn": "",
"height": "160",
"bust": "78",
"waist": "58",
"hip": "80",
"hobby": "",
"specialSkill": "",
"other": ""
},
{
"name": "Miho Wakabayashi[小室優奈]",
"favorite": "20",
"dateOfBirth": "1979 May 10",
"bloodType": "B",
"cityOfBorn": "東京都",
"height": "168",
"bust": "90",
"waist": "58",
"hip": "88",
"hobby": "",
"specialSkill": "",
"other": ""
},
{
"name": "Nanami Wakase",
"favorite": "20",
"dateOfBirth": "1985 Mar 07",
"bloodType": "",
"cityOfBorn": "",
"height": "163",
"bust": "85",
"waist": "58",
"hip": "85",
"hobby": "Nail art",
"specialSkill": "料理",
"other": ""
},
{
"name": "Juri Wakabayashi",
"favorite": "18",
"dateOfBirth": "1981 Mar 15",
"bloodType": "A",
"cityOfBorn": "",
"height": "166",
"bust": "88",
"waist": "57",
"hip": "85",
"hobby": "",
"specialSkill": "",
"other": ""
},
{
"name": "Rino Wakamiya[穂ひまり,井川希,古村栞]",
"favorite": "18",
"dateOfBirth": "",
"bloodType": "",
"cityOfBorn": "",
"height": "162",
"bust": "85",
"waist": "58",
"hip": "88",
"hobby": "",
"specialSkill": "",
"other": ""
},
{
"name": "Yumika Wada[和田百美花]",
"favorite": "17",
"dateOfBirth": "1960 Nov 30",
"bloodType": "",
"cityOfBorn": "",
"height": "155",
"bust": "90",
"waist": "64",
"hip": "84",
"hobby": "ショッピング",
"specialSkill": "料理",
"other": ""
},
{
"name": "Kaori Wakaba",
"favorite": "16",
"dateOfBirth": "1984 Jun 07",
"bloodType": "",
"cityOfBorn": "Okinawa",
"height": "150",
"bust": "86",
"waist": "56",
"hip": "80",
"hobby": "Karaoke",
"specialSkill": "",
"other": ""
},
{
"name": "Ryou Watase",
"favorite": "16",
"dateOfBirth": "",
"bloodType": "",
"cityOfBorn": "",
"height": "",
"bust": "84",
"waist": "60",
"hip": "85",
"hobby": "",
"specialSkill": "",
"other": ""
},
{
"name": "Ai Wakana",
"favorite": "16",
"dateOfBirth": "",
"bloodType": "",
"cityOfBorn": "",
"height": "",
"bust": "",
"waist": "",
"hip": "",
"hobby": "",
"specialSkill": "",
"other": ""
},
{
"name": "Yuna Wakui",
"favorite": "15",
"dateOfBirth": "1988 Feb 05",
"bloodType": "A",
"cityOfBorn": "",
"height": "158",
"bust": "84",
"waist": "56",
"hip": "85",
"hobby": "SHPPING&POEM",
"specialSkill": "電卓の早押し",
"other": ""
},
{
"name": "Sora Watanabe",
"favorite": "14",
"dateOfBirth": "",
"bloodType": "",
"cityOfBorn": "",
"height": "",
"bust": "",
"waist": "",
"hip": "",
"hobby": "",
"specialSkill": "",
"other": ""
},
{
"name": "Wakana Itsuki",
"favorite": "12",
"dateOfBirth": "1983 Feb 03",
"bloodType": "A",
"cityOfBorn": "Chiba",
"height": "148",
"bust": "82",
"waist": "57",
"hip": "83",
"hobby": "Fingernail Art",
"specialSkill": "ネイルアート",
"other": ""
},
{
"name": "Ami Wakatsuki",
"favorite": "10",
"dateOfBirth": "",
"bloodType": "",
"cityOfBorn": "",
"height": "",
"bust": "",
"waist": "",
"hip": "",
"hobby": "",
"specialSkill": "",
"other": ""
},
{
"name": "Naomi Wakatsuki",
"favorite": "9",
"dateOfBirth": "",
"bloodType": "A",
"cityOfBorn": "",
"height": "165",
"bust": "88",
"waist": "60",
"hip": "86",
"hobby": "",
"specialSkill": "",
"other": ""
},
{
"name": "Wakana Toyama",
"favorite": "9",
"dateOfBirth": "",
"bloodType": "",
"cityOfBorn": "",
"height": "162",
"bust": "86",
"waist": "57",
"hip": "85",
"hobby": "CRECTION ACCESSARY",
"specialSkill": "",
"other": ""
},
{
"name": "Hikaru Wakabayashi[三咲悠,細川恵美,若林由香梨,長岡ひろみ,若林留美]",
"favorite": "8",
"dateOfBirth": "1974 Jul 23",
"bloodType": "",
"cityOfBorn": "",
"height": "157",
"bust": "88",
"waist": "59",
"hip": "85",
"hobby": "",
"specialSkill": "",
"other": ""
},
{
"name": "Misako Wakamura",
"favorite": "8",
"dateOfBirth": "",
"bloodType": "",
"cityOfBorn": "",
"height": "",
"bust": "",
"waist": "",
"hip": "",
"hobby": "",
"specialSkill": "",
"other": ""
},
{
"name": "Hina Watanabe",
"favorite": "8",
"dateOfBirth": "",
"bloodType": "",
"cityOfBorn": "",
"height": "149",
"bust": "",
"waist": "",
"hip": "",
"hobby": "",
"specialSkill": "",
"other": ""
},
{
"name": "Kokona Wakasugi",
"favorite": "8",
"dateOfBirth": "",
"bloodType": "",
"cityOfBorn": "",
"height": "",
"bust": "84",
"waist": "57",
"hip": "89",
"hobby": "",
"specialSkill": "",
"other": ""
},
{
"name": "Suzu Wakana[浅倉ゆうな,若菜わかな]",
"favorite": "7",
"dateOfBirth": "1992 Aug 22",
"bloodType": "",
"cityOfBorn": "",
"height": "156",
"bust": "83",
"waist": "58",
"hip": "90",
"hobby": "Tennis, Badminton",
"specialSkill": "Cooking",
"other": ""
},
{
"name": "Rina Wakamiya",
"favorite": "6",
"dateOfBirth": "",
"bloodType": "",
"cityOfBorn": "",
"height": "",
"bust": "",
"waist": "",
"hip": "",
"hobby": "",
"specialSkill": "",
"other": ""
},
{
"name": "Wakana[Yumi Hanada, Sayaka Kusumi, Wakana Yamaguchi]",
"favorite": "6",
"dateOfBirth": "",
"bloodType": "",
"cityOfBorn": "",
"height": "154",
"bust": "89",
"waist": "60",
"hip": "88",
"hobby": "Watching movie",
"specialSkill": "",
"other": ""
},
{
"name": "Maki Wataya",
"favorite": "6",
"dateOfBirth": "",
"bloodType": "",
"cityOfBorn": "",
"height": "",
"bust": "",
"waist": "",
"hip": "",
"hobby": "",
"specialSkill": "",
"other": ""
},
{
"name": "Miku Watase",
"favorite": "5",
"dateOfBirth": "",
"bloodType": "",
"cityOfBorn": "",
"height": "",
"bust": "",
"waist": "",
"hip": "",
"hobby": "",
"specialSkill": "",
"other": ""
},
{
"name": "Yumiko Wakui",
"favorite": "5",
"dateOfBirth": "",
"bloodType": "",
"cityOfBorn": "Tokyo",
"height": "158",
"bust": "88",
"waist": "65",
"hip": "96",
"hobby": "",
"specialSkill": "",
"other": ""
},
{
"name": "Riho Watarase",
"favorite": "5",
"dateOfBirth": "",
"bloodType": "",
"cityOfBorn": "",
"height": "162",
"bust": "84",
"waist": "59",
"hip": "87",
"hobby": "",
"specialSkill": "",
"other": ""
},
{
"name": "Sakura Wakatsuki[Hinami Sora, Shiori Umehara]",
"favorite": "5",
"dateOfBirth": "1997 Sep 30",
"bloodType": "",
"cityOfBorn": "",
"height": "151",
"bust": "87",
"waist": "60",
"hip": "85",
"hobby": "",
"specialSkill": "",
"other": ""
},
{
"name": "Wasabi",
"favorite": "4",
"dateOfBirth": "",
"bloodType": "",
"cityOfBorn": "Tokyo",
"height": "",
"bust": "",
"waist": "",
"hip": "",
"hobby": "",
"specialSkill": "",
"other": ""
},
{
"name": "Hina Wakaba[さくらひなこ]",
"favorite": "4",
"dateOfBirth": "1987 Apr 01",
"bloodType": "",
"cityOfBorn": "Tokyo",
"height": "157",
"bust": "80",
"waist": "59",
"hip": "82",
"hobby": "Piano",
"specialSkill": "",
"other": ""
},
{
"name": "Wakana Aoi",
"favorite": "4",
"dateOfBirth": "1978 Apr 24",
"bloodType": "A",
"cityOfBorn": "Kanagawa Prefecture",
"height": "160",
"bust": "83",
"waist": "58",
"hip": "84",
"hobby": "Massage",
"specialSkill": "Classic Ballet",
"other": "Shoe Size: 24.0cm"
},
{
"name": "Shizuka Wakui",
"favorite": "4",
"dateOfBirth": "1973 Nov 30",
"bloodType": "",
"cityOfBorn": "",
"height": "",
"bust": "",
"waist": "",
"hip": "",
"hobby": "",
"specialSkill": "",
"other": ""
},
{
"name": "Riku Wakase[Yui Kawai, Aya Saitou]",
"favorite": "4",
"dateOfBirth": "1995 Mar 03",
"bloodType": "AB",
"cityOfBorn": "Fukuoka",
"height": "159",
"bust": "78",
"waist": "59",
"hip": "83",
"hobby": "Collecting beauty goods, Neil art",
"specialSkill": "",
"other": ""
},
{
"name": "Chinatsu Wakase",
"favorite": "3",
"dateOfBirth": "1983 Sep 13",
"bloodType": "A",
"cityOfBorn": "Tokyo",
"height": "156",
"bust": "87",
"waist": "53",
"hip": "80",
"hobby": "Swimming",
"specialSkill": "",
"other": "Sensitive Part: The whole body"
},
{
"name": "Juri Wakatsuki",
"favorite": "3",
"dateOfBirth": "1984 Dec 26",
"bloodType": "A",
"cityOfBorn": "Kanagawa Prefecture",
"height": "157",
"bust": "86",
"waist": "58",
"hip": "83",
"hobby": "Watching sports",
"specialSkill": "スノーボード",
"other": "Sensitive Part: Ears"
},
{
"name": "Mei Iwatsuki",
"favorite": "3",
"dateOfBirth": "1985 Nov 29",
"bloodType": "",
"cityOfBorn": "",
"height": "153",
"bust": "90",
"waist": "60",
"hip": "86",
"hobby": "Manicuring",
"specialSkill": "ダンス・アクセサリー作り",
"other": ""
},
{
"name": "Nene Wakana",
"favorite": "3",
"dateOfBirth": "",
"bloodType": "",
"cityOfBorn": "",
"height": "",
"bust": "",
"waist": "",
"hip": "",
"hobby": "",
"specialSkill": "",
"other": ""
},
{
"name": "Yurika Watanabe",
"favorite": "3",
"dateOfBirth": "",
"bloodType": "",
"cityOfBorn": "埼玉県",
"height": "158",
"bust": "81",
"waist": "55",
"hip": "87",
"hobby": "読書、体を動かすこと、食べること",
"specialSkill": "",
"other": ""
},
{
"name": "Mika Wakatsuki",
"favorite": "3",
"dateOfBirth": "",
"bloodType": "",
"cityOfBorn": "",
"height": "148",
"bust": "84",
"waist": "63",
"hip": "88",
"hobby": "Swimming",
"specialSkill": "Dancing",
"other": ""
},
{
"name": "Mei Watanabe",
"favorite": "3",
"dateOfBirth": "",
"bloodType": "",
"cityOfBorn": "",
"height": "",
"bust": "",
"waist": "",
"hip": "",
"hobby": "",
"specialSkill": "",
"other": ""
},
{
"name": "Tomomi Wakui",
"favorite": "3",
"dateOfBirth": "",
"bloodType": "",
"cityOfBorn": "",
"height": "",
"bust": "88",
"waist": "68",
"hip": "90",
"hobby": "",
"specialSkill": "",
"other": ""
},
{
"name": "Momo Wakabayashi",
"favorite": "2",
"dateOfBirth": "",
"bloodType": "",
"cityOfBorn": "",
"height": "",
"bust": "",
"waist": "",
"hip": "",
"hobby": "",
"specialSkill": "",
"other": ""
},
{
"name": "Marino Watase",
"favorite": "2",
"dateOfBirth": "1979 Dec 12",
"bloodType": "B",
"cityOfBorn": "Tokyo",
"height": "165",
"bust": "94",
"waist": "59",
"hip": "88",
"hobby": "Swimming",
"specialSkill": "Drum",
"other": ""
},
{
"name": "Rie Watashi",
"favorite": "2",
"dateOfBirth": "1976 Jan 01",
"bloodType": "",
"cityOfBorn": "",
"height": "154",
"bust": "87",
"waist": "63",
"hip": "86",
"hobby": "",
"specialSkill": "",
"other": ""
},
{
"name": "Akane Wakatuki[黒田麻世,松井理緒,田中真理菜]",
"favorite": "2",
"dateOfBirth": "1983 Nov 30",
"bloodType": "A",
"cityOfBorn": "",
"height": "162",
"bust": "83",
"waist": "58",
"hip": "83",
"hobby": "",
"specialSkill": "",
"other": ""
},
{
"name": "Yume Makatuki",
"favorite": "2",
"dateOfBirth": "",
"bloodType": "O",
"cityOfBorn": "Tokyo",
"height": "151",
"bust": "85",
"waist": "57",
"hip": "87",
"hobby": "Theater",
"specialSkill": "",
"other": ""
},
{
"name": "Miwa Katanabe",
"favorite": "2",
"dateOfBirth": "",
"bloodType": "",
"cityOfBorn": "",
"height": "152",
"bust": "91",
"waist": "59",
"hip": "88",
"hobby": "Classic Ballet",
"specialSkill": "",
"other": ""
},
{
"name": "Yuuko Wakui",
"favorite": "2",
"dateOfBirth": "",
"bloodType": "",
"cityOfBorn": "",
"height": "",
"bust": "",
"waist": "",
"hip": "",
"hobby": "",
"specialSkill": "",
"other": ""
},
{
"name": "Anna Watase[渡辺杏奈,沢渡杏里]",
"favorite": "2",
"dateOfBirth": "1984 Jul 14",
"bloodType": "",
"cityOfBorn": "Aichi",
"height": "160",
"bust": "80",
"waist": "55",
"hip": "79",
"hobby": "",
"specialSkill": "",
"other": ""
},
{
"name": "Akemi Washio",
"favorite": "2",
"dateOfBirth": "",
"bloodType": "",