-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path7th_javascript_e.html
4100 lines (4100 loc) · 161 KB
/
7th_javascript_e.html
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
<!DOCTYPE html>
<html>
<head>
<META http-equiv=Content-Type content="text/html; charset=us-ascii">
<title>Novel generator 7thnovels</title>
</head>
<body>
<script type="text/javascript">
<!--
v=new Array();
z=new Array();
cc=new Array();
cv=new Array();
c_count=0;
Capital_flag=0;
function r(p)
{
rr=Math.random()*p;
return(Math.floor(rr)+1.0);
}
function t(p)
{
if(c_count==0&&Capital_flag==1)
{
c_text_count=0;
while(c_text_count<p.length)
{
if(p[c_text_count]!=' ')
{
document.write(p.substring(0,c_text_count+1).toUpperCase());
document.write(p.substring(c_text_count+1));
Capital_flag=0;
break;
}
else
{
c_text_count++;
}
}
}
else
{
document.write(p);
}
c_count++;
}
function h(p)
{
hh(p);
}
function hh(pp)
{
if( typeof v[pp] != "undefined" )
{
document.write(v[pp]);
}
else
{
document.write(pp);
}
}
function n()
{
if(c_count!=0)
{
document.write("<BR>");
Capital_flag=1;
}
c_count=0;
}
function v_l(p)
{
if( typeof cc[p] != "undefined" )
{
return(cc[p]);
}
else
{
return(0);
}
}
function value_level(p)
{
if( typeof cv[p] != "undefined" )
{
return(cv[p]);
}
else
{
return(0);
}
}
function c_min(a)
{
a0=9999;
for(i in a)
{
if(v_l(a[i])<a0) a0=v_l(a[i]);
}
return(a0);
}
function level_max(a)
{
a0=0;
for(i in a)
{
if(value_level(a[i])>a0) a0=value_level(a[i]);
}
return(a0);
}
function s_l(a)
{
aa=sk_l(a);
aaa=ls_l(aa);
aaaa=ss_l(aaa);
return(aaaa);
}
function sk_l(a)
{
aa=new Array();
for(i in a)
{
if( typeof z["KN"+a[i]]=="undefined"||z["KN"+a[i]]==0)
aa.push(a[i]);
}
return(aa);
}
function ss_l(a)
{
aa=new Array();
a0=c_min(a);
for(i in a)
{
if( v_l(a[i])==a0)aa.push(a[i]);
}
return(aa);
}
function ls_l(a)
{
aa=new Array();
a0=level_max(a);
for(i in a)
{
if( value_level(a[i])==a0)aa.push(a[i]);
}
return(aa);
}
function e_l(a)
{
e_ll(s_l(a));
}
function e_ll(a)
{
if(a.length>0){
i=Math.floor(Math.random()*a.length);
eval("t"+a[i]+"()");
}
}
function c_l(p)
{
if( typeof cc[p] != "undefined" )
{
cc[p]++;
}
else
{
cc[p]=1;
}
}
function level_up(p)
{
if( typeof cv[p] != "undefined" )
{
cv[p]++;
}
else
{
cv[p]=1;
}
}
function level_down(p)
{
if(( typeof cv[p] != "undefined" )&&(cv[p]>0))
{
cv[p]--;
}
}
function t1(){
c_l("1");
t3();
}
function t2(){
c_l("2");
t5();
h("title_line");
h("title_mes");
t(" ");h("whore");
h("title_line");
n();
}
function t3(){
c_l("3");
c_count++;
n();
c_count++;
n();
h("title_line");
t("English Version 1.00 by Yuki Nanotabi");h("title_line");
n();
}
function t4(){
c_l("4");
if(v["%initial_flag"] == 0){ t2();}if(v["%initial_flag"] == 0){ t8();}if(typeof v["%No"]=="undefined") v["%No"]=1; else v["%No"]++;
c_count++;
n();
t(" ");h("%No");
t(".");n();
c_count++;
n();
}
function t5(){
c_l("5");
v["title_line"]="-----------";
v["title_mes"]="7thnovels Erotic short story of Japanese";
}
function t6(){
c_l("6");
v["whore"]="wife whore";
}
function t7(){
c_l("7");
v["whore"]="student whore";
}
function t8(){
c_l("8");
t14();
t33();
t100();
v["%initial_flag"]="1";
}
function t9(){
c_l("9");
as9=new Array("10","11","12","13");
e_l(as9);
}
function t10(){
c_l("10");
v["soup"]="tomato soup";
}
function t11(){
c_l("11");
v["soup"]="corn soup";
}
function t12(){
c_l("12");
v["soup"]="minestrone soup";
}
function t13(){
c_l("13");
v["soup"]="chicken soup";
}
function t14(){
c_l("14");
v["Yuki"]="Yuki";
v["Yuki's"]="Yuki's";
}
function t15(){
c_l("15");
v["he"]="he";
v["his"]="his";
v["him"]="him";
}
function t16(){
c_l("16");
v["he"]="groper";
v["his"]="groper's";
v["him"]="groper";
}
function t17(){
c_l("17");
as17=new Array("18","19","20","21","22","23","26","24","25","27","28","30");
e_l(as17);
}
function t18(){
c_l("18");
v["he"]="Akio";
v["his"]="Akio's";
v["him"]="Akio";
}
function t19(){
c_l("19");
v["he"]="Akira";
v["his"]="Akira's";
v["him"]="Akira";
}
function t20(){
c_l("20");
v["he"]="Jo";
v["his"]="Jo's";
v["him"]="Jo";
}
function t21(){
c_l("21");
v["he"]="George";
v["his"]="George's";
v["him"]="Geroge";
}
function t22(){
c_l("22");
v["he"]="Kazuo";
v["his"]="Kazuo's";
v["him"]="Kazuo";
}
function t23(){
c_l("23");
v["he"]="Ken";
v["his"]="Ken's";
v["him"]="Ken";
}
function t24(){
c_l("24");
v["he"]="Yuji";
v["his"]="Yuji's";
v["him"]="Yuji";
}
function t25(){
c_l("25");
v["he"]="Sigeru";
v["his"]="Sigeru's";
v["him"]="Sigeru";
}
function t26(){
c_l("26");
v["he"]="Hideo";
v["his"]="Hideo's";
v["him"]="Hideo";
}
function t27(){
c_l("27");
v["he"]="Tatso";
v["his"]="Tatso's";
v["him"]="Tatso";
}
function t28(){
c_l("28");
v["he"]="Tetsuro";
v["his"]="Tetsuro's";
v["him"]="Tetsuro";
}
function t29(){
c_l("29");
v["he"]="Tomo";
v["his"]="Tomo's";
v["him"]="Tomo";
}
function t30(){
c_l("30");
v["he"]="Yuta";
v["his"]="Yuta's";
v["him"]="Yuta";
}
function t31(){
c_l("31");
v["my friend"]="senior";
}
function t32(){
c_l("32");
v["my friend"]="high school girl";
}
function t33(){
c_l("33");
as33=new Array("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");
e_l(as33);
}
function t34(){
c_l("34");
v["my friend"]="Aki";
}
function t35(){
c_l("35");
v["my friend"]="Ami";
}
function t36(){
c_l("36");
v["my friend"]="Ayaka";
}
function t37(){
c_l("37");
v["my friend"]="Ayumi";
}
function t38(){
c_l("38");
v["my friend"]="Emi";
}
function t39(){
c_l("39");
v["my friend"]="Emiko";
}
function t40(){
c_l("40");
v["my friend"]="Eri";
}
function t41(){
c_l("41");
v["my friend"]="Kazuko";
}
function t42(){
c_l("42");
v["my friend"]="Kazumi";
}
function t43(){
c_l("43");
v["my friend"]="Keiko";
}
function t44(){
c_l("44");
v["my friend"]="Reiko";
}
function t45(){
c_l("45");
v["my friend"]="Rie";
}
function t46(){
c_l("46");
v["my friend"]="Rieko";
}
function t47(){
c_l("47");
v["my friend"]="Remi";
}
function t48(){
c_l("48");
v["my friend"]="Rena";
}
function t49(){
c_l("49");
v["my friend"]="Sanae";
}
function t50(){
c_l("50");
v["my friend"]="Saori";
}
function t51(){
c_l("51");
v["my friend"]="Manami";
}
function t52(){
c_l("52");
v["my friend"]="Mari";
}
function t53(){
c_l("53");
v["my friend"]="Marie";
}
function t54(){
c_l("54");
v["my friend"]="Mariko";
}
function t55(){
c_l("55");
v["my friend"]="Mika";
}
function t56(){
c_l("56");
v["my friend"]="Misa";
}
function t57(){
c_l("57");
v["my friend"]="Nanae";
}
function t58(){
c_l("58");
v["my friend"]="Nanako";
}
function t59(){
c_l("59");
v["my friend"]="Naoko";
}
function t60(){
c_l("60");
v["my friend"]="Naomi";
}
function t61(){
c_l("61");
v["my friend"]="Yayoi";
}
function t62(){
c_l("62");
v["my friend"]="Yosie";
}
function t63(){
c_l("63");
v["my friend"]="Yuka";
}
function t64(){
c_l("64");
v["my friend"]="Yuki";
}
function t65(){
c_l("65");
v["my friend"]="Yumi";
}
function t66(){
c_l("66");
as66=new Array("67","68","69","70");
e_l(as66);
}
function t67(){
c_l("67");
v["first food shop"]="Lotteria";
}
function t68(){
c_l("68");
v["first food shop"]="McDonald's";
}
function t69(){
c_l("69");
v["first food shop"]="Wendy's";
}
function t70(){
c_l("70");
v["first food shop"]="Kentucky's";
}
function t71(){
c_l("71");
as71=new Array("73","74","75");
e_l(as71);
}
function t72(){
c_l("72");
as72=new Array("73","74");
e_l(as72);
}
function t73(){
c_l("73");
v["prefecture"]="Hokkaido";
}
function t74(){
c_l("74");
v["prefecture"]="Aomori";
}
function t75(){
c_l("75");
v["prefecture"]="Kumamoto";
}
function t76(){
c_l("76");
as76=new Array("77","78","79","80");
e_l(as76);
}
function t77(){
c_l("77");
v["downtown"]="Ikebukuro";
}
function t78(){
c_l("78");
v["downtown"]="Shinjuku";
}
function t79(){
c_l("79");
v["downtown"]="Shibuya";
}
function t80(){
c_l("80");
v["downtown"]="Ropponngi";
}
function t81(){
c_l("81");
as81=new Array("82","83","84","85","86","87");
e_l(as81);
}
function t82(){
c_l("82");
v["bid club"]="PINK HOUSE";
}
function t83(){
c_l("83");
v["bid club"]="CHERRY HOUSE";
}
function t84(){
c_l("84");
v["bid club"]="BLACK CAT";
}
function t85(){
c_l("85");
v["bid club"]="PINK CAT";
}
function t86(){
c_l("86");
v["bid club"]="ROSY CAT";
}
function t87(){
c_l("87");
v["bid club"]="ROSE GARDEN";
}
function t88(){
c_l("88");
as88=new Array("89","90","91","92");
e_l(as88);
}
function t89(){
c_l("89");
v["bid price"]="30000";
}
function t90(){
c_l("90");
v["bid price"]="40000";
}
function t91(){
c_l("91");
v["bid price"]="50000";
}
function t92(){
c_l("92");
v["bid price"]="60000";
}
function t93(){
c_l("93");
as93=new Array("94","95");
e_l(as93);
}
function t94(){
c_l("94");
v["price of panties"]="50000yen";
v["price of both panties"]="100000yen";
}
function t95(){
c_l("95");
v["price of panties"]="100000yen";
v["price of both panties"]="200000yen";
}
function t96(){
c_l("96");
as96=new Array("97","98","99");
e_l(as96);
}
function t97(){
c_l("97");
v["theme of lecture"]="Educational law";
}
function t98(){
c_l("98");
v["theme of lecture"]="History of education";
}
function t99(){
c_l("99");
v["theme of lecture"]="History of psychology";
}
function t100(){
c_l("100");
v["penis"]="cock";
}
function t101(){
c_l("101");
t("When we entered the room, I found big round bed at center of room.");n();
t("Big bed was covered with purple seat trimmed by lace, and I could see also a bright colored chandelier hanging from ceiling.");n();
t("All the things were designed to enable guests to spend fully enjoyable time.");n();
}
function t102(){
c_l("102");
t(" When autumn had come, Athletic meet was going to be held by my husband's company.");n();
t("In these days it is very rare that company hold Athletic meet for its employees.");n();
t("But my husband's company is very old one so Athletic meet is held annually and families of employees are used to attend and enjoy Athletic meet.");n();
t("It was very tiresome to prepare athletic wears and box of lunch previous day.");n();
t("But I felt like going back to the previous day of Athletic meet when I was still junior high school girl.");n();
t("Company's ground is located in Huchu city near Tokyo and being used by Company's Rugby team.");n();
t("On the broad ground white lines are drawn as a figure of circular athletic tracks.");n();
t("I and my husband took a seat where rope was stretched to separate seat and tracks.");n();
t("There were many families and there voices scolding there child were loudly reached around all the ground.");n();
t("I attended the three-legged race with my husband by chance.");n();
t("Because three-legged race was since athletic meet in the junior high school, I felt a little sentimental remembering school days.");n();
}
function t103(){
c_l("103");
t(" After marriage I have been wearing sober dresses, but ");h("my friend");
t(" is still single and seemed to enjoy herself wearing sexy dresses.");n();
t("But I worried about her transparent tennis dress because it is too sexy.");n();
}
function t104(){
c_l("104");
t("When the beauty contest began and ");h("my friend");
t(" appeared on the stage, all the boys were excited and gave cheers from everywhere.");n();
t("Moderator had started the announcment and began the introduction of girls, but the atmosphere of the hall was almost crazy.");n();
t("And at last by clapping of the audience ");h("my friend");
t(" was chosen as a miss University.");n();
h("my friend");
t(" has received travel ticket form Judge Chair man and were going down of the steps of stage ,but Chairman detained her saying that \"miss University must do Judge and presenter of the following karaoke contest. It's a duty of winner of beauty contest.\"");n();
}
function t105(){
c_l("105");
t("I could not help her myself, so I returned hurriedly back to tennis court for help. Just aside tennis court there were some boys, so I return with them to help ");h("my friend");
t(".");n();
t("They entered the pond up to knee and held up ");h("my friend");
t(" and untied tangled ropes.");n();
t("When ");h("my friend");
t(" was laid down to the ground out from pond she was drenched all over her transparent tennis dress and also her tit under brassier and pubic hair beneath wet ruffled tennis panties were exposed clearly under the eyes of boys.");n();
t("One of boys shouted at crazy voice \"Dirty Bitch. You want cock. You fucking slut\" then I noticed that they were the same boys we had quarreled just while ago.");n();
t("They pushed down her again to the muddy water and I was also pushed down into pond. ");n();
}
function t106(){
c_l("106");
t("Next Sunday, I went with my husband to rugby ground.");n();
t("Just aside ground there are small tent and every girls are changing into cheer girl costume.");n();
t("Girls were seemed to be gathered from every division of his company.");n();
t("I also handed a brilliant red costume of cheer girl.");n();
t("So I tried to wear it but cannot fasten the fastener of back any way.");n();
t("Another girl said to me \"I said that costume is very small and how fat you are! How is your weight? Bitch\"");n();
t("I was very surprised by her saying and could not answer a single word.");n();
t("When I went out tent and return to my husband, he noticed that I could not change into cheer girl costume.");n();
t("He looked very cross and get angry, and said nothing to me.");n();
}
function t107(){
c_l("107");
t("When we arrived at the tennis court we found many boys playing tennis.");n();
t("We were going to locker room to change into tennis wear.");n();
}
function t108(){
c_l("108");
t("My husband had come home Saturday evening earlier than usual.");n();
t("After dinner he started to me that \"You had been a cheer girl when you are University student. don't you?\"");n();
t("I certainly remembered that I had been in cheer leading group and had cheered soccer game few times.");n();
t("So I answered \"Yes, but why you asking me such a thing?\"");n();
t("Then my husband continued that \"You know our company had rugby team, but it will be dismissed because of our company's restructuring\"");n();
t("\"So cheer leading team was also dismissed\"");n();
t("\"Cheer leading team was employed especially from University cheer leading team\"");n();
t("\"So cheer girls were all moved to cheer leading team of another company.\"");n();
t("\"But our rugby team had wined the final big game.\"");n();
t("\"So our team must face to winner of student championship.\"");n();
t("\"And it will be a last game of our rugby team.\"");n();
t("\"But cheer leading team had been already dismissed.\"");n();
t("\"This final game will be broadcasted on TV.\"");n();
t("\"So it will be a shame of our company with out good looking cheer leading girls\"");n();
t("\"I was asked to join you to the temporally cheer leading team\"");n();
t("\"Costume of cheer girl is very small size so you would be fit very well\"");n();
t("\"Are you going to be a cheer girl, aren't you?\"");n();
t("And he added \"Please.\"");n();
t("I agreed because of broadcast on TV.");n();
}
function t109(){
c_l("109");
t(" \"I think No way.\" I said to ");h("my friend");
t(" and she suggested \"well, I know. But we can watch the performance of cheer leading.\"");n();
t(" So we entered into the tennis court.");n();
t("There were benches lined in front of court for audience and many boys were sitting waiting for the beginning of performance but no girl was seen.");n();
t("This University was mainly subjected in technology and science.");n();
t("So students were almost boys, and cheer girls seem to be student of Woman University near here.");n();
t("After the performance of cheer leading we leaved the tennis court and were going to buy crepes at a food stall, just then I heard voice of guy from behind \"My dear sweetie.\"");n();
t("I turned around and saw skin headed guy wearing black student uniform.");n();
t("He seemed to be a member of cheer group of this University.");n();
t("He said politely \"You look so beautiful. So would you please entry beauty contest right now. My dear\" and ");h("my friend");
t(" started to laugh because of his politeness.");n();
t("But hearing that the prize of contest was travel ticket for Singapore, we decided to entry beauty contest of this university festival for fun.");n();
}
function t110(){
c_l("110");
t(" Crying meaningless words loudly Boys rushed me and ");h("my friend");
t(".");n();
t("My body was falling headlong under the water like a small boat in the storm.");n();
t368();
}
function t111(){
c_l("111");
t("They tried to say something but at last they stopped playing tennis and got out of tennis court with their baggage.");n();
}
function t112(){
c_l("112");
t(" I and ");h("my friend");
t(" were guided to seats in front of the stage and Karaoke contest had started.");n();
t("I thought that Karaoke contest is competing karaoke song but each teams had made every kind of invention, various kind of dancing and costumes.");n();
t("It was almost musical show had being performed in front of me.");n();
t("But when teams of tennis club appeared to the stage all the hall was getting noisy.");n();
t("They began dancing but it was very kinky and nasty.");n();
t("And then one of dancers picked up a girl wearing tennis dress from seat near by me, and pulled up her on the stage.");n();
t("Members of tennis club had push down her on the floor of stage, while she was screaming, and dancing like the gang bang had started in front of me.");n();
t("One of boy was even shaking his hip up and down upon her bottom.");n();
t("But girl underneath him also started shaking her bottom up and down too, and I notice that he not her were a boy dressed in tennis dress and ruffled tennis panties.");n();
}
function t113(){
c_l("113");
as113=new Array("114","115","116","117");
e_l(as113);
}
function t114(){
c_l("114");
v["waight_gain"]="6Kg";
}
function t115(){
c_l("115");
v["waight_gain"]="5Kg";
}
function t116(){
c_l("116");
v["waight_gain"]="4Kg";
}
function t117(){
c_l("117");
v["waight_gain"]="3Kg";
}
function t118(){
c_l("118");
t113();
t("Next day, I bought the weight scale and measured my weight.");n();
t("I found that I had gained ");h("waight_gain");
t(" more than when I was a university student, and I was shocked much.");n();
}
function t119(){
c_l("119");
t("So I called ");h("my friend");
t(" my old friend on the phone and talk about how to loss the weight.");n();
t("She honestly suggested me to practice tennis with her and we have a appointment to play tennis at the court for university staffs where we used to play next Sunday.");n();
}
function t120(){
c_l("120");
t(" When the summer was nearer, my husband suggested me to participate in tennis party held by his company.");n();
t("He said that he want play tennis pair with me.");n();
t("But I feel something suspicious in his way of saying.");n();
t("So I inquired about this tennis party from wife of my husband's colleague.");n();
t("She suggested me that my husband had tried to pair with another young girl of his section, and was refused gently.");n();
t("So he must pair with me, to participate in this tennis party without choice.");n();
t("I feel very ridiculous hearing her story, but anyway I decided to attend tennis party to stand my husband's face.");n();
}
function t121(){
c_l("121");
t("I could not watch their nasty dance, so I tuned my eyes on my knee.");n();
t("After All the performances were finished, Judge Chairman had announced the Tennis club as a winner.");n();
h("my friend");
t(" had walked up the stage and was going to present the trophy and the bouquet to the tennis club, just when members of other teams had shouted \"Dumb, humbug\".");n();
t("\"Winner of last year was also tennis club, its humbug. Eat shit mother fuckers\" and they jumped at members of tennis club.");n();
t("Other boys tried to stop them but they were also banged.");n();
t("They quarreled altogether and shouted loudly on the stage and other boys were climbing the stage from everywhere.");n();
t("I and ");h("my friend");
t(" had jumped down the stage and rushed out of the hall desperately with out changing tennis dresses.");n();
}
function t122(){
c_l("122");
t("We return to the tennis court where boys were playing tennis games.");n();
t("We waited near the court till the time we reserved court looking there games.");n();
t("When the time had come we entered the tennis court but they continued playing games as if they didn't noticed us.");n();
h("my friend");
t(" whispered me that \"They are chicken sit\" and her saying had surprised me so much.");n();
t("I answered \"No way. We must wait till they stop?h, but she walked toward the boys shouting loudly \"Stop it\".");n();
t("Boys in the tennis court were just surprised by her voice and also seemed to be surprised with her transparent tennis wear.");n();
t("I never had heard such a rude manner of her and just afraid what would happen next.");n();
t("Boys replied loudly that \"We are playing game now, you can wait a minute or so?h, but she said angrily \"Stop it right now, it's nothing to do with us\".");n();
}
function t123(){
c_l("123");
t("I had got out of tennis court to search for tennis ball.");n();
t("When I reached bushes behind tennis court, there were sloped down to a pond and dark shadow of tall trees were hanging over the pond.");n();
h("my friend");
t(" had followed me saying \"tennis ball might have been drove into the pond\" and stepped carefully to the edge of pond.");n();
t("\"Here there are\" she cried and step forward and reached her hand to the ball in the water when she slipped on the moss and fell down to the muddy water.");n();
t("Around the pond wooden piles were stuck and between piles ropes were spanned to separate water and ");h("my friend");
t(" legs were tangled with that ropes.");n();
t("She tried to get up but ropes tangling with her legs were hardly loose itself.");n();
}
function t124(){
c_l("124");
as124=new Array("126","128");
e_l(as124);
}
function t125(){
c_l("125");
as125=new Array("126","127");
e_l(as125);
}
function t126(){
c_l("126");
t4();
t102();
t4();
t137();
}
function t127(){
c_l("127");
t4();
t108();
t4();
t106();
}
function t128(){
c_l("128");
t4();
t120();
}
function t129(){
c_l("129");
t6();
t130();
}
function t130(){
c_l("130");
as130=new Array("132","131");
e_l(as130);
}
function t131(){
c_l("131");
t125();
t118();
t119();
t4();
t138();
t107();
t133();
t134();
t103();
t4();
t122();
t111();
t4();
t140();
t136();
t123();
t4();
t105();
t368();
}
function t132(){
c_l("132");
t125();
t118();
t119();
t4();
t139();
t4();
t109();
t4();
t135();
t4();
t103();
t104();
t4();
t112();
t4();
t121();
t4();
t141();
t4();
t110();
}
function t133(){
c_l("133");
t("When we finished I was very surprised to see the tennis dress of ");h("my friend");
t(".");n();
t("It was almost transparent and under it I could see white brassier and white lacy ruffled tennis panties transparently.");n();
}
function t134(){
c_l("134");
h("my friend");
t(" noticed my eyes and than see turned around on her heels and said \"This tennis dress is same as Ai Sugiyama had worn when she played at Wimbledon's center court\", and she looked so proudly.");n();
}
function t135(){
c_l("135");
t(" When we entered an Hall, I found cheer girls that had performed at tennis court short while ago.");n();
t("They seemed to entry beauty contest too.");n();
t("They were dressed in brilliant read cheer reading costumes.");n();
t("And of course all the boys like that kind of costume.");n();
t("They would be get extremly excited and winner of contest must be one of that cheer girls.");n();
t("So I was disappointed much when the boy who seemed to be a Judge Chairman said \"you will look more beautiful, if you would wear tennis dress in your bag\".");n();
t("So we changed clothes at the anteroom in the back.");n();
t133();
t("It seemed too sexy to appear in front of boys eyes.");n();
t134();
}
function t136(){
c_l("136");
t("After short while of warming up, we started rally each other.");n();
t("But when I swung my racket, it happened to hit tennis ball with its edge and drove the ball to another direction unexpectedly.");n();
t("I looked around to search for ball but I could not find it around me.");n();
h("my friend");
t(" said \"");h("Yuki");
t(", Ball had gone beyond the bush behind the court.\"");n();
t("So I noticed that the ball might have driven over the fence of tennis court.");n();
}
function t137(){
c_l("137");
t(" When I was a junior high school girl, I could not run so fast.");n();
t("But I thought that I could run even now not so badly.");n();
t("And I was waiting for the sign of start.");n();
t("When the sound of start pistol banged, another couples are running faster than us.");n();
t("I tried to catch up ,but my legs did not move as I wished.");n();
t("And at last we are the most bottom of the race.");n();
t("My husband said me that it was shame and looked like so cross.");n();
t("He even said that \"You are to fat. you could not run fast with your fatty body\".");n();
t("And I was also getting cross with his wards.");n();
}
function t138(){
c_l("138");
t("We met at the subway station near to the back gate of university.");n();
}
function t139(){
c_l("139");
t138();
t("While we going up the street that lead to the back gate, we heard strange sound.");n();
t("It was some kind of Music loudly sounding from inside.");n();
t("We entered the back gate and went down to the school yard.");n();
t("School yard was surrounded by food stalls selling hotdog or fried Chinese noodle.");n();
t("When I saw the decoration in the yard, I noticed that the University was just in the midst of festival. ");n();
t("So I asked ");h("my friend");
t(" \"I suppose it must be school festival. Can we play tennis even now?\"");n();